From d258ade35e0fe80d347b4ac661f25c9224fb87cc Mon Sep 17 00:00:00 2001 From: eduardo Date: Sat, 4 Jan 2014 19:23:25 -0200 Subject: [PATCH 01/94] 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 89d328ada19..b5e3d5f8970 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 02/94] 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 b5e3d5f8970..dc1df115d93 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 03/94] 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 dc1df115d93..6065cee80c8 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 04/94] 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 6065cee80c8..4d0c9b52a4d 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 0e0b4d55756e438111264423cc04baadb8b067a7 Mon Sep 17 00:00:00 2001 From: kondou Date: Thu, 20 Feb 2014 21:53:59 +0100 Subject: [PATCH 05/94] 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 ef261b50bbc..77c06f26a6a 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 06/94] 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 77c06f26a6a..59f112c8032 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 80393d9c0ff44c0614960cc6b7b7d8cc5bd17743 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Wed, 5 Mar 2014 13:12:58 +0100 Subject: [PATCH 07/94] 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 86ee018e388..abcb4b5c22b 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 0939259b7da..0b65e153093 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 0285d5b6e27302378fff18cfc2e4f3ef0c0ce5eb Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Wed, 5 Mar 2014 14:53:20 +0100 Subject: [PATCH 08/94] 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 42477bfc1ca..47028a701db 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 487da036e74..9f5f9f54ba3 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 8ab7d18a6a2b023527d2eef63099e2834c46ec97 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 10 Mar 2014 14:04:58 +0100 Subject: [PATCH 09/94] 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 9417a6eeb89..06e454b7d77 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 86ee5349828..d49dd958310 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 716358444a2..35bee75cc4d 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 fb7da456b62..6ade9ec15f6 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 918e3b13206..60ba5878401 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 7696fc207fd..8c9ea39c562 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 90150245c41..21612327879 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 5fb51f9ecd5..dc3aff663d4 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 00000000000..66fdb841821 --- /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 00000000000..deb01bca9b9 --- /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 d0244cf2511..9f2675bf0b4 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 10/94] 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 d49dd958310..4bc6c4329c4 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 3f96196e6df..cde24f78a55 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 60da34f2d6e..44b46ef6700 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 1c7d1c89768..3da72e65f1c 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 11/94] 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 a7c9e2fdefd..d589932d425 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 1b9ac452575..1562c2ce037 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 fe160faa267..5c18f3e495d 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 20da712cda3..dc5719625cc 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 12/94] 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 99f49188384..f6aa4f0c90e 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 6a34cbe4ef1..1f7e42e0d3e 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 dd7c7dc5571..17415b6933f 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 c8286bc15ca..667209599a0 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 dbb8b60112a..6557ff941ac 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 04a260265c2..0a8dbc24a65 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 0187b200759..1234cf11394 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 b2b4fb27f74..032447460f3 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 89c21a172fc..9dba9f9f81f 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 5b07c306af8..fa3ddace63d 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 5b32b6db9b7..d5d88483801 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 7237b02c0b0..a3383a8863f 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 145f40c50da..37c600e91da 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 44ca421328b..a0447f97f19 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 13/94] 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 deb01bca9b9..d6b0750ba6f 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 14/94] 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 0c84fa6b757..5577273df8c 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 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 15/94] 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 d589932d425..9d3b9cb81ba 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 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 16/94] 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 1562c2ce037..8434b6000e5 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 5c18f3e495d..6f6c804f384 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 17/94] 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 b7e1599c1fe..bae1fded53d 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 0f864c38bba9e3ad352064db76a3d46be46eba2d Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Tue, 11 Mar 2014 14:10:12 +0100 Subject: [PATCH 18/94] 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 f6816b2b4c2..7e91f8a59ff 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 19/94] 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 2bd9c15bae4..290264a90cc 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 20/94] 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 ed15e46a5ac..faf24d82b82 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -66,7 +66,7 @@ t( 'Name' )); ?> - + Download Date: Wed, 12 Mar 2014 00:10:16 +0100 Subject: [PATCH 21/94] remove Sabre_DAV_Browser_Plugin --- apps/files/appinfo/remote.php | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/files/appinfo/remote.php b/apps/files/appinfo/remote.php index ef22fe92188..826f72fb0e6 100644 --- a/apps/files/appinfo/remote.php +++ b/apps/files/appinfo/remote.php @@ -47,7 +47,6 @@ $server->setBaseUri($baseuri); $defaults = new OC_Defaults(); $server->addPlugin(new Sabre_DAV_Auth_Plugin($authBackend, $defaults->getName())); $server->addPlugin(new Sabre_DAV_Locks_Plugin($lockBackend)); -$server->addPlugin(new Sabre_DAV_Browser_Plugin(false)); // Show something in the Browser, but no upload $server->addPlugin(new OC_Connector_Sabre_FilesPlugin()); $server->addPlugin(new OC_Connector_Sabre_AbortedUploadDetectionPlugin()); $server->addPlugin(new OC_Connector_Sabre_QuotaPlugin()); From efbca04ab42112e617b81153c68ae51f29241663 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Wed, 12 Mar 2014 11:47:21 +0100 Subject: [PATCH 22/94] Use command -v to check for sendmail Fix #7559 --- settings/admin.php | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/settings/admin.php b/settings/admin.php index 47028a701db..80b038d2ef6 100755 --- a/settings/admin.php +++ b/settings/admin.php @@ -21,7 +21,7 @@ $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')) { +if (findBinaryPath('sendmailsendmail')) { $tmpl->assign('sendmail_is_available', true); } @@ -66,3 +66,17 @@ foreach($forms as $form) { $tmpl->append('forms', $form); } $tmpl->printPage(); + +/** + * Try to find a programm + * + * @param string $program + * @return null|string + */ +function findBinaryPath($program) { + exec('command -v ' . escapeshellarg($program) . ' 2> /dev/null', $output, $returnCode); + if ($returnCode === 0 && count($output) > 0) { + return escapeshellcmd($output[0]); + } + return null; +} From dd97d532beda0a32121f3faa2fae92508284a326 Mon Sep 17 00:00:00 2001 From: kondou Date: Wed, 12 Mar 2014 15:31:48 +0100 Subject: [PATCH 23/94] Remove OC.Router usage --- settings/js/personal.js | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/settings/js/personal.js b/settings/js/personal.js index 26c50f8fa5d..fe8c21aa4f1 100644 --- a/settings/js/personal.js +++ b/settings/js/personal.js @@ -284,13 +284,14 @@ $(document).ready(function(){ // 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').addClass('hidden'); - } - }); + var url = OC.generateUrl( + '/avatar/{user}/{size}', + {user: OC.currentUser, size: 1} + ) + '?requesttoken=' + oc_requesttoken; + $.get(url, function(result) { + if (typeof(result) === 'object') { + $('#removeavatar').addClass('hidden'); + } }); } ); From 8fafee31efd9cb8126cc82017b6bb2d614d9b977 Mon Sep 17 00:00:00 2001 From: kondou Date: Wed, 12 Mar 2014 15:42:29 +0100 Subject: [PATCH 24/94] Use $.hide() instead of .hidden for now .inlineblock ranks higher than .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 fe8c21aa4f1..f502037cfda 100644 --- a/settings/js/personal.js +++ b/settings/js/personal.js @@ -61,7 +61,7 @@ function updateAvatar (hidedefault) { $displaydiv.css({'background-color': ''}); $displaydiv.avatar(OC.currentUser, 128, true); - $('#removeavatar').removeClass('hidden'); + $('#removeavatar').show(); } function showAvatarCropper() { @@ -258,7 +258,7 @@ $(document).ready(function(){ url: OC.generateUrl('/avatar/'), success: function(msg) { updateAvatar(true); - $('#removeavatar').addClass('hidden'); + $('#removeavatar').hide(); } }); }); @@ -290,7 +290,7 @@ $(document).ready(function(){ ) + '?requesttoken=' + oc_requesttoken; $.get(url, function(result) { if (typeof(result) === 'object') { - $('#removeavatar').addClass('hidden'); + $('#removeavatar').hide(); } }); } ); From 8ba278bf6a7ed9b00be9a197af1fc4fa2960696b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Wed, 12 Mar 2014 17:10:57 +0100 Subject: [PATCH 25/94] Re-add submodule 3rdparty --- 3rdparty | 1 + 1 file changed, 1 insertion(+) create mode 160000 3rdparty diff --git a/3rdparty b/3rdparty new file mode 160000 index 00000000000..184f0a59f87 --- /dev/null +++ b/3rdparty @@ -0,0 +1 @@ +Subproject commit 184f0a59f87c590ee7e89ced401205a87f213954 From 8048868bd7cc55716127d1c9fa40a0c32db8b901 Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Tue, 11 Mar 2014 14:21:27 +0100 Subject: [PATCH 26/94] 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 86ee5349828..6ad3a84bcac 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 74051fbc2a3..8cef1ade01b 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 27/94] [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 | 182 ++++++++++++++-------------- 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, 898 insertions(+), 814 deletions(-) diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 8105095d61d..01208430b0d 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 464c95cda48..f0f15800498 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 59bb010e3dc..85e35f5dddf 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 43e19669cc0..356fa8b6ac0 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 b5f9cade3d4..a835d6f174a 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 7f9a69331a3..8e083f4ca0e 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 51a248bfb21..4177221e108 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 5ca2d41e695..1821aa8d446 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 eaeee1ebf10..fa829a7427c 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 f37aeb51069..3c00a5aaeae 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 629dba066af..83a7a049743 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 37c6a5d1637..64f6540e12b 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 9162c25d656..d98d93147a6 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 f985a8b2b1c..22453981dda 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 fd77b849010..95e2858a865 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 ba54c7b3746..34dfc635f84 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 32e0db5e6f0..096a0d63d4e 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 3fa590d1934..37f6fb64b2e 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 a0c8864a9b7..7b3414d7c84 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 a51b4857001..7c780ed253c 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 694a156a49c..6c8f1dc38f4 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 cfb1eaf97c6..b0da40c2233 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 d21704a8977..eb15b516afb 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 3b71a9373ce..50a97a0d700 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 f126f0fe4b2..39d504da9f0 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 afff85591a3..70fb73bdcca 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 0b56d0ae306..76d669faeaa 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 c2e5200a794..0a942596ce8 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 87321f7a77d..e12ff2554ce 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 b5d1c005814..d54faf7b569 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 47dadcba309..37e17b1006a 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 "" +msgstr "Kimden adresi" -#: templates/admin.php:330 +#: templates/admin.php:334 msgid "Authentication required" -msgstr "" +msgstr "Kimlik doğrulama gerekli" -#: templates/admin.php:334 +#: 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 +#: templates/admin.php:347 msgid "Credentials" -msgstr "" +msgstr "Kimlik Bilgileri" -#: templates/admin.php:344 +#: templates/admin.php:348 msgid "SMTP Username" -msgstr "" +msgstr "SMTP Kullanıcı Adı" -#: templates/admin.php:347 +#: templates/admin.php:351 msgid "SMTP Password" -msgstr "" +msgstr "SMTP Parolası" -#: templates/admin.php:351 +#: 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 6b16544154f..29c83ca6b78 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 314012b29a8..2fce8b87bf4 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 5287c6230e8..5f1433f62ca 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 99a5f9b2307..8884afcbc3c 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 2a02d53bd42..2315586b187 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 399a0854746..734149034b9 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 adca015f496..284c47e0806 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 5e2681f4978..e63405a4923 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 fae623d38cb..7a2802d588a 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 bb2fd047c3c..826a6a77e00 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 c31a49ae6d7..4a7554499d5 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 66a364c1748..e02c6701a98 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 28/94] 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 8cef1ade01b..1f797c7e994 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 9d32475260b71b97c3fc7f8bf63e1c51e55f210e Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Wed, 12 Mar 2014 11:00:30 +0100 Subject: [PATCH 29/94] 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 7adbcab2f9b..de3c1cd2630 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 30deb07c5b9..e2bbb548182 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 dd9e1bbf9a9..5066d40354d 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 30/94] 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 1a2ab35491b..872ff2c2596 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 71a4ff2762c..21c63ea0469 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 00000000000..fb7fa83e090 --- /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 31/94] 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 62324f24886..ba2d192909f 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 4b802aa7cbbb46d85a50e0d08756cb702274d8f9 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Thu, 13 Mar 2014 17:12:37 -0400 Subject: [PATCH 32/94] [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 | 190 +++---- 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 | 76 +-- 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 | 142 ++--- 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, 4760 insertions(+), 408 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 8916f06c65e..4e207f80ee7 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 759de43f1cd..ae748d19cca 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 00000000000..8a4b3ca8774 --- /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 388631c56f1..230e603083a 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 805881904c4..a68b6a71326 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 00000000000..476566e00f4 --- /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 2c8190a0f2a..db2a02cec9a 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 e45a196c3ed..4dcd93d7ac8 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 356fa8b6ac0..4b8e2b905b6 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 00000000000..312dc85188d --- /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 cf729ace9b8..10ff594c98d 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 00000000000..7e6461c6081 --- /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 00000000000..0aab7d05754 --- /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 00000000000..ec2601aafbd --- /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 fc6a0111a18..dbcaadfc2a7 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 00000000000..d13deafe6c3 --- /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 08b5350a1b1..5c6d3d7022e 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 00000000000..bab7be008ef --- /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 f148f36ec62..61c21f1a847 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 73864ee7ff7..5206d746b4e 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 00000000000..9fce579e692 --- /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 eed33080197..bb73665a6bf 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 e7120d4ed97..306f08e1df2 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 af4c962cb66..761c6f0eb4e 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 f28c5b79d99..ca669ad43ad 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 049a592cf4a..4d08fedac33 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 1808809c046..5a5c9e89330 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 "" +msgstr "Από τη διεύθυνση" -#: templates/admin.php:330 +#: templates/admin.php:334 msgid "Authentication required" -msgstr "" +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 "" +msgstr "Όνομα χρήστη SMTP" -#: templates/admin.php:347 +#: templates/admin.php:351 msgid "SMTP Password" -msgstr "" +msgstr "Συνθηματικό SMTP" -#: templates/admin.php:351 +#: 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 137ec11c394..a22496a9b49 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 a61774b3964..b26ffd4ad51 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 04509cc7c53..4003c9d9909 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 82746146bb2..a780215e4d1 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 858077718e0..975c937c62a 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 3ab6eb931d7..32cac2cbdb8 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 22453981dda..74d558daff5 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 +#: js/personal.js:277 msgid "Very weak password" -msgstr "" +msgstr "Mot de passe de très faible sécurité" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" -msgstr "" +msgstr "Mot de passe de faible sécurité" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" -msgstr "" +msgstr "Mot de passe de sécurité tout juste acceptable" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" -msgstr "" +msgstr "Mot de passe de sécurité suffisante" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" -msgstr "" +msgstr "Mot de passe de forte sécurité" -#: js/personal.js:301 +#: 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 378ca3e4d8f..44203b8b95d 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 b21c2df7587..c466a063ba4 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 00000000000..a42d1d2c0e3 --- /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 00000000000..4e73f597156 --- /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 00000000000..d7b59ad313b --- /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 00000000000..a2619381046 --- /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 00000000000..9758c9048e6 --- /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 00000000000..9de686c4ff4 --- /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 00000000000..07ec0881452 --- /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 00000000000..e2383a5ad05 --- /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 00000000000..879766d023d --- /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 00000000000..6dad27018be --- /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 e508da3f050..8beb2e914b4 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 cd54ba8689f..355b5601c15 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 1f1ce698955..b4dbadacb90 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 +#: js/personal.js:277 msgid "Very weak password" -msgstr "" +msgstr "Bardzo słabe hasło" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" -msgstr "" +msgstr "Słabe hasło" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" -msgstr "" +msgstr "Mało skomplikowane hasło" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" -msgstr "" +msgstr "Dobre hasło" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" -msgstr "" +msgstr "Mocne hasło" -#: js/personal.js:301 +#: 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 215cf358d96..0afbca84677 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 da074905ad9..94933947eec 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 c4850452e07..ccd88150fff 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 95e2858a865..e4d6ee44d86 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 34dfc635f84..d58859f7104 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 096a0d63d4e..a7bce5d649e 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 37f6fb64b2e..784c9fe0d71 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 7b3414d7c84..57b7f8e5cc6 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 7c780ed253c..75765928b38 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 6c8f1dc38f4..f4f54f3875a 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 b0da40c2233..11347d9c394 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 eb15b516afb..d71c2f34a1d 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 ade2431d4ee..fd9350af6bb 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 50a97a0d700..aeb74b71b89 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 ebed0588588..d866fb664ee 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 00000000000..015c885904e --- /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 e52149aa4b2..c438fa0f997 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 e63405a4923..11c75ea1e08 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 1d62d07e48f..181fd11f972 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 00000000000..7a2802d588a --- /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 0291d7aa1e9..ff445835042 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 33/94] [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 2225efb5db3..00000000000 --- 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 9ab56aff556..00000000000 --- 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 84a9a5fbd8e..00000000000 --- 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 03beb70d11c..00000000000 --- 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 575dc714ea1..00000000000 --- 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 d41ec512fad..00000000000 --- 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 a160c897a2a..00000000000 --- 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 eb1a568d6e9..00000000000 --- 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 6cbc42a212e..00000000000 --- 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 fb59bd84145..00000000000 --- 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 c24eb2a95de..00000000000 --- 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 ccd88150fff..51515a4381d 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 e4d6ee44d86..38bc4b02d35 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 d58859f7104..50638fe8514 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 a7bce5d649e..eb3cec90fcb 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 784c9fe0d71..b3637067b29 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 57b7f8e5cc6..c04658c0601 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 75765928b38..8c2622025de 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 f4f54f3875a..3fb700b81ff 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 11347d9c394..f199b45b0c4 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 d71c2f34a1d..392890f6e2e 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 fd9350af6bb..eb6d2847350 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 aeb74b71b89..af28ca61f49 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 34/94] [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 51515a4381d..fad824e4cfb 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 38bc4b02d35..5ed78456ae2 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 50638fe8514..2ca671e3d62 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 eb3cec90fcb..f77ce30c0e0 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 b3637067b29..a69b4d0a8a4 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 c04658c0601..2dd1785039d 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 8c2622025de..9fd8be348aa 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 3fb700b81ff..5a827a9fc34 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 f199b45b0c4..c76e18fa331 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 392890f6e2e..2a09a545ff1 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 eb6d2847350..71af3cea43e 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 af28ca61f49..8fbfd399864 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 74eb9bea22bb65294a29c0438536f03643d22749 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Fri, 14 Mar 2014 11:08:16 +0100 Subject: [PATCH 35/94] 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 bae52a73234..b3e2f4da91c 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 36/94] 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 a4a23f0f097..df49bf9848d 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 37/94] 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 74051fbc2a3..70bfdb6e70a 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 38/94] 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 128d27aa3db..6e5681b26df 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 fd2d46a1fac..dd8dc84e804 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 39/94] 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 df49bf9848d..d108360b2a8 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 40/94] 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 faf24d82b82..5b0bad7f341 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 19b1fb27630..055329ecabf 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 3eb84ce1672..fc8d59e1e89 100644 --- a/apps/files_sharing/templates/public.php +++ b/apps/files_sharing/templates/public.php @@ -9,7 +9,7 @@ -