aboutsummaryrefslogtreecommitdiffstats
path: root/settings
diff options
context:
space:
mode:
Diffstat (limited to 'settings')
-rw-r--r--settings/application.php11
-rw-r--r--settings/controller/appsettingscontroller.php20
-rw-r--r--settings/controller/mailsettingscontroller.php21
-rw-r--r--settings/controller/userscontroller.php118
-rw-r--r--settings/css/settings.css5
-rw-r--r--settings/factory/subadminfactory.php45
-rw-r--r--settings/js/admin.js4
-rw-r--r--settings/js/users/users.js24
-rw-r--r--settings/l10n/ast.js1
-rw-r--r--settings/l10n/ast.json1
-rw-r--r--settings/l10n/bg_BG.js131
-rw-r--r--settings/l10n/bg_BG.json131
-rw-r--r--settings/l10n/bs.js1
-rw-r--r--settings/l10n/bs.json1
-rw-r--r--settings/l10n/ca.js1
-rw-r--r--settings/l10n/ca.json1
-rw-r--r--settings/l10n/cs_CZ.js5
-rw-r--r--settings/l10n/cs_CZ.json5
-rw-r--r--settings/l10n/da.js22
-rw-r--r--settings/l10n/da.json22
-rw-r--r--settings/l10n/de.js13
-rw-r--r--settings/l10n/de.json13
-rw-r--r--settings/l10n/de_DE.js19
-rw-r--r--settings/l10n/de_DE.json19
-rw-r--r--settings/l10n/el.js1
-rw-r--r--settings/l10n/el.json1
-rw-r--r--settings/l10n/en_GB.js2
-rw-r--r--settings/l10n/en_GB.json2
-rw-r--r--settings/l10n/es.js5
-rw-r--r--settings/l10n/es.json5
-rw-r--r--settings/l10n/et_EE.js1
-rw-r--r--settings/l10n/et_EE.json1
-rw-r--r--settings/l10n/eu.js48
-rw-r--r--settings/l10n/eu.json48
-rw-r--r--settings/l10n/fi_FI.js5
-rw-r--r--settings/l10n/fi_FI.json5
-rw-r--r--settings/l10n/fr.js10
-rw-r--r--settings/l10n/fr.json10
-rw-r--r--settings/l10n/gl.js27
-rw-r--r--settings/l10n/gl.json27
-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.js40
-rw-r--r--settings/l10n/id.json40
-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/ko.js8
-rw-r--r--settings/l10n/ko.json8
-rw-r--r--settings/l10n/mn.js1
-rw-r--r--settings/l10n/mn.json1
-rw-r--r--settings/l10n/nb_NO.js5
-rw-r--r--settings/l10n/nb_NO.json5
-rw-r--r--settings/l10n/nl.js8
-rw-r--r--settings/l10n/nl.json8
-rw-r--r--settings/l10n/pl.js35
-rw-r--r--settings/l10n/pl.json35
-rw-r--r--settings/l10n/pt_BR.js5
-rw-r--r--settings/l10n/pt_BR.json5
-rw-r--r--settings/l10n/pt_PT.js5
-rw-r--r--settings/l10n/pt_PT.json5
-rw-r--r--settings/l10n/ru.js114
-rw-r--r--settings/l10n/ru.json114
-rw-r--r--settings/l10n/si_LK.js1
-rw-r--r--settings/l10n/si_LK.json1
-rw-r--r--settings/l10n/sk_SK.js38
-rw-r--r--settings/l10n/sk_SK.json38
-rw-r--r--settings/l10n/sv.js3
-rw-r--r--settings/l10n/sv.json3
-rw-r--r--settings/l10n/tr.js10
-rw-r--r--settings/l10n/tr.json10
-rw-r--r--settings/l10n/uk.js1
-rw-r--r--settings/l10n/uk.json1
-rw-r--r--settings/l10n/zh_CN.js1
-rw-r--r--settings/l10n/zh_CN.json1
-rw-r--r--settings/middleware/subadminmiddleware.php4
-rw-r--r--settings/templates/admin.php14
80 files changed, 1035 insertions, 399 deletions
diff --git a/settings/application.php b/settings/application.php
index f7ba72f3bfc..6fe23447a72 100644
--- a/settings/application.php
+++ b/settings/application.php
@@ -1,7 +1,7 @@
<?php
/**
* @author Lukas Reschke
- * @copyright 2014 Lukas Reschke lukas@owncloud.com
+ * @copyright 2014-2015 Lukas Reschke lukas@owncloud.com
*
* This file is licensed under the Affero General Public License version 3 or
* later.
@@ -16,6 +16,7 @@ use OC\Settings\Controller\LogSettingsController;
use OC\Settings\Controller\MailSettingsController;
use OC\Settings\Controller\SecuritySettingsController;
use OC\Settings\Controller\UsersController;
+use OC\Settings\Factory\SubAdminFactory;
use OC\Settings\Middleware\SubadminMiddleware;
use \OCP\AppFramework\App;
use OCP\IContainer;
@@ -90,7 +91,9 @@ class Application extends App {
$c->query('Defaults'),
$c->query('Mail'),
$c->query('DefaultMailAddress'),
- $c->query('URLGenerator')
+ $c->query('URLGenerator'),
+ $c->query('OCP\\App\\IAppManager'),
+ $c->query('SubAdminFactory')
);
});
$container->registerService('LogSettingsController', function(IContainer $c) {
@@ -144,6 +147,10 @@ class Application extends App {
$container->registerService('IsSubAdmin', function(IContainer $c) {
return \OC_Subadmin::isSubAdmin(\OC_User::getUser());
});
+ /** FIXME: Remove once OC_SubAdmin is non-static and mockable */
+ $container->registerService('SubAdminFactory', function(IContainer $c) {
+ return new SubAdminFactory();
+ });
$container->registerService('Mail', function(IContainer $c) {
return new \OC_Mail;
});
diff --git a/settings/controller/appsettingscontroller.php b/settings/controller/appsettingscontroller.php
index 816b7b2e65c..72403437bb8 100644
--- a/settings/controller/appsettingscontroller.php
+++ b/settings/controller/appsettingscontroller.php
@@ -67,11 +67,13 @@ class AppSettingsController extends Controller {
$categories[] = ['id' => 2, 'displayName' => (string)$this->l10n->t('Recommended')];
// apps from external repo via OCS
$ocs = \OC_OCSClient::getCategories();
- foreach($ocs as $k => $v) {
- $categories[] = array(
- 'id' => $k,
- 'displayName' => str_replace('ownCloud ', '', $v)
- );
+ if ($ocs) {
+ foreach($ocs as $k => $v) {
+ $categories[] = array(
+ 'id' => $k,
+ 'displayName' => str_replace('ownCloud ', '', $v)
+ );
+ }
}
}
@@ -124,9 +126,11 @@ class AppSettingsController extends Controller {
default:
if ($category === 2) {
$apps = \OC_App::getAppstoreApps('approved');
- $apps = array_filter($apps, function ($app) {
- return isset($app['internalclass']) && $app['internalclass'] === 'recommendedapp';
- });
+ if ($apps) {
+ $apps = array_filter($apps, function ($app) {
+ return isset($app['internalclass']) && $app['internalclass'] === 'recommendedapp';
+ });
+ }
} else {
$apps = \OC_App::getAppstoreApps('approved', $category);
}
diff --git a/settings/controller/mailsettingscontroller.php b/settings/controller/mailsettingscontroller.php
index d050a5ea03e..5874e644abb 100644
--- a/settings/controller/mailsettingscontroller.php
+++ b/settings/controller/mailsettingscontroller.php
@@ -84,20 +84,19 @@ class MailSettingsController extends Controller {
$mail_smtpport) {
$params = get_defined_vars();
+ $configs = [];
foreach($params as $key => $value) {
- if(empty($value)) {
- $this->config->deleteSystemValue($key);
- } else {
- $this->config->setSystemValue($key, $value);
- }
+ $configs[$key] = (empty($value)) ? null : $value;
}
// Delete passwords from config in case no auth is specified
- if($params['mail_smtpauth'] !== 1) {
- $this->config->deleteSystemValue('mail_smtpname');
- $this->config->deleteSystemValue('mail_smtppassword');
+ if ($params['mail_smtpauth'] !== 1) {
+ $configs['mail_smtpname'] = null;
+ $configs['mail_smtppassword'] = null;
}
+ $this->config->setSystemValues($configs);
+
return array('data' =>
array('message' =>
(string) $this->l10n->t('Saved')
@@ -113,8 +112,10 @@ class MailSettingsController extends Controller {
* @return array
*/
public function storeCredentials($mail_smtpname, $mail_smtppassword) {
- $this->config->setSystemValue('mail_smtpname', $mail_smtpname);
- $this->config->setSystemValue('mail_smtppassword', $mail_smtppassword);
+ $this->config->setSystemValues([
+ 'mail_smtpname' => $mail_smtpname,
+ 'mail_smtppassword' => $mail_smtppassword,
+ ]);
return array('data' =>
array('message' =>
diff --git a/settings/controller/userscontroller.php b/settings/controller/userscontroller.php
index 1be2f4db9b9..80fb81600df 100644
--- a/settings/controller/userscontroller.php
+++ b/settings/controller/userscontroller.php
@@ -1,7 +1,7 @@
<?php
/**
* @author Lukas Reschke
- * @copyright 2014 Lukas Reschke lukas@owncloud.com
+ * @copyright 2014-2015 Lukas Reschke lukas@owncloud.com
*
* This file is licensed under the Affero General Public License version 3 or
* later.
@@ -11,9 +11,10 @@
namespace OC\Settings\Controller;
use OC\AppFramework\Http;
-use OC\User\Manager;
+use OC\Settings\Factory\SubAdminFactory;
use OC\User\User;
-use \OCP\AppFramework\Controller;
+use OCP\App\IAppManager;
+use OCP\AppFramework\Controller;
use OCP\AppFramework\Http\DataResponse;
use OCP\AppFramework\Http\TemplateResponse;
use OCP\IConfig;
@@ -52,6 +53,12 @@ class UsersController extends Controller {
private $fromMailAddress;
/** @var IURLGenerator */
private $urlGenerator;
+ /** @var bool contains the state of the encryption app */
+ private $isEncryptionAppEnabled;
+ /** @var bool contains the state of the admin recovery setting */
+ private $isRestoreEnabled = false;
+ /** @var SubAdminFactory */
+ private $subAdminFactory;
/**
* @param string $appName
@@ -66,6 +73,9 @@ class UsersController extends Controller {
* @param \OC_Defaults $defaults
* @param \OC_Mail $mail
* @param string $fromMailAddress
+ * @param IURLGenerator $urlGenerator
+ * @param IAppManager $appManager
+ * @param SubAdminFactory $subAdminFactory
*/
public function __construct($appName,
IRequest $request,
@@ -79,7 +89,9 @@ class UsersController extends Controller {
\OC_Defaults $defaults,
\OC_Mail $mail,
$fromMailAddress,
- IURLGenerator $urlGenerator) {
+ IURLGenerator $urlGenerator,
+ IAppManager $appManager,
+ SubAdminFactory $subAdminFactory) {
parent::__construct($appName, $request);
$this->userManager = $userManager;
$this->groupManager = $groupManager;
@@ -92,6 +104,15 @@ class UsersController extends Controller {
$this->mail = $mail;
$this->fromMailAddress = $fromMailAddress;
$this->urlGenerator = $urlGenerator;
+ $this->subAdminFactory = $subAdminFactory;
+
+ // check for encryption state - TODO see formatUserForIndex
+ $this->isEncryptionAppEnabled = $appManager->isEnabledForUser('files_encryption');
+ if($this->isEncryptionAppEnabled) {
+ // putting this directly in empty is possible in PHP 5.5+
+ $result = $config->getAppValue('files_encryption', 'recoveryAdminEnabled', 0);
+ $this->isRestoreEnabled = !empty($result);
+ }
}
/**
@@ -100,7 +121,33 @@ class UsersController extends Controller {
* @return array
*/
private function formatUserForIndex(IUser $user, array $userGroups = null) {
- return array(
+
+ // TODO: eliminate this encryption specific code below and somehow
+ // hook in additional user info from other apps
+
+ // recovery isn't possible if admin or user has it disabled and encryption
+ // is enabled - so we eliminate the else paths in the conditional tree
+ // below
+ $restorePossible = false;
+
+ if ($this->isEncryptionAppEnabled) {
+ if ($this->isRestoreEnabled) {
+ // check for the users recovery setting
+ $recoveryMode = $this->config->getUserValue($user->getUID(), 'files_encryption', 'recovery_enabled', '0');
+ // method call inside empty is possible with PHP 5.5+
+ $recoveryModeEnabled = !empty($recoveryMode);
+ if ($recoveryModeEnabled) {
+ // user also has recovery mode enabled
+ $restorePossible = true;
+ }
+ }
+ } else {
+ // recovery is possible if encryption is disabled (plain files are
+ // available)
+ $restorePossible = true;
+ }
+
+ return [
'name' => $user->getUID(),
'displayname' => $user->getDisplayName(),
'groups' => (empty($userGroups)) ? $this->groupManager->getUserGroupIds($user) : $userGroups,
@@ -109,8 +156,9 @@ class UsersController extends Controller {
'storageLocation' => $user->getHome(),
'lastLogin' => $user->getLastLogin(),
'backend' => $user->getBackendClassName(),
- 'email' => $this->config->getUserValue($user->getUID(), 'settings', 'email', '')
- );
+ 'email' => $this->config->getUserValue($user->getUID(), 'settings', 'email', ''),
+ 'isRestoreDisabled' => !$restorePossible,
+ ];
}
/**
@@ -120,7 +168,7 @@ class UsersController extends Controller {
private function getUsersForUID(array $userIDs) {
$users = [];
foreach ($userIDs as $uid => $displayName) {
- $users[] = $this->userManager->get($uid);
+ $users[$uid] = $this->userManager->get($uid);
}
return $users;
}
@@ -155,7 +203,7 @@ class UsersController extends Controller {
}
}
- $users = array();
+ $users = [];
if ($this->isAdmin) {
if($gid !== '') {
@@ -169,16 +217,34 @@ class UsersController extends Controller {
}
} else {
+ $subAdminOfGroups = $this->subAdminFactory->getSubAdminsOfGroups(
+ $this->userSession->getUser()->getUID()
+ );
// Set the $gid parameter to an empty value if the subadmin has no rights to access a specific group
- if($gid !== '' && !in_array($gid, \OC_SubAdmin::getSubAdminsGroups($this->userSession->getUser()->getUID()))) {
+ if($gid !== '' && !in_array($gid, $subAdminOfGroups)) {
$gid = '';
}
- $batch = $this->getUsersForUID($this->groupManager->displayNamesInGroup($gid, $pattern, $limit, $offset));
+ // Batch all groups the user is subadmin of when a group is specified
+ $batch = [];
+ if($gid === '') {
+ foreach($subAdminOfGroups as $group) {
+ $groupUsers = $this->groupManager->displayNamesInGroup($group, $pattern, $limit, $offset);
+ foreach($groupUsers as $uid => $displayName) {
+ $batch[$uid] = $displayName;
+ }
+ }
+ } else {
+ $batch = $this->groupManager->displayNamesInGroup($gid, $pattern, $limit, $offset);
+ }
+ $batch = $this->getUsersForUID($batch);
+
foreach ($batch as $user) {
// Only add the groups, this user is a subadmin of
- $userGroups = array_intersect($this->groupManager->getUserGroupIds($user),
- \OC_SubAdmin::getSubAdminsGroups($this->userSession->getUser()->getUID()));
+ $userGroups = array_values(array_intersect(
+ $this->groupManager->getUserGroupIds($user),
+ $subAdminOfGroups
+ ));
$users[] = $this->formatUserForIndex($user, $userGroups);
}
}
@@ -194,8 +260,6 @@ class UsersController extends Controller {
* @param array $groups
* @param string $email
* @return DataResponse
- *
- * TODO: Tidy up and write unit tests - code is mainly static method calls
*/
public function create($username, $password, array $groups=array(), $email='') {
@@ -208,17 +272,17 @@ class UsersController extends Controller {
);
}
- // TODO FIXME get rid of the static calls to OC_Subadmin
if (!$this->isAdmin) {
+ $userId = $this->userSession->getUser()->getUID();
if (!empty($groups)) {
foreach ($groups as $key => $group) {
- if (!\OC_SubAdmin::isGroupAccessible($this->userSession->getUser()->getUID(), $group)) {
+ if (!$this->subAdminFactory->isGroupAccessible($userId, $group)) {
unset($groups[$key]);
}
}
}
if (empty($groups)) {
- $groups = \OC_SubAdmin::getSubAdminsGroups($this->userSession->getUser()->getUID());
+ $groups = $this->subAdminFactory->getSubAdminsOfGroups($userId);
}
}
@@ -235,7 +299,7 @@ class UsersController extends Controller {
if($user instanceof User) {
if($groups !== null) {
- foreach( $groups as $groupName ) {
+ foreach($groups as $groupName) {
$group = $this->groupManager->get($groupName);
if(empty($group)) {
@@ -301,11 +365,10 @@ class UsersController extends Controller {
*
* @param string $id
* @return DataResponse
- *
- * TODO: Tidy up and write unit tests - code is mainly static method calls
*/
public function destroy($id) {
- if($this->userSession->getUser()->getUID() === $id) {
+ $userId = $this->userSession->getUser()->getUID();
+ if($userId === $id) {
return new DataResponse(
array(
'status' => 'error',
@@ -317,8 +380,7 @@ class UsersController extends Controller {
);
}
- // FIXME: Remove this static function call at some point…
- if(!$this->isAdmin && !\OC_SubAdmin::isUserAccessible($this->userSession->getUser()->getUID(), $id)) {
+ if(!$this->isAdmin && !$this->subAdminFactory->isUserAccessible($userId, $id)) {
return new DataResponse(
array(
'status' => 'error',
@@ -365,14 +427,12 @@ class UsersController extends Controller {
* @param string $id
* @param string $mailAddress
* @return DataResponse
- *
- * TODO: Tidy up and write unit tests - code is mainly static method calls
*/
public function setMailAddress($id, $mailAddress) {
- // FIXME: Remove this static function call at some point…
- if($this->userSession->getUser()->getUID() !== $id
+ $userId = $this->userSession->getUser()->getUID();
+ if($userId !== $id
&& !$this->isAdmin
- && !\OC_SubAdmin::isUserAccessible($this->userSession->getUser()->getUID(), $id)) {
+ && !$this->subAdminFactory->isUserAccessible($userId, $id)) {
return new DataResponse(
array(
'status' => 'error',
diff --git a/settings/css/settings.css b/settings/css/settings.css
index 55367e716c2..57edc18bd9a 100644
--- a/settings/css/settings.css
+++ b/settings/css/settings.css
@@ -132,7 +132,10 @@ input.userFilter {width: 200px;}
.ie8 table.hascontrols{border-collapse:collapse;width: 100%;}
.ie8 table.hascontrols tbody tr{border-collapse:collapse;border: 1px solid #ddd !important;}
-
+/* used to highlight a user row in red */
+#userlist tr.row-warning {
+ background-color: #FDD;
+}
/* APPS */
diff --git a/settings/factory/subadminfactory.php b/settings/factory/subadminfactory.php
new file mode 100644
index 00000000000..12a45527ae1
--- /dev/null
+++ b/settings/factory/subadminfactory.php
@@ -0,0 +1,45 @@
+<?php
+/**
+ * @author Lukas Reschke
+ * @copyright 2015 Lukas Reschke lukas@owncloud.com
+ *
+ * This file is licensed under the Affero General Public License version 3 or
+ * later.
+ * See the COPYING-README file.
+ */
+
+namespace OC\Settings\Factory;
+
+/**
+ * @package OC\Settings\Factory
+ */
+class SubAdminFactory {
+ /**
+ * Get the groups $uid is SubAdmin of
+ * @param string $uid
+ * @return array Array of groups that $uid is subadmin of
+ */
+ function getSubAdminsOfGroups($uid) {
+ return \OC_SubAdmin::getSubAdminsGroups($uid);
+ }
+
+ /**
+ * Whether the $group is accessible to $uid as subadmin
+ * @param string $uid
+ * @param string $group
+ * @return bool
+ */
+ function isGroupAccessible($uid, $group) {
+ return \OC_SubAdmin::isGroupAccessible($uid, $group);
+ }
+
+ /**
+ * Whether $uid is accessible to $subAdmin
+ * @param string $subAdmin
+ * @param string $uid
+ * @return bool
+ */
+ function isUserAccessible($subAdmin, $uid) {
+ return \OC_SubAdmin::isUserAccessible($subAdmin, $uid);
+ }
+}
diff --git a/settings/js/admin.js b/settings/js/admin.js
index d00d083407f..face18beef0 100644
--- a/settings/js/admin.js
+++ b/settings/js/admin.js
@@ -3,9 +3,9 @@ $(document).ready(function(){
// Hack to add a trusted domain
if (params.trustDomain) {
- OC.dialogs.confirm(t('core', 'Are you really sure you want add "{domain}" as trusted domain?',
+ OC.dialogs.confirm(t('settings', 'Are you really sure you want add "{domain}" as trusted domain?',
{domain: params.trustDomain}),
- t('core', 'Add trusted domain'), function(answer) {
+ t('settings', 'Add trusted domain'), function(answer) {
if(answer) {
$.ajax({
type: 'POST',
diff --git a/settings/js/users/users.js b/settings/js/users/users.js
index f21c660b41f..7034972dd15 100644
--- a/settings/js/users/users.js
+++ b/settings/js/users/users.js
@@ -42,6 +42,7 @@ var UserList = {
* 'lastLogin': '1418632333'
* 'backend': 'LDAP',
* 'email': 'username@example.org'
+ * 'isRestoreDisabled':false
* }
* @param sort
* @returns table row created for this user
@@ -63,11 +64,12 @@ var UserList = {
}
/**
- * add username and displayname to row (in data and visible markup
+ * add username and displayname to row (in data and visible markup)
*/
$tr.data('uid', user.name);
$tr.data('displayname', user.displayname);
$tr.data('mailAddress', user.email);
+ $tr.data('restoreDisabled', user.isRestoreDisabled);
$tr.find('td.name').text(user.name);
$tr.find('td.displayName > span').text(user.displayname);
$tr.find('td.mailAddress > span').text(user.email);
@@ -352,6 +354,9 @@ var UserList = {
getMailAddress: function(element) {
return ($(element).closest('tr').data('mailAddress') || '').toString();
},
+ getRestoreDisabled: function(element) {
+ return ($(element).closest('tr').data('restoreDisabled') || '');
+ },
initDeleteHandling: function() {
//set up handler
UserDeleteHandler = new DeleteHandler('/settings/users/users', 'username',
@@ -417,7 +422,7 @@ var UserList = {
UserList.noMoreEntries = true;
$userList.siblings('.loading').remove();
}
- UserList.offset += loadedUsers;
+ UserList.offset += limit;
}).always(function() {
UserList.updating = false;
});
@@ -627,8 +632,16 @@ $(document).ready(function () {
event.stopPropagation();
var $td = $(this).closest('td');
+ var $tr = $(this).closest('tr');
var uid = UserList.getUID($td);
var $input = $('<input type="password">');
+ var isRestoreDisabled = UserList.getRestoreDisabled($td) === true;
+ if(isRestoreDisabled) {
+ $tr.addClass('row-warning');
+ // add tipsy if the password change could cause data loss - no recovery enabled
+ $input.tipsy({gravity:'s', fade:false});
+ $input.attr('title', t('settings', 'Changing the password will result in data loss, because data recovery is not available for this user'));
+ }
$td.find('img').hide();
$td.children('span').replaceWith($input);
$input
@@ -655,6 +668,8 @@ $(document).ready(function () {
.blur(function () {
$(this).replaceWith($('<span>●●●●●●●</span>'));
$td.find('img').show();
+ // remove highlight class from users without recovery ability
+ $tr.removeClass('row-warning');
});
});
$('input:password[id="recoveryPassword"]').keyup(function() {
@@ -851,6 +866,11 @@ $(document).ready(function () {
containerHeight = $('#app-content').height();
if(containerHeight > 40) {
initialUserCountLimit = Math.floor(containerHeight/40);
+ while((initialUserCountLimit % UserList.usersToLoad) !== 0) {
+ // must be a multiple of this, otherwise LDAP freaks out.
+ // FIXME: solve this in LDAP backend in 8.1
+ initialUserCountLimit = initialUserCountLimit + 1;
+ }
}
// trigger loading of users on startup
diff --git a/settings/l10n/ast.js b/settings/l10n/ast.js
index b60874fd1ea..e340544721c 100644
--- a/settings/l10n/ast.js
+++ b/settings/l10n/ast.js
@@ -99,7 +99,6 @@ OC.L10N.register(
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP ta aparentemente configuráu pa desaniciar bloques de documentos en llinia. Esto va facer que delles aplicaciones principales nun tean accesibles.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Dablemente esto seya culpa d'un caché o acelerador, como por exemplu Zend OPcache o eAccelerator.",
"Database Performance Info" : "Información de rindimientu de la base de datos",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "Ta usándose SQLite como base de datos. Pa instalaciones más grandes, recomendamos cambiar esto. Pa migrar a otra base de datos, usa la ferramienta de llinia de comandos: 'occ db:convert-type'",
"Module 'fileinfo' missing" : "Nun s'atopó'l módulu \"fileinfo\"",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Nun s'atopó'l módulu PHP 'fileinfo'. Encamentámoste qu'habilites esti módulu pa obtener meyores resultaos cola deteición de tribes MIME.",
"PHP charset is not set to UTF-8" : "El xuegu de caracteres de PHP nun ta afitáu pa UTF-8",
diff --git a/settings/l10n/ast.json b/settings/l10n/ast.json
index 359b1f33730..e7d0f52d37b 100644
--- a/settings/l10n/ast.json
+++ b/settings/l10n/ast.json
@@ -97,7 +97,6 @@
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP ta aparentemente configuráu pa desaniciar bloques de documentos en llinia. Esto va facer que delles aplicaciones principales nun tean accesibles.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Dablemente esto seya culpa d'un caché o acelerador, como por exemplu Zend OPcache o eAccelerator.",
"Database Performance Info" : "Información de rindimientu de la base de datos",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "Ta usándose SQLite como base de datos. Pa instalaciones más grandes, recomendamos cambiar esto. Pa migrar a otra base de datos, usa la ferramienta de llinia de comandos: 'occ db:convert-type'",
"Module 'fileinfo' missing" : "Nun s'atopó'l módulu \"fileinfo\"",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Nun s'atopó'l módulu PHP 'fileinfo'. Encamentámoste qu'habilites esti módulu pa obtener meyores resultaos cola deteición de tribes MIME.",
"PHP charset is not set to UTF-8" : "El xuegu de caracteres de PHP nun ta afitáu pa UTF-8",
diff --git a/settings/l10n/bg_BG.js b/settings/l10n/bg_BG.js
index 38c6d85836b..eed89a80c39 100644
--- a/settings/l10n/bg_BG.js
+++ b/settings/l10n/bg_BG.js
@@ -6,101 +6,115 @@ OC.L10N.register(
"Sharing" : "Споделяне",
"Security" : "Сигурност",
"Email Server" : "Имейл Сървър",
- "Log" : "Доклад",
+ "Log" : "Лог",
"Authentication error" : "Възникна проблем с идентификацията",
- "Your full name has been changed." : "Пълното ти име е променено.",
+ "Your full name has been changed." : "Вашето пълно име е променено.",
"Unable to change full name" : "Неуспешна промяна на пълното име.",
- "Files decrypted successfully" : "Успешно разшифроването на файловете.",
- "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Неуспешно разшифроване на файловете ти, моля провери owncloud.log или попитай администратора.",
- "Couldn't decrypt your files, check your password and try again" : "Неуспешно разшифроване на файловете ти, провери паролата си и опитай отново.",
+ "Files decrypted successfully" : "Разшифроването на файловете е успешно.",
+ "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Разшифроването на файловете Ви не е успешно. Моля, проверете вашия owncloud.log или попитайте администратора.",
+ "Couldn't decrypt your files, check your password and try again" : "Разшифроването на файловете Ви не е успешно. Моля, проверете паролата си и опитайте отново.",
"Encryption keys deleted permanently" : "Ключовете за криптиране са безвъзвратно изтрити",
- "Couldn't permanently delete your encryption keys, please check your owncloud.log or ask your administrator" : "Неуспешно безвъзвратно изтриване на криптиращите ключове, моля провери своя owncloud.log или се свържи с админстратора.",
+ "Couldn't permanently delete your encryption keys, please check your owncloud.log or ask your administrator" : "Неуспешно безвъзвратно изтриване на криптиращите ключове. Моля проверете своя owncloud.log или се свържете с админстратора.",
"Couldn't remove app." : "Неуспешно премахване на приложението.",
"Backups restored successfully" : "Резервното копие е успешно възстановено.",
- "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Неуспешно възстановяване на криптиращите ти ключове, моля провери owncloud.log или попитай администратора.",
+ "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Възстановяването на криптиращите Ви ключове е неуспешно. Моля, проверете вашия owncloud.log или попитайте администратора.",
"Language changed" : "Езикът е променен",
"Invalid request" : "Невалидна заявка",
- "Admins can't remove themself from the admin group" : "Админът не може да премахне себе си от админ групата.",
+ "Admins can't remove themself from the admin group" : "Администраторите не могат да премахват себе си от групата \"admin\".",
"Unable to add user to group %s" : "Неуспешно добавяне на потребител към групата %s.",
"Unable to remove user from group %s" : "Неуспешно премахване на потребител от групата %s.",
- "Couldn't update app." : "Неуспешно обновяване на приложението.",
+ "Couldn't update app." : "Обновяването на приложението е неуспешно..",
"Wrong password" : "Грешна парола",
"No user supplied" : "Липсва потребителско име",
- "Please provide an admin recovery password, otherwise all user data will be lost" : "Моля, посочете администраторската парола за възстановяване или всичката информация на потребителите ще бъде загубена.",
- "Wrong admin recovery password. Please check the password and try again." : "Грешна администраторска парола за възстановяване. Моля, провери паролата и опитай отново.",
- "Back-end doesn't support password change, but the users encryption key was successfully updated." : "Сървърът не позволява смяна на паролата, но ключът за криптиране беше успешно обновен.",
+ "Please provide an admin recovery password, otherwise all user data will be lost" : "Моля, посочете администраторската парола за възстановяване. В противен случай, всичката информация на потребителите ще бъде загубена.",
+ "Wrong admin recovery password. Please check the password and try again." : "Грешна администраторска парола за възстановяване. Моля, проверете паролата и опитайте отново.",
+ "Back-end doesn't support password change, but the users encryption key was successfully updated." : "Сървърът не позволява смяна на паролата, но потребителския ключ за криптиране беше успешно обновен.",
"Unable to change password" : "Неуспешна смяна на паролата.",
"Enabled" : "Включено",
"Not enabled" : "Изключено",
"Recommended" : "Препоръчано",
- "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." : "Настъпи проблем при изпращането на имейла. Моля, провери настройките.",
+ "Group already exists." : "Групата вече съществува.",
+ "Unable to add group." : "Неуспешно добавяне на група.",
+ "Unable to delete group." : "Неуспешно изтриване на група",
+ "log-level out of allowed range" : "Ниво на проследяване \\(log-level\\) e извън допустимия обхват",
+ "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." : "Трябва да зададеш своя имейл преди да можеш да изпратиш проверяващи имейли.",
- "Email saved" : "Имейла запазен",
- "Are you really sure you want add \"{domain}\" as trusted domain?" : "Сигурен ли си, че искащ да добавиш \"{domain}\" сигурен домейн?",
- "Add trusted domain" : "Добави сигурен домейн",
+ "You need to set your user email before being able to send test emails." : "Трябва да зададете своя имейл преди да можете да изпращате тестови имейли.",
+ "Invalid mail address" : "невалиден адрес на електронна поща",
+ "Unable to create user." : "Неуспешно създаване на потребител.",
+ "Your %s account was created" : "Вашия %s профил бе създаден",
+ "Unable to delete user." : "Неуспешно изтриване на потребител.",
+ "Forbidden" : "Забранено",
+ "Invalid user" : "Невалиден протребител",
+ "Unable to change mail address" : "Неуспешна промяна на адрес на електронна поща",
+ "Email saved" : "Имейлът е запазен",
+ "Are you really sure you want add \"{domain}\" as trusted domain?" : "Сигурен/на ли сте, че искате \"{domain}\" да бъде добавен като сигурен домейн?",
+ "Add trusted domain" : "Добавяне на сигурен домейн",
"Sending..." : "Изпращане...",
"All" : "Всички",
- "Please wait...." : "Моля изчакайте....",
+ "Please wait...." : "Моля, изчакайте....",
"Error while disabling app" : "Грешка при изключването на приложението",
- "Disable" : "Изключено",
- "Enable" : "Включено",
+ "Disable" : "Изключване",
+ "Enable" : "Включване",
"Error while enabling app" : "Грешка при включване на приложението",
- "Updating...." : "Обновява се...",
+ "Updating...." : "Обновяване...",
"Error while updating app" : "Грешка при обновяване на приложението.",
"Updated" : "Обновено",
"Uninstalling ...." : "Премахване ...",
- "Error while uninstalling app" : "Грешка при премахването на приложението.",
+ "Error while uninstalling app" : "Грешка при премахването на приложението",
"Uninstall" : "Премахване",
- "Select a profile picture" : "Избери аватар",
+ "Select a profile picture" : "Избиране на профилна снимка",
"Very weak password" : "Много слаба парола",
"Weak password" : "Слаба парола",
"So-so password" : "Не особено добра парола",
"Good password" : "Добра парола",
"Strong password" : "Сигурна парола",
- "Valid until {date}" : "Валиден до {date}",
- "Delete" : "Изтрий",
- "Decrypting files... Please wait, this can take some time." : "Разшифроване на файловете... Моля, изчакай, това може да отнеме време...",
- "Delete encryption keys permanently." : "Изтрий криптиращите ключове безвъзвратно.",
- "Restore encryption keys." : "Възстанови криптиращите ключове.",
+ "Valid until {date}" : "Далидна до {date}",
+ "Delete" : "Изтриване",
+ "Decrypting files... Please wait, this can take some time." : "Разшифроване на файловете... Моля, изчакайте. Това може да отнеме известно време...",
+ "Delete encryption keys permanently." : "Изтриване на криптиращите ключове безвъзвратно.",
+ "Restore encryption keys." : "Възстановяване на криптиращите ключове.",
"Groups" : "Групи",
"Unable to delete {objName}" : "Неуспешно изтриване на {objName}.",
- "Error creating group" : "Грешка при създаване на група.",
+ "Error creating group" : "Грешка при създаване на група",
"A valid group name must be provided" : "Очаква се валидно име на група",
- "deleted {groupName}" : "{groupName} изтрит",
- "undo" : "възтановяване",
+ "deleted {groupName}" : "{groupName} е изтрита",
+ "undo" : "възстановяване",
"no group" : "няма група",
"never" : "никога",
- "deleted {userName}" : "{userName} изтрит",
- "add group" : "нова група",
- "A valid username must be provided" : "Валидно потребителско име трябва да бъде зададено.",
- "Error creating user" : "Грешка при създаване на потребител.",
- "A valid password must be provided" : "Валидна парола трябва да бъде зададена.",
- "__language_name__" : "__language_name__",
- "Personal Info" : "Лична Информация",
+ "deleted {userName}" : "{userName} е изтрит",
+ "add group" : "добавяне на група",
+ "Changing the password will result in data loss, because data recovery is not available for this user" : "Промяна на паролата ще доведе до загуба на данни, защото не е налично възстановяване за този потребител.",
+ "A valid username must be provided" : "Трябва да бъде зададено валидно потребителско име",
+ "Error creating user" : "Грешка при създаване на потребител",
+ "A valid password must be provided" : "Трябва да бъде зададена валидна парола",
+ "A valid email must be provided" : "Трябва да бъде зададена валидна електронна поща",
+ "__language_name__" : "Български",
+ "Personal Info" : "Лична информация",
"SSL root certificates" : "SSL root сертификати",
"Encryption" : "Криптиране",
"Everything (fatal issues, errors, warnings, info, debug)" : "Всичко (фатални проблеми, грешки, предупреждения, информация, дебъгване)",
- "Info, warnings, errors and fatal issues" : "Информация, предупреждения, грешки и фатални проблеми",
+ "Info, warnings, errors and fatal issues" : "информация, предупреждения, грешки и фатални проблеми",
"Warnings, errors and fatal issues" : "Предупреждения, грешки и фатални проблеми",
"Errors and fatal issues" : "Грешки и фатални проблеми",
"Fatal issues only" : "Само фатални проблеми",
"None" : "Няма",
"Login" : "Вход",
- "Plain" : "Не защитен",
+ "Plain" : "Обикновен",
"NT LAN Manager" : "NT LAN Manager",
"SSL" : "SSL",
"TLS" : "TLS",
"Security Warning" : "Предупреждение за Сигурноста",
- "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "В момента използваш HTTP, за да посетиш %s. Силно препоръчваме да настроиш съвръра си да използва HTTPS.",
- "Setup Warning" : "Предупреждение за Настройките",
- "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP е настроен да премахва inline doc блокове. Това може да превърне няколко основни приложения недостъпни.",
- "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Това може да се дължи на cache/accelerator като Zend OPache или eAccelerator.",
- "Database Performance Info" : "Информацията за Прозиводителност на Базата Данни",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "Настоящата база данни е SQLite. За по-големи инсталации препоръчваме да я смениш. За да преминеш към друга база данни използвай следната команда от командния ред: 'occ db:convert-type'",
+ "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "В момента достъпвате %s през HTTP. Силно Ви препоръчваме да настроите съвръра си да изисква HTTPS.",
+ "Setup Warning" : "Предупреждение за настройките",
+ "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP е настроен да премахва inline doc блокове. Това ще направи няколко основни приложения недостъпни.",
+ "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Това може да се дължи на кеш/акселератор като Zend OPache или eAccelerator.",
+ "Database Performance Info" : "Информация за прозиводителността на базата данни",
+ "Microsoft Windows Platform" : "Платформа Microsoft Windows",
+ "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Вашия сървър работи на Microsoft Windows. Ние горещо препоръчваме Linux за оптимално потребителско изживяване.",
"Module 'fileinfo' missing" : "Модулът 'fileinfo' липсва",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP модулът 'fileinfo' липсва. Силно препоръчваме този модъл да бъде добавен, за да бъдат постигнати най-добри резултати при mime-type откриването.",
"PHP charset is not set to UTF-8" : "PHP таблицата от символи не е настроена за UTF-8",
@@ -108,7 +122,10 @@ OC.L10N.register(
"Locale not working" : "Местоположението не работи",
"System locale can not be set to a one which supports UTF-8." : "Системните настройки за местоположение не могат да бъдат промени на такива, подържащи UTF-8.",
"This means that there might be problems with certain characters in file names." : "Това означва, че може да има проблеми с определини символи в имената на файловете.",
+ "We strongly suggest 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 \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Ако инсталацията не е в основата на вашия домейн и използва системния cron, могат да възникнат проблеми с генерирането на URLи. За избягване на тези проблеми, моля настройте <code>overwrite.cli.url</code> опцията в 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 +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",
@@ -150,8 +168,10 @@ OC.L10N.register(
"Test email settings" : "Настройки на проверяващия имейл",
"Send email" : "Изпрати имейл",
"Log level" : "Детайли на доклада",
+ "Download logfile" : "Изтегли log файла",
"More" : "Още",
"Less" : "По-малко",
+ "The logfile is bigger than 100MB. Downloading it may take some time!" : "Log файла е по-голям от 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 +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",
"Administrator Documentation" : "Административна Документация",
"Online Documentation" : "Документация в Интернет",
"Forum" : "Форум",
"Bugtracker" : "Докладвани грешки",
"Commercial Support" : "Платена Поддръжка",
"Get the apps to sync your files" : "Изтегли програми за синхронизиране на файловете ти",
+ "Desktop client" : "Клиент за настолен компютър",
+ "Android app" : "Андроид приложение",
+ "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\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\">присъедини се и пиши код</a>\n\t\tили\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_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>.",
@@ -181,9 +207,11 @@ OC.L10N.register(
"New password" : "Нова парола",
"Change password" : "Промяна на паролата",
"Full Name" : "Пълно Име",
+ "No display name set" : "Няма настроено екранно име",
"Email" : "Имейл",
"Your email address" : "Твоят имейл адрес",
"Fill in an email address to enable password recovery and receive notifications" : "Въведи имейл, за да включиш функцията за възстановяване на паролата и уведомления.",
+ "No email address set" : "Няма настроен адрес на електронна поща",
"Profile picture" : "Аватар",
"Upload new" : "Качи нов",
"Select new from Files" : "Избери нов от Файловете",
@@ -207,10 +235,14 @@ OC.L10N.register(
"Delete Encryption Keys" : "Изтрий Криптиращи Ключове",
"Show storage location" : "Покажи място за запис",
"Show last log in" : "Покажи последно вписване",
+ "Send email to new user" : "Изпращай писмо към нов потребител",
+ "Show email address" : "Покажи адреса на електронната поща",
"Username" : "Потребителско Име",
+ "E-Mail" : "Електронна поща",
"Create" : "Създаване",
"Admin Recovery Password" : "Възстановяване на Администраторска Парола",
"Enter the recovery password in order to recover the users files during password change" : "Въведи паролата за възстановяване, за да възстановиш файловете на потребителите при промяна на паролата.",
+ "Search Users" : "Търси Потребители",
"Add Group" : "Добави Група",
"Group" : "Група",
"Everyone" : "Всички",
@@ -225,6 +257,7 @@ OC.L10N.register(
"Last Login" : "Последно Вписване",
"change full name" : "промени пълното име",
"set new password" : "сложи нова парола",
+ "change email address" : "Смени адреса на елетронната поща",
"Default" : "По подразбиране"
},
"nplurals=2; plural=(n != 1);");
diff --git a/settings/l10n/bg_BG.json b/settings/l10n/bg_BG.json
index 39243c38f62..a15a95026af 100644
--- a/settings/l10n/bg_BG.json
+++ b/settings/l10n/bg_BG.json
@@ -4,101 +4,115 @@
"Sharing" : "Споделяне",
"Security" : "Сигурност",
"Email Server" : "Имейл Сървър",
- "Log" : "Доклад",
+ "Log" : "Лог",
"Authentication error" : "Възникна проблем с идентификацията",
- "Your full name has been changed." : "Пълното ти име е променено.",
+ "Your full name has been changed." : "Вашето пълно име е променено.",
"Unable to change full name" : "Неуспешна промяна на пълното име.",
- "Files decrypted successfully" : "Успешно разшифроването на файловете.",
- "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Неуспешно разшифроване на файловете ти, моля провери owncloud.log или попитай администратора.",
- "Couldn't decrypt your files, check your password and try again" : "Неуспешно разшифроване на файловете ти, провери паролата си и опитай отново.",
+ "Files decrypted successfully" : "Разшифроването на файловете е успешно.",
+ "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Разшифроването на файловете Ви не е успешно. Моля, проверете вашия owncloud.log или попитайте администратора.",
+ "Couldn't decrypt your files, check your password and try again" : "Разшифроването на файловете Ви не е успешно. Моля, проверете паролата си и опитайте отново.",
"Encryption keys deleted permanently" : "Ключовете за криптиране са безвъзвратно изтрити",
- "Couldn't permanently delete your encryption keys, please check your owncloud.log or ask your administrator" : "Неуспешно безвъзвратно изтриване на криптиращите ключове, моля провери своя owncloud.log или се свържи с админстратора.",
+ "Couldn't permanently delete your encryption keys, please check your owncloud.log or ask your administrator" : "Неуспешно безвъзвратно изтриване на криптиращите ключове. Моля проверете своя owncloud.log или се свържете с админстратора.",
"Couldn't remove app." : "Неуспешно премахване на приложението.",
"Backups restored successfully" : "Резервното копие е успешно възстановено.",
- "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Неуспешно възстановяване на криптиращите ти ключове, моля провери owncloud.log или попитай администратора.",
+ "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Възстановяването на криптиращите Ви ключове е неуспешно. Моля, проверете вашия owncloud.log или попитайте администратора.",
"Language changed" : "Езикът е променен",
"Invalid request" : "Невалидна заявка",
- "Admins can't remove themself from the admin group" : "Админът не може да премахне себе си от админ групата.",
+ "Admins can't remove themself from the admin group" : "Администраторите не могат да премахват себе си от групата \"admin\".",
"Unable to add user to group %s" : "Неуспешно добавяне на потребител към групата %s.",
"Unable to remove user from group %s" : "Неуспешно премахване на потребител от групата %s.",
- "Couldn't update app." : "Неуспешно обновяване на приложението.",
+ "Couldn't update app." : "Обновяването на приложението е неуспешно..",
"Wrong password" : "Грешна парола",
"No user supplied" : "Липсва потребителско име",
- "Please provide an admin recovery password, otherwise all user data will be lost" : "Моля, посочете администраторската парола за възстановяване или всичката информация на потребителите ще бъде загубена.",
- "Wrong admin recovery password. Please check the password and try again." : "Грешна администраторска парола за възстановяване. Моля, провери паролата и опитай отново.",
- "Back-end doesn't support password change, but the users encryption key was successfully updated." : "Сървърът не позволява смяна на паролата, но ключът за криптиране беше успешно обновен.",
+ "Please provide an admin recovery password, otherwise all user data will be lost" : "Моля, посочете администраторската парола за възстановяване. В противен случай, всичката информация на потребителите ще бъде загубена.",
+ "Wrong admin recovery password. Please check the password and try again." : "Грешна администраторска парола за възстановяване. Моля, проверете паролата и опитайте отново.",
+ "Back-end doesn't support password change, but the users encryption key was successfully updated." : "Сървърът не позволява смяна на паролата, но потребителския ключ за криптиране беше успешно обновен.",
"Unable to change password" : "Неуспешна смяна на паролата.",
"Enabled" : "Включено",
"Not enabled" : "Изключено",
"Recommended" : "Препоръчано",
- "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." : "Настъпи проблем при изпращането на имейла. Моля, провери настройките.",
+ "Group already exists." : "Групата вече съществува.",
+ "Unable to add group." : "Неуспешно добавяне на група.",
+ "Unable to delete group." : "Неуспешно изтриване на група",
+ "log-level out of allowed range" : "Ниво на проследяване \\(log-level\\) e извън допустимия обхват",
+ "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." : "Трябва да зададеш своя имейл преди да можеш да изпратиш проверяващи имейли.",
- "Email saved" : "Имейла запазен",
- "Are you really sure you want add \"{domain}\" as trusted domain?" : "Сигурен ли си, че искащ да добавиш \"{domain}\" сигурен домейн?",
- "Add trusted domain" : "Добави сигурен домейн",
+ "You need to set your user email before being able to send test emails." : "Трябва да зададете своя имейл преди да можете да изпращате тестови имейли.",
+ "Invalid mail address" : "невалиден адрес на електронна поща",
+ "Unable to create user." : "Неуспешно създаване на потребител.",
+ "Your %s account was created" : "Вашия %s профил бе създаден",
+ "Unable to delete user." : "Неуспешно изтриване на потребител.",
+ "Forbidden" : "Забранено",
+ "Invalid user" : "Невалиден протребител",
+ "Unable to change mail address" : "Неуспешна промяна на адрес на електронна поща",
+ "Email saved" : "Имейлът е запазен",
+ "Are you really sure you want add \"{domain}\" as trusted domain?" : "Сигурен/на ли сте, че искате \"{domain}\" да бъде добавен като сигурен домейн?",
+ "Add trusted domain" : "Добавяне на сигурен домейн",
"Sending..." : "Изпращане...",
"All" : "Всички",
- "Please wait...." : "Моля изчакайте....",
+ "Please wait...." : "Моля, изчакайте....",
"Error while disabling app" : "Грешка при изключването на приложението",
- "Disable" : "Изключено",
- "Enable" : "Включено",
+ "Disable" : "Изключване",
+ "Enable" : "Включване",
"Error while enabling app" : "Грешка при включване на приложението",
- "Updating...." : "Обновява се...",
+ "Updating...." : "Обновяване...",
"Error while updating app" : "Грешка при обновяване на приложението.",
"Updated" : "Обновено",
"Uninstalling ...." : "Премахване ...",
- "Error while uninstalling app" : "Грешка при премахването на приложението.",
+ "Error while uninstalling app" : "Грешка при премахването на приложението",
"Uninstall" : "Премахване",
- "Select a profile picture" : "Избери аватар",
+ "Select a profile picture" : "Избиране на профилна снимка",
"Very weak password" : "Много слаба парола",
"Weak password" : "Слаба парола",
"So-so password" : "Не особено добра парола",
"Good password" : "Добра парола",
"Strong password" : "Сигурна парола",
- "Valid until {date}" : "Валиден до {date}",
- "Delete" : "Изтрий",
- "Decrypting files... Please wait, this can take some time." : "Разшифроване на файловете... Моля, изчакай, това може да отнеме време...",
- "Delete encryption keys permanently." : "Изтрий криптиращите ключове безвъзвратно.",
- "Restore encryption keys." : "Възстанови криптиращите ключове.",
+ "Valid until {date}" : "Далидна до {date}",
+ "Delete" : "Изтриване",
+ "Decrypting files... Please wait, this can take some time." : "Разшифроване на файловете... Моля, изчакайте. Това може да отнеме известно време...",
+ "Delete encryption keys permanently." : "Изтриване на криптиращите ключове безвъзвратно.",
+ "Restore encryption keys." : "Възстановяване на криптиращите ключове.",
"Groups" : "Групи",
"Unable to delete {objName}" : "Неуспешно изтриване на {objName}.",
- "Error creating group" : "Грешка при създаване на група.",
+ "Error creating group" : "Грешка при създаване на група",
"A valid group name must be provided" : "Очаква се валидно име на група",
- "deleted {groupName}" : "{groupName} изтрит",
- "undo" : "възтановяване",
+ "deleted {groupName}" : "{groupName} е изтрита",
+ "undo" : "възстановяване",
"no group" : "няма група",
"never" : "никога",
- "deleted {userName}" : "{userName} изтрит",
- "add group" : "нова група",
- "A valid username must be provided" : "Валидно потребителско име трябва да бъде зададено.",
- "Error creating user" : "Грешка при създаване на потребител.",
- "A valid password must be provided" : "Валидна парола трябва да бъде зададена.",
- "__language_name__" : "__language_name__",
- "Personal Info" : "Лична Информация",
+ "deleted {userName}" : "{userName} е изтрит",
+ "add group" : "добавяне на група",
+ "Changing the password will result in data loss, because data recovery is not available for this user" : "Промяна на паролата ще доведе до загуба на данни, защото не е налично възстановяване за този потребител.",
+ "A valid username must be provided" : "Трябва да бъде зададено валидно потребителско име",
+ "Error creating user" : "Грешка при създаване на потребител",
+ "A valid password must be provided" : "Трябва да бъде зададена валидна парола",
+ "A valid email must be provided" : "Трябва да бъде зададена валидна електронна поща",
+ "__language_name__" : "Български",
+ "Personal Info" : "Лична информация",
"SSL root certificates" : "SSL root сертификати",
"Encryption" : "Криптиране",
"Everything (fatal issues, errors, warnings, info, debug)" : "Всичко (фатални проблеми, грешки, предупреждения, информация, дебъгване)",
- "Info, warnings, errors and fatal issues" : "Информация, предупреждения, грешки и фатални проблеми",
+ "Info, warnings, errors and fatal issues" : "информация, предупреждения, грешки и фатални проблеми",
"Warnings, errors and fatal issues" : "Предупреждения, грешки и фатални проблеми",
"Errors and fatal issues" : "Грешки и фатални проблеми",
"Fatal issues only" : "Само фатални проблеми",
"None" : "Няма",
"Login" : "Вход",
- "Plain" : "Не защитен",
+ "Plain" : "Обикновен",
"NT LAN Manager" : "NT LAN Manager",
"SSL" : "SSL",
"TLS" : "TLS",
"Security Warning" : "Предупреждение за Сигурноста",
- "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "В момента използваш HTTP, за да посетиш %s. Силно препоръчваме да настроиш съвръра си да използва HTTPS.",
- "Setup Warning" : "Предупреждение за Настройките",
- "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP е настроен да премахва inline doc блокове. Това може да превърне няколко основни приложения недостъпни.",
- "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Това може да се дължи на cache/accelerator като Zend OPache или eAccelerator.",
- "Database Performance Info" : "Информацията за Прозиводителност на Базата Данни",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "Настоящата база данни е SQLite. За по-големи инсталации препоръчваме да я смениш. За да преминеш към друга база данни използвай следната команда от командния ред: 'occ db:convert-type'",
+ "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "В момента достъпвате %s през HTTP. Силно Ви препоръчваме да настроите съвръра си да изисква HTTPS.",
+ "Setup Warning" : "Предупреждение за настройките",
+ "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP е настроен да премахва inline doc блокове. Това ще направи няколко основни приложения недостъпни.",
+ "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Това може да се дължи на кеш/акселератор като Zend OPache или eAccelerator.",
+ "Database Performance Info" : "Информация за прозиводителността на базата данни",
+ "Microsoft Windows Platform" : "Платформа Microsoft Windows",
+ "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Вашия сървър работи на Microsoft Windows. Ние горещо препоръчваме Linux за оптимално потребителско изживяване.",
"Module 'fileinfo' missing" : "Модулът 'fileinfo' липсва",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP модулът 'fileinfo' липсва. Силно препоръчваме този модъл да бъде добавен, за да бъдат постигнати най-добри резултати при mime-type откриването.",
"PHP charset is not set to UTF-8" : "PHP таблицата от символи не е настроена за UTF-8",
@@ -106,7 +120,10 @@
"Locale not working" : "Местоположението не работи",
"System locale can not be set to a one which supports UTF-8." : "Системните настройки за местоположение не могат да бъдат промени на такива, подържащи UTF-8.",
"This means that there might be problems with certain characters in file names." : "Това означва, че може да има проблеми с определини символи в имената на файловете.",
+ "We strongly suggest 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 \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Ако инсталацията не е в основата на вашия домейн и използва системния cron, могат да възникнат проблеми с генерирането на URLи. За избягване на тези проблеми, моля настройте <code>overwrite.cli.url</code> опцията в 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.",
@@ -126,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",
@@ -148,8 +166,10 @@
"Test email settings" : "Настройки на проверяващия имейл",
"Send email" : "Изпрати имейл",
"Log level" : "Детайли на доклада",
+ "Download logfile" : "Изтегли log файла",
"More" : "Още",
"Less" : "По-малко",
+ "The logfile is bigger than 100MB. Downloading it may take some time!" : "Log файла е по-голям от 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" : "Още приложения",
@@ -159,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",
"Administrator Documentation" : "Административна Документация",
"Online Documentation" : "Документация в Интернет",
"Forum" : "Форум",
"Bugtracker" : "Докладвани грешки",
"Commercial Support" : "Платена Поддръжка",
"Get the apps to sync your files" : "Изтегли програми за синхронизиране на файловете ти",
+ "Desktop client" : "Клиент за настолен компютър",
+ "Android app" : "Андроид приложение",
+ "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\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\">присъедини се и пиши код</a>\n\t\tили\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_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>.",
@@ -179,9 +205,11 @@
"New password" : "Нова парола",
"Change password" : "Промяна на паролата",
"Full Name" : "Пълно Име",
+ "No display name set" : "Няма настроено екранно име",
"Email" : "Имейл",
"Your email address" : "Твоят имейл адрес",
"Fill in an email address to enable password recovery and receive notifications" : "Въведи имейл, за да включиш функцията за възстановяване на паролата и уведомления.",
+ "No email address set" : "Няма настроен адрес на електронна поща",
"Profile picture" : "Аватар",
"Upload new" : "Качи нов",
"Select new from Files" : "Избери нов от Файловете",
@@ -205,10 +233,14 @@
"Delete Encryption Keys" : "Изтрий Криптиращи Ключове",
"Show storage location" : "Покажи място за запис",
"Show last log in" : "Покажи последно вписване",
+ "Send email to new user" : "Изпращай писмо към нов потребител",
+ "Show email address" : "Покажи адреса на електронната поща",
"Username" : "Потребителско Име",
+ "E-Mail" : "Електронна поща",
"Create" : "Създаване",
"Admin Recovery Password" : "Възстановяване на Администраторска Парола",
"Enter the recovery password in order to recover the users files during password change" : "Въведи паролата за възстановяване, за да възстановиш файловете на потребителите при промяна на паролата.",
+ "Search Users" : "Търси Потребители",
"Add Group" : "Добави Група",
"Group" : "Група",
"Everyone" : "Всички",
@@ -223,6 +255,7 @@
"Last Login" : "Последно Вписване",
"change full name" : "промени пълното име",
"set new password" : "сложи нова парола",
+ "change email address" : "Смени адреса на елетронната поща",
"Default" : "По подразбиране"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
} \ No newline at end of file
diff --git a/settings/l10n/bs.js b/settings/l10n/bs.js
index e8a50e10364..4df4874ca24 100644
--- a/settings/l10n/bs.js
+++ b/settings/l10n/bs.js
@@ -113,7 +113,6 @@ OC.L10N.register(
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP je očigledno postavljen da se skine inline doc blokova. To će nekoliko osnovnih aplikacija učiniti nedostupnim.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Uzrok tome je vjerojatno neki ubrzivač predmemorisanja kao što je Zend OPcache ili eAccelerator.",
"Database Performance Info" : "Info o performansi baze podataka",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "SQLite se koristi kao baza podataka. Za veće instalacije preporučujemo da se to promijeni. Za migraciju na neku drugu bazu podataka koristite naredbeni redak: 'occ db: convert-type'",
"Module 'fileinfo' missing" : "Nedostaje modul 'fileinfo'",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP modul 'fileinfo' nedostaje. Strogo vam preporučjem da taj modul omogućite kako biste dobili najbolje rezultate u detekciji mime vrste.",
"PHP charset is not set to UTF-8" : "PHP Charset nije postavljen na UTF-8",
diff --git a/settings/l10n/bs.json b/settings/l10n/bs.json
index dbf43aedd25..1bdc0aa7f52 100644
--- a/settings/l10n/bs.json
+++ b/settings/l10n/bs.json
@@ -111,7 +111,6 @@
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP je očigledno postavljen da se skine inline doc blokova. To će nekoliko osnovnih aplikacija učiniti nedostupnim.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Uzrok tome je vjerojatno neki ubrzivač predmemorisanja kao što je Zend OPcache ili eAccelerator.",
"Database Performance Info" : "Info o performansi baze podataka",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "SQLite se koristi kao baza podataka. Za veće instalacije preporučujemo da se to promijeni. Za migraciju na neku drugu bazu podataka koristite naredbeni redak: 'occ db: convert-type'",
"Module 'fileinfo' missing" : "Nedostaje modul 'fileinfo'",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP modul 'fileinfo' nedostaje. Strogo vam preporučjem da taj modul omogućite kako biste dobili najbolje rezultate u detekciji mime vrste.",
"PHP charset is not set to UTF-8" : "PHP Charset nije postavljen na UTF-8",
diff --git a/settings/l10n/ca.js b/settings/l10n/ca.js
index 3295f6e4b15..5f6ddd5854d 100644
--- a/settings/l10n/ca.js
+++ b/settings/l10n/ca.js
@@ -100,7 +100,6 @@ OC.L10N.register(
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "Aparentment PHP està configurat per mostrar blocs en línia de documentació. Això farà que algunes aplicacions core siguin inaccessibles.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Això probablement està provocat per una cau/accelerador com Zend OPcache o eAccelerator.",
"Database Performance Info" : "Informació del rendiment de la base de dades",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "S'utilitza SQLite com a base de dades. Per instal·lacions grans recomanem que la canvieu. Per migrar a una altra base de dades useu l'eina d'intèrpret d'ordres 'occ db:convert-type'",
"Module 'fileinfo' missing" : "No s'ha trobat el mòdul 'fileinfo'",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "El mòdul de PHP 'fileinfo' no s'ha trobat. Us recomanem que habiliteu aquest mòdul per obtenir millors resultats amb la detecció mime-type.",
"PHP charset is not set to UTF-8" : "El codi de caràcters del php no és UTF-8",
diff --git a/settings/l10n/ca.json b/settings/l10n/ca.json
index f60f4253b3c..94d51582752 100644
--- a/settings/l10n/ca.json
+++ b/settings/l10n/ca.json
@@ -98,7 +98,6 @@
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "Aparentment PHP està configurat per mostrar blocs en línia de documentació. Això farà que algunes aplicacions core siguin inaccessibles.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Això probablement està provocat per una cau/accelerador com Zend OPcache o eAccelerator.",
"Database Performance Info" : "Informació del rendiment de la base de dades",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "S'utilitza SQLite com a base de dades. Per instal·lacions grans recomanem que la canvieu. Per migrar a una altra base de dades useu l'eina d'intèrpret d'ordres 'occ db:convert-type'",
"Module 'fileinfo' missing" : "No s'ha trobat el mòdul 'fileinfo'",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "El mòdul de PHP 'fileinfo' no s'ha trobat. Us recomanem que habiliteu aquest mòdul per obtenir millors resultats amb la detecció mime-type.",
"PHP charset is not set to UTF-8" : "El codi de caràcters del php no és UTF-8",
diff --git a/settings/l10n/cs_CZ.js b/settings/l10n/cs_CZ.js
index 34e4cb2b11e..177167a8423 100644
--- a/settings/l10n/cs_CZ.js
+++ b/settings/l10n/cs_CZ.js
@@ -87,6 +87,7 @@ OC.L10N.register(
"never" : "nikdy",
"deleted {userName}" : "smazán {userName}",
"add group" : "přidat skupinu",
+ "Changing the password will result in data loss, because data recovery is not available for this user" : "Změna hesla bude mít za následek ztrátu dat, protože jejich obnova není pro tohoto uživatele dostupná.",
"A valid username must be provided" : "Musíte zadat platné uživatelské jméno",
"Error creating user" : "Chyba při vytváření užiatele",
"A valid password must be provided" : "Musíte zadat platné heslo",
@@ -114,7 +115,9 @@ OC.L10N.register(
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP je patrně nastaveno tak, aby odstraňovalo bloky komentářů. Toto bude mít za následek nedostupnost množství hlavních aplikací.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Toto je pravděpodobně způsobeno aplikacemi pro urychlení načítání jako jsou Zend OPcache nebo eAccelerator.",
"Database Performance Info" : "Informace o výkonu databáze",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "Je použita databáze SQLite. Pro větší instalace doporučujeme toto změnit. Pro migraci na jiný typ databáze lze použít nástroj pro příkazový řádek: 'occ db:convert-type'",
+ "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "Je použita databáze SQLite. Pro větší instalace doporučujeme přejít na robustnější databázi.",
+ "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Obzvláště při používání klientské aplikace pro synchronizaci s desktopem není SQLite doporučeno.",
+ "To migrate to another database use the command line tool: 'occ db:convert-type'" : "Pro migraci na jinou databázi lze použít aplikaci pro příkazový řádek: 'occ db:convert-type'",
"Microsoft Windows Platform" : "Platforma Microsoft Windows",
"Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Server běží v prostředí Microsoft Windows. Pro optimální uživatelské pohodlí doporučujeme přejít na Linux.",
"Module 'fileinfo' missing" : "Schází modul 'fileinfo'",
diff --git a/settings/l10n/cs_CZ.json b/settings/l10n/cs_CZ.json
index 2f2b3d2e5ea..da99b1d1d51 100644
--- a/settings/l10n/cs_CZ.json
+++ b/settings/l10n/cs_CZ.json
@@ -85,6 +85,7 @@
"never" : "nikdy",
"deleted {userName}" : "smazán {userName}",
"add group" : "přidat skupinu",
+ "Changing the password will result in data loss, because data recovery is not available for this user" : "Změna hesla bude mít za následek ztrátu dat, protože jejich obnova není pro tohoto uživatele dostupná.",
"A valid username must be provided" : "Musíte zadat platné uživatelské jméno",
"Error creating user" : "Chyba při vytváření užiatele",
"A valid password must be provided" : "Musíte zadat platné heslo",
@@ -112,7 +113,9 @@
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP je patrně nastaveno tak, aby odstraňovalo bloky komentářů. Toto bude mít za následek nedostupnost množství hlavních aplikací.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Toto je pravděpodobně způsobeno aplikacemi pro urychlení načítání jako jsou Zend OPcache nebo eAccelerator.",
"Database Performance Info" : "Informace o výkonu databáze",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "Je použita databáze SQLite. Pro větší instalace doporučujeme toto změnit. Pro migraci na jiný typ databáze lze použít nástroj pro příkazový řádek: 'occ db:convert-type'",
+ "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "Je použita databáze SQLite. Pro větší instalace doporučujeme přejít na robustnější databázi.",
+ "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Obzvláště při používání klientské aplikace pro synchronizaci s desktopem není SQLite doporučeno.",
+ "To migrate to another database use the command line tool: 'occ db:convert-type'" : "Pro migraci na jinou databázi lze použít aplikaci pro příkazový řádek: 'occ db:convert-type'",
"Microsoft Windows Platform" : "Platforma Microsoft Windows",
"Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Server běží v prostředí Microsoft Windows. Pro optimální uživatelské pohodlí doporučujeme přejít na Linux.",
"Module 'fileinfo' missing" : "Schází modul 'fileinfo'",
diff --git a/settings/l10n/da.js b/settings/l10n/da.js
index 5fed8e856a8..6baaa06c313 100644
--- a/settings/l10n/da.js
+++ b/settings/l10n/da.js
@@ -87,6 +87,7 @@ OC.L10N.register(
"never" : "aldrig",
"deleted {userName}" : "slettede {userName}",
"add group" : "Tilføj gruppe",
+ "Changing the password will result in data loss, because data recovery is not available for this user" : "Ændring af kodeordet vil føre til datatab, fordi datagendannelse ikke er tilgængelig for denne bruger",
"A valid username must be provided" : "Et gyldigt brugernavn skal angives",
"Error creating user" : "Fejl ved oprettelse af bruger",
"A valid password must be provided" : "En gyldig adgangskode skal angives",
@@ -114,13 +115,14 @@ OC.L10N.register(
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP opsætning blokere \"inline doc blocks\". dette gør at flere grundlæggende apps utilgængelige",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Dette er sansynligvis forårsaget af et accelerator eller cache som Zend OPcache eller eAccelerator",
"Database Performance Info" : "Database Performance Oplysninger",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "SQLite er benyttet som database. Ved store installationer anbefaler vi at ændre dette. For at migrere til en anden database benyt 'occ db:convert-type' værktøjet i et kommandovindue.",
- "Module 'fileinfo' missing" : "Module 'fileinfo' mangler",
+ "Microsoft Windows Platform" : "Microsoft Windows-platform",
+ "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Din server kører på Microsoft Windows. Vi anbefaler stærkt at anvende Linux for en optimal brugeroplevelse.",
+ "Module 'fileinfo' missing" : "Modulet 'fileinfo' mangler",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP modulet 'fileinfo' mangler. Vi anbefaler stærkt at aktivere dette modul til at få de bedste resultater med mime-type detektion.",
"PHP charset is not set to UTF-8" : "PHP-tegnsættet er ikke angivet til UTF-8",
"PHP charset is not set to UTF-8. This can cause major issues with non-ASCII characters in file names. We highly recommend to change the value of 'default_charset' php.ini to 'UTF-8'." : "PHP-tegnsættet er ikke angivet til UTF-8. Denne kan føre til store problemer med tegn som ikke er af typen ASCII i filnavne. Vi anbefaler kraftigt at ændre værdien for 'default_charset' i php.ini til 'UTF-8'.",
- "Locale not working" : "Landestandard fungerer ikke",
- "System locale can not be set to a one which supports UTF-8." : "Systemets locale kan ikke sættes til et der bruger UTF-8.",
+ "Locale not working" : "Lokalitet fungerer ikke",
+ "System locale can not be set to a one which supports UTF-8." : "Systemets lokalitet kan ikke sættes til et der bruger UTF-8.",
"This means that there might be problems with certain characters in file names." : "Det betyder at der kan være problemer med visse tegn i filnavne.",
"We strongly suggest 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.",
@@ -131,12 +133,12 @@ OC.L10N.register(
"Last cron was executed at %s." : "Seneste 'cron' blev kørt %s.",
"Last cron was executed at %s. This is more than an hour ago, something seems wrong." : "Seneste 'cron' blev kørt %s. Dette er over en time siden - noget må være galt.",
"Cron was not executed yet!" : "Cron har ikke kørt endnu!",
- "Execute one task with each page loaded" : "Udføre en opgave med hver side indlæst",
+ "Execute one task with each page loaded" : "Udføre en opgave med hver side indlæsning",
"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php er registreret til at en webcron service skal kalde cron.php hvert 15 minut over http.",
"Use system's cron service to call the cron.php file every 15 minutes." : "Brug systemets cron service til at kalde cron.php hver 15. minut",
"Allow apps to use the Share API" : "Tillad apps til at bruge Share API",
"Allow users to share via link" : "Tillad brugere at dele via link",
- "Enforce password protection" : "tving kodeords beskyttelse",
+ "Enforce password protection" : "Tving kodeords beskyttelse",
"Allow public uploads" : "Tillad offentlig upload",
"Allow users to send mail notification for shared files" : "Tillad brugere at sende mail underretninger for delte filer",
"Set default expiration date" : "Vælg standard udløbsdato",
@@ -144,10 +146,10 @@ OC.L10N.register(
"days" : "dage",
"Enforce expiration date" : "Påtving udløbsdato",
"Allow resharing" : "Tillad videredeling",
- "Restrict users to only share with users in their groups" : "Begræns brugere til deling med brugere i deres gruppe",
+ "Restrict users to only share with users in their groups" : "Begræns brugere til kun at dele med brugere i deres egen gruppe",
"Allow users to send mail notification for shared files to other users" : "Tillader brugere at sende mailnotifikationer for delte filer til andre brugere",
"Exclude groups from sharing" : "Ekskluder grupper fra at dele",
- "These groups will still be able to receive shares, but not to initiate them." : "Disse grupper vil stadig kunne modtage delefiler, dog ikke skabe dem.",
+ "These groups will still be able to receive shares, but not to initiate them." : "Disse grupper vil stadig kunne modtage delefiler, men ikke skabe dem.",
"Enforce HTTPS" : "Gennemtving HTTPS",
"Forces the clients to connect to %s via an encrypted connection." : "Tving klienten til at forbinde til %s via en kryptetet forbindelse.",
"Enforce HTTPS for subdomains" : "Gennemtving HTTPS for subdomæner",
@@ -207,14 +209,16 @@ OC.L10N.register(
"New password" : "Nyt kodeord",
"Change password" : "Skift kodeord",
"Full Name" : "Fulde navn",
+ "No display name set" : "Der er ikke angivet skærmnavn",
"Email" : "E-mail",
"Your email address" : "Din e-mailadresse",
"Fill in an email address to enable password recovery and receive notifications" : "Angiv en e-mailadresse for at aktivere gendannelse af adgangskode og modtage notifikationer",
+ "No email address set" : "Der er ikke angivet e-mailadresse",
"Profile picture" : "Profilbillede",
"Upload new" : "Upload nyt",
"Select new from Files" : "Vælg nyt fra Filer",
"Remove image" : "Fjern billede",
- "Either png or jpg. Ideally square but you will be able to crop it." : "Enten png eller jpg. Ideelt firkantet men du har mulighed for at beskære det. ",
+ "Either png or jpg. Ideally square but you will be able to crop it." : "Enten png eller jpg. Ideelt kvadratisk men du har mulighed for at beskære det. ",
"Your avatar is provided by your original account." : "Din avatar kommer fra din oprindelige konto.",
"Cancel" : "Annuller",
"Choose as profile image" : "Vælg som profilbillede",
diff --git a/settings/l10n/da.json b/settings/l10n/da.json
index 62273005111..9e263400784 100644
--- a/settings/l10n/da.json
+++ b/settings/l10n/da.json
@@ -85,6 +85,7 @@
"never" : "aldrig",
"deleted {userName}" : "slettede {userName}",
"add group" : "Tilføj gruppe",
+ "Changing the password will result in data loss, because data recovery is not available for this user" : "Ændring af kodeordet vil føre til datatab, fordi datagendannelse ikke er tilgængelig for denne bruger",
"A valid username must be provided" : "Et gyldigt brugernavn skal angives",
"Error creating user" : "Fejl ved oprettelse af bruger",
"A valid password must be provided" : "En gyldig adgangskode skal angives",
@@ -112,13 +113,14 @@
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP opsætning blokere \"inline doc blocks\". dette gør at flere grundlæggende apps utilgængelige",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Dette er sansynligvis forårsaget af et accelerator eller cache som Zend OPcache eller eAccelerator",
"Database Performance Info" : "Database Performance Oplysninger",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "SQLite er benyttet som database. Ved store installationer anbefaler vi at ændre dette. For at migrere til en anden database benyt 'occ db:convert-type' værktøjet i et kommandovindue.",
- "Module 'fileinfo' missing" : "Module 'fileinfo' mangler",
+ "Microsoft Windows Platform" : "Microsoft Windows-platform",
+ "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Din server kører på Microsoft Windows. Vi anbefaler stærkt at anvende Linux for en optimal brugeroplevelse.",
+ "Module 'fileinfo' missing" : "Modulet 'fileinfo' mangler",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP modulet 'fileinfo' mangler. Vi anbefaler stærkt at aktivere dette modul til at få de bedste resultater med mime-type detektion.",
"PHP charset is not set to UTF-8" : "PHP-tegnsættet er ikke angivet til UTF-8",
"PHP charset is not set to UTF-8. This can cause major issues with non-ASCII characters in file names. We highly recommend to change the value of 'default_charset' php.ini to 'UTF-8'." : "PHP-tegnsættet er ikke angivet til UTF-8. Denne kan føre til store problemer med tegn som ikke er af typen ASCII i filnavne. Vi anbefaler kraftigt at ændre værdien for 'default_charset' i php.ini til 'UTF-8'.",
- "Locale not working" : "Landestandard fungerer ikke",
- "System locale can not be set to a one which supports UTF-8." : "Systemets locale kan ikke sættes til et der bruger UTF-8.",
+ "Locale not working" : "Lokalitet fungerer ikke",
+ "System locale can not be set to a one which supports UTF-8." : "Systemets lokalitet kan ikke sættes til et der bruger UTF-8.",
"This means that there might be problems with certain characters in file names." : "Det betyder at der kan være problemer med visse tegn i filnavne.",
"We strongly suggest 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.",
@@ -129,12 +131,12 @@
"Last cron was executed at %s." : "Seneste 'cron' blev kørt %s.",
"Last cron was executed at %s. This is more than an hour ago, something seems wrong." : "Seneste 'cron' blev kørt %s. Dette er over en time siden - noget må være galt.",
"Cron was not executed yet!" : "Cron har ikke kørt endnu!",
- "Execute one task with each page loaded" : "Udføre en opgave med hver side indlæst",
+ "Execute one task with each page loaded" : "Udføre en opgave med hver side indlæsning",
"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php er registreret til at en webcron service skal kalde cron.php hvert 15 minut over http.",
"Use system's cron service to call the cron.php file every 15 minutes." : "Brug systemets cron service til at kalde cron.php hver 15. minut",
"Allow apps to use the Share API" : "Tillad apps til at bruge Share API",
"Allow users to share via link" : "Tillad brugere at dele via link",
- "Enforce password protection" : "tving kodeords beskyttelse",
+ "Enforce password protection" : "Tving kodeords beskyttelse",
"Allow public uploads" : "Tillad offentlig upload",
"Allow users to send mail notification for shared files" : "Tillad brugere at sende mail underretninger for delte filer",
"Set default expiration date" : "Vælg standard udløbsdato",
@@ -142,10 +144,10 @@
"days" : "dage",
"Enforce expiration date" : "Påtving udløbsdato",
"Allow resharing" : "Tillad videredeling",
- "Restrict users to only share with users in their groups" : "Begræns brugere til deling med brugere i deres gruppe",
+ "Restrict users to only share with users in their groups" : "Begræns brugere til kun at dele med brugere i deres egen gruppe",
"Allow users to send mail notification for shared files to other users" : "Tillader brugere at sende mailnotifikationer for delte filer til andre brugere",
"Exclude groups from sharing" : "Ekskluder grupper fra at dele",
- "These groups will still be able to receive shares, but not to initiate them." : "Disse grupper vil stadig kunne modtage delefiler, dog ikke skabe dem.",
+ "These groups will still be able to receive shares, but not to initiate them." : "Disse grupper vil stadig kunne modtage delefiler, men ikke skabe dem.",
"Enforce HTTPS" : "Gennemtving HTTPS",
"Forces the clients to connect to %s via an encrypted connection." : "Tving klienten til at forbinde til %s via en kryptetet forbindelse.",
"Enforce HTTPS for subdomains" : "Gennemtving HTTPS for subdomæner",
@@ -205,14 +207,16 @@
"New password" : "Nyt kodeord",
"Change password" : "Skift kodeord",
"Full Name" : "Fulde navn",
+ "No display name set" : "Der er ikke angivet skærmnavn",
"Email" : "E-mail",
"Your email address" : "Din e-mailadresse",
"Fill in an email address to enable password recovery and receive notifications" : "Angiv en e-mailadresse for at aktivere gendannelse af adgangskode og modtage notifikationer",
+ "No email address set" : "Der er ikke angivet e-mailadresse",
"Profile picture" : "Profilbillede",
"Upload new" : "Upload nyt",
"Select new from Files" : "Vælg nyt fra Filer",
"Remove image" : "Fjern billede",
- "Either png or jpg. Ideally square but you will be able to crop it." : "Enten png eller jpg. Ideelt firkantet men du har mulighed for at beskære det. ",
+ "Either png or jpg. Ideally square but you will be able to crop it." : "Enten png eller jpg. Ideelt kvadratisk men du har mulighed for at beskære det. ",
"Your avatar is provided by your original account." : "Din avatar kommer fra din oprindelige konto.",
"Cancel" : "Annuller",
"Choose as profile image" : "Vælg som profilbillede",
diff --git a/settings/l10n/de.js b/settings/l10n/de.js
index 9076255b464..b9fa4d575e3 100644
--- a/settings/l10n/de.js
+++ b/settings/l10n/de.js
@@ -7,7 +7,7 @@ OC.L10N.register(
"Security" : "Sicherheit",
"Email Server" : "E-Mail-Server",
"Log" : "Log",
- "Authentication error" : "Fehler bei der Anmeldung",
+ "Authentication error" : "Authentifizierungsfehler",
"Your full name has been changed." : "Dein vollständiger Name ist geändert worden.",
"Unable to change full name" : "Der vollständige Name konnte nicht geändert werden",
"Files decrypted successfully" : "Dateien erfolgreich entschlüsselt",
@@ -74,7 +74,7 @@ OC.L10N.register(
"Strong password" : "Starkes Passwort",
"Valid until {date}" : "Gültig bis {date}",
"Delete" : "Löschen",
- "Decrypting files... Please wait, this can take some time." : "Entschlüssle Dateien ... Bitte warten, denn dieser Vorgang kann einige Zeit beanspruchen.",
+ "Decrypting files... Please wait, this can take some time." : "Entschlüssele Dateien... Bitte warten, dieser Vorgang kann einige Zeit beanspruchen.",
"Delete encryption keys permanently." : "Verschlüsselungsschlüssel dauerhaft löschen.",
"Restore encryption keys." : "Verschlüsselungsschlüssel wiederherstellen.",
"Groups" : "Gruppen",
@@ -87,6 +87,7 @@ OC.L10N.register(
"never" : "niemals",
"deleted {userName}" : "{userName} gelöscht",
"add group" : "Gruppe hinzufügen",
+ "Changing the password will result in data loss, because data recovery is not available for this user" : "Die Änderung des Passworts führt zum Datenverlust, da die Datenwiederherstellung für diesen Nutzer nicht verfügbar ist",
"A valid username must be provided" : "Es muss ein gültiger Benutzername angegeben werden",
"Error creating user" : "Beim Anlegen des Benutzers ist ein Fehler aufgetreten",
"A valid password must be provided" : "Es muss ein gültiges Passwort angegeben werden",
@@ -114,7 +115,9 @@ OC.L10N.register(
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP ist offenbar so konfiguriert, dass PHPDoc-Blöcke in der Anweisung entfernt werden. Dadurch sind mehrere Kern-Apps nicht erreichbar.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Dies wird wahrscheinlich durch Zwischenspeicher/Beschleuniger wie z.B. OPcache oder eAccelerator verursacht.",
"Database Performance Info" : "Info zur Datenbankperformance",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "SQLite wird als Datenbank verwendet. Für größere Installationen muss dies geändert werden. Zur Migration in eine andere Datenbank muss der Komandozeilenbefehl: 'occ db:convert-type' verwendet werden.",
+ "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite wird als Datenbank verwendet. Bei größeren Installationen wird empfohlen, auf ein anderes Datenbank-Backend zu wechseln.",
+ "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Insbesondere bei der Nutzung des Desktop Clients zur Dateisynchronisierung wird vom Einsatz von SQLite abgeraten.",
+ "To migrate to another database use the command line tool: 'occ db:convert-type'" : "Um zu einer anderen Datenbank zu migrieren, benutzen Sie bitte die Kommandozeile: „occ db:convert-type“",
"Microsoft Windows Platform" : "Microsoft Windows-Plattform",
"Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Dein Server wird mit Microsoft Windows betrieben. Für ein optimales Nutzungserlebnis empfehlen wir dringend Linux.",
"Module 'fileinfo' missing" : "Modul 'fileinfo' fehlt ",
@@ -199,8 +202,8 @@ OC.L10N.register(
"Desktop client" : "Desktop-Client",
"Android app" : "Android-App",
"iOS app" : "iOS-App",
- "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>!" : "Wenn Du das Projekt unterstützen möchtest\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\">nimm an der Entwicklung teil</a>\n\t\toder\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\">erreiche die Welt</a>!",
- "Show First Run Wizard again" : "Erstinstallation erneut durchführen",
+ "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>!" : "Wenn Du das Projekt unterstützen möchtest,\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\">beteilige Dich an der Entwicklung</a>\n\t\toder\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\">sorge dafür, dass es bekannter wird</a>!",
+ "Show First Run Wizard again" : "Den Einrichtungsassistenten erneut anzeigen",
"You have used <strong>%s</strong> of the available <strong>%s</strong>" : "Du verwendest <strong>%s</strong> der verfügbaren <strong>%s</strong>",
"Password" : "Passwort",
"Your password was changed" : "Dein Passwort wurde geändert.",
diff --git a/settings/l10n/de.json b/settings/l10n/de.json
index fae5062e5c9..4b9396cfb96 100644
--- a/settings/l10n/de.json
+++ b/settings/l10n/de.json
@@ -5,7 +5,7 @@
"Security" : "Sicherheit",
"Email Server" : "E-Mail-Server",
"Log" : "Log",
- "Authentication error" : "Fehler bei der Anmeldung",
+ "Authentication error" : "Authentifizierungsfehler",
"Your full name has been changed." : "Dein vollständiger Name ist geändert worden.",
"Unable to change full name" : "Der vollständige Name konnte nicht geändert werden",
"Files decrypted successfully" : "Dateien erfolgreich entschlüsselt",
@@ -72,7 +72,7 @@
"Strong password" : "Starkes Passwort",
"Valid until {date}" : "Gültig bis {date}",
"Delete" : "Löschen",
- "Decrypting files... Please wait, this can take some time." : "Entschlüssle Dateien ... Bitte warten, denn dieser Vorgang kann einige Zeit beanspruchen.",
+ "Decrypting files... Please wait, this can take some time." : "Entschlüssele Dateien... Bitte warten, dieser Vorgang kann einige Zeit beanspruchen.",
"Delete encryption keys permanently." : "Verschlüsselungsschlüssel dauerhaft löschen.",
"Restore encryption keys." : "Verschlüsselungsschlüssel wiederherstellen.",
"Groups" : "Gruppen",
@@ -85,6 +85,7 @@
"never" : "niemals",
"deleted {userName}" : "{userName} gelöscht",
"add group" : "Gruppe hinzufügen",
+ "Changing the password will result in data loss, because data recovery is not available for this user" : "Die Änderung des Passworts führt zum Datenverlust, da die Datenwiederherstellung für diesen Nutzer nicht verfügbar ist",
"A valid username must be provided" : "Es muss ein gültiger Benutzername angegeben werden",
"Error creating user" : "Beim Anlegen des Benutzers ist ein Fehler aufgetreten",
"A valid password must be provided" : "Es muss ein gültiges Passwort angegeben werden",
@@ -112,7 +113,9 @@
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP ist offenbar so konfiguriert, dass PHPDoc-Blöcke in der Anweisung entfernt werden. Dadurch sind mehrere Kern-Apps nicht erreichbar.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Dies wird wahrscheinlich durch Zwischenspeicher/Beschleuniger wie z.B. OPcache oder eAccelerator verursacht.",
"Database Performance Info" : "Info zur Datenbankperformance",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "SQLite wird als Datenbank verwendet. Für größere Installationen muss dies geändert werden. Zur Migration in eine andere Datenbank muss der Komandozeilenbefehl: 'occ db:convert-type' verwendet werden.",
+ "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite wird als Datenbank verwendet. Bei größeren Installationen wird empfohlen, auf ein anderes Datenbank-Backend zu wechseln.",
+ "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Insbesondere bei der Nutzung des Desktop Clients zur Dateisynchronisierung wird vom Einsatz von SQLite abgeraten.",
+ "To migrate to another database use the command line tool: 'occ db:convert-type'" : "Um zu einer anderen Datenbank zu migrieren, benutzen Sie bitte die Kommandozeile: „occ db:convert-type“",
"Microsoft Windows Platform" : "Microsoft Windows-Plattform",
"Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Dein Server wird mit Microsoft Windows betrieben. Für ein optimales Nutzungserlebnis empfehlen wir dringend Linux.",
"Module 'fileinfo' missing" : "Modul 'fileinfo' fehlt ",
@@ -197,8 +200,8 @@
"Desktop client" : "Desktop-Client",
"Android app" : "Android-App",
"iOS app" : "iOS-App",
- "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>!" : "Wenn Du das Projekt unterstützen möchtest\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\">nimm an der Entwicklung teil</a>\n\t\toder\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\">erreiche die Welt</a>!",
- "Show First Run Wizard again" : "Erstinstallation erneut durchführen",
+ "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>!" : "Wenn Du das Projekt unterstützen möchtest,\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\">beteilige Dich an der Entwicklung</a>\n\t\toder\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\">sorge dafür, dass es bekannter wird</a>!",
+ "Show First Run Wizard again" : "Den Einrichtungsassistenten erneut anzeigen",
"You have used <strong>%s</strong> of the available <strong>%s</strong>" : "Du verwendest <strong>%s</strong> der verfügbaren <strong>%s</strong>",
"Password" : "Passwort",
"Your password was changed" : "Dein Passwort wurde geändert.",
diff --git a/settings/l10n/de_DE.js b/settings/l10n/de_DE.js
index 1b3177f9375..9ed520da8fa 100644
--- a/settings/l10n/de_DE.js
+++ b/settings/l10n/de_DE.js
@@ -7,7 +7,7 @@ OC.L10N.register(
"Security" : "Sicherheit",
"Email Server" : "E-Mail-Server",
"Log" : "Log",
- "Authentication error" : "Authentifizierungs-Fehler",
+ "Authentication error" : "Authentifizierungsfehler",
"Your full name has been changed." : "Ihr vollständiger Name ist geändert worden.",
"Unable to change full name" : "Der vollständige Name konnte nicht geändert werden",
"Files decrypted successfully" : "Dateien erfolgreich entschlüsselt",
@@ -74,7 +74,7 @@ OC.L10N.register(
"Strong password" : "Starkes Passwort",
"Valid until {date}" : "Gültig bis {date}",
"Delete" : "Löschen",
- "Decrypting files... Please wait, this can take some time." : "Entschlüssle Dateien ... Bitte warten Sie, denn dieser Vorgang kann einige Zeit beanspruchen.",
+ "Decrypting files... Please wait, this can take some time." : "Entschlüssele Dateien... Bitte warten Sie, dieser Vorgang kann einige Zeit beanspruchen.",
"Delete encryption keys permanently." : "Verschlüsselungsschlüssel dauerhaft löschen.",
"Restore encryption keys." : "Verschlüsselungsschlüssel wiederherstellen.",
"Groups" : "Gruppen",
@@ -87,6 +87,7 @@ OC.L10N.register(
"never" : "niemals",
"deleted {userName}" : "{userName} gelöscht",
"add group" : "Gruppe hinzufügen",
+ "Changing the password will result in data loss, because data recovery is not available for this user" : "Die Änderung des Passworts führt zum Datenverlust, da die Datenwiederherstellung für diesen Nutzer nicht verfügbar ist",
"A valid username must be provided" : "Es muss ein gültiger Benutzername angegeben werden",
"Error creating user" : "Beim Erstellen des Benutzers ist ein Fehler aufgetreten",
"A valid password must be provided" : "Es muss ein gültiges Passwort angegeben werden",
@@ -114,7 +115,9 @@ OC.L10N.register(
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP ist offenbar so konfiguriert, dass PHPDoc-Blöcke in der Anweisung entfernt werden. Dadurch sind mehrere Kern-Apps nicht erreichbar.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Dies wird wahrscheinlich durch Zwischenspeicher/Beschleuniger wie z.B. OPcache oder eAccelerator verursacht.",
"Database Performance Info" : "Info zur Datenbankleistung",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "SQLite wird als Datenbank verwendet. Für größere Installationen muss das geändert werden. Zur Migration in eine andere Datenbank muss in der Befehlszeile »occ db:convert-type« verwendet werden.",
+ "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite wird als Datenbank verwendet. Bei größeren Installationen wird empfohlen, auf ein anderes Datenbank-Backend zu wechseln.",
+ "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Insbesondere bei der Nutzung des Desktop Clients zur Dateisynchronisierung wird vom Einsatz von SQLite abgeraten.",
+ "To migrate to another database use the command line tool: 'occ db:convert-type'" : "Um zu einer anderen Datenbank zu migrieren, benutzen Sie bitte die Kommandozeile: „occ db:convert-type“",
"Microsoft Windows Platform" : "Microsoft Windows-Plattform",
"Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Ihr Server wird mit Microsoft Windows betrieben. Für ein optimales Nutzungserlebnis empfehlen wir dringend Linux.",
"Module 'fileinfo' missing" : "Das Modul 'fileinfo' fehlt",
@@ -147,7 +150,7 @@ OC.L10N.register(
"Enforce expiration date" : "Ablaufdatum erzwingen",
"Allow resharing" : "Erlaube Weiterverteilen",
"Restrict users to only share with users in their groups" : "Nutzer nur auf das Teilen in ihren Gruppen beschränken",
- "Allow users to send mail notification for shared files to other users" : "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien an andere Benutzer zu senden",
+ "Allow users to send mail notification for shared files to other users" : "Benutzern erlauben, Mail-Benachrichtigungen für freigegebene Dateien an andere Benutzer zu senden",
"Exclude groups from sharing" : "Gruppen von Freigaben ausschließen",
"These groups will still be able to receive shares, but not to initiate them." : "Diese Gruppen können weiterhin Freigaben empfangen, aber selbst keine mehr initiieren.",
"Enforce HTTPS" : "HTTPS erzwingen",
@@ -187,7 +190,7 @@ OC.L10N.register(
"Update to %s" : "Aktualisierung auf %s",
"Enable only for specific groups" : "Nur für bestimmte Gruppen aktivieren",
"Uninstall App" : "App deinstallieren",
- "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>" : "Hallo,<br><br>wir möchten Sie nur wissen lassen, dass Sie jetzt ein %s - Konto besitzen.<br><br>Ihr Nutzername: %s<br>Öffnen Sie es: <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>" : "Hallo,<br><br>wir möchten Sie nur wissen lassen, dass Sie jetzt ein %s-Konto besitzen.<br><br>Ihr Benutzername: %s<br>Greifen Sie darauf zu: <a href=\"%s\">%s</a><br><br>",
"Cheers!" : "Noch einen schönen Tag!",
"Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Hallo,\n\nwir möchten Sie nur wissen lassen, dass Sie jetzt ein %s - Konto besitzen\n\nIhr Nutzername: %s\nÖffnen Sie es: %s\n",
"Administrator Documentation" : "Dokumentation für Administratoren",
@@ -199,7 +202,7 @@ OC.L10N.register(
"Desktop client" : "Desktop-Client",
"Android app" : "Android-App",
"iOS app" : "iOS-App",
- "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>!" : "Wenn Sie das Projekt unterstützen wollen,\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\">können Sie an der Entwicklung teilnehmen</a>\n\t\toder\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\">anderen von diesem Projekt berichten</a>!",
+ "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>!" : "Wenn Sie das Projekt unterstützen wollen,\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\">beteilige Sie sich an der Entwicklung</a>\n\t\toder\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\">sorgen Sie dafür, dass es bekannter wird</a>!",
"Show First Run Wizard again" : "Den Einrichtungsassistenten erneut anzeigen",
"You have used <strong>%s</strong> of the available <strong>%s</strong>" : "Sie verwenden <strong>%s</strong> der verfügbaren <strong>%s</strong>",
"Password" : "Passwort",
@@ -213,7 +216,7 @@ OC.L10N.register(
"Email" : "E-Mail",
"Your email address" : "Ihre E-Mail-Adresse",
"Fill in an email address to enable password recovery and receive notifications" : "Geben Sie eine E-Mail-Adresse an, um eine Wiederherstellung des Passworts zu ermöglichen und Benachrichtigungen zu empfangen",
- "No email address set" : "Keine E-Mail Adresse angegeben",
+ "No email address set" : "Keine E-Mail-Adresse angegeben",
"Profile picture" : "Profilbild",
"Upload new" : "Neues hochladen",
"Select new from Files" : "Neues aus Dateien wählen",
@@ -261,7 +264,7 @@ OC.L10N.register(
"Last Login" : "Letzte Anmeldung",
"change full name" : "Vollständigen Namen ändern",
"set new password" : "Neues Passwort setzen",
- "change email address" : "E-Mail Adresse ändern",
+ "change email address" : "E-Mail-Adresse ändern",
"Default" : "Standard"
},
"nplurals=2; plural=(n != 1);");
diff --git a/settings/l10n/de_DE.json b/settings/l10n/de_DE.json
index c1205620d9c..361a3aa9614 100644
--- a/settings/l10n/de_DE.json
+++ b/settings/l10n/de_DE.json
@@ -5,7 +5,7 @@
"Security" : "Sicherheit",
"Email Server" : "E-Mail-Server",
"Log" : "Log",
- "Authentication error" : "Authentifizierungs-Fehler",
+ "Authentication error" : "Authentifizierungsfehler",
"Your full name has been changed." : "Ihr vollständiger Name ist geändert worden.",
"Unable to change full name" : "Der vollständige Name konnte nicht geändert werden",
"Files decrypted successfully" : "Dateien erfolgreich entschlüsselt",
@@ -72,7 +72,7 @@
"Strong password" : "Starkes Passwort",
"Valid until {date}" : "Gültig bis {date}",
"Delete" : "Löschen",
- "Decrypting files... Please wait, this can take some time." : "Entschlüssle Dateien ... Bitte warten Sie, denn dieser Vorgang kann einige Zeit beanspruchen.",
+ "Decrypting files... Please wait, this can take some time." : "Entschlüssele Dateien... Bitte warten Sie, dieser Vorgang kann einige Zeit beanspruchen.",
"Delete encryption keys permanently." : "Verschlüsselungsschlüssel dauerhaft löschen.",
"Restore encryption keys." : "Verschlüsselungsschlüssel wiederherstellen.",
"Groups" : "Gruppen",
@@ -85,6 +85,7 @@
"never" : "niemals",
"deleted {userName}" : "{userName} gelöscht",
"add group" : "Gruppe hinzufügen",
+ "Changing the password will result in data loss, because data recovery is not available for this user" : "Die Änderung des Passworts führt zum Datenverlust, da die Datenwiederherstellung für diesen Nutzer nicht verfügbar ist",
"A valid username must be provided" : "Es muss ein gültiger Benutzername angegeben werden",
"Error creating user" : "Beim Erstellen des Benutzers ist ein Fehler aufgetreten",
"A valid password must be provided" : "Es muss ein gültiges Passwort angegeben werden",
@@ -112,7 +113,9 @@
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP ist offenbar so konfiguriert, dass PHPDoc-Blöcke in der Anweisung entfernt werden. Dadurch sind mehrere Kern-Apps nicht erreichbar.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Dies wird wahrscheinlich durch Zwischenspeicher/Beschleuniger wie z.B. OPcache oder eAccelerator verursacht.",
"Database Performance Info" : "Info zur Datenbankleistung",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "SQLite wird als Datenbank verwendet. Für größere Installationen muss das geändert werden. Zur Migration in eine andere Datenbank muss in der Befehlszeile »occ db:convert-type« verwendet werden.",
+ "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite wird als Datenbank verwendet. Bei größeren Installationen wird empfohlen, auf ein anderes Datenbank-Backend zu wechseln.",
+ "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Insbesondere bei der Nutzung des Desktop Clients zur Dateisynchronisierung wird vom Einsatz von SQLite abgeraten.",
+ "To migrate to another database use the command line tool: 'occ db:convert-type'" : "Um zu einer anderen Datenbank zu migrieren, benutzen Sie bitte die Kommandozeile: „occ db:convert-type“",
"Microsoft Windows Platform" : "Microsoft Windows-Plattform",
"Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Ihr Server wird mit Microsoft Windows betrieben. Für ein optimales Nutzungserlebnis empfehlen wir dringend Linux.",
"Module 'fileinfo' missing" : "Das Modul 'fileinfo' fehlt",
@@ -145,7 +148,7 @@
"Enforce expiration date" : "Ablaufdatum erzwingen",
"Allow resharing" : "Erlaube Weiterverteilen",
"Restrict users to only share with users in their groups" : "Nutzer nur auf das Teilen in ihren Gruppen beschränken",
- "Allow users to send mail notification for shared files to other users" : "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien an andere Benutzer zu senden",
+ "Allow users to send mail notification for shared files to other users" : "Benutzern erlauben, Mail-Benachrichtigungen für freigegebene Dateien an andere Benutzer zu senden",
"Exclude groups from sharing" : "Gruppen von Freigaben ausschließen",
"These groups will still be able to receive shares, but not to initiate them." : "Diese Gruppen können weiterhin Freigaben empfangen, aber selbst keine mehr initiieren.",
"Enforce HTTPS" : "HTTPS erzwingen",
@@ -185,7 +188,7 @@
"Update to %s" : "Aktualisierung auf %s",
"Enable only for specific groups" : "Nur für bestimmte Gruppen aktivieren",
"Uninstall App" : "App deinstallieren",
- "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>" : "Hallo,<br><br>wir möchten Sie nur wissen lassen, dass Sie jetzt ein %s - Konto besitzen.<br><br>Ihr Nutzername: %s<br>Öffnen Sie es: <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>" : "Hallo,<br><br>wir möchten Sie nur wissen lassen, dass Sie jetzt ein %s-Konto besitzen.<br><br>Ihr Benutzername: %s<br>Greifen Sie darauf zu: <a href=\"%s\">%s</a><br><br>",
"Cheers!" : "Noch einen schönen Tag!",
"Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Hallo,\n\nwir möchten Sie nur wissen lassen, dass Sie jetzt ein %s - Konto besitzen\n\nIhr Nutzername: %s\nÖffnen Sie es: %s\n",
"Administrator Documentation" : "Dokumentation für Administratoren",
@@ -197,7 +200,7 @@
"Desktop client" : "Desktop-Client",
"Android app" : "Android-App",
"iOS app" : "iOS-App",
- "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>!" : "Wenn Sie das Projekt unterstützen wollen,\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\">können Sie an der Entwicklung teilnehmen</a>\n\t\toder\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\">anderen von diesem Projekt berichten</a>!",
+ "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>!" : "Wenn Sie das Projekt unterstützen wollen,\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\">beteilige Sie sich an der Entwicklung</a>\n\t\toder\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\">sorgen Sie dafür, dass es bekannter wird</a>!",
"Show First Run Wizard again" : "Den Einrichtungsassistenten erneut anzeigen",
"You have used <strong>%s</strong> of the available <strong>%s</strong>" : "Sie verwenden <strong>%s</strong> der verfügbaren <strong>%s</strong>",
"Password" : "Passwort",
@@ -211,7 +214,7 @@
"Email" : "E-Mail",
"Your email address" : "Ihre E-Mail-Adresse",
"Fill in an email address to enable password recovery and receive notifications" : "Geben Sie eine E-Mail-Adresse an, um eine Wiederherstellung des Passworts zu ermöglichen und Benachrichtigungen zu empfangen",
- "No email address set" : "Keine E-Mail Adresse angegeben",
+ "No email address set" : "Keine E-Mail-Adresse angegeben",
"Profile picture" : "Profilbild",
"Upload new" : "Neues hochladen",
"Select new from Files" : "Neues aus Dateien wählen",
@@ -259,7 +262,7 @@
"Last Login" : "Letzte Anmeldung",
"change full name" : "Vollständigen Namen ändern",
"set new password" : "Neues Passwort setzen",
- "change email address" : "E-Mail Adresse ändern",
+ "change email address" : "E-Mail-Adresse ändern",
"Default" : "Standard"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
} \ No newline at end of file
diff --git a/settings/l10n/el.js b/settings/l10n/el.js
index 6b5c0595922..007f07ca55a 100644
--- a/settings/l10n/el.js
+++ b/settings/l10n/el.js
@@ -110,7 +110,6 @@ OC.L10N.register(
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "Ο PHP φαίνεται να είναι ρυθμισμένος ώστε να αφαιρεί μπλοκ εσωτερικών κειμένων (inline doc). Αυτό θα καταστήσει κύριες εφαρμογές μη-διαθέσιμες.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Αυτό πιθανόν προκλήθηκε από προσωρινή μνήμη (cache)/επιταχυντή όπως τη Zend OPcache ή τον eAccelerator.",
"Database Performance Info" : "Πληροφορίες Επίδοσης Βάσης Δεδομένων",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "Ως βάση δεδομένων χρησιμοποιείται η SQLite. Για μεγαλύτερες εγκαταστάσεις συνιστούμε να την αλλάξετε. Για να μετακινηθείτε σε μια άλλη βάση δεδομένων χρησιμοποιείστε το εργαλείο γραμμής εντολών: 'occ db:convert-type'",
"Module 'fileinfo' missing" : "Η ενοτητα 'fileinfo' λειπει",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Η PHP ενοτητα 'fileinfo' λειπει. Σας συνιστούμε να ενεργοποιήσετε αυτή την ενότητα για να έχετε καλύτερα αποτελέσματα με τον εντοπισμό τύπου MIME. ",
"PHP charset is not set to UTF-8" : "Το σύνολο χαρακτήρων PHP δεν έχει οριστεί στο UTF-8",
diff --git a/settings/l10n/el.json b/settings/l10n/el.json
index 3686c4860cc..ffe355e4dc5 100644
--- a/settings/l10n/el.json
+++ b/settings/l10n/el.json
@@ -108,7 +108,6 @@
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "Ο PHP φαίνεται να είναι ρυθμισμένος ώστε να αφαιρεί μπλοκ εσωτερικών κειμένων (inline doc). Αυτό θα καταστήσει κύριες εφαρμογές μη-διαθέσιμες.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Αυτό πιθανόν προκλήθηκε από προσωρινή μνήμη (cache)/επιταχυντή όπως τη Zend OPcache ή τον eAccelerator.",
"Database Performance Info" : "Πληροφορίες Επίδοσης Βάσης Δεδομένων",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "Ως βάση δεδομένων χρησιμοποιείται η SQLite. Για μεγαλύτερες εγκαταστάσεις συνιστούμε να την αλλάξετε. Για να μετακινηθείτε σε μια άλλη βάση δεδομένων χρησιμοποιείστε το εργαλείο γραμμής εντολών: 'occ db:convert-type'",
"Module 'fileinfo' missing" : "Η ενοτητα 'fileinfo' λειπει",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Η PHP ενοτητα 'fileinfo' λειπει. Σας συνιστούμε να ενεργοποιήσετε αυτή την ενότητα για να έχετε καλύτερα αποτελέσματα με τον εντοπισμό τύπου MIME. ",
"PHP charset is not set to UTF-8" : "Το σύνολο χαρακτήρων PHP δεν έχει οριστεί στο UTF-8",
diff --git a/settings/l10n/en_GB.js b/settings/l10n/en_GB.js
index 57af3b1a230..c0ea99cd135 100644
--- a/settings/l10n/en_GB.js
+++ b/settings/l10n/en_GB.js
@@ -87,6 +87,7 @@ OC.L10N.register(
"never" : "never",
"deleted {userName}" : "deleted {userName}",
"add group" : "add group",
+ "Changing the password will result in data loss, because data recovery is not available for this user" : "Changing the password will result in data loss, because data recovery is not available for this user",
"A valid username must be provided" : "A valid username must be provided",
"Error creating user" : "Error creating user",
"A valid password must be provided" : "A valid password must be provided",
@@ -114,7 +115,6 @@ OC.L10N.register(
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator.",
"Database Performance Info" : "Database Performance Info",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "SQLite is used as database. For larger installations we recommend changing this. To migrate to another database use the command line tool: 'occ db:convert-type'",
"Microsoft Windows Platform" : "Microsoft Windows Platform",
"Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience.",
"Module 'fileinfo' missing" : "Module 'fileinfo' missing",
diff --git a/settings/l10n/en_GB.json b/settings/l10n/en_GB.json
index 0264878ad0a..b8a150c09de 100644
--- a/settings/l10n/en_GB.json
+++ b/settings/l10n/en_GB.json
@@ -85,6 +85,7 @@
"never" : "never",
"deleted {userName}" : "deleted {userName}",
"add group" : "add group",
+ "Changing the password will result in data loss, because data recovery is not available for this user" : "Changing the password will result in data loss, because data recovery is not available for this user",
"A valid username must be provided" : "A valid username must be provided",
"Error creating user" : "Error creating user",
"A valid password must be provided" : "A valid password must be provided",
@@ -112,7 +113,6 @@
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator.",
"Database Performance Info" : "Database Performance Info",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "SQLite is used as database. For larger installations we recommend changing this. To migrate to another database use the command line tool: 'occ db:convert-type'",
"Microsoft Windows Platform" : "Microsoft Windows Platform",
"Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience.",
"Module 'fileinfo' missing" : "Module 'fileinfo' missing",
diff --git a/settings/l10n/es.js b/settings/l10n/es.js
index 6e114758a6c..555d8844059 100644
--- a/settings/l10n/es.js
+++ b/settings/l10n/es.js
@@ -87,6 +87,7 @@ OC.L10N.register(
"never" : "nunca",
"deleted {userName}" : "borrado {userName}",
"add group" : "añadir Grupo",
+ "Changing the password will result in data loss, because data recovery is not available for this user" : "Cambiar la contraseña provocará pérdida de datos porque la recuperación de datos no está disponible para este usuario",
"A valid username must be provided" : "Se debe proporcionar un nombre de usuario válido",
"Error creating user" : "Error al crear usuario",
"A valid password must be provided" : "Se debe proporcionar una contraseña válida",
@@ -114,7 +115,9 @@ OC.L10N.register(
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP está aparentemente configurado para eliminar bloques de documentos en línea. Esto hará que varias aplicaciones principales no estén accesibles.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Probablemente esto venga a causa de la caché o un acelerador, tales como Zend OPcache o eAccelerator.",
"Database Performance Info" : "Información de rendimiento de la base de datos",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "Se está usando SQLite como base de datos. Para instalaciones más grandes, recomendamos cambiar esto. Para migrar a otra base de datos, use la herramienta de línea de comandos: 'occ db:convert-type'",
+ "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "Se utiliza SQLite como base de datos. Para instalaciones mas grandes se recomiende cambiar a otro sistema de base de datos. ",
+ "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "El uso de SQLite esta desaconsejado especialmente cuando se usa el cliente de escritorio para que se sincronizan los ficheros.",
+ "To migrate to another database use the command line tool: 'occ db:convert-type'" : "Para migrar a otra base de datos use la herramienta de línea de comandos: 'occ db:convert-type'",
"Microsoft Windows Platform" : "Plataforma de Microsoft Windows",
"Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Su servidor está operando con Microsoft Windows. Le recomendamos Linux encarecidamente para disfrutar una experiencia óptima como usuario.",
"Module 'fileinfo' missing" : "No se ha encontrado el módulo \"fileinfo\"",
diff --git a/settings/l10n/es.json b/settings/l10n/es.json
index ef372d13532..22f15a8c7a7 100644
--- a/settings/l10n/es.json
+++ b/settings/l10n/es.json
@@ -85,6 +85,7 @@
"never" : "nunca",
"deleted {userName}" : "borrado {userName}",
"add group" : "añadir Grupo",
+ "Changing the password will result in data loss, because data recovery is not available for this user" : "Cambiar la contraseña provocará pérdida de datos porque la recuperación de datos no está disponible para este usuario",
"A valid username must be provided" : "Se debe proporcionar un nombre de usuario válido",
"Error creating user" : "Error al crear usuario",
"A valid password must be provided" : "Se debe proporcionar una contraseña válida",
@@ -112,7 +113,9 @@
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP está aparentemente configurado para eliminar bloques de documentos en línea. Esto hará que varias aplicaciones principales no estén accesibles.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Probablemente esto venga a causa de la caché o un acelerador, tales como Zend OPcache o eAccelerator.",
"Database Performance Info" : "Información de rendimiento de la base de datos",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "Se está usando SQLite como base de datos. Para instalaciones más grandes, recomendamos cambiar esto. Para migrar a otra base de datos, use la herramienta de línea de comandos: 'occ db:convert-type'",
+ "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "Se utiliza SQLite como base de datos. Para instalaciones mas grandes se recomiende cambiar a otro sistema de base de datos. ",
+ "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "El uso de SQLite esta desaconsejado especialmente cuando se usa el cliente de escritorio para que se sincronizan los ficheros.",
+ "To migrate to another database use the command line tool: 'occ db:convert-type'" : "Para migrar a otra base de datos use la herramienta de línea de comandos: 'occ db:convert-type'",
"Microsoft Windows Platform" : "Plataforma de Microsoft Windows",
"Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Su servidor está operando con Microsoft Windows. Le recomendamos Linux encarecidamente para disfrutar una experiencia óptima como usuario.",
"Module 'fileinfo' missing" : "No se ha encontrado el módulo \"fileinfo\"",
diff --git a/settings/l10n/et_EE.js b/settings/l10n/et_EE.js
index b0c08b7183b..26f18ce00fa 100644
--- a/settings/l10n/et_EE.js
+++ b/settings/l10n/et_EE.js
@@ -100,7 +100,6 @@ OC.L10N.register(
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP on seadistatud eemaldama \"inline\" dokumendi blokke. See muudab mõned rakendid kasutamatuteks.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "See on tõenäoliselt põhjustatud puhver/kiirendist nagu Zend OPcache või eAccelerator.",
"Database Performance Info" : "Andmebaasi toimimise info",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "Andmebaasina kasutatakse SQLite-t. Suuremate paigalduste puhul me soovitame seda muuta. Migreerimaks teisele andmebaasile kasuta seda käsurea vahendit: 'occ db:convert-type'",
"Module 'fileinfo' missing" : "Moodul 'fileinfo' puudub",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP moodul 'fileinfo' puudub. Soovitame tungivalt see lisada saavutamaks parimaid tulemusi failitüüpide tuvastamisel.",
"PHP charset is not set to UTF-8" : "PHP märgistik pole UTF-8",
diff --git a/settings/l10n/et_EE.json b/settings/l10n/et_EE.json
index fea9f79bf2b..7618ee8cda2 100644
--- a/settings/l10n/et_EE.json
+++ b/settings/l10n/et_EE.json
@@ -98,7 +98,6 @@
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP on seadistatud eemaldama \"inline\" dokumendi blokke. See muudab mõned rakendid kasutamatuteks.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "See on tõenäoliselt põhjustatud puhver/kiirendist nagu Zend OPcache või eAccelerator.",
"Database Performance Info" : "Andmebaasi toimimise info",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "Andmebaasina kasutatakse SQLite-t. Suuremate paigalduste puhul me soovitame seda muuta. Migreerimaks teisele andmebaasile kasuta seda käsurea vahendit: 'occ db:convert-type'",
"Module 'fileinfo' missing" : "Moodul 'fileinfo' puudub",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP moodul 'fileinfo' puudub. Soovitame tungivalt see lisada saavutamaks parimaid tulemusi failitüüpide tuvastamisel.",
"PHP charset is not set to UTF-8" : "PHP märgistik pole UTF-8",
diff --git a/settings/l10n/eu.js b/settings/l10n/eu.js
index 081832129b3..2967d41b48b 100644
--- a/settings/l10n/eu.js
+++ b/settings/l10n/eu.js
@@ -1,6 +1,7 @@
OC.L10N.register(
"settings",
{
+ "Security & Setup Warnings" : "Segurtasun eta Konfigurazio Abisuak",
"Cron" : "Cron",
"Sharing" : "Partekatzea",
"Security" : "Segurtasuna",
@@ -30,13 +31,25 @@ OC.L10N.register(
"Back-end doesn't support password change, but the users encryption key was successfully updated." : "Atzeko prozesuak ez du pasahitz aldaketa onartzen, baina erabiltzailearen enkriptatze gakoa ongi eguneratu da.",
"Unable to change password" : "Ezin izan da pasahitza aldatu",
"Enabled" : "Gaitua",
+ "Not enabled" : "Gaitu gabe",
"Recommended" : "Aholkatuta",
+ "Group already exists." : "Taldea dagoeneko existitzen da",
+ "Unable to add group." : "Ezin izan da taldea gehitu.",
+ "Unable to delete group." : "Ezin izan da taldea ezabatu.",
+ "log-level out of allowed range" : "erregistro-maila baimendutako tartetik at",
"Saved" : "Gordeta",
"test email settings" : "probatu eposta ezarpenak",
"If you received this email, the settings seem to be correct." : "Eposta hau jaso baduzu, zure ezarpenak egokiak direnaren seinale",
"A problem occurred while sending the email. Please revise your settings." : "Arazo bat gertatu da eposta bidaltzean. Berrikusi zure ezarpenak.",
"Email sent" : "Eposta bidalia",
"You need to set your user email before being able to send test emails." : "Epostaren erabiltzailea zehaztu behar duzu probako eposta bidali aurretik.",
+ "Invalid mail address" : "Posta helbide baliogabea",
+ "Unable to create user." : "Ezin izan da erabiltzailea sortu.",
+ "Your %s account was created" : "Zure %s kontua sortu da",
+ "Unable to delete user." : "Ezin izan da erabiltzailea ezabatu.",
+ "Forbidden" : "Debekatuta",
+ "Invalid user" : "Baliogabeko erabiiltzailea",
+ "Unable to change mail address" : "Ezin izan da posta helbidea aldatu",
"Email saved" : "Eposta gorde da",
"Are you really sure you want add \"{domain}\" as trusted domain?" : "Ziur zaude gehitu nahi duzula \"{domain}\" domeinu fidagarri gisa?",
"Add trusted domain" : "Gehitu domeinu fidagarria",
@@ -74,9 +87,11 @@ OC.L10N.register(
"never" : "inoiz",
"deleted {userName}" : "{userName} ezabatuta",
"add group" : "gehitu taldea",
+ "Changing the password will result in data loss, because data recovery is not available for this user" : "Pasahitza aldatzeak datuen galera eragingo du, erabiltzaile honetarako datuen berreskuratzea eskuragarri ez dagoelako",
"A valid username must be provided" : "Baliozko erabiltzaile izena eman behar da",
"Error creating user" : "Errore bat egon da erabiltzailea sortzean",
"A valid password must be provided" : "Baliozko pasahitza eman behar da",
+ "A valid email must be provided" : "Baliozko posta elektronikoa eman behar da",
"__language_name__" : "Euskara",
"Personal Info" : "Informazio Pertsonala",
"SSL root certificates" : "SSL erro ziurtagiriak",
@@ -94,11 +109,14 @@ OC.L10N.register(
"TLS" : "TLS",
"Security Warning" : "Segurtasun abisua",
"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "%s HTTP bidez erabiltzen ari zara. Aholkatzen dizugu zure zerbitzaria HTTPS erabil dezan.",
+ "Read-Only config enabled" : "Bakarrik Irakurtzeko konfigurazioa gaituta",
+ "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." : "Bakarrik irakurtzeko konfigurazioa gaitu da. Honek web-interfazearen bidez konfigurazio batzuk aldatzea ekiditzen du. Are gehiago, fitxategia eskuz ezarri behar da idazteko moduan eguneraketa bakoitzerako.",
"Setup Warning" : "Konfiguratu abisuak",
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "Badirudi PHP konfiguratuta dagoela lineako dokumentu blokeak aldatzeko. Honek zenbait oinarrizko aplikazio eskuraezin bihurtuko ditu.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Hau ziur aski cache/accelerator batek eragin du, hala nola Zend OPcache edo eAccelerator.",
"Database Performance Info" : "Database Performance informazioa",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "SQLite erabili da datu-base gisa. Instalazio handiagoetarako gomendatzen dugu aldatzea. Beste datu base batera migratzeko erabili komando-lerro tresna hau: 'occ db:convert-type'",
+ "Microsoft Windows Platform" : "Microsoft Windows Plataforma",
+ "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Zure zerbitzariak Microsoft Windows erabiltzen du. Guk biziki gomendatzen dugu Linux erabiltzaile esperientza optimo bat lortzeko.",
"Module 'fileinfo' missing" : "'fileinfo' modulua falta da",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP 'fileinfo' modulua falta da. Modulu hau gaitzea aholkatzen dizugu mime-type ezberdinak hobe detektatzeko.",
"PHP charset is not set to UTF-8" : "PHP charset ez da UTF-8 gisa ezartzen",
@@ -106,7 +124,10 @@ OC.L10N.register(
"Locale not working" : "Lokala ez dabil",
"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.",
+ "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Biziki gomendatzen dizugu beharrezkoak diren paketea zure sisteman instalatzea honi euskarria eman ahal izateko: %s.",
"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 \"overwrite.cli.url\" 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 \"overwrite.cli.url\" opzioa zure config.php fitxategian zure instalazioaren webroot bidera (Proposatua: \"%s\")",
+ "Configuration Checks" : "Konfigurazio Egiaztapenak",
"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",
@@ -126,10 +147,13 @@ OC.L10N.register(
"Enforce expiration date" : "Muga data betearazi",
"Allow resharing" : "Baimendu birpartekatzea",
"Restrict users to only share with users in their groups" : "Mugatu partekatzeak taldeko erabiltzaileetara",
+ "Allow users to send mail notification for shared files to other users" : "Baimendu erabiltzaileak beste erabiltzaileei epostako jakinarazpenak bidaltzen partekatutako fitxategientzat",
"Exclude groups from sharing" : "Baztertu taldeak partekatzean",
"These groups will still be able to receive shares, but not to initiate them." : "Talde hauek oraindik jaso ahal izango dute partekatzeak, baina ezingo dute partekatu",
"Enforce HTTPS" : "Behartu HTTPS",
"Forces the clients to connect to %s via an encrypted connection." : "Bezeroak %s-ra konexio enkriptatu baten bidez konektatzera behartzen ditu.",
+ "Enforce HTTPS for subdomains" : "Behartu HTTPS azpidomeinuetarako",
+ "Forces the clients to connect to %s and subdomains via an encrypted connection." : "Bezeroak %s-ra eta azpidomeinuetara konexio enkriptatu baten bidez konektatzera behartzen ditu.",
"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." : "Mesedez konektatu zure %s-ra HTTPS bidez SSL zehaztapenak aldatzeko.",
"This is used for sending out notifications." : "Hau jakinarazpenak bidaltzeko erabiltzen da.",
"Send mode" : "Bidaltzeko modua",
@@ -146,26 +170,35 @@ OC.L10N.register(
"Test email settings" : "Probatu eposta ezarpenak",
"Send email" : "Bidali eposta",
"Log level" : "Erregistro maila",
+ "Download logfile" : "Deskargatu log fitxategia",
"More" : "Gehiago",
"Less" : "Gutxiago",
+ "The logfile is bigger than 100MB. Downloading it may take some time!" : "Log fitxategia 100MB baino haundiagoa da. Deskargatzeak denbora har lezake!",
"Version" : "Bertsioa",
"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 komunitateak</a> garatuta, <a href=\"https://github.com/owncloud\" target=\"_blank\">itubruru kodea</a><a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr> lizentziarekin banatzen da</a>.",
"More apps" : "App gehiago",
"Add your app" : "Gehitu zure aplikazioa",
"by" : " Egilea:",
+ "licensed" : "lizentziatua",
"Documentation:" : "Dokumentazioa:",
"User Documentation" : "Erabiltzaile dokumentazioa",
"Admin Documentation" : "Administrazio dokumentazioa",
+ "This app cannot be installed because the following dependencies are not fulfilled:" : "Aplikazioa ezin da instalatu hurrengo menpekotasunak betetzen ez direlako:",
"Update to %s" : "Eguneratu %sra",
"Enable only for specific groups" : "Baimendu bakarri talde espezifikoetarako",
"Uninstall App" : "Desinstalatu aplikazioa",
+ "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>" : "Kaixo,<br><br>orain %s kontu bat duzula esateko besterik ez.<br><br>Zure erabiltzailea: %s<br>Sar zaitez: <a href=\"%s\">%s</a><br><br>",
"Cheers!" : "Ongi izan!",
+ "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Kaixo,\n\norain %s kontu bat duzula esateko besterik ez.\n\nZure erabiltzailea: %s\nSar zaitez: %s\n\n",
"Administrator Documentation" : "Administratzaile dokumentazioa",
"Online Documentation" : "Online dokumentazioa",
"Forum" : "Foroa",
"Bugtracker" : "Bugtracker",
"Commercial Support" : "Babes komertziala",
"Get the apps to sync your files" : "Lortu aplikazioak zure fitxategiak sinkronizatzeko",
+ "Desktop client" : "Mahaigaineko bezeroa",
+ "Android app" : "Android aplikazioa",
+ "iOS app" : "iOS aplikazioa",
"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>!" : "Proiektua lagundu nahi baduzu\n⇥⇥<a href=\"https://owncloud.org/contribute\"\n⇥⇥⇥target=\"_blank\">join development</a>\n⇥⇥edo\n⇥⇥<a href=\"https://owncloud.org/promote\"\n⇥⇥⇥target=\"_blank\">zabaldu hitza</a>!",
"Show First Run Wizard again" : "Erakutsi berriz Lehenengo Aldiko Morroia",
"You have used <strong>%s</strong> of the available <strong>%s</strong>" : "Dagoeneko <strong>%s</strong> erabili duzu eskuragarri duzun <strong>%s</strong>etatik",
@@ -176,9 +209,11 @@ OC.L10N.register(
"New password" : "Pasahitz berria",
"Change password" : "Aldatu pasahitza",
"Full Name" : "Izena",
+ "No display name set" : "Ez da bistaratze izena ezarri",
"Email" : "E-posta",
"Your email address" : "Zure e-posta",
"Fill in an email address to enable password recovery and receive notifications" : "Bete ezazu eposta helbide bat pasahitza berreskuratzeko eta jakinarazpenak jasotzeko",
+ "No email address set" : "Ez da eposta helbidea ezarri",
"Profile picture" : "Profilaren irudia",
"Upload new" : "Igo berria",
"Select new from Files" : "Hautatu berria Fitxategietatik",
@@ -189,7 +224,10 @@ OC.L10N.register(
"Choose as profile image" : "Profil irudi bezala aukeratu",
"Language" : "Hizkuntza",
"Help translate" : "Lagundu itzultzen",
+ "Common Name" : "Izen arrunta",
+ "Valid until" : "Data hau arte baliogarria",
"Issued By" : "Honek bidalita",
+ "Valid until %s" : "%s arte baliogarria",
"Import Root Certificate" : "Inportatu erro ziurtagiria",
"The encryption app is no longer enabled, please decrypt all your files" : "Enkriptazio aplikazioa ez dago jada gaiturik, mesedez desenkriptatu zure fitxategi guztiak.",
"Log-in password" : "Saioa hasteko pasahitza",
@@ -199,10 +237,15 @@ OC.L10N.register(
"Delete Encryption Keys" : "Ezabatu enkriptatze gakoak",
"Show storage location" : "Erakutsi biltegiaren kokapena",
"Show last log in" : "Erakutsi azkeneko saio hasiera",
+ "Show user backend" : "Bistaratu erabiltzaile motorra",
+ "Send email to new user" : "Bidali eposta erabiltzaile berriari",
+ "Show email address" : "Bistaratu eposta helbidea",
"Username" : "Erabiltzaile izena",
+ "E-Mail" : "E-posta",
"Create" : "Sortu",
"Admin Recovery Password" : "Administratzailearen pasahitza berreskuratzea",
"Enter the recovery password in order to recover the users files during password change" : "Berreskuratze pasahitza idatzi pasahitz aldaketan erabiltzaileen fitxategiak berreskuratzeko",
+ "Search Users" : "Bilatu Erabiltzaileak",
"Add Group" : "Gehitu taldea",
"Group" : "Taldea",
"Everyone" : "Edonor",
@@ -211,11 +254,14 @@ OC.L10N.register(
"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Mesedez sartu biltegiratze kouta (adb: \"512 MB\" edo \"12 GB\")",
"Unlimited" : "Mugarik gabe",
"Other" : "Bestelakoa",
+ "Group Admin for" : "Talde administradorea honentzat",
"Quota" : "Kuota",
"Storage Location" : "Biltegiaren kokapena",
+ "User Backend" : "Erabiltzaile motorra",
"Last Login" : "Azken saio hasiera",
"change full name" : "aldatu izena",
"set new password" : "ezarri pasahitz berria",
+ "change email address" : "aldatu eposta helbidea",
"Default" : "Lehenetsia"
},
"nplurals=2; plural=(n != 1);");
diff --git a/settings/l10n/eu.json b/settings/l10n/eu.json
index 865c1b680b2..7b081773a41 100644
--- a/settings/l10n/eu.json
+++ b/settings/l10n/eu.json
@@ -1,4 +1,5 @@
{ "translations": {
+ "Security & Setup Warnings" : "Segurtasun eta Konfigurazio Abisuak",
"Cron" : "Cron",
"Sharing" : "Partekatzea",
"Security" : "Segurtasuna",
@@ -28,13 +29,25 @@
"Back-end doesn't support password change, but the users encryption key was successfully updated." : "Atzeko prozesuak ez du pasahitz aldaketa onartzen, baina erabiltzailearen enkriptatze gakoa ongi eguneratu da.",
"Unable to change password" : "Ezin izan da pasahitza aldatu",
"Enabled" : "Gaitua",
+ "Not enabled" : "Gaitu gabe",
"Recommended" : "Aholkatuta",
+ "Group already exists." : "Taldea dagoeneko existitzen da",
+ "Unable to add group." : "Ezin izan da taldea gehitu.",
+ "Unable to delete group." : "Ezin izan da taldea ezabatu.",
+ "log-level out of allowed range" : "erregistro-maila baimendutako tartetik at",
"Saved" : "Gordeta",
"test email settings" : "probatu eposta ezarpenak",
"If you received this email, the settings seem to be correct." : "Eposta hau jaso baduzu, zure ezarpenak egokiak direnaren seinale",
"A problem occurred while sending the email. Please revise your settings." : "Arazo bat gertatu da eposta bidaltzean. Berrikusi zure ezarpenak.",
"Email sent" : "Eposta bidalia",
"You need to set your user email before being able to send test emails." : "Epostaren erabiltzailea zehaztu behar duzu probako eposta bidali aurretik.",
+ "Invalid mail address" : "Posta helbide baliogabea",
+ "Unable to create user." : "Ezin izan da erabiltzailea sortu.",
+ "Your %s account was created" : "Zure %s kontua sortu da",
+ "Unable to delete user." : "Ezin izan da erabiltzailea ezabatu.",
+ "Forbidden" : "Debekatuta",
+ "Invalid user" : "Baliogabeko erabiiltzailea",
+ "Unable to change mail address" : "Ezin izan da posta helbidea aldatu",
"Email saved" : "Eposta gorde da",
"Are you really sure you want add \"{domain}\" as trusted domain?" : "Ziur zaude gehitu nahi duzula \"{domain}\" domeinu fidagarri gisa?",
"Add trusted domain" : "Gehitu domeinu fidagarria",
@@ -72,9 +85,11 @@
"never" : "inoiz",
"deleted {userName}" : "{userName} ezabatuta",
"add group" : "gehitu taldea",
+ "Changing the password will result in data loss, because data recovery is not available for this user" : "Pasahitza aldatzeak datuen galera eragingo du, erabiltzaile honetarako datuen berreskuratzea eskuragarri ez dagoelako",
"A valid username must be provided" : "Baliozko erabiltzaile izena eman behar da",
"Error creating user" : "Errore bat egon da erabiltzailea sortzean",
"A valid password must be provided" : "Baliozko pasahitza eman behar da",
+ "A valid email must be provided" : "Baliozko posta elektronikoa eman behar da",
"__language_name__" : "Euskara",
"Personal Info" : "Informazio Pertsonala",
"SSL root certificates" : "SSL erro ziurtagiriak",
@@ -92,11 +107,14 @@
"TLS" : "TLS",
"Security Warning" : "Segurtasun abisua",
"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "%s HTTP bidez erabiltzen ari zara. Aholkatzen dizugu zure zerbitzaria HTTPS erabil dezan.",
+ "Read-Only config enabled" : "Bakarrik Irakurtzeko konfigurazioa gaituta",
+ "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." : "Bakarrik irakurtzeko konfigurazioa gaitu da. Honek web-interfazearen bidez konfigurazio batzuk aldatzea ekiditzen du. Are gehiago, fitxategia eskuz ezarri behar da idazteko moduan eguneraketa bakoitzerako.",
"Setup Warning" : "Konfiguratu abisuak",
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "Badirudi PHP konfiguratuta dagoela lineako dokumentu blokeak aldatzeko. Honek zenbait oinarrizko aplikazio eskuraezin bihurtuko ditu.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Hau ziur aski cache/accelerator batek eragin du, hala nola Zend OPcache edo eAccelerator.",
"Database Performance Info" : "Database Performance informazioa",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "SQLite erabili da datu-base gisa. Instalazio handiagoetarako gomendatzen dugu aldatzea. Beste datu base batera migratzeko erabili komando-lerro tresna hau: 'occ db:convert-type'",
+ "Microsoft Windows Platform" : "Microsoft Windows Plataforma",
+ "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Zure zerbitzariak Microsoft Windows erabiltzen du. Guk biziki gomendatzen dugu Linux erabiltzaile esperientza optimo bat lortzeko.",
"Module 'fileinfo' missing" : "'fileinfo' modulua falta da",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP 'fileinfo' modulua falta da. Modulu hau gaitzea aholkatzen dizugu mime-type ezberdinak hobe detektatzeko.",
"PHP charset is not set to UTF-8" : "PHP charset ez da UTF-8 gisa ezartzen",
@@ -104,7 +122,10 @@
"Locale not working" : "Lokala ez dabil",
"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.",
+ "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Biziki gomendatzen dizugu beharrezkoak diren paketea zure sisteman instalatzea honi euskarria eman ahal izateko: %s.",
"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 \"overwrite.cli.url\" 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 \"overwrite.cli.url\" opzioa zure config.php fitxategian zure instalazioaren webroot bidera (Proposatua: \"%s\")",
+ "Configuration Checks" : "Konfigurazio Egiaztapenak",
"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",
@@ -124,10 +145,13 @@
"Enforce expiration date" : "Muga data betearazi",
"Allow resharing" : "Baimendu birpartekatzea",
"Restrict users to only share with users in their groups" : "Mugatu partekatzeak taldeko erabiltzaileetara",
+ "Allow users to send mail notification for shared files to other users" : "Baimendu erabiltzaileak beste erabiltzaileei epostako jakinarazpenak bidaltzen partekatutako fitxategientzat",
"Exclude groups from sharing" : "Baztertu taldeak partekatzean",
"These groups will still be able to receive shares, but not to initiate them." : "Talde hauek oraindik jaso ahal izango dute partekatzeak, baina ezingo dute partekatu",
"Enforce HTTPS" : "Behartu HTTPS",
"Forces the clients to connect to %s via an encrypted connection." : "Bezeroak %s-ra konexio enkriptatu baten bidez konektatzera behartzen ditu.",
+ "Enforce HTTPS for subdomains" : "Behartu HTTPS azpidomeinuetarako",
+ "Forces the clients to connect to %s and subdomains via an encrypted connection." : "Bezeroak %s-ra eta azpidomeinuetara konexio enkriptatu baten bidez konektatzera behartzen ditu.",
"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." : "Mesedez konektatu zure %s-ra HTTPS bidez SSL zehaztapenak aldatzeko.",
"This is used for sending out notifications." : "Hau jakinarazpenak bidaltzeko erabiltzen da.",
"Send mode" : "Bidaltzeko modua",
@@ -144,26 +168,35 @@
"Test email settings" : "Probatu eposta ezarpenak",
"Send email" : "Bidali eposta",
"Log level" : "Erregistro maila",
+ "Download logfile" : "Deskargatu log fitxategia",
"More" : "Gehiago",
"Less" : "Gutxiago",
+ "The logfile is bigger than 100MB. Downloading it may take some time!" : "Log fitxategia 100MB baino haundiagoa da. Deskargatzeak denbora har lezake!",
"Version" : "Bertsioa",
"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 komunitateak</a> garatuta, <a href=\"https://github.com/owncloud\" target=\"_blank\">itubruru kodea</a><a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr> lizentziarekin banatzen da</a>.",
"More apps" : "App gehiago",
"Add your app" : "Gehitu zure aplikazioa",
"by" : " Egilea:",
+ "licensed" : "lizentziatua",
"Documentation:" : "Dokumentazioa:",
"User Documentation" : "Erabiltzaile dokumentazioa",
"Admin Documentation" : "Administrazio dokumentazioa",
+ "This app cannot be installed because the following dependencies are not fulfilled:" : "Aplikazioa ezin da instalatu hurrengo menpekotasunak betetzen ez direlako:",
"Update to %s" : "Eguneratu %sra",
"Enable only for specific groups" : "Baimendu bakarri talde espezifikoetarako",
"Uninstall App" : "Desinstalatu aplikazioa",
+ "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>" : "Kaixo,<br><br>orain %s kontu bat duzula esateko besterik ez.<br><br>Zure erabiltzailea: %s<br>Sar zaitez: <a href=\"%s\">%s</a><br><br>",
"Cheers!" : "Ongi izan!",
+ "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Kaixo,\n\norain %s kontu bat duzula esateko besterik ez.\n\nZure erabiltzailea: %s\nSar zaitez: %s\n\n",
"Administrator Documentation" : "Administratzaile dokumentazioa",
"Online Documentation" : "Online dokumentazioa",
"Forum" : "Foroa",
"Bugtracker" : "Bugtracker",
"Commercial Support" : "Babes komertziala",
"Get the apps to sync your files" : "Lortu aplikazioak zure fitxategiak sinkronizatzeko",
+ "Desktop client" : "Mahaigaineko bezeroa",
+ "Android app" : "Android aplikazioa",
+ "iOS app" : "iOS aplikazioa",
"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>!" : "Proiektua lagundu nahi baduzu\n⇥⇥<a href=\"https://owncloud.org/contribute\"\n⇥⇥⇥target=\"_blank\">join development</a>\n⇥⇥edo\n⇥⇥<a href=\"https://owncloud.org/promote\"\n⇥⇥⇥target=\"_blank\">zabaldu hitza</a>!",
"Show First Run Wizard again" : "Erakutsi berriz Lehenengo Aldiko Morroia",
"You have used <strong>%s</strong> of the available <strong>%s</strong>" : "Dagoeneko <strong>%s</strong> erabili duzu eskuragarri duzun <strong>%s</strong>etatik",
@@ -174,9 +207,11 @@
"New password" : "Pasahitz berria",
"Change password" : "Aldatu pasahitza",
"Full Name" : "Izena",
+ "No display name set" : "Ez da bistaratze izena ezarri",
"Email" : "E-posta",
"Your email address" : "Zure e-posta",
"Fill in an email address to enable password recovery and receive notifications" : "Bete ezazu eposta helbide bat pasahitza berreskuratzeko eta jakinarazpenak jasotzeko",
+ "No email address set" : "Ez da eposta helbidea ezarri",
"Profile picture" : "Profilaren irudia",
"Upload new" : "Igo berria",
"Select new from Files" : "Hautatu berria Fitxategietatik",
@@ -187,7 +222,10 @@
"Choose as profile image" : "Profil irudi bezala aukeratu",
"Language" : "Hizkuntza",
"Help translate" : "Lagundu itzultzen",
+ "Common Name" : "Izen arrunta",
+ "Valid until" : "Data hau arte baliogarria",
"Issued By" : "Honek bidalita",
+ "Valid until %s" : "%s arte baliogarria",
"Import Root Certificate" : "Inportatu erro ziurtagiria",
"The encryption app is no longer enabled, please decrypt all your files" : "Enkriptazio aplikazioa ez dago jada gaiturik, mesedez desenkriptatu zure fitxategi guztiak.",
"Log-in password" : "Saioa hasteko pasahitza",
@@ -197,10 +235,15 @@
"Delete Encryption Keys" : "Ezabatu enkriptatze gakoak",
"Show storage location" : "Erakutsi biltegiaren kokapena",
"Show last log in" : "Erakutsi azkeneko saio hasiera",
+ "Show user backend" : "Bistaratu erabiltzaile motorra",
+ "Send email to new user" : "Bidali eposta erabiltzaile berriari",
+ "Show email address" : "Bistaratu eposta helbidea",
"Username" : "Erabiltzaile izena",
+ "E-Mail" : "E-posta",
"Create" : "Sortu",
"Admin Recovery Password" : "Administratzailearen pasahitza berreskuratzea",
"Enter the recovery password in order to recover the users files during password change" : "Berreskuratze pasahitza idatzi pasahitz aldaketan erabiltzaileen fitxategiak berreskuratzeko",
+ "Search Users" : "Bilatu Erabiltzaileak",
"Add Group" : "Gehitu taldea",
"Group" : "Taldea",
"Everyone" : "Edonor",
@@ -209,11 +252,14 @@
"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Mesedez sartu biltegiratze kouta (adb: \"512 MB\" edo \"12 GB\")",
"Unlimited" : "Mugarik gabe",
"Other" : "Bestelakoa",
+ "Group Admin for" : "Talde administradorea honentzat",
"Quota" : "Kuota",
"Storage Location" : "Biltegiaren kokapena",
+ "User Backend" : "Erabiltzaile motorra",
"Last Login" : "Azken saio hasiera",
"change full name" : "aldatu izena",
"set new password" : "ezarri pasahitz berria",
+ "change email address" : "aldatu eposta helbidea",
"Default" : "Lehenetsia"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
} \ No newline at end of file
diff --git a/settings/l10n/fi_FI.js b/settings/l10n/fi_FI.js
index a02a13c7998..95c37296ea3 100644
--- a/settings/l10n/fi_FI.js
+++ b/settings/l10n/fi_FI.js
@@ -87,6 +87,7 @@ OC.L10N.register(
"never" : "ei koskaan",
"deleted {userName}" : "poistettu {userName}",
"add group" : "lisää ryhmä",
+ "Changing the password will result in data loss, because data recovery is not available for this user" : "Salasanan muuttaminen johtaa tietojen häviämiseen, koska tietojen palautusta ei ole käytettävissä tämän käyttäjän kohdalla",
"A valid username must be provided" : "Anna kelvollinen käyttäjätunnus",
"Error creating user" : "Virhe käyttäjää luotaessa",
"A valid password must be provided" : "Anna kelvollinen salasana",
@@ -110,7 +111,9 @@ OC.L10N.register(
"Read-Only config enabled" : "Vain luku -määritykset otettu käyttöön",
"Setup Warning" : "Asetusvaroitus",
"Database Performance Info" : "Tietokannan suorituskyvyn tiedot",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "SQLitea käytetään tietokantana. Laajoja asennuksia varten tämä asetus kannattaa muuttaa. Käytä komentorivityökalua 'occ db:convert-type' siirtyäksesi toiseen tietokantaan.",
+ "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLitea käytetään tietokantana. Suuria asennuksia varten on suositeltavaa vaihtaa muuhun tietokantaan.",
+ "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Varsinkin työpöytäsovelluksen tiedostosynkronointia käyttäessä SQLiten käyttö ei ole suositeltavaa.",
+ "To migrate to another database use the command line tool: 'occ db:convert-type'" : "Suorita migraatio toiseen tietokantaan komentorivityökalulla: 'occ db:convert-type'",
"Microsoft Windows Platform" : "Microsoft Windows -alusta",
"Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Palvelimesi käyttöjärjestelmä on Microsoft Windows. Suosittelemme käyttämään parhaan mahdollisen käyttökokemuksen saavuttamiseksi Linuxia.",
"Module 'fileinfo' missing" : "Moduuli 'fileinfo' puuttuu",
diff --git a/settings/l10n/fi_FI.json b/settings/l10n/fi_FI.json
index eb945d8003b..53bf1eebb5d 100644
--- a/settings/l10n/fi_FI.json
+++ b/settings/l10n/fi_FI.json
@@ -85,6 +85,7 @@
"never" : "ei koskaan",
"deleted {userName}" : "poistettu {userName}",
"add group" : "lisää ryhmä",
+ "Changing the password will result in data loss, because data recovery is not available for this user" : "Salasanan muuttaminen johtaa tietojen häviämiseen, koska tietojen palautusta ei ole käytettävissä tämän käyttäjän kohdalla",
"A valid username must be provided" : "Anna kelvollinen käyttäjätunnus",
"Error creating user" : "Virhe käyttäjää luotaessa",
"A valid password must be provided" : "Anna kelvollinen salasana",
@@ -108,7 +109,9 @@
"Read-Only config enabled" : "Vain luku -määritykset otettu käyttöön",
"Setup Warning" : "Asetusvaroitus",
"Database Performance Info" : "Tietokannan suorituskyvyn tiedot",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "SQLitea käytetään tietokantana. Laajoja asennuksia varten tämä asetus kannattaa muuttaa. Käytä komentorivityökalua 'occ db:convert-type' siirtyäksesi toiseen tietokantaan.",
+ "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLitea käytetään tietokantana. Suuria asennuksia varten on suositeltavaa vaihtaa muuhun tietokantaan.",
+ "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Varsinkin työpöytäsovelluksen tiedostosynkronointia käyttäessä SQLiten käyttö ei ole suositeltavaa.",
+ "To migrate to another database use the command line tool: 'occ db:convert-type'" : "Suorita migraatio toiseen tietokantaan komentorivityökalulla: 'occ db:convert-type'",
"Microsoft Windows Platform" : "Microsoft Windows -alusta",
"Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Palvelimesi käyttöjärjestelmä on Microsoft Windows. Suosittelemme käyttämään parhaan mahdollisen käyttökokemuksen saavuttamiseksi Linuxia.",
"Module 'fileinfo' missing" : "Moduuli 'fileinfo' puuttuu",
diff --git a/settings/l10n/fr.js b/settings/l10n/fr.js
index 72f7126a2e4..9f56de0c834 100644
--- a/settings/l10n/fr.js
+++ b/settings/l10n/fr.js
@@ -87,6 +87,7 @@ OC.L10N.register(
"never" : "jamais",
"deleted {userName}" : "{userName} supprimé",
"add group" : "ajouter un groupe",
+ "Changing the password will result in data loss, because data recovery is not available for this user" : "La modification du mot de passe entrainera la perte des données car la restauration de données n'est pas disponible pour cet utilisateur",
"A valid username must be provided" : "Un nom d'utilisateur valide doit être saisi",
"Error creating user" : "Erreur lors de la création de l'utilisateur",
"A valid password must be provided" : "Un mot de passe valide doit être saisi",
@@ -114,7 +115,11 @@ OC.L10N.register(
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP est apparemment configuré pour supprimer les blocs de documentation internes. Cela rendra plusieurs applications de base inaccessibles.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "La raison est probablement l'utilisation d'un cache / accélérateur tel que Zend OPcache ou eAccelerator.",
"Database Performance Info" : "Performances de la base de données",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "SQLite est utilisée comme base de donnée. Pour des installations plus volumineuse, nous vous conseillons de changer ce réglage. Pour migrer vers une autre base de donnée, utilisez la commande : \"occ db:convert-type\"",
+ "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite est actuellement utilisé comme gestionnaire de base de données. Pour des installations plus volumineuses, nous vous conseillons d'utiliser un autre gestionnaire de base de données.",
+ "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "En particulier si vous utilisez le client de bureau pour synchroniser vos données : l'utilisation de SQLite est alors déconseillée.",
+ "To migrate to another database use the command line tool: 'occ db:convert-type'" : "Pour migrer vers un autre type de base de données, utilisez la ligne de commande : 'occ db:convert-type'",
+ "Microsoft Windows Platform" : "Plateforme Microsoft Windows",
+ "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Votre serveur fonctionne actuellement sur une plateforme Microsoft Windows. Nous vous recommandons fortement d'utiliser une plateforme Linux pour une expérience utilisateur optimale.",
"Module 'fileinfo' missing" : "Module 'fileinfo' manquant",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Le module PHP 'fileinfo' est manquant. Il est vivement recommandé de l'activer afin d'obtenir de meilleurs résultats pour la détection des types de fichiers.",
"PHP charset is not set to UTF-8" : "Le jeu de caractères PHP n'est pas réglé sur UTF-8",
@@ -181,7 +186,7 @@ OC.L10N.register(
"Documentation:" : "Documentation :",
"User Documentation" : "Documentation utilisateur",
"Admin Documentation" : "Documentation administrateur",
- "This app cannot be installed because the following dependencies are not fulfilled:" : "Cette application ne peut être installée à cause de ces dépendances non satisfaites:",
+ "This app cannot be installed because the following dependencies are not fulfilled:" : "Cette application ne peut être installée à cause de ces dépendances non satisfaites :",
"Update to %s" : "Mettre à niveau vers la version %s",
"Enable only for specific groups" : "Activer uniquement pour certains groupes",
"Uninstall App" : "Désinstaller l'application",
@@ -207,6 +212,7 @@ OC.L10N.register(
"New password" : "Nouveau mot de passe",
"Change password" : "Changer de mot de passe",
"Full Name" : "Nom complet",
+ "No display name set" : "Aucun nom d'affichage configuré",
"Email" : "Adresse mail",
"Your email address" : "Votre adresse e-mail",
"Fill in an email address to enable password recovery and receive notifications" : "Saisissez votre adresse mail pour permettre la réinitialisation du mot de passe et la réception des notifications",
diff --git a/settings/l10n/fr.json b/settings/l10n/fr.json
index 70317116bb6..d9d18fd0b19 100644
--- a/settings/l10n/fr.json
+++ b/settings/l10n/fr.json
@@ -85,6 +85,7 @@
"never" : "jamais",
"deleted {userName}" : "{userName} supprimé",
"add group" : "ajouter un groupe",
+ "Changing the password will result in data loss, because data recovery is not available for this user" : "La modification du mot de passe entrainera la perte des données car la restauration de données n'est pas disponible pour cet utilisateur",
"A valid username must be provided" : "Un nom d'utilisateur valide doit être saisi",
"Error creating user" : "Erreur lors de la création de l'utilisateur",
"A valid password must be provided" : "Un mot de passe valide doit être saisi",
@@ -112,7 +113,11 @@
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP est apparemment configuré pour supprimer les blocs de documentation internes. Cela rendra plusieurs applications de base inaccessibles.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "La raison est probablement l'utilisation d'un cache / accélérateur tel que Zend OPcache ou eAccelerator.",
"Database Performance Info" : "Performances de la base de données",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "SQLite est utilisée comme base de donnée. Pour des installations plus volumineuse, nous vous conseillons de changer ce réglage. Pour migrer vers une autre base de donnée, utilisez la commande : \"occ db:convert-type\"",
+ "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite est actuellement utilisé comme gestionnaire de base de données. Pour des installations plus volumineuses, nous vous conseillons d'utiliser un autre gestionnaire de base de données.",
+ "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "En particulier si vous utilisez le client de bureau pour synchroniser vos données : l'utilisation de SQLite est alors déconseillée.",
+ "To migrate to another database use the command line tool: 'occ db:convert-type'" : "Pour migrer vers un autre type de base de données, utilisez la ligne de commande : 'occ db:convert-type'",
+ "Microsoft Windows Platform" : "Plateforme Microsoft Windows",
+ "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Votre serveur fonctionne actuellement sur une plateforme Microsoft Windows. Nous vous recommandons fortement d'utiliser une plateforme Linux pour une expérience utilisateur optimale.",
"Module 'fileinfo' missing" : "Module 'fileinfo' manquant",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Le module PHP 'fileinfo' est manquant. Il est vivement recommandé de l'activer afin d'obtenir de meilleurs résultats pour la détection des types de fichiers.",
"PHP charset is not set to UTF-8" : "Le jeu de caractères PHP n'est pas réglé sur UTF-8",
@@ -179,7 +184,7 @@
"Documentation:" : "Documentation :",
"User Documentation" : "Documentation utilisateur",
"Admin Documentation" : "Documentation administrateur",
- "This app cannot be installed because the following dependencies are not fulfilled:" : "Cette application ne peut être installée à cause de ces dépendances non satisfaites:",
+ "This app cannot be installed because the following dependencies are not fulfilled:" : "Cette application ne peut être installée à cause de ces dépendances non satisfaites :",
"Update to %s" : "Mettre à niveau vers la version %s",
"Enable only for specific groups" : "Activer uniquement pour certains groupes",
"Uninstall App" : "Désinstaller l'application",
@@ -205,6 +210,7 @@
"New password" : "Nouveau mot de passe",
"Change password" : "Changer de mot de passe",
"Full Name" : "Nom complet",
+ "No display name set" : "Aucun nom d'affichage configuré",
"Email" : "Adresse mail",
"Your email address" : "Votre adresse e-mail",
"Fill in an email address to enable password recovery and receive notifications" : "Saisissez votre adresse mail pour permettre la réinitialisation du mot de passe et la réception des notifications",
diff --git a/settings/l10n/gl.js b/settings/l10n/gl.js
index 38b89b874b5..6b4f1857307 100644
--- a/settings/l10n/gl.js
+++ b/settings/l10n/gl.js
@@ -1,7 +1,7 @@
OC.L10N.register(
"settings",
{
- "Security & Setup Warnings" : "Seguridade & Avisos de configuración",
+ "Security & Setup Warnings" : "Avisos de seguridade e configuración",
"Cron" : "Cron",
"Sharing" : "Compartindo",
"Security" : "Seguranza",
@@ -31,7 +31,7 @@ OC.L10N.register(
"Back-end doesn't support password change, but the users encryption key was successfully updated." : "A infraestrutura non admite o cambio de contrasinal, mais a chave de cifrado dos usuarios foi actualizada correctamente.",
"Unable to change password" : "Non é posíbel cambiar o contrasinal",
"Enabled" : "Activado",
- "Not enabled" : "Non habilitado",
+ "Not enabled" : "Non activado",
"Recommended" : "Recomendado",
"Group already exists." : "Xa existe o grupo.",
"Unable to add group." : "Non é posíbel engadir o grupo.",
@@ -40,7 +40,7 @@ OC.L10N.register(
"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.",
- "A problem occurred while sending the email. Please revise your settings." : "Produciuse un erro mentras enviaba o correo. Por favor revise a súa configuración.",
+ "A problem occurred while sending the email. Please revise your settings." : "Produciuse un erro mentres enviaba o correo. Revise os axustes.",
"Email sent" : "Correo enviado",
"You need to set your user email before being able to send test emails." : "É necesario configurar o correo do usuario antes de poder enviar mensaxes de correo de proba.",
"Invalid mail address" : "Enderezo de correo incorrecto",
@@ -51,7 +51,7 @@ OC.L10N.register(
"Invalid user" : "Usuario incorrecto",
"Unable to change mail address" : "Non é posíbel cambiar o enderezo de correo.",
"Email saved" : "Correo gardado",
- "Are you really sure you want add \"{domain}\" as trusted domain?" : "Ten certeza de querer engadir \"{domain}\" como dominio de confianza?",
+ "Are you really sure you want add \"{domain}\" as trusted domain?" : "Confirma que quere engadir «{domain}» como dominio de confianza?",
"Add trusted domain" : "Engadir dominio de confianza",
"Sending..." : "Enviando...",
"All" : "Todo",
@@ -72,7 +72,7 @@ OC.L10N.register(
"So-so password" : "Contrasinal non moi aló",
"Good password" : "Bo contrasinal",
"Strong password" : "Contrasinal forte",
- "Valid until {date}" : "Válido ate {date}",
+ "Valid until {date}" : "Válido ata {date}",
"Delete" : "Eliminar",
"Decrypting files... Please wait, this can take some time." : "Descifrando ficheiros... isto pode levar un anaco.",
"Delete encryption keys permanently." : "Eliminar permanentemente as chaves de cifrado.",
@@ -87,6 +87,7 @@ OC.L10N.register(
"never" : "nunca",
"deleted {userName}" : "{userName} foi eliminado",
"add group" : "engadir un grupo",
+ "Changing the password will result in data loss, because data recovery is not available for this user" : "Cambiar o contrasinal provocará unha perda de datos, xa que a recuperación de datos non está dispoñíbel para este usuario",
"A valid username must be provided" : "Debe fornecer un nome de usuario",
"Error creating user" : "Produciuse un erro ao crear o usuario",
"A valid password must be provided" : "Debe fornecer un contrasinal",
@@ -114,9 +115,11 @@ OC.L10N.register(
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "Parece que PHP foi configuración para substituír bloques de documentos en liña. Isto fará que varias aplicacións sexan inaccesíbeis.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Isto probabelmente se debe unha caché/acelerador como Zend OPcache ou eAccelerator.",
"Database Performance Info" : "Información do rendemento da base de datos",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "Empregarase SQLite como base de datos. Para instalacións máis grandes recomendámoslle que cambie isto. Para migrar a outra base de datos use a ferramenta en liña de ordes: «occ db:convert-type»",
+ "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "Empregase SQLite como base de datos. Para instalacións grandes recomendámoslle que cambie a unha infraestrutura de base de datos diferente.",
+ "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Concretamente, se emprega o cliente de escritorio para sincronización, desaconsellámoslle o uso de SQLite",
+ "To migrate to another database use the command line tool: 'occ db:convert-type'" : "Para migrar cara outra base de datos, empregue a ferramenta en liña de ordes: «occ db:convert-type»",
"Microsoft Windows Platform" : "Plataforma Windows de Microsoft",
- "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "O seu servidor funciona baixo Windows de Microsoft. Recomendámoslle encarecidamente que utilice Linux para unha experiencia de usuario óptima.",
+ "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "O seu servidor funciona baixo Windows de Microsoft. Recomendámoslle encarecidamente que empregue Linux para obter unha perfecta experiencia de usuario.",
"Module 'fileinfo' missing" : "Non se atopou o módulo «fileinfo»",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Non se atopou o módulo de PHP «fileinfo». É recomendábel activar este módulo para obter os mellores resultados coa detección do tipo MIME.",
"PHP charset is not set to UTF-8" : "O xogo de caracteres de PHP non está estabelecido a UTF-8",
@@ -166,7 +169,7 @@ OC.L10N.register(
"Credentials" : "Credenciais",
"SMTP Username" : "Nome de usuario SMTP",
"SMTP Password" : "Contrasinal SMTP",
- "Store credentials" : "Gardar credenciais",
+ "Store credentials" : "Gardar as credenciais",
"Test email settings" : "Correo de proba dos axustes",
"Send email" : "Enviar o correo",
"Log level" : "Nivel de rexistro",
@@ -177,7 +180,7 @@ OC.L10N.register(
"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",
- "Add your app" : "Engada o seu aplicativo",
+ "Add your app" : "Engada a súa aplicación",
"by" : "por",
"licensed" : "licencidado",
"Documentation:" : "Documentación:",
@@ -225,7 +228,7 @@ OC.L10N.register(
"Language" : "Idioma",
"Help translate" : "Axude na tradución",
"Common Name" : "Nome común",
- "Valid until" : "Válido ate",
+ "Valid until" : "Válido ata",
"Issued By" : "Proporcionado por",
"Valid until %s" : "Válido ate %s",
"Import Root Certificate" : "Importar o certificado raíz",
@@ -235,8 +238,8 @@ OC.L10N.register(
"Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly." : "As chaves de cifrado foron movidas á copia de seguranza. Se ten algún problema pode restaurar as chaves. Elimineas permanentemente só se está seguro de que é posíbel descifrar correctamente todos os ficheiros.",
"Restore Encryption Keys" : "Restaurar as chaves de cifrado",
"Delete Encryption Keys" : "Eliminar as chaves de cifrado",
- "Show storage location" : "Mostrar localización de almacenamento",
- "Show last log in" : "Mostrar última conexión",
+ "Show storage location" : "Amosar a localización do almacenamento",
+ "Show last log in" : "Amosar a última conexión",
"Show user backend" : "Amosar a infraestrutura do usuario",
"Send email to new user" : "Enviar correo ao novo usuario",
"Show email address" : "Amosar o enderezo de correo",
diff --git a/settings/l10n/gl.json b/settings/l10n/gl.json
index 09ede2a400c..9aea9e8b5cb 100644
--- a/settings/l10n/gl.json
+++ b/settings/l10n/gl.json
@@ -1,5 +1,5 @@
{ "translations": {
- "Security & Setup Warnings" : "Seguridade & Avisos de configuración",
+ "Security & Setup Warnings" : "Avisos de seguridade e configuración",
"Cron" : "Cron",
"Sharing" : "Compartindo",
"Security" : "Seguranza",
@@ -29,7 +29,7 @@
"Back-end doesn't support password change, but the users encryption key was successfully updated." : "A infraestrutura non admite o cambio de contrasinal, mais a chave de cifrado dos usuarios foi actualizada correctamente.",
"Unable to change password" : "Non é posíbel cambiar o contrasinal",
"Enabled" : "Activado",
- "Not enabled" : "Non habilitado",
+ "Not enabled" : "Non activado",
"Recommended" : "Recomendado",
"Group already exists." : "Xa existe o grupo.",
"Unable to add group." : "Non é posíbel engadir o grupo.",
@@ -38,7 +38,7 @@
"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.",
- "A problem occurred while sending the email. Please revise your settings." : "Produciuse un erro mentras enviaba o correo. Por favor revise a súa configuración.",
+ "A problem occurred while sending the email. Please revise your settings." : "Produciuse un erro mentres enviaba o correo. Revise os axustes.",
"Email sent" : "Correo enviado",
"You need to set your user email before being able to send test emails." : "É necesario configurar o correo do usuario antes de poder enviar mensaxes de correo de proba.",
"Invalid mail address" : "Enderezo de correo incorrecto",
@@ -49,7 +49,7 @@
"Invalid user" : "Usuario incorrecto",
"Unable to change mail address" : "Non é posíbel cambiar o enderezo de correo.",
"Email saved" : "Correo gardado",
- "Are you really sure you want add \"{domain}\" as trusted domain?" : "Ten certeza de querer engadir \"{domain}\" como dominio de confianza?",
+ "Are you really sure you want add \"{domain}\" as trusted domain?" : "Confirma que quere engadir «{domain}» como dominio de confianza?",
"Add trusted domain" : "Engadir dominio de confianza",
"Sending..." : "Enviando...",
"All" : "Todo",
@@ -70,7 +70,7 @@
"So-so password" : "Contrasinal non moi aló",
"Good password" : "Bo contrasinal",
"Strong password" : "Contrasinal forte",
- "Valid until {date}" : "Válido ate {date}",
+ "Valid until {date}" : "Válido ata {date}",
"Delete" : "Eliminar",
"Decrypting files... Please wait, this can take some time." : "Descifrando ficheiros... isto pode levar un anaco.",
"Delete encryption keys permanently." : "Eliminar permanentemente as chaves de cifrado.",
@@ -85,6 +85,7 @@
"never" : "nunca",
"deleted {userName}" : "{userName} foi eliminado",
"add group" : "engadir un grupo",
+ "Changing the password will result in data loss, because data recovery is not available for this user" : "Cambiar o contrasinal provocará unha perda de datos, xa que a recuperación de datos non está dispoñíbel para este usuario",
"A valid username must be provided" : "Debe fornecer un nome de usuario",
"Error creating user" : "Produciuse un erro ao crear o usuario",
"A valid password must be provided" : "Debe fornecer un contrasinal",
@@ -112,9 +113,11 @@
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "Parece que PHP foi configuración para substituír bloques de documentos en liña. Isto fará que varias aplicacións sexan inaccesíbeis.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Isto probabelmente se debe unha caché/acelerador como Zend OPcache ou eAccelerator.",
"Database Performance Info" : "Información do rendemento da base de datos",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "Empregarase SQLite como base de datos. Para instalacións máis grandes recomendámoslle que cambie isto. Para migrar a outra base de datos use a ferramenta en liña de ordes: «occ db:convert-type»",
+ "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "Empregase SQLite como base de datos. Para instalacións grandes recomendámoslle que cambie a unha infraestrutura de base de datos diferente.",
+ "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Concretamente, se emprega o cliente de escritorio para sincronización, desaconsellámoslle o uso de SQLite",
+ "To migrate to another database use the command line tool: 'occ db:convert-type'" : "Para migrar cara outra base de datos, empregue a ferramenta en liña de ordes: «occ db:convert-type»",
"Microsoft Windows Platform" : "Plataforma Windows de Microsoft",
- "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "O seu servidor funciona baixo Windows de Microsoft. Recomendámoslle encarecidamente que utilice Linux para unha experiencia de usuario óptima.",
+ "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "O seu servidor funciona baixo Windows de Microsoft. Recomendámoslle encarecidamente que empregue Linux para obter unha perfecta experiencia de usuario.",
"Module 'fileinfo' missing" : "Non se atopou o módulo «fileinfo»",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Non se atopou o módulo de PHP «fileinfo». É recomendábel activar este módulo para obter os mellores resultados coa detección do tipo MIME.",
"PHP charset is not set to UTF-8" : "O xogo de caracteres de PHP non está estabelecido a UTF-8",
@@ -164,7 +167,7 @@
"Credentials" : "Credenciais",
"SMTP Username" : "Nome de usuario SMTP",
"SMTP Password" : "Contrasinal SMTP",
- "Store credentials" : "Gardar credenciais",
+ "Store credentials" : "Gardar as credenciais",
"Test email settings" : "Correo de proba dos axustes",
"Send email" : "Enviar o correo",
"Log level" : "Nivel de rexistro",
@@ -175,7 +178,7 @@
"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",
- "Add your app" : "Engada o seu aplicativo",
+ "Add your app" : "Engada a súa aplicación",
"by" : "por",
"licensed" : "licencidado",
"Documentation:" : "Documentación:",
@@ -223,7 +226,7 @@
"Language" : "Idioma",
"Help translate" : "Axude na tradución",
"Common Name" : "Nome común",
- "Valid until" : "Válido ate",
+ "Valid until" : "Válido ata",
"Issued By" : "Proporcionado por",
"Valid until %s" : "Válido ate %s",
"Import Root Certificate" : "Importar o certificado raíz",
@@ -233,8 +236,8 @@
"Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly." : "As chaves de cifrado foron movidas á copia de seguranza. Se ten algún problema pode restaurar as chaves. Elimineas permanentemente só se está seguro de que é posíbel descifrar correctamente todos os ficheiros.",
"Restore Encryption Keys" : "Restaurar as chaves de cifrado",
"Delete Encryption Keys" : "Eliminar as chaves de cifrado",
- "Show storage location" : "Mostrar localización de almacenamento",
- "Show last log in" : "Mostrar última conexión",
+ "Show storage location" : "Amosar a localización do almacenamento",
+ "Show last log in" : "Amosar a última conexión",
"Show user backend" : "Amosar a infraestrutura do usuario",
"Send email to new user" : "Enviar correo ao novo usuario",
"Show email address" : "Amosar o enderezo de correo",
diff --git a/settings/l10n/hr.js b/settings/l10n/hr.js
index 8cac21163d6..5c8249f10eb 100644
--- a/settings/l10n/hr.js
+++ b/settings/l10n/hr.js
@@ -96,7 +96,6 @@ OC.L10N.register(
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP je očigledno postavljen na strip inline doc blocks. To će nekoliko osnovnih aplikacija učiniti nedostupnima.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Uzrok tome je vjerojatno neki ubrzivač predmemoriranja kao što je Zend OPcache ilieAccelerator.",
"Database Performance Info" : "Info o performansi baze podataka",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "SQLite se koristi kao baza podataka. Za veće instalacije preporučujemo da se to promijeni.Za migraciju na neku drugu bazu podataka koristite naredbeni redak: 'occ db: convert-type'",
"Module 'fileinfo' missing" : "Nedostaje modul 'fileinfo'",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP modul 'fileinfo' nedostaje. Tolo vam preporučjemo da taj modul omogućitekako biste dobili najbolje rezultate u detekciji mime vrste.",
"PHP charset is not set to UTF-8" : "PHP Charset nije postavljen na UTF-8",
diff --git a/settings/l10n/hr.json b/settings/l10n/hr.json
index 89a581b5473..65ae83d0b9a 100644
--- a/settings/l10n/hr.json
+++ b/settings/l10n/hr.json
@@ -94,7 +94,6 @@
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP je očigledno postavljen na strip inline doc blocks. To će nekoliko osnovnih aplikacija učiniti nedostupnima.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Uzrok tome je vjerojatno neki ubrzivač predmemoriranja kao što je Zend OPcache ilieAccelerator.",
"Database Performance Info" : "Info o performansi baze podataka",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "SQLite se koristi kao baza podataka. Za veće instalacije preporučujemo da se to promijeni.Za migraciju na neku drugu bazu podataka koristite naredbeni redak: 'occ db: convert-type'",
"Module 'fileinfo' missing" : "Nedostaje modul 'fileinfo'",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP modul 'fileinfo' nedostaje. Tolo vam preporučjemo da taj modul omogućitekako biste dobili najbolje rezultate u detekciji mime vrste.",
"PHP charset is not set to UTF-8" : "PHP Charset nije postavljen na UTF-8",
diff --git a/settings/l10n/hu_HU.js b/settings/l10n/hu_HU.js
index 1f019f760d8..03091a468fd 100644
--- a/settings/l10n/hu_HU.js
+++ b/settings/l10n/hu_HU.js
@@ -94,7 +94,6 @@ OC.L10N.register(
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "Úgy tűnik, hogy a PHP úgy van beállítva, hogy eltávolítja programok belsejében elhelyezett szövegblokkokat. Emiatt a rendszer több alapvető fontosságú eleme működésképtelen lesz.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Ezt valószínűleg egy gyorsítótár ill. kódgyorsító, mint pl, a Zend, OPcache vagy eAccelererator okozza.",
"Database Performance Info" : "Információ az adatbázis teljesítményéről",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "A kiválasztott adatbázis az SQLite. Nagyobb telepítések esetén ezt érdemes megváltoztatni. Másik adatbázisra való áttéréshez használja a következő parancssori eszközt: 'occ db:convert-type'",
"Module 'fileinfo' missing" : "A 'fileinfo' modul hiányzik",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "A 'fileinfo' PHP modul hiányzik. Erősen javasolt ennek a modulnak a telepítése, mert ezzel lényegesen jobb a MIME-típusok felismerése.",
"PHP charset is not set to UTF-8" : "A PHP-karakterkészlet nem UTF-8-ra van állítva",
diff --git a/settings/l10n/hu_HU.json b/settings/l10n/hu_HU.json
index 1b4517ae70a..dc58dcf7112 100644
--- a/settings/l10n/hu_HU.json
+++ b/settings/l10n/hu_HU.json
@@ -92,7 +92,6 @@
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "Úgy tűnik, hogy a PHP úgy van beállítva, hogy eltávolítja programok belsejében elhelyezett szövegblokkokat. Emiatt a rendszer több alapvető fontosságú eleme működésképtelen lesz.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Ezt valószínűleg egy gyorsítótár ill. kódgyorsító, mint pl, a Zend, OPcache vagy eAccelererator okozza.",
"Database Performance Info" : "Információ az adatbázis teljesítményéről",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "A kiválasztott adatbázis az SQLite. Nagyobb telepítések esetén ezt érdemes megváltoztatni. Másik adatbázisra való áttéréshez használja a következő parancssori eszközt: 'occ db:convert-type'",
"Module 'fileinfo' missing" : "A 'fileinfo' modul hiányzik",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "A 'fileinfo' PHP modul hiányzik. Erősen javasolt ennek a modulnak a telepítése, mert ezzel lényegesen jobb a MIME-típusok felismerése.",
"PHP charset is not set to UTF-8" : "A PHP-karakterkészlet nem UTF-8-ra van állítva",
diff --git a/settings/l10n/id.js b/settings/l10n/id.js
index a64f0c10d92..d62b00d4778 100644
--- a/settings/l10n/id.js
+++ b/settings/l10n/id.js
@@ -1,7 +1,7 @@
OC.L10N.register(
"settings",
{
- "Security & Setup Warnings" : "Peringatan Keamanan dan Setelan",
+ "Security & Setup Warnings" : "Keamanan dan Setelan Peringatan",
"Cron" : "Cron",
"Sharing" : "Berbagi",
"Security" : "Keamanan",
@@ -36,14 +36,20 @@ OC.L10N.register(
"Group already exists." : "Grup sudah ada.",
"Unable to add group." : "Tidak dapat menambah grup.",
"Unable to delete group." : "Tidak dapat menghapus grup.",
+ "log-level out of allowed range" : "level-log melebihi batas yang diizinkan",
"Saved" : "Disimpan",
"test email settings" : "pengaturan email percobaan",
"If you received this email, the settings seem to be correct." : "Jika Anda menerma email ini, pengaturan tampaknya sudah benar.",
"A problem occurred while sending the email. Please revise your settings." : "Muncul masalah tidak terduga saat mengirim email. Mohon merevisi pengaturan Anda.",
"Email sent" : "Email terkirim",
"You need to set your user email before being able to send test emails." : "Anda perlu menetapkan email pengguna Anda sebelum dapat mengirim email percobaan.",
+ "Invalid mail address" : "Alamat email salah",
"Unable to create user." : "Tidak dapat membuat pengguna.",
+ "Your %s account was created" : "Akun %s Anda telah dibuat",
"Unable to delete user." : "Tidak dapat menghapus pengguna.",
+ "Forbidden" : "Terlarang",
+ "Invalid user" : "Pengguna salah",
+ "Unable to change mail address" : "Tidak dapat mengubah alamat email",
"Email saved" : "Email disimpan",
"Are you really sure you want add \"{domain}\" as trusted domain?" : "Apakah And yakin ingin menambahkan \"{domain}\" sebagai domain terpercaya?",
"Add trusted domain" : "Tambah domain terpercaya",
@@ -70,7 +76,7 @@ OC.L10N.register(
"Delete" : "Hapus",
"Decrypting files... Please wait, this can take some time." : "Mendeskripsi berkas... Mohon tunggu, ini memerlukan beberapa saat.",
"Delete encryption keys permanently." : "Hapus kunci enkripsi secara permanen.",
- "Restore encryption keys." : "memulihkan kunci enkripsi.",
+ "Restore encryption keys." : "Memulihkan kunci enkripsi.",
"Groups" : "Grup",
"Unable to delete {objName}" : "Tidak dapat menghapus {objName}",
"Error creating group" : "Terjadi kesalahan saat membuat grup",
@@ -81,9 +87,11 @@ OC.L10N.register(
"never" : "tidak pernah",
"deleted {userName}" : "menghapus {userName}",
"add group" : "tambah grup",
+ "Changing the password will result in data loss, because data recovery is not available for this user" : "Pengubahan kata sandi akan ditampilkan di data kehilangan, karena data pemulihan tidak tersedia bagi pengguna ini",
"A valid username must be provided" : "Harus memberikan nama pengguna yang benar",
"Error creating user" : "Terjadi kesalahan saat membuat pengguna",
"A valid password must be provided" : "Harus memberikan sandi yang benar",
+ "A valid email must be provided" : "Email yang benar harus diberikan",
"__language_name__" : "__language_name__",
"Personal Info" : "Info Pribadi",
"SSL root certificates" : "Sertifikat root SSL",
@@ -107,7 +115,8 @@ OC.L10N.register(
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "Tampaknya pengaturan PHP strip inline doc blocks. Hal ini akan membuat beberapa aplikasi inti tidak dapat diakses.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Hal ini kemungkinan disebabkan oleh cache/akselerator seperti Zend OPcache atau eAccelerator.",
"Database Performance Info" : "Info Performa Basis Data",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "SQLite akan digunakan sebagai basis data. Untuk instalasi besar, kami merekomendasikan untuk mengubahnya. Untuk berpindah ke basis data lainnya, gunakan alat baris perintah: 'occ db:convert-type'",
+ "Microsoft Windows Platform" : "Platform Microsoft Windows",
+ "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Server Anda dijalankan di Microsoft Windows. Kami sangat menyarankan Linux untuk mendapatkan pengalaman pengguna yang optimal.",
"Module 'fileinfo' missing" : "Modul 'fileinfo' tidak ada",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Module 'fileinfo' pada PHP tidak ada. Kami sangat menyarankan untuk mengaktifkan modul ini untuk mendapatkan hasil terbaik pada proses pendeteksian mime-type.",
"PHP charset is not set to UTF-8" : "Charset PHP tidak disetel ke UTF-8",
@@ -115,7 +124,10 @@ OC.L10N.register(
"Locale not working" : "Kode pelokalan tidak berfungsi",
"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.",
+ "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Kamu sangat menyarankan untuk menginstal paket-paket yang dibutuhkan pada sistem agar mendukung lokal berikut: %s.",
"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 \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Jika instalasi Anda tidak di root domain dan menggunakan sistem cron, hal tersebut dapat menyebabkan masalah dengan pembuatan URL. Untuk mencegah masalah tersebut, mohon atur opsi \"overwrite.cli.url\" pada berkas config.php Anda ke jalur lokasi webroot instalasi Anda (Disarankan: \"%s\")",
+ "Configuration Checks" : "Pemeriksaan Konfigurasi",
"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.",
@@ -135,10 +147,13 @@ OC.L10N.register(
"Enforce expiration date" : "Berlakukan tanggal kadaluarsa",
"Allow resharing" : "Izinkan pembagian ulang",
"Restrict users to only share with users in their groups" : "Batasi pengguna untuk hanya membagikan dengan pengguna didalam grup mereka",
+ "Allow users to send mail notification for shared files to other users" : "Izinkan pengguna mengirim pemberitahuan email saat berbagi berkas kepada pengguna lainnya",
"Exclude groups from sharing" : "Tidak termasuk grup untuk berbagi",
"These groups will still be able to receive shares, but not to initiate them." : "Grup ini akan tetap dapat menerima berbagi, tatapi tidak dapat membagikan.",
"Enforce HTTPS" : "Selalu Gunakan HTTPS",
"Forces the clients to connect to %s via an encrypted connection." : "Memaksa klien untuk menghubungkan ke %s menggunakan sambungan yang dienskripsi.",
+ "Enforce HTTPS for subdomains" : "Selalu gunakan HTTPS untuk subdomain",
+ "Forces the clients to connect to %s and subdomains via an encrypted connection." : "Paksa pengguna untuk terhubung ke %s dan subdomain via koneksi terenkripsi.",
"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." : "Mohon sambungkan ke %s menggunakan HTTPS untuk mengaktifkannya atau menonaktifkan penegakan SSL.",
"This is used for sending out notifications." : "Ini digunakan untuk mengirim notifikasi keluar.",
"Send mode" : "Modus kirim",
@@ -155,8 +170,10 @@ OC.L10N.register(
"Test email settings" : "Pengaturan email percobaan",
"Send email" : "Kirim email",
"Log level" : "Level log",
+ "Download logfile" : "Unduh berkas log",
"More" : "Lainnya",
"Less" : "Ciutkan",
+ "The logfile is bigger than 100MB. Downloading it may take some time!" : "Berkas log lebih besar dari 100MB. Menggunduhnya akan memerlukan waktu!",
"Version" : "Versi",
"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>." : "Dikembangkan oleh <a href=\"http://ownCloud.org/contact\" target=\"_blank\">komunitas ownCloud</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">kode sumber</a> dilisensikan di bawah <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.",
"More apps" : "Lebih banyak aplikasi",
@@ -166,16 +183,22 @@ OC.L10N.register(
"Documentation:" : "Dokumentasi:",
"User Documentation" : "Dokumentasi Pengguna",
"Admin Documentation" : "Dokumentasi Admin",
+ "This app cannot be installed because the following dependencies are not fulfilled:" : "Apl ini tidak dapat diinstal karena ketergantungan berikut belum terpenuhi:",
"Update to %s" : "Perbarui ke %s",
"Enable only for specific groups" : "Aktifkan hanya untuk grup tertentu",
"Uninstall App" : "Copot aplikasi",
+ "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>" : "Hai,<br><br>sekedar memberi tahu bahwa Andaa sekarang memiliki akun %s.<br><br>Nama Pengguna Anda: %s<br>Akses di: <a href=\"%s\">%s</a><br><br>",
"Cheers!" : "Horee!",
+ "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Hai,\n\nsekedar memberi tahu bahwa Andaa sekarang memiliki akun %s.\n\nNama Pengguna Anda: %s\nAkses di: %s\n",
"Administrator Documentation" : "Dokumentasi Administrator",
"Online Documentation" : "Dokumentasi Online",
"Forum" : "Forum",
"Bugtracker" : "Bugtracker",
"Commercial Support" : "Dukungan Komersial",
"Get the apps to sync your files" : "Dapatkan aplikasi untuk sinkronisasi berkas Anda",
+ "Desktop client" : "Klien desktop",
+ "Android app" : "Aplikasi Android",
+ "iOS app" : "Aplikasi 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>!" : "Jika Anda ingin mendukung proyek ini\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\">bergabung dengan pembagunan</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\">sebarkan promosi</a>!",
"Show First Run Wizard again" : "Tampilkan Penuntun Konfigurasi Awal",
"You have used <strong>%s</strong> of the available <strong>%s</strong>" : "Anda telah menggunakan <strong>%s</strong> dari total <strong>%s</strong>",
@@ -186,9 +209,11 @@ OC.L10N.register(
"New password" : "Sandi baru",
"Change password" : "Ubah sandi",
"Full Name" : "Nama Lengkap",
+ "No display name set" : "Nama tampilan tidak diatur",
"Email" : "Email",
"Your email address" : "Alamat email Anda",
"Fill in an email address to enable password recovery and receive notifications" : "Isikan alamat email untuk mengaktifkan pemulihan sandi dan menerima notifikasi",
+ "No email address set" : "Alamat email tidak diatur",
"Profile picture" : "Foto profil",
"Upload new" : "Unggah baru",
"Select new from Files" : "Pilih baru dari Berkas",
@@ -212,10 +237,15 @@ OC.L10N.register(
"Delete Encryption Keys" : "Hapus Kuncu Enkripsi",
"Show storage location" : "Tampilkan kolasi penyimpanan",
"Show last log in" : "Tampilkan masuk terakhir",
+ "Show user backend" : "Tampilkan pengguna backend",
+ "Send email to new user" : "Kirim email kepada pengguna baru",
+ "Show email address" : "Tampilkan alamat email",
"Username" : "Nama pengguna",
+ "E-Mail" : "E-Mail",
"Create" : "Buat",
"Admin Recovery Password" : "Sandi pemulihan Admin",
"Enter the recovery password in order to recover the users files during password change" : "Masukkan sandi pemulihan untuk memulihkan berkas pengguna saat penggantian sandi",
+ "Search Users" : "Cari Pengguna",
"Add Group" : "Tambah Grup",
"Group" : "Grup",
"Everyone" : "Semua orang",
@@ -225,11 +255,13 @@ OC.L10N.register(
"Unlimited" : "Tak terbatas",
"Other" : "Lainnya",
"Group Admin for" : "Grup Admin untuk",
- "Quota" : "Quota",
+ "Quota" : "Kuota",
"Storage Location" : "Lokasi Penyimpanan",
+ "User Backend" : "Pengguna Backend",
"Last Login" : "Masuk Terakhir",
"change full name" : "ubah nama lengkap",
"set new password" : "setel sandi baru",
+ "change email address" : "ubah alamat email",
"Default" : "Default"
},
"nplurals=1; plural=0;");
diff --git a/settings/l10n/id.json b/settings/l10n/id.json
index 81fe6e59fe8..6a096aa6509 100644
--- a/settings/l10n/id.json
+++ b/settings/l10n/id.json
@@ -1,5 +1,5 @@
{ "translations": {
- "Security & Setup Warnings" : "Peringatan Keamanan dan Setelan",
+ "Security & Setup Warnings" : "Keamanan dan Setelan Peringatan",
"Cron" : "Cron",
"Sharing" : "Berbagi",
"Security" : "Keamanan",
@@ -34,14 +34,20 @@
"Group already exists." : "Grup sudah ada.",
"Unable to add group." : "Tidak dapat menambah grup.",
"Unable to delete group." : "Tidak dapat menghapus grup.",
+ "log-level out of allowed range" : "level-log melebihi batas yang diizinkan",
"Saved" : "Disimpan",
"test email settings" : "pengaturan email percobaan",
"If you received this email, the settings seem to be correct." : "Jika Anda menerma email ini, pengaturan tampaknya sudah benar.",
"A problem occurred while sending the email. Please revise your settings." : "Muncul masalah tidak terduga saat mengirim email. Mohon merevisi pengaturan Anda.",
"Email sent" : "Email terkirim",
"You need to set your user email before being able to send test emails." : "Anda perlu menetapkan email pengguna Anda sebelum dapat mengirim email percobaan.",
+ "Invalid mail address" : "Alamat email salah",
"Unable to create user." : "Tidak dapat membuat pengguna.",
+ "Your %s account was created" : "Akun %s Anda telah dibuat",
"Unable to delete user." : "Tidak dapat menghapus pengguna.",
+ "Forbidden" : "Terlarang",
+ "Invalid user" : "Pengguna salah",
+ "Unable to change mail address" : "Tidak dapat mengubah alamat email",
"Email saved" : "Email disimpan",
"Are you really sure you want add \"{domain}\" as trusted domain?" : "Apakah And yakin ingin menambahkan \"{domain}\" sebagai domain terpercaya?",
"Add trusted domain" : "Tambah domain terpercaya",
@@ -68,7 +74,7 @@
"Delete" : "Hapus",
"Decrypting files... Please wait, this can take some time." : "Mendeskripsi berkas... Mohon tunggu, ini memerlukan beberapa saat.",
"Delete encryption keys permanently." : "Hapus kunci enkripsi secara permanen.",
- "Restore encryption keys." : "memulihkan kunci enkripsi.",
+ "Restore encryption keys." : "Memulihkan kunci enkripsi.",
"Groups" : "Grup",
"Unable to delete {objName}" : "Tidak dapat menghapus {objName}",
"Error creating group" : "Terjadi kesalahan saat membuat grup",
@@ -79,9 +85,11 @@
"never" : "tidak pernah",
"deleted {userName}" : "menghapus {userName}",
"add group" : "tambah grup",
+ "Changing the password will result in data loss, because data recovery is not available for this user" : "Pengubahan kata sandi akan ditampilkan di data kehilangan, karena data pemulihan tidak tersedia bagi pengguna ini",
"A valid username must be provided" : "Harus memberikan nama pengguna yang benar",
"Error creating user" : "Terjadi kesalahan saat membuat pengguna",
"A valid password must be provided" : "Harus memberikan sandi yang benar",
+ "A valid email must be provided" : "Email yang benar harus diberikan",
"__language_name__" : "__language_name__",
"Personal Info" : "Info Pribadi",
"SSL root certificates" : "Sertifikat root SSL",
@@ -105,7 +113,8 @@
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "Tampaknya pengaturan PHP strip inline doc blocks. Hal ini akan membuat beberapa aplikasi inti tidak dapat diakses.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Hal ini kemungkinan disebabkan oleh cache/akselerator seperti Zend OPcache atau eAccelerator.",
"Database Performance Info" : "Info Performa Basis Data",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "SQLite akan digunakan sebagai basis data. Untuk instalasi besar, kami merekomendasikan untuk mengubahnya. Untuk berpindah ke basis data lainnya, gunakan alat baris perintah: 'occ db:convert-type'",
+ "Microsoft Windows Platform" : "Platform Microsoft Windows",
+ "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Server Anda dijalankan di Microsoft Windows. Kami sangat menyarankan Linux untuk mendapatkan pengalaman pengguna yang optimal.",
"Module 'fileinfo' missing" : "Modul 'fileinfo' tidak ada",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Module 'fileinfo' pada PHP tidak ada. Kami sangat menyarankan untuk mengaktifkan modul ini untuk mendapatkan hasil terbaik pada proses pendeteksian mime-type.",
"PHP charset is not set to UTF-8" : "Charset PHP tidak disetel ke UTF-8",
@@ -113,7 +122,10 @@
"Locale not working" : "Kode pelokalan tidak berfungsi",
"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.",
+ "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Kamu sangat menyarankan untuk menginstal paket-paket yang dibutuhkan pada sistem agar mendukung lokal berikut: %s.",
"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 \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Jika instalasi Anda tidak di root domain dan menggunakan sistem cron, hal tersebut dapat menyebabkan masalah dengan pembuatan URL. Untuk mencegah masalah tersebut, mohon atur opsi \"overwrite.cli.url\" pada berkas config.php Anda ke jalur lokasi webroot instalasi Anda (Disarankan: \"%s\")",
+ "Configuration Checks" : "Pemeriksaan Konfigurasi",
"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.",
@@ -133,10 +145,13 @@
"Enforce expiration date" : "Berlakukan tanggal kadaluarsa",
"Allow resharing" : "Izinkan pembagian ulang",
"Restrict users to only share with users in their groups" : "Batasi pengguna untuk hanya membagikan dengan pengguna didalam grup mereka",
+ "Allow users to send mail notification for shared files to other users" : "Izinkan pengguna mengirim pemberitahuan email saat berbagi berkas kepada pengguna lainnya",
"Exclude groups from sharing" : "Tidak termasuk grup untuk berbagi",
"These groups will still be able to receive shares, but not to initiate them." : "Grup ini akan tetap dapat menerima berbagi, tatapi tidak dapat membagikan.",
"Enforce HTTPS" : "Selalu Gunakan HTTPS",
"Forces the clients to connect to %s via an encrypted connection." : "Memaksa klien untuk menghubungkan ke %s menggunakan sambungan yang dienskripsi.",
+ "Enforce HTTPS for subdomains" : "Selalu gunakan HTTPS untuk subdomain",
+ "Forces the clients to connect to %s and subdomains via an encrypted connection." : "Paksa pengguna untuk terhubung ke %s dan subdomain via koneksi terenkripsi.",
"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." : "Mohon sambungkan ke %s menggunakan HTTPS untuk mengaktifkannya atau menonaktifkan penegakan SSL.",
"This is used for sending out notifications." : "Ini digunakan untuk mengirim notifikasi keluar.",
"Send mode" : "Modus kirim",
@@ -153,8 +168,10 @@
"Test email settings" : "Pengaturan email percobaan",
"Send email" : "Kirim email",
"Log level" : "Level log",
+ "Download logfile" : "Unduh berkas log",
"More" : "Lainnya",
"Less" : "Ciutkan",
+ "The logfile is bigger than 100MB. Downloading it may take some time!" : "Berkas log lebih besar dari 100MB. Menggunduhnya akan memerlukan waktu!",
"Version" : "Versi",
"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>." : "Dikembangkan oleh <a href=\"http://ownCloud.org/contact\" target=\"_blank\">komunitas ownCloud</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">kode sumber</a> dilisensikan di bawah <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.",
"More apps" : "Lebih banyak aplikasi",
@@ -164,16 +181,22 @@
"Documentation:" : "Dokumentasi:",
"User Documentation" : "Dokumentasi Pengguna",
"Admin Documentation" : "Dokumentasi Admin",
+ "This app cannot be installed because the following dependencies are not fulfilled:" : "Apl ini tidak dapat diinstal karena ketergantungan berikut belum terpenuhi:",
"Update to %s" : "Perbarui ke %s",
"Enable only for specific groups" : "Aktifkan hanya untuk grup tertentu",
"Uninstall App" : "Copot aplikasi",
+ "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>" : "Hai,<br><br>sekedar memberi tahu bahwa Andaa sekarang memiliki akun %s.<br><br>Nama Pengguna Anda: %s<br>Akses di: <a href=\"%s\">%s</a><br><br>",
"Cheers!" : "Horee!",
+ "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Hai,\n\nsekedar memberi tahu bahwa Andaa sekarang memiliki akun %s.\n\nNama Pengguna Anda: %s\nAkses di: %s\n",
"Administrator Documentation" : "Dokumentasi Administrator",
"Online Documentation" : "Dokumentasi Online",
"Forum" : "Forum",
"Bugtracker" : "Bugtracker",
"Commercial Support" : "Dukungan Komersial",
"Get the apps to sync your files" : "Dapatkan aplikasi untuk sinkronisasi berkas Anda",
+ "Desktop client" : "Klien desktop",
+ "Android app" : "Aplikasi Android",
+ "iOS app" : "Aplikasi 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>!" : "Jika Anda ingin mendukung proyek ini\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\">bergabung dengan pembagunan</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\">sebarkan promosi</a>!",
"Show First Run Wizard again" : "Tampilkan Penuntun Konfigurasi Awal",
"You have used <strong>%s</strong> of the available <strong>%s</strong>" : "Anda telah menggunakan <strong>%s</strong> dari total <strong>%s</strong>",
@@ -184,9 +207,11 @@
"New password" : "Sandi baru",
"Change password" : "Ubah sandi",
"Full Name" : "Nama Lengkap",
+ "No display name set" : "Nama tampilan tidak diatur",
"Email" : "Email",
"Your email address" : "Alamat email Anda",
"Fill in an email address to enable password recovery and receive notifications" : "Isikan alamat email untuk mengaktifkan pemulihan sandi dan menerima notifikasi",
+ "No email address set" : "Alamat email tidak diatur",
"Profile picture" : "Foto profil",
"Upload new" : "Unggah baru",
"Select new from Files" : "Pilih baru dari Berkas",
@@ -210,10 +235,15 @@
"Delete Encryption Keys" : "Hapus Kuncu Enkripsi",
"Show storage location" : "Tampilkan kolasi penyimpanan",
"Show last log in" : "Tampilkan masuk terakhir",
+ "Show user backend" : "Tampilkan pengguna backend",
+ "Send email to new user" : "Kirim email kepada pengguna baru",
+ "Show email address" : "Tampilkan alamat email",
"Username" : "Nama pengguna",
+ "E-Mail" : "E-Mail",
"Create" : "Buat",
"Admin Recovery Password" : "Sandi pemulihan Admin",
"Enter the recovery password in order to recover the users files during password change" : "Masukkan sandi pemulihan untuk memulihkan berkas pengguna saat penggantian sandi",
+ "Search Users" : "Cari Pengguna",
"Add Group" : "Tambah Grup",
"Group" : "Grup",
"Everyone" : "Semua orang",
@@ -223,11 +253,13 @@
"Unlimited" : "Tak terbatas",
"Other" : "Lainnya",
"Group Admin for" : "Grup Admin untuk",
- "Quota" : "Quota",
+ "Quota" : "Kuota",
"Storage Location" : "Lokasi Penyimpanan",
+ "User Backend" : "Pengguna Backend",
"Last Login" : "Masuk Terakhir",
"change full name" : "ubah nama lengkap",
"set new password" : "setel sandi baru",
+ "change email address" : "ubah alamat email",
"Default" : "Default"
},"pluralForm" :"nplurals=1; plural=0;"
} \ No newline at end of file
diff --git a/settings/l10n/it.js b/settings/l10n/it.js
index d33b5d60488..beb4574d216 100644
--- a/settings/l10n/it.js
+++ b/settings/l10n/it.js
@@ -87,6 +87,7 @@ OC.L10N.register(
"never" : "mai",
"deleted {userName}" : "{userName} eliminato",
"add group" : "aggiungi gruppo",
+ "Changing the password will result in data loss, because data recovery is not available for this user" : "Il cambiamento della password causerà una perdita di dati, poiché il ripristino dei dati non è disponibile per questo utente",
"A valid username must be provided" : "Deve essere fornito un nome utente valido",
"Error creating user" : "Errore durante la creazione dell'utente",
"A valid password must be provided" : "Deve essere fornita una password valida",
@@ -114,7 +115,9 @@ OC.L10N.register(
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "Sembra che PHP sia configurato per rimuovere i blocchi di documentazione in linea. Ciò renderà inaccessibili diverse applicazioni principali.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Ciò è causato probabilmente da una cache/acceleratore come Zend OPcache o eAccelerator.",
"Database Performance Info" : "Informazioni prestazioni del database",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "SQLite è utilizzato come database. Per installazioni grandi, consigliamo di cambiarlo. Per migrare a un altro database, utilizzare lo strumento da riga di comando: 'occ db:convert-type'",
+ "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite è utilizzato come database. Per installazioni più grandi consigliamo di passare a un motore di database diverso.",
+ "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "In particolar modo, quando si utilizza il client desktop per la sincronizzazione dei file, l'uso di SQLite è sconsigliato.",
+ "To migrate to another database use the command line tool: 'occ db:convert-type'" : "Per migrare a un altro database, utilizza lo strumento da riga di comando: 'occ db:convert-type'",
"Microsoft Windows Platform" : "Piattaforma Microsoft Windows",
"Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Il tuo server è in esecuzione su Microsoft Windows. Consigliamo vivamente Linux per un'esperienza utente ottimale.",
"Module 'fileinfo' missing" : "Modulo 'fileinfo' mancante",
diff --git a/settings/l10n/it.json b/settings/l10n/it.json
index 3fa9e35c447..e67e4aee3c8 100644
--- a/settings/l10n/it.json
+++ b/settings/l10n/it.json
@@ -85,6 +85,7 @@
"never" : "mai",
"deleted {userName}" : "{userName} eliminato",
"add group" : "aggiungi gruppo",
+ "Changing the password will result in data loss, because data recovery is not available for this user" : "Il cambiamento della password causerà una perdita di dati, poiché il ripristino dei dati non è disponibile per questo utente",
"A valid username must be provided" : "Deve essere fornito un nome utente valido",
"Error creating user" : "Errore durante la creazione dell'utente",
"A valid password must be provided" : "Deve essere fornita una password valida",
@@ -112,7 +113,9 @@
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "Sembra che PHP sia configurato per rimuovere i blocchi di documentazione in linea. Ciò renderà inaccessibili diverse applicazioni principali.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Ciò è causato probabilmente da una cache/acceleratore come Zend OPcache o eAccelerator.",
"Database Performance Info" : "Informazioni prestazioni del database",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "SQLite è utilizzato come database. Per installazioni grandi, consigliamo di cambiarlo. Per migrare a un altro database, utilizzare lo strumento da riga di comando: 'occ db:convert-type'",
+ "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite è utilizzato come database. Per installazioni più grandi consigliamo di passare a un motore di database diverso.",
+ "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "In particolar modo, quando si utilizza il client desktop per la sincronizzazione dei file, l'uso di SQLite è sconsigliato.",
+ "To migrate to another database use the command line tool: 'occ db:convert-type'" : "Per migrare a un altro database, utilizza lo strumento da riga di comando: 'occ db:convert-type'",
"Microsoft Windows Platform" : "Piattaforma Microsoft Windows",
"Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Il tuo server è in esecuzione su Microsoft Windows. Consigliamo vivamente Linux per un'esperienza utente ottimale.",
"Module 'fileinfo' missing" : "Modulo 'fileinfo' mancante",
diff --git a/settings/l10n/ja.js b/settings/l10n/ja.js
index 83d6ed21652..385156e5620 100644
--- a/settings/l10n/ja.js
+++ b/settings/l10n/ja.js
@@ -87,6 +87,7 @@ OC.L10N.register(
"never" : "なし",
"deleted {userName}" : "{userName} を削除しました",
"add group" : "グループを追加",
+ "Changing the password will result in data loss, because data recovery is not available for this user" : "このユーザーのデータ復旧が無効になっていますので、パスワードを変更するとユーザーはデータに二度とアクセスできません。",
"A valid username must be provided" : "有効なユーザー名を指定する必要があります",
"Error creating user" : "ユーザー作成エラー",
"A valid password must be provided" : "有効なパスワードを指定する必要があります",
@@ -114,7 +115,8 @@ OC.L10N.register(
"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 等のキャッシュ/アクセラレータが原因かもしれません。",
"Database Performance Info" : "データベースパフォーマンス情報",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "SQLite をデータベースとして利用しています。大規模な運用では、利用しないことをお勧めします。別のデータベースへ移行する場合は、コマンドラインツール: 'occ db:convert-type'を使ってください。",
+ "Microsoft Windows Platform" : "Microsoft Windows 環境",
+ "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "サーバーがMicrosoft Windowsで動いています。ユーザーに最適なサービスを提供するためには、Linuxを利用することを強くお勧めします。",
"Module 'fileinfo' missing" : "モジュール 'fileinfo' が見つかりません",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP のモジュール 'fileinfo' が見つかりません。mimeタイプの検出を精度良く行うために、このモジュールを有効にすることを強くお勧めします。",
"PHP charset is not set to UTF-8" : "PHP の文字コードは UTF-8 に設定されていません",
@@ -124,6 +126,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 \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "もし、URLがドメインのルート(/)で終わっていない場合で、システムのcronを利用している場合、URLの生成に問題が発生します。その場合は、config.php ファイルの中の \"overwrite.cli.url\" オプションをインストールしたwebrootのパスに設定してください。(推奨: \"%s\")",
"Configuration Checks" : "設定を確認",
"No problems found" : "問題は見つかりませんでした",
"Please double check the <a href='%s'>installation guides</a>." : "<a href='%s'>インストールガイド</a>をよく確認してください。",
@@ -196,7 +199,7 @@ OC.L10N.register(
"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\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\">開発に参加する</a>\n\t\t、もしくは\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\">プロジェクトを広く伝えてください</a>!",
+ "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\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\">開発に参加する</a>\n\t\t、もしくは\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_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> を利用しています",
"Password" : "パスワード",
@@ -206,11 +209,12 @@ OC.L10N.register(
"New password" : "新しいパスワード",
"Change password" : "パスワードを変更",
"Full Name" : "名前",
+ "No display name set" : "表示名が未設定",
"Email" : "メール",
"Your email address" : "あなたのメールアドレス",
"Fill in an email address to enable password recovery and receive notifications" : "パスワードの回復を有効にし、通知を受け取るにはメールアドレスを入力してください",
"No email address set" : "メールアドレスが設定されていません",
- "Profile picture" : "プロフィール写真",
+ "Profile picture" : "プロフィール画像",
"Upload new" : "新たにアップロード",
"Select new from Files" : "新しいファイルを選択",
"Remove image" : "画像を削除",
diff --git a/settings/l10n/ja.json b/settings/l10n/ja.json
index cca150fef7b..04f05c201c8 100644
--- a/settings/l10n/ja.json
+++ b/settings/l10n/ja.json
@@ -85,6 +85,7 @@
"never" : "なし",
"deleted {userName}" : "{userName} を削除しました",
"add group" : "グループを追加",
+ "Changing the password will result in data loss, because data recovery is not available for this user" : "このユーザーのデータ復旧が無効になっていますので、パスワードを変更するとユーザーはデータに二度とアクセスできません。",
"A valid username must be provided" : "有効なユーザー名を指定する必要があります",
"Error creating user" : "ユーザー作成エラー",
"A valid password must be provided" : "有効なパスワードを指定する必要があります",
@@ -112,7 +113,8 @@
"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 等のキャッシュ/アクセラレータが原因かもしれません。",
"Database Performance Info" : "データベースパフォーマンス情報",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "SQLite をデータベースとして利用しています。大規模な運用では、利用しないことをお勧めします。別のデータベースへ移行する場合は、コマンドラインツール: 'occ db:convert-type'を使ってください。",
+ "Microsoft Windows Platform" : "Microsoft Windows 環境",
+ "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "サーバーがMicrosoft Windowsで動いています。ユーザーに最適なサービスを提供するためには、Linuxを利用することを強くお勧めします。",
"Module 'fileinfo' missing" : "モジュール 'fileinfo' が見つかりません",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP のモジュール 'fileinfo' が見つかりません。mimeタイプの検出を精度良く行うために、このモジュールを有効にすることを強くお勧めします。",
"PHP charset is not set to UTF-8" : "PHP の文字コードは UTF-8 に設定されていません",
@@ -122,6 +124,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 \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "もし、URLがドメインのルート(/)で終わっていない場合で、システムのcronを利用している場合、URLの生成に問題が発生します。その場合は、config.php ファイルの中の \"overwrite.cli.url\" オプションをインストールしたwebrootのパスに設定してください。(推奨: \"%s\")",
"Configuration Checks" : "設定を確認",
"No problems found" : "問題は見つかりませんでした",
"Please double check the <a href='%s'>installation guides</a>." : "<a href='%s'>インストールガイド</a>をよく確認してください。",
@@ -194,7 +197,7 @@
"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\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\">開発に参加する</a>\n\t\t、もしくは\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\">プロジェクトを広く伝えてください</a>!",
+ "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\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\">開発に参加する</a>\n\t\t、もしくは\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_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> を利用しています",
"Password" : "パスワード",
@@ -204,11 +207,12 @@
"New password" : "新しいパスワード",
"Change password" : "パスワードを変更",
"Full Name" : "名前",
+ "No display name set" : "表示名が未設定",
"Email" : "メール",
"Your email address" : "あなたのメールアドレス",
"Fill in an email address to enable password recovery and receive notifications" : "パスワードの回復を有効にし、通知を受け取るにはメールアドレスを入力してください",
"No email address set" : "メールアドレスが設定されていません",
- "Profile picture" : "プロフィール写真",
+ "Profile picture" : "プロフィール画像",
"Upload new" : "新たにアップロード",
"Select new from Files" : "新しいファイルを選択",
"Remove image" : "画像を削除",
diff --git a/settings/l10n/ko.js b/settings/l10n/ko.js
index d20da10e8d5..ccd082103af 100644
--- a/settings/l10n/ko.js
+++ b/settings/l10n/ko.js
@@ -87,6 +87,7 @@ OC.L10N.register(
"never" : "없음",
"deleted {userName}" : "{userName} 삭제됨",
"add group" : "그룹 추가",
+ "Changing the password will result in data loss, because data recovery is not available for this user" : "이 사용자에 대해 데이터 복구를 사용할 수 없기 때문에, 암호를 변경하면 데이터를 잃게 됩니다.",
"A valid username must be provided" : "올바른 사용자 이름을 입력해야 함",
"Error creating user" : "사용자 생성 오류",
"A valid password must be provided" : "올바른 암호를 입력해야 함",
@@ -114,7 +115,11 @@ OC.L10N.register(
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP에서 인라인 doc 블록을 삭제하도록 설정되어 있습니다. 일부 코어 앱에 접근할 수 없을 수도 있습니다.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Zend OPcache, eAccelerator 같은 캐시/가속기 문제일 수도 있습니다.",
"Database Performance Info" : "데이터베이스 성능 정보",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "SQLite 데이터베이스를 사용합니다. 큰 규모의 파일을 관리하는 데에는 추천하지 않습니다. 다른 데이터베이스로 이전하려면 다음 명령행 도구를 사용하십시오: 'occ db :convert-type'",
+ "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "데이터베이스로 SQLite를 사용하고 있습니다. 대규모의 파일을 관리하려고 한다면 다른 데이터베이스 백엔드로 전환할 것을 권장합니다.",
+ "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "특히 파일 동기화를 위해 데스크톱 클라이언트를 사용할 예정일 때는, SQLite를 사용하지 않는 것이 좋습니다.",
+ "To migrate to another database use the command line tool: 'occ db:convert-type'" : "다른 데이터베이스로 이전하려면 다음 명령행 도구를 사용하십시오: 'occ db:convert-type'",
+ "Microsoft Windows Platform" : "마이크로소프트 윈도우 플랫폼",
+ "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "서버가 마이크로소프트 윈도우 환경에서 동작하고 있습니다. 최적의 사용자 경험을 위해서는 리눅스를 사용할 것을 권장합니다.",
"Module 'fileinfo' missing" : "모듈 'fileinfo'가 없음",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP 모듈 'fileinfo'가 존재하지 않습니다. MIME 형식 감지 결과를 향상시키기 위하여 이 모듈을 활성화하는 것을 추천합니다.",
"PHP charset is not set to UTF-8" : "PHP 문자 인코딩이 UTF-8이 아님",
@@ -207,6 +212,7 @@ OC.L10N.register(
"New password" : "새 암호",
"Change password" : "암호 변경",
"Full Name" : "전체 이름",
+ "No display name set" : "표시 이름이 설정되지 않음",
"Email" : "이메일",
"Your email address" : "이메일 주소",
"Fill in an email address to enable password recovery and receive notifications" : "이메일 주소를 입력하면 암호 찾기 및 알림 수신이 가능합니다",
diff --git a/settings/l10n/ko.json b/settings/l10n/ko.json
index 91bc64f4f3d..2be72ab0631 100644
--- a/settings/l10n/ko.json
+++ b/settings/l10n/ko.json
@@ -85,6 +85,7 @@
"never" : "없음",
"deleted {userName}" : "{userName} 삭제됨",
"add group" : "그룹 추가",
+ "Changing the password will result in data loss, because data recovery is not available for this user" : "이 사용자에 대해 데이터 복구를 사용할 수 없기 때문에, 암호를 변경하면 데이터를 잃게 됩니다.",
"A valid username must be provided" : "올바른 사용자 이름을 입력해야 함",
"Error creating user" : "사용자 생성 오류",
"A valid password must be provided" : "올바른 암호를 입력해야 함",
@@ -112,7 +113,11 @@
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP에서 인라인 doc 블록을 삭제하도록 설정되어 있습니다. 일부 코어 앱에 접근할 수 없을 수도 있습니다.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Zend OPcache, eAccelerator 같은 캐시/가속기 문제일 수도 있습니다.",
"Database Performance Info" : "데이터베이스 성능 정보",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "SQLite 데이터베이스를 사용합니다. 큰 규모의 파일을 관리하는 데에는 추천하지 않습니다. 다른 데이터베이스로 이전하려면 다음 명령행 도구를 사용하십시오: 'occ db :convert-type'",
+ "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "데이터베이스로 SQLite를 사용하고 있습니다. 대규모의 파일을 관리하려고 한다면 다른 데이터베이스 백엔드로 전환할 것을 권장합니다.",
+ "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "특히 파일 동기화를 위해 데스크톱 클라이언트를 사용할 예정일 때는, SQLite를 사용하지 않는 것이 좋습니다.",
+ "To migrate to another database use the command line tool: 'occ db:convert-type'" : "다른 데이터베이스로 이전하려면 다음 명령행 도구를 사용하십시오: 'occ db:convert-type'",
+ "Microsoft Windows Platform" : "마이크로소프트 윈도우 플랫폼",
+ "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "서버가 마이크로소프트 윈도우 환경에서 동작하고 있습니다. 최적의 사용자 경험을 위해서는 리눅스를 사용할 것을 권장합니다.",
"Module 'fileinfo' missing" : "모듈 'fileinfo'가 없음",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP 모듈 'fileinfo'가 존재하지 않습니다. MIME 형식 감지 결과를 향상시키기 위하여 이 모듈을 활성화하는 것을 추천합니다.",
"PHP charset is not set to UTF-8" : "PHP 문자 인코딩이 UTF-8이 아님",
@@ -205,6 +210,7 @@
"New password" : "새 암호",
"Change password" : "암호 변경",
"Full Name" : "전체 이름",
+ "No display name set" : "표시 이름이 설정되지 않음",
"Email" : "이메일",
"Your email address" : "이메일 주소",
"Fill in an email address to enable password recovery and receive notifications" : "이메일 주소를 입력하면 암호 찾기 및 알림 수신이 가능합니다",
diff --git a/settings/l10n/mn.js b/settings/l10n/mn.js
index 8c4c35c57cc..a0d6b1e14b1 100644
--- a/settings/l10n/mn.js
+++ b/settings/l10n/mn.js
@@ -19,6 +19,7 @@ OC.L10N.register(
"Language changed" : "Хэл солигдлоо",
"Invalid request" : "Буруу хүсэлт",
"Admins can't remove themself from the admin group" : "Админууд өөрсдийгөө Админ бүлгээс хасаж чадахгүй",
+ "Wrong password" : "Нууц үг буруу",
"All" : "Бүгд",
"Password" : "Нууц үг",
"Email" : "И-мэйл",
diff --git a/settings/l10n/mn.json b/settings/l10n/mn.json
index 1f390dd194e..b1332514713 100644
--- a/settings/l10n/mn.json
+++ b/settings/l10n/mn.json
@@ -17,6 +17,7 @@
"Language changed" : "Хэл солигдлоо",
"Invalid request" : "Буруу хүсэлт",
"Admins can't remove themself from the admin group" : "Админууд өөрсдийгөө Админ бүлгээс хасаж чадахгүй",
+ "Wrong password" : "Нууц үг буруу",
"All" : "Бүгд",
"Password" : "Нууц үг",
"Email" : "И-мэйл",
diff --git a/settings/l10n/nb_NO.js b/settings/l10n/nb_NO.js
index cfb5e62e971..df94849c6f3 100644
--- a/settings/l10n/nb_NO.js
+++ b/settings/l10n/nb_NO.js
@@ -87,6 +87,7 @@ OC.L10N.register(
"never" : "aldri",
"deleted {userName}" : "slettet {userName}",
"add group" : "legg til gruppe",
+ "Changing the password will result in data loss, because data recovery is not available for this user" : "Forandring av passordet vil føre til tap av data, fordi datagjennoppretting er utilgjengelig for denne brukeren",
"A valid username must be provided" : "Oppgi et gyldig brukernavn",
"Error creating user" : "Feil ved oppretting av bruker",
"A valid password must be provided" : "Oppgi et gyldig passord",
@@ -114,7 +115,9 @@ OC.L10N.register(
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "Det ser ut for at PHP er satt opp til å fjerne innebygde doc blocks. Dette gjør at flere av kjerneapplikasjonene blir utilgjengelige.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Dette forårsakes sannsynligvis av en bufrer/akselerator, som f.eks. Zend OPcache eller eAccelerator.",
"Database Performance Info" : "Info om database-ytelse",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "SQLite brukes som database. For større installasjoner anbefaler vi å endre dette. For å migrere til en annen database, bruk kommandolinjeverktøyet: 'occ db:convert-type'",
+ "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite er brukt som database. For større installasjoner anbefaler vi å bytte til en annen database-server.",
+ "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "SQLite er spesielt frarådet om man bruker desktopklienten til filsynkronisering",
+ "Microsoft Windows Platform" : "Mocrosoft Windows Platform",
"Module 'fileinfo' missing" : "Modulen 'fileinfo' mangler",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP modulen 'fileinfo' mangler. Vi anbefaler at du aktiverer denne modulen for å kunne detektere mime-typen korrekt.",
"PHP charset is not set to UTF-8" : "PHP-tegnsett er ikke satt til UTF-8",
diff --git a/settings/l10n/nb_NO.json b/settings/l10n/nb_NO.json
index 0ff66420fb3..fceba046507 100644
--- a/settings/l10n/nb_NO.json
+++ b/settings/l10n/nb_NO.json
@@ -85,6 +85,7 @@
"never" : "aldri",
"deleted {userName}" : "slettet {userName}",
"add group" : "legg til gruppe",
+ "Changing the password will result in data loss, because data recovery is not available for this user" : "Forandring av passordet vil føre til tap av data, fordi datagjennoppretting er utilgjengelig for denne brukeren",
"A valid username must be provided" : "Oppgi et gyldig brukernavn",
"Error creating user" : "Feil ved oppretting av bruker",
"A valid password must be provided" : "Oppgi et gyldig passord",
@@ -112,7 +113,9 @@
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "Det ser ut for at PHP er satt opp til å fjerne innebygde doc blocks. Dette gjør at flere av kjerneapplikasjonene blir utilgjengelige.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Dette forårsakes sannsynligvis av en bufrer/akselerator, som f.eks. Zend OPcache eller eAccelerator.",
"Database Performance Info" : "Info om database-ytelse",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "SQLite brukes som database. For større installasjoner anbefaler vi å endre dette. For å migrere til en annen database, bruk kommandolinjeverktøyet: 'occ db:convert-type'",
+ "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite er brukt som database. For større installasjoner anbefaler vi å bytte til en annen database-server.",
+ "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "SQLite er spesielt frarådet om man bruker desktopklienten til filsynkronisering",
+ "Microsoft Windows Platform" : "Mocrosoft Windows Platform",
"Module 'fileinfo' missing" : "Modulen 'fileinfo' mangler",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP modulen 'fileinfo' mangler. Vi anbefaler at du aktiverer denne modulen for å kunne detektere mime-typen korrekt.",
"PHP charset is not set to UTF-8" : "PHP-tegnsett er ikke satt til UTF-8",
diff --git a/settings/l10n/nl.js b/settings/l10n/nl.js
index 720f541895a..9cb1d26fb05 100644
--- a/settings/l10n/nl.js
+++ b/settings/l10n/nl.js
@@ -87,6 +87,7 @@ OC.L10N.register(
"never" : "geen",
"deleted {userName}" : "verwijderd {userName}",
"add group" : "toevoegen groep",
+ "Changing the password will result in data loss, because data recovery is not available for this user" : "Wijzigen van het wachtwoord leidt tot gegevensverlies, omdat gegevensherstel voor deze gebruiker niet beschikbaar is",
"A valid username must be provided" : "Er moet een geldige gebruikersnaam worden opgegeven",
"Error creating user" : "Fout bij aanmaken gebruiker",
"A valid password must be provided" : "Er moet een geldig wachtwoord worden opgegeven",
@@ -114,7 +115,11 @@ OC.L10N.register(
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP is blijkbaar zo ingesteld dat inline doc blokken worden gestript. Hierdoor worden verschillende kernmodules onbruikbaar.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Dit wordt vermoedelijk veroorzaakt door een cache/accelerator, zoals Zend OPcache of eAccelerator.",
"Database Performance Info" : "Database Performance Info",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "SQLite wordt gebruikt als database. Voor grotere installaties adviseren we dit aan te passen. Om te migreren naar een andere database moet u deze commandoregel tool gebruiken: 'occ db:convert-type'",
+ "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite wordt gebruikt als database. Voor grotere installaties adviseren we om te schakelen naar een andere database engine.",
+ "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Vooral wanneer de desktop client wordt gebruik voor bestandssynchronisatie wordt gebruik van sqlite afgeraden.",
+ "To migrate to another database use the command line tool: 'occ db:convert-type'" : "Om te migreren naar een andere database moet u deze commandoregel tool gebruiken: 'occ db:convert-type'",
+ "Microsoft Windows Platform" : "Microsoft Windows Platform",
+ "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Uw server draait op Microsoft Windows. We adviseren om een linux server te gebruiken voor een optimale gebruikerservaring.",
"Module 'fileinfo' missing" : "Module 'fileinfo' ontbreekt",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "De PHP module 'fileinfo' ontbreekt. We adviseren met klem om deze module te activeren om de beste resultaten te bereiken voor mime-type detectie.",
"PHP charset is not set to UTF-8" : "PHP characterset is niet ingesteld op UTF-8",
@@ -207,6 +212,7 @@ OC.L10N.register(
"New password" : "Nieuw",
"Change password" : "Wijzig wachtwoord",
"Full Name" : "Volledige naam",
+ "No display name set" : "Nog geen weergavenaam ingesteld",
"Email" : "E-mailadres",
"Your email address" : "Uw e-mailadres",
"Fill in an email address to enable password recovery and receive notifications" : "Vul een e-mailadres in om wachtwoordherstel mogelijk te maken en meldingen te ontvangen",
diff --git a/settings/l10n/nl.json b/settings/l10n/nl.json
index f63ef534746..97549a6f08d 100644
--- a/settings/l10n/nl.json
+++ b/settings/l10n/nl.json
@@ -85,6 +85,7 @@
"never" : "geen",
"deleted {userName}" : "verwijderd {userName}",
"add group" : "toevoegen groep",
+ "Changing the password will result in data loss, because data recovery is not available for this user" : "Wijzigen van het wachtwoord leidt tot gegevensverlies, omdat gegevensherstel voor deze gebruiker niet beschikbaar is",
"A valid username must be provided" : "Er moet een geldige gebruikersnaam worden opgegeven",
"Error creating user" : "Fout bij aanmaken gebruiker",
"A valid password must be provided" : "Er moet een geldig wachtwoord worden opgegeven",
@@ -112,7 +113,11 @@
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP is blijkbaar zo ingesteld dat inline doc blokken worden gestript. Hierdoor worden verschillende kernmodules onbruikbaar.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Dit wordt vermoedelijk veroorzaakt door een cache/accelerator, zoals Zend OPcache of eAccelerator.",
"Database Performance Info" : "Database Performance Info",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "SQLite wordt gebruikt als database. Voor grotere installaties adviseren we dit aan te passen. Om te migreren naar een andere database moet u deze commandoregel tool gebruiken: 'occ db:convert-type'",
+ "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite wordt gebruikt als database. Voor grotere installaties adviseren we om te schakelen naar een andere database engine.",
+ "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Vooral wanneer de desktop client wordt gebruik voor bestandssynchronisatie wordt gebruik van sqlite afgeraden.",
+ "To migrate to another database use the command line tool: 'occ db:convert-type'" : "Om te migreren naar een andere database moet u deze commandoregel tool gebruiken: 'occ db:convert-type'",
+ "Microsoft Windows Platform" : "Microsoft Windows Platform",
+ "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Uw server draait op Microsoft Windows. We adviseren om een linux server te gebruiken voor een optimale gebruikerservaring.",
"Module 'fileinfo' missing" : "Module 'fileinfo' ontbreekt",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "De PHP module 'fileinfo' ontbreekt. We adviseren met klem om deze module te activeren om de beste resultaten te bereiken voor mime-type detectie.",
"PHP charset is not set to UTF-8" : "PHP characterset is niet ingesteld op UTF-8",
@@ -205,6 +210,7 @@
"New password" : "Nieuw",
"Change password" : "Wijzig wachtwoord",
"Full Name" : "Volledige naam",
+ "No display name set" : "Nog geen weergavenaam ingesteld",
"Email" : "E-mailadres",
"Your email address" : "Uw e-mailadres",
"Fill in an email address to enable password recovery and receive notifications" : "Vul een e-mailadres in om wachtwoordherstel mogelijk te maken en meldingen te ontvangen",
diff --git a/settings/l10n/pl.js b/settings/l10n/pl.js
index ed02403e464..f22ca4148d1 100644
--- a/settings/l10n/pl.js
+++ b/settings/l10n/pl.js
@@ -1,6 +1,7 @@
OC.L10N.register(
"settings",
{
+ "Security & Setup Warnings" : "Ostrzeżenia bezpieczeństwa i konfiguracji",
"Cron" : "Cron",
"Sharing" : "Udostępnianie",
"Security" : "Bezpieczeństwo",
@@ -32,12 +33,23 @@ OC.L10N.register(
"Enabled" : "Włączone",
"Not enabled" : "Nie włączone",
"Recommended" : "Polecane",
+ "Group already exists." : "Grupa już istnieje.",
+ "Unable to add group." : "Nie można dodać grupy.",
+ "Unable to delete group." : "Nie można usunąć grupy.",
+ "log-level out of allowed range" : "wartość log-level spoza dozwolonego zakresu",
"Saved" : "Zapisano",
"test email settings" : "przetestuj ustawienia email",
"If you received this email, the settings seem to be correct." : "Jeśli otrzymałeś ten email, ustawienia wydają się być poprawne.",
"A problem occurred while sending the email. Please revise your settings." : "Pojawił się problem podczas wysyłania email. Proszę sprawdzić ponownie ustawienia",
"Email sent" : "E-mail wysłany",
"You need to set your user email before being able to send test emails." : "Musisz najpierw ustawić użytkownika e-mail, aby móc wysyłać wiadomości testowe.",
+ "Invalid mail address" : "Nieprawidłowy adres email",
+ "Unable to create user." : "Nie można utworzyć użytkownika.",
+ "Your %s account was created" : "Twoje konto %s zostało stworzone",
+ "Unable to delete user." : "Nie można usunąć użytkownika.",
+ "Forbidden" : "Zabronione",
+ "Invalid user" : "Nieprawidłowy użytkownik",
+ "Unable to change mail address" : "Nie można zmienić adresu email",
"Email saved" : "E-mail zapisany",
"Are you really sure you want add \"{domain}\" as trusted domain?" : "Czy jesteś pewien/pewna że chcesz dodać \"{domain}\" jako zaufaną domenę?",
"Add trusted domain" : "Dodaj zaufaną domenę",
@@ -75,9 +87,11 @@ OC.L10N.register(
"never" : "nigdy",
"deleted {userName}" : "usunięto {userName}",
"add group" : "dodaj grupę",
+ "Changing the password will result in data loss, because data recovery is not available for this user" : "Zmiana hasła spowoduje utratę danych, ponieważ odzyskiwanie danych nie jest włączone dla tego użytkownika",
"A valid username must be provided" : "Należy podać prawidłową nazwę użytkownika",
"Error creating user" : "Błąd podczas tworzenia użytkownika",
"A valid password must be provided" : "Należy podać prawidłowe hasło",
+ "A valid email must be provided" : "Podaj poprawny adres email",
"__language_name__" : "polski",
"Personal Info" : "Informacje osobiste",
"SSL root certificates" : "Główny certyfikat SSL",
@@ -99,7 +113,8 @@ OC.L10N.register(
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "Wygląda na to, że ustawienia PHP ucinają bloki wklejonych dokumentów. To sprawi, że niektóre wbudowane aplikacje będą niedostępne.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Dzieje się tak prawdopodobnie przez cache lub akcelerator taki jak Zend OPcache lub eAccelerator.",
"Database Performance Info" : "Informacja o wydajności bazy danych",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "Jako baza danych został użyty SQLite. Dla większych instalacji doradzamy zmianę na inną. Aby zmigrować do innej bazy danych, użyj narzędzia linii poleceń: 'occ db:convert-type'",
+ "Microsoft Windows Platform" : "Platforma Microsoft Windows",
+ "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Twój serwer działa na platformie Windows. Zalecamy Linuxa dla optymalnych doświadczeń użytkownika.",
"Module 'fileinfo' missing" : "Brak modułu „fileinfo”",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Brak modułu PHP „fileinfo”. Zalecamy włączenie tego modułu, aby uzyskać najlepsze wyniki podczas wykrywania typów MIME.",
"PHP charset is not set to UTF-8" : "Kodowanie PHP nie jest ustawione na UTF-8",
@@ -107,6 +122,7 @@ OC.L10N.register(
"Locale not working" : "Lokalizacja nie działa",
"System locale can not be set to a one which supports UTF-8." : "Ustawienia regionalne systemu nie można ustawić na jeden, który obsługuje UTF-8.",
"This means that there might be problems with certain characters in file names." : "Oznacza to, że mogą być problemy z niektórymi znakami w nazwach plików.",
+ "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Zalecamy instalację na Twoim systemie komponentów wymaganych do obsługi języków: %s",
"URL generation in notification emails" : "Generowanie URL w powiadomieniach email",
"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>.",
@@ -131,6 +147,8 @@ OC.L10N.register(
"These groups will still be able to receive shares, but not to initiate them." : "Grupy te nadal będą mogli otrzymywać udostępnione udziały, ale nie do ich inicjowania.",
"Enforce HTTPS" : "Wymuś HTTPS",
"Forces the clients to connect to %s via an encrypted connection." : "Wymusza na klientach na łączenie się %s za pośrednictwem połączenia szyfrowanego.",
+ "Enforce HTTPS for subdomains" : "Wymuś HTTPS dla subdomen",
+ "Forces the clients to connect to %s and subdomains via an encrypted connection." : "Wymusza na klientach połączenie do %s i subdomen za pomocą połączenia szyfrowanego.",
"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." : "Proszę połącz się do twojego %s za pośrednictwem protokołu HTTPS, aby włączyć lub wyłączyć stosowanie protokołu SSL.",
"This is used for sending out notifications." : "To jest używane do wysyłania powiadomień",
"Send mode" : "Tryb wysyłki",
@@ -143,11 +161,14 @@ OC.L10N.register(
"Credentials" : "Poświadczenia",
"SMTP Username" : "Użytkownik SMTP",
"SMTP Password" : "Hasło SMTP",
+ "Store credentials" : "Zapisz poświadczenia",
"Test email settings" : "Ustawienia testowej wiadomości",
"Send email" : "Wyślij email",
"Log level" : "Poziom logów",
+ "Download logfile" : "Pobierz plik log",
"More" : "Więcej",
"Less" : "Mniej",
+ "The logfile is bigger than 100MB. Downloading it may take some time!" : "Plik log jest większy niż 100MB. Ściąganie może trochę potrwać!",
"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",
@@ -157,16 +178,21 @@ OC.L10N.register(
"Documentation:" : "Dokumentacja:",
"User Documentation" : "Dokumentacja użytkownika",
"Admin Documentation" : "Dokumentacja Administratora",
+ "This app cannot be installed because the following dependencies are not fulfilled:" : "Ta aplikacja nie może być zainstalowana, ponieważ nie są spełnione następujące zależności:",
"Update to %s" : "Uaktualnij do %s",
"Enable only for specific groups" : "Włącz tylko dla określonych grup",
"Uninstall App" : "Odinstaluj aplikację",
+ "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>" : "Witaj,<br><br>informujemy, że teraz masz konto na %s .<br><br>Twoja nazwa użytkownika: %s<br>Dostęp pod adresem: <a href=\"%s\">%s</a><br><br>",
"Cheers!" : "Pozdrawiam!",
+ "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Witaj,\n\ninformujemy, że teraz masz konto na %s .\n\nTwoja nazwa użytkownika:: %s\nDostęp pod adresem: %s\n\n",
"Administrator Documentation" : "Dokumentacja administratora",
"Online Documentation" : "Dokumentacja online",
"Forum" : "Forum",
"Bugtracker" : "Zgłaszanie błędów",
"Commercial Support" : "Wsparcie komercyjne",
"Get the apps to sync your files" : "Pobierz aplikacje żeby synchronizować swoje pliki",
+ "Android app" : "Aplikacja Android",
+ "iOS app" : "Aplikacja 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>!" : "Jeśli chcesz wesprzeć projekt\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\">join development</a>\n\t\tlub\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\">spread the word</a>!",
"Show First Run Wizard again" : "Uruchom ponownie kreatora pierwszego uruchomienia",
"You have used <strong>%s</strong> of the available <strong>%s</strong>" : "Wykorzystujesz <strong>%s</strong> z dostępnych <strong>%s</strong>",
@@ -177,9 +203,11 @@ OC.L10N.register(
"New password" : "Nowe hasło",
"Change password" : "Zmień hasło",
"Full Name" : "Pełna nazwa",
+ "No display name set" : "Brak nazwa wyświetlanej",
"Email" : "Email",
"Your email address" : "Twój adres e-mail",
"Fill in an email address to enable password recovery and receive notifications" : "Wypełnij adres email aby włączyć odzyskiwanie hasła oraz otrzymywać powiadomienia",
+ "No email address set" : "Brak adresu email",
"Profile picture" : "Zdjęcie profilu",
"Upload new" : "Wczytaj nowe",
"Select new from Files" : "Wybierz nowe z plików",
@@ -203,10 +231,14 @@ OC.L10N.register(
"Delete Encryption Keys" : "Usuń klucze szyfrujące",
"Show storage location" : "Pokaż miejsce przechowywania",
"Show last log in" : "Pokaż ostatni login",
+ "Send email to new user" : "Wyślij email do nowego użytkownika",
+ "Show email address" : "Pokaż adres email",
"Username" : "Nazwa użytkownika",
+ "E-Mail" : "E-mail",
"Create" : "Utwórz",
"Admin Recovery Password" : "Odzyskiwanie hasła administratora",
"Enter the recovery password in order to recover the users files during password change" : "Wpisz hasło odzyskiwania, aby odzyskać pliki użytkowników podczas zmiany hasła",
+ "Search Users" : "Wyszukaj użytkownika",
"Add Group" : "Dodaj grupę",
"Group" : "Grupa",
"Everyone" : "Wszyscy",
@@ -221,6 +253,7 @@ OC.L10N.register(
"Last Login" : "Ostatnio zalogowany",
"change full name" : "Zmień pełna nazwę",
"set new password" : "ustaw nowe hasło",
+ "change email address" : "zmień adres email",
"Default" : "Domyślny"
},
"nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);");
diff --git a/settings/l10n/pl.json b/settings/l10n/pl.json
index 7173db87e2b..c48ee78662f 100644
--- a/settings/l10n/pl.json
+++ b/settings/l10n/pl.json
@@ -1,4 +1,5 @@
{ "translations": {
+ "Security & Setup Warnings" : "Ostrzeżenia bezpieczeństwa i konfiguracji",
"Cron" : "Cron",
"Sharing" : "Udostępnianie",
"Security" : "Bezpieczeństwo",
@@ -30,12 +31,23 @@
"Enabled" : "Włączone",
"Not enabled" : "Nie włączone",
"Recommended" : "Polecane",
+ "Group already exists." : "Grupa już istnieje.",
+ "Unable to add group." : "Nie można dodać grupy.",
+ "Unable to delete group." : "Nie można usunąć grupy.",
+ "log-level out of allowed range" : "wartość log-level spoza dozwolonego zakresu",
"Saved" : "Zapisano",
"test email settings" : "przetestuj ustawienia email",
"If you received this email, the settings seem to be correct." : "Jeśli otrzymałeś ten email, ustawienia wydają się być poprawne.",
"A problem occurred while sending the email. Please revise your settings." : "Pojawił się problem podczas wysyłania email. Proszę sprawdzić ponownie ustawienia",
"Email sent" : "E-mail wysłany",
"You need to set your user email before being able to send test emails." : "Musisz najpierw ustawić użytkownika e-mail, aby móc wysyłać wiadomości testowe.",
+ "Invalid mail address" : "Nieprawidłowy adres email",
+ "Unable to create user." : "Nie można utworzyć użytkownika.",
+ "Your %s account was created" : "Twoje konto %s zostało stworzone",
+ "Unable to delete user." : "Nie można usunąć użytkownika.",
+ "Forbidden" : "Zabronione",
+ "Invalid user" : "Nieprawidłowy użytkownik",
+ "Unable to change mail address" : "Nie można zmienić adresu email",
"Email saved" : "E-mail zapisany",
"Are you really sure you want add \"{domain}\" as trusted domain?" : "Czy jesteś pewien/pewna że chcesz dodać \"{domain}\" jako zaufaną domenę?",
"Add trusted domain" : "Dodaj zaufaną domenę",
@@ -73,9 +85,11 @@
"never" : "nigdy",
"deleted {userName}" : "usunięto {userName}",
"add group" : "dodaj grupę",
+ "Changing the password will result in data loss, because data recovery is not available for this user" : "Zmiana hasła spowoduje utratę danych, ponieważ odzyskiwanie danych nie jest włączone dla tego użytkownika",
"A valid username must be provided" : "Należy podać prawidłową nazwę użytkownika",
"Error creating user" : "Błąd podczas tworzenia użytkownika",
"A valid password must be provided" : "Należy podać prawidłowe hasło",
+ "A valid email must be provided" : "Podaj poprawny adres email",
"__language_name__" : "polski",
"Personal Info" : "Informacje osobiste",
"SSL root certificates" : "Główny certyfikat SSL",
@@ -97,7 +111,8 @@
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "Wygląda na to, że ustawienia PHP ucinają bloki wklejonych dokumentów. To sprawi, że niektóre wbudowane aplikacje będą niedostępne.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Dzieje się tak prawdopodobnie przez cache lub akcelerator taki jak Zend OPcache lub eAccelerator.",
"Database Performance Info" : "Informacja o wydajności bazy danych",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "Jako baza danych został użyty SQLite. Dla większych instalacji doradzamy zmianę na inną. Aby zmigrować do innej bazy danych, użyj narzędzia linii poleceń: 'occ db:convert-type'",
+ "Microsoft Windows Platform" : "Platforma Microsoft Windows",
+ "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Twój serwer działa na platformie Windows. Zalecamy Linuxa dla optymalnych doświadczeń użytkownika.",
"Module 'fileinfo' missing" : "Brak modułu „fileinfo”",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Brak modułu PHP „fileinfo”. Zalecamy włączenie tego modułu, aby uzyskać najlepsze wyniki podczas wykrywania typów MIME.",
"PHP charset is not set to UTF-8" : "Kodowanie PHP nie jest ustawione na UTF-8",
@@ -105,6 +120,7 @@
"Locale not working" : "Lokalizacja nie działa",
"System locale can not be set to a one which supports UTF-8." : "Ustawienia regionalne systemu nie można ustawić na jeden, który obsługuje UTF-8.",
"This means that there might be problems with certain characters in file names." : "Oznacza to, że mogą być problemy z niektórymi znakami w nazwach plików.",
+ "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Zalecamy instalację na Twoim systemie komponentów wymaganych do obsługi języków: %s",
"URL generation in notification emails" : "Generowanie URL w powiadomieniach email",
"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>.",
@@ -129,6 +145,8 @@
"These groups will still be able to receive shares, but not to initiate them." : "Grupy te nadal będą mogli otrzymywać udostępnione udziały, ale nie do ich inicjowania.",
"Enforce HTTPS" : "Wymuś HTTPS",
"Forces the clients to connect to %s via an encrypted connection." : "Wymusza na klientach na łączenie się %s za pośrednictwem połączenia szyfrowanego.",
+ "Enforce HTTPS for subdomains" : "Wymuś HTTPS dla subdomen",
+ "Forces the clients to connect to %s and subdomains via an encrypted connection." : "Wymusza na klientach połączenie do %s i subdomen za pomocą połączenia szyfrowanego.",
"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." : "Proszę połącz się do twojego %s za pośrednictwem protokołu HTTPS, aby włączyć lub wyłączyć stosowanie protokołu SSL.",
"This is used for sending out notifications." : "To jest używane do wysyłania powiadomień",
"Send mode" : "Tryb wysyłki",
@@ -141,11 +159,14 @@
"Credentials" : "Poświadczenia",
"SMTP Username" : "Użytkownik SMTP",
"SMTP Password" : "Hasło SMTP",
+ "Store credentials" : "Zapisz poświadczenia",
"Test email settings" : "Ustawienia testowej wiadomości",
"Send email" : "Wyślij email",
"Log level" : "Poziom logów",
+ "Download logfile" : "Pobierz plik log",
"More" : "Więcej",
"Less" : "Mniej",
+ "The logfile is bigger than 100MB. Downloading it may take some time!" : "Plik log jest większy niż 100MB. Ściąganie może trochę potrwać!",
"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",
@@ -155,16 +176,21 @@
"Documentation:" : "Dokumentacja:",
"User Documentation" : "Dokumentacja użytkownika",
"Admin Documentation" : "Dokumentacja Administratora",
+ "This app cannot be installed because the following dependencies are not fulfilled:" : "Ta aplikacja nie może być zainstalowana, ponieważ nie są spełnione następujące zależności:",
"Update to %s" : "Uaktualnij do %s",
"Enable only for specific groups" : "Włącz tylko dla określonych grup",
"Uninstall App" : "Odinstaluj aplikację",
+ "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>" : "Witaj,<br><br>informujemy, że teraz masz konto na %s .<br><br>Twoja nazwa użytkownika: %s<br>Dostęp pod adresem: <a href=\"%s\">%s</a><br><br>",
"Cheers!" : "Pozdrawiam!",
+ "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Witaj,\n\ninformujemy, że teraz masz konto na %s .\n\nTwoja nazwa użytkownika:: %s\nDostęp pod adresem: %s\n\n",
"Administrator Documentation" : "Dokumentacja administratora",
"Online Documentation" : "Dokumentacja online",
"Forum" : "Forum",
"Bugtracker" : "Zgłaszanie błędów",
"Commercial Support" : "Wsparcie komercyjne",
"Get the apps to sync your files" : "Pobierz aplikacje żeby synchronizować swoje pliki",
+ "Android app" : "Aplikacja Android",
+ "iOS app" : "Aplikacja 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>!" : "Jeśli chcesz wesprzeć projekt\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\">join development</a>\n\t\tlub\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\">spread the word</a>!",
"Show First Run Wizard again" : "Uruchom ponownie kreatora pierwszego uruchomienia",
"You have used <strong>%s</strong> of the available <strong>%s</strong>" : "Wykorzystujesz <strong>%s</strong> z dostępnych <strong>%s</strong>",
@@ -175,9 +201,11 @@
"New password" : "Nowe hasło",
"Change password" : "Zmień hasło",
"Full Name" : "Pełna nazwa",
+ "No display name set" : "Brak nazwa wyświetlanej",
"Email" : "Email",
"Your email address" : "Twój adres e-mail",
"Fill in an email address to enable password recovery and receive notifications" : "Wypełnij adres email aby włączyć odzyskiwanie hasła oraz otrzymywać powiadomienia",
+ "No email address set" : "Brak adresu email",
"Profile picture" : "Zdjęcie profilu",
"Upload new" : "Wczytaj nowe",
"Select new from Files" : "Wybierz nowe z plików",
@@ -201,10 +229,14 @@
"Delete Encryption Keys" : "Usuń klucze szyfrujące",
"Show storage location" : "Pokaż miejsce przechowywania",
"Show last log in" : "Pokaż ostatni login",
+ "Send email to new user" : "Wyślij email do nowego użytkownika",
+ "Show email address" : "Pokaż adres email",
"Username" : "Nazwa użytkownika",
+ "E-Mail" : "E-mail",
"Create" : "Utwórz",
"Admin Recovery Password" : "Odzyskiwanie hasła administratora",
"Enter the recovery password in order to recover the users files during password change" : "Wpisz hasło odzyskiwania, aby odzyskać pliki użytkowników podczas zmiany hasła",
+ "Search Users" : "Wyszukaj użytkownika",
"Add Group" : "Dodaj grupę",
"Group" : "Grupa",
"Everyone" : "Wszyscy",
@@ -219,6 +251,7 @@
"Last Login" : "Ostatnio zalogowany",
"change full name" : "Zmień pełna nazwę",
"set new password" : "ustaw nowe hasło",
+ "change email address" : "zmień adres email",
"Default" : "Domyślny"
},"pluralForm" :"nplurals=3; plural=(n==1 ? 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/pt_BR.js b/settings/l10n/pt_BR.js
index b55fa78e1cd..98741abc916 100644
--- a/settings/l10n/pt_BR.js
+++ b/settings/l10n/pt_BR.js
@@ -87,6 +87,7 @@ OC.L10N.register(
"never" : "nunca",
"deleted {userName}" : "eliminado {userName}",
"add group" : "adicionar grupo",
+ "Changing the password will result in data loss, because data recovery is not available for this user" : "Trocar a senha irá resultar em perda de dados, porque recuperação de dados não está disponível para este usuário",
"A valid username must be provided" : "Forneça um nome de usuário válido",
"Error creating user" : "Erro ao criar usuário",
"A valid password must be provided" : "Forneça uma senha válida",
@@ -114,7 +115,9 @@ OC.L10N.register(
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP é, aparentemente, a configuração para retirar blocos doc inline. Isso fará com que vários aplicativos do núcleo fiquem inacessíveis.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Isso provavelmente é causado por uma cache/acelerador, como Zend OPcache ou eAccelerator.",
"Database Performance Info" : "Informações de Desempenho do Banco de Dados",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "SQLite é usada como base de dados. Para grandes instalações recomendamos mudar isso. Para migrar para outro banco de dados usar a ferramenta de linha de comando: 'occ db: converter-type'",
+ "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite é usada como base de dados. Para instalações maiores recomendamos mudar para um backend de banco de dados diferente.",
+ "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Especialmente quando se utiliza o cliente de desktop para sincronização de arquivos o uso de SQLite é desencorajado.",
+ "To migrate to another database use the command line tool: 'occ db:convert-type'" : "Para migrar para outro banco de dados usar a ferramenta de linha de comando: 'db occ: converter-type'",
"Microsoft Windows Platform" : "Plataforma Microsoft Windows",
"Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "O servidor está em execução no Microsoft Windows. Recomendamos Linux para uma excelente experiência para o usuário.",
"Module 'fileinfo' missing" : "Módulo 'fileinfo' faltando",
diff --git a/settings/l10n/pt_BR.json b/settings/l10n/pt_BR.json
index b46bfedb48e..05aaa0157b8 100644
--- a/settings/l10n/pt_BR.json
+++ b/settings/l10n/pt_BR.json
@@ -85,6 +85,7 @@
"never" : "nunca",
"deleted {userName}" : "eliminado {userName}",
"add group" : "adicionar grupo",
+ "Changing the password will result in data loss, because data recovery is not available for this user" : "Trocar a senha irá resultar em perda de dados, porque recuperação de dados não está disponível para este usuário",
"A valid username must be provided" : "Forneça um nome de usuário válido",
"Error creating user" : "Erro ao criar usuário",
"A valid password must be provided" : "Forneça uma senha válida",
@@ -112,7 +113,9 @@
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP é, aparentemente, a configuração para retirar blocos doc inline. Isso fará com que vários aplicativos do núcleo fiquem inacessíveis.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Isso provavelmente é causado por uma cache/acelerador, como Zend OPcache ou eAccelerator.",
"Database Performance Info" : "Informações de Desempenho do Banco de Dados",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "SQLite é usada como base de dados. Para grandes instalações recomendamos mudar isso. Para migrar para outro banco de dados usar a ferramenta de linha de comando: 'occ db: converter-type'",
+ "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite é usada como base de dados. Para instalações maiores recomendamos mudar para um backend de banco de dados diferente.",
+ "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Especialmente quando se utiliza o cliente de desktop para sincronização de arquivos o uso de SQLite é desencorajado.",
+ "To migrate to another database use the command line tool: 'occ db:convert-type'" : "Para migrar para outro banco de dados usar a ferramenta de linha de comando: 'db occ: converter-type'",
"Microsoft Windows Platform" : "Plataforma Microsoft Windows",
"Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "O servidor está em execução no Microsoft Windows. Recomendamos Linux para uma excelente experiência para o usuário.",
"Module 'fileinfo' missing" : "Módulo 'fileinfo' faltando",
diff --git a/settings/l10n/pt_PT.js b/settings/l10n/pt_PT.js
index ce2e707597e..31afe303115 100644
--- a/settings/l10n/pt_PT.js
+++ b/settings/l10n/pt_PT.js
@@ -87,6 +87,7 @@ OC.L10N.register(
"A valid username must be provided" : "Deve ser indicado um nome de utilizador válido",
"Error creating user" : "Ocorreu um erro ao criar o utilizador",
"A valid password must be provided" : "Deve ser indicada uma palavra-passe válida",
+ "A valid email must be provided" : "Deve ser fornecido um email válido",
"__language_name__" : "__language_name__",
"Personal Info" : "Informação Pessoal",
"SSL root certificates" : "Certificados de raiz SSL",
@@ -110,7 +111,8 @@ OC.L10N.register(
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP está aparentemente configurado a remover blocos doc em linha. Isto vai fazer algumas aplicações basicas inacessíveis.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Isto é provavelmente causado por uma cache/acelerador como o Zend OPcache or eAcelerador.",
"Database Performance Info" : "Informação do Desempenho da Base de Dados",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "SQLite é usado como base de dados. Para grandes instalações nós recomendamos a alterar isso. Para mudar para outra base de dados use o comando de linha: 'occ db:convert-type'",
+ "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "O uso de SQLite é desencorajado especialmente se estiver a pensar em dar uso ao cliente desktop para sincronizar os seus ficheiros no seu computador.",
+ "Microsoft Windows Platform" : "Plataforma Microsoft Windows ",
"Module 'fileinfo' missing" : "Módulo 'fileinfo' em falta",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "O Módulo PHP 'fileinfo' não se encontra instalado/activado. É fortemente recomendado que active este módulo para obter os melhores resultado com a detecção dos tipos de mime.",
"PHP charset is not set to UTF-8" : "O conjunto de carateres PHP não está definido para UTF-8",
@@ -182,6 +184,7 @@ OC.L10N.register(
"Bugtracker" : "Bugtracker",
"Commercial Support" : "Suporte Comercial",
"Get the apps to sync your files" : "Obtenha as aplicações para sincronizar os seus ficheiros",
+ "Desktop client" : "Cliente Desktop",
"Android app" : "Aplicação Android",
"iOS app" : "Aplicação 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>!" : "Se quer ajudar no projecto\n⇥⇥<a href=\"https://owncloud.org/contribute\"\n⇥⇥⇥target=\"_blank\">aderir desenvolvimento</a>\n⇥⇥ou\n⇥⇥<a href=\"https://owncloud.org/promote\"\n⇥⇥⇥target=\"_blank\">espalhe a palavra</a>!",
diff --git a/settings/l10n/pt_PT.json b/settings/l10n/pt_PT.json
index e6414eee113..8211c024c5b 100644
--- a/settings/l10n/pt_PT.json
+++ b/settings/l10n/pt_PT.json
@@ -85,6 +85,7 @@
"A valid username must be provided" : "Deve ser indicado um nome de utilizador válido",
"Error creating user" : "Ocorreu um erro ao criar o utilizador",
"A valid password must be provided" : "Deve ser indicada uma palavra-passe válida",
+ "A valid email must be provided" : "Deve ser fornecido um email válido",
"__language_name__" : "__language_name__",
"Personal Info" : "Informação Pessoal",
"SSL root certificates" : "Certificados de raiz SSL",
@@ -108,7 +109,8 @@
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP está aparentemente configurado a remover blocos doc em linha. Isto vai fazer algumas aplicações basicas inacessíveis.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Isto é provavelmente causado por uma cache/acelerador como o Zend OPcache or eAcelerador.",
"Database Performance Info" : "Informação do Desempenho da Base de Dados",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "SQLite é usado como base de dados. Para grandes instalações nós recomendamos a alterar isso. Para mudar para outra base de dados use o comando de linha: 'occ db:convert-type'",
+ "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "O uso de SQLite é desencorajado especialmente se estiver a pensar em dar uso ao cliente desktop para sincronizar os seus ficheiros no seu computador.",
+ "Microsoft Windows Platform" : "Plataforma Microsoft Windows ",
"Module 'fileinfo' missing" : "Módulo 'fileinfo' em falta",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "O Módulo PHP 'fileinfo' não se encontra instalado/activado. É fortemente recomendado que active este módulo para obter os melhores resultado com a detecção dos tipos de mime.",
"PHP charset is not set to UTF-8" : "O conjunto de carateres PHP não está definido para UTF-8",
@@ -180,6 +182,7 @@
"Bugtracker" : "Bugtracker",
"Commercial Support" : "Suporte Comercial",
"Get the apps to sync your files" : "Obtenha as aplicações para sincronizar os seus ficheiros",
+ "Desktop client" : "Cliente Desktop",
"Android app" : "Aplicação Android",
"iOS app" : "Aplicação 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>!" : "Se quer ajudar no projecto\n⇥⇥<a href=\"https://owncloud.org/contribute\"\n⇥⇥⇥target=\"_blank\">aderir desenvolvimento</a>\n⇥⇥ou\n⇥⇥<a href=\"https://owncloud.org/promote\"\n⇥⇥⇥target=\"_blank\">espalhe a palavra</a>!",
diff --git a/settings/l10n/ru.js b/settings/l10n/ru.js
index 0ff335755d3..83edce29d60 100644
--- a/settings/l10n/ru.js
+++ b/settings/l10n/ru.js
@@ -1,8 +1,8 @@
OC.L10N.register(
"settings",
{
- "Security & Setup Warnings" : "Предупреждения безопасности и инсталляции",
- "Cron" : "Планировщик задач по расписанию",
+ "Security & Setup Warnings" : "Предупреждения безопасности и настроек",
+ "Cron" : "Cron (планировщик задач)",
"Sharing" : "Общий доступ",
"Security" : "Безопасность",
"Email Server" : "Почтовый сервер",
@@ -10,40 +10,40 @@ OC.L10N.register(
"Authentication error" : "Ошибка аутентификации",
"Your full name has been changed." : "Ваше полное имя было изменено.",
"Unable to change full name" : "Невозможно изменить полное имя",
- "Files decrypted successfully" : "Дешифрование файлов прошло успешно",
+ "Files decrypted successfully" : "Расшифровка файлов прошло успешно",
"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Не удалось расшифровать ваши файлы, проверьте файл owncloud.log или обратитесь к вашему администратору.",
- "Couldn't decrypt your files, check your password and try again" : "Ошибка при дешифровании файлов. Проверьте пароль и повторите попытку",
+ "Couldn't decrypt your files, check your password and try again" : "Ошибка при расшифровке файлов. Проверьте пароль и повторите попытку",
"Encryption keys deleted permanently" : "Ключи шифрования перманентно удалены",
"Couldn't permanently delete your encryption keys, please check your owncloud.log or ask your administrator" : "Не удалось удалить ваши ключи шифрования, проверьте файл owncloud.log или обратитесь к вашему администратору",
"Couldn't remove app." : "Невозможно удалить приложение.",
- "Backups restored successfully" : "Резервная копия успешно восстановлена",
+ "Backups restored successfully" : "Резервные копии успешно восстановлены",
"Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Не удалось восстановить ваши ключи шифрования, проверьте файл owncloud.log или обратитесь к вашему администратору.",
"Language changed" : "Язык изменён",
"Invalid request" : "Неправильный запрос",
- "Admins can't remove themself from the admin group" : "Администратор не может удалить сам себя из группы admin",
+ "Admins can't remove themself from the admin group" : "Администратор не может удалить сам себя из группы администраторов",
"Unable to add user to group %s" : "Невозможно добавить пользователя в группу %s",
"Unable to remove user from group %s" : "Невозможно удалить пользователя из группы %s",
"Couldn't update app." : "Невозможно обновить приложение",
"Wrong password" : "Неправильный пароль",
"No user supplied" : "Пользователь не задан",
- "Please provide an admin recovery password, otherwise all user data will be lost" : "Введите администраторский пароль восстановления, иначе все пользовательские данные будут утеряны",
- "Wrong admin recovery password. Please check the password and try again." : "Неправильный пароль восстановления. Проверьте пароль и попробуйте еще раз.",
+ "Please provide an admin recovery password, otherwise all user data will be lost" : "Введите пароль восстановления администратора, в противном случае все пользовательские данные будут утеряны",
+ "Wrong admin recovery password. Please check the password and try again." : "Неправильный пароль восстановления администратора. Проверьте пароль и попробуйте еще раз.",
"Back-end doesn't support password change, but the users encryption key was successfully updated." : "Используемый механизм не поддерживает смену паролей, но пользовательский ключ шифрования был успешно обновлён",
"Unable to change password" : "Невозможно изменить пароль",
"Enabled" : "Включено",
- "Not enabled" : "Выключено",
+ "Not enabled" : "Не включено",
"Recommended" : "Рекомендовано",
"Group already exists." : "Группа уже существует.",
"Unable to add group." : "Невозможно добавить группу.",
"Unable to delete group." : "Невозможно удалить группу.",
- "log-level out of allowed range" : "Уровень журнала вышел за разрешенный диапазон",
+ "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." : "Возникла проблема при отправке письма. Проверьте ваши настройки.",
+ "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." : "Вы должны настроить свой e-mail пользователя прежде чем отправлять тестовые сообщения.",
- "Invalid mail address" : "Некорректный почтовый адрес",
+ "Invalid mail address" : "Некорректный адрес email",
"Unable to create user." : "Невозможно создать пользователя.",
"Your %s account was created" : "Учетная запись %s создана",
"Unable to delete user." : "Невозможно удалить пользователя.",
@@ -55,16 +55,16 @@ OC.L10N.register(
"Add trusted domain" : "Добавить доверенный домен",
"Sending..." : "Отправляется ...",
"All" : "Все",
- "Please wait...." : "Подождите...",
- "Error while disabling app" : "Ошибка отключения приложения",
+ "Please wait...." : "Пожалуйста подождите...",
+ "Error while disabling app" : "Ошибка при отключении приложения",
"Disable" : "Выключить",
"Enable" : "Включить",
- "Error while enabling app" : "Ошибка включения приложения",
+ "Error while enabling app" : "Ошибка при включении приложения",
"Updating...." : "Обновление...",
"Error while updating app" : "Ошибка при обновлении приложения",
"Updated" : "Обновлено",
"Uninstalling ...." : "Удаление ...",
- "Error while uninstalling app" : "Ошибка при удалении приложения.",
+ "Error while uninstalling app" : "Ошибка при удалении приложения",
"Uninstall" : "Удалить",
"Select a profile picture" : "Выберите аватар",
"Very weak password" : "Очень слабый пароль",
@@ -74,24 +74,25 @@ OC.L10N.register(
"Strong password" : "Стойкий пароль",
"Valid until {date}" : "Действительно до {дата}",
"Delete" : "Удалить",
- "Decrypting files... Please wait, this can take some time." : "Расшифровка файлов... Пожалуйста, подождите, это может занять некоторое время.",
+ "Decrypting files... Please wait, this can take some time." : "Расшифровка файлов... Пожалуйста подождите, это может занять некоторое время.",
"Delete encryption keys permanently." : "Перманентно удалить ключи шифрования. ",
"Restore encryption keys." : "Восстановить ключи шифрования.",
"Groups" : "Группы",
"Unable to delete {objName}" : "Невозможно удалить {objName}",
"Error creating group" : "Ошибка создания группы",
"A valid group name must be provided" : "Введите правильное имя группы",
- "deleted {groupName}" : "удалено {groupName}",
+ "deleted {groupName}" : "удалена {groupName}",
"undo" : "отмена",
- "no group" : "Нет группы",
+ "no group" : "без группы",
"never" : "никогда",
"deleted {userName}" : "удалён {userName}",
"add group" : "добавить группу",
+ "Changing the password will result in data loss, because data recovery is not available for this user" : "Изменение пароля приведёт к потере данных, так как восстановление данных не доступно для этого пользователя",
"A valid username must be provided" : "Укажите правильное имя пользователя",
"Error creating user" : "Ошибка создания пользователя",
- "A valid password must be provided" : "Предоставьте корректный пароль",
- "A valid email must be provided" : "Введите корректный адрес email",
- "__language_name__" : "Русский ",
+ "A valid password must be provided" : "Должен быть указан правильный пароль",
+ "A valid email must be provided" : "Должен быть указан корректный адрес email",
+ "__language_name__" : "Русский",
"Personal Info" : "Личная информация",
"SSL root certificates" : "Корневые сертификаты SSL",
"Encryption" : "Шифрование",
@@ -103,51 +104,55 @@ OC.L10N.register(
"None" : "Отсутствует",
"Login" : "Логин",
"Plain" : "Простой",
- "NT LAN Manager" : "Мендеджер NT LAN",
+ "NT LAN Manager" : "Менеджер NT LAN",
"SSL" : "SSL",
"TLS" : "TLS",
"Security Warning" : "Предупреждение безопасности",
"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Вы обращаетесь к %s используя HTTP. Мы настоятельно рекомендуем вам настроить сервер на использование HTTPS.",
- "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." : "Конфигурационный файл в режиме только для чтения. В связи с этим некоторые настройки веб-интерфейса не возможно изменить. Учтите, что для установки обновлений, вам потребуется самостоятельно разрешить запись в конфигурационный файл.",
+ "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.",
"Database Performance Info" : "Информация о производительности Базы Данных",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "В качестве Базы Данных используется SQLite. Для больших установок рекомендуется использовать другие типы Баз Данных. Чтобы переехать на другую Базу Данных используйте инструмент командной строки: 'ooc: db:conver-type'",
+ "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "В качестве базы данных используется SQLite. Для больших установок мы рекомендуем переключиться на другую серверную базу данных.",
+ "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Особенно вызывает сомнение использование SQLite при синхронизации файлов с использование клиента для ПК.",
+ "To migrate to another database use the command line tool: 'occ db:convert-type'" : "Для перехода на другую базу данных используйте команду: 'occ db:convert-type'",
+ "Microsoft Windows Platform" : "Платформа Microsoft Windows",
+ "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Ваш сервер работает на ОС Microsoft Windows. Мы настоятельно рекомендуем использовать ОС семейства Linux для достижения наилучших условий использования.",
"Module 'fileinfo' missing" : "Модуль 'fileinfo' отсутствует",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP-модуль 'fileinfo' отсутствует. Мы настоятельно рекомендуем включить этот модуль для улучшения определения типов (mime-type) файлов.",
- "PHP charset is not set to UTF-8" : "Кодировка PHP не совпадает с UTF-8",
- "PHP charset is not set to UTF-8. This can cause major issues with non-ASCII characters in file names. We highly recommend to change the value of 'default_charset' php.ini to 'UTF-8'." : "Кодировка PHP не совпадает с UTF-8. Это может вызвать трудности с именами файлов, содержащими нелатинские символы. Мы настоятельно рекомендуем сменить значение переменной default_charset в файле php.ini на UTF-8.",
+ "PHP charset is not set to UTF-8" : "Кодировка PHP не установлена на UTF-8",
+ "PHP charset is not set to UTF-8. This can cause major issues with non-ASCII characters in file names. We highly recommend to change the value of 'default_charset' php.ini to 'UTF-8'." : "Кодировка PHP не установлена на UTF-8. Это может вызвать трудности с именами файлов, содержащими нелатинские символы. Мы настоятельно рекомендуем сменить значение переменной default_charset в файле php.ini на UTF-8.",
"Locale not working" : "Локализация не работает",
"System locale can not be set to a one which supports UTF-8." : "Невозможно установить системную локаль, поддерживающую UTF-8",
"This means that there might be problems with certain characters in file names." : "Это значит, что могут быть проблемы с некоторыми символами в именах файлов.",
"We strongly suggest 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 \"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\".)",
+ "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 \"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.",
- "Last cron was executed at %s. This is more than an hour ago, something seems wrong." : "Последняя cron-задача была запущена: %s. Это было больше часа назад, кажется что-то не так.",
- "Cron was not executed yet!" : "Cron-задачи ещё не запускались!",
+ "Last cron was executed at %s." : "Последняя задача cron была запущена в %s.",
+ "Last cron was executed at %s. This is more than an hour ago, something seems wrong." : "Последняя задача cron запущена в %s. Это было больше часа назад, кажется что-то не так.",
+ "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 зарегестрирован в webcron и будет вызываться каждые 15 минут по http.",
+ "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php зарегистрирован в webcron и будет вызываться каждые 15 минут по http.",
"Use system's cron service to call the cron.php file every 15 minutes." : "Использовать системный cron для вызова cron.php каждые 15 минут.",
"Allow apps to use the Share API" : "Позволить приложениям использовать API общего доступа",
"Allow users to share via link" : "Разрешить пользователям публикации через ссылки",
"Enforce password protection" : "Защита паролем обязательна",
- "Allow public uploads" : "Разрешить открытые загрузки",
- "Allow users to send mail notification for shared files" : "Разрешить пользователям оповещать почтой об открытии доступа к файлам",
- "Set default expiration date" : "Установить срок действия по-умолчанию",
- "Expire after " : "Заканчивается через",
+ "Allow public uploads" : "Разрешить открытые/публичные загрузки",
+ "Allow users to send mail notification for shared files" : "Разрешить пользователям отправлять email об открытии доступа к файлам",
+ "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" : "Разрешить пользователям оповещать почтой других пользователей об открытии доступа к файлам",
+ "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." : "Эти группы смогут получать общие ресурсы, но не могут их принять.",
+ "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 через шифрованное соединение.",
"Enforce HTTPS for subdomains" : "HTTPS соединение обязательно для субдоменов",
@@ -185,7 +190,7 @@ OC.L10N.register(
"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>",
+ "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",
"Administrator Documentation" : "Документация администратора",
@@ -197,18 +202,19 @@ OC.L10N.register(
"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\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\">присоединяйтесь к разработке</a>\n\t\tиди\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\">содействуйте распространению</a>!",
- "Show First Run Wizard again" : "Показать помощник настройки",
+ "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\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\">присоединяйтесь к разработке</a>\n\t\tили\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_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>",
"Password" : "Пароль",
- "Your password was changed" : "Пароль изменён",
+ "Your password was changed" : "Ваш пароль был изменён",
"Unable to change your password" : "Невозможно сменить пароль",
"Current password" : "Текущий пароль",
"New password" : "Новый пароль",
"Change password" : "Сменить пароль",
"Full Name" : "Полное имя",
+ "No display name set" : "Отображаемое имя не указано",
"Email" : "E-mail",
- "Your email address" : "Адрес электронной почты",
+ "Your email address" : "Ваш адрес электронной почты",
"Fill in an email address to enable password recovery and receive notifications" : "Введите свой email-адрес для того, чтобы включить возможность восстановления пароля и получения уведомлений",
"No email address set" : "E-mail не указан",
"Profile picture" : "Аватар",
@@ -217,7 +223,7 @@ OC.L10N.register(
"Remove image" : "Удалить аватар",
"Either png or jpg. Ideally square but you will be able to crop it." : "Допустимые форматы: png и jpg. Если изображение не квадратное, то вам будет предложено обрезать его.",
"Your avatar is provided by your original account." : "Будет использован аватар вашей оригинальной учетной записи.",
- "Cancel" : "Отменить",
+ "Cancel" : "Отмена",
"Choose as profile image" : "Установить как аватар",
"Language" : "Язык",
"Help translate" : "Помочь с переводом",
@@ -226,15 +232,15 @@ OC.L10N.register(
"Issued By" : "Выдан",
"Valid until %s" : "Действительно до %s",
"Import Root Certificate" : "Импортировать корневые сертификаты",
- "The encryption app is no longer enabled, please decrypt all your files" : "Приложение шифрования выключено, расшифруйте все ваши файлы",
+ "The encryption app is no longer enabled, please decrypt all your files" : "Приложение шифрования больше не используется, пожалуйста расшифруйте все ваши файлы",
"Log-in password" : "Пароль входа",
"Decrypt all Files" : "Снять шифрование со всех файлов",
- "Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly." : "Ключи шифрования были архивированы. Если что-то пойдёт не так, вы сможете восстановить ключи. Удаляйте ключи из архива только тогда, когда вы будете уверены, что все файлы были успешно расшифрованы.",
+ "Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly." : "Ключи шифрования были перемещены в папку с резервными копиями. Если что-то пойдёт не так, то вы сможете восстановить ключи. Удаляйте ключи из архива только тогда, когда вы будете уверены, что все файлы были успешно расшифрованы.",
"Restore Encryption Keys" : "Восстановить Ключи Шифрования",
"Delete Encryption Keys" : "Удалить Ключи Шифрования",
"Show storage location" : "Показать местонахождение хранилища",
"Show last log in" : "Показать последний вход в систему",
- "Show user backend" : "Показать пользовательский бэкенд",
+ "Show user backend" : "Показать пользовательскую часть",
"Send email to new user" : "Отправлять сообщение на email новому пользователю",
"Show email address" : "Показывать адрес email",
"Username" : "Имя пользователя",
@@ -242,19 +248,19 @@ OC.L10N.register(
"Create" : "Создать",
"Admin Recovery Password" : "Восстановление пароля администратора",
"Enter the recovery password in order to recover the users files during password change" : "Введите пароль для того, чтобы восстановить файлы пользователей при смене пароля",
- "Search Users" : "Искать пользователей",
+ "Search Users" : "Поиск пользователей",
"Add Group" : "Добавить группу",
"Group" : "Группа",
"Everyone" : "Все",
"Admins" : "Администраторы",
"Default Quota" : "Квота по умолчанию",
"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Пожалуйста, введите квоту на хранилище (например: \"512 MB\" или \"12 GB\")",
- "Unlimited" : "Неограниченно",
- "Other" : "Другое",
+ "Unlimited" : "Неограничено",
+ "Other" : "Другая",
"Group Admin for" : "Для группы Администраторов",
"Quota" : "Квота",
"Storage Location" : "Место хранилища",
- "User Backend" : "Пользовательский бэкенд",
+ "User Backend" : "Пользовательская часть",
"Last Login" : "Последний вход",
"change full name" : "изменить полное имя",
"set new password" : "установить новый пароль",
diff --git a/settings/l10n/ru.json b/settings/l10n/ru.json
index 29d621c40c5..7a58f19d8ce 100644
--- a/settings/l10n/ru.json
+++ b/settings/l10n/ru.json
@@ -1,6 +1,6 @@
{ "translations": {
- "Security & Setup Warnings" : "Предупреждения безопасности и инсталляции",
- "Cron" : "Планировщик задач по расписанию",
+ "Security & Setup Warnings" : "Предупреждения безопасности и настроек",
+ "Cron" : "Cron (планировщик задач)",
"Sharing" : "Общий доступ",
"Security" : "Безопасность",
"Email Server" : "Почтовый сервер",
@@ -8,40 +8,40 @@
"Authentication error" : "Ошибка аутентификации",
"Your full name has been changed." : "Ваше полное имя было изменено.",
"Unable to change full name" : "Невозможно изменить полное имя",
- "Files decrypted successfully" : "Дешифрование файлов прошло успешно",
+ "Files decrypted successfully" : "Расшифровка файлов прошло успешно",
"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Не удалось расшифровать ваши файлы, проверьте файл owncloud.log или обратитесь к вашему администратору.",
- "Couldn't decrypt your files, check your password and try again" : "Ошибка при дешифровании файлов. Проверьте пароль и повторите попытку",
+ "Couldn't decrypt your files, check your password and try again" : "Ошибка при расшифровке файлов. Проверьте пароль и повторите попытку",
"Encryption keys deleted permanently" : "Ключи шифрования перманентно удалены",
"Couldn't permanently delete your encryption keys, please check your owncloud.log or ask your administrator" : "Не удалось удалить ваши ключи шифрования, проверьте файл owncloud.log или обратитесь к вашему администратору",
"Couldn't remove app." : "Невозможно удалить приложение.",
- "Backups restored successfully" : "Резервная копия успешно восстановлена",
+ "Backups restored successfully" : "Резервные копии успешно восстановлены",
"Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Не удалось восстановить ваши ключи шифрования, проверьте файл owncloud.log или обратитесь к вашему администратору.",
"Language changed" : "Язык изменён",
"Invalid request" : "Неправильный запрос",
- "Admins can't remove themself from the admin group" : "Администратор не может удалить сам себя из группы admin",
+ "Admins can't remove themself from the admin group" : "Администратор не может удалить сам себя из группы администраторов",
"Unable to add user to group %s" : "Невозможно добавить пользователя в группу %s",
"Unable to remove user from group %s" : "Невозможно удалить пользователя из группы %s",
"Couldn't update app." : "Невозможно обновить приложение",
"Wrong password" : "Неправильный пароль",
"No user supplied" : "Пользователь не задан",
- "Please provide an admin recovery password, otherwise all user data will be lost" : "Введите администраторский пароль восстановления, иначе все пользовательские данные будут утеряны",
- "Wrong admin recovery password. Please check the password and try again." : "Неправильный пароль восстановления. Проверьте пароль и попробуйте еще раз.",
+ "Please provide an admin recovery password, otherwise all user data will be lost" : "Введите пароль восстановления администратора, в противном случае все пользовательские данные будут утеряны",
+ "Wrong admin recovery password. Please check the password and try again." : "Неправильный пароль восстановления администратора. Проверьте пароль и попробуйте еще раз.",
"Back-end doesn't support password change, but the users encryption key was successfully updated." : "Используемый механизм не поддерживает смену паролей, но пользовательский ключ шифрования был успешно обновлён",
"Unable to change password" : "Невозможно изменить пароль",
"Enabled" : "Включено",
- "Not enabled" : "Выключено",
+ "Not enabled" : "Не включено",
"Recommended" : "Рекомендовано",
"Group already exists." : "Группа уже существует.",
"Unable to add group." : "Невозможно добавить группу.",
"Unable to delete group." : "Невозможно удалить группу.",
- "log-level out of allowed range" : "Уровень журнала вышел за разрешенный диапазон",
+ "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." : "Возникла проблема при отправке письма. Проверьте ваши настройки.",
+ "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." : "Вы должны настроить свой e-mail пользователя прежде чем отправлять тестовые сообщения.",
- "Invalid mail address" : "Некорректный почтовый адрес",
+ "Invalid mail address" : "Некорректный адрес email",
"Unable to create user." : "Невозможно создать пользователя.",
"Your %s account was created" : "Учетная запись %s создана",
"Unable to delete user." : "Невозможно удалить пользователя.",
@@ -53,16 +53,16 @@
"Add trusted domain" : "Добавить доверенный домен",
"Sending..." : "Отправляется ...",
"All" : "Все",
- "Please wait...." : "Подождите...",
- "Error while disabling app" : "Ошибка отключения приложения",
+ "Please wait...." : "Пожалуйста подождите...",
+ "Error while disabling app" : "Ошибка при отключении приложения",
"Disable" : "Выключить",
"Enable" : "Включить",
- "Error while enabling app" : "Ошибка включения приложения",
+ "Error while enabling app" : "Ошибка при включении приложения",
"Updating...." : "Обновление...",
"Error while updating app" : "Ошибка при обновлении приложения",
"Updated" : "Обновлено",
"Uninstalling ...." : "Удаление ...",
- "Error while uninstalling app" : "Ошибка при удалении приложения.",
+ "Error while uninstalling app" : "Ошибка при удалении приложения",
"Uninstall" : "Удалить",
"Select a profile picture" : "Выберите аватар",
"Very weak password" : "Очень слабый пароль",
@@ -72,24 +72,25 @@
"Strong password" : "Стойкий пароль",
"Valid until {date}" : "Действительно до {дата}",
"Delete" : "Удалить",
- "Decrypting files... Please wait, this can take some time." : "Расшифровка файлов... Пожалуйста, подождите, это может занять некоторое время.",
+ "Decrypting files... Please wait, this can take some time." : "Расшифровка файлов... Пожалуйста подождите, это может занять некоторое время.",
"Delete encryption keys permanently." : "Перманентно удалить ключи шифрования. ",
"Restore encryption keys." : "Восстановить ключи шифрования.",
"Groups" : "Группы",
"Unable to delete {objName}" : "Невозможно удалить {objName}",
"Error creating group" : "Ошибка создания группы",
"A valid group name must be provided" : "Введите правильное имя группы",
- "deleted {groupName}" : "удалено {groupName}",
+ "deleted {groupName}" : "удалена {groupName}",
"undo" : "отмена",
- "no group" : "Нет группы",
+ "no group" : "без группы",
"never" : "никогда",
"deleted {userName}" : "удалён {userName}",
"add group" : "добавить группу",
+ "Changing the password will result in data loss, because data recovery is not available for this user" : "Изменение пароля приведёт к потере данных, так как восстановление данных не доступно для этого пользователя",
"A valid username must be provided" : "Укажите правильное имя пользователя",
"Error creating user" : "Ошибка создания пользователя",
- "A valid password must be provided" : "Предоставьте корректный пароль",
- "A valid email must be provided" : "Введите корректный адрес email",
- "__language_name__" : "Русский ",
+ "A valid password must be provided" : "Должен быть указан правильный пароль",
+ "A valid email must be provided" : "Должен быть указан корректный адрес email",
+ "__language_name__" : "Русский",
"Personal Info" : "Личная информация",
"SSL root certificates" : "Корневые сертификаты SSL",
"Encryption" : "Шифрование",
@@ -101,51 +102,55 @@
"None" : "Отсутствует",
"Login" : "Логин",
"Plain" : "Простой",
- "NT LAN Manager" : "Мендеджер NT LAN",
+ "NT LAN Manager" : "Менеджер NT LAN",
"SSL" : "SSL",
"TLS" : "TLS",
"Security Warning" : "Предупреждение безопасности",
"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Вы обращаетесь к %s используя HTTP. Мы настоятельно рекомендуем вам настроить сервер на использование HTTPS.",
- "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." : "Конфигурационный файл в режиме только для чтения. В связи с этим некоторые настройки веб-интерфейса не возможно изменить. Учтите, что для установки обновлений, вам потребуется самостоятельно разрешить запись в конфигурационный файл.",
+ "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.",
"Database Performance Info" : "Информация о производительности Базы Данных",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "В качестве Базы Данных используется SQLite. Для больших установок рекомендуется использовать другие типы Баз Данных. Чтобы переехать на другую Базу Данных используйте инструмент командной строки: 'ooc: db:conver-type'",
+ "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "В качестве базы данных используется SQLite. Для больших установок мы рекомендуем переключиться на другую серверную базу данных.",
+ "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Особенно вызывает сомнение использование SQLite при синхронизации файлов с использование клиента для ПК.",
+ "To migrate to another database use the command line tool: 'occ db:convert-type'" : "Для перехода на другую базу данных используйте команду: 'occ db:convert-type'",
+ "Microsoft Windows Platform" : "Платформа Microsoft Windows",
+ "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Ваш сервер работает на ОС Microsoft Windows. Мы настоятельно рекомендуем использовать ОС семейства Linux для достижения наилучших условий использования.",
"Module 'fileinfo' missing" : "Модуль 'fileinfo' отсутствует",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP-модуль 'fileinfo' отсутствует. Мы настоятельно рекомендуем включить этот модуль для улучшения определения типов (mime-type) файлов.",
- "PHP charset is not set to UTF-8" : "Кодировка PHP не совпадает с UTF-8",
- "PHP charset is not set to UTF-8. This can cause major issues with non-ASCII characters in file names. We highly recommend to change the value of 'default_charset' php.ini to 'UTF-8'." : "Кодировка PHP не совпадает с UTF-8. Это может вызвать трудности с именами файлов, содержащими нелатинские символы. Мы настоятельно рекомендуем сменить значение переменной default_charset в файле php.ini на UTF-8.",
+ "PHP charset is not set to UTF-8" : "Кодировка PHP не установлена на UTF-8",
+ "PHP charset is not set to UTF-8. This can cause major issues with non-ASCII characters in file names. We highly recommend to change the value of 'default_charset' php.ini to 'UTF-8'." : "Кодировка PHP не установлена на UTF-8. Это может вызвать трудности с именами файлов, содержащими нелатинские символы. Мы настоятельно рекомендуем сменить значение переменной default_charset в файле php.ini на UTF-8.",
"Locale not working" : "Локализация не работает",
"System locale can not be set to a one which supports UTF-8." : "Невозможно установить системную локаль, поддерживающую UTF-8",
"This means that there might be problems with certain characters in file names." : "Это значит, что могут быть проблемы с некоторыми символами в именах файлов.",
"We strongly suggest 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 \"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\".)",
+ "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 \"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.",
- "Last cron was executed at %s. This is more than an hour ago, something seems wrong." : "Последняя cron-задача была запущена: %s. Это было больше часа назад, кажется что-то не так.",
- "Cron was not executed yet!" : "Cron-задачи ещё не запускались!",
+ "Last cron was executed at %s." : "Последняя задача cron была запущена в %s.",
+ "Last cron was executed at %s. This is more than an hour ago, something seems wrong." : "Последняя задача cron запущена в %s. Это было больше часа назад, кажется что-то не так.",
+ "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 зарегестрирован в webcron и будет вызываться каждые 15 минут по http.",
+ "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php зарегистрирован в webcron и будет вызываться каждые 15 минут по http.",
"Use system's cron service to call the cron.php file every 15 minutes." : "Использовать системный cron для вызова cron.php каждые 15 минут.",
"Allow apps to use the Share API" : "Позволить приложениям использовать API общего доступа",
"Allow users to share via link" : "Разрешить пользователям публикации через ссылки",
"Enforce password protection" : "Защита паролем обязательна",
- "Allow public uploads" : "Разрешить открытые загрузки",
- "Allow users to send mail notification for shared files" : "Разрешить пользователям оповещать почтой об открытии доступа к файлам",
- "Set default expiration date" : "Установить срок действия по-умолчанию",
- "Expire after " : "Заканчивается через",
+ "Allow public uploads" : "Разрешить открытые/публичные загрузки",
+ "Allow users to send mail notification for shared files" : "Разрешить пользователям отправлять email об открытии доступа к файлам",
+ "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" : "Разрешить пользователям оповещать почтой других пользователей об открытии доступа к файлам",
+ "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." : "Эти группы смогут получать общие ресурсы, но не могут их принять.",
+ "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 через шифрованное соединение.",
"Enforce HTTPS for subdomains" : "HTTPS соединение обязательно для субдоменов",
@@ -183,7 +188,7 @@
"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>",
+ "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",
"Administrator Documentation" : "Документация администратора",
@@ -195,18 +200,19 @@
"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\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\">присоединяйтесь к разработке</a>\n\t\tиди\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\">содействуйте распространению</a>!",
- "Show First Run Wizard again" : "Показать помощник настройки",
+ "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\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\">присоединяйтесь к разработке</a>\n\t\tили\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_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>",
"Password" : "Пароль",
- "Your password was changed" : "Пароль изменён",
+ "Your password was changed" : "Ваш пароль был изменён",
"Unable to change your password" : "Невозможно сменить пароль",
"Current password" : "Текущий пароль",
"New password" : "Новый пароль",
"Change password" : "Сменить пароль",
"Full Name" : "Полное имя",
+ "No display name set" : "Отображаемое имя не указано",
"Email" : "E-mail",
- "Your email address" : "Адрес электронной почты",
+ "Your email address" : "Ваш адрес электронной почты",
"Fill in an email address to enable password recovery and receive notifications" : "Введите свой email-адрес для того, чтобы включить возможность восстановления пароля и получения уведомлений",
"No email address set" : "E-mail не указан",
"Profile picture" : "Аватар",
@@ -215,7 +221,7 @@
"Remove image" : "Удалить аватар",
"Either png or jpg. Ideally square but you will be able to crop it." : "Допустимые форматы: png и jpg. Если изображение не квадратное, то вам будет предложено обрезать его.",
"Your avatar is provided by your original account." : "Будет использован аватар вашей оригинальной учетной записи.",
- "Cancel" : "Отменить",
+ "Cancel" : "Отмена",
"Choose as profile image" : "Установить как аватар",
"Language" : "Язык",
"Help translate" : "Помочь с переводом",
@@ -224,15 +230,15 @@
"Issued By" : "Выдан",
"Valid until %s" : "Действительно до %s",
"Import Root Certificate" : "Импортировать корневые сертификаты",
- "The encryption app is no longer enabled, please decrypt all your files" : "Приложение шифрования выключено, расшифруйте все ваши файлы",
+ "The encryption app is no longer enabled, please decrypt all your files" : "Приложение шифрования больше не используется, пожалуйста расшифруйте все ваши файлы",
"Log-in password" : "Пароль входа",
"Decrypt all Files" : "Снять шифрование со всех файлов",
- "Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly." : "Ключи шифрования были архивированы. Если что-то пойдёт не так, вы сможете восстановить ключи. Удаляйте ключи из архива только тогда, когда вы будете уверены, что все файлы были успешно расшифрованы.",
+ "Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly." : "Ключи шифрования были перемещены в папку с резервными копиями. Если что-то пойдёт не так, то вы сможете восстановить ключи. Удаляйте ключи из архива только тогда, когда вы будете уверены, что все файлы были успешно расшифрованы.",
"Restore Encryption Keys" : "Восстановить Ключи Шифрования",
"Delete Encryption Keys" : "Удалить Ключи Шифрования",
"Show storage location" : "Показать местонахождение хранилища",
"Show last log in" : "Показать последний вход в систему",
- "Show user backend" : "Показать пользовательский бэкенд",
+ "Show user backend" : "Показать пользовательскую часть",
"Send email to new user" : "Отправлять сообщение на email новому пользователю",
"Show email address" : "Показывать адрес email",
"Username" : "Имя пользователя",
@@ -240,19 +246,19 @@
"Create" : "Создать",
"Admin Recovery Password" : "Восстановление пароля администратора",
"Enter the recovery password in order to recover the users files during password change" : "Введите пароль для того, чтобы восстановить файлы пользователей при смене пароля",
- "Search Users" : "Искать пользователей",
+ "Search Users" : "Поиск пользователей",
"Add Group" : "Добавить группу",
"Group" : "Группа",
"Everyone" : "Все",
"Admins" : "Администраторы",
"Default Quota" : "Квота по умолчанию",
"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Пожалуйста, введите квоту на хранилище (например: \"512 MB\" или \"12 GB\")",
- "Unlimited" : "Неограниченно",
- "Other" : "Другое",
+ "Unlimited" : "Неограничено",
+ "Other" : "Другая",
"Group Admin for" : "Для группы Администраторов",
"Quota" : "Квота",
"Storage Location" : "Место хранилища",
- "User Backend" : "Пользовательский бэкенд",
+ "User Backend" : "Пользовательская часть",
"Last Login" : "Последний вход",
"change full name" : "изменить полное имя",
"set new password" : "установить новый пароль",
diff --git a/settings/l10n/si_LK.js b/settings/l10n/si_LK.js
index 619fbb88051..44e1168dec1 100644
--- a/settings/l10n/si_LK.js
+++ b/settings/l10n/si_LK.js
@@ -9,6 +9,7 @@ OC.L10N.register(
"Unable to add user to group %s" : "පරිශීලකයා %s කණ්ඩායමට එකතු කළ නොහැක",
"Unable to remove user from group %s" : "පරිශීලකයා %s කණ්ඩායමින් ඉවත් කළ නොහැක",
"Email saved" : "වි-තැපෑල සුරකින ලදී",
+ "All" : "සියල්ල",
"Disable" : "අක්‍රිය කරන්න",
"Enable" : "සක්‍රිය කරන්න",
"Delete" : "මකා දමන්න",
diff --git a/settings/l10n/si_LK.json b/settings/l10n/si_LK.json
index 3977e75e3d2..6ec5deb5a1f 100644
--- a/settings/l10n/si_LK.json
+++ b/settings/l10n/si_LK.json
@@ -7,6 +7,7 @@
"Unable to add user to group %s" : "පරිශීලකයා %s කණ්ඩායමට එකතු කළ නොහැක",
"Unable to remove user from group %s" : "පරිශීලකයා %s කණ්ඩායමින් ඉවත් කළ නොහැක",
"Email saved" : "වි-තැපෑල සුරකින ලදී",
+ "All" : "සියල්ල",
"Disable" : "අක්‍රිය කරන්න",
"Enable" : "සක්‍රිය කරන්න",
"Delete" : "මකා දමන්න",
diff --git a/settings/l10n/sk_SK.js b/settings/l10n/sk_SK.js
index 471a643f4a5..e320a3bd632 100644
--- a/settings/l10n/sk_SK.js
+++ b/settings/l10n/sk_SK.js
@@ -33,12 +33,23 @@ OC.L10N.register(
"Enabled" : "Povolené",
"Not enabled" : "Zakázané",
"Recommended" : "Odporúčané",
+ "Group already exists." : "Skupina už existuje.",
+ "Unable to add group." : "Nie je možné pridať skupinu.",
+ "Unable to delete group." : "Nie je možné zmazať skupinu.",
+ "log-level out of allowed range" : "úroveň logovania z povoleného rozpätia",
"Saved" : "Uložené",
"test email settings" : "nastavenia testovacieho emailu",
"If you received this email, the settings seem to be correct." : "Ak ste dostali tento email, nastavenie je správne.",
"A problem occurred while sending the email. Please revise your settings." : "Vyskytol sa problém pri odosielaní emailu. Prosím, znovu skontrolujte svoje nastavenia.",
"Email sent" : "Email odoslaný",
"You need to set your user email before being able to send test emails." : "Musíte nastaviť svoj po​​užívateľský email, než budete môcť odoslať testovací email.",
+ "Invalid mail address" : "Neplatná emailová adresa",
+ "Unable to create user." : "Nie je možné vytvoriť používateľa.",
+ "Your %s account was created" : "Váš účet %s bol vytvorený",
+ "Unable to delete user." : "Nie je možné zmazať používateľa.",
+ "Forbidden" : "Zakázané",
+ "Invalid user" : "Neplatný používateľ",
+ "Unable to change mail address" : "Nemožno zmeniť emailovú adresu",
"Email saved" : "Email uložený",
"Are you really sure you want add \"{domain}\" as trusted domain?" : "Ste si istí, že chcete pridať \"{domain}\" medzi dôveryhodné domény?",
"Add trusted domain" : "Pridať dôveryhodnú doménu",
@@ -76,9 +87,11 @@ OC.L10N.register(
"never" : "nikdy",
"deleted {userName}" : "vymazané {userName}",
"add group" : "pridať skupinu",
+ "Changing the password will result in data loss, because data recovery is not available for this user" : "Zmena hesla bude mať za následok stratu dát, pretože obnova dát nie je k dispozícii pre tohto používateľa",
"A valid username must be provided" : "Musíte zadať platné používateľské meno",
"Error creating user" : "Chyba pri vytváraní používateľa",
"A valid password must be provided" : "Musíte zadať platné heslo",
+ "A valid email must be provided" : "Musíte zadať platnú emailovú adresu",
"__language_name__" : "Slovensky",
"Personal Info" : "Osobné informácie",
"SSL root certificates" : "Koreňové SSL certifikáty",
@@ -96,11 +109,14 @@ OC.L10N.register(
"TLS" : "TLS",
"Security Warning" : "Bezpečnostné upozornenie",
"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Do %s máte prístup cez HTTP. Dôrazne odporúčame nakonfigurovať server tak, aby namiesto toho vyžadoval použitie HTTPS.",
+ "Read-Only config enabled" : "Konfigurácia len na čítanie",
+ "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." : "Konfigurácia je nastavená len na čítanie. Toto znemožňuje urobiť niektoré nastavenia prostredníctvom webového rozhrania. Okrem toho, súbor musí byť zapisovanie ručne povolené pre každú aktualizáciu.",
"Setup Warning" : "Nastavenia oznámení a upozornení",
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP je zjavne nastavené, aby odstraňovalo bloky vloženej dokumentácie. To zneprístupní niekoľko základných aplikácií.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "To je pravdepodobne spôsobené cache/akcelerátorom ako napr. Zend OPcache alebo eAccelerator.",
"Database Performance Info" : "Informácie o výkone databázy",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "Ako databáza je použitá SQLite. Pre väčšie inštalácie vám to odporúčame zmeniť. Na prenos do inej databázy použite nástroj príkazového riadka: \"occ db:convert-typ\"",
+ "Microsoft Windows Platform" : "Platforma Microsoft Windows",
+ "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Server je spustený s Microsoft Windows. Pre optimálne používanie odporúčame Linux.",
"Module 'fileinfo' missing" : "Chýba modul 'fileinfo'",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Chýba modul 'fileinfo'. Dôrazne doporučujeme ho povoliť pre dosiahnutie najlepších výsledkov zisťovania mime-typu.",
"PHP charset is not set to UTF-8" : "Znaková sada PHP nie je nastavená na UTF-8",
@@ -108,7 +124,10 @@ OC.L10N.register(
"Locale not working" : "Lokalizácia nefunguje",
"System locale can not be set to a one which supports UTF-8." : "Nie je možné nastaviť znakovú sadu, ktorá podporuje UTF-8.",
"This means that there might be problems with certain characters in file names." : "To znamená, že sa môžu vyskytnúť problémy s niektorými znakmi v názvoch súborov.",
+ "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Dôrazne doporučujeme nainštalovať na váš systém požadované balíčky podporujúce jednu z nasledovných znakových sád: %s.",
"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 \"overwrite.cli.url\" 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 \"overwrite.cli.url\" (Doporučujeme: \"%s\")",
+ "Configuration Checks" : "Overenie konfigurácie",
"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.",
@@ -128,10 +147,13 @@ OC.L10N.register(
"Enforce expiration date" : "Vynútiť dátum expirácie",
"Allow resharing" : "Povoliť zdieľanie ďalej",
"Restrict users to only share with users in their groups" : "Povoliť používateľom zdieľanie len medzi nimi v rámci skupiny",
+ "Allow users to send mail notification for shared files to other users" : "Povoliť používateľom zasielať emailom oznámenie o zdieľaní súborov ostatným používateľom",
"Exclude groups from sharing" : "Vybrať skupiny zo zdieľania",
"These groups will still be able to receive shares, but not to initiate them." : "Tieto skupiny budú môcť stále zdieľať, ale sami nemôžu zdieľať ostatným.",
"Enforce HTTPS" : "Vynútiť HTTPS",
"Forces the clients to connect to %s via an encrypted connection." : "Vynúti pripájanie klientov k %s šifrovaným pripojením.",
+ "Enforce HTTPS for subdomains" : "Vynútiť HTTPS pre subdomény",
+ "Forces the clients to connect to %s and subdomains via an encrypted connection." : "Vynúti pripájanie klientov k %s a subdoménam šifrovaným pripojením.",
"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." : "Pripojte sa k %s cez HTTPS pre povolenie alebo zakázanie vynútenia SSL.",
"This is used for sending out notifications." : "Používa sa na odosielanie upozornení.",
"Send mode" : "Mód odosielania",
@@ -148,8 +170,10 @@ OC.L10N.register(
"Test email settings" : "Nastavenia testovacieho emailu",
"Send email" : "Odoslať email",
"Log level" : "Úroveň záznamu",
+ "Download logfile" : "Stiahnuť súbor logu",
"More" : "Viac",
"Less" : "Menej",
+ "The logfile is bigger than 100MB. Downloading it may take some time!" : "Súbor logu je väčší ako 100MB. Jeho sťahovanie bude chvíľu trvať!",
"Version" : "Verzia",
"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>." : "Vyvinuté <a href=\"http://ownCloud.org/contact\" target=\"_blank\">komunitou ownCloud</a>,<a href=\"https://github.com/owncloud\" target=\"_blank\">zdrojový kód</a> je licencovaný 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" : "Viac aplikácií",
@@ -159,16 +183,20 @@ OC.L10N.register(
"Documentation:" : "Dokumentácia:",
"User Documentation" : "Príručka používateľa",
"Admin Documentation" : "Príručka administrátora",
+ "This app cannot be installed because the following dependencies are not fulfilled:" : "Túto aplikáciu nemožno nainštalovať, pretože nie sú splnené nasledovné závislosti:",
"Update to %s" : "Aktualizovať na %s",
"Enable only for specific groups" : "Povoliť len pre vybrané skupiny",
"Uninstall App" : "Odinštalovanie aplikácie",
+ "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>" : "Dobrý deň,<br><br>toto je oznámenie o novo vytvorenom účte %s.<br><br>Vaše používateľské meno: %s<br>Prihlásiť sa môžete tu: <a href=\"%s\">%s</a><br><br>",
"Cheers!" : "Pekný deň!",
+ "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Ahoj,\n\ntoto je oznámenie o novo vytvorenom účte %s.\n\nVaše používateľské meno: %s\nPrihlásiť sa môžete tu: %s\n\n",
"Administrator Documentation" : "Príručka administrátora",
"Online Documentation" : "Online príručka",
"Forum" : "Fórum",
"Bugtracker" : "Bugtracker",
"Commercial Support" : "Komerčná podpora",
"Get the apps to sync your files" : "Získať aplikácie na synchronizáciu vašich súborov",
+ "Desktop client" : "Desktopový klient",
"Android app" : "Android aplikácia",
"iOS app" : "iOS aplikácia",
"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>!" : "Ak chcete podporiť projekt\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\">pridajte sa do vývoja</a>\n\t\talebo\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\">pomáhajte šíriť povedomie</a>!",
@@ -181,9 +209,11 @@ OC.L10N.register(
"New password" : "Nové heslo",
"Change password" : "Zmeniť heslo",
"Full Name" : "Meno a priezvisko",
+ "No display name set" : "Zobrazované meno nie je nastavené",
"Email" : "Email",
"Your email address" : "Vaša emailová adresa",
"Fill in an email address to enable password recovery and receive notifications" : "Zadajte emailovú adresu pre umožnenie obnovy zabudnutého hesla a pre prijímanie upozornení a oznámení",
+ "No email address set" : "Emailová adresa nie je nastavená",
"Profile picture" : "Avatar",
"Upload new" : "Nahrať nový",
"Select new from Files" : "Vyberte nový zo súborov",
@@ -207,7 +237,11 @@ OC.L10N.register(
"Delete Encryption Keys" : "Vymazať šifrovacie kľúče",
"Show storage location" : "Zobraziť umiestnenie úložiska",
"Show last log in" : "Zobraziť posledné prihlásenie",
+ "Show user backend" : "Zobraziť backend používateľa",
+ "Send email to new user" : "Odoslať email novému používateľovi",
+ "Show email address" : "Zobraziť emailovú adresu",
"Username" : "Používateľské meno",
+ "E-Mail" : "email",
"Create" : "Vytvoriť",
"Admin Recovery Password" : "Obnovenie hesla administrátora",
"Enter the recovery password in order to recover the users files during password change" : "Zadajte heslo pre obnovenie súborov používateľa pri zmene hesla",
@@ -223,9 +257,11 @@ OC.L10N.register(
"Group Admin for" : "Administrátor skupiny",
"Quota" : "Kvóta",
"Storage Location" : "Umiestnenie úložiska",
+ "User Backend" : "Backend používateľa",
"Last Login" : "Posledné prihlásenie",
"change full name" : "zmeniť meno a priezvisko",
"set new password" : "nastaviť nové heslo",
+ "change email address" : "zmeniť emailovú adresu",
"Default" : "Predvolené"
},
"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;");
diff --git a/settings/l10n/sk_SK.json b/settings/l10n/sk_SK.json
index d6fd78b4aaa..24ffec558d2 100644
--- a/settings/l10n/sk_SK.json
+++ b/settings/l10n/sk_SK.json
@@ -31,12 +31,23 @@
"Enabled" : "Povolené",
"Not enabled" : "Zakázané",
"Recommended" : "Odporúčané",
+ "Group already exists." : "Skupina už existuje.",
+ "Unable to add group." : "Nie je možné pridať skupinu.",
+ "Unable to delete group." : "Nie je možné zmazať skupinu.",
+ "log-level out of allowed range" : "úroveň logovania z povoleného rozpätia",
"Saved" : "Uložené",
"test email settings" : "nastavenia testovacieho emailu",
"If you received this email, the settings seem to be correct." : "Ak ste dostali tento email, nastavenie je správne.",
"A problem occurred while sending the email. Please revise your settings." : "Vyskytol sa problém pri odosielaní emailu. Prosím, znovu skontrolujte svoje nastavenia.",
"Email sent" : "Email odoslaný",
"You need to set your user email before being able to send test emails." : "Musíte nastaviť svoj po​​užívateľský email, než budete môcť odoslať testovací email.",
+ "Invalid mail address" : "Neplatná emailová adresa",
+ "Unable to create user." : "Nie je možné vytvoriť používateľa.",
+ "Your %s account was created" : "Váš účet %s bol vytvorený",
+ "Unable to delete user." : "Nie je možné zmazať používateľa.",
+ "Forbidden" : "Zakázané",
+ "Invalid user" : "Neplatný používateľ",
+ "Unable to change mail address" : "Nemožno zmeniť emailovú adresu",
"Email saved" : "Email uložený",
"Are you really sure you want add \"{domain}\" as trusted domain?" : "Ste si istí, že chcete pridať \"{domain}\" medzi dôveryhodné domény?",
"Add trusted domain" : "Pridať dôveryhodnú doménu",
@@ -74,9 +85,11 @@
"never" : "nikdy",
"deleted {userName}" : "vymazané {userName}",
"add group" : "pridať skupinu",
+ "Changing the password will result in data loss, because data recovery is not available for this user" : "Zmena hesla bude mať za následok stratu dát, pretože obnova dát nie je k dispozícii pre tohto používateľa",
"A valid username must be provided" : "Musíte zadať platné používateľské meno",
"Error creating user" : "Chyba pri vytváraní používateľa",
"A valid password must be provided" : "Musíte zadať platné heslo",
+ "A valid email must be provided" : "Musíte zadať platnú emailovú adresu",
"__language_name__" : "Slovensky",
"Personal Info" : "Osobné informácie",
"SSL root certificates" : "Koreňové SSL certifikáty",
@@ -94,11 +107,14 @@
"TLS" : "TLS",
"Security Warning" : "Bezpečnostné upozornenie",
"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Do %s máte prístup cez HTTP. Dôrazne odporúčame nakonfigurovať server tak, aby namiesto toho vyžadoval použitie HTTPS.",
+ "Read-Only config enabled" : "Konfigurácia len na čítanie",
+ "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." : "Konfigurácia je nastavená len na čítanie. Toto znemožňuje urobiť niektoré nastavenia prostredníctvom webového rozhrania. Okrem toho, súbor musí byť zapisovanie ručne povolené pre každú aktualizáciu.",
"Setup Warning" : "Nastavenia oznámení a upozornení",
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP je zjavne nastavené, aby odstraňovalo bloky vloženej dokumentácie. To zneprístupní niekoľko základných aplikácií.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "To je pravdepodobne spôsobené cache/akcelerátorom ako napr. Zend OPcache alebo eAccelerator.",
"Database Performance Info" : "Informácie o výkone databázy",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "Ako databáza je použitá SQLite. Pre väčšie inštalácie vám to odporúčame zmeniť. Na prenos do inej databázy použite nástroj príkazového riadka: \"occ db:convert-typ\"",
+ "Microsoft Windows Platform" : "Platforma Microsoft Windows",
+ "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Server je spustený s Microsoft Windows. Pre optimálne používanie odporúčame Linux.",
"Module 'fileinfo' missing" : "Chýba modul 'fileinfo'",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Chýba modul 'fileinfo'. Dôrazne doporučujeme ho povoliť pre dosiahnutie najlepších výsledkov zisťovania mime-typu.",
"PHP charset is not set to UTF-8" : "Znaková sada PHP nie je nastavená na UTF-8",
@@ -106,7 +122,10 @@
"Locale not working" : "Lokalizácia nefunguje",
"System locale can not be set to a one which supports UTF-8." : "Nie je možné nastaviť znakovú sadu, ktorá podporuje UTF-8.",
"This means that there might be problems with certain characters in file names." : "To znamená, že sa môžu vyskytnúť problémy s niektorými znakmi v názvoch súborov.",
+ "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Dôrazne doporučujeme nainštalovať na váš systém požadované balíčky podporujúce jednu z nasledovných znakových sád: %s.",
"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 \"overwrite.cli.url\" 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 \"overwrite.cli.url\" (Doporučujeme: \"%s\")",
+ "Configuration Checks" : "Overenie konfigurácie",
"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.",
@@ -126,10 +145,13 @@
"Enforce expiration date" : "Vynútiť dátum expirácie",
"Allow resharing" : "Povoliť zdieľanie ďalej",
"Restrict users to only share with users in their groups" : "Povoliť používateľom zdieľanie len medzi nimi v rámci skupiny",
+ "Allow users to send mail notification for shared files to other users" : "Povoliť používateľom zasielať emailom oznámenie o zdieľaní súborov ostatným používateľom",
"Exclude groups from sharing" : "Vybrať skupiny zo zdieľania",
"These groups will still be able to receive shares, but not to initiate them." : "Tieto skupiny budú môcť stále zdieľať, ale sami nemôžu zdieľať ostatným.",
"Enforce HTTPS" : "Vynútiť HTTPS",
"Forces the clients to connect to %s via an encrypted connection." : "Vynúti pripájanie klientov k %s šifrovaným pripojením.",
+ "Enforce HTTPS for subdomains" : "Vynútiť HTTPS pre subdomény",
+ "Forces the clients to connect to %s and subdomains via an encrypted connection." : "Vynúti pripájanie klientov k %s a subdoménam šifrovaným pripojením.",
"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." : "Pripojte sa k %s cez HTTPS pre povolenie alebo zakázanie vynútenia SSL.",
"This is used for sending out notifications." : "Používa sa na odosielanie upozornení.",
"Send mode" : "Mód odosielania",
@@ -146,8 +168,10 @@
"Test email settings" : "Nastavenia testovacieho emailu",
"Send email" : "Odoslať email",
"Log level" : "Úroveň záznamu",
+ "Download logfile" : "Stiahnuť súbor logu",
"More" : "Viac",
"Less" : "Menej",
+ "The logfile is bigger than 100MB. Downloading it may take some time!" : "Súbor logu je väčší ako 100MB. Jeho sťahovanie bude chvíľu trvať!",
"Version" : "Verzia",
"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>." : "Vyvinuté <a href=\"http://ownCloud.org/contact\" target=\"_blank\">komunitou ownCloud</a>,<a href=\"https://github.com/owncloud\" target=\"_blank\">zdrojový kód</a> je licencovaný 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" : "Viac aplikácií",
@@ -157,16 +181,20 @@
"Documentation:" : "Dokumentácia:",
"User Documentation" : "Príručka používateľa",
"Admin Documentation" : "Príručka administrátora",
+ "This app cannot be installed because the following dependencies are not fulfilled:" : "Túto aplikáciu nemožno nainštalovať, pretože nie sú splnené nasledovné závislosti:",
"Update to %s" : "Aktualizovať na %s",
"Enable only for specific groups" : "Povoliť len pre vybrané skupiny",
"Uninstall App" : "Odinštalovanie aplikácie",
+ "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>" : "Dobrý deň,<br><br>toto je oznámenie o novo vytvorenom účte %s.<br><br>Vaše používateľské meno: %s<br>Prihlásiť sa môžete tu: <a href=\"%s\">%s</a><br><br>",
"Cheers!" : "Pekný deň!",
+ "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Ahoj,\n\ntoto je oznámenie o novo vytvorenom účte %s.\n\nVaše používateľské meno: %s\nPrihlásiť sa môžete tu: %s\n\n",
"Administrator Documentation" : "Príručka administrátora",
"Online Documentation" : "Online príručka",
"Forum" : "Fórum",
"Bugtracker" : "Bugtracker",
"Commercial Support" : "Komerčná podpora",
"Get the apps to sync your files" : "Získať aplikácie na synchronizáciu vašich súborov",
+ "Desktop client" : "Desktopový klient",
"Android app" : "Android aplikácia",
"iOS app" : "iOS aplikácia",
"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>!" : "Ak chcete podporiť projekt\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\">pridajte sa do vývoja</a>\n\t\talebo\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\">pomáhajte šíriť povedomie</a>!",
@@ -179,9 +207,11 @@
"New password" : "Nové heslo",
"Change password" : "Zmeniť heslo",
"Full Name" : "Meno a priezvisko",
+ "No display name set" : "Zobrazované meno nie je nastavené",
"Email" : "Email",
"Your email address" : "Vaša emailová adresa",
"Fill in an email address to enable password recovery and receive notifications" : "Zadajte emailovú adresu pre umožnenie obnovy zabudnutého hesla a pre prijímanie upozornení a oznámení",
+ "No email address set" : "Emailová adresa nie je nastavená",
"Profile picture" : "Avatar",
"Upload new" : "Nahrať nový",
"Select new from Files" : "Vyberte nový zo súborov",
@@ -205,7 +235,11 @@
"Delete Encryption Keys" : "Vymazať šifrovacie kľúče",
"Show storage location" : "Zobraziť umiestnenie úložiska",
"Show last log in" : "Zobraziť posledné prihlásenie",
+ "Show user backend" : "Zobraziť backend používateľa",
+ "Send email to new user" : "Odoslať email novému používateľovi",
+ "Show email address" : "Zobraziť emailovú adresu",
"Username" : "Používateľské meno",
+ "E-Mail" : "email",
"Create" : "Vytvoriť",
"Admin Recovery Password" : "Obnovenie hesla administrátora",
"Enter the recovery password in order to recover the users files during password change" : "Zadajte heslo pre obnovenie súborov používateľa pri zmene hesla",
@@ -221,9 +255,11 @@
"Group Admin for" : "Administrátor skupiny",
"Quota" : "Kvóta",
"Storage Location" : "Umiestnenie úložiska",
+ "User Backend" : "Backend používateľa",
"Last Login" : "Posledné prihlásenie",
"change full name" : "zmeniť meno a priezvisko",
"set new password" : "nastaviť nové heslo",
+ "change email address" : "zmeniť emailovú adresu",
"Default" : "Predvolené"
},"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"
} \ No newline at end of file
diff --git a/settings/l10n/sv.js b/settings/l10n/sv.js
index 19211bf2e62..66b17fd6fb5 100644
--- a/settings/l10n/sv.js
+++ b/settings/l10n/sv.js
@@ -114,7 +114,7 @@ OC.L10N.register(
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP är tydligen inställd för att rensa inline doc block. Detta kommer att göra flera kärnapplikationer otillgängliga.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Detta orsakas troligtvis av en cache/accelerator som t ex Zend OPchache eller eAccelerator.",
"Database Performance Info" : "Databasprestanda Information",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "SQLite används som databas. För större installationer rekommenderar vi att ändra på detta. För att migrera till en annan databas, använd kommandoverktyget: 'occ db:convert-type'",
+ "Microsoft Windows Platform" : "Microsoft Windows-platform",
"Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Din server använder Microsoft Windows. Vi rekommenderar starkt Linux för en optimal användarerfarenhet.",
"Module 'fileinfo' missing" : "Modulen \"fileinfo\" saknas",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP-modulen 'fileinfo' saknas. Vi rekommenderar starkt att aktivera den här modulen för att kunna upptäcka korrekt mime-typ.",
@@ -208,6 +208,7 @@ OC.L10N.register(
"New password" : "Nytt lösenord",
"Change password" : "Ändra lösenord",
"Full Name" : "Hela namnet",
+ "No display name set" : "Inget visningsnamn angivet",
"Email" : "E-post",
"Your email address" : "Din e-postadress",
"Fill in an email address to enable password recovery and receive notifications" : "Fyll i en e-postadress för att aktivera återställning av lösenord och mottagande av notifieringar",
diff --git a/settings/l10n/sv.json b/settings/l10n/sv.json
index 8d5d00a172e..e7ad686aaf7 100644
--- a/settings/l10n/sv.json
+++ b/settings/l10n/sv.json
@@ -112,7 +112,7 @@
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP är tydligen inställd för att rensa inline doc block. Detta kommer att göra flera kärnapplikationer otillgängliga.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Detta orsakas troligtvis av en cache/accelerator som t ex Zend OPchache eller eAccelerator.",
"Database Performance Info" : "Databasprestanda Information",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "SQLite används som databas. För större installationer rekommenderar vi att ändra på detta. För att migrera till en annan databas, använd kommandoverktyget: 'occ db:convert-type'",
+ "Microsoft Windows Platform" : "Microsoft Windows-platform",
"Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Din server använder Microsoft Windows. Vi rekommenderar starkt Linux för en optimal användarerfarenhet.",
"Module 'fileinfo' missing" : "Modulen \"fileinfo\" saknas",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP-modulen 'fileinfo' saknas. Vi rekommenderar starkt att aktivera den här modulen för att kunna upptäcka korrekt mime-typ.",
@@ -206,6 +206,7 @@
"New password" : "Nytt lösenord",
"Change password" : "Ändra lösenord",
"Full Name" : "Hela namnet",
+ "No display name set" : "Inget visningsnamn angivet",
"Email" : "E-post",
"Your email address" : "Din e-postadress",
"Fill in an email address to enable password recovery and receive notifications" : "Fyll i en e-postadress för att aktivera återställning av lösenord och mottagande av notifieringar",
diff --git a/settings/l10n/tr.js b/settings/l10n/tr.js
index 9c0d78265e1..60ed7d4d385 100644
--- a/settings/l10n/tr.js
+++ b/settings/l10n/tr.js
@@ -87,6 +87,7 @@ OC.L10N.register(
"never" : "hiçbir zaman",
"deleted {userName}" : "{userName} silindi",
"add group" : "grup ekle",
+ "Changing the password will result in data loss, because data recovery is not available for this user" : "Parolayı değiştirmek, bu kullanıcı için veri kurtarması kullanılamadığından veri kaybına sebep olacak",
"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ı",
@@ -114,7 +115,10 @@ OC.L10N.register(
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP satırıçi doc bloklarını ayıklamak üzere yapılandırılmış gibi görünüyor. Bu, bazı çekirdek (core) uygulamalarını erişilemez yapacak.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Bu, muhtemelen Zend OPcache veya eAccelerator gibi bir önbellek/hızlandırıcı nedeniyle gerçekleşir.",
"Database Performance Info" : "Veritabanı Başarım Bilgisi",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "Veritabanı olarak SQLite kullanılıyor. Daha büyük kurulumlar için bunu değiştirmenizi öneririz. Farklı bir veritabanına geçiş yapmak için komut satırı aracını kullanın: 'occ db:convert-type'",
+ "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "Veritabanı olarak SQLite kullanıldı. Daha büyük kurulumlar için farklı bir veritabanına geçmenizi öneriyoruz.",
+ "To migrate to another database use the command line tool: 'occ db:convert-type'" : "Başka bir veritabanına eşitlemek için komut satırı aracını kullanın: 'occ db:convert-type'",
+ "Microsoft Windows Platform" : "Microsoft Windows Platformu",
+ "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Sunucunuz, Microsoft Windows ile çalışıyor. En uygun kullanıcı deneyimi için şiddetle Linux'u öneriyoruz.",
"Module 'fileinfo' missing" : "Modül 'fileinfo' kayıp",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP modülü 'fileinfo' kayıp. MIME türü tanıma ile en iyi sonuçları elde etmek için bu modülü etkinleştirmenizi öneririz.",
"PHP charset is not set to UTF-8" : "PHP karakter kümesi UTF-8 olarak ayarlı değil",
@@ -176,7 +180,7 @@ OC.L10N.register(
"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",
"Add your app" : "Uygulamanızı ekleyin",
- "by" : "oluşturan",
+ "by" : "Yazan:",
"licensed" : "lisanslı",
"Documentation:" : "Belgelendirme:",
"User Documentation" : "Kullanıcı Belgelendirmesi",
@@ -207,9 +211,11 @@ OC.L10N.register(
"New password" : "Yeni parola",
"Change password" : "Parola değiştir",
"Full Name" : "Tam Adı",
+ "No display name set" : "Ekran adı ayarlanmamış",
"Email" : "E-posta",
"Your email address" : "E-posta adresiniz",
"Fill in an email address to enable password recovery and receive notifications" : "Parola kurtarmayı ve bildirim almayı açmak için bir e-posta adresi girin",
+ "No email address set" : "E-posta adresi ayarlanmamış",
"Profile picture" : "Profil resmi",
"Upload new" : "Yeni yükle",
"Select new from Files" : "Dosyalardan seç",
diff --git a/settings/l10n/tr.json b/settings/l10n/tr.json
index fe1d7871fe2..4c50b86d2eb 100644
--- a/settings/l10n/tr.json
+++ b/settings/l10n/tr.json
@@ -85,6 +85,7 @@
"never" : "hiçbir zaman",
"deleted {userName}" : "{userName} silindi",
"add group" : "grup ekle",
+ "Changing the password will result in data loss, because data recovery is not available for this user" : "Parolayı değiştirmek, bu kullanıcı için veri kurtarması kullanılamadığından veri kaybına sebep olacak",
"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ı",
@@ -112,7 +113,10 @@
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP satırıçi doc bloklarını ayıklamak üzere yapılandırılmış gibi görünüyor. Bu, bazı çekirdek (core) uygulamalarını erişilemez yapacak.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Bu, muhtemelen Zend OPcache veya eAccelerator gibi bir önbellek/hızlandırıcı nedeniyle gerçekleşir.",
"Database Performance Info" : "Veritabanı Başarım Bilgisi",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "Veritabanı olarak SQLite kullanılıyor. Daha büyük kurulumlar için bunu değiştirmenizi öneririz. Farklı bir veritabanına geçiş yapmak için komut satırı aracını kullanın: 'occ db:convert-type'",
+ "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "Veritabanı olarak SQLite kullanıldı. Daha büyük kurulumlar için farklı bir veritabanına geçmenizi öneriyoruz.",
+ "To migrate to another database use the command line tool: 'occ db:convert-type'" : "Başka bir veritabanına eşitlemek için komut satırı aracını kullanın: 'occ db:convert-type'",
+ "Microsoft Windows Platform" : "Microsoft Windows Platformu",
+ "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Sunucunuz, Microsoft Windows ile çalışıyor. En uygun kullanıcı deneyimi için şiddetle Linux'u öneriyoruz.",
"Module 'fileinfo' missing" : "Modül 'fileinfo' kayıp",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP modülü 'fileinfo' kayıp. MIME türü tanıma ile en iyi sonuçları elde etmek için bu modülü etkinleştirmenizi öneririz.",
"PHP charset is not set to UTF-8" : "PHP karakter kümesi UTF-8 olarak ayarlı değil",
@@ -174,7 +178,7 @@
"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",
"Add your app" : "Uygulamanızı ekleyin",
- "by" : "oluşturan",
+ "by" : "Yazan:",
"licensed" : "lisanslı",
"Documentation:" : "Belgelendirme:",
"User Documentation" : "Kullanıcı Belgelendirmesi",
@@ -205,9 +209,11 @@
"New password" : "Yeni parola",
"Change password" : "Parola değiştir",
"Full Name" : "Tam Adı",
+ "No display name set" : "Ekran adı ayarlanmamış",
"Email" : "E-posta",
"Your email address" : "E-posta adresiniz",
"Fill in an email address to enable password recovery and receive notifications" : "Parola kurtarmayı ve bildirim almayı açmak için bir e-posta adresi girin",
+ "No email address set" : "E-posta adresi ayarlanmamış",
"Profile picture" : "Profil resmi",
"Upload new" : "Yeni yükle",
"Select new from Files" : "Dosyalardan seç",
diff --git a/settings/l10n/uk.js b/settings/l10n/uk.js
index eab0685320e..f4eb63c3f93 100644
--- a/settings/l10n/uk.js
+++ b/settings/l10n/uk.js
@@ -114,7 +114,6 @@ OC.L10N.register(
"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.",
"Database Performance Info" : "Інформація продуктивності баз даних",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "В якості бази даних використовується SQLite. Для більш навантажених серверів, ми рекомендуємо користуватися іншими типами баз даних. Для зміни типу бази даних використовуйте інструмент командного рядка: 'occ db:convert-type'",
"Module 'fileinfo' missing" : "Модуль 'fileinfo' відсутній",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP модуль 'fileinfo' відсутній. Ми наполегливо рекомендуємо увімкнути цей модуль, щоб отримати кращі результати при виявленні MIME-типів.",
"PHP charset is not set to UTF-8" : "Кодування PHP не співпадає з UTF-8",
diff --git a/settings/l10n/uk.json b/settings/l10n/uk.json
index 964d2e16bca..aae730eefcf 100644
--- a/settings/l10n/uk.json
+++ b/settings/l10n/uk.json
@@ -112,7 +112,6 @@
"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.",
"Database Performance Info" : "Інформація продуктивності баз даних",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "В якості бази даних використовується SQLite. Для більш навантажених серверів, ми рекомендуємо користуватися іншими типами баз даних. Для зміни типу бази даних використовуйте інструмент командного рядка: 'occ db:convert-type'",
"Module 'fileinfo' missing" : "Модуль 'fileinfo' відсутній",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP модуль 'fileinfo' відсутній. Ми наполегливо рекомендуємо увімкнути цей модуль, щоб отримати кращі результати при виявленні MIME-типів.",
"PHP charset is not set to UTF-8" : "Кодування PHP не співпадає з UTF-8",
diff --git a/settings/l10n/zh_CN.js b/settings/l10n/zh_CN.js
index 23c3d927474..2f894e2fad8 100644
--- a/settings/l10n/zh_CN.js
+++ b/settings/l10n/zh_CN.js
@@ -94,7 +94,6 @@ OC.L10N.register(
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP 被设置为移除行内 <doc> 块,这将导致数个核心应用无法访问。",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "这可能是由缓存/加速器造成的,例如 Zend OPcache 或 eAccelerator。",
"Database Performance Info" : "数据库性能信息",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "SQLite 正在使用。我们建议大型网站切换到其他数据库。请使用命令行工具:“occ db:convert-type”迁移数据库",
"Module 'fileinfo' missing" : "模块'文件信息'丢失",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP模块'文件信息'丢失. 我们强烈建议启用此模块以便mime类型检测取得最佳结果.",
"PHP charset is not set to UTF-8" : "PHP字符集没有设置为UTF-8",
diff --git a/settings/l10n/zh_CN.json b/settings/l10n/zh_CN.json
index 0f870b0b624..d7b87f8703c 100644
--- a/settings/l10n/zh_CN.json
+++ b/settings/l10n/zh_CN.json
@@ -92,7 +92,6 @@
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP 被设置为移除行内 <doc> 块,这将导致数个核心应用无法访问。",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "这可能是由缓存/加速器造成的,例如 Zend OPcache 或 eAccelerator。",
"Database Performance Info" : "数据库性能信息",
- "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" : "SQLite 正在使用。我们建议大型网站切换到其他数据库。请使用命令行工具:“occ db:convert-type”迁移数据库",
"Module 'fileinfo' missing" : "模块'文件信息'丢失",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP模块'文件信息'丢失. 我们强烈建议启用此模块以便mime类型检测取得最佳结果.",
"PHP charset is not set to UTF-8" : "PHP字符集没有设置为UTF-8",
diff --git a/settings/middleware/subadminmiddleware.php b/settings/middleware/subadminmiddleware.php
index a5c005e3148..52b77cd7e4f 100644
--- a/settings/middleware/subadminmiddleware.php
+++ b/settings/middleware/subadminmiddleware.php
@@ -59,7 +59,9 @@ class SubadminMiddleware extends Middleware {
* @return TemplateResponse
*/
public function afterException($controller, $methodName, \Exception $exception) {
- return new TemplateResponse('core', '403', array(), 'guest');
+ $response = new TemplateResponse('core', '403', array(), 'guest');
+ $response->setStatus(Http::STATUS_FORBIDDEN);
+ return $response;
}
}
diff --git a/settings/templates/admin.php b/settings/templates/admin.php
index 65c6359e509..fb4662b5476 100644
--- a/settings/templates/admin.php
+++ b/settings/templates/admin.php
@@ -114,8 +114,18 @@ if ($_['databaseOverload']) {
<div class="section">
<h2><?php p($l->t('Database Performance Info'));?></h2>
- <p class="securitywarning">
- <?php p($l->t('SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: \'occ db:convert-type\'')); ?>
+ <p>
+ <strong>
+ <?php p($l->t('SQLite is used as database. For larger installations we recommend to switch to a different database backend.')); ?>
+ </strong>
+ </p>
+ <p>
+ <strong>
+ <?php p($l->t('Especially when using the desktop client for file syncing the use of SQLite is discouraged.')); ?>
+ </strong>
+ </p>
+ <p>
+ <?php p($l->t('To migrate to another database use the command line tool: \'occ db:convert-type\'')); ?>
</p>
</div>