summaryrefslogtreecommitdiffstats
path: root/settings
diff options
context:
space:
mode:
Diffstat (limited to 'settings')
-rw-r--r--settings/admin.php13
-rw-r--r--settings/ajax/deletekeys.php8
-rw-r--r--settings/ajax/disableapp.php4
-rw-r--r--settings/ajax/enableapp.php3
-rw-r--r--settings/ajax/getlog.php21
-rw-r--r--settings/ajax/installapp.php3
-rw-r--r--settings/ajax/restorekeys.php15
-rw-r--r--settings/ajax/setloglevel.php13
-rw-r--r--settings/ajax/uninstallapp.php3
-rw-r--r--settings/application.php16
-rw-r--r--settings/controller/appsettingscontroller.php116
-rw-r--r--settings/controller/logsettingscontroller.php126
-rw-r--r--settings/js/admin.js2
-rw-r--r--settings/js/log.js12
-rw-r--r--settings/js/personal.js4
-rw-r--r--settings/l10n/ast.js1
-rw-r--r--settings/l10n/ast.json1
-rw-r--r--settings/l10n/bg_BG.js1
-rw-r--r--settings/l10n/bg_BG.json1
-rw-r--r--settings/l10n/bs.js1
-rw-r--r--settings/l10n/bs.json1
-rw-r--r--settings/l10n/cs_CZ.js5
-rw-r--r--settings/l10n/cs_CZ.json5
-rw-r--r--settings/l10n/da.js5
-rw-r--r--settings/l10n/da.json5
-rw-r--r--settings/l10n/de.js5
-rw-r--r--settings/l10n/de.json5
-rw-r--r--settings/l10n/de_DE.js5
-rw-r--r--settings/l10n/de_DE.json5
-rw-r--r--settings/l10n/el.js1
-rw-r--r--settings/l10n/el.json1
-rw-r--r--settings/l10n/en_GB.js5
-rw-r--r--settings/l10n/en_GB.json5
-rw-r--r--settings/l10n/es.js12
-rw-r--r--settings/l10n/es.json12
-rw-r--r--settings/l10n/et_EE.js1
-rw-r--r--settings/l10n/et_EE.json1
-rw-r--r--settings/l10n/eu.js1
-rw-r--r--settings/l10n/eu.json1
-rw-r--r--settings/l10n/fi_FI.js3
-rw-r--r--settings/l10n/fi_FI.json3
-rw-r--r--settings/l10n/fr.js19
-rw-r--r--settings/l10n/fr.json19
-rw-r--r--settings/l10n/gl.js5
-rw-r--r--settings/l10n/gl.json5
-rw-r--r--settings/l10n/hr.js1
-rw-r--r--settings/l10n/hr.json1
-rw-r--r--settings/l10n/hu_HU.js1
-rw-r--r--settings/l10n/hu_HU.json1
-rw-r--r--settings/l10n/id.js1
-rw-r--r--settings/l10n/id.json1
-rw-r--r--settings/l10n/it.js5
-rw-r--r--settings/l10n/it.json5
-rw-r--r--settings/l10n/ja.js10
-rw-r--r--settings/l10n/ja.json10
-rw-r--r--settings/l10n/nb_NO.js11
-rw-r--r--settings/l10n/nb_NO.json11
-rw-r--r--settings/l10n/nl.js7
-rw-r--r--settings/l10n/nl.json7
-rw-r--r--settings/l10n/pl.js5
-rw-r--r--settings/l10n/pl.json5
-rw-r--r--settings/l10n/pt_BR.js5
-rw-r--r--settings/l10n/pt_BR.json5
-rw-r--r--settings/l10n/pt_PT.js11
-rw-r--r--settings/l10n/pt_PT.json11
-rw-r--r--settings/l10n/ru.js5
-rw-r--r--settings/l10n/ru.json5
-rw-r--r--settings/l10n/sk_SK.js1
-rw-r--r--settings/l10n/sk_SK.json1
-rw-r--r--settings/l10n/sl.js13
-rw-r--r--settings/l10n/sl.json13
-rw-r--r--settings/l10n/sv.js7
-rw-r--r--settings/l10n/sv.json7
-rw-r--r--settings/l10n/tr.js24
-rw-r--r--settings/l10n/tr.json24
-rw-r--r--settings/l10n/uk.js32
-rw-r--r--settings/l10n/uk.json32
-rw-r--r--settings/l10n/zh_CN.js1
-rw-r--r--settings/l10n/zh_CN.json1
-rw-r--r--settings/routes.php9
-rw-r--r--settings/templates/admin.php12
-rw-r--r--settings/templates/personal.php14
82 files changed, 594 insertions, 220 deletions
diff --git a/settings/admin.php b/settings/admin.php
index e8b1fef7b7a..1e0ec57580c 100644
--- a/settings/admin.php
+++ b/settings/admin.php
@@ -10,8 +10,14 @@ OC_App::setActiveNavigationEntry("admin");
$template = new OC_Template('settings', 'admin', 'user');
-$entries = OC_Log_Owncloud::getEntries(3);
-$entriesRemaining = count(OC_Log_Owncloud::getEntries(4)) > 3;
+$showLog = (\OC::$server->getConfig()->getSystemValue('log_type', 'owncloud') === 'owncloud');
+$numEntriesToLoad = 3;
+$entries = OC_Log_Owncloud::getEntries($numEntriesToLoad + 1);
+$entriesRemaining = count($entries) > $numEntriesToLoad;
+$entries = array_slice($entries, 0, $numEntriesToLoad);
+$logFilePath = OC_Log_Owncloud::getLogFilePath();
+$doesLogFileExist = file_exists($logFilePath);
+$logFileSize = filesize($logFilePath);
$config = \OC::$server->getConfig();
$appConfig = \OC::$server->getAppConfig();
@@ -31,6 +37,9 @@ $template->assign('mail_smtpname', $config->getSystemValue("mail_smtpname", ''))
$template->assign('mail_smtppassword', $config->getSystemValue("mail_smtppassword", ''));
$template->assign('entries', $entries);
$template->assign('entriesremain', $entriesRemaining);
+$template->assign('logFileSize', $logFileSize);
+$template->assign('doesLogFileExist', $doesLogFileExist);
+$template->assign('showLog', $showLog);
$template->assign('readOnlyConfigEnabled', OC_Helper::isReadOnlyConfigEnabled());
$template->assign('isLocaleWorking', OC_Util::isSetLocaleWorking());
$template->assign('isPhpCharSetUtf8', OC_Util::isPhpCharSetUtf8());
diff --git a/settings/ajax/deletekeys.php b/settings/ajax/deletekeys.php
index 86a45820af9..7d6c9a27aa0 100644
--- a/settings/ajax/deletekeys.php
+++ b/settings/ajax/deletekeys.php
@@ -4,13 +4,11 @@ OCP\JSON::checkLoggedIn();
OCP\JSON::callCheck();
$l = \OC::$server->getL10N('settings');
-$user = \OC_User::getUser();
-$view = new \OC\Files\View('/' . $user . '/files_encryption');
-$keyfilesDeleted = $view->deleteAll('keyfiles.backup');
-$sharekeysDeleted = $view->deleteAll('share-keys.backup');
+$util = new \OCA\Files_Encryption\Util(new \OC\Files\View(), \OC_User::getUser());
+$result = $util->deleteBackup('decryptAll');
-if ($keyfilesDeleted && $sharekeysDeleted) {
+if ($result) {
\OCP\JSON::success(array('data' => array('message' => $l->t('Encryption keys deleted permanently'))));
} else {
\OCP\JSON::error(array('data' => array('message' => $l->t('Couldn\'t permanently delete your encryption keys, please check your owncloud.log or ask your administrator'))));
diff --git a/settings/ajax/disableapp.php b/settings/ajax/disableapp.php
index c1e5bc8eac7..1a133ea9af7 100644
--- a/settings/ajax/disableapp.php
+++ b/settings/ajax/disableapp.php
@@ -10,5 +10,9 @@ if (!array_key_exists('appid', $_POST)) {
$appId = $_POST['appid'];
$appId = OC_App::cleanAppId($appId);
+// FIXME: Clear the cache - move that into some sane helper method
+\OC::$server->getMemCacheFactory()->create('settings')->remove('listApps-0');
+\OC::$server->getMemCacheFactory()->create('settings')->remove('listApps-1');
+
OC_App::disable($appId);
OC_JSON::success();
diff --git a/settings/ajax/enableapp.php b/settings/ajax/enableapp.php
index 81ca1e0338d..88abff487db 100644
--- a/settings/ajax/enableapp.php
+++ b/settings/ajax/enableapp.php
@@ -7,6 +7,9 @@ $groups = isset($_POST['groups']) ? $_POST['groups'] : null;
try {
OC_App::enable(OC_App::cleanAppId($_POST['appid']), $groups);
+ // FIXME: Clear the cache - move that into some sane helper method
+ \OC::$server->getMemCacheFactory()->create('settings')->remove('listApps-0');
+ \OC::$server->getMemCacheFactory()->create('settings')->remove('listApps-1');
OC_JSON::success();
} catch (Exception $e) {
OC_Log::write('core', $e->getMessage(), OC_Log::ERROR);
diff --git a/settings/ajax/getlog.php b/settings/ajax/getlog.php
deleted file mode 100644
index 34c8d3ce467..00000000000
--- a/settings/ajax/getlog.php
+++ /dev/null
@@ -1,21 +0,0 @@
-<?php
-/**
- * Copyright (c) 2012, Robin Appelman <icewind1991@gmail.com>
- * This file is licensed under the Affero General Public License version 3 or later.
- * See the COPYING-README file.
- */
-
-OC_JSON::checkAdminUser();
-
-$count=(isset($_GET['count']))?$_GET['count']:50;
-$offset=(isset($_GET['offset']))?$_GET['offset']:0;
-
-$entries=OC_Log_Owncloud::getEntries($count, $offset);
-$data = array();
-
-OC_JSON::success(
- array(
- "data" => $entries,
- "remain" => count(OC_Log_Owncloud::getEntries(1, $offset + $count)) !== 0,
- )
-);
diff --git a/settings/ajax/installapp.php b/settings/ajax/installapp.php
index 80bc1819724..f25e68214a7 100644
--- a/settings/ajax/installapp.php
+++ b/settings/ajax/installapp.php
@@ -12,6 +12,9 @@ $appId = OC_App::cleanAppId($appId);
$result = OC_App::installApp($appId);
if($result !== false) {
+ // FIXME: Clear the cache - move that into some sane helper method
+ \OC::$server->getMemCacheFactory()->create('settings')->remove('listApps-0');
+ \OC::$server->getMemCacheFactory()->create('settings')->remove('listApps-1');
OC_JSON::success(array('data' => array('appid' => $appId)));
} else {
$l = \OC::$server->getL10N('settings');
diff --git a/settings/ajax/restorekeys.php b/settings/ajax/restorekeys.php
index 5c263fadab4..b89a8286db2 100644
--- a/settings/ajax/restorekeys.php
+++ b/settings/ajax/restorekeys.php
@@ -4,21 +4,12 @@ OCP\JSON::checkLoggedIn();
OCP\JSON::callCheck();
$l = \OC::$server->getL10N('settings');
-$user = \OC_User::getUser();
-$view = new \OC\Files\View('/' . $user . '/files_encryption');
-$keyfilesRestored = $view->rename('keyfiles.backup', 'keyfiles');
-$sharekeysRestored = $view->rename('share-keys.backup' , 'share-keys');
+$util = new \OCA\Files_Encryption\Util(new \OC\Files\View(), \OC_User::getUser());
+$result = $util->restoreBackup('decryptAll');
-if ($keyfilesRestored && $sharekeysRestored) {
+if ($result) {
\OCP\JSON::success(array('data' => array('message' => $l->t('Backups restored successfully'))));
} else {
- // if one of the move operation was succesful we remove the files back to have a consistent state
- if($keyfilesRestored) {
- $view->rename('keyfiles', 'keyfiles.backup');
- }
- if($sharekeysRestored) {
- $view->rename('share-keys' , 'share-keys.backup');
- }
\OCP\JSON::error(array('data' => array('message' => $l->t('Couldn\'t restore your encryption keys, please check your owncloud.log or ask your administrator'))));
}
diff --git a/settings/ajax/setloglevel.php b/settings/ajax/setloglevel.php
deleted file mode 100644
index 542219f86c6..00000000000
--- a/settings/ajax/setloglevel.php
+++ /dev/null
@@ -1,13 +0,0 @@
-<?php
-/**
- * Copyright (c) 2011, Robin Appelman <icewind1991@gmail.com>
- * This file is licensed under the Affero General Public License version 3 or later.
- * See the COPYING-README file.
- */
-
-OC_Util::checkAdminUser();
-OCP\JSON::callCheck();
-
-OC_Config::setValue( 'loglevel', $_POST['level'] );
-
-echo 'true';
diff --git a/settings/ajax/uninstallapp.php b/settings/ajax/uninstallapp.php
index cae7c33f292..e50fc31a449 100644
--- a/settings/ajax/uninstallapp.php
+++ b/settings/ajax/uninstallapp.php
@@ -12,6 +12,9 @@ $appId = OC_App::cleanAppId($appId);
$result = OC_App::removeApp($appId);
if($result !== false) {
+ // FIXME: Clear the cache - move that into some sane helper method
+ \OC::$server->getMemCacheFactory()->create('settings')->remove('listApps-0');
+ \OC::$server->getMemCacheFactory()->create('settings')->remove('listApps-1');
OC_JSON::success(array('data' => array('appid' => $appId)));
} else {
$l = \OC::$server->getL10N('settings');
diff --git a/settings/application.php b/settings/application.php
index 74d021c5bf3..f7ba72f3bfc 100644
--- a/settings/application.php
+++ b/settings/application.php
@@ -12,6 +12,7 @@ namespace OC\Settings;
use OC\Settings\Controller\AppSettingsController;
use OC\Settings\Controller\GroupsController;
+use OC\Settings\Controller\LogSettingsController;
use OC\Settings\Controller\MailSettingsController;
use OC\Settings\Controller\SecuritySettingsController;
use OC\Settings\Controller\UsersController;
@@ -54,7 +55,8 @@ class Application extends App {
$c->query('AppName'),
$c->query('Request'),
$c->query('L10N'),
- $c->query('Config')
+ $c->query('Config'),
+ $c->query('ICacheFactory')
);
});
$container->registerService('SecuritySettingsController', function(IContainer $c) {
@@ -91,6 +93,15 @@ class Application extends App {
$c->query('URLGenerator')
);
});
+ $container->registerService('LogSettingsController', function(IContainer $c) {
+ return new LogSettingsController(
+ $c->query('AppName'),
+ $c->query('Request'),
+ $c->query('Config'),
+ $c->query('L10N'),
+ $c->query('TimeFactory')
+ );
+ });
/**
* Middleware
@@ -110,6 +121,9 @@ class Application extends App {
$container->registerService('Config', function(IContainer $c) {
return $c->query('ServerContainer')->getConfig();
});
+ $container->registerService('ICacheFactory', function(IContainer $c) {
+ return $c->query('ServerContainer')->getMemCacheFactory();
+ });
$container->registerService('L10N', function(IContainer $c) {
return $c->query('ServerContainer')->getL10N('settings');
});
diff --git a/settings/controller/appsettingscontroller.php b/settings/controller/appsettingscontroller.php
index 3688859ef56..816b7b2e65c 100644
--- a/settings/controller/appsettingscontroller.php
+++ b/settings/controller/appsettingscontroller.php
@@ -14,6 +14,7 @@ namespace OC\Settings\Controller;
use OC\App\DependencyAnalyzer;
use OC\App\Platform;
use \OCP\AppFramework\Controller;
+use OCP\ICacheFactory;
use OCP\IRequest;
use OCP\IL10N;
use OCP\IConfig;
@@ -27,20 +28,25 @@ class AppSettingsController extends Controller {
private $l10n;
/** @var IConfig */
private $config;
+ /** @var \OCP\ICache */
+ private $cache;
/**
* @param string $appName
* @param IRequest $request
* @param IL10N $l10n
* @param IConfig $config
+ * @param ICacheFactory $cache
*/
public function __construct($appName,
IRequest $request,
IL10N $l10n,
- IConfig $config) {
+ IConfig $config,
+ ICacheFactory $cache) {
parent::__construct($appName, $request);
$this->l10n = $l10n;
$this->config = $config;
+ $this->cache = $cache->create($appName);
}
/**
@@ -49,13 +55,16 @@ class AppSettingsController extends Controller {
*/
public function listCategories() {
- $categories = array(
- array('id' => 0, 'displayName' => (string)$this->l10n->t('Enabled') ),
- array('id' => 1, 'displayName' => (string)$this->l10n->t('Not enabled') ),
- );
+ if(!is_null($this->cache->get('listCategories'))) {
+ return $this->cache->get('listCategories');
+ }
+ $categories = [
+ ['id' => 0, 'displayName' => (string)$this->l10n->t('Enabled')],
+ ['id' => 1, 'displayName' => (string)$this->l10n->t('Not enabled')],
+ ];
if($this->config->getSystemValue('appstoreenabled', true)) {
- $categories[] = array('id' => 2, 'displayName' => (string)$this->l10n->t('Recommended') );
+ $categories[] = ['id' => 2, 'displayName' => (string)$this->l10n->t('Recommended')];
// apps from external repo via OCS
$ocs = \OC_OCSClient::getCategories();
foreach($ocs as $k => $v) {
@@ -67,6 +76,7 @@ class AppSettingsController extends Controller {
}
$categories['status'] = 'success';
+ $this->cache->set('listCategories', $categories, 3600);
return $categories;
}
@@ -77,44 +87,62 @@ class AppSettingsController extends Controller {
* @return array
*/
public function listApps($category = 0) {
- $apps = array();
-
- switch($category) {
- // installed apps
- case 0:
- $apps = \OC_App::listAllApps(true);
- $apps = array_filter($apps, function($app) {
- return $app['active'];
- });
- break;
- // not-installed apps
- case 1:
- $apps = \OC_App::listAllApps(true);
- $apps = array_filter($apps, function($app) {
- return !$app['active'];
- });
- break;
- default:
- if ($category === 2) {
- $apps = \OC_App::getAppstoreApps('approved');
- $apps = array_filter($apps, function($app) {
- return isset($app['internalclass']) && $app['internalclass'] === 'recommendedapp';
+ if(!is_null($this->cache->get('listApps-'.$category))) {
+ $apps = $this->cache->get('listApps-'.$category);
+ } else {
+ switch ($category) {
+ // installed apps
+ case 0:
+ $apps = \OC_App::listAllApps(true);
+ $apps = array_filter($apps, function ($app) {
+ return $app['active'];
+ });
+ usort($apps, function ($a, $b) {
+ $a = (string)$a['name'];
+ $b = (string)$b['name'];
+ if ($a === $b) {
+ return 0;
+ }
+ return ($a < $b) ? -1 : 1;
+ });
+ break;
+ // not-installed apps
+ case 1:
+ $apps = \OC_App::listAllApps(true);
+ $apps = array_filter($apps, function ($app) {
+ return !$app['active'];
+ });
+ usort($apps, function ($a, $b) {
+ $a = (string)$a['name'];
+ $b = (string)$b['name'];
+ if ($a === $b) {
+ return 0;
+ }
+ return ($a < $b) ? -1 : 1;
});
- } else {
- $apps = \OC_App::getAppstoreApps('approved', $category);
- }
- if (!$apps) {
- $apps = array();
- }
- usort($apps, function ($a, $b) {
- $a = (int)$a['score'];
- $b = (int)$b['score'];
- if ($a === $b) {
- return 0;
+ break;
+ default:
+ if ($category === 2) {
+ $apps = \OC_App::getAppstoreApps('approved');
+ $apps = array_filter($apps, function ($app) {
+ return isset($app['internalclass']) && $app['internalclass'] === 'recommendedapp';
+ });
+ } else {
+ $apps = \OC_App::getAppstoreApps('approved', $category);
}
- return ($a > $b) ? -1 : 1;
- });
- break;
+ if (!$apps) {
+ $apps = array();
+ }
+ usort($apps, function ($a, $b) {
+ $a = (int)$a['score'];
+ $b = (int)$b['score'];
+ if ($a === $b) {
+ return 0;
+ }
+ return ($a > $b) ? -1 : 1;
+ });
+ break;
+ }
}
// fix groups to be an array
@@ -142,6 +170,8 @@ class AppSettingsController extends Controller {
return $app;
}, $apps);
- return array('apps' => $apps, 'status' => 'success');
+ $this->cache->set('listApps-'.$category, $apps, 300);
+
+ return ['apps' => $apps, 'status' => 'success'];
}
}
diff --git a/settings/controller/logsettingscontroller.php b/settings/controller/logsettingscontroller.php
new file mode 100644
index 00000000000..759b466682c
--- /dev/null
+++ b/settings/controller/logsettingscontroller.php
@@ -0,0 +1,126 @@
+<?php
+/**
+ * @author Georg Ehrke
+ * @copyright 2014 Georg Ehrke <georg@ownCloud.com>
+ *
+ * This file is licensed under the Affero General Public License version 3 or
+ * later.
+ * See the COPYING-README file.
+ */
+
+namespace OC\Settings\Controller;
+
+use OCP\AppFramework\Controller;
+use OCP\AppFramework\Http;
+use OCP\AppFramework\Http\JSONResponse;
+use OCP\AppFramework\Http\DataDownloadResponse;
+use OCP\IL10N;
+use OCP\AppFramework\Utility\ITimeFactory;
+use OCP\IRequest;
+use OCP\IConfig;
+
+/**
+ * Class LogSettingsController
+ *
+ * @package OC\Settings\Controller
+ */
+class LogSettingsController extends Controller {
+ /**
+ * @var \OCP\IConfig
+ */
+ private $config;
+
+ /**
+ * @var \OCP\IL10N
+ */
+ private $l10n;
+
+ /**
+ * @var \OCP\ITimeFactory
+ */
+ private $timefactory;
+
+ /**
+ * @param string $appName
+ * @param IRequest $request
+ * @param IConfig $config
+ */
+ public function __construct($appName,
+ IRequest $request,
+ IConfig $config,
+ IL10N $l10n,
+ ITimeFactory $timeFactory) {
+
+ parent::__construct($appName, $request);
+ $this->config = $config;
+ $this->l10n = $l10n;
+ $this->timefactory = $timeFactory;
+ }
+
+ /**
+ * set log level for logger
+ *
+ * @param int $level
+ * @return JSONResponse
+ */
+ public function setLogLevel($level) {
+ if ($level < 0 || $level > 4) {
+ return new JSONResponse([
+ 'message' => (string) $this->l10n->t('log-level out of allowed range'),
+ ], Http::STATUS_BAD_REQUEST);
+ }
+
+ $this->config->setSystemValue('loglevel', $level);
+ return new JSONResponse([
+ 'level' => $level,
+ ]);
+ }
+
+ /**
+ * get log entries from logfile
+ *
+ * @param int $count
+ * @param int $offset
+ * @return JSONResponse
+ */
+ public function getEntries($count=50, $offset=0) {
+ return new JSONResponse([
+ 'data' => \OC_Log_Owncloud::getEntries($count, $offset),
+ 'remain' => count(\OC_Log_Owncloud::getEntries(1, $offset + $count)) !== 0,
+ ]);
+ }
+
+ /**
+ * download logfile
+ *
+ * @NoCSRFRequired
+ *
+ * @return DataDownloadResponse
+ */
+ public function download() {
+ return new DataDownloadResponse(
+ json_encode(\OC_Log_Owncloud::getEntries(null, null)),
+ $this->getFilenameForDownload(),
+ 'application/json'
+ );
+ }
+
+ /**
+ * get filename for the logfile that's being downloaded
+ *
+ * @param int $timestamp (defaults to time())
+ * @return string
+ */
+ private function getFilenameForDownload($timestamp=null) {
+ $instanceId = $this->config->getSystemValue('instanceid');
+
+ $filename = implode([
+ 'ownCloud',
+ $instanceId,
+ (!is_null($timestamp)) ? $timestamp : $this->timefactory->getTime()
+ ], '-');
+ $filename .= '.log';
+
+ return $filename;
+ }
+}
diff --git a/settings/js/admin.js b/settings/js/admin.js
index 059e48ebabe..d00d083407f 100644
--- a/settings/js/admin.js
+++ b/settings/js/admin.js
@@ -34,7 +34,7 @@ $(document).ready(function(){
$('#loglevel').change(function(){
- $.post(OC.filePath('settings','ajax','setloglevel.php'), { level: $(this).val() },function(){
+ $.post(OC.generateUrl('/settings/admin/log/level'), {level: $(this).val()},function(){
OC.Log.reload();
} );
});
diff --git a/settings/js/log.js b/settings/js/log.js
index 46d1bfefd5f..c3a9a201e83 100644
--- a/settings/js/log.js
+++ b/settings/js/log.js
@@ -20,14 +20,12 @@ OC.Log = {
loaded: 3,//are initially loaded
getMore: function (count) {
count = count || 10;
- $.get(OC.filePath('settings', 'ajax', 'getlog.php'), {offset: OC.Log.loaded, count: count}, function (result) {
- if (result.status === 'success') {
- OC.Log.addEntries(result.data);
- if (!result.remain) {
- $('#moreLog').hide();
- }
- $('#lessLog').show();
+ $.get(OC.generateUrl('/settings/admin/log/entries'), {offset: OC.Log.loaded, count: count}, function (result) {
+ OC.Log.addEntries(result.data);
+ if (!result.remain) {
+ $('#moreLog').hide();
}
+ $('#lessLog').show();
});
},
showLess: function (count) {
diff --git a/settings/js/personal.js b/settings/js/personal.js
index fba4af1fd48..0cf0cd81a7b 100644
--- a/settings/js/personal.js
+++ b/settings/js/personal.js
@@ -168,7 +168,9 @@ function avatarResponseHandler (data) {
}
$(document).ready(function () {
- $('#pass2').showPassword().keyup();
+ if($('#pass2').length) {
+ $('#pass2').showPassword().keyup();
+ }
$("#passwordbutton").click(function () {
if ($('#pass1').val() !== '' && $('#pass2').val() !== '') {
// Serialize the data
diff --git a/settings/l10n/ast.js b/settings/l10n/ast.js
index 987a3433224..b60874fd1ea 100644
--- a/settings/l10n/ast.js
+++ b/settings/l10n/ast.js
@@ -108,7 +108,6 @@ OC.L10N.register(
"System locale can not be set to a one which supports UTF-8." : "Nun se pue escoyer una configuración rexonal que sofite UTF-8.",
"This means that there might be problems with certain characters in file names." : "Esto significa que pue haber problemes con ciertos caráuteres nos nomes de los ficheros.",
"URL generation in notification emails" : "Xeneración d'URL en mensaxes de notificación",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Si la so instalación nun ta asitiada nel raigañu del dominiu y uses el cron del sistema, pues atopar problemas cola xeneración d'URL. Pa evitar estos problemes, afita la opción \"overwritewebroot\" nel tu ficheru config.php pa qu'use'l camín del raigañu la so instalación (Suxerencia: \"%s\")",
"Please double check the <a href='%s'>installation guides</a>." : "Por favor, comprueba les <a href='%s'>guíes d'instalación</a>.",
"Last cron was executed at %s." : "Cron executóse per cabera vegada a les %s.",
"Last cron was executed at %s. This is more than an hour ago, something seems wrong." : "Cron executóse per cabera vegada a les %s. Esto foi hai más d'una hora, daqué anda mal.",
diff --git a/settings/l10n/ast.json b/settings/l10n/ast.json
index ea9f124c994..359b1f33730 100644
--- a/settings/l10n/ast.json
+++ b/settings/l10n/ast.json
@@ -106,7 +106,6 @@
"System locale can not be set to a one which supports UTF-8." : "Nun se pue escoyer una configuración rexonal que sofite UTF-8.",
"This means that there might be problems with certain characters in file names." : "Esto significa que pue haber problemes con ciertos caráuteres nos nomes de los ficheros.",
"URL generation in notification emails" : "Xeneración d'URL en mensaxes de notificación",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Si la so instalación nun ta asitiada nel raigañu del dominiu y uses el cron del sistema, pues atopar problemas cola xeneración d'URL. Pa evitar estos problemes, afita la opción \"overwritewebroot\" nel tu ficheru config.php pa qu'use'l camín del raigañu la so instalación (Suxerencia: \"%s\")",
"Please double check the <a href='%s'>installation guides</a>." : "Por favor, comprueba les <a href='%s'>guíes d'instalación</a>.",
"Last cron was executed at %s." : "Cron executóse per cabera vegada a les %s.",
"Last cron was executed at %s. This is more than an hour ago, something seems wrong." : "Cron executóse per cabera vegada a les %s. Esto foi hai más d'una hora, daqué anda mal.",
diff --git a/settings/l10n/bg_BG.js b/settings/l10n/bg_BG.js
index c65c99662af..38c6d85836b 100644
--- a/settings/l10n/bg_BG.js
+++ b/settings/l10n/bg_BG.js
@@ -109,7 +109,6 @@ OC.L10N.register(
"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." : "Това означва, че може да има проблеми с определини символи в имената на файловете.",
"URL generation in notification emails" : "Генериране на URL в имейлите за известяване",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Ако инсталацията не e инсталиранa в root на домейна и използва cron, може да има проблеми с генерирането на URL. За да избегнеш тези проблеми, моля, промени \"overwritewebroot\" в config.php с webroot пътя (Препоръчително: \"%s\")",
"No problems found" : "Не са открити проблеми",
"Please double check the <a href='%s'>installation guides</a>." : "Моля, провери <a href='%s'>ръководството за инсталиране</a> отново.",
"Last cron was executed at %s." : "Последният cron се изпълни в %s.",
diff --git a/settings/l10n/bg_BG.json b/settings/l10n/bg_BG.json
index 9040247ec1a..39243c38f62 100644
--- a/settings/l10n/bg_BG.json
+++ b/settings/l10n/bg_BG.json
@@ -107,7 +107,6 @@
"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." : "Това означва, че може да има проблеми с определини символи в имената на файловете.",
"URL generation in notification emails" : "Генериране на URL в имейлите за известяване",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Ако инсталацията не e инсталиранa в root на домейна и използва cron, може да има проблеми с генерирането на URL. За да избегнеш тези проблеми, моля, промени \"overwritewebroot\" в config.php с webroot пътя (Препоръчително: \"%s\")",
"No problems found" : "Не са открити проблеми",
"Please double check the <a href='%s'>installation guides</a>." : "Моля, провери <a href='%s'>ръководството за инсталиране</a> отново.",
"Last cron was executed at %s." : "Последният cron се изпълни в %s.",
diff --git a/settings/l10n/bs.js b/settings/l10n/bs.js
index 8ddad8e7287..e8a50e10364 100644
--- a/settings/l10n/bs.js
+++ b/settings/l10n/bs.js
@@ -123,7 +123,6 @@ OC.L10N.register(
"This means that there might be problems with certain characters in file names." : "To znači da se mogu javiti problemi s određenim znakovima u nazivu datoteke.",
"We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Strogo se preporučuje instaliranje zahtjevnih paketa na vašem sistemu koji podržavaju jednu od slijedećih regionalnih šemi: %s.",
"URL generation in notification emails" : "Generiranje URL-a u notifikacijskoj e-pošti",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Ako vaša instalacija nije instalirana u korijenu domene i koristi sustav cron, mogu se javiti problemi s generiranjem URL. Da biste takve probleme izbjegli, molim postavite opciju \"overwritewebroot\" u vašoj datoteci config.php na putanju korijenskog direktorija vaše instalacije (Prijedlog: \"%s\").",
"Configuration Checks" : "Konfiguracione Provjere",
"No problems found" : "Problemi nisu pronađeni",
"Please double check the <a href='%s'>installation guides</a>." : "Molimo duplo provjerite <a href='%s'> instalacijske vodiće</a>.",
diff --git a/settings/l10n/bs.json b/settings/l10n/bs.json
index c9e25881376..dbf43aedd25 100644
--- a/settings/l10n/bs.json
+++ b/settings/l10n/bs.json
@@ -121,7 +121,6 @@
"This means that there might be problems with certain characters in file names." : "To znači da se mogu javiti problemi s određenim znakovima u nazivu datoteke.",
"We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Strogo se preporučuje instaliranje zahtjevnih paketa na vašem sistemu koji podržavaju jednu od slijedećih regionalnih šemi: %s.",
"URL generation in notification emails" : "Generiranje URL-a u notifikacijskoj e-pošti",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Ako vaša instalacija nije instalirana u korijenu domene i koristi sustav cron, mogu se javiti problemi s generiranjem URL. Da biste takve probleme izbjegli, molim postavite opciju \"overwritewebroot\" u vašoj datoteci config.php na putanju korijenskog direktorija vaše instalacije (Prijedlog: \"%s\").",
"Configuration Checks" : "Konfiguracione Provjere",
"No problems found" : "Problemi nisu pronađeni",
"Please double check the <a href='%s'>installation guides</a>." : "Molimo duplo provjerite <a href='%s'> instalacijske vodiće</a>.",
diff --git a/settings/l10n/cs_CZ.js b/settings/l10n/cs_CZ.js
index d9ac1f23084..a70fe79745e 100644
--- a/settings/l10n/cs_CZ.js
+++ b/settings/l10n/cs_CZ.js
@@ -36,6 +36,7 @@ OC.L10N.register(
"Group already exists." : "Skupina již existuje.",
"Unable to add group." : "Nelze přidat skupinu.",
"Unable to delete group." : "Nelze smazat skupinu.",
+ "log-level out of allowed range" : "úroveň logování z povoleného rozpětí",
"Saved" : "Uloženo",
"test email settings" : "otestovat nastavení emailu",
"If you received this email, the settings seem to be correct." : "Pokud jste obdrželi tento email, nastavení se zdají být v pořádku.",
@@ -123,7 +124,7 @@ OC.L10N.register(
"This means that there might be problems with certain characters in file names." : "To znamená, že se mohou vyskytnout problémy s určitými znaky v názvech souborů.",
"We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Velmi doporučujeme nainstalovat požadované balíčky do systému, pro podporu jednoho z následujících národních prostředí: %s.",
"URL generation in notification emails" : "Generování adresy URL v oznamovacích emailech",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Instalace mimo kořenový adresář domény a používání systémového příkazu cron může způsobit problém s generováním správné URL. Pro zabránění těmto chybám nastavte prosím správnou cestu ve svém config.php souboru v hodnotě \"overwritewebroot\" (Doporučujeme: \"%s\")",
+ "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Instalace mimo kořenový adresář domény a používání systémového příkazu cron může způsobit problém s generováním správné URL. Pro zabránění těmto chybám nastavte prosím správnou cestu ve svém config.php souboru v hodnotě \"overwrite.cli.url\" (Je doporučena tato: \"%s\")",
"Configuration Checks" : "Ověření konfigurace",
"No problems found" : "Nebyly nalezeny žádné problémy",
"Please double check the <a href='%s'>installation guides</a>." : "Zkonzultujte, prosím, <a href='%s'>průvodce instalací</a>.",
@@ -167,8 +168,10 @@ OC.L10N.register(
"Test email settings" : "Otestovat nastavení emailu",
"Send email" : "Odeslat email",
"Log level" : "Úroveň zaznamenávání",
+ "Download logfile" : "Stáhnout soubor logu",
"More" : "Více",
"Less" : "Méně",
+ "The logfile is bigger than 100MB. Downloading it may take some time!" : "Soubor logu je větší než 100 MB. Jeho stažení zabere nějaký čas!",
"Version" : "Verze",
"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." : "Vyvinuto <a href=\"http://ownCloud.org/contact\" target=\"_blank\">komunitou ownCloud</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">zdrojový kód</a> je licencován pod <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.",
"More apps" : "Více aplikací",
diff --git a/settings/l10n/cs_CZ.json b/settings/l10n/cs_CZ.json
index 1d90e0c9e4c..f209611e6cb 100644
--- a/settings/l10n/cs_CZ.json
+++ b/settings/l10n/cs_CZ.json
@@ -34,6 +34,7 @@
"Group already exists." : "Skupina již existuje.",
"Unable to add group." : "Nelze přidat skupinu.",
"Unable to delete group." : "Nelze smazat skupinu.",
+ "log-level out of allowed range" : "úroveň logování z povoleného rozpětí",
"Saved" : "Uloženo",
"test email settings" : "otestovat nastavení emailu",
"If you received this email, the settings seem to be correct." : "Pokud jste obdrželi tento email, nastavení se zdají být v pořádku.",
@@ -121,7 +122,7 @@
"This means that there might be problems with certain characters in file names." : "To znamená, že se mohou vyskytnout problémy s určitými znaky v názvech souborů.",
"We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Velmi doporučujeme nainstalovat požadované balíčky do systému, pro podporu jednoho z následujících národních prostředí: %s.",
"URL generation in notification emails" : "Generování adresy URL v oznamovacích emailech",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Instalace mimo kořenový adresář domény a používání systémového příkazu cron může způsobit problém s generováním správné URL. Pro zabránění těmto chybám nastavte prosím správnou cestu ve svém config.php souboru v hodnotě \"overwritewebroot\" (Doporučujeme: \"%s\")",
+ "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Instalace mimo kořenový adresář domény a používání systémového příkazu cron může způsobit problém s generováním správné URL. Pro zabránění těmto chybám nastavte prosím správnou cestu ve svém config.php souboru v hodnotě \"overwrite.cli.url\" (Je doporučena tato: \"%s\")",
"Configuration Checks" : "Ověření konfigurace",
"No problems found" : "Nebyly nalezeny žádné problémy",
"Please double check the <a href='%s'>installation guides</a>." : "Zkonzultujte, prosím, <a href='%s'>průvodce instalací</a>.",
@@ -165,8 +166,10 @@
"Test email settings" : "Otestovat nastavení emailu",
"Send email" : "Odeslat email",
"Log level" : "Úroveň zaznamenávání",
+ "Download logfile" : "Stáhnout soubor logu",
"More" : "Více",
"Less" : "Méně",
+ "The logfile is bigger than 100MB. Downloading it may take some time!" : "Soubor logu je větší než 100 MB. Jeho stažení zabere nějaký čas!",
"Version" : "Verze",
"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." : "Vyvinuto <a href=\"http://ownCloud.org/contact\" target=\"_blank\">komunitou ownCloud</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">zdrojový kód</a> je licencován pod <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.",
"More apps" : "Více aplikací",
diff --git a/settings/l10n/da.js b/settings/l10n/da.js
index f7f861f8d8e..5fed8e856a8 100644
--- a/settings/l10n/da.js
+++ b/settings/l10n/da.js
@@ -36,6 +36,7 @@ OC.L10N.register(
"Group already exists." : "Gruppen findes allerede.",
"Unable to add group." : "Kan ikke tilføje gruppen.",
"Unable to delete group." : "Kan ikke slette gruppen.",
+ "log-level out of allowed range" : "niveau for logregistrering går ud over tilladte interval",
"Saved" : "Gemt",
"test email settings" : "test e-mailindstillinger",
"If you received this email, the settings seem to be correct." : "Hvis du har modtaget denne e-mail, så lader indstillinger til at være korrekte.",
@@ -123,7 +124,7 @@ OC.L10N.register(
"This means that there might be problems with certain characters in file names." : "Det betyder at der kan være problemer med visse tegn i filnavne.",
"We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Vi anbefaler kraftigt, at du installerer den krævede pakke på dit system, for at understøtte følgende lokaliteter: %s.",
"URL generation in notification emails" : "URL-oprettelse i e-mailnotifikationer.",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Hvis din installation ikke er installeret i roden af domænet, og bruger systemets cron, så kan der være problemer med URL-oprettelsen. For at undgå disse problemer, så angiv tilvalget \"overwritewebroot\" i din fil config.php til webrodens sti for din installation (foreslået værdi: \"%s\")",
+ "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Hvis din installation ikke er installeret i roden af domænet, og bruger systemets cron, så kan der være problemer med URL-oprettelsen. For at undgå disse problemer, så angiv tilvalget \"overwrite.cli.url\" i din fil config.php til webrodens sti for din installation (foreslået værdi: \"%s\")",
"Configuration Checks" : "Konfigurationstjek",
"No problems found" : "Der blev ikke fundet problemer",
"Please double check the <a href='%s'>installation guides</a>." : "Dobbelttjek venligst <a href='%s'>installations vejledningerne</a>.",
@@ -167,8 +168,10 @@ OC.L10N.register(
"Test email settings" : "Test e-mail-indstillinger",
"Send email" : "Send e-mail",
"Log level" : "Log niveau",
+ "Download logfile" : "Hent logfil",
"More" : "Mere",
"Less" : "Mindre",
+ "The logfile is bigger than 100MB. Downloading it may take some time!" : "Logfilen er større end 100MB. Det kan tage en del tid at hente den!",
"Version" : "Version",
"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." : "Udviklet af <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownClouds community</a>, og <a href=\"https://github.com/owncloud\" target=\"_blank\">kildekoden</a> er underlagt licensen <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.",
"More apps" : "Flere programmer",
diff --git a/settings/l10n/da.json b/settings/l10n/da.json
index b3c6b878f05..62273005111 100644
--- a/settings/l10n/da.json
+++ b/settings/l10n/da.json
@@ -34,6 +34,7 @@
"Group already exists." : "Gruppen findes allerede.",
"Unable to add group." : "Kan ikke tilføje gruppen.",
"Unable to delete group." : "Kan ikke slette gruppen.",
+ "log-level out of allowed range" : "niveau for logregistrering går ud over tilladte interval",
"Saved" : "Gemt",
"test email settings" : "test e-mailindstillinger",
"If you received this email, the settings seem to be correct." : "Hvis du har modtaget denne e-mail, så lader indstillinger til at være korrekte.",
@@ -121,7 +122,7 @@
"This means that there might be problems with certain characters in file names." : "Det betyder at der kan være problemer med visse tegn i filnavne.",
"We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Vi anbefaler kraftigt, at du installerer den krævede pakke på dit system, for at understøtte følgende lokaliteter: %s.",
"URL generation in notification emails" : "URL-oprettelse i e-mailnotifikationer.",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Hvis din installation ikke er installeret i roden af domænet, og bruger systemets cron, så kan der være problemer med URL-oprettelsen. For at undgå disse problemer, så angiv tilvalget \"overwritewebroot\" i din fil config.php til webrodens sti for din installation (foreslået værdi: \"%s\")",
+ "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Hvis din installation ikke er installeret i roden af domænet, og bruger systemets cron, så kan der være problemer med URL-oprettelsen. For at undgå disse problemer, så angiv tilvalget \"overwrite.cli.url\" i din fil config.php til webrodens sti for din installation (foreslået værdi: \"%s\")",
"Configuration Checks" : "Konfigurationstjek",
"No problems found" : "Der blev ikke fundet problemer",
"Please double check the <a href='%s'>installation guides</a>." : "Dobbelttjek venligst <a href='%s'>installations vejledningerne</a>.",
@@ -165,8 +166,10 @@
"Test email settings" : "Test e-mail-indstillinger",
"Send email" : "Send e-mail",
"Log level" : "Log niveau",
+ "Download logfile" : "Hent logfil",
"More" : "Mere",
"Less" : "Mindre",
+ "The logfile is bigger than 100MB. Downloading it may take some time!" : "Logfilen er større end 100MB. Det kan tage en del tid at hente den!",
"Version" : "Version",
"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." : "Udviklet af <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownClouds community</a>, og <a href=\"https://github.com/owncloud\" target=\"_blank\">kildekoden</a> er underlagt licensen <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.",
"More apps" : "Flere programmer",
diff --git a/settings/l10n/de.js b/settings/l10n/de.js
index c05b71e517d..8e7b51a8b24 100644
--- a/settings/l10n/de.js
+++ b/settings/l10n/de.js
@@ -36,6 +36,7 @@ OC.L10N.register(
"Group already exists." : "Gruppe existiert bereits.",
"Unable to add group." : "Gruppe konnte nicht angelegt werden.",
"Unable to delete group." : "Gruppe konnte nicht gelöscht werden.",
+ "log-level out of allowed range" : "Log-Level außerhalb des erlaubten Bereichs",
"Saved" : "Gespeichert",
"test email settings" : "E-Mail-Einstellungen testen",
"If you received this email, the settings seem to be correct." : "Wenn Sie diese E-Mail erhalten haben, sind die Einstellungen korrekt.",
@@ -123,7 +124,7 @@ OC.L10N.register(
"This means that there might be problems with certain characters in file names." : "Dies bedeutet, dass Probleme mit bestimmten Zeichen in den Dateinamen geben kann.",
"We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Wir empfehlen dringend, die erforderlichen Pakete auf Ihrem System zu installieren, damit eine der folgenden Gebietsschemas unterstützt wird: %s.",
"URL generation in notification emails" : "URL-Generierung in Mail-Benachrichtungen",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Wenn sich Deine Installation nicht im Wurzelverzeichnis der Domain befindet und Cron aus dem System genutzt wird, kann es zu Fehlern bei der URL-Generierung kommen. Um dies zu verhindern, setze bitte die \"overwritewebroot\"-Option in Deiner config.php auf das Web-Wurzelverzeichnis Deiner Installation (Vorschlag: \"%s\").",
+ "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Wenn sich Deine Installation nicht im Wurzelverzeichnis der Domain befindet und Cron aus dem System genutzt wird, kann es zu Fehlern bei der URL-Generierung kommen. Um dies zu verhindern, setze bitte die \"overwrite.cli.url\"-Option in Deiner config.php auf das Web-Wurzelverzeichnis Deiner Installation (Vorschlag: \"%s\").",
"Configuration Checks" : "Konfigurationsprüfungen",
"No problems found" : "Keine Probleme gefunden",
"Please double check the <a href='%s'>installation guides</a>." : "Bitte prüfe die <a href='%s'>Installationsanleitungen</a>.",
@@ -167,8 +168,10 @@ OC.L10N.register(
"Test email settings" : "Teste E-Mail-Einstellungen",
"Send email" : "Sende E-Mail",
"Log level" : "Loglevel",
+ "Download logfile" : "Logdatei herunterladen",
"More" : "Mehr",
"Less" : "Weniger",
+ "The logfile is bigger than 100MB. Downloading it may take some time!" : "Die Logdatei ist größer als 100 MB. Es kann etwas Zeit beanspruchen, sie herunterzuladen!",
"Version" : "Version",
"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." : "Entwickelt von der <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud-Community</a>, der <a href=\"https://github.com/owncloud\" target=\"_blank\">Quellcode</a> ist unter der <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> lizenziert.",
"More apps" : "Mehr Apps",
diff --git a/settings/l10n/de.json b/settings/l10n/de.json
index e1af575357f..020b1c0c6cb 100644
--- a/settings/l10n/de.json
+++ b/settings/l10n/de.json
@@ -34,6 +34,7 @@
"Group already exists." : "Gruppe existiert bereits.",
"Unable to add group." : "Gruppe konnte nicht angelegt werden.",
"Unable to delete group." : "Gruppe konnte nicht gelöscht werden.",
+ "log-level out of allowed range" : "Log-Level außerhalb des erlaubten Bereichs",
"Saved" : "Gespeichert",
"test email settings" : "E-Mail-Einstellungen testen",
"If you received this email, the settings seem to be correct." : "Wenn Sie diese E-Mail erhalten haben, sind die Einstellungen korrekt.",
@@ -121,7 +122,7 @@
"This means that there might be problems with certain characters in file names." : "Dies bedeutet, dass Probleme mit bestimmten Zeichen in den Dateinamen geben kann.",
"We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Wir empfehlen dringend, die erforderlichen Pakete auf Ihrem System zu installieren, damit eine der folgenden Gebietsschemas unterstützt wird: %s.",
"URL generation in notification emails" : "URL-Generierung in Mail-Benachrichtungen",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Wenn sich Deine Installation nicht im Wurzelverzeichnis der Domain befindet und Cron aus dem System genutzt wird, kann es zu Fehlern bei der URL-Generierung kommen. Um dies zu verhindern, setze bitte die \"overwritewebroot\"-Option in Deiner config.php auf das Web-Wurzelverzeichnis Deiner Installation (Vorschlag: \"%s\").",
+ "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Wenn sich Deine Installation nicht im Wurzelverzeichnis der Domain befindet und Cron aus dem System genutzt wird, kann es zu Fehlern bei der URL-Generierung kommen. Um dies zu verhindern, setze bitte die \"overwrite.cli.url\"-Option in Deiner config.php auf das Web-Wurzelverzeichnis Deiner Installation (Vorschlag: \"%s\").",
"Configuration Checks" : "Konfigurationsprüfungen",
"No problems found" : "Keine Probleme gefunden",
"Please double check the <a href='%s'>installation guides</a>." : "Bitte prüfe die <a href='%s'>Installationsanleitungen</a>.",
@@ -165,8 +166,10 @@
"Test email settings" : "Teste E-Mail-Einstellungen",
"Send email" : "Sende E-Mail",
"Log level" : "Loglevel",
+ "Download logfile" : "Logdatei herunterladen",
"More" : "Mehr",
"Less" : "Weniger",
+ "The logfile is bigger than 100MB. Downloading it may take some time!" : "Die Logdatei ist größer als 100 MB. Es kann etwas Zeit beanspruchen, sie herunterzuladen!",
"Version" : "Version",
"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." : "Entwickelt von der <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud-Community</a>, der <a href=\"https://github.com/owncloud\" target=\"_blank\">Quellcode</a> ist unter der <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> lizenziert.",
"More apps" : "Mehr Apps",
diff --git a/settings/l10n/de_DE.js b/settings/l10n/de_DE.js
index 0beeb3cde45..f05330970ba 100644
--- a/settings/l10n/de_DE.js
+++ b/settings/l10n/de_DE.js
@@ -36,6 +36,7 @@ OC.L10N.register(
"Group already exists." : "Gruppe existiert bereits.",
"Unable to add group." : "Gruppe konnte nicht angelegt werden.",
"Unable to delete group." : "Gruppe konnte nicht gelöscht werden.",
+ "log-level out of allowed range" : "Log-Level außerhalb des erlaubten Bereichs",
"Saved" : "Gespeichert",
"test email settings" : "E-Mail-Einstellungen testen",
"If you received this email, the settings seem to be correct." : "Wenn Sie diese E-Mail erhalten haben, scheinen die Einstellungen richtig zu sein.",
@@ -123,7 +124,7 @@ OC.L10N.register(
"This means that there might be problems with certain characters in file names." : "Dieses bedeutet, dass es Probleme mit bestimmten Zeichen in den Dateinamen geben kann.",
"We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Wir empfehlen dringend, die erforderlichen Pakete auf Ihrem System zu installieren, damit eine der folgenden Gebietsschemas unterstützt wird: %s.",
"URL generation in notification emails" : "Adresserstellung in E-Mail-Benachrichtungen",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Wenn sich Ihre Installation nicht im Wurzelverzeichnis der Domain befindet und Cron aus dem System genutzt wird, kann es zu Fehlern bei der Adresserstellung kommen. Um dieses zu verhindern, stellen Sie bitte die »overwritewebroot«-Option in Ihrer config.php auf das Internetwurzelverzeichnis Ihrer Installation (Vorschlag: »%s«).",
+ "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Wenn sich Ihre Installation nicht im Wurzelverzeichnis der Domain befindet und Cron aus dem System genutzt wird, kann es zu Fehlern bei der URL-Generierung kommen. Um dies zu verhindern, setzen Sie bitte die \"overwrite.cli.url\"-Option in Ihrer config.php auf das Web-Wurzelverzeichnis Ihrer Installation (Vorschlag: \"%s\").",
"Configuration Checks" : "Konfigurationsprüfungen",
"No problems found" : "Keine Probleme gefunden",
"Please double check the <a href='%s'>installation guides</a>." : "Bitte prüfen Sie die <a href='%s'>Installationsanleitungen</a>.",
@@ -167,8 +168,10 @@ OC.L10N.register(
"Test email settings" : "E-Mail-Einstellungen testen",
"Send email" : "E-Mail senden",
"Log level" : "Log-Level",
+ "Download logfile" : "Logdatei herunterladen",
"More" : "Mehr",
"Less" : "Weniger",
+ "The logfile is bigger than 100MB. Downloading it may take some time!" : "Die Logdatei ist größer als 100 MB. Es kann etwas Zeit beanspruchen, sie herunterzuladen!",
"Version" : "Version",
"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." : "Entwickelt von der <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud-Community</a>. Der <a href=\"https://github.com/owncloud\" target=\"_blank\">Quellcode</a> ist unter der <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> lizenziert.",
"More apps" : "Mehr Apps",
diff --git a/settings/l10n/de_DE.json b/settings/l10n/de_DE.json
index 99b92164c41..0ce8cfdec6e 100644
--- a/settings/l10n/de_DE.json
+++ b/settings/l10n/de_DE.json
@@ -34,6 +34,7 @@
"Group already exists." : "Gruppe existiert bereits.",
"Unable to add group." : "Gruppe konnte nicht angelegt werden.",
"Unable to delete group." : "Gruppe konnte nicht gelöscht werden.",
+ "log-level out of allowed range" : "Log-Level außerhalb des erlaubten Bereichs",
"Saved" : "Gespeichert",
"test email settings" : "E-Mail-Einstellungen testen",
"If you received this email, the settings seem to be correct." : "Wenn Sie diese E-Mail erhalten haben, scheinen die Einstellungen richtig zu sein.",
@@ -121,7 +122,7 @@
"This means that there might be problems with certain characters in file names." : "Dieses bedeutet, dass es Probleme mit bestimmten Zeichen in den Dateinamen geben kann.",
"We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Wir empfehlen dringend, die erforderlichen Pakete auf Ihrem System zu installieren, damit eine der folgenden Gebietsschemas unterstützt wird: %s.",
"URL generation in notification emails" : "Adresserstellung in E-Mail-Benachrichtungen",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Wenn sich Ihre Installation nicht im Wurzelverzeichnis der Domain befindet und Cron aus dem System genutzt wird, kann es zu Fehlern bei der Adresserstellung kommen. Um dieses zu verhindern, stellen Sie bitte die »overwritewebroot«-Option in Ihrer config.php auf das Internetwurzelverzeichnis Ihrer Installation (Vorschlag: »%s«).",
+ "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Wenn sich Ihre Installation nicht im Wurzelverzeichnis der Domain befindet und Cron aus dem System genutzt wird, kann es zu Fehlern bei der URL-Generierung kommen. Um dies zu verhindern, setzen Sie bitte die \"overwrite.cli.url\"-Option in Ihrer config.php auf das Web-Wurzelverzeichnis Ihrer Installation (Vorschlag: \"%s\").",
"Configuration Checks" : "Konfigurationsprüfungen",
"No problems found" : "Keine Probleme gefunden",
"Please double check the <a href='%s'>installation guides</a>." : "Bitte prüfen Sie die <a href='%s'>Installationsanleitungen</a>.",
@@ -165,8 +166,10 @@
"Test email settings" : "E-Mail-Einstellungen testen",
"Send email" : "E-Mail senden",
"Log level" : "Log-Level",
+ "Download logfile" : "Logdatei herunterladen",
"More" : "Mehr",
"Less" : "Weniger",
+ "The logfile is bigger than 100MB. Downloading it may take some time!" : "Die Logdatei ist größer als 100 MB. Es kann etwas Zeit beanspruchen, sie herunterzuladen!",
"Version" : "Version",
"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." : "Entwickelt von der <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud-Community</a>. Der <a href=\"https://github.com/owncloud\" target=\"_blank\">Quellcode</a> ist unter der <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> lizenziert.",
"More apps" : "Mehr Apps",
diff --git a/settings/l10n/el.js b/settings/l10n/el.js
index df25c76e265..6b5c0595922 100644
--- a/settings/l10n/el.js
+++ b/settings/l10n/el.js
@@ -119,7 +119,6 @@ OC.L10N.register(
"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." : "Αυτό σημαίνει ότι μπορεί να υπάρχουν προβλήματα με κάποιους χαρακτήρες στα ονόματα αρχείων.",
"URL generation in notification emails" : "Δημιουργία URL στις ειδοποιήσεις ηλεκτρονικού ταχυδρομείου",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Αν η εγκατάστασή σας δεν είναι εγκατεστημένη στη ρίζα της περιοχής και χρησιμοποιεί το cron του συστήματος, μπορεί να υπάρξουν ζητήματα με τη δημιουργία URL. Για να αποφύγετε αυτά τα προβλήματα, παρακαλώ ρυθμίστε την επιλογή \"overwritewebroot\" στον config.php φάκελό σας στη διαδρομή webroot της εγκατάστασής σας (Suggested: \"%s\")",
"Configuration Checks" : "Έλεγχοι ρυθμίσεων",
"No problems found" : "Δεν βρέθηκαν προβλήματα",
"Please double check the <a href='%s'>installation guides</a>." : "Ελέγξτε ξανά τις <a href='%s'>οδηγίες εγκατάστασης</a>.",
diff --git a/settings/l10n/el.json b/settings/l10n/el.json
index f0a41c50e31..3686c4860cc 100644
--- a/settings/l10n/el.json
+++ b/settings/l10n/el.json
@@ -117,7 +117,6 @@
"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." : "Αυτό σημαίνει ότι μπορεί να υπάρχουν προβλήματα με κάποιους χαρακτήρες στα ονόματα αρχείων.",
"URL generation in notification emails" : "Δημιουργία URL στις ειδοποιήσεις ηλεκτρονικού ταχυδρομείου",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Αν η εγκατάστασή σας δεν είναι εγκατεστημένη στη ρίζα της περιοχής και χρησιμοποιεί το cron του συστήματος, μπορεί να υπάρξουν ζητήματα με τη δημιουργία URL. Για να αποφύγετε αυτά τα προβλήματα, παρακαλώ ρυθμίστε την επιλογή \"overwritewebroot\" στον config.php φάκελό σας στη διαδρομή webroot της εγκατάστασής σας (Suggested: \"%s\")",
"Configuration Checks" : "Έλεγχοι ρυθμίσεων",
"No problems found" : "Δεν βρέθηκαν προβλήματα",
"Please double check the <a href='%s'>installation guides</a>." : "Ελέγξτε ξανά τις <a href='%s'>οδηγίες εγκατάστασης</a>.",
diff --git a/settings/l10n/en_GB.js b/settings/l10n/en_GB.js
index 7325bda0b58..d94dfc1f8e7 100644
--- a/settings/l10n/en_GB.js
+++ b/settings/l10n/en_GB.js
@@ -36,6 +36,7 @@ OC.L10N.register(
"Group already exists." : "Group already exists.",
"Unable to add group." : "Unable to add group.",
"Unable to delete group." : "Unable to delete group.",
+ "log-level out of allowed range" : "log-level out of allowed range",
"Saved" : "Saved",
"test email settings" : "test email settings",
"If you received this email, the settings seem to be correct." : "If you received this email, the settings seem to be correct.",
@@ -123,7 +124,7 @@ OC.L10N.register(
"This means that there might be problems with certain characters in file names." : "This means that there might be problems with certain characters in file names.",
"We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "We strongly suggest installing the required packages on your system to support one of the following locales: %s.",
"URL generation in notification emails" : "URL generation in notification emails",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")",
+ "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")",
"Configuration Checks" : "Configuration Checks",
"No problems found" : "No problems found",
"Please double check the <a href='%s'>installation guides</a>." : "Please double check the <a href='%s'>installation guides</a>.",
@@ -167,8 +168,10 @@ OC.L10N.register(
"Test email settings" : "Test email settings",
"Send email" : "Send email",
"Log level" : "Log level",
+ "Download logfile" : "Download logfile",
"More" : "More",
"Less" : "Less",
+ "The logfile is bigger than 100MB. Downloading it may take some time!" : "The logfile is bigger than 100MB. Downloading it may take some time!",
"Version" : "Version",
"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." : "Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public Licence\">AGPL</abbr></a>.",
"More apps" : "More apps",
diff --git a/settings/l10n/en_GB.json b/settings/l10n/en_GB.json
index 8f166db1862..85f04be7fcd 100644
--- a/settings/l10n/en_GB.json
+++ b/settings/l10n/en_GB.json
@@ -34,6 +34,7 @@
"Group already exists." : "Group already exists.",
"Unable to add group." : "Unable to add group.",
"Unable to delete group." : "Unable to delete group.",
+ "log-level out of allowed range" : "log-level out of allowed range",
"Saved" : "Saved",
"test email settings" : "test email settings",
"If you received this email, the settings seem to be correct." : "If you received this email, the settings seem to be correct.",
@@ -121,7 +122,7 @@
"This means that there might be problems with certain characters in file names." : "This means that there might be problems with certain characters in file names.",
"We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "We strongly suggest installing the required packages on your system to support one of the following locales: %s.",
"URL generation in notification emails" : "URL generation in notification emails",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")",
+ "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")",
"Configuration Checks" : "Configuration Checks",
"No problems found" : "No problems found",
"Please double check the <a href='%s'>installation guides</a>." : "Please double check the <a href='%s'>installation guides</a>.",
@@ -165,8 +166,10 @@
"Test email settings" : "Test email settings",
"Send email" : "Send email",
"Log level" : "Log level",
+ "Download logfile" : "Download logfile",
"More" : "More",
"Less" : "Less",
+ "The logfile is bigger than 100MB. Downloading it may take some time!" : "The logfile is bigger than 100MB. Downloading it may take some time!",
"Version" : "Version",
"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." : "Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public Licence\">AGPL</abbr></a>.",
"More apps" : "More apps",
diff --git a/settings/l10n/es.js b/settings/l10n/es.js
index 96de014f97e..1b16da058ab 100644
--- a/settings/l10n/es.js
+++ b/settings/l10n/es.js
@@ -36,6 +36,7 @@ OC.L10N.register(
"Group already exists." : "El grupo ya existe.",
"Unable to add group." : "No se pudo agregar el grupo.",
"Unable to delete group." : "No se pudo eliminar el grupo.",
+ "log-level out of allowed range" : "Nivel de autenticación fuera del rango permitido",
"Saved" : "Guardado",
"test email settings" : "probar configuración de correo electrónico",
"If you received this email, the settings seem to be correct." : "Si recibió este mensaje de correo electrónico, su configuración debe estar correcta.",
@@ -123,7 +124,7 @@ OC.L10N.register(
"This means that there might be problems with certain characters in file names." : "Esto significa que puede haber problemas con ciertos caracteres en los nombres de los archivos.",
"We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Es muy recomendable instalar los paquetes necesarios para poder soportar una de las siguientes configuraciones regionales: %s. ",
"URL generation in notification emails" : "Generación de URL en mensajes de notificación",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Si su instalación no está ubicada en la raíz del dominio y usa el cron del sistema, puede haber problemas al generarse los URL. Para evitarlos, configure la opción \"overwritewebroot\" en su archivo config.php para que use la ruta de la raíz del sitio web de su instalación (sugerencia: \"%s\")",
+ "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Si su instalación no está ubicada en la raíz del dominio y usa el cron del sistema, puede haber problemas al generarse los URL. Para evitarlos, configure la opción \"overwrite.cli.url\" en su archivo config.php para que use la ruta de la raíz del sitio web de su instalación (sugerencia: \"%s\")",
"Configuration Checks" : "Comprobaciones de la configuración",
"No problems found" : "No se han encontrado problemas",
"Please double check the <a href='%s'>installation guides</a>." : "Por favor, vuelva a comprobar las <a href='%s'>guías de instalación</a>.",
@@ -144,7 +145,7 @@ OC.L10N.register(
"Enforce expiration date" : "Imponer fecha de caducidad",
"Allow resharing" : "Permitir re-compartición",
"Restrict users to only share with users in their groups" : "Restringe a los usuarios a compartir solo con otros usuarios en sus grupos",
- "Allow users to send mail notification for shared files to other users" : "Permitir a los usuarios enviar notificaciones por correo electronico de los archivos compartidos a otros usuarios",
+ "Allow users to send mail notification for shared files to other users" : "Permitir a los usuarios enviar notificaciones por correo electrónico de los archivos compartidos a otros usuarios",
"Exclude groups from sharing" : "Excluye grupos de compartir",
"These groups will still be able to receive shares, but not to initiate them." : "Estos grupos aún podrán recibir contenidos compartidos, pero no podrán, pero no podrán iniciarlos.",
"Enforce HTTPS" : "Forzar HTTPS",
@@ -167,8 +168,10 @@ OC.L10N.register(
"Test email settings" : "Probar configuración de correo electrónico",
"Send email" : "Enviar mensaje",
"Log level" : "Nivel de registro",
+ "Download logfile" : "Descargar archivo de registro",
"More" : "Más",
"Less" : "Menos",
+ "The logfile is bigger than 100MB. Downloading it may take some time!" : "El archivo de registro es mayor de 100MB. Descargarlo puede tardar. ",
"Version" : "Versión",
"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." : "Desarrollado por la <a href=\"http://ownCloud.org/contact\" target=\"_blank\">comunidad ownCloud</a>, el <a href=\"https://github.com/owncloud\" target=\"_blank\">código fuente</a> está bajo licencia <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.",
"More apps" : "Más aplicaciones",
@@ -178,12 +181,13 @@ OC.L10N.register(
"Documentation:" : "Documentación:",
"User Documentation" : "Documentación de usuario",
"Admin Documentation" : "Documentación para administradores",
- "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no se han cumplido:",
+ "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede instalarse porque las siguientes dependencias no están cumplimentadas:",
"Update to %s" : "Actualizar a %s",
"Enable only for specific groups" : "Activar solamente para grupos específicos",
"Uninstall App" : "Desinstalar aplicación",
"Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "¿Qué tal?,<br><br>este mensaje es para hacerle saber que ahora tiene una %s cuenta.<br><br>Su nombre de usuario: %s<br>Acceda en: <a href=\"%s\">%s</a><br><br>",
"Cheers!" : "¡Saludos!",
+ "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Hola, ¿qué tal?,\n\nEste mensaje es para hacerle saber que ahora tiene una cuenta %s.\n\nSu nombre de usuario: %s\nAcceda en: %s\n\n",
"Administrator Documentation" : "Documentación de administrador",
"Online Documentation" : "Documentación en línea",
"Forum" : "Foro",
@@ -191,7 +195,7 @@ OC.L10N.register(
"Commercial Support" : "Soporte comercial",
"Get the apps to sync your files" : "Obtener las aplicaciones para sincronizar sus archivos",
"Desktop client" : "Cliente de escritorio",
- "Android app" : "La aplicación de Android",
+ "Android app" : "Aplicación de Android",
"iOS app" : "La aplicación de iOS",
"If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\">spread the word</a>!" : "Si desea contribuir al proyecto\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\">únase al desarrollo</a>\n\t\to\n\t\t¡<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\">corra la voz</a>!",
"Show First Run Wizard again" : "Mostrar nuevamente el Asistente de ejecución inicial",
diff --git a/settings/l10n/es.json b/settings/l10n/es.json
index 5f95588e3a8..f12827ee405 100644
--- a/settings/l10n/es.json
+++ b/settings/l10n/es.json
@@ -34,6 +34,7 @@
"Group already exists." : "El grupo ya existe.",
"Unable to add group." : "No se pudo agregar el grupo.",
"Unable to delete group." : "No se pudo eliminar el grupo.",
+ "log-level out of allowed range" : "Nivel de autenticación fuera del rango permitido",
"Saved" : "Guardado",
"test email settings" : "probar configuración de correo electrónico",
"If you received this email, the settings seem to be correct." : "Si recibió este mensaje de correo electrónico, su configuración debe estar correcta.",
@@ -121,7 +122,7 @@
"This means that there might be problems with certain characters in file names." : "Esto significa que puede haber problemas con ciertos caracteres en los nombres de los archivos.",
"We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Es muy recomendable instalar los paquetes necesarios para poder soportar una de las siguientes configuraciones regionales: %s. ",
"URL generation in notification emails" : "Generación de URL en mensajes de notificación",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Si su instalación no está ubicada en la raíz del dominio y usa el cron del sistema, puede haber problemas al generarse los URL. Para evitarlos, configure la opción \"overwritewebroot\" en su archivo config.php para que use la ruta de la raíz del sitio web de su instalación (sugerencia: \"%s\")",
+ "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Si su instalación no está ubicada en la raíz del dominio y usa el cron del sistema, puede haber problemas al generarse los URL. Para evitarlos, configure la opción \"overwrite.cli.url\" en su archivo config.php para que use la ruta de la raíz del sitio web de su instalación (sugerencia: \"%s\")",
"Configuration Checks" : "Comprobaciones de la configuración",
"No problems found" : "No se han encontrado problemas",
"Please double check the <a href='%s'>installation guides</a>." : "Por favor, vuelva a comprobar las <a href='%s'>guías de instalación</a>.",
@@ -142,7 +143,7 @@
"Enforce expiration date" : "Imponer fecha de caducidad",
"Allow resharing" : "Permitir re-compartición",
"Restrict users to only share with users in their groups" : "Restringe a los usuarios a compartir solo con otros usuarios en sus grupos",
- "Allow users to send mail notification for shared files to other users" : "Permitir a los usuarios enviar notificaciones por correo electronico de los archivos compartidos a otros usuarios",
+ "Allow users to send mail notification for shared files to other users" : "Permitir a los usuarios enviar notificaciones por correo electrónico de los archivos compartidos a otros usuarios",
"Exclude groups from sharing" : "Excluye grupos de compartir",
"These groups will still be able to receive shares, but not to initiate them." : "Estos grupos aún podrán recibir contenidos compartidos, pero no podrán, pero no podrán iniciarlos.",
"Enforce HTTPS" : "Forzar HTTPS",
@@ -165,8 +166,10 @@
"Test email settings" : "Probar configuración de correo electrónico",
"Send email" : "Enviar mensaje",
"Log level" : "Nivel de registro",
+ "Download logfile" : "Descargar archivo de registro",
"More" : "Más",
"Less" : "Menos",
+ "The logfile is bigger than 100MB. Downloading it may take some time!" : "El archivo de registro es mayor de 100MB. Descargarlo puede tardar. ",
"Version" : "Versión",
"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." : "Desarrollado por la <a href=\"http://ownCloud.org/contact\" target=\"_blank\">comunidad ownCloud</a>, el <a href=\"https://github.com/owncloud\" target=\"_blank\">código fuente</a> está bajo licencia <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.",
"More apps" : "Más aplicaciones",
@@ -176,12 +179,13 @@
"Documentation:" : "Documentación:",
"User Documentation" : "Documentación de usuario",
"Admin Documentation" : "Documentación para administradores",
- "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no se han cumplido:",
+ "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede instalarse porque las siguientes dependencias no están cumplimentadas:",
"Update to %s" : "Actualizar a %s",
"Enable only for specific groups" : "Activar solamente para grupos específicos",
"Uninstall App" : "Desinstalar aplicación",
"Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "¿Qué tal?,<br><br>este mensaje es para hacerle saber que ahora tiene una %s cuenta.<br><br>Su nombre de usuario: %s<br>Acceda en: <a href=\"%s\">%s</a><br><br>",
"Cheers!" : "¡Saludos!",
+ "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Hola, ¿qué tal?,\n\nEste mensaje es para hacerle saber que ahora tiene una cuenta %s.\n\nSu nombre de usuario: %s\nAcceda en: %s\n\n",
"Administrator Documentation" : "Documentación de administrador",
"Online Documentation" : "Documentación en línea",
"Forum" : "Foro",
@@ -189,7 +193,7 @@
"Commercial Support" : "Soporte comercial",
"Get the apps to sync your files" : "Obtener las aplicaciones para sincronizar sus archivos",
"Desktop client" : "Cliente de escritorio",
- "Android app" : "La aplicación de Android",
+ "Android app" : "Aplicación de Android",
"iOS app" : "La aplicación de iOS",
"If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\">spread the word</a>!" : "Si desea contribuir al proyecto\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\">únase al desarrollo</a>\n\t\to\n\t\t¡<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\">corra la voz</a>!",
"Show First Run Wizard again" : "Mostrar nuevamente el Asistente de ejecución inicial",
diff --git a/settings/l10n/et_EE.js b/settings/l10n/et_EE.js
index 16b8bbbcfb3..b0c08b7183b 100644
--- a/settings/l10n/et_EE.js
+++ b/settings/l10n/et_EE.js
@@ -109,7 +109,6 @@ OC.L10N.register(
"System locale can not be set to a one which supports UTF-8." : "Süsteemi lokaliseeringuks ei saa panna sellist, mis toetab UTF-8-t.",
"This means that there might be problems with certain characters in file names." : "See tähendab, et võib esineda probleeme failide nimedes mõnede sümbolitega.",
"URL generation in notification emails" : "URL-ide loomine teavituskirjades",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Kui sinu sait pole paigaldatud domeeni juurkausta ja see kasutab ajastatud tegevusi, siis võib tekkide probleeme URL-ide loomisega. Nende probleemide vältimiseks sisesta palun failis config.php valikusse \"overwritewebroot\" oma veebiserveri juurkaust (Soovituslik: \"%s\")",
"No problems found" : "Ühtegi probleemi ei leitud",
"Please double check the <a href='%s'>installation guides</a>." : "Palun tutvu veelkord <a href='%s'>paigalduse juhenditega</a>.",
"Last cron was executed at %s." : "Cron käivitati viimati %s.",
diff --git a/settings/l10n/et_EE.json b/settings/l10n/et_EE.json
index ea3f84b9519..fea9f79bf2b 100644
--- a/settings/l10n/et_EE.json
+++ b/settings/l10n/et_EE.json
@@ -107,7 +107,6 @@
"System locale can not be set to a one which supports UTF-8." : "Süsteemi lokaliseeringuks ei saa panna sellist, mis toetab UTF-8-t.",
"This means that there might be problems with certain characters in file names." : "See tähendab, et võib esineda probleeme failide nimedes mõnede sümbolitega.",
"URL generation in notification emails" : "URL-ide loomine teavituskirjades",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Kui sinu sait pole paigaldatud domeeni juurkausta ja see kasutab ajastatud tegevusi, siis võib tekkide probleeme URL-ide loomisega. Nende probleemide vältimiseks sisesta palun failis config.php valikusse \"overwritewebroot\" oma veebiserveri juurkaust (Soovituslik: \"%s\")",
"No problems found" : "Ühtegi probleemi ei leitud",
"Please double check the <a href='%s'>installation guides</a>." : "Palun tutvu veelkord <a href='%s'>paigalduse juhenditega</a>.",
"Last cron was executed at %s." : "Cron käivitati viimati %s.",
diff --git a/settings/l10n/eu.js b/settings/l10n/eu.js
index 30348762051..081832129b3 100644
--- a/settings/l10n/eu.js
+++ b/settings/l10n/eu.js
@@ -107,7 +107,6 @@ OC.L10N.register(
"System locale can not be set to a one which supports UTF-8." : "Eskualdeko ezarpena ezin da UTF-8 onartzen duen batera ezarri.",
"This means that there might be problems with certain characters in file names." : "Honek esan nahi du fitxategien izenetako karaktere batzuekin arazoak egon daitezkeela.",
"URL generation in notification emails" : "URL sorrera jakinarazpen mezuetan",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Zure instalazioa ez badago domeinuaren sustraian egina eta erabiltzen badu sistemaren cron-a, arazoak izan daitezke URL sorreran. Arazo horiek saihesteko ezarri \"overwritewebroot\" opzioa zure config.php fitxategian zure instalazioaren webroot bidera (Proposatua: \"%s\")",
"No problems found" : "Ez da problemarik aurkitu",
"Please double check the <a href='%s'>installation guides</a>." : "Mesedez begiratu <a href='%s'>instalazio gidak</a>.",
"Last cron was executed at %s." : "Azken cron-a %s-etan exekutatu da",
diff --git a/settings/l10n/eu.json b/settings/l10n/eu.json
index 2094764c8e6..865c1b680b2 100644
--- a/settings/l10n/eu.json
+++ b/settings/l10n/eu.json
@@ -105,7 +105,6 @@
"System locale can not be set to a one which supports UTF-8." : "Eskualdeko ezarpena ezin da UTF-8 onartzen duen batera ezarri.",
"This means that there might be problems with certain characters in file names." : "Honek esan nahi du fitxategien izenetako karaktere batzuekin arazoak egon daitezkeela.",
"URL generation in notification emails" : "URL sorrera jakinarazpen mezuetan",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Zure instalazioa ez badago domeinuaren sustraian egina eta erabiltzen badu sistemaren cron-a, arazoak izan daitezke URL sorreran. Arazo horiek saihesteko ezarri \"overwritewebroot\" opzioa zure config.php fitxategian zure instalazioaren webroot bidera (Proposatua: \"%s\")",
"No problems found" : "Ez da problemarik aurkitu",
"Please double check the <a href='%s'>installation guides</a>." : "Mesedez begiratu <a href='%s'>instalazio gidak</a>.",
"Last cron was executed at %s." : "Azken cron-a %s-etan exekutatu da",
diff --git a/settings/l10n/fi_FI.js b/settings/l10n/fi_FI.js
index fd61ccdec00..d002d53cfcf 100644
--- a/settings/l10n/fi_FI.js
+++ b/settings/l10n/fi_FI.js
@@ -36,6 +36,7 @@ OC.L10N.register(
"Group already exists." : "Ryhmä on jo olemassa.",
"Unable to add group." : "Ryhmän lisääminen ei onnistunut.",
"Unable to delete group." : "Ryhmän poistaminen ei onnistunut.",
+ "log-level out of allowed range" : "lokitaso ei sallittujen rajojen sisäpuolella",
"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.",
@@ -160,8 +161,10 @@ OC.L10N.register(
"Test email settings" : "Testaa sähköpostiasetukset",
"Send email" : "Lähetä sähköpostiviesti",
"Log level" : "Lokitaso",
+ "Download logfile" : "Lataa lokitiedosto",
"More" : "Enemmän",
"Less" : "Vähemmän",
+ "The logfile is bigger than 100MB. Downloading it may take some time!" : "Lokitiedostoa on kooltaan yli 100 megatavua. Sen lataaminen saattaa kestää hetken!",
"Version" : "Versio",
"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." : "Kehityksestä on vastannut <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud-yhteisö</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">lähdekoodi</a> on julkaistu lisenssin <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> alaisena.",
"More apps" : "Lisää sovelluksia",
diff --git a/settings/l10n/fi_FI.json b/settings/l10n/fi_FI.json
index dfb4006ad93..591198467b7 100644
--- a/settings/l10n/fi_FI.json
+++ b/settings/l10n/fi_FI.json
@@ -34,6 +34,7 @@
"Group already exists." : "Ryhmä on jo olemassa.",
"Unable to add group." : "Ryhmän lisääminen ei onnistunut.",
"Unable to delete group." : "Ryhmän poistaminen ei onnistunut.",
+ "log-level out of allowed range" : "lokitaso ei sallittujen rajojen sisäpuolella",
"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.",
@@ -158,8 +159,10 @@
"Test email settings" : "Testaa sähköpostiasetukset",
"Send email" : "Lähetä sähköpostiviesti",
"Log level" : "Lokitaso",
+ "Download logfile" : "Lataa lokitiedosto",
"More" : "Enemmän",
"Less" : "Vähemmän",
+ "The logfile is bigger than 100MB. Downloading it may take some time!" : "Lokitiedostoa on kooltaan yli 100 megatavua. Sen lataaminen saattaa kestää hetken!",
"Version" : "Versio",
"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." : "Kehityksestä on vastannut <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud-yhteisö</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">lähdekoodi</a> on julkaistu lisenssin <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> alaisena.",
"More apps" : "Lisää sovelluksia",
diff --git a/settings/l10n/fr.js b/settings/l10n/fr.js
index b458a68e731..df721c5fb79 100644
--- a/settings/l10n/fr.js
+++ b/settings/l10n/fr.js
@@ -10,16 +10,16 @@ OC.L10N.register(
"Authentication error" : "Erreur d'authentification",
"Your full name has been changed." : "Votre nom complet a été modifié.",
"Unable to change full name" : "Impossible de changer le nom complet",
- "Files decrypted successfully" : "Fichiers décryptés avec succès",
- "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Impossible de décrypter vos fichiers, veuillez vérifier votre owncloud.log ou demander à votre administrateur",
- "Couldn't decrypt your files, check your password and try again" : "Impossible de décrypter vos fichiers, vérifiez votre mot de passe et essayez à nouveau",
+ "Files decrypted successfully" : "Fichiers déchiffrés avec succès",
+ "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Impossible de déchiffrer vos fichiers. Veuillez vérifier votre owncloud.log ou demander à votre administrateur",
+ "Couldn't decrypt your files, check your password and try again" : "Impossible de déchiffrer vos fichiers. Vérifiez votre mot de passe et essayez à nouveau",
"Encryption keys deleted permanently" : "Clés de chiffrement définitivement supprimées.",
- "Couldn't permanently delete your encryption keys, please check your owncloud.log or ask your administrator" : "Impossible de supprimer définitivement vos clés de chiffrement, merci de regarder journal owncloud.log ou de demander à votre administrateur",
+ "Couldn't permanently delete your encryption keys, please check your owncloud.log or ask your administrator" : "Impossible de supprimer définitivement vos clés de chiffrement. Merci de consulter le fichier owncloud.log ou de demander à votre administrateur",
"Couldn't remove app." : "Impossible de supprimer l'application.",
- "Backups restored successfully" : "La sauvegarde a été restaurée avec succès",
- "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Impossible de restaurer vos clés de chiffrement, merci de regarder journal owncloud.log ou de demander à votre administrateur",
+ "Backups restored successfully" : "Sauvegardes restaurées avec succès",
+ "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Impossible de restaurer vos clés de chiffrement. Merci de consulter le fichier owncloud.log ou de demander à votre administrateur",
"Language changed" : "Langue changée",
- "Invalid request" : "Requête invalide",
+ "Invalid request" : "Requête non valide",
"Admins can't remove themself from the admin group" : "Les administrateurs ne peuvent pas se retirer eux-mêmes du groupe admin",
"Unable to add user to group %s" : "Impossible d'ajouter l'utilisateur au groupe %s",
"Unable to remove user from group %s" : "Impossible de supprimer l'utilisateur du groupe %s",
@@ -36,6 +36,7 @@ OC.L10N.register(
"Group already exists." : "Ce groupe existe déjà.",
"Unable to add group." : "Impossible d'ajouter le groupe.",
"Unable to delete group." : "Impossible de supprimer le groupe.",
+ "log-level out of allowed range" : "niveau de journalisation hors borne",
"Saved" : "Sauvegardé",
"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",
@@ -123,7 +124,7 @@ OC.L10N.register(
"This means that there might be problems with certain characters in file names." : "Cela signifie qu'il pourrait y avoir des problèmes avec certains caractères dans les noms de fichier.",
"We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Nous vous recommandons d'installer sur votre système les paquets requis à la prise en charge de l'un des paramètres régionaux suivants : %s",
"URL generation in notification emails" : "Génération d'URL dans les mails de notification",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Si votre installation n'a pas été effectuée à la racine du domaine et qu'elle utilise le cron du système, il peut y avoir des problèmes avec la génération d'URL. Pour les éviter, veuillez configurer l'option \"overwritewebroot\" de votre fichier config.php avec le chemin de la racine de votre installation (suggéré : \"%s\")",
+ "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Si votre installation n'a pas été effectuée à la racine du domaine et qu'elle utilise le cron du système, il peut y avoir des problèmes avec la génération d'URL. Pour les éviter, veuillez configurer l'option \"overwrite.cli.url\" de votre fichier config.php avec le chemin de la racine de votre installation (suggéré : \"%s\")",
"Configuration Checks" : "Vérification de la configuration",
"No problems found" : "Aucun problème trouvé",
"Please double check the <a href='%s'>installation guides</a>." : "Veuillez vous référer au <a href='%s'>guide d'installation</a>.",
@@ -167,8 +168,10 @@ OC.L10N.register(
"Test email settings" : "Tester les paramètres e-mail",
"Send email" : "Envoyer un e-mail",
"Log level" : "Niveau de log",
+ "Download logfile" : "Télécharger le fichier de journalisation",
"More" : "Plus",
"Less" : "Moins",
+ "The logfile is bigger than 100MB. Downloading it may take some time!" : "Le fichier de journalisation dépasse les 100Mo. Son téléchargement pourra prendre du temps !",
"Version" : "Version",
"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." : "Développé par la <a href=\"http://ownCloud.org/contact\" target=\"_blank\">communauté ownCloud</a>, le <a href=\"https://github.com/owncloud\" target=\"_blank\">code source</a> est publié sous license <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.",
"More apps" : "Plus d'applications",
diff --git a/settings/l10n/fr.json b/settings/l10n/fr.json
index 5e18c373227..319844e786c 100644
--- a/settings/l10n/fr.json
+++ b/settings/l10n/fr.json
@@ -8,16 +8,16 @@
"Authentication error" : "Erreur d'authentification",
"Your full name has been changed." : "Votre nom complet a été modifié.",
"Unable to change full name" : "Impossible de changer le nom complet",
- "Files decrypted successfully" : "Fichiers décryptés avec succès",
- "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Impossible de décrypter vos fichiers, veuillez vérifier votre owncloud.log ou demander à votre administrateur",
- "Couldn't decrypt your files, check your password and try again" : "Impossible de décrypter vos fichiers, vérifiez votre mot de passe et essayez à nouveau",
+ "Files decrypted successfully" : "Fichiers déchiffrés avec succès",
+ "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Impossible de déchiffrer vos fichiers. Veuillez vérifier votre owncloud.log ou demander à votre administrateur",
+ "Couldn't decrypt your files, check your password and try again" : "Impossible de déchiffrer vos fichiers. Vérifiez votre mot de passe et essayez à nouveau",
"Encryption keys deleted permanently" : "Clés de chiffrement définitivement supprimées.",
- "Couldn't permanently delete your encryption keys, please check your owncloud.log or ask your administrator" : "Impossible de supprimer définitivement vos clés de chiffrement, merci de regarder journal owncloud.log ou de demander à votre administrateur",
+ "Couldn't permanently delete your encryption keys, please check your owncloud.log or ask your administrator" : "Impossible de supprimer définitivement vos clés de chiffrement. Merci de consulter le fichier owncloud.log ou de demander à votre administrateur",
"Couldn't remove app." : "Impossible de supprimer l'application.",
- "Backups restored successfully" : "La sauvegarde a été restaurée avec succès",
- "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Impossible de restaurer vos clés de chiffrement, merci de regarder journal owncloud.log ou de demander à votre administrateur",
+ "Backups restored successfully" : "Sauvegardes restaurées avec succès",
+ "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Impossible de restaurer vos clés de chiffrement. Merci de consulter le fichier owncloud.log ou de demander à votre administrateur",
"Language changed" : "Langue changée",
- "Invalid request" : "Requête invalide",
+ "Invalid request" : "Requête non valide",
"Admins can't remove themself from the admin group" : "Les administrateurs ne peuvent pas se retirer eux-mêmes du groupe admin",
"Unable to add user to group %s" : "Impossible d'ajouter l'utilisateur au groupe %s",
"Unable to remove user from group %s" : "Impossible de supprimer l'utilisateur du groupe %s",
@@ -34,6 +34,7 @@
"Group already exists." : "Ce groupe existe déjà.",
"Unable to add group." : "Impossible d'ajouter le groupe.",
"Unable to delete group." : "Impossible de supprimer le groupe.",
+ "log-level out of allowed range" : "niveau de journalisation hors borne",
"Saved" : "Sauvegardé",
"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",
@@ -121,7 +122,7 @@
"This means that there might be problems with certain characters in file names." : "Cela signifie qu'il pourrait y avoir des problèmes avec certains caractères dans les noms de fichier.",
"We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Nous vous recommandons d'installer sur votre système les paquets requis à la prise en charge de l'un des paramètres régionaux suivants : %s",
"URL generation in notification emails" : "Génération d'URL dans les mails de notification",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Si votre installation n'a pas été effectuée à la racine du domaine et qu'elle utilise le cron du système, il peut y avoir des problèmes avec la génération d'URL. Pour les éviter, veuillez configurer l'option \"overwritewebroot\" de votre fichier config.php avec le chemin de la racine de votre installation (suggéré : \"%s\")",
+ "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Si votre installation n'a pas été effectuée à la racine du domaine et qu'elle utilise le cron du système, il peut y avoir des problèmes avec la génération d'URL. Pour les éviter, veuillez configurer l'option \"overwrite.cli.url\" de votre fichier config.php avec le chemin de la racine de votre installation (suggéré : \"%s\")",
"Configuration Checks" : "Vérification de la configuration",
"No problems found" : "Aucun problème trouvé",
"Please double check the <a href='%s'>installation guides</a>." : "Veuillez vous référer au <a href='%s'>guide d'installation</a>.",
@@ -165,8 +166,10 @@
"Test email settings" : "Tester les paramètres e-mail",
"Send email" : "Envoyer un e-mail",
"Log level" : "Niveau de log",
+ "Download logfile" : "Télécharger le fichier de journalisation",
"More" : "Plus",
"Less" : "Moins",
+ "The logfile is bigger than 100MB. Downloading it may take some time!" : "Le fichier de journalisation dépasse les 100Mo. Son téléchargement pourra prendre du temps !",
"Version" : "Version",
"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." : "Développé par la <a href=\"http://ownCloud.org/contact\" target=\"_blank\">communauté ownCloud</a>, le <a href=\"https://github.com/owncloud\" target=\"_blank\">code source</a> est publié sous license <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.",
"More apps" : "Plus d'applications",
diff --git a/settings/l10n/gl.js b/settings/l10n/gl.js
index 7059e1193e6..25a433f6814 100644
--- a/settings/l10n/gl.js
+++ b/settings/l10n/gl.js
@@ -36,6 +36,7 @@ OC.L10N.register(
"Group already exists." : "Xa existe o grupo.",
"Unable to add group." : "Non é posíbel engadir o grupo.",
"Unable to delete group." : "Non é posíbel eliminar o grupo.",
+ "log-level out of allowed range" : "o nivel do rexistro está fora do intervalo admitido",
"Saved" : "Gardado",
"test email settings" : "correo de proba dos axustes",
"If you received this email, the settings seem to be correct." : "Se recibiu este correo, semella que a configuración é correcta.",
@@ -123,7 +124,7 @@ OC.L10N.register(
"This means that there might be problems with certain characters in file names." : "Isto significa que pode haber problemas con certos caracteres en nomes de ficheiro.",
"We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Recomendámoslle que instale no sistema os paquetes necesarios para admitir unha das seguintes configuracións rexionais: %s.",
"URL generation in notification emails" : "Xeración dos URL nos correos de notificación",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Se a instalación non foi feita na raíz do dominio e usa o sistema de cron, poden xurdir problemas coa xeración dos URL. Para evitar estes problemas, axuste a opción «overwritewebroot» no ficheiro config.php ás ruta de webroot da súa instalación (suxírese: «%s»)",
+ "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Se a instalación no está feita na raíz do dominio e usa o sistema cron, pode haber problemas coa xeración de URL. Para evitar estes problemas, axuste a opción «overwrite.cli.url» no seu ficheiro config.php á ruta webroot da instalación (suxestión: «%s»)",
"Configuration Checks" : "Comprobacións da configuración",
"No problems found" : "Non se atoparon problemas",
"Please double check the <a href='%s'>installation guides</a>." : "Volva comprobar as <a href='%s'>guías de instalación</a>",
@@ -167,8 +168,10 @@ OC.L10N.register(
"Test email settings" : "Correo de proba dos axustes",
"Send email" : "Enviar o correo",
"Log level" : "Nivel de rexistro",
+ "Download logfile" : "Descargar o ficheiro do rexistro",
"More" : "Máis",
"Less" : "Menos",
+ "The logfile is bigger than 100MB. Downloading it may take some time!" : "O ficheiro do rexistro ocupa máis de 100MB. A descarga pode levar bastante tempo!",
"Version" : "Versión",
"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." : "Desenvolvido pola <a href=\"http://ownCloud.org/contact\" target=\"_blank\">comunidade ownCloud</a>, o <a href=\"https://github.com/owncloud\" target=\"_blank\">código fonte</a> está baixo a licenza <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.",
"More apps" : "Máis aplicativos",
diff --git a/settings/l10n/gl.json b/settings/l10n/gl.json
index 423e9d39dfe..621d12a371c 100644
--- a/settings/l10n/gl.json
+++ b/settings/l10n/gl.json
@@ -34,6 +34,7 @@
"Group already exists." : "Xa existe o grupo.",
"Unable to add group." : "Non é posíbel engadir o grupo.",
"Unable to delete group." : "Non é posíbel eliminar o grupo.",
+ "log-level out of allowed range" : "o nivel do rexistro está fora do intervalo admitido",
"Saved" : "Gardado",
"test email settings" : "correo de proba dos axustes",
"If you received this email, the settings seem to be correct." : "Se recibiu este correo, semella que a configuración é correcta.",
@@ -121,7 +122,7 @@
"This means that there might be problems with certain characters in file names." : "Isto significa que pode haber problemas con certos caracteres en nomes de ficheiro.",
"We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Recomendámoslle que instale no sistema os paquetes necesarios para admitir unha das seguintes configuracións rexionais: %s.",
"URL generation in notification emails" : "Xeración dos URL nos correos de notificación",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Se a instalación non foi feita na raíz do dominio e usa o sistema de cron, poden xurdir problemas coa xeración dos URL. Para evitar estes problemas, axuste a opción «overwritewebroot» no ficheiro config.php ás ruta de webroot da súa instalación (suxírese: «%s»)",
+ "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Se a instalación no está feita na raíz do dominio e usa o sistema cron, pode haber problemas coa xeración de URL. Para evitar estes problemas, axuste a opción «overwrite.cli.url» no seu ficheiro config.php á ruta webroot da instalación (suxestión: «%s»)",
"Configuration Checks" : "Comprobacións da configuración",
"No problems found" : "Non se atoparon problemas",
"Please double check the <a href='%s'>installation guides</a>." : "Volva comprobar as <a href='%s'>guías de instalación</a>",
@@ -165,8 +166,10 @@
"Test email settings" : "Correo de proba dos axustes",
"Send email" : "Enviar o correo",
"Log level" : "Nivel de rexistro",
+ "Download logfile" : "Descargar o ficheiro do rexistro",
"More" : "Máis",
"Less" : "Menos",
+ "The logfile is bigger than 100MB. Downloading it may take some time!" : "O ficheiro do rexistro ocupa máis de 100MB. A descarga pode levar bastante tempo!",
"Version" : "Versión",
"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." : "Desenvolvido pola <a href=\"http://ownCloud.org/contact\" target=\"_blank\">comunidade ownCloud</a>, o <a href=\"https://github.com/owncloud\" target=\"_blank\">código fonte</a> está baixo a licenza <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.",
"More apps" : "Máis aplicativos",
diff --git a/settings/l10n/hr.js b/settings/l10n/hr.js
index c0f225807aa..4291345571d 100644
--- a/settings/l10n/hr.js
+++ b/settings/l10n/hr.js
@@ -103,7 +103,6 @@ OC.L10N.register(
"System locale can not be set to a one which supports UTF-8." : "Regionalnu shemu sustava nemoguće je postaviti na neku koja podržava UTF-8.",
"This means that there might be problems with certain characters in file names." : "To znači da se mogu javiti problemi s određenim znakovima u datoteci.",
"URL generation in notification emails" : "Generiranje URL-a u notifikacijskoj e-pošti",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Ako vaša instalacija nije instalirana u korijenu domene i koristi sustav cron,mogu se javiti problemi s generiranjem URL. Da biste takve probleme izbjegli,molimo postavite opciju \"overwritewebroot\" u vašoj datoteci config.php.na webroot path vaše instalacije (Predlažemo: \"%s\").",
"Please double check the <a href='%s'>installation guides</a>." : "Molimo provjerite <a href='%s'> instalacijske vodiče </a>.",
"Last cron was executed at %s." : "Zadnji cron je izvršen na %s",
"Last cron was executed at %s. This is more than an hour ago, something seems wrong." : "Zadnji cron izvršen je na %s. Bilo je to prije više od jednog sata, čini se da nešto nije u redu.",
diff --git a/settings/l10n/hr.json b/settings/l10n/hr.json
index 33d2fa1fa01..39586f6d652 100644
--- a/settings/l10n/hr.json
+++ b/settings/l10n/hr.json
@@ -101,7 +101,6 @@
"System locale can not be set to a one which supports UTF-8." : "Regionalnu shemu sustava nemoguće je postaviti na neku koja podržava UTF-8.",
"This means that there might be problems with certain characters in file names." : "To znači da se mogu javiti problemi s određenim znakovima u datoteci.",
"URL generation in notification emails" : "Generiranje URL-a u notifikacijskoj e-pošti",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Ako vaša instalacija nije instalirana u korijenu domene i koristi sustav cron,mogu se javiti problemi s generiranjem URL. Da biste takve probleme izbjegli,molimo postavite opciju \"overwritewebroot\" u vašoj datoteci config.php.na webroot path vaše instalacije (Predlažemo: \"%s\").",
"Please double check the <a href='%s'>installation guides</a>." : "Molimo provjerite <a href='%s'> instalacijske vodiče </a>.",
"Last cron was executed at %s." : "Zadnji cron je izvršen na %s",
"Last cron was executed at %s. This is more than an hour ago, something seems wrong." : "Zadnji cron izvršen je na %s. Bilo je to prije više od jednog sata, čini se da nešto nije u redu.",
diff --git a/settings/l10n/hu_HU.js b/settings/l10n/hu_HU.js
index d675c9c0a88..1f019f760d8 100644
--- a/settings/l10n/hu_HU.js
+++ b/settings/l10n/hu_HU.js
@@ -103,7 +103,6 @@ OC.L10N.register(
"System locale can not be set to a one which supports UTF-8." : "A rendszer lokalizációs állományai között nem sikerült olyat beállítani, ami támogatja az UTF-8-at.",
"This means that there might be problems with certain characters in file names." : "Ez azt jelenti, hogy probléma lehet bizonyos karakterekkel a fájlnevekben.",
"URL generation in notification emails" : "URL-képzés az értesítő e-mailekben",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Ha a telepítése nem a webkiszolgáló gyökerében van, és a rendszer cron szolgáltatását használja, akkor problémák lehetnek az URL-ek képzésével. Ezek elkerülése érdekében állítsa be a config.php-ban az \"overwritewebroot\" paramétert a telepítés által használt webútvonalra. (Javasolt beállítás: \"%s\")",
"Please double check the <a href='%s'>installation guides</a>." : "Kérjük tüzetesen tanulmányozza át a <a href='%s'>telepítési útmutatót</a>.",
"Last cron was executed at %s." : "Az utolsó cron feladat ekkor futott le: %s.",
"Last cron was executed at %s. This is more than an hour ago, something seems wrong." : "Az utolsó cron feladat ekkor futott le: %s. Ez több, mint 1 órája történt, valami nincs rendben.",
diff --git a/settings/l10n/hu_HU.json b/settings/l10n/hu_HU.json
index 97c582ea72d..1b4517ae70a 100644
--- a/settings/l10n/hu_HU.json
+++ b/settings/l10n/hu_HU.json
@@ -101,7 +101,6 @@
"System locale can not be set to a one which supports UTF-8." : "A rendszer lokalizációs állományai között nem sikerült olyat beállítani, ami támogatja az UTF-8-at.",
"This means that there might be problems with certain characters in file names." : "Ez azt jelenti, hogy probléma lehet bizonyos karakterekkel a fájlnevekben.",
"URL generation in notification emails" : "URL-képzés az értesítő e-mailekben",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Ha a telepítése nem a webkiszolgáló gyökerében van, és a rendszer cron szolgáltatását használja, akkor problémák lehetnek az URL-ek képzésével. Ezek elkerülése érdekében állítsa be a config.php-ban az \"overwritewebroot\" paramétert a telepítés által használt webútvonalra. (Javasolt beállítás: \"%s\")",
"Please double check the <a href='%s'>installation guides</a>." : "Kérjük tüzetesen tanulmányozza át a <a href='%s'>telepítési útmutatót</a>.",
"Last cron was executed at %s." : "Az utolsó cron feladat ekkor futott le: %s.",
"Last cron was executed at %s. This is more than an hour ago, something seems wrong." : "Az utolsó cron feladat ekkor futott le: %s. Ez több, mint 1 órája történt, valami nincs rendben.",
diff --git a/settings/l10n/id.js b/settings/l10n/id.js
index 78880a2d966..a64f0c10d92 100644
--- a/settings/l10n/id.js
+++ b/settings/l10n/id.js
@@ -116,7 +116,6 @@ OC.L10N.register(
"System locale can not be set to a one which supports UTF-8." : "Sistem lokal tidak dapat diatur untuk satu yang mendukung UTF-8.",
"This means that there might be problems with certain characters in file names." : "Ini artinya mungkin ada masalah dengan karakter tertentu pada nama berkas.",
"URL generation in notification emails" : "URL dibuat dalam email pemberitahuan",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Jika instalasi Anda tidak terinstal didalam root domain dan menggunakan cron sistem, ini dapat menyebabkan masalah dengan pembuatan URL. Untuk mencegah masalah ini, mohon atur opsi \"overwritewebroot\" didalam berkas config.php ke jalur lokasi webroot instalasi Anda (Disarankan: \"%s\")",
"No problems found" : "Masalah tidak ditemukan",
"Please double check the <a href='%s'>installation guides</a>." : "Silakan periksa ulang <a href='%s'>panduan instalasi</a>.",
"Last cron was executed at %s." : "Cron terakhir dieksekusi pada %s.",
diff --git a/settings/l10n/id.json b/settings/l10n/id.json
index 4ca56627b88..81fe6e59fe8 100644
--- a/settings/l10n/id.json
+++ b/settings/l10n/id.json
@@ -114,7 +114,6 @@
"System locale can not be set to a one which supports UTF-8." : "Sistem lokal tidak dapat diatur untuk satu yang mendukung UTF-8.",
"This means that there might be problems with certain characters in file names." : "Ini artinya mungkin ada masalah dengan karakter tertentu pada nama berkas.",
"URL generation in notification emails" : "URL dibuat dalam email pemberitahuan",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Jika instalasi Anda tidak terinstal didalam root domain dan menggunakan cron sistem, ini dapat menyebabkan masalah dengan pembuatan URL. Untuk mencegah masalah ini, mohon atur opsi \"overwritewebroot\" didalam berkas config.php ke jalur lokasi webroot instalasi Anda (Disarankan: \"%s\")",
"No problems found" : "Masalah tidak ditemukan",
"Please double check the <a href='%s'>installation guides</a>." : "Silakan periksa ulang <a href='%s'>panduan instalasi</a>.",
"Last cron was executed at %s." : "Cron terakhir dieksekusi pada %s.",
diff --git a/settings/l10n/it.js b/settings/l10n/it.js
index 96379e35e1d..ca9ff64d4cb 100644
--- a/settings/l10n/it.js
+++ b/settings/l10n/it.js
@@ -36,6 +36,7 @@ OC.L10N.register(
"Group already exists." : "Il gruppo esiste già.",
"Unable to add group." : "Impossibile aggiungere il gruppo.",
"Unable to delete group." : "Impossibile eliminare il gruppo.",
+ "log-level out of allowed range" : "livello di log fuori dall'intervallo consentito",
"Saved" : "Salvato",
"test email settings" : "prova impostazioni email",
"If you received this email, the settings seem to be correct." : "Se hai ricevuto questa email, le impostazioni dovrebbero essere corrette.",
@@ -123,7 +124,7 @@ OC.L10N.register(
"This means that there might be problems with certain characters in file names." : "Ciò significa che potrebbero esserci problemi con alcuni caratteri nei nomi dei file.",
"We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Consigliamo vivamente di installare i pacchetti richiesti sul tuo sistema per supportare una delle localizzazioni seguenti: %s.",
"URL generation in notification emails" : "Generazione di URL nelle email di notifica",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Se la tua installazione non si trova nella radice del dominio e utilizza il cron di sistema, potrebbero esserci problemi con la generazione degli URL. Per evitare questi problemi, imposta l'opzione \"overwritewebroot\" nel file config.php al percorso della radice del sito della tua installazione (Suggerito: \"%s\")",
+ "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Se la tua installazione non si trova nella radice del dominio e utilizza il cron di sistema, potrebbero esserci problemi con la generazione degli URL. Per evitare questi problemi, imposta l'opzione \"overwrite.cli.url\" nel file config.php al percorso della radice del sito della tua installazione (Consigliato: \"%s\")",
"Configuration Checks" : "Controlli di configurazione",
"No problems found" : "Nessun problema trovato",
"Please double check the <a href='%s'>installation guides</a>." : "Leggi attentamente le <a href='%s'>guide d'installazione</a>.",
@@ -167,8 +168,10 @@ OC.L10N.register(
"Test email settings" : "Prova impostazioni email",
"Send email" : "Invia email",
"Log level" : "Livello di log",
+ "Download logfile" : "Scarica file di log",
"More" : "Altro",
"Less" : "Meno",
+ "The logfile is bigger than 100MB. Downloading it may take some time!" : "Il file di log è più grande di 100MB. Scaricarlo potrebbe richiedere del tempo!",
"Version" : "Versione",
"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." : "Sviluppato dalla <a href=\"http://ownCloud.org/contact\" target=\"_blank\">comunità di ownCloud</a>, il <a href=\"https://github.com/owncloud\" target=\"_blank\">codice sorgente</a> è rilasciato nei termini della licenza <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.",
"More apps" : "Altre applicazioni",
diff --git a/settings/l10n/it.json b/settings/l10n/it.json
index 5d3cc3d914d..7fc76dce6ef 100644
--- a/settings/l10n/it.json
+++ b/settings/l10n/it.json
@@ -34,6 +34,7 @@
"Group already exists." : "Il gruppo esiste già.",
"Unable to add group." : "Impossibile aggiungere il gruppo.",
"Unable to delete group." : "Impossibile eliminare il gruppo.",
+ "log-level out of allowed range" : "livello di log fuori dall'intervallo consentito",
"Saved" : "Salvato",
"test email settings" : "prova impostazioni email",
"If you received this email, the settings seem to be correct." : "Se hai ricevuto questa email, le impostazioni dovrebbero essere corrette.",
@@ -121,7 +122,7 @@
"This means that there might be problems with certain characters in file names." : "Ciò significa che potrebbero esserci problemi con alcuni caratteri nei nomi dei file.",
"We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Consigliamo vivamente di installare i pacchetti richiesti sul tuo sistema per supportare una delle localizzazioni seguenti: %s.",
"URL generation in notification emails" : "Generazione di URL nelle email di notifica",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Se la tua installazione non si trova nella radice del dominio e utilizza il cron di sistema, potrebbero esserci problemi con la generazione degli URL. Per evitare questi problemi, imposta l'opzione \"overwritewebroot\" nel file config.php al percorso della radice del sito della tua installazione (Suggerito: \"%s\")",
+ "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Se la tua installazione non si trova nella radice del dominio e utilizza il cron di sistema, potrebbero esserci problemi con la generazione degli URL. Per evitare questi problemi, imposta l'opzione \"overwrite.cli.url\" nel file config.php al percorso della radice del sito della tua installazione (Consigliato: \"%s\")",
"Configuration Checks" : "Controlli di configurazione",
"No problems found" : "Nessun problema trovato",
"Please double check the <a href='%s'>installation guides</a>." : "Leggi attentamente le <a href='%s'>guide d'installazione</a>.",
@@ -165,8 +166,10 @@
"Test email settings" : "Prova impostazioni email",
"Send email" : "Invia email",
"Log level" : "Livello di log",
+ "Download logfile" : "Scarica file di log",
"More" : "Altro",
"Less" : "Meno",
+ "The logfile is bigger than 100MB. Downloading it may take some time!" : "Il file di log è più grande di 100MB. Scaricarlo potrebbe richiedere del tempo!",
"Version" : "Versione",
"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." : "Sviluppato dalla <a href=\"http://ownCloud.org/contact\" target=\"_blank\">comunità di ownCloud</a>, il <a href=\"https://github.com/owncloud\" target=\"_blank\">codice sorgente</a> è rilasciato nei termini della licenza <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.",
"More apps" : "Altre applicazioni",
diff --git a/settings/l10n/ja.js b/settings/l10n/ja.js
index 1e125e1a92e..73e430f041f 100644
--- a/settings/l10n/ja.js
+++ b/settings/l10n/ja.js
@@ -36,6 +36,7 @@ OC.L10N.register(
"Group already exists." : "グループは既に存在しています",
"Unable to add group." : "グループを追加できません",
"Unable to delete group." : "グループを削除できません",
+ "log-level out of allowed range" : "ログレベルが許可された範囲を超えています",
"Saved" : "保存されました",
"test email settings" : "メール設定のテスト",
"If you received this email, the settings seem to be correct." : "このメールを受け取ったら、設定は正しいはずです。",
@@ -123,29 +124,28 @@ OC.L10N.register(
"This means that there might be problems with certain characters in file names." : "これは、ファイル名の特定の文字に問題があることを意味しています。",
"We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "次のロケールをサポートするために、システムに必要なパッケージをインストールすることを強くおすすめします: %s。",
"URL generation in notification emails" : "通知メールにURLを生成",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "もし、URLがドメインのルート(/)で終わっていない場合で、システムのcronを利用している場合、URLの生成に問題が発生します。その場合は、config.php ファイルの中の \"overwritewebroot\" オプションをインストールしたパスに設定してください。(推奨: \"%s\")",
"Configuration Checks" : "設定を確認",
"No problems found" : "問題は見つかりませんでした",
"Please double check the <a href='%s'>installation guides</a>." : "<a href='%s'>インストールガイド</a>をよく確認してください。",
"Last cron was executed at %s." : "直近では%sにcronが実行されました。",
"Last cron was executed at %s. This is more than an hour ago, something seems wrong." : "直近では%sにcronが実行されました。これは1時間以上前になるので、何かおかしいです。",
"Cron was not executed yet!" : "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サービスに登録されています",
+ "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 system's cron service to call the cron.php file every 15 minutes." : "システムの cron サービスを利用して、15分間隔で cron.php ファイルを実行する。",
"Allow apps to use the Share API" : "アプリからの共有APIの利用を許可する",
"Allow users to share via link" : "URLリンクで共有を許可する",
"Enforce password protection" : "常にパスワード保護を有効にする",
"Allow public uploads" : "パブリックなアップロードを許可する",
"Allow users to send mail notification for shared files" : "共有ファイルに関するメール通知の送信をユーザーに許可する",
- "Set default expiration date" : "有効期限のデフォルト値を設定",
+ "Set default expiration date" : "有効期限のデフォルト値を設定する",
"Expire after " : "無効になるまで",
"days" : "日",
"Enforce expiration date" : "有効期限を反映させる",
"Allow resharing" : "再共有を許可する",
"Restrict users to only share with users in their groups" : "グループ内のユーザーでのみ共有するように制限する",
"Allow users to send mail notification for shared files to other users" : "共有ファイルに関するメール通知の送信をユーザに許可する",
- "Exclude groups from sharing" : "共有可能なグループから除外",
+ "Exclude groups from sharing" : "共有可能なグループから除外する",
"These groups will still be able to receive shares, but not to initiate them." : "このグループでは、フォルダー共有を開始することはできませんが、共有されたフォルダーを参照することはできます。",
"Enforce HTTPS" : "常にHTTPSを使用する",
"Forces the clients to connect to %s via an encrypted connection." : "クライアントから %sへの接続を常に暗号化します。",
diff --git a/settings/l10n/ja.json b/settings/l10n/ja.json
index b6ee77bd2cb..c1f371d27b7 100644
--- a/settings/l10n/ja.json
+++ b/settings/l10n/ja.json
@@ -34,6 +34,7 @@
"Group already exists." : "グループは既に存在しています",
"Unable to add group." : "グループを追加できません",
"Unable to delete group." : "グループを削除できません",
+ "log-level out of allowed range" : "ログレベルが許可された範囲を超えています",
"Saved" : "保存されました",
"test email settings" : "メール設定のテスト",
"If you received this email, the settings seem to be correct." : "このメールを受け取ったら、設定は正しいはずです。",
@@ -121,29 +122,28 @@
"This means that there might be problems with certain characters in file names." : "これは、ファイル名の特定の文字に問題があることを意味しています。",
"We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "次のロケールをサポートするために、システムに必要なパッケージをインストールすることを強くおすすめします: %s。",
"URL generation in notification emails" : "通知メールにURLを生成",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "もし、URLがドメインのルート(/)で終わっていない場合で、システムのcronを利用している場合、URLの生成に問題が発生します。その場合は、config.php ファイルの中の \"overwritewebroot\" オプションをインストールしたパスに設定してください。(推奨: \"%s\")",
"Configuration Checks" : "設定を確認",
"No problems found" : "問題は見つかりませんでした",
"Please double check the <a href='%s'>installation guides</a>." : "<a href='%s'>インストールガイド</a>をよく確認してください。",
"Last cron was executed at %s." : "直近では%sにcronが実行されました。",
"Last cron was executed at %s. This is more than an hour ago, something seems wrong." : "直近では%sにcronが実行されました。これは1時間以上前になるので、何かおかしいです。",
"Cron was not executed yet!" : "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サービスに登録されています",
+ "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 system's cron service to call the cron.php file every 15 minutes." : "システムの cron サービスを利用して、15分間隔で cron.php ファイルを実行する。",
"Allow apps to use the Share API" : "アプリからの共有APIの利用を許可する",
"Allow users to share via link" : "URLリンクで共有を許可する",
"Enforce password protection" : "常にパスワード保護を有効にする",
"Allow public uploads" : "パブリックなアップロードを許可する",
"Allow users to send mail notification for shared files" : "共有ファイルに関するメール通知の送信をユーザーに許可する",
- "Set default expiration date" : "有効期限のデフォルト値を設定",
+ "Set default expiration date" : "有効期限のデフォルト値を設定する",
"Expire after " : "無効になるまで",
"days" : "日",
"Enforce expiration date" : "有効期限を反映させる",
"Allow resharing" : "再共有を許可する",
"Restrict users to only share with users in their groups" : "グループ内のユーザーでのみ共有するように制限する",
"Allow users to send mail notification for shared files to other users" : "共有ファイルに関するメール通知の送信をユーザに許可する",
- "Exclude groups from sharing" : "共有可能なグループから除外",
+ "Exclude groups from sharing" : "共有可能なグループから除外する",
"These groups will still be able to receive shares, but not to initiate them." : "このグループでは、フォルダー共有を開始することはできませんが、共有されたフォルダーを参照することはできます。",
"Enforce HTTPS" : "常にHTTPSを使用する",
"Forces the clients to connect to %s via an encrypted connection." : "クライアントから %sへの接続を常に暗号化します。",
diff --git a/settings/l10n/nb_NO.js b/settings/l10n/nb_NO.js
index 04f78ed38a5..cfb5e62e971 100644
--- a/settings/l10n/nb_NO.js
+++ b/settings/l10n/nb_NO.js
@@ -36,6 +36,7 @@ OC.L10N.register(
"Group already exists." : "Gruppe finnes allerede.",
"Unable to add group." : "Kan ikke legge til gruppe.",
"Unable to delete group." : "Kan ikke slette gruppe.",
+ "log-level out of allowed range" : "Loggnivå utenfor tillatt område",
"Saved" : "Lagret",
"test email settings" : "Test av innstillinger for e-post",
"If you received this email, the settings seem to be correct." : "Hvis du mottar denne e-posten er innstillingene tydeligvis korrekte.",
@@ -123,7 +124,7 @@ OC.L10N.register(
"This means that there might be problems with certain characters in file names." : "Dette betyr at det kan forekomme problemer med visse tegn i filnavn.",
"We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Vi anbefaler sterkt å installere de påkrevde pakkene på systemet ditt for å støtte en av følgende nasjonale innstillinger: %s.",
"URL generation in notification emails" : "URL-generering i varsel-eposter",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Hvis installasjonen din ikke er installert i roten av domenet og bruker system cron, kan det bli problemer med URL-generering. For å forhindre disse problemene, sett \"overwritewebroot\" i filen config.php til webroot-stien for installasjonen din (Forslag: \"%s\")",
+ "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Hvis installasjonen din ikke er installert i roten av domenet og bruker systemets cron, kan det bli problemer med URL-genereringen. For å unngå disse problemene, sett \"overwrite.cli.url\" i filen config.php til web-roten for installasjonen din (Foreslått: \"%s\")",
"Configuration Checks" : "Konfigurasjons-sjekker",
"No problems found" : "Ingen problemer funnet",
"Please double check the <a href='%s'>installation guides</a>." : "Vennligst dobbelsjekk <a href='%s'>installasjonsguiden</a>.",
@@ -135,19 +136,19 @@ OC.L10N.register(
"Use system's cron service to call the cron.php file every 15 minutes." : "Bruk systemets cron-tjeneste til å kalle cron.php hvert 15. minutt.",
"Allow apps to use the Share API" : "Tillat apper å bruke API for Deling",
"Allow users to share via link" : "Tillat brukere å dele via lenke",
- "Enforce password protection" : "Tving passordbeskyttelse",
+ "Enforce password protection" : "Krev passordbeskyttelse",
"Allow public uploads" : "Tillat offentlig opplasting",
"Allow users to send mail notification for shared files" : "Tlllat at brukere sender e-postvarsler for delte filer",
"Set default expiration date" : "Sett standard utløpsdato",
"Expire after " : "Utløper etter",
"days" : "dager",
- "Enforce expiration date" : "Tving utløpsdato",
+ "Enforce expiration date" : "Krev utløpsdato",
"Allow resharing" : "TIllat videre deling",
"Restrict users to only share with users in their groups" : "Begrens brukere til kun å dele med brukere i deres grupper",
"Allow users to send mail notification for shared files to other users" : "Tillat at brukere sender varsler om delte filer på e-post til andre brukere",
"Exclude groups from sharing" : "Utelukk grupper fra deling",
"These groups will still be able to receive shares, but not to initiate them." : "Disse gruppene vil fremdeles kunne motta delinger men ikke lage dem.",
- "Enforce HTTPS" : "Tving HTTPS",
+ "Enforce HTTPS" : "Krev HTTPS",
"Forces the clients to connect to %s via an encrypted connection." : "Tvinger klientene til å koble til %s via en kryptert forbindelse.",
"Enforce HTTPS for subdomains" : "Krev HTTPS for underdomener",
"Forces the clients to connect to %s and subdomains via an encrypted connection." : "Tvinger klientene til å koble til %s og underdomener via en kryptert forbindelse.",
@@ -167,8 +168,10 @@ OC.L10N.register(
"Test email settings" : "Test innstillinger for e-post",
"Send email" : "Send e-post",
"Log level" : "Loggnivå",
+ "Download logfile" : "Last ned loggfil",
"More" : "Mer",
"Less" : "Mindre",
+ "The logfile is bigger than 100MB. Downloading it may take some time!" : "Loggfilen er større enn 100MB. Det kan ta litt tid å laste den ned!",
"Version" : "Versjon",
"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." : "Utviklet av <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud-fellesskapet</a>. <a href=\"https://github.com/owncloud\" target=\"_blank\">Kildekoden</a> er lisensiert under <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.",
"More apps" : "Flere apper",
diff --git a/settings/l10n/nb_NO.json b/settings/l10n/nb_NO.json
index 4b9479c7057..0ff66420fb3 100644
--- a/settings/l10n/nb_NO.json
+++ b/settings/l10n/nb_NO.json
@@ -34,6 +34,7 @@
"Group already exists." : "Gruppe finnes allerede.",
"Unable to add group." : "Kan ikke legge til gruppe.",
"Unable to delete group." : "Kan ikke slette gruppe.",
+ "log-level out of allowed range" : "Loggnivå utenfor tillatt område",
"Saved" : "Lagret",
"test email settings" : "Test av innstillinger for e-post",
"If you received this email, the settings seem to be correct." : "Hvis du mottar denne e-posten er innstillingene tydeligvis korrekte.",
@@ -121,7 +122,7 @@
"This means that there might be problems with certain characters in file names." : "Dette betyr at det kan forekomme problemer med visse tegn i filnavn.",
"We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Vi anbefaler sterkt å installere de påkrevde pakkene på systemet ditt for å støtte en av følgende nasjonale innstillinger: %s.",
"URL generation in notification emails" : "URL-generering i varsel-eposter",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Hvis installasjonen din ikke er installert i roten av domenet og bruker system cron, kan det bli problemer med URL-generering. For å forhindre disse problemene, sett \"overwritewebroot\" i filen config.php til webroot-stien for installasjonen din (Forslag: \"%s\")",
+ "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Hvis installasjonen din ikke er installert i roten av domenet og bruker systemets cron, kan det bli problemer med URL-genereringen. For å unngå disse problemene, sett \"overwrite.cli.url\" i filen config.php til web-roten for installasjonen din (Foreslått: \"%s\")",
"Configuration Checks" : "Konfigurasjons-sjekker",
"No problems found" : "Ingen problemer funnet",
"Please double check the <a href='%s'>installation guides</a>." : "Vennligst dobbelsjekk <a href='%s'>installasjonsguiden</a>.",
@@ -133,19 +134,19 @@
"Use system's cron service to call the cron.php file every 15 minutes." : "Bruk systemets cron-tjeneste til å kalle cron.php hvert 15. minutt.",
"Allow apps to use the Share API" : "Tillat apper å bruke API for Deling",
"Allow users to share via link" : "Tillat brukere å dele via lenke",
- "Enforce password protection" : "Tving passordbeskyttelse",
+ "Enforce password protection" : "Krev passordbeskyttelse",
"Allow public uploads" : "Tillat offentlig opplasting",
"Allow users to send mail notification for shared files" : "Tlllat at brukere sender e-postvarsler for delte filer",
"Set default expiration date" : "Sett standard utløpsdato",
"Expire after " : "Utløper etter",
"days" : "dager",
- "Enforce expiration date" : "Tving utløpsdato",
+ "Enforce expiration date" : "Krev utløpsdato",
"Allow resharing" : "TIllat videre deling",
"Restrict users to only share with users in their groups" : "Begrens brukere til kun å dele med brukere i deres grupper",
"Allow users to send mail notification for shared files to other users" : "Tillat at brukere sender varsler om delte filer på e-post til andre brukere",
"Exclude groups from sharing" : "Utelukk grupper fra deling",
"These groups will still be able to receive shares, but not to initiate them." : "Disse gruppene vil fremdeles kunne motta delinger men ikke lage dem.",
- "Enforce HTTPS" : "Tving HTTPS",
+ "Enforce HTTPS" : "Krev HTTPS",
"Forces the clients to connect to %s via an encrypted connection." : "Tvinger klientene til å koble til %s via en kryptert forbindelse.",
"Enforce HTTPS for subdomains" : "Krev HTTPS for underdomener",
"Forces the clients to connect to %s and subdomains via an encrypted connection." : "Tvinger klientene til å koble til %s og underdomener via en kryptert forbindelse.",
@@ -165,8 +166,10 @@
"Test email settings" : "Test innstillinger for e-post",
"Send email" : "Send e-post",
"Log level" : "Loggnivå",
+ "Download logfile" : "Last ned loggfil",
"More" : "Mer",
"Less" : "Mindre",
+ "The logfile is bigger than 100MB. Downloading it may take some time!" : "Loggfilen er større enn 100MB. Det kan ta litt tid å laste den ned!",
"Version" : "Versjon",
"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." : "Utviklet av <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud-fellesskapet</a>. <a href=\"https://github.com/owncloud\" target=\"_blank\">Kildekoden</a> er lisensiert under <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.",
"More apps" : "Flere apper",
diff --git a/settings/l10n/nl.js b/settings/l10n/nl.js
index ae012a9d136..e5222d44679 100644
--- a/settings/l10n/nl.js
+++ b/settings/l10n/nl.js
@@ -36,6 +36,7 @@ OC.L10N.register(
"Group already exists." : "Groep bestaat al.",
"Unable to add group." : "Kan groep niet toevoegen.",
"Unable to delete group." : "Kan groep niet verwijderen.",
+ "log-level out of allowed range" : "loggingniveau buiten toegestane bereik",
"Saved" : "Bewaard",
"test email settings" : "test e-mailinstellingen",
"If you received this email, the settings seem to be correct." : "Als u dit e-mailbericht ontvangt, lijken de instellingen juist.",
@@ -123,7 +124,7 @@ OC.L10N.register(
"This means that there might be problems with certain characters in file names." : "Dat betekent dat er problemen kunnen optreden met bepaalde tekens in bestandsnamen.",
"We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "We adviseren met klem om de noodzakelijke pakketten op uw systeem te installeren om een van de volgende talen te ondersteunen: %s.",
"URL generation in notification emails" : "URL genereren in notificatie e-mails",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Als uw installatie niet in de hoofddirectory van het domein staat, maar wel cron gebruikt, dan kunnen er problemen ontstaan bij het genereren van URL's. Om deze problemen te voorkomen zou u de \"overwritewebroot\" optie in config.php moeten instellen op het webroot pad van uw ownCloud (aanbevolen: \"%s\") ",
+ "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Als uw installatie niet in de hoofddirectory van het domein staat, maar wel cron gebruikt, dan kunnen er problemen ontstaan bij het genereren van URL's. Om deze problemen te voorkomen zou u de \"overwrite.cli.url\" optie in config.php moeten instellen op het webroot pad van uw ownCloud (aanbevolen: \"%s\") ",
"Configuration Checks" : "Configuratie Controles",
"No problems found" : "Geen problemen gevonden",
"Please double check the <a href='%s'>installation guides</a>." : "Controleer de <a href='%s'>installatiehandleiding</a> goed.",
@@ -152,7 +153,7 @@ OC.L10N.register(
"Enforce HTTPS for subdomains" : "HTTPS afdwingen voor subdomeinen",
"Forces the clients to connect to %s and subdomains via an encrypted connection." : "Dwingt de clients om een versleutelde verbinding te maken met %s en de subdomeinen.",
"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." : "Maak verbinding naar uw %s via HTTPS om een geforceerde versleutelde verbinding in- of uit te schakelen.",
- "This is used for sending out notifications." : "Dit wordt gestuurd voor het verzenden van meldingen.",
+ "This is used for sending out notifications." : "Dit wordt gebruikt voor het verzenden van meldingen.",
"Send mode" : "Verstuurmodus",
"From address" : "Afzenderadres",
"mail" : "e-mail",
@@ -167,8 +168,10 @@ OC.L10N.register(
"Test email settings" : "Test e-mailinstellingen",
"Send email" : "Versturen e-mail",
"Log level" : "Log niveau",
+ "Download logfile" : "Download logbestand",
"More" : "Meer",
"Less" : "Minder",
+ "The logfile is bigger than 100MB. Downloading it may take some time!" : "het logbestand is groter dan 100MB. Downloaden kost even tijd!",
"Version" : "Versie",
"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." : "Ontwikkeld door de <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud gemeenschap</a>, de <a href=\"https://github.com/owncloud\" target=\"_blank\">broncode</a> is gelicenseerd onder de <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.",
"More apps" : "Meer applicaties",
diff --git a/settings/l10n/nl.json b/settings/l10n/nl.json
index a6bdd44ee0a..39d46271a71 100644
--- a/settings/l10n/nl.json
+++ b/settings/l10n/nl.json
@@ -34,6 +34,7 @@
"Group already exists." : "Groep bestaat al.",
"Unable to add group." : "Kan groep niet toevoegen.",
"Unable to delete group." : "Kan groep niet verwijderen.",
+ "log-level out of allowed range" : "loggingniveau buiten toegestane bereik",
"Saved" : "Bewaard",
"test email settings" : "test e-mailinstellingen",
"If you received this email, the settings seem to be correct." : "Als u dit e-mailbericht ontvangt, lijken de instellingen juist.",
@@ -121,7 +122,7 @@
"This means that there might be problems with certain characters in file names." : "Dat betekent dat er problemen kunnen optreden met bepaalde tekens in bestandsnamen.",
"We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "We adviseren met klem om de noodzakelijke pakketten op uw systeem te installeren om een van de volgende talen te ondersteunen: %s.",
"URL generation in notification emails" : "URL genereren in notificatie e-mails",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Als uw installatie niet in de hoofddirectory van het domein staat, maar wel cron gebruikt, dan kunnen er problemen ontstaan bij het genereren van URL's. Om deze problemen te voorkomen zou u de \"overwritewebroot\" optie in config.php moeten instellen op het webroot pad van uw ownCloud (aanbevolen: \"%s\") ",
+ "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Als uw installatie niet in de hoofddirectory van het domein staat, maar wel cron gebruikt, dan kunnen er problemen ontstaan bij het genereren van URL's. Om deze problemen te voorkomen zou u de \"overwrite.cli.url\" optie in config.php moeten instellen op het webroot pad van uw ownCloud (aanbevolen: \"%s\") ",
"Configuration Checks" : "Configuratie Controles",
"No problems found" : "Geen problemen gevonden",
"Please double check the <a href='%s'>installation guides</a>." : "Controleer de <a href='%s'>installatiehandleiding</a> goed.",
@@ -150,7 +151,7 @@
"Enforce HTTPS for subdomains" : "HTTPS afdwingen voor subdomeinen",
"Forces the clients to connect to %s and subdomains via an encrypted connection." : "Dwingt de clients om een versleutelde verbinding te maken met %s en de subdomeinen.",
"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." : "Maak verbinding naar uw %s via HTTPS om een geforceerde versleutelde verbinding in- of uit te schakelen.",
- "This is used for sending out notifications." : "Dit wordt gestuurd voor het verzenden van meldingen.",
+ "This is used for sending out notifications." : "Dit wordt gebruikt voor het verzenden van meldingen.",
"Send mode" : "Verstuurmodus",
"From address" : "Afzenderadres",
"mail" : "e-mail",
@@ -165,8 +166,10 @@
"Test email settings" : "Test e-mailinstellingen",
"Send email" : "Versturen e-mail",
"Log level" : "Log niveau",
+ "Download logfile" : "Download logbestand",
"More" : "Meer",
"Less" : "Minder",
+ "The logfile is bigger than 100MB. Downloading it may take some time!" : "het logbestand is groter dan 100MB. Downloaden kost even tijd!",
"Version" : "Versie",
"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." : "Ontwikkeld door de <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud gemeenschap</a>, de <a href=\"https://github.com/owncloud\" target=\"_blank\">broncode</a> is gelicenseerd onder de <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.",
"More apps" : "Meer applicaties",
diff --git a/settings/l10n/pl.js b/settings/l10n/pl.js
index 9bbfe133264..ed02403e464 100644
--- a/settings/l10n/pl.js
+++ b/settings/l10n/pl.js
@@ -108,7 +108,6 @@ OC.L10N.register(
"System locale can not be set to a one which supports UTF-8." : "Ustawienia regionalne systemu nie można ustawić na jeden, który obsługuje UTF-8.",
"This means that there might be problems with certain characters in file names." : "Oznacza to, że mogą być problemy z niektórymi znakami w nazwach plików.",
"URL generation in notification emails" : "Generowanie URL w powiadomieniach email",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Jeśli Twoja instalacja nie jest zainstalowana w katalogu głównym serwera www, a system używa cron-a, mogą występować problemy z generowaniem URL-i. Aby uniknąć tych problemów, proszę ustawić opcję \"overwritewebroot\" w pliku config.php na ścieżkę z adresu www Twojej instalacji (Sugerowane: \"%s\")",
"No problems found" : "Nie ma żadnych problemów",
"Please double check the <a href='%s'>installation guides</a>." : "Sprawdź podwójnie <a href='%s'>wskazówki instalacji</a>.",
"Last cron was executed at %s." : "Ostatni cron był uruchomiony %s.",
@@ -152,13 +151,13 @@ OC.L10N.register(
"Version" : "Wersja",
"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." : "Stworzone przez <a href=\"http://ownCloud.org/contact\" target=\"_blank\">społeczność ownCloud</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">kod źródłowy</a> na licencji <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.",
"More apps" : "Więcej aplikacji",
- "Add your app" : "Dodaj twoją aplikację",
+ "Add your app" : "Dodaj aplikację",
"by" : "przez",
"licensed" : "Licencja",
"Documentation:" : "Dokumentacja:",
"User Documentation" : "Dokumentacja użytkownika",
"Admin Documentation" : "Dokumentacja Administratora",
- "Update to %s" : "Aktualizuj do %s",
+ "Update to %s" : "Uaktualnij do %s",
"Enable only for specific groups" : "Włącz tylko dla określonych grup",
"Uninstall App" : "Odinstaluj aplikację",
"Cheers!" : "Pozdrawiam!",
diff --git a/settings/l10n/pl.json b/settings/l10n/pl.json
index b657cf44345..7173db87e2b 100644
--- a/settings/l10n/pl.json
+++ b/settings/l10n/pl.json
@@ -106,7 +106,6 @@
"System locale can not be set to a one which supports UTF-8." : "Ustawienia regionalne systemu nie można ustawić na jeden, który obsługuje UTF-8.",
"This means that there might be problems with certain characters in file names." : "Oznacza to, że mogą być problemy z niektórymi znakami w nazwach plików.",
"URL generation in notification emails" : "Generowanie URL w powiadomieniach email",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Jeśli Twoja instalacja nie jest zainstalowana w katalogu głównym serwera www, a system używa cron-a, mogą występować problemy z generowaniem URL-i. Aby uniknąć tych problemów, proszę ustawić opcję \"overwritewebroot\" w pliku config.php na ścieżkę z adresu www Twojej instalacji (Sugerowane: \"%s\")",
"No problems found" : "Nie ma żadnych problemów",
"Please double check the <a href='%s'>installation guides</a>." : "Sprawdź podwójnie <a href='%s'>wskazówki instalacji</a>.",
"Last cron was executed at %s." : "Ostatni cron był uruchomiony %s.",
@@ -150,13 +149,13 @@
"Version" : "Wersja",
"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." : "Stworzone przez <a href=\"http://ownCloud.org/contact\" target=\"_blank\">społeczność ownCloud</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">kod źródłowy</a> na licencji <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.",
"More apps" : "Więcej aplikacji",
- "Add your app" : "Dodaj twoją aplikację",
+ "Add your app" : "Dodaj aplikację",
"by" : "przez",
"licensed" : "Licencja",
"Documentation:" : "Dokumentacja:",
"User Documentation" : "Dokumentacja użytkownika",
"Admin Documentation" : "Dokumentacja Administratora",
- "Update to %s" : "Aktualizuj do %s",
+ "Update to %s" : "Uaktualnij do %s",
"Enable only for specific groups" : "Włącz tylko dla określonych grup",
"Uninstall App" : "Odinstaluj aplikację",
"Cheers!" : "Pozdrawiam!",
diff --git a/settings/l10n/pt_BR.js b/settings/l10n/pt_BR.js
index a0fe30faa27..99f1009db79 100644
--- a/settings/l10n/pt_BR.js
+++ b/settings/l10n/pt_BR.js
@@ -36,6 +36,7 @@ OC.L10N.register(
"Group already exists." : "O Grupo já existe.",
"Unable to add group." : "Não é possível adicionar grupo.",
"Unable to delete group." : "Não é possível excluir grupo.",
+ "log-level out of allowed range" : "log-nível acima do permitido",
"Saved" : "Salvo",
"test email settings" : "testar configurações de email",
"If you received this email, the settings seem to be correct." : "Se você recebeu este e-mail, as configurações parecem estar corretas.",
@@ -123,7 +124,7 @@ OC.L10N.register(
"This means that there might be problems with certain characters in file names." : "Isso significa que pode haver problemas com certos caracteres nos nomes de arquivo.",
"We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Nós sugerimos a instalação dos pacotes necessários em seu sistema para suportar um dos seguintes locais: %s.",
"URL generation in notification emails" : "Geração de URL em e-mails de notificação",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Se a sua instalação não estiver instalada na raiz do domínio e usa cron do sistema, pode haver problemas com a geração de URL. Para evitar esses problemas, por favor, defina a opção \"overwritewebroot\" em seu arquivo config.php para o caminho webroot de sua instalação (Sugestão: \"%s\")",
+ "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Se a sua instalação não estiver instalada na raiz do domínio e usa cron do sistema, pode haver problemas com a geração de URL. Para evitar esses problemas, por favor, defina a opção \"overwrite.cli.url\" em seu arquivo config.php para o caminho webroot de sua instalação (Sugestão: \"%s\")",
"Configuration Checks" : "Verificações de Configuração",
"No problems found" : "Nenhum problema encontrado",
"Please double check the <a href='%s'>installation guides</a>." : "Por favor, confira o <a href='%s'>guia de instalação</a>.",
@@ -167,8 +168,10 @@ OC.L10N.register(
"Test email settings" : "Configurações de e-mail de teste",
"Send email" : "Enviar email",
"Log level" : "Nível de registro",
+ "Download logfile" : "Baixar o arquivo de log",
"More" : "Mais",
"Less" : "Menos",
+ "The logfile is bigger than 100MB. Downloading it may take some time!" : "O arquivo de log é maior do que 100 MB. Baixar o arquivo pode demorar algum tempo!",
"Version" : "Versão",
"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." : "Desenvolvido pela <a href=\"http://ownCloud.org/contact\" target=\"_blank\">comunidade ownCloud</a>, o <a href=\"https://github.com/owncloud\" target=\"_blank\">código fonte</a> está licenciado sob <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.",
"More apps" : "Mais aplicativos",
diff --git a/settings/l10n/pt_BR.json b/settings/l10n/pt_BR.json
index 9a108eb1041..1a59966e6bb 100644
--- a/settings/l10n/pt_BR.json
+++ b/settings/l10n/pt_BR.json
@@ -34,6 +34,7 @@
"Group already exists." : "O Grupo já existe.",
"Unable to add group." : "Não é possível adicionar grupo.",
"Unable to delete group." : "Não é possível excluir grupo.",
+ "log-level out of allowed range" : "log-nível acima do permitido",
"Saved" : "Salvo",
"test email settings" : "testar configurações de email",
"If you received this email, the settings seem to be correct." : "Se você recebeu este e-mail, as configurações parecem estar corretas.",
@@ -121,7 +122,7 @@
"This means that there might be problems with certain characters in file names." : "Isso significa que pode haver problemas com certos caracteres nos nomes de arquivo.",
"We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Nós sugerimos a instalação dos pacotes necessários em seu sistema para suportar um dos seguintes locais: %s.",
"URL generation in notification emails" : "Geração de URL em e-mails de notificação",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Se a sua instalação não estiver instalada na raiz do domínio e usa cron do sistema, pode haver problemas com a geração de URL. Para evitar esses problemas, por favor, defina a opção \"overwritewebroot\" em seu arquivo config.php para o caminho webroot de sua instalação (Sugestão: \"%s\")",
+ "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Se a sua instalação não estiver instalada na raiz do domínio e usa cron do sistema, pode haver problemas com a geração de URL. Para evitar esses problemas, por favor, defina a opção \"overwrite.cli.url\" em seu arquivo config.php para o caminho webroot de sua instalação (Sugestão: \"%s\")",
"Configuration Checks" : "Verificações de Configuração",
"No problems found" : "Nenhum problema encontrado",
"Please double check the <a href='%s'>installation guides</a>." : "Por favor, confira o <a href='%s'>guia de instalação</a>.",
@@ -165,8 +166,10 @@
"Test email settings" : "Configurações de e-mail de teste",
"Send email" : "Enviar email",
"Log level" : "Nível de registro",
+ "Download logfile" : "Baixar o arquivo de log",
"More" : "Mais",
"Less" : "Menos",
+ "The logfile is bigger than 100MB. Downloading it may take some time!" : "O arquivo de log é maior do que 100 MB. Baixar o arquivo pode demorar algum tempo!",
"Version" : "Versão",
"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." : "Desenvolvido pela <a href=\"http://ownCloud.org/contact\" target=\"_blank\">comunidade ownCloud</a>, o <a href=\"https://github.com/owncloud\" target=\"_blank\">código fonte</a> está licenciado sob <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.",
"More apps" : "Mais aplicativos",
diff --git a/settings/l10n/pt_PT.js b/settings/l10n/pt_PT.js
index d2ee9f5835b..ce2e707597e 100644
--- a/settings/l10n/pt_PT.js
+++ b/settings/l10n/pt_PT.js
@@ -33,12 +33,20 @@ OC.L10N.register(
"Enabled" : "Ativada",
"Not enabled" : "Desativada",
"Recommended" : "Recomendado",
+ "Group already exists." : "O grupo já existe.",
+ "Unable to add group." : "Impossível acrescentar o grupo.",
+ "Unable to delete group." : "Impossível apagar grupo.",
"Saved" : "Guardado",
"test email settings" : "testar as definições de e-mail",
"If you received this email, the settings seem to be correct." : "Se recebeu este e-mail, as configurações parecem estar corretas",
"A problem occurred while sending the email. Please revise your settings." : "Ocorreu um problema durante o envio do e-mail. Por favor, verifique as suas configurações..",
"Email sent" : "Mensagem enviada",
"You need to set your user email before being able to send test emails." : "Você precisa de configurar o seu e-mail de usuário antes de ser capaz de enviar e-mails de teste",
+ "Invalid mail address" : "Endereço de correio eletrónico inválido",
+ "Unable to create user." : "Impossível criar o utilizador.",
+ "Unable to delete user." : "Impossível apagar o utilizador.",
+ "Forbidden" : "Proibido",
+ "Invalid user" : "Utilizador inválido",
"Email saved" : "E-mail guardado",
"Are you really sure you want add \"{domain}\" as trusted domain?" : "Você tem certeza que quer adicionar \"{domain}\" como domínio confiável?",
"Add trusted domain" : "Adicionar domínio confiável ",
@@ -112,7 +120,6 @@ OC.L10N.register(
"This means that there might be problems with certain characters in file names." : "Isto significa que podem haver problemas com alguns caracteres nos nomes dos ficheiros.",
"We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Nós recomendamos fortemente que instale no seu sistema os pacotes necessários para suportar uma das seguintes locallidades: %s.",
"URL generation in notification emails" : "Geração URL em e-mails de notificação",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Se a sua instalação não está instalada na raiz do domínio e usa o sistema cron, pode haver problemas com a geração de URL. Para evitar esses problemas, por favor, defina a opção \"overwritewebroot\" no ficheiro config.php para o caminho webroot da sua instalação (sugestão: \"%s\")",
"No problems found" : "Nenhum problema encontrado",
"Please double check the <a href='%s'>installation guides</a>." : "Por favor verifique <a href='%s'>installation guides</a>.",
"Last cron was executed at %s." : "O ultimo cron foi executado em %s.",
@@ -214,6 +221,7 @@ OC.L10N.register(
"Show storage location" : "Mostrar a localização do armazenamento",
"Show last log in" : "Mostrar ultimo acesso de entrada",
"Username" : "Nome de utilizador",
+ "E-Mail" : "Correio Eletrónico",
"Create" : "Criar",
"Admin Recovery Password" : "Recuperação da Palavra-passe de Administrador",
"Enter the recovery password in order to recover the users files during password change" : "Digite a senha de recuperação, a fim de recuperar os ficheiros dos utilizadores durante a mudança da palavra-passe",
@@ -232,6 +240,7 @@ OC.L10N.register(
"Last Login" : "Ultimo acesso",
"change full name" : "alterar nome completo",
"set new password" : "definir nova palavra-passe",
+ "change email address" : "alterar endereço do correio eletrónico",
"Default" : "Padrão"
},
"nplurals=2; plural=(n != 1);");
diff --git a/settings/l10n/pt_PT.json b/settings/l10n/pt_PT.json
index d7971dda12a..e6414eee113 100644
--- a/settings/l10n/pt_PT.json
+++ b/settings/l10n/pt_PT.json
@@ -31,12 +31,20 @@
"Enabled" : "Ativada",
"Not enabled" : "Desativada",
"Recommended" : "Recomendado",
+ "Group already exists." : "O grupo já existe.",
+ "Unable to add group." : "Impossível acrescentar o grupo.",
+ "Unable to delete group." : "Impossível apagar grupo.",
"Saved" : "Guardado",
"test email settings" : "testar as definições de e-mail",
"If you received this email, the settings seem to be correct." : "Se recebeu este e-mail, as configurações parecem estar corretas",
"A problem occurred while sending the email. Please revise your settings." : "Ocorreu um problema durante o envio do e-mail. Por favor, verifique as suas configurações..",
"Email sent" : "Mensagem enviada",
"You need to set your user email before being able to send test emails." : "Você precisa de configurar o seu e-mail de usuário antes de ser capaz de enviar e-mails de teste",
+ "Invalid mail address" : "Endereço de correio eletrónico inválido",
+ "Unable to create user." : "Impossível criar o utilizador.",
+ "Unable to delete user." : "Impossível apagar o utilizador.",
+ "Forbidden" : "Proibido",
+ "Invalid user" : "Utilizador inválido",
"Email saved" : "E-mail guardado",
"Are you really sure you want add \"{domain}\" as trusted domain?" : "Você tem certeza que quer adicionar \"{domain}\" como domínio confiável?",
"Add trusted domain" : "Adicionar domínio confiável ",
@@ -110,7 +118,6 @@
"This means that there might be problems with certain characters in file names." : "Isto significa que podem haver problemas com alguns caracteres nos nomes dos ficheiros.",
"We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Nós recomendamos fortemente que instale no seu sistema os pacotes necessários para suportar uma das seguintes locallidades: %s.",
"URL generation in notification emails" : "Geração URL em e-mails de notificação",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Se a sua instalação não está instalada na raiz do domínio e usa o sistema cron, pode haver problemas com a geração de URL. Para evitar esses problemas, por favor, defina a opção \"overwritewebroot\" no ficheiro config.php para o caminho webroot da sua instalação (sugestão: \"%s\")",
"No problems found" : "Nenhum problema encontrado",
"Please double check the <a href='%s'>installation guides</a>." : "Por favor verifique <a href='%s'>installation guides</a>.",
"Last cron was executed at %s." : "O ultimo cron foi executado em %s.",
@@ -212,6 +219,7 @@
"Show storage location" : "Mostrar a localização do armazenamento",
"Show last log in" : "Mostrar ultimo acesso de entrada",
"Username" : "Nome de utilizador",
+ "E-Mail" : "Correio Eletrónico",
"Create" : "Criar",
"Admin Recovery Password" : "Recuperação da Palavra-passe de Administrador",
"Enter the recovery password in order to recover the users files during password change" : "Digite a senha de recuperação, a fim de recuperar os ficheiros dos utilizadores durante a mudança da palavra-passe",
@@ -230,6 +238,7 @@
"Last Login" : "Ultimo acesso",
"change full name" : "alterar nome completo",
"set new password" : "definir nova palavra-passe",
+ "change email address" : "alterar endereço do correio eletrónico",
"Default" : "Padrão"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
} \ No newline at end of file
diff --git a/settings/l10n/ru.js b/settings/l10n/ru.js
index d851d296961..579cacc25a0 100644
--- a/settings/l10n/ru.js
+++ b/settings/l10n/ru.js
@@ -36,6 +36,7 @@ OC.L10N.register(
"Group already exists." : "Группа уже существует.",
"Unable to add group." : "Невозможно добавить группу.",
"Unable to delete group." : "Невозможно удалить группу.",
+ "log-level out of allowed range" : "Уровень журнала вышел за разрешенный диапазон",
"Saved" : "Сохранено",
"test email settings" : "проверить настройки почты",
"If you received this email, the settings seem to be correct." : "Если вы получили это письмо, настройки верны.",
@@ -123,7 +124,7 @@ OC.L10N.register(
"This means that there might be problems with certain characters in file names." : "Это значит, что могут быть проблемы с некоторыми символами в именах файлов.",
"We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Мы рекомендуем установить требуемые пакеты для вашей системы для поддержки одного из следующих языков: %s.",
"URL generation in notification emails" : "Генерирование URL в уведомляющих электронных письмах",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Если ваша копия ownCloud установлена не в корне домена и использует планировщик cron системы, возможны проблемы с правильной генерацией URL. Чтобы избежать этого, укажите опцию \"overwritewebroot\" в файле config.php в соответствии с путём установки. (Предположительно: \"%s\")",
+ "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Если ваша копия ownCloud установлена не в корне домена и использует планировщик cron системы, возможны проблемы с правильной генерацией URL. Чтобы избежать этого, установите опцию \"overwrite.cli.url\" в файле config.php равной пути папки установки. (Предположительно: \"%s\".)",
"Configuration Checks" : "Проверка конфигурации",
"No problems found" : "Проблемы не найдены",
"Please double check the <a href='%s'>installation guides</a>." : "Подробно изучите <a href='%s'>инструкции по установке</a>.",
@@ -167,8 +168,10 @@ OC.L10N.register(
"Test email settings" : "Проверить настройки почты",
"Send email" : "Отправить email",
"Log level" : "Уровень детализации журнала",
+ "Download logfile" : "Скачать журнал",
"More" : "Больше",
"Less" : "Меньше",
+ "The logfile is bigger than 100MB. Downloading it may take some time!" : "Размер журнала превышает 100MB. Скачивание может занять некоторое время.",
"Version" : "Версия",
"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." : "Разрабатывается <a href=\"http://ownCloud.org/contact\" target=\"_blank\">сообществом ownCloud</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">исходный код</a> доступен под лицензией <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.",
"More apps" : "Ещё приложения",
diff --git a/settings/l10n/ru.json b/settings/l10n/ru.json
index 89b9d204ea8..45ce9d5e887 100644
--- a/settings/l10n/ru.json
+++ b/settings/l10n/ru.json
@@ -34,6 +34,7 @@
"Group already exists." : "Группа уже существует.",
"Unable to add group." : "Невозможно добавить группу.",
"Unable to delete group." : "Невозможно удалить группу.",
+ "log-level out of allowed range" : "Уровень журнала вышел за разрешенный диапазон",
"Saved" : "Сохранено",
"test email settings" : "проверить настройки почты",
"If you received this email, the settings seem to be correct." : "Если вы получили это письмо, настройки верны.",
@@ -121,7 +122,7 @@
"This means that there might be problems with certain characters in file names." : "Это значит, что могут быть проблемы с некоторыми символами в именах файлов.",
"We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Мы рекомендуем установить требуемые пакеты для вашей системы для поддержки одного из следующих языков: %s.",
"URL generation in notification emails" : "Генерирование URL в уведомляющих электронных письмах",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Если ваша копия ownCloud установлена не в корне домена и использует планировщик cron системы, возможны проблемы с правильной генерацией URL. Чтобы избежать этого, укажите опцию \"overwritewebroot\" в файле config.php в соответствии с путём установки. (Предположительно: \"%s\")",
+ "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Если ваша копия ownCloud установлена не в корне домена и использует планировщик cron системы, возможны проблемы с правильной генерацией URL. Чтобы избежать этого, установите опцию \"overwrite.cli.url\" в файле config.php равной пути папки установки. (Предположительно: \"%s\".)",
"Configuration Checks" : "Проверка конфигурации",
"No problems found" : "Проблемы не найдены",
"Please double check the <a href='%s'>installation guides</a>." : "Подробно изучите <a href='%s'>инструкции по установке</a>.",
@@ -165,8 +166,10 @@
"Test email settings" : "Проверить настройки почты",
"Send email" : "Отправить email",
"Log level" : "Уровень детализации журнала",
+ "Download logfile" : "Скачать журнал",
"More" : "Больше",
"Less" : "Меньше",
+ "The logfile is bigger than 100MB. Downloading it may take some time!" : "Размер журнала превышает 100MB. Скачивание может занять некоторое время.",
"Version" : "Версия",
"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." : "Разрабатывается <a href=\"http://ownCloud.org/contact\" target=\"_blank\">сообществом ownCloud</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">исходный код</a> доступен под лицензией <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.",
"More apps" : "Ещё приложения",
diff --git a/settings/l10n/sk_SK.js b/settings/l10n/sk_SK.js
index 4fdc69679e0..471a643f4a5 100644
--- a/settings/l10n/sk_SK.js
+++ b/settings/l10n/sk_SK.js
@@ -109,7 +109,6 @@ OC.L10N.register(
"System locale can not be set to a one which supports UTF-8." : "Nie je možné nastaviť znakovú sadu, ktorá podporuje UTF-8.",
"This means that there might be problems with certain characters in file names." : "To znamená, že sa môžu vyskytnúť problémy s niektorými znakmi v názvoch súborov.",
"URL generation in notification emails" : "Generovanie adresy URL v oznamovacích emailoch",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Inštalácia mimo koreňový priečinok domény a používanie systémového príkazu cron môže spôsobiť problém s generovaním správnej URL. Pre zabránenie týmto chybám nastavte prosím správnu cestu v svojom config.php súbore pre hodnotu \"overwritewebroot\" (Doporučujeme: \"%s\")",
"No problems found" : "Nenašli sa žiadne problémy",
"Please double check the <a href='%s'>installation guides</a>." : "Prosím skontrolujte <a href='%s'>inštalačnú príručku</a>.",
"Last cron was executed at %s." : "Posledný cron bol spustený %s.",
diff --git a/settings/l10n/sk_SK.json b/settings/l10n/sk_SK.json
index 86ac65237eb..d6fd78b4aaa 100644
--- a/settings/l10n/sk_SK.json
+++ b/settings/l10n/sk_SK.json
@@ -107,7 +107,6 @@
"System locale can not be set to a one which supports UTF-8." : "Nie je možné nastaviť znakovú sadu, ktorá podporuje UTF-8.",
"This means that there might be problems with certain characters in file names." : "To znamená, že sa môžu vyskytnúť problémy s niektorými znakmi v názvoch súborov.",
"URL generation in notification emails" : "Generovanie adresy URL v oznamovacích emailoch",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Inštalácia mimo koreňový priečinok domény a používanie systémového príkazu cron môže spôsobiť problém s generovaním správnej URL. Pre zabránenie týmto chybám nastavte prosím správnu cestu v svojom config.php súbore pre hodnotu \"overwritewebroot\" (Doporučujeme: \"%s\")",
"No problems found" : "Nenašli sa žiadne problémy",
"Please double check the <a href='%s'>installation guides</a>." : "Prosím skontrolujte <a href='%s'>inštalačnú príručku</a>.",
"Last cron was executed at %s." : "Posledný cron bol spustený %s.",
diff --git a/settings/l10n/sl.js b/settings/l10n/sl.js
index 886d9efee8f..8e30838600c 100644
--- a/settings/l10n/sl.js
+++ b/settings/l10n/sl.js
@@ -33,6 +33,9 @@ OC.L10N.register(
"Enabled" : "Omogočeno",
"Not enabled" : "Ni omogočeno",
"Recommended" : "Priporočljivo",
+ "Group already exists." : "Skupina že obstaja.",
+ "Unable to add group." : "Ni mogoče dodati skupine",
+ "Unable to delete group." : "Ni mogoče izbrisati skupine.",
"Saved" : "Shranjeno",
"test email settings" : "preizkusi nastavitve elektronske pošte",
"If you received this email, the settings seem to be correct." : "Če ste prejeli to sporočilo, so nastavitve pravilne.",
@@ -41,8 +44,11 @@ OC.L10N.register(
"You need to set your user email before being able to send test emails." : "Pred preizkusnim pošiljanjem sporočil je treba nastaviti elektronski naslov uporabnika.",
"Invalid mail address" : "Neveljaven elektronski naslov",
"Unable to create user." : "Ni mogoče ustvariti uporabnika.",
+ "Your %s account was created" : "Račun %s je uspešno ustvarjen.",
"Unable to delete user." : "Ni mogoče izbrisati uporabnika",
+ "Forbidden" : "Dostop je prepovedan",
"Invalid user" : "Neveljavni podatki uporabnika",
+ "Unable to change mail address" : "Ni mogoče spremeniti naslova elektronske pošte.",
"Email saved" : "Elektronski naslov je shranjen",
"Are you really sure you want add \"{domain}\" as trusted domain?" : "Ali ste prepričani, da želite dodati \"{domain}\" kot varno domeno?",
"Add trusted domain" : "Dodaj varno domeno",
@@ -83,6 +89,7 @@ OC.L10N.register(
"A valid username must be provided" : "Navedeno mora biti veljavno uporabniško ime",
"Error creating user" : "Napaka ustvarjanja uporabnika",
"A valid password must be provided" : "Navedeno mora biti veljavno geslo",
+ "A valid email must be provided" : "Naveden mora biti veljaven naslov elektronske pošte.",
"__language_name__" : "Slovenščina",
"Personal Info" : "Osebni podatki",
"SSL root certificates" : "Korenska potrdila SSL",
@@ -109,6 +116,7 @@ OC.L10N.register(
"System locale can not be set to a one which supports UTF-8." : "Sistemskih jezikovnih nastavitev ni mogoče nastaviti na možnost, ki podpira nabor UTF-8.",
"This means that there might be problems with certain characters in file names." : "To pomeni, da se lahko pojavijo napake pri nekaterih znakih v imenih datotek.",
"URL generation in notification emails" : "Ustvarjanje naslova URL v elektronskih sporočilih",
+ "Configuration Checks" : "Preverjanje nastavitev",
"No problems found" : "Ni zaznanih težav",
"Please double check the <a href='%s'>installation guides</a>." : "Preverite <a href='%s'>navodila namestitve</a>.",
"Last cron was executed at %s." : "Zadnje periodično opravilo cron je bilo izvedeno ob %s.",
@@ -149,6 +157,7 @@ OC.L10N.register(
"Test email settings" : "Preizkus nastavitev elektronske pošte",
"Send email" : "Pošlji elektronsko sporočilo",
"Log level" : "Raven beleženja",
+ "Download logfile" : "Prejmi dnevniško datoteko",
"More" : "Več",
"Less" : "Manj",
"Version" : "Različica",
@@ -159,6 +168,7 @@ OC.L10N.register(
"Documentation:" : "Dokumentacija:",
"User Documentation" : "Uporabniška dokumentacija",
"Admin Documentation" : "Skrbniška dokumentacija",
+ "This app cannot be installed because the following dependencies are not fulfilled:" : "Programa ni mogoče namestiti zaradi nerešenih odvisnosti:",
"Update to %s" : "Posodobi na %s",
"Enable only for specific groups" : "Omogoči le za posamezne skupine",
"Uninstall App" : "Odstrani program",
@@ -206,7 +216,9 @@ OC.L10N.register(
"Delete Encryption Keys" : "Izbriši šifrirne ključe",
"Show storage location" : "Pokaži mesto shrambe",
"Show last log in" : "Pokaži podatke zadnje prijave",
+ "Show email address" : "Pokaži naslov elektronske pošte",
"Username" : "Uporabniško ime",
+ "E-Mail" : "Elektronska pošta",
"Create" : "Ustvari",
"Admin Recovery Password" : "Obnovitev skrbniškega gesla",
"Enter the recovery password in order to recover the users files during password change" : "Vnesite geslo, ki omogoča obnovitev uporabniških datotek med spreminjanjem gesla",
@@ -225,6 +237,7 @@ OC.L10N.register(
"Last Login" : "Zadnja prijava",
"change full name" : "Spremeni polno ime",
"set new password" : "nastavi novo geslo",
+ "change email address" : "spremeni naslov elektronske pošte",
"Default" : "Privzeto"
},
"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);");
diff --git a/settings/l10n/sl.json b/settings/l10n/sl.json
index a5487eb5b4f..c9b867dce40 100644
--- a/settings/l10n/sl.json
+++ b/settings/l10n/sl.json
@@ -31,6 +31,9 @@
"Enabled" : "Omogočeno",
"Not enabled" : "Ni omogočeno",
"Recommended" : "Priporočljivo",
+ "Group already exists." : "Skupina že obstaja.",
+ "Unable to add group." : "Ni mogoče dodati skupine",
+ "Unable to delete group." : "Ni mogoče izbrisati skupine.",
"Saved" : "Shranjeno",
"test email settings" : "preizkusi nastavitve elektronske pošte",
"If you received this email, the settings seem to be correct." : "Če ste prejeli to sporočilo, so nastavitve pravilne.",
@@ -39,8 +42,11 @@
"You need to set your user email before being able to send test emails." : "Pred preizkusnim pošiljanjem sporočil je treba nastaviti elektronski naslov uporabnika.",
"Invalid mail address" : "Neveljaven elektronski naslov",
"Unable to create user." : "Ni mogoče ustvariti uporabnika.",
+ "Your %s account was created" : "Račun %s je uspešno ustvarjen.",
"Unable to delete user." : "Ni mogoče izbrisati uporabnika",
+ "Forbidden" : "Dostop je prepovedan",
"Invalid user" : "Neveljavni podatki uporabnika",
+ "Unable to change mail address" : "Ni mogoče spremeniti naslova elektronske pošte.",
"Email saved" : "Elektronski naslov je shranjen",
"Are you really sure you want add \"{domain}\" as trusted domain?" : "Ali ste prepričani, da želite dodati \"{domain}\" kot varno domeno?",
"Add trusted domain" : "Dodaj varno domeno",
@@ -81,6 +87,7 @@
"A valid username must be provided" : "Navedeno mora biti veljavno uporabniško ime",
"Error creating user" : "Napaka ustvarjanja uporabnika",
"A valid password must be provided" : "Navedeno mora biti veljavno geslo",
+ "A valid email must be provided" : "Naveden mora biti veljaven naslov elektronske pošte.",
"__language_name__" : "Slovenščina",
"Personal Info" : "Osebni podatki",
"SSL root certificates" : "Korenska potrdila SSL",
@@ -107,6 +114,7 @@
"System locale can not be set to a one which supports UTF-8." : "Sistemskih jezikovnih nastavitev ni mogoče nastaviti na možnost, ki podpira nabor UTF-8.",
"This means that there might be problems with certain characters in file names." : "To pomeni, da se lahko pojavijo napake pri nekaterih znakih v imenih datotek.",
"URL generation in notification emails" : "Ustvarjanje naslova URL v elektronskih sporočilih",
+ "Configuration Checks" : "Preverjanje nastavitev",
"No problems found" : "Ni zaznanih težav",
"Please double check the <a href='%s'>installation guides</a>." : "Preverite <a href='%s'>navodila namestitve</a>.",
"Last cron was executed at %s." : "Zadnje periodično opravilo cron je bilo izvedeno ob %s.",
@@ -147,6 +155,7 @@
"Test email settings" : "Preizkus nastavitev elektronske pošte",
"Send email" : "Pošlji elektronsko sporočilo",
"Log level" : "Raven beleženja",
+ "Download logfile" : "Prejmi dnevniško datoteko",
"More" : "Več",
"Less" : "Manj",
"Version" : "Različica",
@@ -157,6 +166,7 @@
"Documentation:" : "Dokumentacija:",
"User Documentation" : "Uporabniška dokumentacija",
"Admin Documentation" : "Skrbniška dokumentacija",
+ "This app cannot be installed because the following dependencies are not fulfilled:" : "Programa ni mogoče namestiti zaradi nerešenih odvisnosti:",
"Update to %s" : "Posodobi na %s",
"Enable only for specific groups" : "Omogoči le za posamezne skupine",
"Uninstall App" : "Odstrani program",
@@ -204,7 +214,9 @@
"Delete Encryption Keys" : "Izbriši šifrirne ključe",
"Show storage location" : "Pokaži mesto shrambe",
"Show last log in" : "Pokaži podatke zadnje prijave",
+ "Show email address" : "Pokaži naslov elektronske pošte",
"Username" : "Uporabniško ime",
+ "E-Mail" : "Elektronska pošta",
"Create" : "Ustvari",
"Admin Recovery Password" : "Obnovitev skrbniškega gesla",
"Enter the recovery password in order to recover the users files during password change" : "Vnesite geslo, ki omogoča obnovitev uporabniških datotek med spreminjanjem gesla",
@@ -223,6 +235,7 @@
"Last Login" : "Zadnja prijava",
"change full name" : "Spremeni polno ime",
"set new password" : "nastavi novo geslo",
+ "change email address" : "spremeni naslov elektronske pošte",
"Default" : "Privzeto"
},"pluralForm" :"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"
} \ No newline at end of file
diff --git a/settings/l10n/sv.js b/settings/l10n/sv.js
index 42be5093591..e3c5edff674 100644
--- a/settings/l10n/sv.js
+++ b/settings/l10n/sv.js
@@ -123,7 +123,6 @@ OC.L10N.register(
"This means that there might be problems with certain characters in file names." : "Detta betyder att där kan komma att uppstå problem med vissa tecken i filnamn.",
"We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Vi rekommenderar starkt att installera de nödvändiga paketen på ditt system för att stödja en av följande språkversioner: %s.",
"URL generation in notification emails" : "URL-generering i notifieringsmejl",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Om installationen inte är installerad i roten av domänen och använder systemet cron, kan det finnas problem med URL-genereringen. För att undvika dessa problem, vänligen ange \"overwritewebroot\" i din config.php filen till webbrotens sökväg i din installation (förslagsvis: \"%s\")",
"Configuration Checks" : "Konfigurationskontroller",
"No problems found" : "Inga problem hittades",
"Please double check the <a href='%s'>installation guides</a>." : "Var god kontrollera <a href='%s'>installationsguiden</a>.",
@@ -155,7 +154,7 @@ OC.L10N.register(
"This is used for sending out notifications." : "Detta används för att skicka ut notifieringar.",
"Send mode" : "Sändningsläge",
"From address" : "Från adress",
- "mail" : "mejl",
+ "mail" : "mail",
"Authentication method" : "Autentiseringsmetod",
"Authentication required" : "Autentisering krävs",
"Server address" : "Serveradress",
@@ -182,9 +181,9 @@ OC.L10N.register(
"Update to %s" : "Uppdatera till %s",
"Enable only for specific groups" : "Aktivera endast för specifika grupper",
"Uninstall App" : "Avinstallera applikation",
- "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Hej där,<br><br>ville bara informera dig om att du nu har ett %s konto.<br><br>Ditt användarnamn: %s<br>Accessa det genom: <a href=\"%s\">%s</a><br><br>",
+ "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Hej där,<br><br>vill bara informera dig om att du nu har ett %s konto.<br><br>Ditt användarnamn: %s<br>Accessa det genom: <a href=\"%s\">%s</a><br><br>",
"Cheers!" : "Ha de fint!",
- "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Hej där,\n\njville bara informera dig om att du nu har ett %s konto.\n\nDitt användarnamn: %s\nAccessa det genom: %s\n",
+ "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Hej där,\n\nvill bara informera dig om att du nu har ett %s konto.\n\nDitt användarnamn: %s\nAccessa det genom: %s\n",
"Administrator Documentation" : "Administratörsdokumentation",
"Online Documentation" : "Onlinedokumentation",
"Forum" : "Forum",
diff --git a/settings/l10n/sv.json b/settings/l10n/sv.json
index 54ee7b60733..780839d1f7e 100644
--- a/settings/l10n/sv.json
+++ b/settings/l10n/sv.json
@@ -121,7 +121,6 @@
"This means that there might be problems with certain characters in file names." : "Detta betyder att där kan komma att uppstå problem med vissa tecken i filnamn.",
"We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Vi rekommenderar starkt att installera de nödvändiga paketen på ditt system för att stödja en av följande språkversioner: %s.",
"URL generation in notification emails" : "URL-generering i notifieringsmejl",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Om installationen inte är installerad i roten av domänen och använder systemet cron, kan det finnas problem med URL-genereringen. För att undvika dessa problem, vänligen ange \"overwritewebroot\" i din config.php filen till webbrotens sökväg i din installation (förslagsvis: \"%s\")",
"Configuration Checks" : "Konfigurationskontroller",
"No problems found" : "Inga problem hittades",
"Please double check the <a href='%s'>installation guides</a>." : "Var god kontrollera <a href='%s'>installationsguiden</a>.",
@@ -153,7 +152,7 @@
"This is used for sending out notifications." : "Detta används för att skicka ut notifieringar.",
"Send mode" : "Sändningsläge",
"From address" : "Från adress",
- "mail" : "mejl",
+ "mail" : "mail",
"Authentication method" : "Autentiseringsmetod",
"Authentication required" : "Autentisering krävs",
"Server address" : "Serveradress",
@@ -180,9 +179,9 @@
"Update to %s" : "Uppdatera till %s",
"Enable only for specific groups" : "Aktivera endast för specifika grupper",
"Uninstall App" : "Avinstallera applikation",
- "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Hej där,<br><br>ville bara informera dig om att du nu har ett %s konto.<br><br>Ditt användarnamn: %s<br>Accessa det genom: <a href=\"%s\">%s</a><br><br>",
+ "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Hej där,<br><br>vill bara informera dig om att du nu har ett %s konto.<br><br>Ditt användarnamn: %s<br>Accessa det genom: <a href=\"%s\">%s</a><br><br>",
"Cheers!" : "Ha de fint!",
- "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Hej där,\n\njville bara informera dig om att du nu har ett %s konto.\n\nDitt användarnamn: %s\nAccessa det genom: %s\n",
+ "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Hej där,\n\nvill bara informera dig om att du nu har ett %s konto.\n\nDitt användarnamn: %s\nAccessa det genom: %s\n",
"Administrator Documentation" : "Administratörsdokumentation",
"Online Documentation" : "Onlinedokumentation",
"Forum" : "Forum",
diff --git a/settings/l10n/tr.js b/settings/l10n/tr.js
index 8ed227bd997..9c0d78265e1 100644
--- a/settings/l10n/tr.js
+++ b/settings/l10n/tr.js
@@ -36,14 +36,20 @@ OC.L10N.register(
"Group already exists." : "Grup zaten mevcut.",
"Unable to add group." : "Grup ekleme başarısız.",
"Unable to delete group." : "Grubu silme başarısız.",
+ "log-level out of allowed range" : "günlük seviyesi izin verilen aralık dışında",
"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 email. Please revise your settings." : "E-posta gönderilirken bir sorun oluştu. Lütfen ayarlarınızı gözden geçirin.",
"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.",
+ "Invalid mail address" : "Geçersiz posta adresi",
"Unable to create user." : "Kullanıcı oluşturma başarısız.",
+ "Your %s account was created" : "%s hesabınız oluşturuldu",
"Unable to delete user." : "Kullanıcı silme başarısız.",
+ "Forbidden" : "Yasaklı",
+ "Invalid user" : "Geçersiz kullanıcı",
+ "Unable to change mail address" : "Posta adresini değiştirme başarısız",
"Email saved" : "E-posta kaydedildi",
"Are you really sure you want add \"{domain}\" as trusted domain?" : "\"{domain}\" alan adını güvenilir alan adı olarak eklemek istediğinizden emin misiniz?",
"Add trusted domain" : "Güvenilir alan adı ekle",
@@ -84,6 +90,7 @@ OC.L10N.register(
"A valid username must be provided" : "Geçerli bir kullanıcı adı mutlaka sağlanmalı",
"Error creating user" : "Kullanıcı oluşturulurken hata",
"A valid password must be provided" : "Geçerli bir parola mutlaka sağlanmalı",
+ "A valid email must be provided" : "Geçerli bir e-posta belirtilmeli",
"__language_name__" : "Türkçe",
"Personal Info" : "Kişisel Bilgi",
"SSL root certificates" : "SSL kök sertifikaları",
@@ -117,7 +124,7 @@ OC.L10N.register(
"This means that there might be problems with certain characters in file names." : "Bu, dosya adlarında belirli karakterlerde problem olabileceği anlamına gelir.",
"We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Şu dillerden birini desteklemesi için sisteminize gerekli paketleri kurmanızı şiddetle tavsiye ederiz: %s.",
"URL generation in notification emails" : "Bildirim e-postalarında URL oluşturulması",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Eğer kurulumunuz alan adının köküne yapılmamışsa ve sistem cron'u kullanıyorsa, URL oluşturma ile ilgili sorunlar olabilir. Bu sorunların önüne geçmek için, kurulumunuzun web kök yolundaki config.php dosyasında \"overwritewebroot\" seçeneğini ayarlayın (Önerilen: \"%s\")",
+ "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Eğer kurulumunuz alan adının köküne yapılmamışsa ve sistem cron'u kullanıyorsa, URL oluşturma ile ilgili sorunlar oluşabilir. Bu sorunların önüne geçmek için, kurulumunuzun web kök yolundaki config.php dosyasında \"overwrite.cli.url\" seçeneğini ayarlayın (Önerilen: \"%s\")",
"Configuration Checks" : "Yapılandırma Kontrolleri",
"No problems found" : "Hiç sorun yok",
"Please double check the <a href='%s'>installation guides</a>." : "Lütfen <a href='%s'>kurulum rehberlerini</a> iki kez kontrol edin.",
@@ -161,8 +168,10 @@ OC.L10N.register(
"Test email settings" : "E-posta ayarlarını sına",
"Send email" : "E-posta gönder",
"Log level" : "Günlük seviyesi",
+ "Download logfile" : "Günlük dosyasını indir",
"More" : "Daha fazla",
"Less" : "Daha az",
+ "The logfile is bigger than 100MB. Downloading it may take some time!" : "Günlük dosyası 100MB'dan daha büyük. İndirmek zaman alabilir!",
"Version" : "Sürüm",
"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." : "<a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud topluluğu</a> tarafından geliştirilmiş olup, <a href=\"https://github.com/owncloud\" target=\"_blank\">kaynak kodu</a>, <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> altında lisanslanmıştır.",
"More apps" : "Daha fazla uygulama",
@@ -176,13 +185,18 @@ OC.L10N.register(
"Update to %s" : "%s sürümüne güncelle",
"Enable only for specific groups" : "Sadece belirli gruplar için etkinleştir",
"Uninstall App" : "Uygulamayı Kaldır",
- "Cheers!" : "Hoşça kalın!",
+ "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Merhaba,<br><br>Sadece artık bir %s hesabınızın olduğunu söylemek istedim.<br><br>Kullanıcı adınız: %s<br>Şuradan erişin: <a href=\"%s\">%s</a><br><br>",
+ "Cheers!" : "Hoşçakalın!",
+ "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Merhaba,\n\nSadece, artık bir %s hesabınızın olduğunu söylemek istedim.\n\nKullanıcı adınız: %s\nErişim: %s\n\n",
"Administrator Documentation" : "Yönetici Belgelendirmesi",
"Online Documentation" : "Çevrimiçi Belgelendirme",
"Forum" : "Forum",
"Bugtracker" : "Hata Takip Sistemi",
"Commercial Support" : "Ticari Destek",
"Get the apps to sync your files" : "Dosyalarınızı eşitlemek için uygulamaları indirin",
+ "Desktop client" : "Masaüstü istemcisi",
+ "Android app" : "Android uygulaması",
+ "iOS app" : "iOS uygulaması",
"If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\">spread the word</a>!" : "Projeyi desteklemek istiyorsanız\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\">geliştirilmesine katılın</a>\n\t\tveya\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\">bizi duyurun</a>!",
"Show First Run Wizard again" : "İlk Çalıştırma Sihirbazı'nı yeniden göster",
"You have used <strong>%s</strong> of the available <strong>%s</strong>" : "Kullandığınız: <strong>%s</strong>. Kullanılabilir alan: <strong>%s</strong>",
@@ -219,7 +233,11 @@ OC.L10N.register(
"Delete Encryption Keys" : "Şifreleme Anahtarlarını Sil",
"Show storage location" : "Depolama konumunu göster",
"Show last log in" : "Son oturum açılma zamanını göster",
+ "Show user backend" : "Kullanıcı arka ucunu göster",
+ "Send email to new user" : "Yeni kullanıcıya e-posta gönder",
+ "Show email address" : "E-posta adresini göster",
"Username" : "Kullanıcı Adı",
+ "E-Mail" : "E-Posta",
"Create" : "Oluştur",
"Admin Recovery Password" : "Yönetici Kurtarma Parolası",
"Enter the recovery password in order to recover the users files during password change" : "Parola değiştirme sırasında kullanıcı dosyalarını kurtarmak için kurtarma parolasını girin",
@@ -235,9 +253,11 @@ OC.L10N.register(
"Group Admin for" : "Grup Yöneticisi",
"Quota" : "Kota",
"Storage Location" : "Depolama Konumu",
+ "User Backend" : "Kullanıcı Arka Ucu",
"Last Login" : "Son Giriş",
"change full name" : "tam adı değiştir",
"set new password" : "yeni parola belirle",
+ "change email address" : "e-posta adresini değiştir",
"Default" : "Öntanımlı"
},
"nplurals=2; plural=(n > 1);");
diff --git a/settings/l10n/tr.json b/settings/l10n/tr.json
index f69707de9ef..fe1d7871fe2 100644
--- a/settings/l10n/tr.json
+++ b/settings/l10n/tr.json
@@ -34,14 +34,20 @@
"Group already exists." : "Grup zaten mevcut.",
"Unable to add group." : "Grup ekleme başarısız.",
"Unable to delete group." : "Grubu silme başarısız.",
+ "log-level out of allowed range" : "günlük seviyesi izin verilen aralık dışında",
"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 email. Please revise your settings." : "E-posta gönderilirken bir sorun oluştu. Lütfen ayarlarınızı gözden geçirin.",
"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.",
+ "Invalid mail address" : "Geçersiz posta adresi",
"Unable to create user." : "Kullanıcı oluşturma başarısız.",
+ "Your %s account was created" : "%s hesabınız oluşturuldu",
"Unable to delete user." : "Kullanıcı silme başarısız.",
+ "Forbidden" : "Yasaklı",
+ "Invalid user" : "Geçersiz kullanıcı",
+ "Unable to change mail address" : "Posta adresini değiştirme başarısız",
"Email saved" : "E-posta kaydedildi",
"Are you really sure you want add \"{domain}\" as trusted domain?" : "\"{domain}\" alan adını güvenilir alan adı olarak eklemek istediğinizden emin misiniz?",
"Add trusted domain" : "Güvenilir alan adı ekle",
@@ -82,6 +88,7 @@
"A valid username must be provided" : "Geçerli bir kullanıcı adı mutlaka sağlanmalı",
"Error creating user" : "Kullanıcı oluşturulurken hata",
"A valid password must be provided" : "Geçerli bir parola mutlaka sağlanmalı",
+ "A valid email must be provided" : "Geçerli bir e-posta belirtilmeli",
"__language_name__" : "Türkçe",
"Personal Info" : "Kişisel Bilgi",
"SSL root certificates" : "SSL kök sertifikaları",
@@ -115,7 +122,7 @@
"This means that there might be problems with certain characters in file names." : "Bu, dosya adlarında belirli karakterlerde problem olabileceği anlamına gelir.",
"We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Şu dillerden birini desteklemesi için sisteminize gerekli paketleri kurmanızı şiddetle tavsiye ederiz: %s.",
"URL generation in notification emails" : "Bildirim e-postalarında URL oluşturulması",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Eğer kurulumunuz alan adının köküne yapılmamışsa ve sistem cron'u kullanıyorsa, URL oluşturma ile ilgili sorunlar olabilir. Bu sorunların önüne geçmek için, kurulumunuzun web kök yolundaki config.php dosyasında \"overwritewebroot\" seçeneğini ayarlayın (Önerilen: \"%s\")",
+ "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Eğer kurulumunuz alan adının köküne yapılmamışsa ve sistem cron'u kullanıyorsa, URL oluşturma ile ilgili sorunlar oluşabilir. Bu sorunların önüne geçmek için, kurulumunuzun web kök yolundaki config.php dosyasında \"overwrite.cli.url\" seçeneğini ayarlayın (Önerilen: \"%s\")",
"Configuration Checks" : "Yapılandırma Kontrolleri",
"No problems found" : "Hiç sorun yok",
"Please double check the <a href='%s'>installation guides</a>." : "Lütfen <a href='%s'>kurulum rehberlerini</a> iki kez kontrol edin.",
@@ -159,8 +166,10 @@
"Test email settings" : "E-posta ayarlarını sına",
"Send email" : "E-posta gönder",
"Log level" : "Günlük seviyesi",
+ "Download logfile" : "Günlük dosyasını indir",
"More" : "Daha fazla",
"Less" : "Daha az",
+ "The logfile is bigger than 100MB. Downloading it may take some time!" : "Günlük dosyası 100MB'dan daha büyük. İndirmek zaman alabilir!",
"Version" : "Sürüm",
"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." : "<a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud topluluğu</a> tarafından geliştirilmiş olup, <a href=\"https://github.com/owncloud\" target=\"_blank\">kaynak kodu</a>, <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> altında lisanslanmıştır.",
"More apps" : "Daha fazla uygulama",
@@ -174,13 +183,18 @@
"Update to %s" : "%s sürümüne güncelle",
"Enable only for specific groups" : "Sadece belirli gruplar için etkinleştir",
"Uninstall App" : "Uygulamayı Kaldır",
- "Cheers!" : "Hoşça kalın!",
+ "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Merhaba,<br><br>Sadece artık bir %s hesabınızın olduğunu söylemek istedim.<br><br>Kullanıcı adınız: %s<br>Şuradan erişin: <a href=\"%s\">%s</a><br><br>",
+ "Cheers!" : "Hoşçakalın!",
+ "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Merhaba,\n\nSadece, artık bir %s hesabınızın olduğunu söylemek istedim.\n\nKullanıcı adınız: %s\nErişim: %s\n\n",
"Administrator Documentation" : "Yönetici Belgelendirmesi",
"Online Documentation" : "Çevrimiçi Belgelendirme",
"Forum" : "Forum",
"Bugtracker" : "Hata Takip Sistemi",
"Commercial Support" : "Ticari Destek",
"Get the apps to sync your files" : "Dosyalarınızı eşitlemek için uygulamaları indirin",
+ "Desktop client" : "Masaüstü istemcisi",
+ "Android app" : "Android uygulaması",
+ "iOS app" : "iOS uygulaması",
"If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\">spread the word</a>!" : "Projeyi desteklemek istiyorsanız\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\">geliştirilmesine katılın</a>\n\t\tveya\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\">bizi duyurun</a>!",
"Show First Run Wizard again" : "İlk Çalıştırma Sihirbazı'nı yeniden göster",
"You have used <strong>%s</strong> of the available <strong>%s</strong>" : "Kullandığınız: <strong>%s</strong>. Kullanılabilir alan: <strong>%s</strong>",
@@ -217,7 +231,11 @@
"Delete Encryption Keys" : "Şifreleme Anahtarlarını Sil",
"Show storage location" : "Depolama konumunu göster",
"Show last log in" : "Son oturum açılma zamanını göster",
+ "Show user backend" : "Kullanıcı arka ucunu göster",
+ "Send email to new user" : "Yeni kullanıcıya e-posta gönder",
+ "Show email address" : "E-posta adresini göster",
"Username" : "Kullanıcı Adı",
+ "E-Mail" : "E-Posta",
"Create" : "Oluştur",
"Admin Recovery Password" : "Yönetici Kurtarma Parolası",
"Enter the recovery password in order to recover the users files during password change" : "Parola değiştirme sırasında kullanıcı dosyalarını kurtarmak için kurtarma parolasını girin",
@@ -233,9 +251,11 @@
"Group Admin for" : "Grup Yöneticisi",
"Quota" : "Kota",
"Storage Location" : "Depolama Konumu",
+ "User Backend" : "Kullanıcı Arka Ucu",
"Last Login" : "Son Giriş",
"change full name" : "tam adı değiştir",
"set new password" : "yeni parola belirle",
+ "change email address" : "e-posta adresini değiştir",
"Default" : "Öntanımlı"
},"pluralForm" :"nplurals=2; plural=(n > 1);"
} \ No newline at end of file
diff --git a/settings/l10n/uk.js b/settings/l10n/uk.js
index 415473111f0..eab0685320e 100644
--- a/settings/l10n/uk.js
+++ b/settings/l10n/uk.js
@@ -33,12 +33,23 @@ OC.L10N.register(
"Enabled" : "Увімкнено",
"Not enabled" : "Вимкнено",
"Recommended" : "Рекомендуємо",
+ "Group already exists." : "Група вже існує.",
+ "Unable to add group." : "Неможливо додати групу.",
+ "Unable to delete group." : "Неможливо видалити групу.",
+ "log-level out of allowed range" : "Перевищений розмір файлу-логу",
"Saved" : "Збереженно",
"test email settings" : "перевірити налаштування електронної пошти",
"If you received this email, the settings seem to be correct." : "Якщо ви отримали цього листа, налаштування вірні.",
"A problem occurred while sending the email. Please revise your settings." : "Під час надсилання листа виникли проблеми. Будь ласка перевірте налаштування.",
"Email sent" : "Ел. пошта надіслана",
"You need to set your user email before being able to send test emails." : "Перед надсиланням тестових повідомлень ви повинні вказати свою електронну адресу.",
+ "Invalid mail address" : "Неправильна email адреса",
+ "Unable to create user." : "Неможливо створити користувача.",
+ "Your %s account was created" : "Ваш %s аккаунт створений",
+ "Unable to delete user." : "Неможливо видалити користувача.",
+ "Forbidden" : "Заборонено",
+ "Invalid user" : "Неправильний користувач",
+ "Unable to change mail address" : "Неможливо поміняти email адресу",
"Email saved" : "Адресу збережено",
"Are you really sure you want add \"{domain}\" as trusted domain?" : "Ви дійсно бажаєте додати \"{domain}\" як довірений домен?",
"Add trusted domain" : "Додати довірений домен",
@@ -79,6 +90,7 @@ OC.L10N.register(
"A valid username must be provided" : "Потрібно задати вірне ім'я користувача",
"Error creating user" : "Помилка при створенні користувача",
"A valid password must be provided" : "Потрібно задати вірний пароль",
+ "A valid email must be provided" : "Вкажіть дійсний e-mail",
"__language_name__" : "__language_name__",
"Personal Info" : "Особиста інформація",
"SSL root certificates" : "SSL корневі сертифікати",
@@ -96,6 +108,8 @@ OC.L10N.register(
"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.",
+ "Read-Only config enabled" : "Конфігурації дозволені тільки для читання",
+ "The Read-Only config has been enabled. This prevents setting some configurations via the web-interface. Furthermore, the file needs to be made writable manually for every update." : "Тільки перегляд був включений. Це запобігає встановити деякі конфігурації через веб-інтерфейс. Крім того, файл повинен бути доступний для запису вручну для кожного оновлення.",
"Setup Warning" : "Попередження при Налаштуванні",
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "Схоже, що PHP налаштовано на вичищення блоків вбудованої документації. Це зробить кілька основних додатків недоступними.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Це, ймовірно, обумовлено використанням кеша/прискорювача такого як Zend OPcache або eAccelerator.",
@@ -110,7 +124,8 @@ OC.L10N.register(
"This means that there might be problems with certain characters in file names." : "Це означає, що можуть виникати проблеми з деякими символами в іменах файлів.",
"We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Пропонуємо встановити необхідні пакети для вашої системи для підтримки однієї з наступних мов %s.",
"URL generation in notification emails" : "Генерування URL для повідомлень в електроних листах",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Якщо ваша копія ownCloud встановлена не в корені домену та використовує систему планування CRON, можливі проблеми з генерацією правильних URL. Щоб уникнути цього, встановіть опцію overwritewebroot файла config.php відповідно до теки розташування установки (Ймовірніше за все, це \"%s\")",
+ "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Якщо ваша копія ownCloud встановлена не в корені домену та використовує систему планування CRON, можливі проблеми з генерацією правильних URL. Щоб уникнути цього, встановіть опцію \"overwrite.cli.url\" файла config.php відповідно до теки розташування установки (Ймовірніше за все, це \"%s\")",
+ "Configuration Checks" : "Перевірка налаштувань",
"No problems found" : "Проблем не виявленно",
"Please double check the <a href='%s'>installation guides</a>." : "Будь ласка, перевірте <a href='%s'>інструкції по встановленню</a>.",
"Last cron was executed at %s." : "Останню cron-задачу було запущено: %s.",
@@ -130,6 +145,7 @@ OC.L10N.register(
"Enforce expiration date" : "Термін дії обов'язково",
"Allow resharing" : "Дозволити перевідкривати спільний доступ",
"Restrict users to only share with users in their groups" : "Дозволити користувачам відкривати спільний доступ лише для користувачів з їхньої групи",
+ "Allow users to send mail notification for shared files to other users" : "Дозволити користувачам сповіщати листами про спільний доступ до файлів",
"Exclude groups from sharing" : "Виключити групи зі спільного доступу",
"These groups will still be able to receive shares, but not to initiate them." : "Ці групи зможуть отримувати спільні файли, але не зможуть відправляти їх.",
"Enforce HTTPS" : "Примусове застосування HTTPS",
@@ -152,8 +168,10 @@ OC.L10N.register(
"Test email settings" : "Перевірити налаштування електронної пошти",
"Send email" : "Надіслати листа",
"Log level" : "Рівень протоколювання",
+ "Download logfile" : "Завантажити файл журналу",
"More" : "Більше",
"Less" : "Менше",
+ "The logfile is bigger than 100MB. Downloading it may take some time!" : "Лог більше, ніж 100MB. Завантаження може зайняти деякий час!",
"Version" : "Версія",
"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." : "Розроблено <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud громадою</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">вихідний код</a> має ліцензію <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.",
"More apps" : "Більше додатків",
@@ -163,16 +181,22 @@ OC.L10N.register(
"Documentation:" : "Документація:",
"User Documentation" : "Документація Користувача",
"Admin Documentation" : "Документація Адміністратора",
+ "This app cannot be installed because the following dependencies are not fulfilled:" : "Ця програма не може бути встановлено, так як наступні залежності не будуть виконані:",
"Update to %s" : "Оновити до %s",
"Enable only for specific groups" : "Включити тільки для конкретних груп",
"Uninstall App" : "Видалити додаток",
+ "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Агов,<br><br>просто щоб ви знали, у вас є аккаунт %s.<br><br>Ваше ім'я користувача: %s<br>Перейдіть сюди: <a href=\"%s\">%s</a><br><br>",
"Cheers!" : "Будьмо!",
+ "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Агов,\n\nпросто щоб ви знали, у вас є аккаунт %s.\n\nВаше ім'я користувача: %s\nПерейдіть сюди: %s\n\n",
"Administrator Documentation" : "Документація Адміністратора",
"Online Documentation" : "Он-Лайн Документація",
"Forum" : "Форум",
"Bugtracker" : "БагТрекер",
"Commercial Support" : "Комерційна підтримка",
"Get the apps to sync your files" : "Отримати додатки для синхронізації ваших файлів",
+ "Desktop client" : "Клієнт для ПК",
+ "Android app" : "Android-додаток",
+ "iOS app" : "iOS додаток",
"If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\">spread the word</a>!" : "Якщо ви бажаєте підтримати прект\n⇥⇥<a href=\"https://owncloud.org/contribute\"\n⇥⇥target=\"_blank\">приєднуйтесь до розробки</a>\n⇥⇥або\n⇥⇥<a href=\"https://owncloud.org/promote\"\n⇥⇥target=\"_blank\">розкажіть про нас</a>!",
"Show First Run Wizard again" : "Показувати Майстер Налаштувань знову",
"You have used <strong>%s</strong> of the available <strong>%s</strong>" : "Ви використали <strong>%s</strong> із доступних <strong>%s</strong>",
@@ -209,7 +233,11 @@ OC.L10N.register(
"Delete Encryption Keys" : "Видалити ключі шифрування",
"Show storage location" : "Показати місцезнаходження сховища",
"Show last log in" : "Показати останній вхід в систему",
+ "Show user backend" : "Показати користувача",
+ "Send email to new user" : "Надіслати email новому користувачу",
+ "Show email address" : "Показати адресу електронної пошти",
"Username" : "Ім'я користувача",
+ "E-Mail" : "Адреса електронної пошти",
"Create" : "Створити",
"Admin Recovery Password" : "Пароль адміністратора для відновлення",
"Enter the recovery password in order to recover the users files during password change" : "Введіть пароль для того, щоб відновити файли користувачів при зміні паролю",
@@ -225,9 +253,11 @@ OC.L10N.register(
"Group Admin for" : "Адміністратор групи",
"Quota" : "Квота",
"Storage Location" : "Місцезнаходження сховища",
+ "User Backend" : "Внутрішній користувач",
"Last Login" : "Останній вхід",
"change full name" : "змінити ім'я",
"set new password" : "встановити новий пароль",
+ "change email address" : "Змінити адресу електронної пошти",
"Default" : "За замовчуванням"
},
"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);");
diff --git a/settings/l10n/uk.json b/settings/l10n/uk.json
index 4cf634821b6..964d2e16bca 100644
--- a/settings/l10n/uk.json
+++ b/settings/l10n/uk.json
@@ -31,12 +31,23 @@
"Enabled" : "Увімкнено",
"Not enabled" : "Вимкнено",
"Recommended" : "Рекомендуємо",
+ "Group already exists." : "Група вже існує.",
+ "Unable to add group." : "Неможливо додати групу.",
+ "Unable to delete group." : "Неможливо видалити групу.",
+ "log-level out of allowed range" : "Перевищений розмір файлу-логу",
"Saved" : "Збереженно",
"test email settings" : "перевірити налаштування електронної пошти",
"If you received this email, the settings seem to be correct." : "Якщо ви отримали цього листа, налаштування вірні.",
"A problem occurred while sending the email. Please revise your settings." : "Під час надсилання листа виникли проблеми. Будь ласка перевірте налаштування.",
"Email sent" : "Ел. пошта надіслана",
"You need to set your user email before being able to send test emails." : "Перед надсиланням тестових повідомлень ви повинні вказати свою електронну адресу.",
+ "Invalid mail address" : "Неправильна email адреса",
+ "Unable to create user." : "Неможливо створити користувача.",
+ "Your %s account was created" : "Ваш %s аккаунт створений",
+ "Unable to delete user." : "Неможливо видалити користувача.",
+ "Forbidden" : "Заборонено",
+ "Invalid user" : "Неправильний користувач",
+ "Unable to change mail address" : "Неможливо поміняти email адресу",
"Email saved" : "Адресу збережено",
"Are you really sure you want add \"{domain}\" as trusted domain?" : "Ви дійсно бажаєте додати \"{domain}\" як довірений домен?",
"Add trusted domain" : "Додати довірений домен",
@@ -77,6 +88,7 @@
"A valid username must be provided" : "Потрібно задати вірне ім'я користувача",
"Error creating user" : "Помилка при створенні користувача",
"A valid password must be provided" : "Потрібно задати вірний пароль",
+ "A valid email must be provided" : "Вкажіть дійсний e-mail",
"__language_name__" : "__language_name__",
"Personal Info" : "Особиста інформація",
"SSL root certificates" : "SSL корневі сертифікати",
@@ -94,6 +106,8 @@
"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.",
+ "Read-Only config enabled" : "Конфігурації дозволені тільки для читання",
+ "The Read-Only config has been enabled. This prevents setting some configurations via the web-interface. Furthermore, the file needs to be made writable manually for every update." : "Тільки перегляд був включений. Це запобігає встановити деякі конфігурації через веб-інтерфейс. Крім того, файл повинен бути доступний для запису вручну для кожного оновлення.",
"Setup Warning" : "Попередження при Налаштуванні",
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "Схоже, що PHP налаштовано на вичищення блоків вбудованої документації. Це зробить кілька основних додатків недоступними.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Це, ймовірно, обумовлено використанням кеша/прискорювача такого як Zend OPcache або eAccelerator.",
@@ -108,7 +122,8 @@
"This means that there might be problems with certain characters in file names." : "Це означає, що можуть виникати проблеми з деякими символами в іменах файлів.",
"We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Пропонуємо встановити необхідні пакети для вашої системи для підтримки однієї з наступних мов %s.",
"URL generation in notification emails" : "Генерування URL для повідомлень в електроних листах",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Якщо ваша копія ownCloud встановлена не в корені домену та використовує систему планування CRON, можливі проблеми з генерацією правильних URL. Щоб уникнути цього, встановіть опцію overwritewebroot файла config.php відповідно до теки розташування установки (Ймовірніше за все, це \"%s\")",
+ "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Якщо ваша копія ownCloud встановлена не в корені домену та використовує систему планування CRON, можливі проблеми з генерацією правильних URL. Щоб уникнути цього, встановіть опцію \"overwrite.cli.url\" файла config.php відповідно до теки розташування установки (Ймовірніше за все, це \"%s\")",
+ "Configuration Checks" : "Перевірка налаштувань",
"No problems found" : "Проблем не виявленно",
"Please double check the <a href='%s'>installation guides</a>." : "Будь ласка, перевірте <a href='%s'>інструкції по встановленню</a>.",
"Last cron was executed at %s." : "Останню cron-задачу було запущено: %s.",
@@ -128,6 +143,7 @@
"Enforce expiration date" : "Термін дії обов'язково",
"Allow resharing" : "Дозволити перевідкривати спільний доступ",
"Restrict users to only share with users in their groups" : "Дозволити користувачам відкривати спільний доступ лише для користувачів з їхньої групи",
+ "Allow users to send mail notification for shared files to other users" : "Дозволити користувачам сповіщати листами про спільний доступ до файлів",
"Exclude groups from sharing" : "Виключити групи зі спільного доступу",
"These groups will still be able to receive shares, but not to initiate them." : "Ці групи зможуть отримувати спільні файли, але не зможуть відправляти їх.",
"Enforce HTTPS" : "Примусове застосування HTTPS",
@@ -150,8 +166,10 @@
"Test email settings" : "Перевірити налаштування електронної пошти",
"Send email" : "Надіслати листа",
"Log level" : "Рівень протоколювання",
+ "Download logfile" : "Завантажити файл журналу",
"More" : "Більше",
"Less" : "Менше",
+ "The logfile is bigger than 100MB. Downloading it may take some time!" : "Лог більше, ніж 100MB. Завантаження може зайняти деякий час!",
"Version" : "Версія",
"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." : "Розроблено <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud громадою</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">вихідний код</a> має ліцензію <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.",
"More apps" : "Більше додатків",
@@ -161,16 +179,22 @@
"Documentation:" : "Документація:",
"User Documentation" : "Документація Користувача",
"Admin Documentation" : "Документація Адміністратора",
+ "This app cannot be installed because the following dependencies are not fulfilled:" : "Ця програма не може бути встановлено, так як наступні залежності не будуть виконані:",
"Update to %s" : "Оновити до %s",
"Enable only for specific groups" : "Включити тільки для конкретних груп",
"Uninstall App" : "Видалити додаток",
+ "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Агов,<br><br>просто щоб ви знали, у вас є аккаунт %s.<br><br>Ваше ім'я користувача: %s<br>Перейдіть сюди: <a href=\"%s\">%s</a><br><br>",
"Cheers!" : "Будьмо!",
+ "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Агов,\n\nпросто щоб ви знали, у вас є аккаунт %s.\n\nВаше ім'я користувача: %s\nПерейдіть сюди: %s\n\n",
"Administrator Documentation" : "Документація Адміністратора",
"Online Documentation" : "Он-Лайн Документація",
"Forum" : "Форум",
"Bugtracker" : "БагТрекер",
"Commercial Support" : "Комерційна підтримка",
"Get the apps to sync your files" : "Отримати додатки для синхронізації ваших файлів",
+ "Desktop client" : "Клієнт для ПК",
+ "Android app" : "Android-додаток",
+ "iOS app" : "iOS додаток",
"If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\">spread the word</a>!" : "Якщо ви бажаєте підтримати прект\n⇥⇥<a href=\"https://owncloud.org/contribute\"\n⇥⇥target=\"_blank\">приєднуйтесь до розробки</a>\n⇥⇥або\n⇥⇥<a href=\"https://owncloud.org/promote\"\n⇥⇥target=\"_blank\">розкажіть про нас</a>!",
"Show First Run Wizard again" : "Показувати Майстер Налаштувань знову",
"You have used <strong>%s</strong> of the available <strong>%s</strong>" : "Ви використали <strong>%s</strong> із доступних <strong>%s</strong>",
@@ -207,7 +231,11 @@
"Delete Encryption Keys" : "Видалити ключі шифрування",
"Show storage location" : "Показати місцезнаходження сховища",
"Show last log in" : "Показати останній вхід в систему",
+ "Show user backend" : "Показати користувача",
+ "Send email to new user" : "Надіслати email новому користувачу",
+ "Show email address" : "Показати адресу електронної пошти",
"Username" : "Ім'я користувача",
+ "E-Mail" : "Адреса електронної пошти",
"Create" : "Створити",
"Admin Recovery Password" : "Пароль адміністратора для відновлення",
"Enter the recovery password in order to recover the users files during password change" : "Введіть пароль для того, щоб відновити файли користувачів при зміні паролю",
@@ -223,9 +251,11 @@
"Group Admin for" : "Адміністратор групи",
"Quota" : "Квота",
"Storage Location" : "Місцезнаходження сховища",
+ "User Backend" : "Внутрішній користувач",
"Last Login" : "Останній вхід",
"change full name" : "змінити ім'я",
"set new password" : "встановити новий пароль",
+ "change email address" : "Змінити адресу електронної пошти",
"Default" : "За замовчуванням"
},"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"
} \ No newline at end of file
diff --git a/settings/l10n/zh_CN.js b/settings/l10n/zh_CN.js
index 9889368d70c..23c3d927474 100644
--- a/settings/l10n/zh_CN.js
+++ b/settings/l10n/zh_CN.js
@@ -103,7 +103,6 @@ OC.L10N.register(
"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." : "这意味着一些文件名中的特定字符可能有问题。",
"URL generation in notification emails" : "在通知邮件里生成URL",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "如果你没有安装ownCloud在域名的根目录里,并使用系统的crom,这会导致URL的生成出错。要避免这个问题,请设置 config.php 文件中的\"overwritewebroot\" 参数值为你的实际安装web路径。(建议为: \"%s\")",
"No problems found" : "未发现问题",
"Please double check the <a href='%s'>installation guides</a>." : "请认真检查<a href='%s'>安装指南</a>.",
"Last cron was executed at %s." : "上次定时任务执行于 %s。",
diff --git a/settings/l10n/zh_CN.json b/settings/l10n/zh_CN.json
index 98d4ce9fedb..0f870b0b624 100644
--- a/settings/l10n/zh_CN.json
+++ b/settings/l10n/zh_CN.json
@@ -101,7 +101,6 @@
"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." : "这意味着一些文件名中的特定字符可能有问题。",
"URL generation in notification emails" : "在通知邮件里生成URL",
- "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "如果你没有安装ownCloud在域名的根目录里,并使用系统的crom,这会导致URL的生成出错。要避免这个问题,请设置 config.php 文件中的\"overwritewebroot\" 参数值为你的实际安装web路径。(建议为: \"%s\")",
"No problems found" : "未发现问题",
"Please double check the <a href='%s'>installation guides</a>." : "请认真检查<a href='%s'>安装指南</a>.",
"Last cron was executed at %s." : "上次定时任务执行于 %s。",
diff --git a/settings/routes.php b/settings/routes.php
index 4be7785670b..150746665d3 100644
--- a/settings/routes.php
+++ b/settings/routes.php
@@ -14,7 +14,7 @@ $application->registerRoutes($this, array(
'groups' => array('url' => '/settings/users/groups'),
'users' => array('url' => '/settings/users/users')
),
- 'routes' =>array(
+ 'routes' => array(
array('name' => 'MailSettings#setMailSettings', 'url' => '/settings/admin/mailsettings', 'verb' => 'POST'),
array('name' => 'MailSettings#storeCredentials', 'url' => '/settings/admin/mailsettings/credentials', 'verb' => 'POST'),
array('name' => 'MailSettings#sendTestMail', 'url' => '/settings/admin/mailtest', 'verb' => 'POST'),
@@ -24,6 +24,9 @@ $application->registerRoutes($this, array(
array('name' => 'SecuritySettings#enforceSSLForSubdomains', 'url' => '/settings/admin/security/ssl/subdomains', 'verb' => 'POST'),
array('name' => 'SecuritySettings#trustedDomains', 'url' => '/settings/admin/security/trustedDomains', 'verb' => 'POST'),
array('name' => 'Users#setMailAddress', 'url' => '/settings/users/{id}/mailAddress', 'verb' => 'PUT'),
+ array('name' => 'LogSettings#setLogLevel', 'url' => '/settings/admin/log/level', 'verb' => 'POST'),
+ array('name' => 'LogSettings#getEntries', 'url' => '/settings/admin/log/entries', 'verb' => 'GET'),
+ array('name' => 'LogSettings#download', 'url' => '/settings/admin/log/download', 'verb' => 'GET'),
)
));
@@ -87,10 +90,6 @@ $this->create('settings_ajax_uninstallapp', '/settings/ajax/uninstallapp.php')
$this->create('settings_ajax_navigationdetect', '/settings/ajax/navigationdetect.php')
->actionInclude('settings/ajax/navigationdetect.php');
// admin
-$this->create('settings_ajax_getlog', '/settings/ajax/getlog.php')
- ->actionInclude('settings/ajax/getlog.php');
-$this->create('settings_ajax_setloglevel', '/settings/ajax/setloglevel.php')
- ->actionInclude('settings/ajax/setloglevel.php');
$this->create('settings_ajax_excludegroups', '/settings/ajax/excludegroups.php')
->actionInclude('settings/ajax/excludegroups.php');
$this->create('settings_ajax_checksetup', '/settings/ajax/checksetup')
diff --git a/settings/templates/admin.php b/settings/templates/admin.php
index f55626defb0..41b60b64428 100644
--- a/settings/templates/admin.php
+++ b/settings/templates/admin.php
@@ -462,6 +462,7 @@ if ($_['suggestedOverwriteCliUrl']) {
<option value='<?php p($i)?>' <?php p($selected) ?>><?php p($levelLabels[$i])?></option>
<?php endfor;?>
</select>
+<?php if ($_['showLog'] && $_['doesLogFileExist']): ?>
<table id="log" class="grid">
<?php foreach ($_['entries'] as $entry): ?>
<tr>
@@ -484,11 +485,20 @@ if ($_['suggestedOverwriteCliUrl']) {
</tr>
<?php endforeach;?>
</table>
+ <?php if ($_['logFileSize'] > 0): ?>
+ <a href="<?php print_unescaped(OC::$server->getURLGenerator()->linkToRoute('settings.LogSettings.download')); ?>" class="button" id="downloadLog"><?php p($l->t('Download logfile'));?></a>
+ <?php endif; ?>
<?php if ($_['entriesremain']): ?>
<input id="moreLog" type="button" value="<?php p($l->t('More'));?>...">
<input id="lessLog" type="button" value="<?php p($l->t('Less'));?>...">
<?php endif; ?>
-
+ <?php if ($_['logFileSize'] > (100 * 1024 * 1024)): ?>
+ <br>
+ <em>
+ <?php p($l->t('The logfile is bigger than 100MB. Downloading it may take some time!')); ?>
+ </em>
+ <?php endif; ?>
+ <?php endif; ?>
</div>
<div class="section">
diff --git a/settings/templates/personal.php b/settings/templates/personal.php
index ad61f398b1c..978174cc683 100644
--- a/settings/templates/personal.php
+++ b/settings/templates/personal.php
@@ -102,6 +102,13 @@ if($_['displayNameChangeSupported']) {
<input type="hidden" id="oldDisplayName" name="oldDisplayName" value="<?php p($_['displayName'])?>" />
</form>
<?php
+} else {
+?>
+<div class="section">
+ <h2><?php echo $l->t('Full Name');?></h2>
+ <span><?php p($_['displayName'])?></span>
+</div>
+<?php
}
?>
@@ -119,6 +126,13 @@ if($_['passwordChangeSupported']) {
<em><?php p($l->t('Fill in an email address to enable password recovery and receive notifications'));?></em>
</form>
<?php
+} else {
+?>
+<div class="section">
+ <h2><?php echo $l->t('Email'); ?></h2>
+ <span><?php if($_['email']) { p($_['email']); } else { p($l->t('No email address set')); }?></span>
+</div>
+<?php
}
?>