diff options
Diffstat (limited to 'settings')
149 files changed, 1084 insertions, 1228 deletions
diff --git a/settings/admin.php b/settings/admin.php index a5f07037911..56484f25b26 100644 --- a/settings/admin.php +++ b/settings/admin.php @@ -9,7 +9,6 @@ OC_Util::checkAdminUser(); OC_App::setActiveNavigationEntry("admin"); $template = new OC_Template('settings', 'admin', 'user'); -$htAccessWorking = OC_Util::isHtaccessWorking(); $entries = OC_Log_Owncloud::getEntries(3); $entriesRemaining = count(OC_Log_Owncloud::getEntries(4)) > 3; @@ -32,7 +31,6 @@ $template->assign('mail_smtpname', $config->getSystemValue("mail_smtpname", '')) $template->assign('mail_smtppassword', $config->getSystemValue("mail_smtppassword", '')); $template->assign('entries', $entries); $template->assign('entriesremain', $entriesRemaining); -$template->assign('htaccessworking', $htAccessWorking); $template->assign('readOnlyConfigEnabled', OC_Helper::isReadOnlyConfigEnabled()); $template->assign('isLocaleWorking', OC_Util::isSetLocaleWorking()); $template->assign('isPhpCharSetUtf8', OC_Util::isPhpCharSetUtf8()); @@ -68,6 +66,7 @@ $template->assign('allowLinks', $appConfig->getValue('core', 'shareapi_allow_lin $template->assign('enforceLinkPassword', \OCP\Util::isPublicLinkPasswordRequired()); $template->assign('allowPublicUpload', $appConfig->getValue('core', 'shareapi_allow_public_upload', 'yes')); $template->assign('allowResharing', $appConfig->getValue('core', 'shareapi_allow_resharing', 'yes')); +$template->assign('allowPublicMailNotification', $appConfig->getValue('core', 'shareapi_allow_public_notification', 'no')); $template->assign('allowMailNotification', $appConfig->getValue('core', 'shareapi_allow_mail_notification', 'no')); $template->assign('onlyShareWithGroupMembers', \OC\Share\Share::shareWithGroupMembersOnly()); $databaseOverload = (strpos(\OCP\Config::getSystemValue('dbtype'), 'sqlite') !== false); @@ -78,7 +77,7 @@ $template->assign('databaseOverload', $databaseOverload); $forms = OC_App::getForms('admin'); $l = OC_L10N::get('settings'); $formsAndMore = array(); -if (OC_Request::serverProtocol() !== 'https' || !$htAccessWorking || !OC_Util::isAnnotationsWorking() || +if (OC_Request::serverProtocol() !== 'https' || !OC_Util::isAnnotationsWorking() || $suggestedOverwriteWebRoot || !OC_Util::isSetLocaleWorking() || !OC_Util::isPhpCharSetUtf8() || !OC_Util::fileInfoLoaded() || $databaseOverload ) { diff --git a/settings/ajax/checksetup.php b/settings/ajax/checksetup.php index 6bf5bc5642e..64718933317 100644 --- a/settings/ajax/checksetup.php +++ b/settings/ajax/checksetup.php @@ -17,7 +17,8 @@ if (OC_Util::isInternetConnectionEnabled()) { } OCP\JSON::success( - array( - 'serverhasinternetconnection' => $hasInternet + array ( + 'serverHasInternetConnection' => $hasInternet, + 'dataDirectoryProtected' => OC_Util::isHtaccessWorking() ) ); diff --git a/settings/ajax/creategroup.php b/settings/ajax/creategroup.php deleted file mode 100644 index be376bea9dc..00000000000 --- a/settings/ajax/creategroup.php +++ /dev/null @@ -1,21 +0,0 @@ -<?php - -OCP\JSON::callCheck(); -OC_JSON::checkAdminUser(); - -$groupname = $_POST["groupname"]; -$l = \OC::$server->getL10N('settings'); - -// Does the group exist? -if( in_array( $groupname, OC_Group::getGroups())) { - OC_JSON::error(array("data" => array( "message" => $l->t("Group already exists") ))); - exit(); -} - -// Return Success story -if( OC_Group::createGroup( $groupname )) { - OC_JSON::success(array("data" => array( "groupname" => $groupname ))); -} -else{ - OC_JSON::error(array("data" => array( "message" => $l->t("Unable to add group") ))); -} diff --git a/settings/ajax/createuser.php b/settings/ajax/createuser.php deleted file mode 100644 index 463c15d59e8..00000000000 --- a/settings/ajax/createuser.php +++ /dev/null @@ -1,59 +0,0 @@ -<?php - -OCP\JSON::callCheck(); -OC_JSON::checkSubAdminUser(); - -if(OC_User::isAdminUser(OC_User::getUser())) { - $groups = array(); - if (!empty($_POST["groups"])) { - $groups = $_POST["groups"]; - } -}else{ - if (isset($_POST["groups"])) { - $groups = array(); - if (!empty($_POST["groups"])) { - foreach ($_POST["groups"] as $group) { - if (OC_SubAdmin::isGroupAccessible(OC_User::getUser(), $group)) { - $groups[] = $group; - } - } - } - if (empty($groups)) { - $groups = OC_SubAdmin::getSubAdminsGroups(OC_User::getUser()); - } - } else { - $groups = OC_SubAdmin::getSubAdminsGroups(OC_User::getUser()); - } -} -$username = $_POST["username"]; -$password = $_POST["password"]; - -// Return Success story -try { - // check whether the user's files home exists - $userDirectory = OC_User::getHome($username) . '/files/'; - $homeExists = file_exists($userDirectory); - - if (!OC_User::createUser($username, $password)) { - OC_JSON::error(array('data' => array( 'message' => 'User creation failed for '.$username ))); - exit(); - } - foreach( $groups as $i ) { - if(!OC_Group::groupExists($i)) { - OC_Group::createGroup($i); - } - OC_Group::addToGroup( $username, $i ); - } - - $userManager = \OC_User::getManager(); - $user = $userManager->get($username); - OCP\JSON::success(array("data" => - array( - // returns whether the home already existed - "homeExists" => $homeExists, - "username" => $username, - "groups" => OC_Group::getUserGroups( $username ), - 'storageLocation' => $user->getHome()))); -} catch (Exception $exception) { - OCP\JSON::error(array("data" => array( "message" => $exception->getMessage()))); -} diff --git a/settings/ajax/decryptall.php b/settings/ajax/decryptall.php index 527e5b8fcee..0ad25927461 100644 --- a/settings/ajax/decryptall.php +++ b/settings/ajax/decryptall.php @@ -11,7 +11,7 @@ $params = array('uid' => \OCP\User::getUser(), 'password' => $_POST['password']); $view = new OC\Files\View('/'); -$util = new \OCA\Encryption\Util($view, \OCP\User::getUser()); +$util = new \OCA\Files_Encryption\Util($view, \OCP\User::getUser()); $l = \OC::$server->getL10N('settings'); $result = $util->initEncryption($params); diff --git a/settings/ajax/geteveryonecount.php b/settings/ajax/geteveryonecount.php index 54fbd6e2fbd..c41e7f71b01 100644 --- a/settings/ajax/geteveryonecount.php +++ b/settings/ajax/geteveryonecount.php @@ -25,7 +25,7 @@ OC_JSON::checkSubAdminUser(); $userCount = 0; -$currentUser = \OC::$server->getUserSession()->getLoginName(); +$currentUser = \OC::$server->getUserSession()->getUser()->getUID(); if (!OC_User::isAdminUser($currentUser)) { $groups = OC_SubAdmin::getSubAdminsGroups($currentUser); diff --git a/settings/ajax/grouplist.php b/settings/ajax/grouplist.php deleted file mode 100644 index 93bb510773d..00000000000 --- a/settings/ajax/grouplist.php +++ /dev/null @@ -1,46 +0,0 @@ -<?php -/** - * ownCloud - * - * @author Arthur Schiwon - * @copyright 2014 Arthur Schiwon <blizzz@owncloud.com> - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE - * License as published by the Free Software Foundation; either - * version 3 of the License, or any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU AFFERO GENERAL PUBLIC LICENSE for more details. - * - * You should have received a copy of the GNU Affero General Public - * License along with this library. If not, see <http://www.gnu.org/licenses/>. - * - */ - -OC_JSON::callCheck(); -OC_JSON::checkSubAdminUser(); -if (isset($_GET['pattern']) && !empty($_GET['pattern'])) { - $pattern = $_GET['pattern']; -} else { - $pattern = ''; -} -if (isset($_GET['filterGroups']) && !empty($_GET['filterGroups'])) { - $filterGroups = intval($_GET['filterGroups']) === 1; -} else { - $filterGroups = false; -} -$groupPattern = $filterGroups ? $pattern : ''; -$groups = array(); -$adminGroups = array(); -$groupManager = \OC_Group::getManager(); -$isAdmin = OC_User::isAdminUser(OC_User::getUser()); - -$groupsInfo = new \OC\Group\MetaData(OC_User::getUser(), $isAdmin, $groupManager); -$groupsInfo->setSorting($groupsInfo::SORT_USERCOUNT); -list($adminGroups, $groups) = $groupsInfo->get($groupPattern, $pattern); - -OC_JSON::success( - array('data' => array('adminGroups' => $adminGroups, 'groups' => $groups))); diff --git a/settings/ajax/lostpassword.php b/settings/ajax/lostpassword.php index 395ba31f92b..b0fb20c4a7e 100644 --- a/settings/ajax/lostpassword.php +++ b/settings/ajax/lostpassword.php @@ -8,7 +8,7 @@ $l = \OC::$server->getL10N('settings'); // Get data if( isset( $_POST['email'] ) && OC_Mail::validateAddress($_POST['email']) ) { $email=trim($_POST['email']); - OC_Preferences::setValue(OC_User::getUser(), 'settings', 'email', $email); + \OC::$server->getConfig()->setUserValue(OC_User::getUser(), 'settings', 'email', $email); OC_JSON::success(array("data" => array( "message" => $l->t("Email saved") ))); }else{ OC_JSON::error(array("data" => array( "message" => $l->t("Invalid email") ))); diff --git a/settings/ajax/removegroup.php b/settings/ajax/removegroup.php deleted file mode 100644 index 798d7916e61..00000000000 --- a/settings/ajax/removegroup.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -OC_JSON::checkAdminUser(); -OCP\JSON::callCheck(); - -$name = $_POST["groupname"]; - -// Return Success story -if( OC_Group::deleteGroup( $name )) { - OC_JSON::success(array("data" => array( "groupname" => $name ))); -} -else{ - OC_JSON::error(array("data" => array( "message" => $l->t("Unable to delete group") ))); -} diff --git a/settings/ajax/removeuser.php b/settings/ajax/removeuser.php deleted file mode 100644 index eda85238780..00000000000 --- a/settings/ajax/removeuser.php +++ /dev/null @@ -1,26 +0,0 @@ -<?php - -OC_JSON::checkSubAdminUser(); -OCP\JSON::callCheck(); - -$username = $_POST["username"]; - -// A user shouldn't be able to delete his own account -if(OC_User::getUser() === $username) { - exit; -} - -if(!OC_User::isAdminUser(OC_User::getUser()) && !OC_SubAdmin::isUserAccessible(OC_User::getUser(), $username)) { - $l = \OC::$server->getL10N('core'); - OC_JSON::error(array( 'data' => array( 'message' => $l->t('Authentication error') ))); - exit(); -} - -// Return Success story -if( OC_User::deleteUser( $username )) { - OC_JSON::success(array("data" => array( "username" => $username ))); -} -else{ - $l = \OC::$server->getL10N('core'); - OC_JSON::error(array("data" => array( "message" => $l->t("Unable to delete user") ))); -} diff --git a/settings/ajax/setlanguage.php b/settings/ajax/setlanguage.php index a3988db85bb..a83212927bf 100644 --- a/settings/ajax/setlanguage.php +++ b/settings/ajax/setlanguage.php @@ -11,7 +11,7 @@ if( isset( $_POST['lang'] ) ) { $languageCodes=OC_L10N::findAvailableLanguages(); $lang=$_POST['lang']; if(array_search($lang, $languageCodes) or $lang === 'en') { - OC_Preferences::setValue( OC_User::getUser(), 'core', 'lang', $lang ); + \OC::$server->getConfig()->setUserValue( OC_User::getUser(), 'core', 'lang', $lang ); OC_JSON::success(array("data" => array( "message" => $l->t("Language changed") ))); }else{ OC_JSON::error(array("data" => array( "message" => $l->t("Invalid request") ))); diff --git a/settings/ajax/setquota.php b/settings/ajax/setquota.php index f19506a0456..64a686e83d7 100644 --- a/settings/ajax/setquota.php +++ b/settings/ajax/setquota.php @@ -27,7 +27,7 @@ if($quota !== 'none' and $quota !== 'default') { // Return Success story if($username) { - OC_Preferences::setValue($username, 'files', 'quota', $quota); + \OC::$server->getConfig()->setUserValue($username, 'files', 'quota', $quota); }else{//set the default quota when no username is specified if($quota === 'default') {//'default' as default quota makes no sense $quota='none'; diff --git a/settings/ajax/userlist.php b/settings/ajax/userlist.php deleted file mode 100644 index 807cf5f1899..00000000000 --- a/settings/ajax/userlist.php +++ /dev/null @@ -1,92 +0,0 @@ -<?php -/** - * ownCloud - * - * @author Michael Gapczynski - * @copyright 2012 Michael Gapczynski mtgap@owncloud.com - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE - * License as published by the Free Software Foundation; either - * version 3 of the License, or any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU AFFERO GENERAL PUBLIC LICENSE for more details. - * - * You should have received a copy of the GNU Affero General Public - * License along with this library. If not, see <http://www.gnu.org/licenses/>. - * - */ - -OC_JSON::callCheck(); -OC_JSON::checkSubAdminUser(); -if (isset($_GET['offset'])) { - $offset = $_GET['offset']; -} else { - $offset = 0; -} -if (isset($_GET['limit'])) { - $limit = $_GET['limit']; -} else { - $limit = 10; -} -if (isset($_GET['gid']) && !empty($_GET['gid'])) { - $gid = $_GET['gid']; - if ($gid === '_everyone') { - $gid = false; - } -} else { - $gid = false; -} -if (isset($_GET['pattern']) && !empty($_GET['pattern'])) { - $pattern = $_GET['pattern']; -} else { - $pattern = ''; -} -$users = array(); -$userManager = \OC_User::getManager(); -if (OC_User::isAdminUser(OC_User::getUser())) { - if($gid !== false) { - $batch = OC_Group::displayNamesInGroup($gid, $pattern, $limit, $offset); - } else { - $batch = OC_User::getDisplayNames($pattern, $limit, $offset); - } - foreach ($batch as $uid => $displayname) { - $user = $userManager->get($uid); - $users[] = array( - 'name' => $uid, - 'displayname' => $displayname, - 'groups' => OC_Group::getUserGroups($uid), - 'subadmin' => OC_SubAdmin::getSubAdminsGroups($uid), - 'quota' => OC_Preferences::getValue($uid, 'files', 'quota', 'default'), - 'storageLocation' => $user->getHome(), - 'lastLogin' => $user->getLastLogin(), - ); - } -} else { - $groups = OC_SubAdmin::getSubAdminsGroups(OC_User::getUser()); - if($gid !== false && in_array($gid, $groups)) { - $groups = array($gid); - } elseif($gid !== false) { - //don't you try to investigate loops you must not know about - $groups = array(); - } - $batch = OC_Group::usersInGroups($groups, $pattern, $limit, $offset); - foreach ($batch as $uid) { - $user = $userManager->get($uid); - - // Only add the groups, this user is a subadmin of - $userGroups = array_intersect(OC_Group::getUserGroups($uid), OC_SubAdmin::getSubAdminsGroups(OC_User::getUser())); - $users[] = array( - 'name' => $uid, - 'displayname' => $user->getDisplayName(), - 'groups' => $userGroups, - 'quota' => OC_Preferences::getValue($uid, 'files', 'quota', 'default'), - 'storageLocation' => $user->getHome(), - 'lastLogin' => $user->getLastLogin(), - ); - } -} -OC_JSON::success(array('data' => $users)); diff --git a/settings/application.php b/settings/application.php index 64aa4671228..0a80bd8b1e7 100644 --- a/settings/application.php +++ b/settings/application.php @@ -10,11 +10,14 @@ namespace OC\Settings; -use OC\AppFramework\Utility\SimpleContainer; use OC\Settings\Controller\AppSettingsController; +use OC\Settings\Controller\GroupsController; use OC\Settings\Controller\MailSettingsController; use OC\Settings\Controller\SecuritySettingsController; +use OC\Settings\Controller\UsersController; +use OC\Settings\Middleware\SubadminMiddleware; use \OCP\AppFramework\App; +use OCP\IContainer; use \OCP\Util; /** @@ -34,7 +37,7 @@ class Application extends App { /** * Controllers */ - $container->registerService('MailSettingsController', function(SimpleContainer $c) { + $container->registerService('MailSettingsController', function(IContainer $c) { return new MailSettingsController( $c->query('AppName'), $c->query('Request'), @@ -46,7 +49,7 @@ class Application extends App { $c->query('DefaultMailAddress') ); }); - $container->registerService('AppSettingsController', function(SimpleContainer $c) { + $container->registerService('AppSettingsController', function(IContainer $c) { return new AppSettingsController( $c->query('AppName'), $c->query('Request'), @@ -54,33 +57,81 @@ class Application extends App { $c->query('Config') ); }); - $container->registerService('SecuritySettingsController', function(SimpleContainer $c) { + $container->registerService('SecuritySettingsController', function(IContainer $c) { return new SecuritySettingsController( $c->query('AppName'), $c->query('Request'), $c->query('Config') ); }); + $container->registerService('GroupsController', function(IContainer $c) { + return new GroupsController( + $c->query('AppName'), + $c->query('Request'), + $c->query('GroupManager'), + $c->query('UserSession'), + $c->query('IsAdmin'), + $c->query('L10N') + ); + }); + $container->registerService('UsersController', function(IContainer $c) { + return new UsersController( + $c->query('AppName'), + $c->query('Request'), + $c->query('UserManager'), + $c->query('GroupManager'), + $c->query('UserSession'), + $c->query('Config'), + $c->query('IsAdmin'), + $c->query('L10N') + ); + }); + + /** + * Middleware + */ + $container->registerService('SubadminMiddleware', function(IContainer $c){ + return new SubadminMiddleware( + $c->query('ControllerMethodReflector'), + $c->query('IsSubAdmin') + ); + }); + // Execute middlewares + $container->registerMiddleware('SubadminMiddleware'); /** * Core class wrappers */ - $container->registerService('Config', function(SimpleContainer $c) { + $container->registerService('Config', function(IContainer $c) { return $c->query('ServerContainer')->getConfig(); }); - $container->registerService('L10N', function(SimpleContainer $c) { + $container->registerService('L10N', function(IContainer $c) { return $c->query('ServerContainer')->getL10N('settings'); }); - $container->registerService('UserSession', function(SimpleContainer $c) { + $container->registerService('GroupManager', function(IContainer $c) { + return $c->query('ServerContainer')->getGroupManager(); + }); + $container->registerService('UserManager', function(IContainer $c) { + return $c->query('ServerContainer')->getUserManager(); + }); + $container->registerService('UserSession', function(IContainer $c) { return $c->query('ServerContainer')->getUserSession(); }); - $container->registerService('Mail', function(SimpleContainer $c) { + /** FIXME: Remove once OC_User is non-static and mockable */ + $container->registerService('IsAdmin', function(IContainer $c) { + return \OC_User::isAdminUser(\OC_User::getUser()); + }); + /** FIXME: Remove once OC_SubAdmin is non-static and mockable */ + $container->registerService('IsSubAdmin', function(IContainer $c) { + return \OC_Subadmin::isSubAdmin(\OC_User::getUser()); + }); + $container->registerService('Mail', function(IContainer $c) { return new \OC_Mail; }); - $container->registerService('Defaults', function(SimpleContainer $c) { + $container->registerService('Defaults', function(IContainer $c) { return new \OC_Defaults; }); - $container->registerService('DefaultMailAddress', function(SimpleContainer $c) { + $container->registerService('DefaultMailAddress', function(IContainer $c) { return Util::getDefaultEmailAddress('no-reply'); }); } diff --git a/settings/changepassword/controller.php b/settings/changepassword/controller.php index ee596c3e7ed..4ed907daf96 100644 --- a/settings/changepassword/controller.php +++ b/settings/changepassword/controller.php @@ -52,7 +52,7 @@ class Controller { if (\OC_App::isEnabled('files_encryption')) { //handle the recovery case - $util = new \OCA\Encryption\Util(new \OC\Files\View('/'), $username); + $util = new \OCA\Files_Encryption\Util(new \OC\Files\View('/'), $username); $recoveryAdminEnabled = \OC_Appconfig::getValue('files_encryption', 'recoveryAdminEnabled'); $validRecoveryPassword = false; diff --git a/settings/controller/groupscontroller.php b/settings/controller/groupscontroller.php new file mode 100644 index 00000000000..82e72821c3d --- /dev/null +++ b/settings/controller/groupscontroller.php @@ -0,0 +1,140 @@ +<?php +/** + * @author Lukas Reschke + * @copyright 2014 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\Controller; + +use OC\AppFramework\Http; +use \OCP\AppFramework\Controller; +use OCP\AppFramework\Http\DataResponse; +use OCP\IGroupManager; +use OCP\IL10N; +use OCP\IRequest; +use OCP\IUserSession; + +/** + * @package OC\Settings\Controller + */ +class GroupsController extends Controller { + /** @var IGroupManager */ + private $groupManager; + /** @var IL10N */ + private $l10n; + /** @var IUserSession */ + private $userSession; + /** @var bool */ + private $isAdmin; + + /** + * @param string $appName + * @param IRequest $request + * @param IGroupManager $groupManager + * @param IUserSession $userSession + * @param bool $isAdmin + * @param IL10N $l10n + */ + public function __construct($appName, + IRequest $request, + IGroupManager $groupManager, + IUserSession $userSession, + $isAdmin, + IL10N $l10n) { + parent::__construct($appName, $request); + $this->groupManager = $groupManager; + $this->userSession = $userSession; + $this->isAdmin = $isAdmin; + $this->l10n = $l10n; + } + + /** + * @NoAdminRequired + * + * @param string $pattern + * @param bool $filterGroups + * @return DataResponse + */ + public function index($pattern = '', $filterGroups = false) { + $groupPattern = $filterGroups ? $pattern : ''; + + $groupsInfo = new \OC\Group\MetaData($this->userSession->getUser()->getUID(), + $this->isAdmin, $this->groupManager); + $groupsInfo->setSorting($groupsInfo::SORT_USERCOUNT); + list($adminGroups, $groups) = $groupsInfo->get($groupPattern, $pattern); + + return new DataResponse( + array( + 'data' => array('adminGroups' => $adminGroups, 'groups' => $groups) + ) + ); + } + + /** + * @param string $id + * @return DataResponse + */ + public function create($id) { + if($this->groupManager->groupExists($id)) { + return new DataResponse( + array( + 'message' => (string)$this->l10n->t('Group already exists.') + ), + Http::STATUS_CONFLICT + ); + } + if($this->groupManager->createGroup($id)) { + return new DataResponse( + array( + 'groupname' => $id + ), + Http::STATUS_CREATED + ); + } + + return new DataResponse( + array( + 'status' => 'error', + 'data' => array( + 'message' => (string)$this->l10n->t('Unable to add group.') + ) + ), + Http::STATUS_FORBIDDEN + ); + } + + /** + * @param string $id + * @return DataResponse + */ + public function destroy($id) { + $group = $this->groupManager->get($id); + if ($group) { + if ($group->delete()) { + return new DataResponse( + array( + 'status' => 'success', + 'data' => array( + 'groupname' => $id + ) + ), + Http::STATUS_NO_CONTENT + ); + } + } + return new DataResponse( + array( + 'status' => 'error', + 'data' => array( + 'message' => (string)$this->l10n->t('Unable to delete group.') + ), + ), + Http::STATUS_FORBIDDEN + ); + } + +} diff --git a/settings/controller/userscontroller.php b/settings/controller/userscontroller.php new file mode 100644 index 00000000000..c25989af1a9 --- /dev/null +++ b/settings/controller/userscontroller.php @@ -0,0 +1,280 @@ +<?php +/** + * @author Lukas Reschke + * @copyright 2014 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\Controller; + +use OC\AppFramework\Http; +use OC\User\Manager; +use OC\User\User; +use \OCP\AppFramework\Controller; +use OCP\AppFramework\Http\DataResponse; +use OCP\IConfig; +use OCP\IGroupManager; +use OCP\IL10N; +use OCP\IRequest; +use OCP\IUser; +use OCP\IUserManager; +use OCP\IUserSession; + +/** + * @package OC\Settings\Controller + */ +class UsersController extends Controller { + /** @var IL10N */ + private $l10n; + /** @var IUserSession */ + private $userSession; + /** @var bool */ + private $isAdmin; + /** @var IUserManager */ + private $userManager; + /** @var IGroupManager */ + private $groupManager; + /** @var IConfig */ + private $config; + + /** + * @param string $appName + * @param IRequest $request + * @param IUserManager $userManager + * @param IGroupManager $groupManager + * @param IUserSession $userSession + * @param IConfig $config + * @param bool $isAdmin + * @param IL10N $l10n + */ + public function __construct($appName, + IRequest $request, + IUserManager $userManager, + IGroupManager $groupManager, + IUserSession $userSession, + IConfig $config, + $isAdmin, + IL10N $l10n) { + parent::__construct($appName, $request); + $this->userManager = $userManager; + $this->groupManager = $groupManager; + $this->userSession = $userSession; + $this->config = $config; + $this->isAdmin = $isAdmin; + $this->l10n = $l10n; + } + + /** + * @param IUser $user + * @param array $userGroups + * @return array + */ + private function formatUserForIndex(IUser $user, array $userGroups = null) { + return array( + 'name' => $user->getUID(), + 'displayname' => $user->getDisplayName(), + 'groups' => (empty($userGroups)) ? $this->groupManager->getUserGroupIds($user) : $userGroups, + 'subadmin' => \OC_SubAdmin::getSubAdminsGroups($user->getUID()), + 'quota' => $this->config->getUserValue($user->getUID(), 'files', 'quota', 'default'), + 'storageLocation' => $user->getHome(), + 'lastLogin' => $user->getLastLogin(), + 'backend' => $user->getBackendClassName() + ); + } + + /** + * @param array $userIDs Array with schema [$uid => $displayName] + * @return IUser[] + */ + private function getUsersForUID(array $userIDs) { + $users = []; + foreach ($userIDs as $uid => $displayName) { + $users[] = $this->userManager->get($uid); + } + return $users; + } + + /** + * @NoAdminRequired + * + * @param int $offset + * @param int $limit + * @param string $gid GID to filter for + * @param string $pattern Pattern to search for in the username + * @param string $backend Backend to filter for (class-name) + * @return DataResponse + * + * TODO: Tidy up and write unit tests - code is mainly static method calls + */ + public function index($offset = 0, $limit = 10, $gid = '', $pattern = '', $backend = '') { + // FIXME: The JS sends the group '_everyone' instead of no GID for the "all users" group. + if($gid === '_everyone') { + $gid = ''; + } + + // Remove backends + if(!empty($backend)) { + $activeBackends = $this->userManager->getBackends(); + $this->userManager->clearBackends(); + foreach($activeBackends as $singleActiveBackend) { + if($backend === get_class($singleActiveBackend)) { + $this->userManager->registerBackend($singleActiveBackend); + break; + } + } + } + + $users = array(); + if ($this->isAdmin) { + + if($gid !== '') { + $batch = $this->getUsersForUID($this->groupManager->displayNamesInGroup($gid, $pattern, $limit, $offset)); + } else { + $batch = $this->userManager->search('', $limit, $offset); + } + + foreach ($batch as $user) { + $users[] = $this->formatUserForIndex($user); + } + + } else { + // 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()))) { + $gid = ''; + } + + $batch = $this->getUsersForUID($this->groupManager->displayNamesInGroup($gid, $pattern, $limit, $offset)); + 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())); + $users[] = $this->formatUserForIndex($user, $userGroups); + } + } + + return new DataResponse($users); + } + + /** + * @NoAdminRequired + * + * @param string $username + * @param string $password + * @param array $groups + * @return DataResponse + * + * TODO: Tidy up and write unit tests - code is mainly static method calls + */ + public function create($username, $password, array $groups) { + + if (!$this->isAdmin) { + if (!empty($groups)) { + foreach ($groups as $key => $group) { + if (!\OC_SubAdmin::isGroupAccessible($this->userSession->getUser()->getUID(), $group)) { + unset($groups[$key]); + } + } + } + if (empty($groups)) { + $groups = \OC_SubAdmin::getSubAdminsGroups($this->userSession->getUser()->getUID()); + } + } + + try { + $user = $this->userManager->createUser($username, $password); + } catch (\Exception $exception) { + return new DataResponse( + array( + 'message' => (string)$this->l10n->t('Unable to create user.') + ), + Http::STATUS_FORBIDDEN + ); + } + + if($user instanceof User) { + foreach( $groups as $groupName ) { + $group = $this->groupManager->get($groupName); + + if(empty($group)) { + $group = $this->groupManager->createGroup($groupName); + } + $group->addUser($user); + } + } + + return new DataResponse( + array( + 'username' => $username, + 'groups' => $this->groupManager->getUserGroupIds($user), + 'storageLocation' => $user->getHome(), + 'backend' => $user->getBackendClassName() + ), + Http::STATUS_CREATED + ); + + } + + /** + * @NoAdminRequired + * + * @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) { + return new DataResponse( + array( + 'status' => 'error', + 'data' => array( + 'message' => (string)$this->l10n->t('Unable to delete user.') + ) + ), + Http::STATUS_FORBIDDEN + ); + } + + // FIXME: Remove this static function call at some point… + if(!$this->isAdmin && !\OC_SubAdmin::isUserAccessible($this->userSession->getUser()->getUID(), $id)) { + return new DataResponse( + array( + 'status' => 'error', + 'data' => array( + 'message' => (string)$this->l10n->t('Authentication error') + ) + ), + Http::STATUS_FORBIDDEN + ); + } + + $user = $this->userManager->get($id); + if($user) { + if($user->delete()) { + return new DataResponse( + array( + 'status' => 'success', + 'data' => array( + 'username' => $id + ) + ), + Http::STATUS_NO_CONTENT + ); + } + } + + return new DataResponse( + array( + 'status' => 'error', + 'data' => array( + 'message' => (string)$this->l10n->t('Unable to delete user.') + ) + ), + Http::STATUS_FORBIDDEN + ); + } + +} diff --git a/settings/css/settings.css b/settings/css/settings.css index 4594a22c6d0..fa699e50a4b 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -94,8 +94,11 @@ td.password>img,td.displayName>img, td.remove>a, td.quota>img { visibility:hidde td.password, td.quota, td.displayName { width:12em; cursor:pointer; } td.password>span, td.quota>span, rd.displayName>span { margin-right: 1.2em; color: #C7C7C7; } span.usersLastLoginTooltip { white-space: nowrap; } -th#headerLastLogin, td.lastLogin { display : none; } -th#headerStorageLocation, td.storageLocation { display : none; } +#userlist .storageLocation, +#userlist .userBackend, +#userlist .lastLogin { + display : none; +} td.remove { width:1em; padding-right:1em; } tr:hover>td.password>span, tr:hover>td.displayName>span { margin:0; cursor:pointer; } diff --git a/settings/js/settings.js b/settings/js/settings.js index 13c56a8f53a..e98bd2cc895 100644 --- a/settings/js/settings.js +++ b/settings/js/settings.js @@ -41,7 +41,7 @@ OC.Settings = _.extend(OC.Settings, { }; } $.ajax({ - url: OC.generateUrl('/settings/ajax/grouplist'), + url: OC.generateUrl('/settings/users/groups'), data: queryData, dataType: 'json', success: function(data) { diff --git a/settings/js/users/deleteHandler.js b/settings/js/users/deleteHandler.js index c89a844044e..942bae91cd3 100644 --- a/settings/js/users/deleteHandler.js +++ b/settings/js/users/deleteHandler.js @@ -189,11 +189,10 @@ DeleteHandler.prototype.deleteEntry = function(keepNotification) { var payload = {}; payload[dh.ajaxParamID] = dh.oidToDelete; $.ajax({ - type: 'POST', - url: OC.filePath('settings', 'ajax', dh.ajaxEndpoint), + type: 'DELETE', + url: OC.generateUrl(dh.ajaxEndpoint+'/'+this.oidToDelete), // FIXME: do not use synchronous ajax calls as they block the browser ! async: false, - data: payload, success: function (result) { if (result.status === 'success') { // Remove undo option, & remove user from table diff --git a/settings/js/users/filter.js b/settings/js/users/filter.js index c5944e9b4b1..72f2cfc6d24 100644 --- a/settings/js/users/filter.js +++ b/settings/js/users/filter.js @@ -70,7 +70,14 @@ UserManagementFilter.prototype.run = _.debounce(function() { * @returns string */ UserManagementFilter.prototype.getPattern = function() { - return this.filterInput.val(); + var input = this.filterInput.val(), + html = $('html'), + isIE8or9 = html.hasClass('lte9'); + // FIXME - TODO - once support for IE8 and IE9 is dropped + if(isIE8or9 && input == this.filterInput.attr('placeholder')) { + input = ''; + } + return input; }; /** diff --git a/settings/js/users/groups.js b/settings/js/users/groups.js index 081842734f0..c06bc5ff14b 100644 --- a/settings/js/users/groups.js +++ b/settings/js/users/groups.js @@ -84,29 +84,24 @@ GroupList = { createGroup: function (groupname) { $.post( - OC.filePath('settings', 'ajax', 'creategroup.php'), + OC.generateUrl('/settings/users/groups'), { - groupname: groupname + id: groupname }, function (result) { - if (result.status !== 'success') { - OC.dialogs.alert(result.data.message, - t('settings', 'Error creating group')); + if (result.groupname) { + var addedGroup = result.groupname; + UserList.availableGroups = $.unique($.merge(UserList.availableGroups, [addedGroup])); + GroupList.addGroup(result.groupname); + + $('.groupsselect, .subadminsselect') + .append($('<option>', { value: result.groupname }) + .text(result.groupname)); } - else { - if (result.data.groupname) { - var addedGroup = result.data.groupname; - UserList.availableGroups = $.unique($.merge(UserList.availableGroups, [addedGroup])); - GroupList.addGroup(result.data.groupname); - - $('.groupsselect, .subadminsselect') - .append($('<option>', { value: result.data.groupname }) - .text(result.data.groupname)); - } - GroupList.toggleAddGroup(); - } - } - ); + GroupList.toggleAddGroup(); + }).fail(function(result, textStatus, errorThrown) { + OC.dialogs.alert(result.responseJSON.message, t('settings', 'Error creating group')); + }); }, update: function () { @@ -115,7 +110,7 @@ GroupList = { } GroupList.updating = true; $.get( - OC.generateUrl('/settings/ajax/grouplist'), + OC.generateUrl('/settings/users/groups'), { pattern: filter.getPattern(), filterGroups: filter.filterGroups ? 1 : 0 @@ -221,7 +216,7 @@ GroupList = { }, initDeleteHandling: function () { //set up handler - GroupDeleteHandler = new DeleteHandler('removegroup.php', 'groupname', + GroupDeleteHandler = new DeleteHandler('/settings/users/groups', 'groupname', GroupList.hide, GroupList.remove); //configure undo diff --git a/settings/js/users/users.js b/settings/js/users/users.js index 5e0c0cac189..62e18d1be04 100644 --- a/settings/js/users/users.js +++ b/settings/js/users/users.js @@ -12,9 +12,7 @@ var filter; var UserList = { availableGroups: [], - offset: 30, //The first 30 users are there. No prob, if less in total. - //hardcoded in settings/users.php - + offset: 0, usersToLoad: 10, //So many users will be loaded when user scrolls down currentGid: '', @@ -30,20 +28,33 @@ var UserList = { this.$el.find('.quota-user').singleSelect().on('change', this.onQuotaSelect); }, - add: function (username, displayname, groups, subadmin, quota, storageLocation, lastLogin, sort) { + add: function (username, displayname, groups, subadmin, quota, storageLocation, lastLogin, sort, backend) { var $tr = $userListBody.find('tr:first-child').clone(); + // this removes just the `display:none` of the template row + $tr.removeAttr('style'); var subAdminsEl; var subAdminSelect; var groupsSelect; + + /** + * Avatar or placeholder + */ if ($tr.find('div.avatardiv').length){ $tr.find('.avatardiv').imageplaceholder(username, displayname); $('div.avatardiv', $tr).avatar(username, 32); } + + /** + * add username and displayname to row (in data and visible markup + */ $tr.data('uid', username); $tr.data('displayname', displayname); $tr.find('td.name').text(username); $tr.find('td.displayName > span').text(displayname); + /** + * groups and subadmins + */ // make them look like the multiselect buttons // until they get time to really get initialized groupsSelect = $('<select multiple="multiple" class="groupsselect multiselect button" data-placehoder="Groups" title="' + t('settings', 'no group') + '"></select>') @@ -67,6 +78,10 @@ var UserList = { if (subAdminsEl.length > 0) { subAdminsEl.append(subAdminSelect); } + + /** + * remove action + */ if ($tr.find('td.remove img').length === 0 && OC.currentUser !== username) { var deleteImage = $('<img class="svg action">').attr({ src: OC.imagePath('core', 'actions/delete') @@ -78,6 +93,10 @@ var UserList = { } else if (OC.currentUser === username) { $tr.find('td.remove a').remove(); } + + /** + * quota + */ var $quotaSelect = $tr.find('.quota-user'); if (quota === 'default') { $quotaSelect @@ -91,8 +110,20 @@ var UserList = { $quotaSelect.append('<option value="' + escapeHTML(quota) + '" selected="selected">' + escapeHTML(quota) + '</option>'); } } + + /** + * storage location + */ $tr.find('td.storageLocation').text(storageLocation); + /** + * user backend + */ + $tr.find('td.userBackend').text(backend); + + /** + * last login + */ var lastLoginRel = t('settings', 'never'); var lastLoginAbs = lastLoginRel; if(lastLogin !== 0) { @@ -107,6 +138,10 @@ var UserList = { var tooltip = $('<div>').html($($tdLastLogin.attr('original-title')).text(lastLoginAbs)).html(); $tdLastLogin.tipsy({gravity:'s', fade:true, html:true}); $tdLastLogin.attr('title', tooltip); + + /** + * append generated row to user list + */ $tr.appendTo($userList); if(UserList.isEmpty === true) { //when the list was emptied, one row was left, necessary to keep @@ -116,6 +151,10 @@ var UserList = { UserList.isEmpty = false; UserList.checkUsersToLoad(); } + + /** + * sort list + */ if (sort) { UserList.doSort(); } @@ -292,7 +331,7 @@ var UserList = { }, initDeleteHandling: function() { //set up handler - UserDeleteHandler = new DeleteHandler('removeuser.php', 'username', + UserDeleteHandler = new DeleteHandler('/settings/users/users', 'username', UserList.markRemove, UserList.remove); //configure undo @@ -326,40 +365,39 @@ var UserList = { UserList.currentGid = gid; var pattern = filter.getPattern(); $.get( - OC.generateUrl('/settings/ajax/userlist'), + OC.generateUrl('/settings/users/users'), { offset: UserList.offset, limit: UserList.usersToLoad, gid: gid, pattern: pattern }, function (result) { var loadedUsers = 0; var trs = []; - if (result.status === 'success') { - //The offset does not mirror the amount of users available, - //because it is backend-dependent. For correct retrieval, - //always the limit(requested amount of users) needs to be added. - $.each(result.data, function (index, user) { - if(UserList.has(user.name)) { - return true; - } - var $tr = UserList.add(user.name, user.displayname, user.groups, user.subadmin, user.quota, user.storageLocation, user.lastLogin, false); - $tr.addClass('appear transparent'); - trs.push($tr); - loadedUsers++; - }); - if (result.data.length > 0) { - UserList.doSort(); - $userList.siblings('.loading').css('visibility', 'hidden'); - } - else { - UserList.noMoreEntries = true; - $userList.siblings('.loading').remove(); + //The offset does not mirror the amount of users available, + //because it is backend-dependent. For correct retrieval, + //always the limit(requested amount of users) needs to be added. + $.each(result, function (index, user) { + if(UserList.has(user.name)) { + return true; } - UserList.offset += loadedUsers; - // animate - setTimeout(function() { - for (var i = 0; i < trs.length; i++) { - trs[i].removeClass('transparent'); - } - }, 0); + var $tr = UserList.add(user.name, user.displayname, user.groups, user.subadmin, user.quota, user.storageLocation, user.lastLogin, false, user.backend); + $tr.addClass('appear transparent'); + trs.push($tr); + loadedUsers++; + }); + if (result.length > 0) { + UserList.doSort(); + $userList.siblings('.loading').css('visibility', 'hidden'); + } + else { + UserList.noMoreEntries = true; + $userList.siblings('.loading').remove(); } + UserList.offset += loadedUsers; + // animate + setTimeout(function() { + for (var i = 0; i < trs.length; i++) { + trs[i].removeClass('transparent'); + } + }, 0); + }).always(function() { UserList.updating = false; }); }, @@ -667,72 +705,72 @@ $(document).ready(function () { var groups = $('#newusergroups').val(); $('#newuser').get(0).reset(); $.post( - OC.filePath('settings', 'ajax', 'createuser.php'), + OC.generateUrl('/settings/users/users'), { username: username, password: password, groups: groups }, function (result) { - if (result.status !== 'success') { - OC.dialogs.alert(result.data.message, - t('settings', 'Error creating user')); - } else { - if (result.data.groups) { - var addedGroups = result.data.groups; - for (var i in result.data.groups) { - var gid = result.data.groups[i]; - if(UserList.availableGroups.indexOf(gid) === -1) { - UserList.availableGroups.push(gid); - } - $li = GroupList.getGroupLI(gid); - userCount = GroupList.getUserCount($li); - GroupList.setUserCount($li, userCount + 1); - } - } - if (result.data.homeExists){ - OC.Notification.hide(); - OC.Notification.show(t('settings', 'Warning: Home directory for user "{user}" already exists', {user: result.data.username})); - if (UserList.notificationTimeout){ - window.clearTimeout(UserList.notificationTimeout); + if (result.groups) { + for (var i in result.groups) { + var gid = result.groups[i]; + if(UserList.availableGroups.indexOf(gid) === -1) { + UserList.availableGroups.push(gid); } - UserList.notificationTimeout = window.setTimeout( - function(){ - OC.Notification.hide(); - UserList.notificationTimeout = null; - }, 10000); + $li = GroupList.getGroupLI(gid); + userCount = GroupList.getUserCount($li); + GroupList.setUserCount($li, userCount + 1); } - if(!UserList.has(username)) { - UserList.add(username, username, result.data.groups, null, 'default', result.data.storageLocation, 0, true); + } + if (result.homeExists){ + OC.Notification.hide(); + OC.Notification.show(t('settings', 'Warning: Home directory for user "{user}" already exists', {user: result.username})); + if (UserList.notificationTimeout){ + window.clearTimeout(UserList.notificationTimeout); } - $('#newusername').focus(); - GroupList.incEveryoneCount(); + UserList.notificationTimeout = window.setTimeout( + function(){ + OC.Notification.hide(); + UserList.notificationTimeout = null; + }, 10000); } - } - ); + if(!UserList.has(username)) { + UserList.add(username, username, result.groups, null, 'default', result.storageLocation, 0, true, result.backend); + } + $('#newusername').focus(); + GroupList.incEveryoneCount(); + }).fail(function(result, textStatus, errorThrown) { + OC.dialogs.alert(result.responseJSON.message, t('settings', 'Error creating user')); + }); }); // Option to display/hide the "Storage location" column $('#CheckboxStorageLocation').click(function() { if ($('#CheckboxStorageLocation').is(':checked')) { - $("#headerStorageLocation").show(); - $("#userlist td.storageLocation").show(); + $("#userlist .storageLocation").show(); } else { - $("#headerStorageLocation").hide(); - $("#userlist td.storageLocation").hide(); + $("#userlist .storageLocation").hide(); } }); // Option to display/hide the "Last Login" column $('#CheckboxLastLogin').click(function() { if ($('#CheckboxLastLogin').is(':checked')) { - $("#headerLastLogin").show(); - $("#userlist td.lastLogin").show(); + $("#userlist .lastLogin").show(); } else { - $("#headerLastLogin").hide(); - $("#userlist td.lastLogin").hide(); + $("#userlist .lastLogin").hide(); + } + }); + // Option to display/hide the "Last Login" column + $('#CheckboxUserBackend').click(function() { + if ($('#CheckboxUserBackend').is(':checked')) { + $("#userlist .userBackend").show(); + } else { + $("#userlist .userBackend").hide(); } }); - + // trigger loading of users on startup + UserList.update(UserList.currentGid); }); diff --git a/settings/l10n/ar.js b/settings/l10n/ar.js index f3e4d498cbd..61173b62149 100644 --- a/settings/l10n/ar.js +++ b/settings/l10n/ar.js @@ -9,12 +9,8 @@ OC.L10N.register( "Authentication error" : "لم يتم التأكد من الشخصية بنجاح", "Your full name has been changed." : "اسمك الكامل تم تغييره.", "Unable to change full name" : "لم يتم التمكن من تغيير اسمك الكامل", - "Group already exists" : "المجموعة موجودة مسبقاً", - "Unable to add group" : "فشل إضافة المجموعة", "Email saved" : "تم حفظ البريد الإلكتروني", "Invalid email" : "البريد الإلكتروني غير صالح", - "Unable to delete group" : "فشل إزالة المجموعة", - "Unable to delete user" : "فشل إزالة المستخدم", "Backups restored successfully" : "تم إسترجاع النسخة الإحتياطية بنجاح", "Language changed" : "تم تغيير اللغة", "Invalid request" : "طلب غير مفهوم", @@ -72,7 +68,6 @@ OC.L10N.register( "Login" : "تسجيل الدخول", "Security Warning" : "تحذير أمان", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "انت تستخدم %s عن طريق HTTP . نحن نقترح باصرار ان تهيء الخادم ليتمكن من الوصول عن طريق HTTPS.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "مجلد data و ملفاتك يمكن الوصول لها عن طريق الانترنت. ملف .htaccess لا يمكن تشغيلة. نحن نقترح باصرار ان تعيد اعداد خادمك لمنع الدخول الى بياناتك عن طريق الانترنت او بالامكان ان تنقل مجلد data خارج document root بشكل مؤقت. ", "Setup Warning" : "تحذير في التنصيب", "Module 'fileinfo' missing" : "الموديل 'fileinfo' مفقود", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "موديل 'fileinfo' الخاص بالـPHP مفقود . نوصي بتفعيل هذا الموديل للحصول على أفضل النتائج مع خاصية التحقق ", diff --git a/settings/l10n/ar.json b/settings/l10n/ar.json index bd5171b4350..c44761e7324 100644 --- a/settings/l10n/ar.json +++ b/settings/l10n/ar.json @@ -7,12 +7,8 @@ "Authentication error" : "لم يتم التأكد من الشخصية بنجاح", "Your full name has been changed." : "اسمك الكامل تم تغييره.", "Unable to change full name" : "لم يتم التمكن من تغيير اسمك الكامل", - "Group already exists" : "المجموعة موجودة مسبقاً", - "Unable to add group" : "فشل إضافة المجموعة", "Email saved" : "تم حفظ البريد الإلكتروني", "Invalid email" : "البريد الإلكتروني غير صالح", - "Unable to delete group" : "فشل إزالة المجموعة", - "Unable to delete user" : "فشل إزالة المستخدم", "Backups restored successfully" : "تم إسترجاع النسخة الإحتياطية بنجاح", "Language changed" : "تم تغيير اللغة", "Invalid request" : "طلب غير مفهوم", @@ -70,7 +66,6 @@ "Login" : "تسجيل الدخول", "Security Warning" : "تحذير أمان", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "انت تستخدم %s عن طريق HTTP . نحن نقترح باصرار ان تهيء الخادم ليتمكن من الوصول عن طريق HTTPS.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "مجلد data و ملفاتك يمكن الوصول لها عن طريق الانترنت. ملف .htaccess لا يمكن تشغيلة. نحن نقترح باصرار ان تعيد اعداد خادمك لمنع الدخول الى بياناتك عن طريق الانترنت او بالامكان ان تنقل مجلد data خارج document root بشكل مؤقت. ", "Setup Warning" : "تحذير في التنصيب", "Module 'fileinfo' missing" : "الموديل 'fileinfo' مفقود", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "موديل 'fileinfo' الخاص بالـPHP مفقود . نوصي بتفعيل هذا الموديل للحصول على أفضل النتائج مع خاصية التحقق ", diff --git a/settings/l10n/ast.js b/settings/l10n/ast.js index 3c0e0cbd58a..187ef5e7f0a 100644 --- a/settings/l10n/ast.js +++ b/settings/l10n/ast.js @@ -9,8 +9,6 @@ OC.L10N.register( "Authentication error" : "Fallu d'autenticación", "Your full name has been changed." : "Camudóse'l nome completu.", "Unable to change full name" : "Nun pue camudase'l nome completu", - "Group already exists" : "El grupu yá esiste", - "Unable to add group" : "Nun pudo amestase'l grupu", "Files decrypted successfully" : "Descifráronse los ficheros", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Nun pudieron descifrase sus ficheros. Revisa'l owncloud.log o consulta col alministrador", "Couldn't decrypt your files, check your password and try again" : "Nun pudieron descifrase los ficheros. Revisa la contraseña ya inténtalo dempués", @@ -19,8 +17,6 @@ OC.L10N.register( "Couldn't remove app." : "Nun pudo desaniciase l'aplicación.", "Email saved" : "Corréu-e guardáu", "Invalid email" : "Corréu electrónicu non válidu", - "Unable to delete group" : "Nun pudo desaniciase'l grupu", - "Unable to delete user" : "Nun pudo desaniciase l'usuariu", "Backups restored successfully" : "Copia de seguridá restaurada", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Nun pudieron restaurase dafechu les tos claves de cifráu, por favor comprueba'l to owncloud.log o entruga a un alministrador", "Language changed" : "Camudóse la llingua", @@ -101,7 +97,6 @@ OC.L10N.register( "TLS" : "TLS", "Security Warning" : "Avisu de seguridá", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Tas ingresando a %s vía HTTP. Encamentámoste que configures el sirvidor pa solicitar HTTPS.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "El direutoriu de datos y ficheros ye dablemente accesible dende Internet, darréu que'l ficheru .htaccess nun ta funcionando. Suxerímoste que configures el sirvidor web de mou que'l direutoriu de datos nun seya accesible o que muevas talu direutoriu fuera del raigañu de documentos del sirvidor web.", "Setup Warning" : "Avisu de configuración", "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.", @@ -127,13 +122,13 @@ OC.L10N.register( "Allow users to share via link" : "Permitir a los usuarios compartir vía enllaz", "Enforce password protection" : "Ameyora la proteición por contraseña.", "Allow public uploads" : "Permitir xubes públiques", + "Allow users to send mail notification for shared files" : "Permitir a los usuarios unviar mensaxes de notificación pa ficheros compartíos", "Set default expiration date" : "Afitar la data d'espiración predeterminada", "Expire after " : "Caduca dempués de", "days" : "díes", "Enforce expiration date" : "Facer cumplir la data de caducidá", "Allow resharing" : "Permitir re-compartición", "Restrict users to only share with users in their groups" : "Restrinxir a los usuarios a compartir namái con otros usuarios nos sos grupos", - "Allow users to send mail notification for shared files" : "Permitir a los usuarios unviar mensaxes de notificación pa ficheros compartíos", "Exclude groups from sharing" : "Esclúi grupos de compartir", "These groups will still be able to receive shares, but not to initiate them." : "Estos grupos van poder siguir recibiendo conteníos compartíos, pero nun van poder anicialos", "Enforce HTTPS" : "Forciar HTTPS", diff --git a/settings/l10n/ast.json b/settings/l10n/ast.json index 2d1a48006c7..e558e69db95 100644 --- a/settings/l10n/ast.json +++ b/settings/l10n/ast.json @@ -7,8 +7,6 @@ "Authentication error" : "Fallu d'autenticación", "Your full name has been changed." : "Camudóse'l nome completu.", "Unable to change full name" : "Nun pue camudase'l nome completu", - "Group already exists" : "El grupu yá esiste", - "Unable to add group" : "Nun pudo amestase'l grupu", "Files decrypted successfully" : "Descifráronse los ficheros", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Nun pudieron descifrase sus ficheros. Revisa'l owncloud.log o consulta col alministrador", "Couldn't decrypt your files, check your password and try again" : "Nun pudieron descifrase los ficheros. Revisa la contraseña ya inténtalo dempués", @@ -17,8 +15,6 @@ "Couldn't remove app." : "Nun pudo desaniciase l'aplicación.", "Email saved" : "Corréu-e guardáu", "Invalid email" : "Corréu electrónicu non válidu", - "Unable to delete group" : "Nun pudo desaniciase'l grupu", - "Unable to delete user" : "Nun pudo desaniciase l'usuariu", "Backups restored successfully" : "Copia de seguridá restaurada", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Nun pudieron restaurase dafechu les tos claves de cifráu, por favor comprueba'l to owncloud.log o entruga a un alministrador", "Language changed" : "Camudóse la llingua", @@ -99,7 +95,6 @@ "TLS" : "TLS", "Security Warning" : "Avisu de seguridá", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Tas ingresando a %s vía HTTP. Encamentámoste que configures el sirvidor pa solicitar HTTPS.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "El direutoriu de datos y ficheros ye dablemente accesible dende Internet, darréu que'l ficheru .htaccess nun ta funcionando. Suxerímoste que configures el sirvidor web de mou que'l direutoriu de datos nun seya accesible o que muevas talu direutoriu fuera del raigañu de documentos del sirvidor web.", "Setup Warning" : "Avisu de configuración", "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.", @@ -125,13 +120,13 @@ "Allow users to share via link" : "Permitir a los usuarios compartir vía enllaz", "Enforce password protection" : "Ameyora la proteición por contraseña.", "Allow public uploads" : "Permitir xubes públiques", + "Allow users to send mail notification for shared files" : "Permitir a los usuarios unviar mensaxes de notificación pa ficheros compartíos", "Set default expiration date" : "Afitar la data d'espiración predeterminada", "Expire after " : "Caduca dempués de", "days" : "díes", "Enforce expiration date" : "Facer cumplir la data de caducidá", "Allow resharing" : "Permitir re-compartición", "Restrict users to only share with users in their groups" : "Restrinxir a los usuarios a compartir namái con otros usuarios nos sos grupos", - "Allow users to send mail notification for shared files" : "Permitir a los usuarios unviar mensaxes de notificación pa ficheros compartíos", "Exclude groups from sharing" : "Esclúi grupos de compartir", "These groups will still be able to receive shares, but not to initiate them." : "Estos grupos van poder siguir recibiendo conteníos compartíos, pero nun van poder anicialos", "Enforce HTTPS" : "Forciar HTTPS", diff --git a/settings/l10n/az.js b/settings/l10n/az.js index a1843da2ca2..edea4677552 100644 --- a/settings/l10n/az.js +++ b/settings/l10n/az.js @@ -4,8 +4,6 @@ OC.L10N.register( "Authentication error" : "Təyinat metodikası", "Your full name has been changed." : "Sizin tam adınız dəyişdirildi.", "Unable to change full name" : "Tam adı dəyişmək olmur", - "Group already exists" : "Qrup artıq mövcuddur", - "Unable to add group" : "Qrupu əlavə etmək olmur", "Files decrypted successfully" : "Fayllar uğurla deşifrə edildi", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Sizin faylları deşifrə etmək olmur, xahiş olunur owncloud.log faylını yoxlaya vəya inzibatçıya müraciət edəsiniz.", "Couldn't decrypt your files, check your password and try again" : "Sizin faylları deşifrə etmək olmur, xahiş olunur şifrəni yoxlaya və yenidən təkrar edəsiniz.", @@ -14,8 +12,6 @@ OC.L10N.register( "Couldn't remove app." : "Proqram təminatını silmək mümkün olmadı.", "Email saved" : "Məktub yadda saxlanıldı", "Invalid email" : "Yalnış məktub", - "Unable to delete group" : "Qrupu silmək olmur", - "Unable to delete user" : "İstifadəçini silmək olmur", "Backups restored successfully" : "Ehtiyyat nüsxələr uğurla geri qaytarıldı", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Sizin şifrələnmə açarlarınızı geri qaytarmaq mümkün olmadı, xahış olunur owncloud.log faylını yoxlaya və ya inzibatçıya müraciət edəsiniz.", "Language changed" : "Dil dəyişdirildi", diff --git a/settings/l10n/az.json b/settings/l10n/az.json index 37e8fe44761..222e8372f4c 100644 --- a/settings/l10n/az.json +++ b/settings/l10n/az.json @@ -2,8 +2,6 @@ "Authentication error" : "Təyinat metodikası", "Your full name has been changed." : "Sizin tam adınız dəyişdirildi.", "Unable to change full name" : "Tam adı dəyişmək olmur", - "Group already exists" : "Qrup artıq mövcuddur", - "Unable to add group" : "Qrupu əlavə etmək olmur", "Files decrypted successfully" : "Fayllar uğurla deşifrə edildi", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Sizin faylları deşifrə etmək olmur, xahiş olunur owncloud.log faylını yoxlaya vəya inzibatçıya müraciət edəsiniz.", "Couldn't decrypt your files, check your password and try again" : "Sizin faylları deşifrə etmək olmur, xahiş olunur şifrəni yoxlaya və yenidən təkrar edəsiniz.", @@ -12,8 +10,6 @@ "Couldn't remove app." : "Proqram təminatını silmək mümkün olmadı.", "Email saved" : "Məktub yadda saxlanıldı", "Invalid email" : "Yalnış məktub", - "Unable to delete group" : "Qrupu silmək olmur", - "Unable to delete user" : "İstifadəçini silmək olmur", "Backups restored successfully" : "Ehtiyyat nüsxələr uğurla geri qaytarıldı", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Sizin şifrələnmə açarlarınızı geri qaytarmaq mümkün olmadı, xahış olunur owncloud.log faylını yoxlaya və ya inzibatçıya müraciət edəsiniz.", "Language changed" : "Dil dəyişdirildi", diff --git a/settings/l10n/bg_BG.js b/settings/l10n/bg_BG.js index 506f44c4407..85b29f50807 100644 --- a/settings/l10n/bg_BG.js +++ b/settings/l10n/bg_BG.js @@ -10,8 +10,6 @@ OC.L10N.register( "Authentication error" : "Възникна проблем с идентификацията", "Your full name has been changed." : "Пълното ти име е променено.", "Unable to change full name" : "Неуспешна промяна на пълното име.", - "Group already exists" : "Групата вече съществува", - "Unable to add group" : "Неуспешно добавяне на група", "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" : "Неуспешно разшифроване на файловете ти, провери паролата си и опитай отново.", @@ -20,8 +18,6 @@ OC.L10N.register( "Couldn't remove app." : "Неуспешно премахване на приложението.", "Email saved" : "Имейла запазен", "Invalid email" : "Невалиден имейл", - "Unable to delete group" : "Неуспешно изтриване на група", - "Unable to delete user" : "Неуспешно изтриване на потребител", "Backups restored successfully" : "Резервното копие е успешно възстановено.", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Неуспешно възстановяване на криптиращите ти ключове, моля провери owncloud.log или попитай администратора.", "Language changed" : "Езикът е променен", @@ -102,7 +98,6 @@ OC.L10N.register( "TLS" : "TLS", "Security Warning" : "Предупреждение за Сигурноста", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "В момента използваш HTTP, за да посетиш %s. Силно препоръчваме да настроиш съвръра си да използва HTTPS.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Твоята директория за данни и файлове вероятно са достъпни от интернет. .htaccess файла не функционира. Силно препоръчваме да настроиш уебсъръра по такъв начин, че директорията за данни да не бъде достъпна или да я преместиш извън директорията корен на сървъра.", "Setup Warning" : "Предупреждение за Настройките", "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.", @@ -117,7 +112,6 @@ OC.L10N.register( "This means that there might be problems with certain characters in file names." : "Това означва, че може да има проблеми с определини символи в имената на файловете.", "URL generation in notification emails" : "Генериране на URL в имейлите за известяване", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Ако инсталацията не e инсталиранa в root на домейна и използва cron, може да има проблеми с генерирането на URL. За да избегнеш тези проблеми, моля, промени \"overwritewebroot\" в config.php с webroot пътя (Препоръчително: \"%s\")", - "Connectivity Checks" : "Проверки за свързаност", "No problems found" : "Не са открити проблеми", "Please double check the <a href='%s'>installation guides</a>." : "Моля, провери <a href='%s'>ръководството за инсталиране</a> отново.", "Last cron was executed at %s." : "Последният cron се изпълни в %s.", @@ -130,13 +124,13 @@ OC.L10N.register( "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 " : "Изтечи след", "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" : "Разреши потребителите да изпращат имейл уведомления за споделени файлове.", "Exclude groups from sharing" : "Забрани групи да споделят", "These groups will still be able to receive shares, but not to initiate them." : "Тези групи ще могат да получават споделения, но няма да могат самите те да споделят.", "Enforce HTTPS" : "Изисквай HTTPS", diff --git a/settings/l10n/bg_BG.json b/settings/l10n/bg_BG.json index 2c000622209..a59b086b9e7 100644 --- a/settings/l10n/bg_BG.json +++ b/settings/l10n/bg_BG.json @@ -8,8 +8,6 @@ "Authentication error" : "Възникна проблем с идентификацията", "Your full name has been changed." : "Пълното ти име е променено.", "Unable to change full name" : "Неуспешна промяна на пълното име.", - "Group already exists" : "Групата вече съществува", - "Unable to add group" : "Неуспешно добавяне на група", "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" : "Неуспешно разшифроване на файловете ти, провери паролата си и опитай отново.", @@ -18,8 +16,6 @@ "Couldn't remove app." : "Неуспешно премахване на приложението.", "Email saved" : "Имейла запазен", "Invalid email" : "Невалиден имейл", - "Unable to delete group" : "Неуспешно изтриване на група", - "Unable to delete user" : "Неуспешно изтриване на потребител", "Backups restored successfully" : "Резервното копие е успешно възстановено.", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Неуспешно възстановяване на криптиращите ти ключове, моля провери owncloud.log или попитай администратора.", "Language changed" : "Езикът е променен", @@ -100,7 +96,6 @@ "TLS" : "TLS", "Security Warning" : "Предупреждение за Сигурноста", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "В момента използваш HTTP, за да посетиш %s. Силно препоръчваме да настроиш съвръра си да използва HTTPS.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Твоята директория за данни и файлове вероятно са достъпни от интернет. .htaccess файла не функционира. Силно препоръчваме да настроиш уебсъръра по такъв начин, че директорията за данни да не бъде достъпна или да я преместиш извън директорията корен на сървъра.", "Setup Warning" : "Предупреждение за Настройките", "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.", @@ -115,7 +110,6 @@ "This means that there might be problems with certain characters in file names." : "Това означва, че може да има проблеми с определини символи в имената на файловете.", "URL generation in notification emails" : "Генериране на URL в имейлите за известяване", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Ако инсталацията не e инсталиранa в root на домейна и използва cron, може да има проблеми с генерирането на URL. За да избегнеш тези проблеми, моля, промени \"overwritewebroot\" в config.php с webroot пътя (Препоръчително: \"%s\")", - "Connectivity 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,13 +122,13 @@ "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 " : "Изтечи след", "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" : "Разреши потребителите да изпращат имейл уведомления за споделени файлове.", "Exclude groups from sharing" : "Забрани групи да споделят", "These groups will still be able to receive shares, but not to initiate them." : "Тези групи ще могат да получават споделения, но няма да могат самите те да споделят.", "Enforce HTTPS" : "Изисквай HTTPS", diff --git a/settings/l10n/bn_BD.js b/settings/l10n/bn_BD.js index 8d841f08b89..23d6f94c506 100644 --- a/settings/l10n/bn_BD.js +++ b/settings/l10n/bn_BD.js @@ -6,14 +6,10 @@ OC.L10N.register( "Email Server" : "ইমেইল সার্ভার", "Authentication error" : "অনুমোদন ঘটিত সমস্যা", "Your full name has been changed." : "আপনার পূর্ণ নাম পরিবর্তন করা হয়েছে।", - "Group already exists" : "গোষ্ঠীটি পূর্ব থেকেই বিদ্যমান", - "Unable to add group" : "গোষ্ঠী যোগ করা সম্ভব হলো না", "Files decrypted successfully" : "সার্থকভাবে ফাইল ডিক্রিপ্ট করা হয়েছে", "Couldn't remove app." : "অ্যাপ অপসারণ করা গেলনা", "Email saved" : "ই-মেইল সংরক্ষন করা হয়েছে", "Invalid email" : "ই-মেইলটি সঠিক নয়", - "Unable to delete group" : "গোষ্ঠী মুছে ফেলা সম্ভব হলো না ", - "Unable to delete user" : "ব্যবহারকারী মুছে ফেলা সম্ভব হলো না ", "Backups restored successfully" : "ব্যাকআপ পূণঃস্থাপন সুসম্পন্ন", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "িআপনার এনক্রিপসন কি পূনর্বাসন করা গেলনা, আপনার owncloud.log পিরীক্ষা করুন বা প্রশাসককে জিজ্ঞাসা করুন", "Language changed" : "ভাষা পরিবর্তন করা হয়েছে", diff --git a/settings/l10n/bn_BD.json b/settings/l10n/bn_BD.json index 3c73fdcfd00..5f147b92a2d 100644 --- a/settings/l10n/bn_BD.json +++ b/settings/l10n/bn_BD.json @@ -4,14 +4,10 @@ "Email Server" : "ইমেইল সার্ভার", "Authentication error" : "অনুমোদন ঘটিত সমস্যা", "Your full name has been changed." : "আপনার পূর্ণ নাম পরিবর্তন করা হয়েছে।", - "Group already exists" : "গোষ্ঠীটি পূর্ব থেকেই বিদ্যমান", - "Unable to add group" : "গোষ্ঠী যোগ করা সম্ভব হলো না", "Files decrypted successfully" : "সার্থকভাবে ফাইল ডিক্রিপ্ট করা হয়েছে", "Couldn't remove app." : "অ্যাপ অপসারণ করা গেলনা", "Email saved" : "ই-মেইল সংরক্ষন করা হয়েছে", "Invalid email" : "ই-মেইলটি সঠিক নয়", - "Unable to delete group" : "গোষ্ঠী মুছে ফেলা সম্ভব হলো না ", - "Unable to delete user" : "ব্যবহারকারী মুছে ফেলা সম্ভব হলো না ", "Backups restored successfully" : "ব্যাকআপ পূণঃস্থাপন সুসম্পন্ন", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "িআপনার এনক্রিপসন কি পূনর্বাসন করা গেলনা, আপনার owncloud.log পিরীক্ষা করুন বা প্রশাসককে জিজ্ঞাসা করুন", "Language changed" : "ভাষা পরিবর্তন করা হয়েছে", diff --git a/settings/l10n/ca.js b/settings/l10n/ca.js index a37af93933d..447346bf90a 100644 --- a/settings/l10n/ca.js +++ b/settings/l10n/ca.js @@ -10,8 +10,6 @@ OC.L10N.register( "Authentication error" : "Error d'autenticació", "Your full name has been changed." : "El vostre nom complet ha canviat.", "Unable to change full name" : "No s'ha pogut canviar el nom complet", - "Group already exists" : "El grup ja existeix", - "Unable to add group" : "No es pot afegir el grup", "Files decrypted successfully" : "Els fitxers s'han desencriptat amb èxit", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "No es poden desencriptar els fitxers. Comproveu owncloud.log o demaneu-ho a l'administrador.", "Couldn't decrypt your files, check your password and try again" : "No s'han pogut desencriptar els fitxers, comproveu la contrasenya i proveu-ho de nou", @@ -20,8 +18,6 @@ OC.L10N.register( "Couldn't remove app." : "No s'ha pogut eliminar l'aplicació", "Email saved" : "S'ha desat el correu electrònic", "Invalid email" : "El correu electrònic no és vàlid", - "Unable to delete group" : "No es pot eliminar el grup", - "Unable to delete user" : "No es pot eliminar l'usuari", "Backups restored successfully" : "Les còpies de seguretat s'han restablert correctament", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "No es poden restablir les claus d'encriptació. Comproveu owncloud.log o demaneu-ho a l'administrador.", "Language changed" : "S'ha canviat l'idioma", @@ -102,7 +98,6 @@ OC.L10N.register( "TLS" : "TLS", "Security Warning" : "Avís de seguretat", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Esteu accedint a %s a través de HTTP. Us recomanem fermament que configureu el servidor perquè requereixi HTTPS.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "La carpeta de dades i els vostres fitxersprobablement són accessibles des d'Internet. La fitxer .htaccess no funciona. Us recomanem que configureu el servidor web de tal manera que la carpeta de dades no sigui accessible o que moveu la carpeta de dades fora de l'arrel de documents del servidor web.", "Setup Warning" : "Avís de configuració", "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.", @@ -117,7 +112,6 @@ OC.L10N.register( "This means that there might be problems with certain characters in file names." : "Això podria comportar problemes amb alguns caràcters en els noms dels fitxer.", "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Recomanem fermament que instal·leu els paquets requerits en el vostre sistema per suportar un dels següents idiomes: %s", "URL generation in notification emails" : "Generar URL en els correus de notificació", - "Connectivity Checks" : "Verificacions de connectivitat", "No problems found" : "No hem trovat problemes", "Please double check the <a href='%s'>installation guides</a>." : "Comproveu les <a href='%s'>guies d'instal·lació</a>.", "Last cron was executed at %s." : "L'últim cron s'ha executat el %s", @@ -130,13 +124,13 @@ OC.L10N.register( "Allow users to share via link" : "Permet als usuaris compartir a través d'enllaços", "Enforce password protection" : "Reforça la protecció amb contrasenya", "Allow public uploads" : "Permet pujada pública", + "Allow users to send mail notification for shared files" : "Permet als usuaris enviar notificacions de fitxers compartits per correu ", "Set default expiration date" : "Estableix la data de venciment", "Expire after " : "Venciment després de", "days" : "dies", "Enforce expiration date" : "Força la data de venciment", "Allow resharing" : "Permet compartir de nou", "Restrict users to only share with users in their groups" : "Permet als usuaris compartir només amb usuaris del seu grup", - "Allow users to send mail notification for shared files" : "Permet als usuaris enviar notificacions de fitxers compartits per correu ", "Exclude groups from sharing" : "Exclou grups de compartició", "These groups will still be able to receive shares, but not to initiate them." : "Aquests fitxers encara podran rebre compartits, però no podran iniciar-los.", "Enforce HTTPS" : "Força HTTPS", diff --git a/settings/l10n/ca.json b/settings/l10n/ca.json index c8145ed03e2..ed4d4593e3f 100644 --- a/settings/l10n/ca.json +++ b/settings/l10n/ca.json @@ -8,8 +8,6 @@ "Authentication error" : "Error d'autenticació", "Your full name has been changed." : "El vostre nom complet ha canviat.", "Unable to change full name" : "No s'ha pogut canviar el nom complet", - "Group already exists" : "El grup ja existeix", - "Unable to add group" : "No es pot afegir el grup", "Files decrypted successfully" : "Els fitxers s'han desencriptat amb èxit", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "No es poden desencriptar els fitxers. Comproveu owncloud.log o demaneu-ho a l'administrador.", "Couldn't decrypt your files, check your password and try again" : "No s'han pogut desencriptar els fitxers, comproveu la contrasenya i proveu-ho de nou", @@ -18,8 +16,6 @@ "Couldn't remove app." : "No s'ha pogut eliminar l'aplicació", "Email saved" : "S'ha desat el correu electrònic", "Invalid email" : "El correu electrònic no és vàlid", - "Unable to delete group" : "No es pot eliminar el grup", - "Unable to delete user" : "No es pot eliminar l'usuari", "Backups restored successfully" : "Les còpies de seguretat s'han restablert correctament", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "No es poden restablir les claus d'encriptació. Comproveu owncloud.log o demaneu-ho a l'administrador.", "Language changed" : "S'ha canviat l'idioma", @@ -100,7 +96,6 @@ "TLS" : "TLS", "Security Warning" : "Avís de seguretat", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Esteu accedint a %s a través de HTTP. Us recomanem fermament que configureu el servidor perquè requereixi HTTPS.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "La carpeta de dades i els vostres fitxersprobablement són accessibles des d'Internet. La fitxer .htaccess no funciona. Us recomanem que configureu el servidor web de tal manera que la carpeta de dades no sigui accessible o que moveu la carpeta de dades fora de l'arrel de documents del servidor web.", "Setup Warning" : "Avís de configuració", "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.", @@ -115,7 +110,6 @@ "This means that there might be problems with certain characters in file names." : "Això podria comportar problemes amb alguns caràcters en els noms dels fitxer.", "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Recomanem fermament que instal·leu els paquets requerits en el vostre sistema per suportar un dels següents idiomes: %s", "URL generation in notification emails" : "Generar URL en els correus de notificació", - "Connectivity Checks" : "Verificacions de connectivitat", "No problems found" : "No hem trovat problemes", "Please double check the <a href='%s'>installation guides</a>." : "Comproveu les <a href='%s'>guies d'instal·lació</a>.", "Last cron was executed at %s." : "L'últim cron s'ha executat el %s", @@ -128,13 +122,13 @@ "Allow users to share via link" : "Permet als usuaris compartir a través d'enllaços", "Enforce password protection" : "Reforça la protecció amb contrasenya", "Allow public uploads" : "Permet pujada pública", + "Allow users to send mail notification for shared files" : "Permet als usuaris enviar notificacions de fitxers compartits per correu ", "Set default expiration date" : "Estableix la data de venciment", "Expire after " : "Venciment després de", "days" : "dies", "Enforce expiration date" : "Força la data de venciment", "Allow resharing" : "Permet compartir de nou", "Restrict users to only share with users in their groups" : "Permet als usuaris compartir només amb usuaris del seu grup", - "Allow users to send mail notification for shared files" : "Permet als usuaris enviar notificacions de fitxers compartits per correu ", "Exclude groups from sharing" : "Exclou grups de compartició", "These groups will still be able to receive shares, but not to initiate them." : "Aquests fitxers encara podran rebre compartits, però no podran iniciar-los.", "Enforce HTTPS" : "Força HTTPS", diff --git a/settings/l10n/cs_CZ.js b/settings/l10n/cs_CZ.js index 24a7d8dc31a..8b29f9b1687 100644 --- a/settings/l10n/cs_CZ.js +++ b/settings/l10n/cs_CZ.js @@ -10,8 +10,6 @@ OC.L10N.register( "Authentication error" : "Chyba přihlášení", "Your full name has been changed." : "Vaše celé jméno bylo změněno.", "Unable to change full name" : "Nelze změnit celé jméno", - "Group already exists" : "Skupina již existuje", - "Unable to add group" : "Nelze přidat skupinu", "Files decrypted successfully" : "Soubory úspěšně dešifrovány", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Nebylo možno dešifrovat soubory, zkontroluje prosím owncloud.log nebo kontaktujte svého správce systému", "Couldn't decrypt your files, check your password and try again" : "Nebylo možno dešifrovat soubory, zkontrolujte své heslo a zkuste znovu", @@ -20,8 +18,6 @@ OC.L10N.register( "Couldn't remove app." : "Nepodařilo se odebrat aplikaci.", "Email saved" : "E-mail uložen", "Invalid email" : "Neplatný e-mail", - "Unable to delete group" : "Nelze smazat skupinu", - "Unable to delete user" : "Nelze smazat uživatele", "Backups restored successfully" : "Zálohy úspěšně obnoveny", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Nebylo možno obnovit vaše šifrovací klíče, zkontrolujte prosím owncloud.log nebo kontaktujte svého správce systému", "Language changed" : "Jazyk byl změněn", @@ -39,12 +35,17 @@ OC.L10N.register( "Enabled" : "Povoleno", "Not enabled" : "Vypnuto", "Recommended" : "Doporučeno", + "Group already exists." : "Skupina již existuje.", + "Unable to add group." : "Nelze přidat skupinu.", + "Unable to delete group." : "Nelze smazat skupinu.", "Saved" : "Uloženo", "test email settings" : "otestovat nastavení e-mailu", "If you received this email, the settings seem to be correct." : "Pokud jste obdrželi tento e-mail, nastavení se zdají být v pořádku.", "A problem occurred while sending the email. Please revise your settings." : "Při odesílání e-mailu nastala chyba. Překontrolujte prosím svá nastavení.", "Email sent" : "E-mail odeslán", "You need to set your user email before being able to send test emails." : "Pro možnost odeslání zkušebních e-mailů musíte nejprve nastavit svou e-mailovou adresu.", + "Unable to create user." : "Nelze vytvořit uživatele.", + "Unable to delete user." : "Nelze smazat uživatele.", "Are you really sure you want add \"{domain}\" as trusted domain?" : "Jste si jisti, že chcete přidat \"{domain}\" mezi důvěryhodné domény?", "Add trusted domain" : "Přidat důvěryhodnou doménu", "Sending..." : "Odesílání...", @@ -102,7 +103,6 @@ OC.L10N.register( "TLS" : "TLS", "Security Warning" : "Bezpečnostní upozornění", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Přistupujete na %s protokolem HTTP. Důrazně doporučujeme nakonfigurovat server pro použití HTTPS.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Váš datový adresář i vaše soubory jsou pravděpodobně přístupné z internetu. Soubor .htaccess nefunguje. Důrazně doporučujeme nakonfigurovat webový server tak, aby datový adresář nebyl nadále přístupný, nebo přesunout datový adresář mimo prostor zpřístupňovaný webovým serverem.", "Read-Only config enabled" : "Konfigurační soubor pouze pro čtení", "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." : "Konfigurační soubor je pouze pro čtení. Toto omezuje možnost nastavení přes webové rozhraní. Dále musí být pro každou změnu povolen zápis do souboru ručně.", "Setup Warning" : "Upozornění nastavení", @@ -120,7 +120,7 @@ OC.L10N.register( "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Velmi doporučujeme nainstalovat požadované balíčky do systému, pro podporu jednoho z následujících národních prostředí: %s.", "URL generation in notification emails" : "Generování adresy URL v oznamovacích e-mailech", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Instalace mimo kořenový adresář domény a používání systémového příkazu cron může způsobit problém s generováním správné URL. Pro zabránění těmto chybám nastavte prosím správnou cestu ve svém config.php souboru v hodnotě \"overwritewebroot\" (Doporučujeme: \"%s\")", - "Connectivity Checks" : "Ověřování připojení", + "Configuration Checks" : "Ověření konfigurace", "No problems found" : "Nebyly nalezeny žádné problémy", "Please double check the <a href='%s'>installation guides</a>." : "Zkonzultujte, prosím, <a href='%s'>průvodce instalací</a>.", "Last cron was executed at %s." : "Poslední cron byl spuštěn v %s", @@ -133,13 +133,14 @@ OC.L10N.register( "Allow users to share via link" : "Povolit uživatelům sdílení pomocí odkazů", "Enforce password protection" : "Vynutit ochranu heslem", "Allow public uploads" : "Povolit veřejné nahrávání souborů", + "Allow users to send mail notification for shared files" : "Povolit uživatelům odesílat e-mailová upozornění pro sdílené soubory", "Set default expiration date" : "Nastavit výchozí datum vypršení platnosti", "Expire after " : "Vyprší po", "days" : "dnech", "Enforce expiration date" : "Vynutit datum vypršení", "Allow resharing" : "Povolit znovu-sdílení", "Restrict users to only share with users in their groups" : "Povolit sdílení pouze mezi uživateli v rámci skupiny", - "Allow users to send mail notification for shared files" : "Povolit uživatelům odesílat e-mailová upozornění pro sdílené soubory", + "Allow users to send mail notification for shared files to other users" : "Povolit uživatelům odesílat e-mailová upozornění na sdílené soubory", "Exclude groups from sharing" : "Vyjmout skupiny ze sdílení", "These groups will still be able to receive shares, but not to initiate them." : "Těmto skupinám bude stále možno sdílet, nemohou ale sami sdílet ostatním.", "Enforce HTTPS" : "Vynutit HTTPS", @@ -173,6 +174,7 @@ OC.L10N.register( "Documentation:" : "Dokumentace:", "User Documentation" : "Uživatelská dokumentace", "Admin Documentation" : "Dokumentace pro administrátory", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Tuto aplikaci nelze nainstalovat, protože nejsou splněny následující závislosti:", "Update to %s" : "Aktualizovat na %s", "Enable only for specific groups" : "Povolit pouze pro vybrané skupiny", "Uninstall App" : "Odinstalovat aplikaci", diff --git a/settings/l10n/cs_CZ.json b/settings/l10n/cs_CZ.json index a20d98b1b77..c55b4c06e2b 100644 --- a/settings/l10n/cs_CZ.json +++ b/settings/l10n/cs_CZ.json @@ -8,8 +8,6 @@ "Authentication error" : "Chyba přihlášení", "Your full name has been changed." : "Vaše celé jméno bylo změněno.", "Unable to change full name" : "Nelze změnit celé jméno", - "Group already exists" : "Skupina již existuje", - "Unable to add group" : "Nelze přidat skupinu", "Files decrypted successfully" : "Soubory úspěšně dešifrovány", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Nebylo možno dešifrovat soubory, zkontroluje prosím owncloud.log nebo kontaktujte svého správce systému", "Couldn't decrypt your files, check your password and try again" : "Nebylo možno dešifrovat soubory, zkontrolujte své heslo a zkuste znovu", @@ -18,8 +16,6 @@ "Couldn't remove app." : "Nepodařilo se odebrat aplikaci.", "Email saved" : "E-mail uložen", "Invalid email" : "Neplatný e-mail", - "Unable to delete group" : "Nelze smazat skupinu", - "Unable to delete user" : "Nelze smazat uživatele", "Backups restored successfully" : "Zálohy úspěšně obnoveny", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Nebylo možno obnovit vaše šifrovací klíče, zkontrolujte prosím owncloud.log nebo kontaktujte svého správce systému", "Language changed" : "Jazyk byl změněn", @@ -37,12 +33,17 @@ "Enabled" : "Povoleno", "Not enabled" : "Vypnuto", "Recommended" : "Doporučeno", + "Group already exists." : "Skupina již existuje.", + "Unable to add group." : "Nelze přidat skupinu.", + "Unable to delete group." : "Nelze smazat skupinu.", "Saved" : "Uloženo", "test email settings" : "otestovat nastavení e-mailu", "If you received this email, the settings seem to be correct." : "Pokud jste obdrželi tento e-mail, nastavení se zdají být v pořádku.", "A problem occurred while sending the email. Please revise your settings." : "Při odesílání e-mailu nastala chyba. Překontrolujte prosím svá nastavení.", "Email sent" : "E-mail odeslán", "You need to set your user email before being able to send test emails." : "Pro možnost odeslání zkušebních e-mailů musíte nejprve nastavit svou e-mailovou adresu.", + "Unable to create user." : "Nelze vytvořit uživatele.", + "Unable to delete user." : "Nelze smazat uživatele.", "Are you really sure you want add \"{domain}\" as trusted domain?" : "Jste si jisti, že chcete přidat \"{domain}\" mezi důvěryhodné domény?", "Add trusted domain" : "Přidat důvěryhodnou doménu", "Sending..." : "Odesílání...", @@ -100,7 +101,6 @@ "TLS" : "TLS", "Security Warning" : "Bezpečnostní upozornění", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Přistupujete na %s protokolem HTTP. Důrazně doporučujeme nakonfigurovat server pro použití HTTPS.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Váš datový adresář i vaše soubory jsou pravděpodobně přístupné z internetu. Soubor .htaccess nefunguje. Důrazně doporučujeme nakonfigurovat webový server tak, aby datový adresář nebyl nadále přístupný, nebo přesunout datový adresář mimo prostor zpřístupňovaný webovým serverem.", "Read-Only config enabled" : "Konfigurační soubor pouze pro čtení", "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." : "Konfigurační soubor je pouze pro čtení. Toto omezuje možnost nastavení přes webové rozhraní. Dále musí být pro každou změnu povolen zápis do souboru ručně.", "Setup Warning" : "Upozornění nastavení", @@ -118,7 +118,7 @@ "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Velmi doporučujeme nainstalovat požadované balíčky do systému, pro podporu jednoho z následujících národních prostředí: %s.", "URL generation in notification emails" : "Generování adresy URL v oznamovacích e-mailech", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Instalace mimo kořenový adresář domény a používání systémového příkazu cron může způsobit problém s generováním správné URL. Pro zabránění těmto chybám nastavte prosím správnou cestu ve svém config.php souboru v hodnotě \"overwritewebroot\" (Doporučujeme: \"%s\")", - "Connectivity Checks" : "Ověřování připojení", + "Configuration Checks" : "Ověření konfigurace", "No problems found" : "Nebyly nalezeny žádné problémy", "Please double check the <a href='%s'>installation guides</a>." : "Zkonzultujte, prosím, <a href='%s'>průvodce instalací</a>.", "Last cron was executed at %s." : "Poslední cron byl spuštěn v %s", @@ -131,13 +131,14 @@ "Allow users to share via link" : "Povolit uživatelům sdílení pomocí odkazů", "Enforce password protection" : "Vynutit ochranu heslem", "Allow public uploads" : "Povolit veřejné nahrávání souborů", + "Allow users to send mail notification for shared files" : "Povolit uživatelům odesílat e-mailová upozornění pro sdílené soubory", "Set default expiration date" : "Nastavit výchozí datum vypršení platnosti", "Expire after " : "Vyprší po", "days" : "dnech", "Enforce expiration date" : "Vynutit datum vypršení", "Allow resharing" : "Povolit znovu-sdílení", "Restrict users to only share with users in their groups" : "Povolit sdílení pouze mezi uživateli v rámci skupiny", - "Allow users to send mail notification for shared files" : "Povolit uživatelům odesílat e-mailová upozornění pro sdílené soubory", + "Allow users to send mail notification for shared files to other users" : "Povolit uživatelům odesílat e-mailová upozornění na sdílené soubory", "Exclude groups from sharing" : "Vyjmout skupiny ze sdílení", "These groups will still be able to receive shares, but not to initiate them." : "Těmto skupinám bude stále možno sdílet, nemohou ale sami sdílet ostatním.", "Enforce HTTPS" : "Vynutit HTTPS", @@ -171,6 +172,7 @@ "Documentation:" : "Dokumentace:", "User Documentation" : "Uživatelská dokumentace", "Admin Documentation" : "Dokumentace pro administrátory", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Tuto aplikaci nelze nainstalovat, protože nejsou splněny následující závislosti:", "Update to %s" : "Aktualizovat na %s", "Enable only for specific groups" : "Povolit pouze pro vybrané skupiny", "Uninstall App" : "Odinstalovat aplikaci", diff --git a/settings/l10n/da.js b/settings/l10n/da.js index 98482027750..ad4a41979db 100644 --- a/settings/l10n/da.js +++ b/settings/l10n/da.js @@ -10,8 +10,6 @@ OC.L10N.register( "Authentication error" : "Adgangsfejl", "Your full name has been changed." : "Dit fulde navn er blevet ændret.", "Unable to change full name" : "Ikke i stand til at ændre dit fulde navn", - "Group already exists" : "Gruppen findes allerede", - "Unable to add group" : "Gruppen kan ikke oprettes", "Files decrypted successfully" : "Filer dekrypteret med succes", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Dine filer kunne ikke dekrypteres. Gennemse din owncloud log eller spørg din administrator", "Couldn't decrypt your files, check your password and try again" : "Dine filer kunne ikke dekrypteres. Check din adgangskode og forsøg igen", @@ -20,8 +18,6 @@ OC.L10N.register( "Couldn't remove app." : "Kunne ikke fjerne app'en.", "Email saved" : "E-mailadressen er gemt", "Invalid email" : "Ugyldig e-mailadresse", - "Unable to delete group" : "Gruppen kan ikke slettes", - "Unable to delete user" : "Bruger kan ikke slettes", "Backups restored successfully" : "Genskabelsen af sikkerhedskopierne blev gennemført", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Kunne ikke genskabe din krypyterings nøgle, se logfilen owncloud.log eller spørg en administrator", "Language changed" : "Sprog ændret", @@ -39,12 +35,17 @@ OC.L10N.register( "Enabled" : "Aktiveret", "Not enabled" : "Slået fra", "Recommended" : "Anbefalet", + "Group already exists." : "Gruppen findes allerede.", + "Unable to add group." : "Kan ikke tilføje gruppen.", + "Unable to delete group." : "Kan ikke slette gruppen.", "Saved" : "Gemt", "test email settings" : "test e-mailindstillinger", "If you received this email, the settings seem to be correct." : "Hvis du har modtaget denne e-mail, så lader indstillinger til at være korrekte.", "A problem occurred while sending the email. Please revise your settings." : "Der opstod en fejl under afsendelse af e-mailen. Gennemse venligst dine indstillinger.", "Email sent" : "E-mail afsendt", "You need to set your user email before being able to send test emails." : "Du skal angive din bruger-e-mail før der kan sendes test-e-mail.", + "Unable to create user." : "Kan ikke oprette brugeren.", + "Unable to delete user." : "Kan ikke slette brugeren.", "Are you really sure you want add \"{domain}\" as trusted domain?" : "Sikker på at du vil tilføje \"{domain}\" som et domæne du har tiilid til?", "Add trusted domain" : "Tilføj et domæne som du har tillid til", "Sending..." : "Sender...", @@ -102,7 +103,6 @@ OC.L10N.register( "TLS" : "TLS", "Security Warning" : "Sikkerhedsadvarsel", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Du tilgår %s via HTTP. Vi anbefaler at du konfigurerer din server til i stedet at kræve HTTPS.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Din data mappe og dine filer er muligvis tilgængelige fra internettet. .htaccess filen virker ikke. Vi anbefaler på det kraftigste at du konfigurerer din webserver så data mappen ikke længere er tilgængelig, eller at du flytter data mappen uden for webserverens dokument rod. ", "Read-Only config enabled" : "Skrivebeskyttet konfig. slået til", "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." : "Den skrivebeskyttede konfiguration er blevet slået til. Dette forhindrer indstillinger af nogle konfigurationer via webgrænsefladen. I tillæg skal filen gøres skrivbar manuelt for hver opdatering.", "Setup Warning" : "Opsætnings Advarsel", @@ -120,7 +120,7 @@ OC.L10N.register( "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Vi anbefaler kraftigt, at du installerer den krævede pakke på dit system, for at understøtte følgende lokaliteter: %s.", "URL generation in notification emails" : "URL-oprettelse i e-mailnotifikationer.", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Hvis din installation ikke er installeret i roden af domænet, og bruger systemets cron, så kan der være problemer med URL-oprettelsen. For at undgå disse problemer, så angiv tilvalget \"overwritewebroot\" i din fil config.php til webrodens sti for din installation (foreslået værdi: \"%s\")", - "Connectivity Checks" : "Forbindelsestjek", + "Configuration Checks" : "Konfigurationstjek", "No problems found" : "Der blev ikke fundet problemer", "Please double check the <a href='%s'>installation guides</a>." : "Dobbelttjek venligst <a href='%s'>installations vejledningerne</a>.", "Last cron was executed at %s." : "Seneste 'cron' blev kørt %s.", @@ -133,13 +133,14 @@ OC.L10N.register( "Allow users to share via link" : "Tillad brugere at dele via link", "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", "Expire after " : "Udløber efter", "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", - "Allow users to send mail notification for shared files" : "Tillad brugere at sende mail underretninger for delte filer", + "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.", "Enforce HTTPS" : "Gennemtving HTTPS", @@ -173,6 +174,7 @@ OC.L10N.register( "Documentation:" : "Dokumentation:", "User Documentation" : "Brugerdokumentation", "Admin Documentation" : "Administrator Dokumentation", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Dette program kan ikke installeres, da følgende afhængigheder ikke imødekommes:", "Update to %s" : "Opdatér til %s", "Enable only for specific groups" : "Aktivér kun for udvalgte grupper", "Uninstall App" : "Afinstallér app", diff --git a/settings/l10n/da.json b/settings/l10n/da.json index 1700339c849..8861beb5b08 100644 --- a/settings/l10n/da.json +++ b/settings/l10n/da.json @@ -8,8 +8,6 @@ "Authentication error" : "Adgangsfejl", "Your full name has been changed." : "Dit fulde navn er blevet ændret.", "Unable to change full name" : "Ikke i stand til at ændre dit fulde navn", - "Group already exists" : "Gruppen findes allerede", - "Unable to add group" : "Gruppen kan ikke oprettes", "Files decrypted successfully" : "Filer dekrypteret med succes", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Dine filer kunne ikke dekrypteres. Gennemse din owncloud log eller spørg din administrator", "Couldn't decrypt your files, check your password and try again" : "Dine filer kunne ikke dekrypteres. Check din adgangskode og forsøg igen", @@ -18,8 +16,6 @@ "Couldn't remove app." : "Kunne ikke fjerne app'en.", "Email saved" : "E-mailadressen er gemt", "Invalid email" : "Ugyldig e-mailadresse", - "Unable to delete group" : "Gruppen kan ikke slettes", - "Unable to delete user" : "Bruger kan ikke slettes", "Backups restored successfully" : "Genskabelsen af sikkerhedskopierne blev gennemført", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Kunne ikke genskabe din krypyterings nøgle, se logfilen owncloud.log eller spørg en administrator", "Language changed" : "Sprog ændret", @@ -37,12 +33,17 @@ "Enabled" : "Aktiveret", "Not enabled" : "Slået fra", "Recommended" : "Anbefalet", + "Group already exists." : "Gruppen findes allerede.", + "Unable to add group." : "Kan ikke tilføje gruppen.", + "Unable to delete group." : "Kan ikke slette gruppen.", "Saved" : "Gemt", "test email settings" : "test e-mailindstillinger", "If you received this email, the settings seem to be correct." : "Hvis du har modtaget denne e-mail, så lader indstillinger til at være korrekte.", "A problem occurred while sending the email. Please revise your settings." : "Der opstod en fejl under afsendelse af e-mailen. Gennemse venligst dine indstillinger.", "Email sent" : "E-mail afsendt", "You need to set your user email before being able to send test emails." : "Du skal angive din bruger-e-mail før der kan sendes test-e-mail.", + "Unable to create user." : "Kan ikke oprette brugeren.", + "Unable to delete user." : "Kan ikke slette brugeren.", "Are you really sure you want add \"{domain}\" as trusted domain?" : "Sikker på at du vil tilføje \"{domain}\" som et domæne du har tiilid til?", "Add trusted domain" : "Tilføj et domæne som du har tillid til", "Sending..." : "Sender...", @@ -100,7 +101,6 @@ "TLS" : "TLS", "Security Warning" : "Sikkerhedsadvarsel", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Du tilgår %s via HTTP. Vi anbefaler at du konfigurerer din server til i stedet at kræve HTTPS.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Din data mappe og dine filer er muligvis tilgængelige fra internettet. .htaccess filen virker ikke. Vi anbefaler på det kraftigste at du konfigurerer din webserver så data mappen ikke længere er tilgængelig, eller at du flytter data mappen uden for webserverens dokument rod. ", "Read-Only config enabled" : "Skrivebeskyttet konfig. slået til", "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." : "Den skrivebeskyttede konfiguration er blevet slået til. Dette forhindrer indstillinger af nogle konfigurationer via webgrænsefladen. I tillæg skal filen gøres skrivbar manuelt for hver opdatering.", "Setup Warning" : "Opsætnings Advarsel", @@ -118,7 +118,7 @@ "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Vi anbefaler kraftigt, at du installerer den krævede pakke på dit system, for at understøtte følgende lokaliteter: %s.", "URL generation in notification emails" : "URL-oprettelse i e-mailnotifikationer.", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Hvis din installation ikke er installeret i roden af domænet, og bruger systemets cron, så kan der være problemer med URL-oprettelsen. For at undgå disse problemer, så angiv tilvalget \"overwritewebroot\" i din fil config.php til webrodens sti for din installation (foreslået værdi: \"%s\")", - "Connectivity Checks" : "Forbindelsestjek", + "Configuration Checks" : "Konfigurationstjek", "No problems found" : "Der blev ikke fundet problemer", "Please double check the <a href='%s'>installation guides</a>." : "Dobbelttjek venligst <a href='%s'>installations vejledningerne</a>.", "Last cron was executed at %s." : "Seneste 'cron' blev kørt %s.", @@ -131,13 +131,14 @@ "Allow users to share via link" : "Tillad brugere at dele via link", "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", "Expire after " : "Udløber efter", "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", - "Allow users to send mail notification for shared files" : "Tillad brugere at sende mail underretninger for delte filer", + "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.", "Enforce HTTPS" : "Gennemtving HTTPS", @@ -171,6 +172,7 @@ "Documentation:" : "Dokumentation:", "User Documentation" : "Brugerdokumentation", "Admin Documentation" : "Administrator Dokumentation", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Dette program kan ikke installeres, da følgende afhængigheder ikke imødekommes:", "Update to %s" : "Opdatér til %s", "Enable only for specific groups" : "Aktivér kun for udvalgte grupper", "Uninstall App" : "Afinstallér app", diff --git a/settings/l10n/de.js b/settings/l10n/de.js index ec118a742cd..16ec56a7cf8 100644 --- a/settings/l10n/de.js +++ b/settings/l10n/de.js @@ -10,8 +10,6 @@ OC.L10N.register( "Authentication error" : "Fehler bei der Anmeldung", "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", - "Group already exists" : "Gruppe existiert bereits", - "Unable to add group" : "Gruppe konnte nicht angelegt werden", "Files decrypted successfully" : "Dateien erfolgreich entschlüsselt", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Dateien konnten nicht entschlüsselt werden, prüfe bitte Dein owncloud.log oder frage Deinen Administrator", "Couldn't decrypt your files, check your password and try again" : "Dateien konnten nicht entschlüsselt werden, bitte prüfe Dein Passwort und versuche es erneut.", @@ -20,8 +18,6 @@ OC.L10N.register( "Couldn't remove app." : "Die App konnte nicht entfernt werden.", "Email saved" : "E-Mail Adresse gespeichert", "Invalid email" : "Ungültige E-Mail Adresse", - "Unable to delete group" : "Gruppe konnte nicht gelöscht werden", - "Unable to delete user" : "Benutzer konnte nicht gelöscht werden", "Backups restored successfully" : "Backups erfolgreich wiederhergestellt", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Verschlüsselungsschlüssel konnten nicht wiederhergestellt werden, prüfe bitte Dein owncloud.log oder frage Deinen Administrator", "Language changed" : "Sprache geändert", @@ -39,12 +35,17 @@ OC.L10N.register( "Enabled" : "Aktiviert", "Not enabled" : "Nicht aktiviert", "Recommended" : "Empfohlen", + "Group already exists." : "Gruppe existiert bereits.", + "Unable to add group." : "Gruppe konnte nicht angelegt werden.", + "Unable to delete group." : "Gruppe konnte nicht gelöscht werden.", "Saved" : "Gespeichert", "test email settings" : "E-Mail-Einstellungen testen", "If you received this email, the settings seem to be correct." : "Wenn Sie diese E-Mail erhalten haben, sind die Einstellungen korrekt.", "A problem occurred while sending the email. Please revise your settings." : "Ein Problem ist beim Senden der E-Mail aufgetreten. Bitte überprüfe deine Einstellungen.", "Email sent" : "E-Mail wurde verschickt", "You need to set your user email before being able to send test emails." : "Du musst zunächst deine Benutzer-E-Mail-Adresse setzen, bevor du Test-E-Mail verschicken kannst.", + "Unable to create user." : "Benutzer konnte nicht erstellt werden.", + "Unable to delete user." : "Benutzer konnte nicht gelöscht werden.", "Are you really sure you want add \"{domain}\" as trusted domain?" : "Bist Du dir wirklich sicher, dass Du \"{domain}\" als vertrauenswürdige Domain hinzufügen möchtest?", "Add trusted domain" : "Vertrauenswürdige Domain hinzufügen", "Sending..." : "Sende...", @@ -102,7 +103,6 @@ OC.L10N.register( "TLS" : "TLS", "Security Warning" : "Sicherheitswarnung", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Du greifst auf %s via HTTP zu. Wir empfehlen Dir dringend, Deinen Server so konfigurieren, dass stattdessen HTTPS verlangt wird.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Dein Datenverzeichnis und deine Dateien sind möglicherweise aus dem Internet erreichbar. Die .htaccess-Datei funktioniert nicht. Wir raten dir dringend, dass du deinen Webserver dahingehend konfigurierst, dass dein Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder du verschiebst das Datenverzeichnis ausserhalb des Wurzelverzeichnisses des Webservers.", "Read-Only config enabled" : "Schreibgeschützte Konfiguration aktiviert", "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." : "Die schreibgeschützte Konfiguration wurde aktiviert. Dies schützt die Änderung einiger Konfigurationen über die Web-Schnittstelle. Weiterhin muss für die Datei der Schreibzugriff bei jedem Update händisch aktiviert werden.", "Setup Warning" : "Einrichtungswarnung", @@ -120,7 +120,7 @@ OC.L10N.register( "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Wir empfehlen dringend, die erforderlichen Pakete auf Ihrem System zu installieren, damit eine der folgenden Gebietsschemas unterstützt wird: %s.", "URL generation in notification emails" : "URL-Generierung in Mail-Benachrichtungen", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Wenn sich Deine Installation nicht im Wurzelverzeichnis der Domain befindet und Cron aus dem System genutzt wird, kann es zu Fehlern bei der URL-Generierung kommen. Um dies zu verhindern, setze bitte die \"overwritewebroot\"-Option in Deiner config.php auf das Web-Wurzelverzeichnis Deiner Installation (Vorschlag: \"%s\").", - "Connectivity Checks" : "Verbindungsüberprüfungen", + "Configuration Checks" : "Konfigurationsprüfungen", "No problems found" : "Keine Probleme gefunden", "Please double check the <a href='%s'>installation guides</a>." : "Bitte prüfe die <a href='%s'>Installationsanleitungen</a>.", "Last cron was executed at %s." : "Letzter Cron wurde um %s ausgeführt.", @@ -133,13 +133,14 @@ OC.L10N.register( "Allow users to share via link" : "Erlaube Nutzern, mithilfe von Links zu teilen", "Enforce password protection" : "Passwortschutz erzwingen", "Allow public uploads" : "Öffentliches Hochladen erlauben", + "Allow users to send mail notification for shared files" : "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden", "Set default expiration date" : "Setze Ablaufdatum", "Expire after " : "Ablauf nach ", "days" : "Tagen", "Enforce expiration date" : "Ablaufdatum erzwingen", "Allow resharing" : "Erlaubt erneutes Teilen", "Restrict users to only share with users in their groups" : "Erlaube Nutzern nur das Teilen in ihrer Gruppe", - "Allow users to send mail notification for shared files" : "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien 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" : "Erzwinge HTTPS", @@ -173,6 +174,7 @@ OC.L10N.register( "Documentation:" : "Dokumentation:", "User Documentation" : "Dokumentation für Benutzer", "Admin Documentation" : "Admin-Dokumentation", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Die App kann nicht installiert werden, weil die folgenden Abhängigkeiten nicht erfüllt sind:", "Update to %s" : "Aktualisierung auf %s", "Enable only for specific groups" : "Nur für spezifizierte Gruppen aktivieren", "Uninstall App" : "App deinstallieren", diff --git a/settings/l10n/de.json b/settings/l10n/de.json index 1a9342458bc..fc8f62c4496 100644 --- a/settings/l10n/de.json +++ b/settings/l10n/de.json @@ -8,8 +8,6 @@ "Authentication error" : "Fehler bei der Anmeldung", "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", - "Group already exists" : "Gruppe existiert bereits", - "Unable to add group" : "Gruppe konnte nicht angelegt werden", "Files decrypted successfully" : "Dateien erfolgreich entschlüsselt", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Dateien konnten nicht entschlüsselt werden, prüfe bitte Dein owncloud.log oder frage Deinen Administrator", "Couldn't decrypt your files, check your password and try again" : "Dateien konnten nicht entschlüsselt werden, bitte prüfe Dein Passwort und versuche es erneut.", @@ -18,8 +16,6 @@ "Couldn't remove app." : "Die App konnte nicht entfernt werden.", "Email saved" : "E-Mail Adresse gespeichert", "Invalid email" : "Ungültige E-Mail Adresse", - "Unable to delete group" : "Gruppe konnte nicht gelöscht werden", - "Unable to delete user" : "Benutzer konnte nicht gelöscht werden", "Backups restored successfully" : "Backups erfolgreich wiederhergestellt", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Verschlüsselungsschlüssel konnten nicht wiederhergestellt werden, prüfe bitte Dein owncloud.log oder frage Deinen Administrator", "Language changed" : "Sprache geändert", @@ -37,12 +33,17 @@ "Enabled" : "Aktiviert", "Not enabled" : "Nicht aktiviert", "Recommended" : "Empfohlen", + "Group already exists." : "Gruppe existiert bereits.", + "Unable to add group." : "Gruppe konnte nicht angelegt werden.", + "Unable to delete group." : "Gruppe konnte nicht gelöscht werden.", "Saved" : "Gespeichert", "test email settings" : "E-Mail-Einstellungen testen", "If you received this email, the settings seem to be correct." : "Wenn Sie diese E-Mail erhalten haben, sind die Einstellungen korrekt.", "A problem occurred while sending the email. Please revise your settings." : "Ein Problem ist beim Senden der E-Mail aufgetreten. Bitte überprüfe deine Einstellungen.", "Email sent" : "E-Mail wurde verschickt", "You need to set your user email before being able to send test emails." : "Du musst zunächst deine Benutzer-E-Mail-Adresse setzen, bevor du Test-E-Mail verschicken kannst.", + "Unable to create user." : "Benutzer konnte nicht erstellt werden.", + "Unable to delete user." : "Benutzer konnte nicht gelöscht werden.", "Are you really sure you want add \"{domain}\" as trusted domain?" : "Bist Du dir wirklich sicher, dass Du \"{domain}\" als vertrauenswürdige Domain hinzufügen möchtest?", "Add trusted domain" : "Vertrauenswürdige Domain hinzufügen", "Sending..." : "Sende...", @@ -100,7 +101,6 @@ "TLS" : "TLS", "Security Warning" : "Sicherheitswarnung", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Du greifst auf %s via HTTP zu. Wir empfehlen Dir dringend, Deinen Server so konfigurieren, dass stattdessen HTTPS verlangt wird.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Dein Datenverzeichnis und deine Dateien sind möglicherweise aus dem Internet erreichbar. Die .htaccess-Datei funktioniert nicht. Wir raten dir dringend, dass du deinen Webserver dahingehend konfigurierst, dass dein Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder du verschiebst das Datenverzeichnis ausserhalb des Wurzelverzeichnisses des Webservers.", "Read-Only config enabled" : "Schreibgeschützte Konfiguration aktiviert", "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." : "Die schreibgeschützte Konfiguration wurde aktiviert. Dies schützt die Änderung einiger Konfigurationen über die Web-Schnittstelle. Weiterhin muss für die Datei der Schreibzugriff bei jedem Update händisch aktiviert werden.", "Setup Warning" : "Einrichtungswarnung", @@ -118,7 +118,7 @@ "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Wir empfehlen dringend, die erforderlichen Pakete auf Ihrem System zu installieren, damit eine der folgenden Gebietsschemas unterstützt wird: %s.", "URL generation in notification emails" : "URL-Generierung in Mail-Benachrichtungen", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Wenn sich Deine Installation nicht im Wurzelverzeichnis der Domain befindet und Cron aus dem System genutzt wird, kann es zu Fehlern bei der URL-Generierung kommen. Um dies zu verhindern, setze bitte die \"overwritewebroot\"-Option in Deiner config.php auf das Web-Wurzelverzeichnis Deiner Installation (Vorschlag: \"%s\").", - "Connectivity Checks" : "Verbindungsüberprüfungen", + "Configuration Checks" : "Konfigurationsprüfungen", "No problems found" : "Keine Probleme gefunden", "Please double check the <a href='%s'>installation guides</a>." : "Bitte prüfe die <a href='%s'>Installationsanleitungen</a>.", "Last cron was executed at %s." : "Letzter Cron wurde um %s ausgeführt.", @@ -131,13 +131,14 @@ "Allow users to share via link" : "Erlaube Nutzern, mithilfe von Links zu teilen", "Enforce password protection" : "Passwortschutz erzwingen", "Allow public uploads" : "Öffentliches Hochladen erlauben", + "Allow users to send mail notification for shared files" : "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden", "Set default expiration date" : "Setze Ablaufdatum", "Expire after " : "Ablauf nach ", "days" : "Tagen", "Enforce expiration date" : "Ablaufdatum erzwingen", "Allow resharing" : "Erlaubt erneutes Teilen", "Restrict users to only share with users in their groups" : "Erlaube Nutzern nur das Teilen in ihrer Gruppe", - "Allow users to send mail notification for shared files" : "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien 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" : "Erzwinge HTTPS", @@ -171,6 +172,7 @@ "Documentation:" : "Dokumentation:", "User Documentation" : "Dokumentation für Benutzer", "Admin Documentation" : "Admin-Dokumentation", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Die App kann nicht installiert werden, weil die folgenden Abhängigkeiten nicht erfüllt sind:", "Update to %s" : "Aktualisierung auf %s", "Enable only for specific groups" : "Nur für spezifizierte Gruppen aktivieren", "Uninstall App" : "App deinstallieren", diff --git a/settings/l10n/de_DE.js b/settings/l10n/de_DE.js index 756e8a0d8dd..611092ba723 100644 --- a/settings/l10n/de_DE.js +++ b/settings/l10n/de_DE.js @@ -10,8 +10,6 @@ OC.L10N.register( "Authentication error" : "Authentifizierungs-Fehler", "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", - "Group already exists" : "Die Gruppe existiert bereits", - "Unable to add group" : "Die Gruppe konnte nicht angelegt werden", "Files decrypted successfully" : "Dateien erfolgreich entschlüsselt", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Dateien konnten nicht entschlüsselt werden, prüfen Sie bitte Ihre owncloud.log oder fragen Sie Ihren Administrator", "Couldn't decrypt your files, check your password and try again" : "Dateien konnten nicht entschlüsselt werden, bitte prüfen Sie Ihr Passwort und versuchen Sie es erneut.", @@ -20,8 +18,6 @@ OC.L10N.register( "Couldn't remove app." : "Die App konnte nicht entfernt werden.", "Email saved" : "E-Mail-Adresse gespeichert", "Invalid email" : "Ungültige E-Mail-Adresse", - "Unable to delete group" : "Die Gruppe konnte nicht gelöscht werden", - "Unable to delete user" : "Der Benutzer konnte nicht gelöscht werden", "Backups restored successfully" : "Sicherungen erfolgreich wiederhergestellt", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Verschlüsselungsschlüssel konnten nicht wiederhergestellt werden, prüfen Sie bitte Ihre owncloud.log oder fragen Sie Ihren Administrator", "Language changed" : "Sprache geändert", @@ -39,12 +35,17 @@ OC.L10N.register( "Enabled" : "Aktiviert", "Not enabled" : "Nicht aktiviert", "Recommended" : "Empfohlen", + "Group already exists." : "Gruppe existiert bereits.", + "Unable to add group." : "Gruppe konnte nicht angelegt werden.", + "Unable to delete group." : "Gruppe konnte nicht gelöscht werden.", "Saved" : "Gespeichert", "test email settings" : "E-Mail-Einstellungen testen", "If you received this email, the settings seem to be correct." : "Wenn Sie diese E-Mail erhalten haben, scheinen die Einstellungen richtig zu sein.", "A problem occurred while sending the email. Please revise your settings." : "Ein Problem ist beim Senden der E-Mail aufgetreten. Bitte überprüfen Sie Ihre Einstellungen.", "Email sent" : "E-Mail gesendet", "You need to set your user email before being able to send test emails." : "Sie müssen Ihre Benutzer-E-Mail-Adresse einstellen, bevor Sie Test-E-Mails versenden können.", + "Unable to create user." : "Benutzer konnte nicht erstellt werden.", + "Unable to delete user." : "Benutzer konnte nicht gelöscht werden.", "Are you really sure you want add \"{domain}\" as trusted domain?" : "Sind Sie sich wirklich sicher, dass Sie »{domain}« als vertrauenswürdige Domain hinzufügen möchten?", "Add trusted domain" : "Vertrauenswürdige Domain hinzufügen", "Sending..." : "Wird gesendet …", @@ -102,7 +103,6 @@ OC.L10N.register( "TLS" : "TLS", "Security Warning" : "Sicherheitshinweis", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Sie greifen auf %s via HTTP zu. Wir empfehlen Ihnen dringend, Ihren Server so konfigurieren, dass stattdessen HTTPS verlangt wird.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Ihr Datenverzeichnis und Ihre Dateien sind möglicherweise aus dem Internet erreichbar. Die .htaccess-Datei funktioniert nicht. Wir raten Ihnen dringend, dass Sie Ihren Webserver dahingehend konfigurieren, dass Ihr Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder Sie verschieben das Datenverzeichnis außerhalb des Wurzelverzeichnisses des Webservers.", "Read-Only config enabled" : "Schreibgeschützte Konfiguration aktiviert", "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." : "Die schreibgeschützte Konfiguration wurde aktiviert. Dies schützt die Änderung einiger Konfigurationen über die Web-Schnittstelle. Weiterhin muss für die Datei der Schreibzugriff bei jedem Update händisch aktiviert werden.", "Setup Warning" : "Einrichtungswarnung", @@ -120,7 +120,7 @@ OC.L10N.register( "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Wir empfehlen dringend, die erforderlichen Pakete auf Ihrem System zu installieren, damit eine der folgenden Gebietsschemas unterstützt wird: %s.", "URL generation in notification emails" : "Adresserstellung in E-Mail-Benachrichtungen", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Wenn sich Ihre Installation nicht im Wurzelverzeichnis der Domain befindet und Cron aus dem System genutzt wird, kann es zu Fehlern bei der Adresserstellung kommen. Um dieses zu verhindern, stellen Sie bitte die »overwritewebroot«-Option in Ihrer config.php auf das Internetwurzelverzeichnis Ihrer Installation (Vorschlag: »%s«).", - "Connectivity Checks" : "Verbindungsüberprüfungen", + "Configuration Checks" : "Konfigurationsprüfungen", "No problems found" : "Keine Probleme gefunden", "Please double check the <a href='%s'>installation guides</a>." : "Bitte prüfen Sie die <a href='%s'>Installationsanleitungen</a>.", "Last cron was executed at %s." : "Letzter Cron wurde um %s ausgeführt.", @@ -133,13 +133,14 @@ OC.L10N.register( "Allow users to share via link" : "Benutzern erlauben, über Links Inhalte freizugeben", "Enforce password protection" : "Passwortschutz erzwingen", "Allow public uploads" : "Öffentliches Hochladen erlauben", + "Allow users to send mail notification for shared files" : "Benutzern erlauben E-Mail-Benachrichtigungen für freigegebene Dateien zu senden", "Set default expiration date" : "Standardablaufdatum einstellen", "Expire after " : "Ablauf nach ", "days" : "Tagen", "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" : "Benutzern erlauben E-Mail-Benachrichtigungen für freigegebene Dateien 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", @@ -173,6 +174,7 @@ OC.L10N.register( "Documentation:" : "Dokumentation:", "User Documentation" : "Dokumentation für Benutzer", "Admin Documentation" : "Dokumentation für Administratoren", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Diese App kann nicht installiert werden, weil die folgenden Abhängigkeiten nicht erfüllt sind:", "Update to %s" : "Aktualisierung auf %s", "Enable only for specific groups" : "Nur für bestimmte Gruppen aktivieren", "Uninstall App" : "App deinstallieren", diff --git a/settings/l10n/de_DE.json b/settings/l10n/de_DE.json index f28a3bafd21..6be5a21ffc4 100644 --- a/settings/l10n/de_DE.json +++ b/settings/l10n/de_DE.json @@ -8,8 +8,6 @@ "Authentication error" : "Authentifizierungs-Fehler", "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", - "Group already exists" : "Die Gruppe existiert bereits", - "Unable to add group" : "Die Gruppe konnte nicht angelegt werden", "Files decrypted successfully" : "Dateien erfolgreich entschlüsselt", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Dateien konnten nicht entschlüsselt werden, prüfen Sie bitte Ihre owncloud.log oder fragen Sie Ihren Administrator", "Couldn't decrypt your files, check your password and try again" : "Dateien konnten nicht entschlüsselt werden, bitte prüfen Sie Ihr Passwort und versuchen Sie es erneut.", @@ -18,8 +16,6 @@ "Couldn't remove app." : "Die App konnte nicht entfernt werden.", "Email saved" : "E-Mail-Adresse gespeichert", "Invalid email" : "Ungültige E-Mail-Adresse", - "Unable to delete group" : "Die Gruppe konnte nicht gelöscht werden", - "Unable to delete user" : "Der Benutzer konnte nicht gelöscht werden", "Backups restored successfully" : "Sicherungen erfolgreich wiederhergestellt", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Verschlüsselungsschlüssel konnten nicht wiederhergestellt werden, prüfen Sie bitte Ihre owncloud.log oder fragen Sie Ihren Administrator", "Language changed" : "Sprache geändert", @@ -37,12 +33,17 @@ "Enabled" : "Aktiviert", "Not enabled" : "Nicht aktiviert", "Recommended" : "Empfohlen", + "Group already exists." : "Gruppe existiert bereits.", + "Unable to add group." : "Gruppe konnte nicht angelegt werden.", + "Unable to delete group." : "Gruppe konnte nicht gelöscht werden.", "Saved" : "Gespeichert", "test email settings" : "E-Mail-Einstellungen testen", "If you received this email, the settings seem to be correct." : "Wenn Sie diese E-Mail erhalten haben, scheinen die Einstellungen richtig zu sein.", "A problem occurred while sending the email. Please revise your settings." : "Ein Problem ist beim Senden der E-Mail aufgetreten. Bitte überprüfen Sie Ihre Einstellungen.", "Email sent" : "E-Mail gesendet", "You need to set your user email before being able to send test emails." : "Sie müssen Ihre Benutzer-E-Mail-Adresse einstellen, bevor Sie Test-E-Mails versenden können.", + "Unable to create user." : "Benutzer konnte nicht erstellt werden.", + "Unable to delete user." : "Benutzer konnte nicht gelöscht werden.", "Are you really sure you want add \"{domain}\" as trusted domain?" : "Sind Sie sich wirklich sicher, dass Sie »{domain}« als vertrauenswürdige Domain hinzufügen möchten?", "Add trusted domain" : "Vertrauenswürdige Domain hinzufügen", "Sending..." : "Wird gesendet …", @@ -100,7 +101,6 @@ "TLS" : "TLS", "Security Warning" : "Sicherheitshinweis", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Sie greifen auf %s via HTTP zu. Wir empfehlen Ihnen dringend, Ihren Server so konfigurieren, dass stattdessen HTTPS verlangt wird.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Ihr Datenverzeichnis und Ihre Dateien sind möglicherweise aus dem Internet erreichbar. Die .htaccess-Datei funktioniert nicht. Wir raten Ihnen dringend, dass Sie Ihren Webserver dahingehend konfigurieren, dass Ihr Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder Sie verschieben das Datenverzeichnis außerhalb des Wurzelverzeichnisses des Webservers.", "Read-Only config enabled" : "Schreibgeschützte Konfiguration aktiviert", "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." : "Die schreibgeschützte Konfiguration wurde aktiviert. Dies schützt die Änderung einiger Konfigurationen über die Web-Schnittstelle. Weiterhin muss für die Datei der Schreibzugriff bei jedem Update händisch aktiviert werden.", "Setup Warning" : "Einrichtungswarnung", @@ -118,7 +118,7 @@ "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Wir empfehlen dringend, die erforderlichen Pakete auf Ihrem System zu installieren, damit eine der folgenden Gebietsschemas unterstützt wird: %s.", "URL generation in notification emails" : "Adresserstellung in E-Mail-Benachrichtungen", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Wenn sich Ihre Installation nicht im Wurzelverzeichnis der Domain befindet und Cron aus dem System genutzt wird, kann es zu Fehlern bei der Adresserstellung kommen. Um dieses zu verhindern, stellen Sie bitte die »overwritewebroot«-Option in Ihrer config.php auf das Internetwurzelverzeichnis Ihrer Installation (Vorschlag: »%s«).", - "Connectivity Checks" : "Verbindungsüberprüfungen", + "Configuration Checks" : "Konfigurationsprüfungen", "No problems found" : "Keine Probleme gefunden", "Please double check the <a href='%s'>installation guides</a>." : "Bitte prüfen Sie die <a href='%s'>Installationsanleitungen</a>.", "Last cron was executed at %s." : "Letzter Cron wurde um %s ausgeführt.", @@ -131,13 +131,14 @@ "Allow users to share via link" : "Benutzern erlauben, über Links Inhalte freizugeben", "Enforce password protection" : "Passwortschutz erzwingen", "Allow public uploads" : "Öffentliches Hochladen erlauben", + "Allow users to send mail notification for shared files" : "Benutzern erlauben E-Mail-Benachrichtigungen für freigegebene Dateien zu senden", "Set default expiration date" : "Standardablaufdatum einstellen", "Expire after " : "Ablauf nach ", "days" : "Tagen", "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" : "Benutzern erlauben E-Mail-Benachrichtigungen für freigegebene Dateien 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", @@ -171,6 +172,7 @@ "Documentation:" : "Dokumentation:", "User Documentation" : "Dokumentation für Benutzer", "Admin Documentation" : "Dokumentation für Administratoren", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Diese App kann nicht installiert werden, weil die folgenden Abhängigkeiten nicht erfüllt sind:", "Update to %s" : "Aktualisierung auf %s", "Enable only for specific groups" : "Nur für bestimmte Gruppen aktivieren", "Uninstall App" : "App deinstallieren", diff --git a/settings/l10n/el.js b/settings/l10n/el.js index 545b39b7687..3e00b0984d7 100644 --- a/settings/l10n/el.js +++ b/settings/l10n/el.js @@ -10,8 +10,6 @@ OC.L10N.register( "Authentication error" : "Σφάλμα πιστοποίησης", "Your full name has been changed." : "Το πλήρες όνομά σας άλλαξε.", "Unable to change full name" : "Δεν ήταν δυνατή η αλλαγή του πλήρους ονόματός σας", - "Group already exists" : "Η ομάδα υπάρχει ήδη", - "Unable to add group" : "Αδυναμία προσθήκης ομάδας", "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" : "Δεν ήταν δυνατή η αποκρυπτογράφηση των αρχείων σας, ελέγξτε τον κωδικό πρόσβασής σας και δοκιμάστε πάλι", @@ -20,8 +18,6 @@ OC.L10N.register( "Couldn't remove app." : "Αδυναμία αφαίρεσης εφαρμογής.", "Email saved" : "Το email αποθηκεύτηκε ", "Invalid email" : "Μη έγκυρο email", - "Unable to delete group" : "Αδυναμία διαγραφής ομάδας", - "Unable to delete user" : "Αδυναμία διαγραφής χρήστη", "Backups restored successfully" : "Η επαναφορά αντιγράφων ασφαλείας έγινε με επιτυχία", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Δεν ήταν δυνατή η επαναφορά των κλειδιών κρυπτογράφησής σας, παρακαλώ ελέγξτε το owncloud.log ή επικοινωνήστε με τον διαχειριστή σας", "Language changed" : "Η γλώσσα άλλαξε", @@ -102,7 +98,6 @@ OC.L10N.register( "TLS" : "TLS", "Security Warning" : "Προειδοποίηση Ασφαλείας", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Έχετε πρόσβαση στο %s μέσω HTTP. Προτείνουμε ανεπιφύλακτα να ρυθμίσετε το διακομιστή σας ώστε να απαιτεί χρήση HTTPS αντ' αυτού.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Ο κατάλογος δεδομένων και τα αρχεία σας πιθανόν να είναι διαθέσιμα στο διαδίκτυο. Το αρχείο .htaccess δεν δουλεύει. Σας προτείνουμε ανεπιφύλακτα να ρυθμίσετε το διακομιστή σας με τέτοιο τρόπο ώστε ο κατάλογος δεδομένων να μην είναι πλέον προσβάσιμος ή να μετακινήσετε τον κατάλογο δεδομένων έξω από τη ρίζα του καταλόγου του διακομιστή.", "Setup Warning" : "Ρύθμιση Προειδοποίησης", "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.", @@ -129,13 +124,13 @@ OC.L10N.register( "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 " : "Λήξη μετά από", "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" : "Επιτρέψτε στους χρήστες να στέλνουν ειδοποιήσεις μέσω ηλεκτρονικού ταχυδρομείου για κοινόχρηστα αρχεία", "Exclude groups from sharing" : "Εξαίρεση ομάδων από τον διαμοιρασμό", "These groups will still be able to receive shares, but not to initiate them." : "Αυτές οι ομάδες θα συνεχίσουν να λαμβάνουν διαμοιρασμούς, αλλά δεν θα είναι δυνατό να τους δημιουργήσουν.", "Enforce HTTPS" : "Επιβολή χρήσης HTTPS", diff --git a/settings/l10n/el.json b/settings/l10n/el.json index 7ac46e926d0..d25d7fd0345 100644 --- a/settings/l10n/el.json +++ b/settings/l10n/el.json @@ -8,8 +8,6 @@ "Authentication error" : "Σφάλμα πιστοποίησης", "Your full name has been changed." : "Το πλήρες όνομά σας άλλαξε.", "Unable to change full name" : "Δεν ήταν δυνατή η αλλαγή του πλήρους ονόματός σας", - "Group already exists" : "Η ομάδα υπάρχει ήδη", - "Unable to add group" : "Αδυναμία προσθήκης ομάδας", "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" : "Δεν ήταν δυνατή η αποκρυπτογράφηση των αρχείων σας, ελέγξτε τον κωδικό πρόσβασής σας και δοκιμάστε πάλι", @@ -18,8 +16,6 @@ "Couldn't remove app." : "Αδυναμία αφαίρεσης εφαρμογής.", "Email saved" : "Το email αποθηκεύτηκε ", "Invalid email" : "Μη έγκυρο email", - "Unable to delete group" : "Αδυναμία διαγραφής ομάδας", - "Unable to delete user" : "Αδυναμία διαγραφής χρήστη", "Backups restored successfully" : "Η επαναφορά αντιγράφων ασφαλείας έγινε με επιτυχία", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Δεν ήταν δυνατή η επαναφορά των κλειδιών κρυπτογράφησής σας, παρακαλώ ελέγξτε το owncloud.log ή επικοινωνήστε με τον διαχειριστή σας", "Language changed" : "Η γλώσσα άλλαξε", @@ -100,7 +96,6 @@ "TLS" : "TLS", "Security Warning" : "Προειδοποίηση Ασφαλείας", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Έχετε πρόσβαση στο %s μέσω HTTP. Προτείνουμε ανεπιφύλακτα να ρυθμίσετε το διακομιστή σας ώστε να απαιτεί χρήση HTTPS αντ' αυτού.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Ο κατάλογος δεδομένων και τα αρχεία σας πιθανόν να είναι διαθέσιμα στο διαδίκτυο. Το αρχείο .htaccess δεν δουλεύει. Σας προτείνουμε ανεπιφύλακτα να ρυθμίσετε το διακομιστή σας με τέτοιο τρόπο ώστε ο κατάλογος δεδομένων να μην είναι πλέον προσβάσιμος ή να μετακινήσετε τον κατάλογο δεδομένων έξω από τη ρίζα του καταλόγου του διακομιστή.", "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)/επιταχυντή όπως τη Zend OPcache ή τον eAccelerator.", @@ -127,13 +122,13 @@ "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 " : "Λήξη μετά από", "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" : "Επιτρέψτε στους χρήστες να στέλνουν ειδοποιήσεις μέσω ηλεκτρονικού ταχυδρομείου για κοινόχρηστα αρχεία", "Exclude groups from sharing" : "Εξαίρεση ομάδων από τον διαμοιρασμό", "These groups will still be able to receive shares, but not to initiate them." : "Αυτές οι ομάδες θα συνεχίσουν να λαμβάνουν διαμοιρασμούς, αλλά δεν θα είναι δυνατό να τους δημιουργήσουν.", "Enforce HTTPS" : "Επιβολή χρήσης HTTPS", diff --git a/settings/l10n/en_GB.js b/settings/l10n/en_GB.js index 321d42c58c6..e318a10079b 100644 --- a/settings/l10n/en_GB.js +++ b/settings/l10n/en_GB.js @@ -10,8 +10,6 @@ OC.L10N.register( "Authentication error" : "Authentication error", "Your full name has been changed." : "Your full name has been changed.", "Unable to change full name" : "Unable to change full name", - "Group already exists" : "Group already exists", - "Unable to add group" : "Unable to add group", "Files decrypted successfully" : "Files decrypted successfully", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Couldn't decrypt your files, please check your owncloud.log or ask your administrator", "Couldn't decrypt your files, check your password and try again" : "Couldn't decrypt your files, check your password and try again", @@ -20,8 +18,6 @@ OC.L10N.register( "Couldn't remove app." : "Couldn't remove app.", "Email saved" : "Email saved", "Invalid email" : "Invalid email", - "Unable to delete group" : "Unable to delete group", - "Unable to delete user" : "Unable to delete user", "Backups restored successfully" : "Backups restored successfully", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator", "Language changed" : "Language changed", @@ -39,12 +35,17 @@ OC.L10N.register( "Enabled" : "Enabled", "Not enabled" : "Not enabled", "Recommended" : "Recommended", + "Group already exists." : "Group already exists.", + "Unable to add group." : "Unable to add group.", + "Unable to delete group." : "Unable to delete group.", "Saved" : "Saved", "test email settings" : "test email settings", "If you received this email, the settings seem to be correct." : "If you received this email, the settings seem to be correct.", "A problem occurred while sending the email. Please revise your settings." : "A problem occurred whilst sending the email. Please revise your settings.", "Email sent" : "Email sent", "You need to set your user email before being able to send test emails." : "You need to set your user email before being able to send test emails.", + "Unable to create user." : "Unable to create user.", + "Unable to delete user." : "Unable to delete user.", "Are you really sure you want add \"{domain}\" as trusted domain?" : "Are you really sure you want add \"{domain}\" as a trusted domain?", "Add trusted domain" : "Add trusted domain", "Sending..." : "Sending...", @@ -102,7 +103,6 @@ OC.L10N.register( "TLS" : "TLS", "Security Warning" : "Security Warning", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root.", "Read-Only config enabled" : "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." : "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" : "Setup Warning", @@ -120,7 +120,7 @@ OC.L10N.register( "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "We strongly suggest installing the required packages on your system to support one of the following locales: %s.", "URL generation in notification emails" : "URL generation in notification emails", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")", - "Connectivity Checks" : "Connectivity Checks", + "Configuration Checks" : "Configuration Checks", "No problems found" : "No problems found", "Please double check the <a href='%s'>installation guides</a>." : "Please double check the <a href='%s'>installation guides</a>.", "Last cron was executed at %s." : "Last cron was executed at %s.", @@ -133,13 +133,14 @@ OC.L10N.register( "Allow users to share via link" : "Allow users to share via link", "Enforce password protection" : "Enforce password protection", "Allow public uploads" : "Allow public uploads", + "Allow users to send mail notification for shared files" : "Allow users to send mail notification for shared files", "Set default expiration date" : "Set default expiry date", "Expire after " : "Expire after ", "days" : "days", "Enforce expiration date" : "Enforce expiry date", "Allow resharing" : "Allow resharing", "Restrict users to only share with users in their groups" : "Restrict users to only share with users in their groups", - "Allow users to send mail notification for shared files" : "Allow users to send mail notification for shared files", + "Allow users to send mail notification for shared files to other users" : "Allow users to send email notification for shared files to other users", "Exclude groups from sharing" : "Exclude groups from sharing", "These groups will still be able to receive shares, but not to initiate them." : "These groups will still be able to receive shares, but not to initiate them.", "Enforce HTTPS" : "Enforce HTTPS", @@ -173,6 +174,7 @@ OC.L10N.register( "Documentation:" : "Documentation:", "User Documentation" : "User Documentation", "Admin Documentation" : "Admin Documentation", + "This app cannot be installed because the following dependencies are not fulfilled:" : "This app cannot be installed because the following dependencies are not fulfilled:", "Update to %s" : "Update to %s", "Enable only for specific groups" : "Enable only for specific groups", "Uninstall App" : "Uninstall App", diff --git a/settings/l10n/en_GB.json b/settings/l10n/en_GB.json index ded988671e0..fde7897451a 100644 --- a/settings/l10n/en_GB.json +++ b/settings/l10n/en_GB.json @@ -8,8 +8,6 @@ "Authentication error" : "Authentication error", "Your full name has been changed." : "Your full name has been changed.", "Unable to change full name" : "Unable to change full name", - "Group already exists" : "Group already exists", - "Unable to add group" : "Unable to add group", "Files decrypted successfully" : "Files decrypted successfully", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Couldn't decrypt your files, please check your owncloud.log or ask your administrator", "Couldn't decrypt your files, check your password and try again" : "Couldn't decrypt your files, check your password and try again", @@ -18,8 +16,6 @@ "Couldn't remove app." : "Couldn't remove app.", "Email saved" : "Email saved", "Invalid email" : "Invalid email", - "Unable to delete group" : "Unable to delete group", - "Unable to delete user" : "Unable to delete user", "Backups restored successfully" : "Backups restored successfully", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator", "Language changed" : "Language changed", @@ -37,12 +33,17 @@ "Enabled" : "Enabled", "Not enabled" : "Not enabled", "Recommended" : "Recommended", + "Group already exists." : "Group already exists.", + "Unable to add group." : "Unable to add group.", + "Unable to delete group." : "Unable to delete group.", "Saved" : "Saved", "test email settings" : "test email settings", "If you received this email, the settings seem to be correct." : "If you received this email, the settings seem to be correct.", "A problem occurred while sending the email. Please revise your settings." : "A problem occurred whilst sending the email. Please revise your settings.", "Email sent" : "Email sent", "You need to set your user email before being able to send test emails." : "You need to set your user email before being able to send test emails.", + "Unable to create user." : "Unable to create user.", + "Unable to delete user." : "Unable to delete user.", "Are you really sure you want add \"{domain}\" as trusted domain?" : "Are you really sure you want add \"{domain}\" as a trusted domain?", "Add trusted domain" : "Add trusted domain", "Sending..." : "Sending...", @@ -100,7 +101,6 @@ "TLS" : "TLS", "Security Warning" : "Security Warning", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root.", "Read-Only config enabled" : "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." : "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" : "Setup Warning", @@ -118,7 +118,7 @@ "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "We strongly suggest installing the required packages on your system to support one of the following locales: %s.", "URL generation in notification emails" : "URL generation in notification emails", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")", - "Connectivity Checks" : "Connectivity Checks", + "Configuration Checks" : "Configuration Checks", "No problems found" : "No problems found", "Please double check the <a href='%s'>installation guides</a>." : "Please double check the <a href='%s'>installation guides</a>.", "Last cron was executed at %s." : "Last cron was executed at %s.", @@ -131,13 +131,14 @@ "Allow users to share via link" : "Allow users to share via link", "Enforce password protection" : "Enforce password protection", "Allow public uploads" : "Allow public uploads", + "Allow users to send mail notification for shared files" : "Allow users to send mail notification for shared files", "Set default expiration date" : "Set default expiry date", "Expire after " : "Expire after ", "days" : "days", "Enforce expiration date" : "Enforce expiry date", "Allow resharing" : "Allow resharing", "Restrict users to only share with users in their groups" : "Restrict users to only share with users in their groups", - "Allow users to send mail notification for shared files" : "Allow users to send mail notification for shared files", + "Allow users to send mail notification for shared files to other users" : "Allow users to send email notification for shared files to other users", "Exclude groups from sharing" : "Exclude groups from sharing", "These groups will still be able to receive shares, but not to initiate them." : "These groups will still be able to receive shares, but not to initiate them.", "Enforce HTTPS" : "Enforce HTTPS", @@ -171,6 +172,7 @@ "Documentation:" : "Documentation:", "User Documentation" : "User Documentation", "Admin Documentation" : "Admin Documentation", + "This app cannot be installed because the following dependencies are not fulfilled:" : "This app cannot be installed because the following dependencies are not fulfilled:", "Update to %s" : "Update to %s", "Enable only for specific groups" : "Enable only for specific groups", "Uninstall App" : "Uninstall App", diff --git a/settings/l10n/eo.js b/settings/l10n/eo.js index ff757ce143c..3e9c7b19e6f 100644 --- a/settings/l10n/eo.js +++ b/settings/l10n/eo.js @@ -9,14 +9,10 @@ OC.L10N.register( "Authentication error" : "Aŭtentiga eraro", "Your full name has been changed." : "Via plena nomo ŝanĝitas.", "Unable to change full name" : "Ne eblis ŝanĝi la plenan nomon", - "Group already exists" : "La grupo jam ekzistas", - "Unable to add group" : "Ne eblis aldoni la grupon", "Files decrypted successfully" : "La dosieroj malĉifriĝis sukcese", "Encryption keys deleted permanently" : "La ĉifroklavojn foriĝis por ĉiam.", "Email saved" : "La retpoŝtadreso konserviĝis", "Invalid email" : "Nevalida retpoŝtadreso", - "Unable to delete group" : "Ne eblis forigi la grupon", - "Unable to delete user" : "Ne eblis forigi la uzanton", "Backups restored successfully" : "La savokopioj restaŭriĝis sukcese", "Language changed" : "La lingvo estas ŝanĝita", "Invalid request" : "Nevalida peto", diff --git a/settings/l10n/eo.json b/settings/l10n/eo.json index 35af2f7f22f..41facf15927 100644 --- a/settings/l10n/eo.json +++ b/settings/l10n/eo.json @@ -7,14 +7,10 @@ "Authentication error" : "Aŭtentiga eraro", "Your full name has been changed." : "Via plena nomo ŝanĝitas.", "Unable to change full name" : "Ne eblis ŝanĝi la plenan nomon", - "Group already exists" : "La grupo jam ekzistas", - "Unable to add group" : "Ne eblis aldoni la grupon", "Files decrypted successfully" : "La dosieroj malĉifriĝis sukcese", "Encryption keys deleted permanently" : "La ĉifroklavojn foriĝis por ĉiam.", "Email saved" : "La retpoŝtadreso konserviĝis", "Invalid email" : "Nevalida retpoŝtadreso", - "Unable to delete group" : "Ne eblis forigi la grupon", - "Unable to delete user" : "Ne eblis forigi la uzanton", "Backups restored successfully" : "La savokopioj restaŭriĝis sukcese", "Language changed" : "La lingvo estas ŝanĝita", "Invalid request" : "Nevalida peto", diff --git a/settings/l10n/es.js b/settings/l10n/es.js index 10f19a54063..069466d7840 100644 --- a/settings/l10n/es.js +++ b/settings/l10n/es.js @@ -10,8 +10,6 @@ OC.L10N.register( "Authentication error" : "Error de autenticación", "Your full name has been changed." : "Se ha cambiado su nombre completo.", "Unable to change full name" : "No se puede cambiar el nombre completo", - "Group already exists" : "El grupo ya existe", - "Unable to add group" : "No se pudo añadir el grupo", "Files decrypted successfully" : "Los archivos fueron descifrados", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "No se pudo descifrar sus archivos. Revise el owncloud.log o consulte con su administrador", "Couldn't decrypt your files, check your password and try again" : "No se pudo descifrar sus archivos. Revise su contraseña e inténtelo de nuevo", @@ -20,8 +18,6 @@ OC.L10N.register( "Couldn't remove app." : "No se pudo eliminar la aplicación.", "Email saved" : "Correo electrónico guardado", "Invalid email" : "Correo electrónico no válido", - "Unable to delete group" : "No se pudo eliminar el grupo", - "Unable to delete user" : "No se pudo eliminar el usuario", "Backups restored successfully" : "Copia de seguridad restaurada", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "No se pudieron restarurar sus claves de cifrado. Revise owncloud.log o consulte con su administrador.", "Language changed" : "Idioma cambiado", @@ -39,12 +35,17 @@ OC.L10N.register( "Enabled" : "Habilitado", "Not enabled" : "No habilitado", "Recommended" : "Recomendado", + "Group already exists." : "El grupo ya existe.", + "Unable to add group." : "No se pudo agregar el grupo.", + "Unable to delete group." : "No se pudo eliminar el grupo.", "Saved" : "Guardado", "test email settings" : "probar configuración de correo electrónico", "If you received this email, the settings seem to be correct." : "Si recibió este mensaje de correo electrónico, su configuración debe estar correcta.", "A problem occurred while sending the email. Please revise your settings." : "Ocurrió un problema al mandar el mensaje. Revise la configuración.", "Email sent" : "Correo electrónico enviado", "You need to set your user email before being able to send test emails." : "Tiene que configurar su dirección de correo electrónico antes de poder enviar mensajes de prueba.", + "Unable to create user." : "No se pudo crear el usuario.", + "Unable to delete user." : "No se pudo eliminar el usuario.", "Are you really sure you want add \"{domain}\" as trusted domain?" : "¿Está seguro de querer agregar \"{domain}\" como un dominio de confianza?", "Add trusted domain" : "Agregar dominio de confianza", "Sending..." : "Enviando...", @@ -75,7 +76,7 @@ OC.L10N.register( "Unable to delete {objName}" : "No es posible eliminar {objName}", "Error creating group" : "Error al crear un grupo", "A valid group name must be provided" : "Se debe dar un nombre válido para el grupo ", - "deleted {groupName}" : "borrado {groupName}", + "deleted {groupName}" : "{groupName} eliminado", "undo" : "deshacer", "no group" : "sin grupo", "never" : "nunca", @@ -102,7 +103,6 @@ OC.L10N.register( "TLS" : "TLS", "Security Warning" : "Advertencia de seguridad", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Está ingresando a %s vía HTTP. Le recomendamos encarecidamente que configure su servidor para que requiera HTTPS.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Su directorio de datos y archivos es probablemente accesible desde Internet pues el archivo .htaccess no está funcionando. Le sugerimos encarecidamente que configure su servidor web de modo que el directorio de datos no sea accesible o que mueva dicho directorio fuera de la raíz de documentos del servidor web.", "Read-Only config enabled" : "Configuración de solo lectura activada", "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." : "Se ha habilitado la configuración de sólo lectura. Esto evita que ajustar algunas configuraciones a través de la interfaz web. Además, el archivo debe hacerse modificable manualmente para cada actualización.", "Setup Warning" : "Advertencia de configuración", @@ -120,7 +120,7 @@ OC.L10N.register( "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Es muy recomendable instalar los paquetes necesarios para poder soportar una de las siguientes configuraciones regionales: %s. ", "URL generation in notification emails" : "Generación de URL en mensajes de notificación", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Si su instalación no está ubicada en la raíz del dominio y usa el cron del sistema, puede haber problemas al generarse los URL. Para evitarlos, configure la opción \"overwritewebroot\" en su archivo config.php para que use la ruta de la raíz del sitio web de su instalación (sugerencia: \"%s\")", - "Connectivity Checks" : "Probar la Conectividad", + "Configuration Checks" : "Comprobaciones de la configuración", "No problems found" : "No se han encontrado problemas", "Please double check the <a href='%s'>installation guides</a>." : "Por favor, vuelva a comprobar las <a href='%s'>guías de instalación</a>.", "Last cron was executed at %s." : "Cron fue ejecutado por última vez a las %s.", @@ -133,13 +133,14 @@ OC.L10N.register( "Allow users to share via link" : "Permite a los usuarios compartir por medio de enlaces", "Enforce password protection" : "Forzar la protección por contraseña.", "Allow public uploads" : "Permitir subidas públicas", + "Allow users to send mail notification for shared files" : "Permitir a los usuarios enviar mensajes de notificación para ficheros compartidos", "Set default expiration date" : "Establecer fecha de caducidad predeterminada", "Expire after " : "Caduca luego de", "days" : "días", "Enforce expiration date" : "Imponer fecha de caducidad", "Allow resharing" : "Permitir re-compartición", "Restrict users to only share with users in their groups" : "Restringe a los usuarios a compartir solo con otros usuarios en sus grupos", - "Allow users to send mail notification for shared files" : "Permitir a los usuarios enviar mensajes de notificación para ficheros compartidos", + "Allow users to send mail notification for shared files to other users" : "Permitir a los usuarios enviar notificaciones por correo electronico de los archivos compartidos a otros usuarios", "Exclude groups from sharing" : "Excluye grupos de compartir", "These groups will still be able to receive shares, but not to initiate them." : "Estos grupos aún podrán recibir contenidos compartidos, pero no podrán, pero no podrán iniciarlos.", "Enforce HTTPS" : "Forzar HTTPS", @@ -173,7 +174,8 @@ OC.L10N.register( "Documentation:" : "Documentación:", "User Documentation" : "Documentación de usuario", "Admin Documentation" : "Documentación para administradores", - "Update to %s" : "Actualizado a %s", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no se han cumplido:", + "Update to %s" : "Actualizar a %s", "Enable only for specific groups" : "Activar solamente para grupos específicos", "Uninstall App" : "Desinstalar aplicación", "Administrator Documentation" : "Documentación de administrador", diff --git a/settings/l10n/es.json b/settings/l10n/es.json index 988401fb82d..3cfec8d9e1d 100644 --- a/settings/l10n/es.json +++ b/settings/l10n/es.json @@ -8,8 +8,6 @@ "Authentication error" : "Error de autenticación", "Your full name has been changed." : "Se ha cambiado su nombre completo.", "Unable to change full name" : "No se puede cambiar el nombre completo", - "Group already exists" : "El grupo ya existe", - "Unable to add group" : "No se pudo añadir el grupo", "Files decrypted successfully" : "Los archivos fueron descifrados", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "No se pudo descifrar sus archivos. Revise el owncloud.log o consulte con su administrador", "Couldn't decrypt your files, check your password and try again" : "No se pudo descifrar sus archivos. Revise su contraseña e inténtelo de nuevo", @@ -18,8 +16,6 @@ "Couldn't remove app." : "No se pudo eliminar la aplicación.", "Email saved" : "Correo electrónico guardado", "Invalid email" : "Correo electrónico no válido", - "Unable to delete group" : "No se pudo eliminar el grupo", - "Unable to delete user" : "No se pudo eliminar el usuario", "Backups restored successfully" : "Copia de seguridad restaurada", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "No se pudieron restarurar sus claves de cifrado. Revise owncloud.log o consulte con su administrador.", "Language changed" : "Idioma cambiado", @@ -37,12 +33,17 @@ "Enabled" : "Habilitado", "Not enabled" : "No habilitado", "Recommended" : "Recomendado", + "Group already exists." : "El grupo ya existe.", + "Unable to add group." : "No se pudo agregar el grupo.", + "Unable to delete group." : "No se pudo eliminar el grupo.", "Saved" : "Guardado", "test email settings" : "probar configuración de correo electrónico", "If you received this email, the settings seem to be correct." : "Si recibió este mensaje de correo electrónico, su configuración debe estar correcta.", "A problem occurred while sending the email. Please revise your settings." : "Ocurrió un problema al mandar el mensaje. Revise la configuración.", "Email sent" : "Correo electrónico enviado", "You need to set your user email before being able to send test emails." : "Tiene que configurar su dirección de correo electrónico antes de poder enviar mensajes de prueba.", + "Unable to create user." : "No se pudo crear el usuario.", + "Unable to delete user." : "No se pudo eliminar el usuario.", "Are you really sure you want add \"{domain}\" as trusted domain?" : "¿Está seguro de querer agregar \"{domain}\" como un dominio de confianza?", "Add trusted domain" : "Agregar dominio de confianza", "Sending..." : "Enviando...", @@ -73,7 +74,7 @@ "Unable to delete {objName}" : "No es posible eliminar {objName}", "Error creating group" : "Error al crear un grupo", "A valid group name must be provided" : "Se debe dar un nombre válido para el grupo ", - "deleted {groupName}" : "borrado {groupName}", + "deleted {groupName}" : "{groupName} eliminado", "undo" : "deshacer", "no group" : "sin grupo", "never" : "nunca", @@ -100,7 +101,6 @@ "TLS" : "TLS", "Security Warning" : "Advertencia de seguridad", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Está ingresando a %s vía HTTP. Le recomendamos encarecidamente que configure su servidor para que requiera HTTPS.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Su directorio de datos y archivos es probablemente accesible desde Internet pues el archivo .htaccess no está funcionando. Le sugerimos encarecidamente que configure su servidor web de modo que el directorio de datos no sea accesible o que mueva dicho directorio fuera de la raíz de documentos del servidor web.", "Read-Only config enabled" : "Configuración de solo lectura activada", "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." : "Se ha habilitado la configuración de sólo lectura. Esto evita que ajustar algunas configuraciones a través de la interfaz web. Además, el archivo debe hacerse modificable manualmente para cada actualización.", "Setup Warning" : "Advertencia de configuración", @@ -118,7 +118,7 @@ "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Es muy recomendable instalar los paquetes necesarios para poder soportar una de las siguientes configuraciones regionales: %s. ", "URL generation in notification emails" : "Generación de URL en mensajes de notificación", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Si su instalación no está ubicada en la raíz del dominio y usa el cron del sistema, puede haber problemas al generarse los URL. Para evitarlos, configure la opción \"overwritewebroot\" en su archivo config.php para que use la ruta de la raíz del sitio web de su instalación (sugerencia: \"%s\")", - "Connectivity Checks" : "Probar la Conectividad", + "Configuration Checks" : "Comprobaciones de la configuración", "No problems found" : "No se han encontrado problemas", "Please double check the <a href='%s'>installation guides</a>." : "Por favor, vuelva a comprobar las <a href='%s'>guías de instalación</a>.", "Last cron was executed at %s." : "Cron fue ejecutado por última vez a las %s.", @@ -131,13 +131,14 @@ "Allow users to share via link" : "Permite a los usuarios compartir por medio de enlaces", "Enforce password protection" : "Forzar la protección por contraseña.", "Allow public uploads" : "Permitir subidas públicas", + "Allow users to send mail notification for shared files" : "Permitir a los usuarios enviar mensajes de notificación para ficheros compartidos", "Set default expiration date" : "Establecer fecha de caducidad predeterminada", "Expire after " : "Caduca luego de", "days" : "días", "Enforce expiration date" : "Imponer fecha de caducidad", "Allow resharing" : "Permitir re-compartición", "Restrict users to only share with users in their groups" : "Restringe a los usuarios a compartir solo con otros usuarios en sus grupos", - "Allow users to send mail notification for shared files" : "Permitir a los usuarios enviar mensajes de notificación para ficheros compartidos", + "Allow users to send mail notification for shared files to other users" : "Permitir a los usuarios enviar notificaciones por correo electronico de los archivos compartidos a otros usuarios", "Exclude groups from sharing" : "Excluye grupos de compartir", "These groups will still be able to receive shares, but not to initiate them." : "Estos grupos aún podrán recibir contenidos compartidos, pero no podrán, pero no podrán iniciarlos.", "Enforce HTTPS" : "Forzar HTTPS", @@ -171,7 +172,8 @@ "Documentation:" : "Documentación:", "User Documentation" : "Documentación de usuario", "Admin Documentation" : "Documentación para administradores", - "Update to %s" : "Actualizado a %s", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no se han cumplido:", + "Update to %s" : "Actualizar a %s", "Enable only for specific groups" : "Activar solamente para grupos específicos", "Uninstall App" : "Desinstalar aplicación", "Administrator Documentation" : "Documentación de administrador", diff --git a/settings/l10n/es_AR.js b/settings/l10n/es_AR.js index b681fa8d077..ab923585a7a 100644 --- a/settings/l10n/es_AR.js +++ b/settings/l10n/es_AR.js @@ -9,13 +9,9 @@ OC.L10N.register( "Authentication error" : "Error al autenticar", "Your full name has been changed." : "Su nombre completo ha sido cambiado.", "Unable to change full name" : "Imposible cambiar el nombre completo", - "Group already exists" : "El grupo ya existe", - "Unable to add group" : "No fue posible añadir el grupo", "Files decrypted successfully" : "Archivos des-encriptados correctamente", "Email saved" : "e-mail guardado", "Invalid email" : "El e-mail no es válido ", - "Unable to delete group" : "No fue posible borrar el grupo", - "Unable to delete user" : "No fue posible borrar el usuario", "Language changed" : "Idioma cambiado", "Invalid request" : "Pedido inválido", "Admins can't remove themself from the admin group" : "Los administradores no se pueden quitar a si mismos del grupo administrador. ", @@ -76,7 +72,6 @@ OC.L10N.register( "TLS" : "TLS", "Security Warning" : "Advertencia de seguridad", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Está accediendo %s vía HTTP. Se sugiere fuertemente que configure su servidor para requerir el uso de HTTPS en vez del otro.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "El directorio de datos y tus archivos probablemente sean accesibles desde Internet. El archivo .htaccess no funciona. Sugerimos fuertemente que configures tu servidor web de forma tal que el archivo de directorios no sea accesible o muevas el mismo fuera de la raíz de los documentos del servidor web.", "Setup Warning" : "Alerta de Configuración", "Module 'fileinfo' missing" : "El módulo 'fileinfo' no existe", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "El módulo PHP 'fileinfo' no existe. Es recomendable que actives este módulo para obtener mejores resultados con la detección mime-type", @@ -88,8 +83,8 @@ OC.L10N.register( "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php está registrado en el servicio webcron para llamarlo cada 15 minutos usando http.", "Allow apps to use the Share API" : "Permitir a las aplicaciones usar la Share API", "Allow public uploads" : "Permitir subidas públicas", - "Allow resharing" : "Permitir Re-Compartir", "Allow users to send mail notification for shared files" : "Habilitar a los usuarios para enviar notificaciones por correo para archivos compartidos", + "Allow resharing" : "Permitir Re-Compartir", "Enforce HTTPS" : "Forzar HTTPS", "Forces the clients to connect to %s via an encrypted connection." : "Fuerza al cliente a conectarse a %s por medio de una conexión encriptada.", "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." : "Por favor conéctese a su %s por medio de HTTPS para habilitar o deshabilitar la característica SSL", diff --git a/settings/l10n/es_AR.json b/settings/l10n/es_AR.json index 14ce77fbb88..23025ae0510 100644 --- a/settings/l10n/es_AR.json +++ b/settings/l10n/es_AR.json @@ -7,13 +7,9 @@ "Authentication error" : "Error al autenticar", "Your full name has been changed." : "Su nombre completo ha sido cambiado.", "Unable to change full name" : "Imposible cambiar el nombre completo", - "Group already exists" : "El grupo ya existe", - "Unable to add group" : "No fue posible añadir el grupo", "Files decrypted successfully" : "Archivos des-encriptados correctamente", "Email saved" : "e-mail guardado", "Invalid email" : "El e-mail no es válido ", - "Unable to delete group" : "No fue posible borrar el grupo", - "Unable to delete user" : "No fue posible borrar el usuario", "Language changed" : "Idioma cambiado", "Invalid request" : "Pedido inválido", "Admins can't remove themself from the admin group" : "Los administradores no se pueden quitar a si mismos del grupo administrador. ", @@ -74,7 +70,6 @@ "TLS" : "TLS", "Security Warning" : "Advertencia de seguridad", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Está accediendo %s vía HTTP. Se sugiere fuertemente que configure su servidor para requerir el uso de HTTPS en vez del otro.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "El directorio de datos y tus archivos probablemente sean accesibles desde Internet. El archivo .htaccess no funciona. Sugerimos fuertemente que configures tu servidor web de forma tal que el archivo de directorios no sea accesible o muevas el mismo fuera de la raíz de los documentos del servidor web.", "Setup Warning" : "Alerta de Configuración", "Module 'fileinfo' missing" : "El módulo 'fileinfo' no existe", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "El módulo PHP 'fileinfo' no existe. Es recomendable que actives este módulo para obtener mejores resultados con la detección mime-type", @@ -86,8 +81,8 @@ "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php está registrado en el servicio webcron para llamarlo cada 15 minutos usando http.", "Allow apps to use the Share API" : "Permitir a las aplicaciones usar la Share API", "Allow public uploads" : "Permitir subidas públicas", - "Allow resharing" : "Permitir Re-Compartir", "Allow users to send mail notification for shared files" : "Habilitar a los usuarios para enviar notificaciones por correo para archivos compartidos", + "Allow resharing" : "Permitir Re-Compartir", "Enforce HTTPS" : "Forzar HTTPS", "Forces the clients to connect to %s via an encrypted connection." : "Fuerza al cliente a conectarse a %s por medio de una conexión encriptada.", "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." : "Por favor conéctese a su %s por medio de HTTPS para habilitar o deshabilitar la característica SSL", diff --git a/settings/l10n/es_MX.js b/settings/l10n/es_MX.js index ff7bc009b82..b643ed0fa84 100644 --- a/settings/l10n/es_MX.js +++ b/settings/l10n/es_MX.js @@ -8,12 +8,8 @@ OC.L10N.register( "Authentication error" : "Error de autenticación", "Your full name has been changed." : "Se ha cambiado su nombre completo.", "Unable to change full name" : "No se puede cambiar el nombre completo", - "Group already exists" : "El grupo ya existe", - "Unable to add group" : "No se pudo añadir el grupo", "Email saved" : "Correo electrónico guardado", "Invalid email" : "Correo electrónico no válido", - "Unable to delete group" : "No se pudo eliminar el grupo", - "Unable to delete user" : "No se pudo eliminar el usuario", "Language changed" : "Idioma cambiado", "Invalid request" : "Petición no válida", "Admins can't remove themself from the admin group" : "Los administradores no se pueden eliminar a ellos mismos del grupo de administrador", @@ -59,7 +55,6 @@ OC.L10N.register( "Login" : "Iniciar sesión", "Security Warning" : "Advertencia de seguridad", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Está ingresando a %s vía HTTP. Le recomendamos encarecidamente que configure su servidor para que requiera HTTPS.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Su directorio de datos y archivos es probablemente accesible desde Internet pues el archivo .htaccess no está funcionando. Le sugerimos encarecidamente que configure su servidor web de modo que el directorio de datos no sea accesible o que mueva dicho directorio fuera de la raíz de documentos del servidor web.", "Setup Warning" : "Advertencia de configuración", "Module 'fileinfo' missing" : "No se ha encontrado el módulo \"fileinfo\"", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "No se ha encontrado el modulo PHP 'fileinfo'. Le recomendamos encarecidamente que habilite este módulo para obtener mejores resultados con la detección de tipos MIME.", diff --git a/settings/l10n/es_MX.json b/settings/l10n/es_MX.json index 8e6456ec85b..dfe586677a1 100644 --- a/settings/l10n/es_MX.json +++ b/settings/l10n/es_MX.json @@ -6,12 +6,8 @@ "Authentication error" : "Error de autenticación", "Your full name has been changed." : "Se ha cambiado su nombre completo.", "Unable to change full name" : "No se puede cambiar el nombre completo", - "Group already exists" : "El grupo ya existe", - "Unable to add group" : "No se pudo añadir el grupo", "Email saved" : "Correo electrónico guardado", "Invalid email" : "Correo electrónico no válido", - "Unable to delete group" : "No se pudo eliminar el grupo", - "Unable to delete user" : "No se pudo eliminar el usuario", "Language changed" : "Idioma cambiado", "Invalid request" : "Petición no válida", "Admins can't remove themself from the admin group" : "Los administradores no se pueden eliminar a ellos mismos del grupo de administrador", @@ -57,7 +53,6 @@ "Login" : "Iniciar sesión", "Security Warning" : "Advertencia de seguridad", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Está ingresando a %s vía HTTP. Le recomendamos encarecidamente que configure su servidor para que requiera HTTPS.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Su directorio de datos y archivos es probablemente accesible desde Internet pues el archivo .htaccess no está funcionando. Le sugerimos encarecidamente que configure su servidor web de modo que el directorio de datos no sea accesible o que mueva dicho directorio fuera de la raíz de documentos del servidor web.", "Setup Warning" : "Advertencia de configuración", "Module 'fileinfo' missing" : "No se ha encontrado el módulo \"fileinfo\"", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "No se ha encontrado el modulo PHP 'fileinfo'. Le recomendamos encarecidamente que habilite este módulo para obtener mejores resultados con la detección de tipos MIME.", diff --git a/settings/l10n/et_EE.js b/settings/l10n/et_EE.js index 18d7cff60f9..b2056c498b2 100644 --- a/settings/l10n/et_EE.js +++ b/settings/l10n/et_EE.js @@ -10,8 +10,6 @@ OC.L10N.register( "Authentication error" : "Autentimise viga", "Your full name has been changed." : "Sinu täispikk nimi on muudetud.", "Unable to change full name" : "Täispika nime muutmine ebaõnnestus", - "Group already exists" : "Grupp on juba olemas", - "Unable to add group" : "Keela grupi lisamine", "Files decrypted successfully" : "Failide krüpteerimine õnnestus", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Ei suutnud faile dekrüpteerida, palun kontrolli oma owncloud.log-i või küsi nõu administraatorilt", "Couldn't decrypt your files, check your password and try again" : "Ei suutnud failde dekrüpteerida, kontrolli parooli ja proovi uuesti", @@ -20,8 +18,6 @@ OC.L10N.register( "Couldn't remove app." : "Ei suutnud rakendit eemaldada.", "Email saved" : "Kiri on salvestatud", "Invalid email" : "Vigane e-post", - "Unable to delete group" : "Grupi kustutamine ebaõnnestus", - "Unable to delete user" : "Kasutaja kustutamine ebaõnnestus", "Backups restored successfully" : "Varukoopiad taastatud edukalt.", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Ei suutnud taastada sinu krüpteerimisvõtmeid, palun vaata owncloud.log-i või pöördu oma süsteemihalduri poole.", "Language changed" : "Keel on muudetud", @@ -102,7 +98,6 @@ OC.L10N.register( "TLS" : "TLS", "Security Warning" : "Turvahoiatus", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Sa kasutad %s ligipääsuks HTTP protokolli. Soovitame tungivalt seadistada oma server selle asemel kasutama HTTPS-i.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Andmete kataloog ja failid on tõenäoliselt internetis avalikult saadaval. .htaccess fail, ei toimi. Soovitame tungivalt veebiserver seadistada selliselt, et andmete kataloog ei oleks enam vabalt saadaval või tõstaksid andmete kataloogi oma veebiserveri veebi juurkataloogist mujale.", "Setup Warning" : "Paigalduse hoiatus", "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.", @@ -117,7 +112,6 @@ OC.L10N.register( "This means that there might be problems with certain characters in file names." : "See tähendab, et võib esineda probleeme failide nimedes mõnede sümbolitega.", "URL generation in notification emails" : "URL-ide loomine teavituskirjades", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Kui sinu sait pole paigaldatud domeeni juurkausta ja see kasutab ajastatud tegevusi, siis võib tekkide probleeme URL-ide loomisega. Nende probleemide vältimiseks sisesta palun failis config.php valikusse \"overwritewebroot\" oma veebiserveri juurkaust (Soovituslik: \"%s\")", - "Connectivity Checks" : "Ühenduse kontrollid", "No problems found" : "Ühtegi probleemi ei leitud", "Please double check the <a href='%s'>installation guides</a>." : "Palun tutvu veelkord <a href='%s'>paigalduse juhenditega</a>.", "Last cron was executed at %s." : "Cron käivitati viimati %s.", @@ -130,13 +124,13 @@ OC.L10N.register( "Allow users to share via link" : "Luba kasutajatel lingiga jagamist ", "Enforce password protection" : "Sunni parooliga kaitsmist", "Allow public uploads" : "Luba avalikud üleslaadimised", + "Allow users to send mail notification for shared files" : "Luba kasutajatel saata e-posti teavitusi jagatud failide kohta", "Set default expiration date" : "Määra vaikimisi aegumise kuupäev", "Expire after " : "Aegu pärast", "days" : "päeva", "Enforce expiration date" : "Sunnitud aegumise kuupäev", "Allow resharing" : "Luba edasijagamine", "Restrict users to only share with users in their groups" : "Luba kasutajatel jagada kasutajatega ainult oma grupi piires", - "Allow users to send mail notification for shared files" : "Luba kasutajatel saata e-posti teavitusi jagatud failide kohta", "Exclude groups from sharing" : "Eemalda grupid jagamisest", "These groups will still be able to receive shares, but not to initiate them." : "Need grupid saavad vastu võtta jagamisi, kuid ise jagamisi algatada ei saa.", "Enforce HTTPS" : "Sunni peale HTTPS-i kasutamine", diff --git a/settings/l10n/et_EE.json b/settings/l10n/et_EE.json index 0b2c35b5f1f..60258e4bbd9 100644 --- a/settings/l10n/et_EE.json +++ b/settings/l10n/et_EE.json @@ -8,8 +8,6 @@ "Authentication error" : "Autentimise viga", "Your full name has been changed." : "Sinu täispikk nimi on muudetud.", "Unable to change full name" : "Täispika nime muutmine ebaõnnestus", - "Group already exists" : "Grupp on juba olemas", - "Unable to add group" : "Keela grupi lisamine", "Files decrypted successfully" : "Failide krüpteerimine õnnestus", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Ei suutnud faile dekrüpteerida, palun kontrolli oma owncloud.log-i või küsi nõu administraatorilt", "Couldn't decrypt your files, check your password and try again" : "Ei suutnud failde dekrüpteerida, kontrolli parooli ja proovi uuesti", @@ -18,8 +16,6 @@ "Couldn't remove app." : "Ei suutnud rakendit eemaldada.", "Email saved" : "Kiri on salvestatud", "Invalid email" : "Vigane e-post", - "Unable to delete group" : "Grupi kustutamine ebaõnnestus", - "Unable to delete user" : "Kasutaja kustutamine ebaõnnestus", "Backups restored successfully" : "Varukoopiad taastatud edukalt.", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Ei suutnud taastada sinu krüpteerimisvõtmeid, palun vaata owncloud.log-i või pöördu oma süsteemihalduri poole.", "Language changed" : "Keel on muudetud", @@ -100,7 +96,6 @@ "TLS" : "TLS", "Security Warning" : "Turvahoiatus", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Sa kasutad %s ligipääsuks HTTP protokolli. Soovitame tungivalt seadistada oma server selle asemel kasutama HTTPS-i.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Andmete kataloog ja failid on tõenäoliselt internetis avalikult saadaval. .htaccess fail, ei toimi. Soovitame tungivalt veebiserver seadistada selliselt, et andmete kataloog ei oleks enam vabalt saadaval või tõstaksid andmete kataloogi oma veebiserveri veebi juurkataloogist mujale.", "Setup Warning" : "Paigalduse hoiatus", "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.", @@ -115,7 +110,6 @@ "This means that there might be problems with certain characters in file names." : "See tähendab, et võib esineda probleeme failide nimedes mõnede sümbolitega.", "URL generation in notification emails" : "URL-ide loomine teavituskirjades", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Kui sinu sait pole paigaldatud domeeni juurkausta ja see kasutab ajastatud tegevusi, siis võib tekkide probleeme URL-ide loomisega. Nende probleemide vältimiseks sisesta palun failis config.php valikusse \"overwritewebroot\" oma veebiserveri juurkaust (Soovituslik: \"%s\")", - "Connectivity Checks" : "Ühenduse kontrollid", "No problems found" : "Ühtegi probleemi ei leitud", "Please double check the <a href='%s'>installation guides</a>." : "Palun tutvu veelkord <a href='%s'>paigalduse juhenditega</a>.", "Last cron was executed at %s." : "Cron käivitati viimati %s.", @@ -128,13 +122,13 @@ "Allow users to share via link" : "Luba kasutajatel lingiga jagamist ", "Enforce password protection" : "Sunni parooliga kaitsmist", "Allow public uploads" : "Luba avalikud üleslaadimised", + "Allow users to send mail notification for shared files" : "Luba kasutajatel saata e-posti teavitusi jagatud failide kohta", "Set default expiration date" : "Määra vaikimisi aegumise kuupäev", "Expire after " : "Aegu pärast", "days" : "päeva", "Enforce expiration date" : "Sunnitud aegumise kuupäev", "Allow resharing" : "Luba edasijagamine", "Restrict users to only share with users in their groups" : "Luba kasutajatel jagada kasutajatega ainult oma grupi piires", - "Allow users to send mail notification for shared files" : "Luba kasutajatel saata e-posti teavitusi jagatud failide kohta", "Exclude groups from sharing" : "Eemalda grupid jagamisest", "These groups will still be able to receive shares, but not to initiate them." : "Need grupid saavad vastu võtta jagamisi, kuid ise jagamisi algatada ei saa.", "Enforce HTTPS" : "Sunni peale HTTPS-i kasutamine", diff --git a/settings/l10n/eu.js b/settings/l10n/eu.js index eeff2dd7dbd..d943edfbf13 100644 --- a/settings/l10n/eu.js +++ b/settings/l10n/eu.js @@ -9,8 +9,6 @@ OC.L10N.register( "Authentication error" : "Autentifikazio errorea", "Your full name has been changed." : "Zure izena aldatu egin da.", "Unable to change full name" : "Ezin izan da izena aldatu", - "Group already exists" : "Taldea dagoeneko existitzenda", - "Unable to add group" : "Ezin izan da taldea gehitu", "Files decrypted successfully" : "Fitxategiak ongi deskodetu dira.", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Ezin izan dira zure fitxategiak deskodetu, egiaztatu zure owncloud.log edo galdetu administratzaileari", "Couldn't decrypt your files, check your password and try again" : "Ezin izan dira deskodetu zure fitxategiak, egiaztatu zure pasahitza eta saiatu berriz", @@ -19,8 +17,6 @@ OC.L10N.register( "Couldn't remove app." : "Ezin izan da aplikazioa ezabatu..", "Email saved" : "Eposta gorde da", "Invalid email" : "Baliogabeko eposta", - "Unable to delete group" : "Ezin izan da taldea ezabatu", - "Unable to delete user" : "Ezin izan da erabiltzailea ezabatu", "Backups restored successfully" : "Babeskopiak ongi leheneratu dira", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Ezin izan dira zure enkriptatze gakoak leheneratu, egiaztatu zure owncloud.log edo galdetu administratzaileari", "Language changed" : "Hizkuntza aldatuta", @@ -100,7 +96,6 @@ 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.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Zure data karpeta eta zure fitxategiak internetetik zuzenean eskuragarri egon daitezke. .htaccess fitxategia ez du bere lana egiten. Aholkatzen dizugu zure web zerbitzaria ongi konfiguratzea data karpeta eskuragarri ez izateko edo data karpeta web zerbitzariaren dokumentu errotik mugitzea.", "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.", @@ -127,13 +122,13 @@ OC.L10N.register( "Allow users to share via link" : "Baimendu erabiltzaileak esteken bidez partekatzea", "Enforce password protection" : "Betearazi pasahitzaren babesa", "Allow public uploads" : "Baimendu igoera publikoak", + "Allow users to send mail notification for shared files" : "Baimendu erabiltzaileak epostako jakinarazpenak bidaltzen partekatutako fitxategientzat", "Set default expiration date" : "Ezarri muga data lehenetsia", "Expire after " : "Iraungia honen ondoren", "days" : "egun", "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" : "Baimendu erabiltzaileak 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", diff --git a/settings/l10n/eu.json b/settings/l10n/eu.json index 3405967c4a9..6ea44378db4 100644 --- a/settings/l10n/eu.json +++ b/settings/l10n/eu.json @@ -7,8 +7,6 @@ "Authentication error" : "Autentifikazio errorea", "Your full name has been changed." : "Zure izena aldatu egin da.", "Unable to change full name" : "Ezin izan da izena aldatu", - "Group already exists" : "Taldea dagoeneko existitzenda", - "Unable to add group" : "Ezin izan da taldea gehitu", "Files decrypted successfully" : "Fitxategiak ongi deskodetu dira.", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Ezin izan dira zure fitxategiak deskodetu, egiaztatu zure owncloud.log edo galdetu administratzaileari", "Couldn't decrypt your files, check your password and try again" : "Ezin izan dira deskodetu zure fitxategiak, egiaztatu zure pasahitza eta saiatu berriz", @@ -17,8 +15,6 @@ "Couldn't remove app." : "Ezin izan da aplikazioa ezabatu..", "Email saved" : "Eposta gorde da", "Invalid email" : "Baliogabeko eposta", - "Unable to delete group" : "Ezin izan da taldea ezabatu", - "Unable to delete user" : "Ezin izan da erabiltzailea ezabatu", "Backups restored successfully" : "Babeskopiak ongi leheneratu dira", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Ezin izan dira zure enkriptatze gakoak leheneratu, egiaztatu zure owncloud.log edo galdetu administratzaileari", "Language changed" : "Hizkuntza aldatuta", @@ -98,7 +94,6 @@ "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.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Zure data karpeta eta zure fitxategiak internetetik zuzenean eskuragarri egon daitezke. .htaccess fitxategia ez du bere lana egiten. Aholkatzen dizugu zure web zerbitzaria ongi konfiguratzea data karpeta eskuragarri ez izateko edo data karpeta web zerbitzariaren dokumentu errotik mugitzea.", "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.", @@ -125,13 +120,13 @@ "Allow users to share via link" : "Baimendu erabiltzaileak esteken bidez partekatzea", "Enforce password protection" : "Betearazi pasahitzaren babesa", "Allow public uploads" : "Baimendu igoera publikoak", + "Allow users to send mail notification for shared files" : "Baimendu erabiltzaileak epostako jakinarazpenak bidaltzen partekatutako fitxategientzat", "Set default expiration date" : "Ezarri muga data lehenetsia", "Expire after " : "Iraungia honen ondoren", "days" : "egun", "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" : "Baimendu erabiltzaileak 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", diff --git a/settings/l10n/fa.js b/settings/l10n/fa.js index c3ba168338d..4d14c490af9 100644 --- a/settings/l10n/fa.js +++ b/settings/l10n/fa.js @@ -9,15 +9,11 @@ OC.L10N.register( "Authentication error" : "خطا در اعتبار سنجی", "Your full name has been changed." : "نام کامل شما تغییر یافت", "Unable to change full name" : "امکان تغییر نام کامل وجود ندارد", - "Group already exists" : "این گروه در حال حاضر موجود است", - "Unable to add group" : "افزودن گروه امکان پذیر نیست", "Files decrypted successfully" : "فایل ها با موفقیت رمزگشایی شدند.", "Encryption keys deleted permanently" : "کلیدهای رمزگذاری به طور کامل حذف شدند", "Couldn't remove app." : "امکان حذف برنامه وجود ندارد.", "Email saved" : "ایمیل ذخیره شد", "Invalid email" : "ایمیل غیر قابل قبول", - "Unable to delete group" : "حذف گروه امکان پذیر نیست", - "Unable to delete user" : "حذف کاربر امکان پذیر نیست", "Backups restored successfully" : "پشتیبان ها با موفقیت بازیابی شدند", "Language changed" : "زبان تغییر کرد", "Invalid request" : "درخواست نامعتبر", @@ -86,7 +82,6 @@ OC.L10N.register( "SSL" : "SSL", "TLS" : "TLS", "Security Warning" : "اخطار امنیتی", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "به احتمال زیاد پوشهی data و فایلهای شما از طریق اینترنت قابل دسترسی هستند. فایل .htaccess برنامه کار نمیکند. ما شدیداً توصیه می کنیم که شما وب سرور خودتان را طوری تنظیم کنید که پوشهی data شما غیر قابل دسترسی باشد یا اینکه پوشهی data را به خارج از ریشهی اصلی وب سرور انتقال دهید.", "Setup Warning" : "هشدار راه اندازی", "Database Performance Info" : "اطلاعات کارایی پایگاه داده", "Module 'fileinfo' missing" : "ماژول 'fileinfo' از کار افتاده", diff --git a/settings/l10n/fa.json b/settings/l10n/fa.json index 766ffa4381e..c729c39c722 100644 --- a/settings/l10n/fa.json +++ b/settings/l10n/fa.json @@ -7,15 +7,11 @@ "Authentication error" : "خطا در اعتبار سنجی", "Your full name has been changed." : "نام کامل شما تغییر یافت", "Unable to change full name" : "امکان تغییر نام کامل وجود ندارد", - "Group already exists" : "این گروه در حال حاضر موجود است", - "Unable to add group" : "افزودن گروه امکان پذیر نیست", "Files decrypted successfully" : "فایل ها با موفقیت رمزگشایی شدند.", "Encryption keys deleted permanently" : "کلیدهای رمزگذاری به طور کامل حذف شدند", "Couldn't remove app." : "امکان حذف برنامه وجود ندارد.", "Email saved" : "ایمیل ذخیره شد", "Invalid email" : "ایمیل غیر قابل قبول", - "Unable to delete group" : "حذف گروه امکان پذیر نیست", - "Unable to delete user" : "حذف کاربر امکان پذیر نیست", "Backups restored successfully" : "پشتیبان ها با موفقیت بازیابی شدند", "Language changed" : "زبان تغییر کرد", "Invalid request" : "درخواست نامعتبر", @@ -84,7 +80,6 @@ "SSL" : "SSL", "TLS" : "TLS", "Security Warning" : "اخطار امنیتی", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "به احتمال زیاد پوشهی data و فایلهای شما از طریق اینترنت قابل دسترسی هستند. فایل .htaccess برنامه کار نمیکند. ما شدیداً توصیه می کنیم که شما وب سرور خودتان را طوری تنظیم کنید که پوشهی data شما غیر قابل دسترسی باشد یا اینکه پوشهی data را به خارج از ریشهی اصلی وب سرور انتقال دهید.", "Setup Warning" : "هشدار راه اندازی", "Database Performance Info" : "اطلاعات کارایی پایگاه داده", "Module 'fileinfo' missing" : "ماژول 'fileinfo' از کار افتاده", diff --git a/settings/l10n/fi_FI.js b/settings/l10n/fi_FI.js index 5d23d380e62..d6a5900c9e0 100644 --- a/settings/l10n/fi_FI.js +++ b/settings/l10n/fi_FI.js @@ -10,8 +10,6 @@ OC.L10N.register( "Authentication error" : "Tunnistautumisvirhe", "Your full name has been changed." : "Koko nimesi on muutettu.", "Unable to change full name" : "Koko nimen muuttaminen epäonnistui", - "Group already exists" : "Ryhmä on jo olemassa", - "Unable to add group" : "Ryhmän lisäys epäonnistui", "Files decrypted successfully" : "Tiedostojen salaus purettiin onnistuneesti", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Tiedostojen salauksen purkaminen epäonnistui. Tarkista owncloud.log-tiedosto tai ota yhteys ylläpitäjään", "Couldn't decrypt your files, check your password and try again" : "Tiedostojen salauksen purkaminen epäonnistui. Tarkista salasanasi ja yritä uudelleen", @@ -20,8 +18,6 @@ OC.L10N.register( "Couldn't remove app." : "Sovelluksen poistaminen epäonnistui.", "Email saved" : "Sähköposti tallennettu", "Invalid email" : "Virheellinen sähköposti", - "Unable to delete group" : "Ryhmän poisto epäonnistui", - "Unable to delete user" : "Käyttäjän poisto epäonnistui", "Backups restored successfully" : "Varmuuskopiot palautettiin onnistuneesti", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Salausavaintesi palauttaminen ei onnistunut, tarkista owncloud.log tai ole yhteydessä ylläpitäjään", "Language changed" : "Kieli on vaihdettu", @@ -39,12 +35,17 @@ OC.L10N.register( "Enabled" : "Käytössä", "Not enabled" : "Ei käytössä", "Recommended" : "Suositeltu", + "Group already exists." : "Ryhmä on jo olemassa.", + "Unable to add group." : "Ryhmän lisääminen ei onnistunut.", + "Unable to delete group." : "Ryhmän poistaminen ei onnistunut.", "Saved" : "Tallennettu", "test email settings" : "testaa sähköpostiasetukset", "If you received this email, the settings seem to be correct." : "Jos sait tämän sähköpostin, kaikki asetukset vaikuttavat olevan kunnossa.", "A problem occurred while sending the email. Please revise your settings." : "Sähköpostia lähettäessä tapahtui virhe. Tarkista asetukset.", "Email sent" : "Sähköposti lähetetty", "You need to set your user email before being able to send test emails." : "Aseta sähköpostiosoite, jotta voit testata sähköpostin toimivuutta.", + "Unable to create user." : "Käyttäjän luominen ei onnistunut.", + "Unable to delete user." : "Käyttäjän poistaminen ei onnistunut.", "Are you really sure you want add \"{domain}\" as trusted domain?" : "Haluatko varmasti liittää kohteen \"{domain}\" luotetuksi toimialueeksi?", "Add trusted domain" : "Lisää luotettu toimialue", "Sending..." : "Lähetetään...", @@ -101,7 +102,6 @@ OC.L10N.register( "TLS" : "TLS", "Security Warning" : "Turvallisuusvaroitus", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Käytät %sia HTTP-yhteydellä. Suosittelemme määrittämään palvelimen vaatimaan salattua HTTPS-yhteyttä.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Datahakemistosi ja kaikki tiedostosi ovat luultavasti käytettävissä suoraan internetistä. .htaccess-tiedosto ei toimi tällä hetkellä. Määritä verkkopalvelimen asetukset siten, ettei datahakemistosi ole suoraan käytettävissä tai siirrä kyseinen hakemisto pois verkkopalvelimen dokumenttijuuresta.", "Read-Only config enabled" : "Vain luku -määritykset otettu käyttöön", "Setup Warning" : "Asetusvaroitus", "Database Performance Info" : "Tietokannan suorituskyvyn tiedot", @@ -127,13 +127,14 @@ OC.L10N.register( "Allow users to share via link" : "Salli käyttäjien jakaa linkkien kautta", "Enforce password protection" : "Pakota salasanasuojaus", "Allow public uploads" : "Salli julkiset lähetykset", + "Allow users to send mail notification for shared files" : "Salli käyttäjien lähettää sähköposti-ilmoituksia jaetuista tiedostoista", "Set default expiration date" : "Aseta oletusvanhenemispäivä", "Expire after " : "Vanhenna", "days" : "päivän jälkeen", "Enforce expiration date" : "Pakota vanhenemispäivä", "Allow resharing" : "Salli uudelleenjakaminen", "Restrict users to only share with users in their groups" : "Salli käyttäjien jakaa vain omassa ryhmässä olevien henkilöiden kesken", - "Allow users to send mail notification for shared files" : "Salli käyttäjien lähettää sähköposti-ilmoituksia jaetuista tiedostoista", + "Allow users to send mail notification for shared files to other users" : "Salli käyttäjien lähettää muille käyttäjille sähköpostitse ilmoitus jaetuista tiedostoista", "Exclude groups from sharing" : "Kiellä ryhmiä jakamasta", "These groups will still be able to receive shares, but not to initiate them." : "Nämä ryhmät kykenevät vastaanottamaan jakoja, mutta eivät kuitenkaan itse pysty luoda jakoja.", "Enforce HTTPS" : "Pakota HTTPS", @@ -166,6 +167,7 @@ OC.L10N.register( "Documentation:" : "Ohjeistus:", "User Documentation" : "Käyttäjäohjeistus", "Admin Documentation" : "Ylläpitäjän ohjeistus", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Tätä sovellusta ei voi asentaa, koska seuraavat riippuvuudet eivät täyty:", "Update to %s" : "Päivitä versioon %s", "Enable only for specific groups" : "Salli vain tietyille ryhmille", "Uninstall App" : "Poista sovelluksen asennus", diff --git a/settings/l10n/fi_FI.json b/settings/l10n/fi_FI.json index 856e2117bf7..cecfa94719e 100644 --- a/settings/l10n/fi_FI.json +++ b/settings/l10n/fi_FI.json @@ -8,8 +8,6 @@ "Authentication error" : "Tunnistautumisvirhe", "Your full name has been changed." : "Koko nimesi on muutettu.", "Unable to change full name" : "Koko nimen muuttaminen epäonnistui", - "Group already exists" : "Ryhmä on jo olemassa", - "Unable to add group" : "Ryhmän lisäys epäonnistui", "Files decrypted successfully" : "Tiedostojen salaus purettiin onnistuneesti", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Tiedostojen salauksen purkaminen epäonnistui. Tarkista owncloud.log-tiedosto tai ota yhteys ylläpitäjään", "Couldn't decrypt your files, check your password and try again" : "Tiedostojen salauksen purkaminen epäonnistui. Tarkista salasanasi ja yritä uudelleen", @@ -18,8 +16,6 @@ "Couldn't remove app." : "Sovelluksen poistaminen epäonnistui.", "Email saved" : "Sähköposti tallennettu", "Invalid email" : "Virheellinen sähköposti", - "Unable to delete group" : "Ryhmän poisto epäonnistui", - "Unable to delete user" : "Käyttäjän poisto epäonnistui", "Backups restored successfully" : "Varmuuskopiot palautettiin onnistuneesti", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Salausavaintesi palauttaminen ei onnistunut, tarkista owncloud.log tai ole yhteydessä ylläpitäjään", "Language changed" : "Kieli on vaihdettu", @@ -37,12 +33,17 @@ "Enabled" : "Käytössä", "Not enabled" : "Ei käytössä", "Recommended" : "Suositeltu", + "Group already exists." : "Ryhmä on jo olemassa.", + "Unable to add group." : "Ryhmän lisääminen ei onnistunut.", + "Unable to delete group." : "Ryhmän poistaminen ei onnistunut.", "Saved" : "Tallennettu", "test email settings" : "testaa sähköpostiasetukset", "If you received this email, the settings seem to be correct." : "Jos sait tämän sähköpostin, kaikki asetukset vaikuttavat olevan kunnossa.", "A problem occurred while sending the email. Please revise your settings." : "Sähköpostia lähettäessä tapahtui virhe. Tarkista asetukset.", "Email sent" : "Sähköposti lähetetty", "You need to set your user email before being able to send test emails." : "Aseta sähköpostiosoite, jotta voit testata sähköpostin toimivuutta.", + "Unable to create user." : "Käyttäjän luominen ei onnistunut.", + "Unable to delete user." : "Käyttäjän poistaminen ei onnistunut.", "Are you really sure you want add \"{domain}\" as trusted domain?" : "Haluatko varmasti liittää kohteen \"{domain}\" luotetuksi toimialueeksi?", "Add trusted domain" : "Lisää luotettu toimialue", "Sending..." : "Lähetetään...", @@ -99,7 +100,6 @@ "TLS" : "TLS", "Security Warning" : "Turvallisuusvaroitus", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Käytät %sia HTTP-yhteydellä. Suosittelemme määrittämään palvelimen vaatimaan salattua HTTPS-yhteyttä.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Datahakemistosi ja kaikki tiedostosi ovat luultavasti käytettävissä suoraan internetistä. .htaccess-tiedosto ei toimi tällä hetkellä. Määritä verkkopalvelimen asetukset siten, ettei datahakemistosi ole suoraan käytettävissä tai siirrä kyseinen hakemisto pois verkkopalvelimen dokumenttijuuresta.", "Read-Only config enabled" : "Vain luku -määritykset otettu käyttöön", "Setup Warning" : "Asetusvaroitus", "Database Performance Info" : "Tietokannan suorituskyvyn tiedot", @@ -125,13 +125,14 @@ "Allow users to share via link" : "Salli käyttäjien jakaa linkkien kautta", "Enforce password protection" : "Pakota salasanasuojaus", "Allow public uploads" : "Salli julkiset lähetykset", + "Allow users to send mail notification for shared files" : "Salli käyttäjien lähettää sähköposti-ilmoituksia jaetuista tiedostoista", "Set default expiration date" : "Aseta oletusvanhenemispäivä", "Expire after " : "Vanhenna", "days" : "päivän jälkeen", "Enforce expiration date" : "Pakota vanhenemispäivä", "Allow resharing" : "Salli uudelleenjakaminen", "Restrict users to only share with users in their groups" : "Salli käyttäjien jakaa vain omassa ryhmässä olevien henkilöiden kesken", - "Allow users to send mail notification for shared files" : "Salli käyttäjien lähettää sähköposti-ilmoituksia jaetuista tiedostoista", + "Allow users to send mail notification for shared files to other users" : "Salli käyttäjien lähettää muille käyttäjille sähköpostitse ilmoitus jaetuista tiedostoista", "Exclude groups from sharing" : "Kiellä ryhmiä jakamasta", "These groups will still be able to receive shares, but not to initiate them." : "Nämä ryhmät kykenevät vastaanottamaan jakoja, mutta eivät kuitenkaan itse pysty luoda jakoja.", "Enforce HTTPS" : "Pakota HTTPS", @@ -164,6 +165,7 @@ "Documentation:" : "Ohjeistus:", "User Documentation" : "Käyttäjäohjeistus", "Admin Documentation" : "Ylläpitäjän ohjeistus", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Tätä sovellusta ei voi asentaa, koska seuraavat riippuvuudet eivät täyty:", "Update to %s" : "Päivitä versioon %s", "Enable only for specific groups" : "Salli vain tietyille ryhmille", "Uninstall App" : "Poista sovelluksen asennus", diff --git a/settings/l10n/fr.js b/settings/l10n/fr.js index 651f6608207..ef267f51b58 100644 --- a/settings/l10n/fr.js +++ b/settings/l10n/fr.js @@ -10,8 +10,6 @@ OC.L10N.register( "Authentication error" : "Erreur d'authentification", "Your full name has been changed." : "Votre nom complet a été modifié.", "Unable to change full name" : "Impossible de changer le nom complet", - "Group already exists" : "Ce groupe existe déjà", - "Unable to add group" : "Impossible d'ajouter le groupe", "Files decrypted successfully" : "Fichiers décryptés avec succès", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Impossible de décrypter vos fichiers, veuillez vérifier votre owncloud.log ou demander à votre administrateur", "Couldn't decrypt your files, check your password and try again" : "Impossible de décrypter vos fichiers, vérifiez votre mot de passe et essayez à nouveau", @@ -20,8 +18,6 @@ OC.L10N.register( "Couldn't remove app." : "Impossible de supprimer l'application.", "Email saved" : "E-mail sauvegardé", "Invalid email" : "E-mail invalide", - "Unable to delete group" : "Impossible de supprimer le groupe", - "Unable to delete user" : "Impossible de supprimer l'utilisateur", "Backups restored successfully" : "La sauvegarde a été restaurée avec succès", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Impossible de restaurer vos clés de chiffrement, merci de regarder journal owncloud.log ou de demander à votre administrateur", "Language changed" : "Langue changée", @@ -39,12 +35,17 @@ OC.L10N.register( "Enabled" : "Activées", "Not enabled" : "Désactivées", "Recommended" : "Recommandées", + "Group already exists." : "Ce groupe existe déjà.", + "Unable to add group." : "Impossible d'ajouter le groupe.", + "Unable to delete group." : "Impossible de supprimer le groupe.", "Saved" : "Sauvegardé", "test email settings" : "tester les paramètres d'e-mail", "If you received this email, the settings seem to be correct." : "Si vous recevez cet email, c'est que les paramètres sont corrects", "A problem occurred while sending the email. Please revise your settings." : "Une erreur est survenue lors de l'envoi de l'e-mail. Veuillez vérifier vos paramètres.", "Email sent" : "Email envoyé", "You need to set your user email before being able to send test emails." : "Vous devez configurer votre e-mail d'utilisateur avant de pouvoir envoyer des e-mails de test.", + "Unable to create user." : "Impossible de créer l'utilisateur.", + "Unable to delete user." : "Impossible de supprimer l'utilisateur.", "Are you really sure you want add \"{domain}\" as trusted domain?" : "Êtes-vous vraiment sûr de vouloir ajouter \"{domain}\" comme domaine de confiance ?", "Add trusted domain" : "Ajouter un domaine de confiance", "Sending..." : "Envoi en cours...", @@ -102,7 +103,8 @@ OC.L10N.register( "TLS" : "TLS", "Security Warning" : "Avertissement de sécurité", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Vous accédez à %s via HTTP. Nous vous recommandons fortement de configurer votre serveur pour forcer l'utilisation de HTTPS à la place.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Votre dossier de données et vos fichiers sont probablement accessibles depuis internet. Le fichier .htaccess ne fonctionne pas. Nous vous recommandons vivement de configurer votre serveur web de façon à ce que ce dossier de données ne soit plus accessible, ou bien de le déplacer à l'extérieur de la racine du serveur web.", + "Read-Only config enabled" : "Configuration en mode lecture seule activée", + "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." : "La configuration est en mode lecture seule. Ceci empêche la modification de certaines configurations via l'interface web. De plus, le fichier doit être passé manuellement en lecture-écriture pour chaque mise à jour.", "Setup Warning" : "Avertissement, problème de configuration", "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.", @@ -118,7 +120,7 @@ OC.L10N.register( "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Nous vous recommandons d'installer sur votre système les paquets requis à la prise en charge de l'un des paramètres régionaux suivants : %s", "URL generation in notification emails" : "Génération d'URL dans les mails de notification", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Si votre installation n'a pas été effectuée à la racine du domaine et qu'elle utilise le cron du système, il peut y avoir des problèmes avec la génération d'URL. Pour les éviter, veuillez configurer l'option \"overwritewebroot\" de votre fichier config.php avec le chemin de la racine de votre installation (suggéré : \"%s\")", - "Connectivity Checks" : "Vérification de la connectivité", + "Configuration Checks" : "Vérification de la configuration", "No problems found" : "Aucun problème trouvé", "Please double check the <a href='%s'>installation guides</a>." : "Veuillez vous référer au <a href='%s'>guide d'installation</a>.", "Last cron was executed at %s." : "Le dernier cron s'est exécuté à la date suivante : %s.", @@ -131,13 +133,14 @@ OC.L10N.register( "Allow users to share via link" : "Autoriser les utilisateurs à partager par lien", "Enforce password protection" : "Obliger la protection par mot de passe", "Allow public uploads" : "Autoriser les téléversements publics", + "Allow users to send mail notification for shared files" : "Autoriser les utilisateurs à envoyer des notifications par courriel concernant les partages", "Set default expiration date" : "Spécifier la date d'expiration par défaut", "Expire after " : "Expiration après ", "days" : "jours", "Enforce expiration date" : "Imposer la date d'expiration", "Allow resharing" : "Autoriser le repartage", "Restrict users to only share with users in their groups" : "N'autoriser les partages qu'entre membres de même groupes", - "Allow users to send mail notification for shared files" : "Autoriser les utilisateurs à envoyer des notifications par courriel concernant les partages", + "Allow users to send mail notification for shared files to other users" : "Autoriser les utilisateurs à envoyer une notification par courriel concernant les fichiers partagés", "Exclude groups from sharing" : "Empêcher certains groupes de partager", "These groups will still be able to receive shares, but not to initiate them." : "Ces groupes ne pourront plus initier de partage, mais ils pourront toujours rejoindre les partages faits par d'autres. ", "Enforce HTTPS" : "Forcer HTTPS", @@ -171,6 +174,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:", "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", @@ -181,7 +185,7 @@ OC.L10N.register( "Commercial Support" : "Support commercial", "Get the apps to sync your files" : "Obtenez les applications de synchronisation de vos fichiers", "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\">spread the word</a>!" : "Si voulez soutenir le projet, \n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\">rejoignez le développement</a>\n\t\tou \n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\">parlez-en</a> !", - "Show First Run Wizard again" : "Revoir le premier lancement de l'installeur", + "Show First Run Wizard again" : "Revoir la fenêtre d'accueil affichée lors de votre première connexion", "You have used <strong>%s</strong> of the available <strong>%s</strong>" : "Vous avez utilisé <strong>%s</strong> des <strong>%s<strong> disponibles", "Password" : "Mot de passe", "Your password was changed" : "Votre mot de passe a été changé", diff --git a/settings/l10n/fr.json b/settings/l10n/fr.json index 450b5542985..516b06694c4 100644 --- a/settings/l10n/fr.json +++ b/settings/l10n/fr.json @@ -8,8 +8,6 @@ "Authentication error" : "Erreur d'authentification", "Your full name has been changed." : "Votre nom complet a été modifié.", "Unable to change full name" : "Impossible de changer le nom complet", - "Group already exists" : "Ce groupe existe déjà", - "Unable to add group" : "Impossible d'ajouter le groupe", "Files decrypted successfully" : "Fichiers décryptés avec succès", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Impossible de décrypter vos fichiers, veuillez vérifier votre owncloud.log ou demander à votre administrateur", "Couldn't decrypt your files, check your password and try again" : "Impossible de décrypter vos fichiers, vérifiez votre mot de passe et essayez à nouveau", @@ -18,8 +16,6 @@ "Couldn't remove app." : "Impossible de supprimer l'application.", "Email saved" : "E-mail sauvegardé", "Invalid email" : "E-mail invalide", - "Unable to delete group" : "Impossible de supprimer le groupe", - "Unable to delete user" : "Impossible de supprimer l'utilisateur", "Backups restored successfully" : "La sauvegarde a été restaurée avec succès", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Impossible de restaurer vos clés de chiffrement, merci de regarder journal owncloud.log ou de demander à votre administrateur", "Language changed" : "Langue changée", @@ -37,12 +33,17 @@ "Enabled" : "Activées", "Not enabled" : "Désactivées", "Recommended" : "Recommandées", + "Group already exists." : "Ce groupe existe déjà.", + "Unable to add group." : "Impossible d'ajouter le groupe.", + "Unable to delete group." : "Impossible de supprimer le groupe.", "Saved" : "Sauvegardé", "test email settings" : "tester les paramètres d'e-mail", "If you received this email, the settings seem to be correct." : "Si vous recevez cet email, c'est que les paramètres sont corrects", "A problem occurred while sending the email. Please revise your settings." : "Une erreur est survenue lors de l'envoi de l'e-mail. Veuillez vérifier vos paramètres.", "Email sent" : "Email envoyé", "You need to set your user email before being able to send test emails." : "Vous devez configurer votre e-mail d'utilisateur avant de pouvoir envoyer des e-mails de test.", + "Unable to create user." : "Impossible de créer l'utilisateur.", + "Unable to delete user." : "Impossible de supprimer l'utilisateur.", "Are you really sure you want add \"{domain}\" as trusted domain?" : "Êtes-vous vraiment sûr de vouloir ajouter \"{domain}\" comme domaine de confiance ?", "Add trusted domain" : "Ajouter un domaine de confiance", "Sending..." : "Envoi en cours...", @@ -100,7 +101,8 @@ "TLS" : "TLS", "Security Warning" : "Avertissement de sécurité", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Vous accédez à %s via HTTP. Nous vous recommandons fortement de configurer votre serveur pour forcer l'utilisation de HTTPS à la place.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Votre dossier de données et vos fichiers sont probablement accessibles depuis internet. Le fichier .htaccess ne fonctionne pas. Nous vous recommandons vivement de configurer votre serveur web de façon à ce que ce dossier de données ne soit plus accessible, ou bien de le déplacer à l'extérieur de la racine du serveur web.", + "Read-Only config enabled" : "Configuration en mode lecture seule activée", + "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." : "La configuration est en mode lecture seule. Ceci empêche la modification de certaines configurations via l'interface web. De plus, le fichier doit être passé manuellement en lecture-écriture pour chaque mise à jour.", "Setup Warning" : "Avertissement, problème de configuration", "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.", @@ -116,7 +118,7 @@ "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Nous vous recommandons d'installer sur votre système les paquets requis à la prise en charge de l'un des paramètres régionaux suivants : %s", "URL generation in notification emails" : "Génération d'URL dans les mails de notification", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Si votre installation n'a pas été effectuée à la racine du domaine et qu'elle utilise le cron du système, il peut y avoir des problèmes avec la génération d'URL. Pour les éviter, veuillez configurer l'option \"overwritewebroot\" de votre fichier config.php avec le chemin de la racine de votre installation (suggéré : \"%s\")", - "Connectivity Checks" : "Vérification de la connectivité", + "Configuration Checks" : "Vérification de la configuration", "No problems found" : "Aucun problème trouvé", "Please double check the <a href='%s'>installation guides</a>." : "Veuillez vous référer au <a href='%s'>guide d'installation</a>.", "Last cron was executed at %s." : "Le dernier cron s'est exécuté à la date suivante : %s.", @@ -129,13 +131,14 @@ "Allow users to share via link" : "Autoriser les utilisateurs à partager par lien", "Enforce password protection" : "Obliger la protection par mot de passe", "Allow public uploads" : "Autoriser les téléversements publics", + "Allow users to send mail notification for shared files" : "Autoriser les utilisateurs à envoyer des notifications par courriel concernant les partages", "Set default expiration date" : "Spécifier la date d'expiration par défaut", "Expire after " : "Expiration après ", "days" : "jours", "Enforce expiration date" : "Imposer la date d'expiration", "Allow resharing" : "Autoriser le repartage", "Restrict users to only share with users in their groups" : "N'autoriser les partages qu'entre membres de même groupes", - "Allow users to send mail notification for shared files" : "Autoriser les utilisateurs à envoyer des notifications par courriel concernant les partages", + "Allow users to send mail notification for shared files to other users" : "Autoriser les utilisateurs à envoyer une notification par courriel concernant les fichiers partagés", "Exclude groups from sharing" : "Empêcher certains groupes de partager", "These groups will still be able to receive shares, but not to initiate them." : "Ces groupes ne pourront plus initier de partage, mais ils pourront toujours rejoindre les partages faits par d'autres. ", "Enforce HTTPS" : "Forcer HTTPS", @@ -169,6 +172,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:", "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", @@ -179,7 +183,7 @@ "Commercial Support" : "Support commercial", "Get the apps to sync your files" : "Obtenez les applications de synchronisation de vos fichiers", "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\">spread the word</a>!" : "Si voulez soutenir le projet, \n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\">rejoignez le développement</a>\n\t\tou \n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\">parlez-en</a> !", - "Show First Run Wizard again" : "Revoir le premier lancement de l'installeur", + "Show First Run Wizard again" : "Revoir la fenêtre d'accueil affichée lors de votre première connexion", "You have used <strong>%s</strong> of the available <strong>%s</strong>" : "Vous avez utilisé <strong>%s</strong> des <strong>%s<strong> disponibles", "Password" : "Mot de passe", "Your password was changed" : "Votre mot de passe a été changé", diff --git a/settings/l10n/gl.js b/settings/l10n/gl.js index 64e73cf0d0e..a564cb05bac 100644 --- a/settings/l10n/gl.js +++ b/settings/l10n/gl.js @@ -10,8 +10,6 @@ OC.L10N.register( "Authentication error" : "Produciuse un erro de autenticación", "Your full name has been changed." : "O seu nome completo foi cambiado", "Unable to change full name" : "Non é posíbel cambiar o nome completo", - "Group already exists" : "O grupo xa existe", - "Unable to add group" : "Non é posíbel engadir o grupo", "Files decrypted successfully" : "Ficheiros descifrados satisfactoriamente", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Non foi posíbel descifrar os seus ficheiros. revise o ficheiro de rexistro owncloud.log, ou pregúntelle ao administrador", "Couldn't decrypt your files, check your password and try again" : "Non foi posíbel descifrar os seus ficheiros. revise o seu contrasinal e ténteo de novo", @@ -20,8 +18,6 @@ OC.L10N.register( "Couldn't remove app." : "Non foi posíbel retirar a aplicación.", "Email saved" : "Correo gardado", "Invalid email" : "Correo incorrecto", - "Unable to delete group" : "Non é posíbel eliminar o grupo.", - "Unable to delete user" : "Non é posíbel eliminar o usuario", "Backups restored successfully" : "As copias de seguranza foron restauradas satisfactoriamente", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Non foi posíbel restaurar as chaves de cifrado. revise o ficheiro de rexistro owncloud.log, ou pregúntelle ao administrador", "Language changed" : "O idioma cambiou", @@ -102,7 +98,6 @@ OC.L10N.register( "TLS" : "TLS", "Security Warning" : "Aviso de seguranza", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Está accedendo a %s a través de HTTP. Suxerímoslle que configure o seu servidor para requirir, no seu canto, o uso de HTTPS.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "O seu cartafol de datos e os seus ficheiros probabelmente sexan accesíbeis a través de internet. O ficheiro .htaccess non está a traballar. Suxerímoslle que configure o seu servidor web de tal maneira que o cartafol de datos non estea accesíbel ou que mova o o directorio de datos fóra da raíz de documentos do servidor web.", "Read-Only config enabled" : "Activada a restrición da configuración a só lectura", "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." : "Foi activada a restrición da configuración a só lectura. Isto impide o estabelecemento dalgunhas configuracións a través da interface web. Ademais, ten que facer escribíbel manualmente o ficheiro para cada actualización.", "Setup Warning" : "Configurar os avisos", @@ -120,7 +115,6 @@ OC.L10N.register( "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Recomendámoslle que instale no sistema os paquetes necesarios para admitir unha das seguintes configuracións rexionais: %s.", "URL generation in notification emails" : "Xeración dos URL nos correos de notificación", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Se a instalación non foi feita na raíz do dominio e usa o sistema de cron, poden xurdir problemas coa xeración dos URL. Para evitar estes problemas, axuste a opción «overwritewebroot» no ficheiro config.php ás ruta de webroot da súa instalación (suxírese: «%s»)", - "Connectivity Checks" : "Comprobacións de conectividade", "No problems found" : "Non se atoparon problemas", "Please double check the <a href='%s'>installation guides</a>." : "Volva comprobar as <a href='%s'>guías de instalación</a>", "Last cron was executed at %s." : "O último «cron» executouse ás %s.", @@ -133,13 +127,13 @@ OC.L10N.register( "Allow users to share via link" : "Permitir que os usuarios compartan a través de ligazóns", "Enforce password protection" : "Forzar a protección por contrasinal", "Allow public uploads" : "Permitir os envíos públicos", + "Allow users to send mail notification for shared files" : "Permitirlle aos usuarios enviar notificacións por correo para os ficheiros compartidos", "Set default expiration date" : "Definir a data predeterminada de caducidade", "Expire after " : "Caduca após", "days" : "días", "Enforce expiration date" : "Obrigar a data de caducidade", "Allow resharing" : "Permitir compartir", "Restrict users to only share with users in their groups" : "Restrinxir aos usuarios a compartir só cos usuarios dos seus grupos", - "Allow users to send mail notification for shared files" : "Permitirlle aos usuarios enviar notificacións por correo para os ficheiros compartidos", "Exclude groups from sharing" : "Excluír grupos da compartición", "These groups will still be able to receive shares, but not to initiate them." : "Estes grupos poderán recibir comparticións, mais non inicialas.", "Enforce HTTPS" : "Forzar HTTPS", diff --git a/settings/l10n/gl.json b/settings/l10n/gl.json index f72ae5d272f..fc82f8965df 100644 --- a/settings/l10n/gl.json +++ b/settings/l10n/gl.json @@ -8,8 +8,6 @@ "Authentication error" : "Produciuse un erro de autenticación", "Your full name has been changed." : "O seu nome completo foi cambiado", "Unable to change full name" : "Non é posíbel cambiar o nome completo", - "Group already exists" : "O grupo xa existe", - "Unable to add group" : "Non é posíbel engadir o grupo", "Files decrypted successfully" : "Ficheiros descifrados satisfactoriamente", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Non foi posíbel descifrar os seus ficheiros. revise o ficheiro de rexistro owncloud.log, ou pregúntelle ao administrador", "Couldn't decrypt your files, check your password and try again" : "Non foi posíbel descifrar os seus ficheiros. revise o seu contrasinal e ténteo de novo", @@ -18,8 +16,6 @@ "Couldn't remove app." : "Non foi posíbel retirar a aplicación.", "Email saved" : "Correo gardado", "Invalid email" : "Correo incorrecto", - "Unable to delete group" : "Non é posíbel eliminar o grupo.", - "Unable to delete user" : "Non é posíbel eliminar o usuario", "Backups restored successfully" : "As copias de seguranza foron restauradas satisfactoriamente", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Non foi posíbel restaurar as chaves de cifrado. revise o ficheiro de rexistro owncloud.log, ou pregúntelle ao administrador", "Language changed" : "O idioma cambiou", @@ -100,7 +96,6 @@ "TLS" : "TLS", "Security Warning" : "Aviso de seguranza", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Está accedendo a %s a través de HTTP. Suxerímoslle que configure o seu servidor para requirir, no seu canto, o uso de HTTPS.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "O seu cartafol de datos e os seus ficheiros probabelmente sexan accesíbeis a través de internet. O ficheiro .htaccess non está a traballar. Suxerímoslle que configure o seu servidor web de tal maneira que o cartafol de datos non estea accesíbel ou que mova o o directorio de datos fóra da raíz de documentos do servidor web.", "Read-Only config enabled" : "Activada a restrición da configuración a só lectura", "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." : "Foi activada a restrición da configuración a só lectura. Isto impide o estabelecemento dalgunhas configuracións a través da interface web. Ademais, ten que facer escribíbel manualmente o ficheiro para cada actualización.", "Setup Warning" : "Configurar os avisos", @@ -118,7 +113,6 @@ "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Recomendámoslle que instale no sistema os paquetes necesarios para admitir unha das seguintes configuracións rexionais: %s.", "URL generation in notification emails" : "Xeración dos URL nos correos de notificación", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Se a instalación non foi feita na raíz do dominio e usa o sistema de cron, poden xurdir problemas coa xeración dos URL. Para evitar estes problemas, axuste a opción «overwritewebroot» no ficheiro config.php ás ruta de webroot da súa instalación (suxírese: «%s»)", - "Connectivity Checks" : "Comprobacións de conectividade", "No problems found" : "Non se atoparon problemas", "Please double check the <a href='%s'>installation guides</a>." : "Volva comprobar as <a href='%s'>guías de instalación</a>", "Last cron was executed at %s." : "O último «cron» executouse ás %s.", @@ -131,13 +125,13 @@ "Allow users to share via link" : "Permitir que os usuarios compartan a través de ligazóns", "Enforce password protection" : "Forzar a protección por contrasinal", "Allow public uploads" : "Permitir os envíos públicos", + "Allow users to send mail notification for shared files" : "Permitirlle aos usuarios enviar notificacións por correo para os ficheiros compartidos", "Set default expiration date" : "Definir a data predeterminada de caducidade", "Expire after " : "Caduca após", "days" : "días", "Enforce expiration date" : "Obrigar a data de caducidade", "Allow resharing" : "Permitir compartir", "Restrict users to only share with users in their groups" : "Restrinxir aos usuarios a compartir só cos usuarios dos seus grupos", - "Allow users to send mail notification for shared files" : "Permitirlle aos usuarios enviar notificacións por correo para os ficheiros compartidos", "Exclude groups from sharing" : "Excluír grupos da compartición", "These groups will still be able to receive shares, but not to initiate them." : "Estes grupos poderán recibir comparticións, mais non inicialas.", "Enforce HTTPS" : "Forzar HTTPS", diff --git a/settings/l10n/he.js b/settings/l10n/he.js index 72fe1591b13..014eb59dbaf 100644 --- a/settings/l10n/he.js +++ b/settings/l10n/he.js @@ -6,12 +6,8 @@ OC.L10N.register( "Security" : "אבטחה", "Log" : "יומן", "Authentication error" : "שגיאת הזדהות", - "Group already exists" : "הקבוצה כבר קיימת", - "Unable to add group" : "לא ניתן להוסיף קבוצה", "Email saved" : "הדוא״ל נשמר", "Invalid email" : "דוא״ל לא חוקי", - "Unable to delete group" : "לא ניתן למחוק את הקבוצה", - "Unable to delete user" : "לא ניתן למחוק את המשתמש", "Language changed" : "שפה השתנתה", "Invalid request" : "בקשה לא חוקית", "Admins can't remove themself from the admin group" : "מנהלים לא יכולים להסיר את עצמם מקבוצת המנהלים", diff --git a/settings/l10n/he.json b/settings/l10n/he.json index 7f3ac6506e0..f9c3986d1a1 100644 --- a/settings/l10n/he.json +++ b/settings/l10n/he.json @@ -4,12 +4,8 @@ "Security" : "אבטחה", "Log" : "יומן", "Authentication error" : "שגיאת הזדהות", - "Group already exists" : "הקבוצה כבר קיימת", - "Unable to add group" : "לא ניתן להוסיף קבוצה", "Email saved" : "הדוא״ל נשמר", "Invalid email" : "דוא״ל לא חוקי", - "Unable to delete group" : "לא ניתן למחוק את הקבוצה", - "Unable to delete user" : "לא ניתן למחוק את המשתמש", "Language changed" : "שפה השתנתה", "Invalid request" : "בקשה לא חוקית", "Admins can't remove themself from the admin group" : "מנהלים לא יכולים להסיר את עצמם מקבוצת המנהלים", diff --git a/settings/l10n/hr.js b/settings/l10n/hr.js index ff690b743e3..e11664d13e5 100644 --- a/settings/l10n/hr.js +++ b/settings/l10n/hr.js @@ -9,8 +9,6 @@ OC.L10N.register( "Authentication error" : "Pogrešna autentikacija", "Your full name has been changed." : "Vaše puno ime je promijenjeno.", "Unable to change full name" : "Puno ime nije moguće promijeniti.", - "Group already exists" : "Grupa već postoji", - "Unable to add group" : "Grupu nije moguće dodati", "Files decrypted successfully" : "Datoteke uspješno dešifrirane", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Vaše datoteke nije moguće dešifrirati, molimo provjerite svoj owncloud.logili kontaktirajte svog administratora.", "Couldn't decrypt your files, check your password and try again" : "Vaše datoteke nije moguće dešifrirati, provjerite svoju lozinku i pokušajte ponovno.", @@ -19,8 +17,6 @@ OC.L10N.register( "Couldn't remove app." : "Nije moguće ukloniti app.", "Email saved" : "E-pošta spremljena", "Invalid email" : "E-pošta neispravna", - "Unable to delete group" : "Grupu nije moguće izbrisati", - "Unable to delete user" : "Korisnika nije moguće izbrisati", "Backups restored successfully" : "Sigurnosne kopije uspješno obnovljene", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Vaše ključeve za šifriranje nije moguće obnoviti, molimo provjerite svoj owncloud.logili kontaktirajte svog administratora.", "Language changed" : "Promjena jezika", @@ -96,7 +92,6 @@ OC.L10N.register( "TLS" : "TLS", "Security Warning" : "Sigurnosno upozorenje", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Vi %s pristupate putem HTTP. Toplo vam preporučujemo da svoj poslužitelj konfigurirate takoda umjesto HTTP zahtijeva korištenje HTTPS.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Vašem podatkovnom direktoriju i vašim datotekama pristup je vjerojatno moguć s interneta.Datoteka .htaccess ne radi. Toplo vam preporučujemo da svoj web poslužitelj konfigurirate tako daje pristup podatkovnom direktoriju nemoguć ili pak podatkovni direktorij premjestite izvan korijena dokumentaweb poslužitelja.", "Setup Warning" : "Upozorenje programa za postavljanje", "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.", @@ -122,13 +117,13 @@ OC.L10N.register( "Allow users to share via link" : "Dopustite korisnicia dijeljenje putem veze", "Enforce password protection" : "Nametnite zaštitu lozinki", "Allow public uploads" : "Dopustite javno učitavanje sadržaja", + "Allow users to send mail notification for shared files" : "Dopustite korisnicima slanje notifikacijske e-pošte za podijeljene datoteke", "Set default expiration date" : "Postavite zadani datum isteka", "Expire after " : "Istek nakon", "days" : "dana", "Enforce expiration date" : "Nametnite datum isteka", "Allow resharing" : "Dopustite ponovno dijeljenje zajedničkih resursa", "Restrict users to only share with users in their groups" : "Ograničite korisnike na meusobno dijeljenje resursa samo s korisnicima unutar svoje grupe", - "Allow users to send mail notification for shared files" : "Dopustite korisnicima slanje notifikacijske e-pošte za podijeljene datoteke", "Exclude groups from sharing" : "Isključite grupe iz dijeljenja zajedničkih resursa", "These groups will still be able to receive shares, but not to initiate them." : "Ove će grupe još uvijek moći primati dijeljene resurse, ali ne i inicirati ih", "Enforce HTTPS" : "Nametnite HTTPS", diff --git a/settings/l10n/hr.json b/settings/l10n/hr.json index 4f28ba64adc..ecbcd19fddd 100644 --- a/settings/l10n/hr.json +++ b/settings/l10n/hr.json @@ -7,8 +7,6 @@ "Authentication error" : "Pogrešna autentikacija", "Your full name has been changed." : "Vaše puno ime je promijenjeno.", "Unable to change full name" : "Puno ime nije moguće promijeniti.", - "Group already exists" : "Grupa već postoji", - "Unable to add group" : "Grupu nije moguće dodati", "Files decrypted successfully" : "Datoteke uspješno dešifrirane", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Vaše datoteke nije moguće dešifrirati, molimo provjerite svoj owncloud.logili kontaktirajte svog administratora.", "Couldn't decrypt your files, check your password and try again" : "Vaše datoteke nije moguće dešifrirati, provjerite svoju lozinku i pokušajte ponovno.", @@ -17,8 +15,6 @@ "Couldn't remove app." : "Nije moguće ukloniti app.", "Email saved" : "E-pošta spremljena", "Invalid email" : "E-pošta neispravna", - "Unable to delete group" : "Grupu nije moguće izbrisati", - "Unable to delete user" : "Korisnika nije moguće izbrisati", "Backups restored successfully" : "Sigurnosne kopije uspješno obnovljene", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Vaše ključeve za šifriranje nije moguće obnoviti, molimo provjerite svoj owncloud.logili kontaktirajte svog administratora.", "Language changed" : "Promjena jezika", @@ -94,7 +90,6 @@ "TLS" : "TLS", "Security Warning" : "Sigurnosno upozorenje", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Vi %s pristupate putem HTTP. Toplo vam preporučujemo da svoj poslužitelj konfigurirate takoda umjesto HTTP zahtijeva korištenje HTTPS.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Vašem podatkovnom direktoriju i vašim datotekama pristup je vjerojatno moguć s interneta.Datoteka .htaccess ne radi. Toplo vam preporučujemo da svoj web poslužitelj konfigurirate tako daje pristup podatkovnom direktoriju nemoguć ili pak podatkovni direktorij premjestite izvan korijena dokumentaweb poslužitelja.", "Setup Warning" : "Upozorenje programa za postavljanje", "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.", @@ -120,13 +115,13 @@ "Allow users to share via link" : "Dopustite korisnicia dijeljenje putem veze", "Enforce password protection" : "Nametnite zaštitu lozinki", "Allow public uploads" : "Dopustite javno učitavanje sadržaja", + "Allow users to send mail notification for shared files" : "Dopustite korisnicima slanje notifikacijske e-pošte za podijeljene datoteke", "Set default expiration date" : "Postavite zadani datum isteka", "Expire after " : "Istek nakon", "days" : "dana", "Enforce expiration date" : "Nametnite datum isteka", "Allow resharing" : "Dopustite ponovno dijeljenje zajedničkih resursa", "Restrict users to only share with users in their groups" : "Ograničite korisnike na meusobno dijeljenje resursa samo s korisnicima unutar svoje grupe", - "Allow users to send mail notification for shared files" : "Dopustite korisnicima slanje notifikacijske e-pošte za podijeljene datoteke", "Exclude groups from sharing" : "Isključite grupe iz dijeljenja zajedničkih resursa", "These groups will still be able to receive shares, but not to initiate them." : "Ove će grupe još uvijek moći primati dijeljene resurse, ali ne i inicirati ih", "Enforce HTTPS" : "Nametnite HTTPS", diff --git a/settings/l10n/hu_HU.js b/settings/l10n/hu_HU.js index 4a83a78a977..fc746d43f94 100644 --- a/settings/l10n/hu_HU.js +++ b/settings/l10n/hu_HU.js @@ -9,8 +9,6 @@ OC.L10N.register( "Authentication error" : "Azonosítási hiba", "Your full name has been changed." : "Az Ön teljes nevét módosítottuk.", "Unable to change full name" : "Nem sikerült megváltoztatni a teljes nevét", - "Group already exists" : "A csoport már létezik", - "Unable to add group" : "A csoport nem hozható létre", "Files decrypted successfully" : "A fájlok titkosítását sikeresen megszüntettük.", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Fájljainak titkosítását nem sikerült megszüntetni, kérjük forduljon a rendszergazdához!", "Couldn't decrypt your files, check your password and try again" : "Fájljainak titkosítását nem sikerült megszüntetni, ellenőrizze a jelszavát, és próbálja újra!", @@ -19,8 +17,6 @@ OC.L10N.register( "Couldn't remove app." : "Az alkalmazást nem sikerült eltávolítani.", "Email saved" : "Elmentettük az e-mail címet", "Invalid email" : "Hibás e-mail", - "Unable to delete group" : "A csoport nem törölhető", - "Unable to delete user" : "A felhasználó nem törölhető", "Backups restored successfully" : "A kulcsokat sikereresen visszaállítottuk a mentésekből.", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "A titkosítási kulcsok visszaállítása nem sikerült. Kérjük ellenőrizze az owncloud.log naplófájlt vagy forduljon a rendszergazdához!", "Language changed" : "A nyelv megváltozott", @@ -96,7 +92,6 @@ OC.L10N.register( "TLS" : "TLS", "Security Warning" : "Biztonsági figyelmeztetés", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "A %s szolgáltatás elérése jelenleg HTTP-n keresztül történik. Nagyon ajánlott, hogy a kiszolgálót úgy állítsa be, hogy az elérés HTTPS-en keresztül történjék.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Az adatkönytára és az itt levő fájlok valószínűleg elérhetők az internetről. Az ownCloud által beillesztett .htaccess fájl nem működik. Nagyon erősen ajánlott, hogy a webszervert úgy konfigurálja, hogy az adatkönyvtár ne legyen közvetlenül kívülről elérhető, vagy az adatkönyvtárt tegye a webszerver dokumentumfáján kívülre.", "Setup Warning" : "A beállítással kapcsolatos figyelmeztetés", "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.", @@ -122,13 +117,13 @@ OC.L10N.register( "Allow users to share via link" : "Engedjük meg az állományok linkekkel történő megosztását", "Enforce password protection" : "Legyen kötelező a linkek jelszóval való védelme", "Allow public uploads" : "Nyilvános feltöltés engedélyezése", + "Allow users to send mail notification for shared files" : "A felhasználók küldhessenek e-mail értesítést a megosztás létrejöttéről", "Set default expiration date" : "Alapértelmezett lejárati idő beállítása", "Expire after " : "A lejárat legyen", "days" : "nap", "Enforce expiration date" : "A beállított lejárati idő legyen kötelezően érvényes", "Allow resharing" : "A megosztás továbbadásának engedélyezése", "Restrict users to only share with users in their groups" : "A csoporttagok csak a saját csoportjukon belül oszthassanak meg anyagokat", - "Allow users to send mail notification for shared files" : "A felhasználók küldhessenek e-mail értesítést a megosztás létrejöttéről", "Exclude groups from sharing" : "Csoportok megosztási jogának tiltása", "These groups will still be able to receive shares, but not to initiate them." : "E csoportok tagjaival meg lehet osztani anyagokat, de ők nem hozhatnak létre megosztást.", "Enforce HTTPS" : "Kötelező HTTPS", diff --git a/settings/l10n/hu_HU.json b/settings/l10n/hu_HU.json index 01895bb8b9f..b4204c0d126 100644 --- a/settings/l10n/hu_HU.json +++ b/settings/l10n/hu_HU.json @@ -7,8 +7,6 @@ "Authentication error" : "Azonosítási hiba", "Your full name has been changed." : "Az Ön teljes nevét módosítottuk.", "Unable to change full name" : "Nem sikerült megváltoztatni a teljes nevét", - "Group already exists" : "A csoport már létezik", - "Unable to add group" : "A csoport nem hozható létre", "Files decrypted successfully" : "A fájlok titkosítását sikeresen megszüntettük.", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Fájljainak titkosítását nem sikerült megszüntetni, kérjük forduljon a rendszergazdához!", "Couldn't decrypt your files, check your password and try again" : "Fájljainak titkosítását nem sikerült megszüntetni, ellenőrizze a jelszavát, és próbálja újra!", @@ -17,8 +15,6 @@ "Couldn't remove app." : "Az alkalmazást nem sikerült eltávolítani.", "Email saved" : "Elmentettük az e-mail címet", "Invalid email" : "Hibás e-mail", - "Unable to delete group" : "A csoport nem törölhető", - "Unable to delete user" : "A felhasználó nem törölhető", "Backups restored successfully" : "A kulcsokat sikereresen visszaállítottuk a mentésekből.", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "A titkosítási kulcsok visszaállítása nem sikerült. Kérjük ellenőrizze az owncloud.log naplófájlt vagy forduljon a rendszergazdához!", "Language changed" : "A nyelv megváltozott", @@ -94,7 +90,6 @@ "TLS" : "TLS", "Security Warning" : "Biztonsági figyelmeztetés", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "A %s szolgáltatás elérése jelenleg HTTP-n keresztül történik. Nagyon ajánlott, hogy a kiszolgálót úgy állítsa be, hogy az elérés HTTPS-en keresztül történjék.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Az adatkönytára és az itt levő fájlok valószínűleg elérhetők az internetről. Az ownCloud által beillesztett .htaccess fájl nem működik. Nagyon erősen ajánlott, hogy a webszervert úgy konfigurálja, hogy az adatkönyvtár ne legyen közvetlenül kívülről elérhető, vagy az adatkönyvtárt tegye a webszerver dokumentumfáján kívülre.", "Setup Warning" : "A beállítással kapcsolatos figyelmeztetés", "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.", @@ -120,13 +115,13 @@ "Allow users to share via link" : "Engedjük meg az állományok linkekkel történő megosztását", "Enforce password protection" : "Legyen kötelező a linkek jelszóval való védelme", "Allow public uploads" : "Nyilvános feltöltés engedélyezése", + "Allow users to send mail notification for shared files" : "A felhasználók küldhessenek e-mail értesítést a megosztás létrejöttéről", "Set default expiration date" : "Alapértelmezett lejárati idő beállítása", "Expire after " : "A lejárat legyen", "days" : "nap", "Enforce expiration date" : "A beállított lejárati idő legyen kötelezően érvényes", "Allow resharing" : "A megosztás továbbadásának engedélyezése", "Restrict users to only share with users in their groups" : "A csoporttagok csak a saját csoportjukon belül oszthassanak meg anyagokat", - "Allow users to send mail notification for shared files" : "A felhasználók küldhessenek e-mail értesítést a megosztás létrejöttéről", "Exclude groups from sharing" : "Csoportok megosztási jogának tiltása", "These groups will still be able to receive shares, but not to initiate them." : "E csoportok tagjaival meg lehet osztani anyagokat, de ők nem hozhatnak létre megosztást.", "Enforce HTTPS" : "Kötelező HTTPS", diff --git a/settings/l10n/id.js b/settings/l10n/id.js index c772bc8127c..58d29aa64ff 100644 --- a/settings/l10n/id.js +++ b/settings/l10n/id.js @@ -9,8 +9,6 @@ OC.L10N.register( "Authentication error" : "Terjadi kesalahan saat otentikasi", "Your full name has been changed." : "Nama lengkap Anda telah diubah", "Unable to change full name" : "Tidak dapat mengubah nama lengkap", - "Group already exists" : "Grup sudah ada", - "Unable to add group" : "Tidak dapat menambah grup", "Files decrypted successfully" : "Berkas berhasil dideskripsi", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Tidak dapat mendeskripsi berkas Anda, mohon periksa owncloud.log Anda atau tanyakan pada administrator Anda", "Couldn't decrypt your files, check your password and try again" : "Tidak dapat mendeskripsi berkas Anda, periksa sandi Anda dan coba lagi", @@ -19,8 +17,6 @@ OC.L10N.register( "Couldn't remove app." : "Tidak dapat menghapus aplikasi.", "Email saved" : "Email disimpan", "Invalid email" : "Email tidak valid", - "Unable to delete group" : "Tidak dapat menghapus grup", - "Unable to delete user" : "Tidak dapat menghapus pengguna", "Backups restored successfully" : "Cadangan berhasil dipulihkan", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Tidak dapat memulihkan kunci enkripsi Anda, mohon periksa owncloud.log Anda atau tanyakan pada administrator Anda.", "Language changed" : "Bahasa telah diubah", @@ -101,7 +97,6 @@ OC.L10N.register( "TLS" : "TLS", "Security Warning" : "Peringatan Keamanan", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Anda mengakses %s melalui HTTP. Kami sangat menyarankan Anda untuk mengkonfigurasi server dengan menggunakan HTTPS sebagai gantinya.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Direktori data dan berkas Anda mungkin dapat diakses dari internet. Berkas .htaccess tidak bekerja. Kami sangat menyarankan untuk mengkonfigurasi server web Anda agar direktori data tidak lagi dapat diakses atau Anda dapat memindahkan direktori data di luar dokumen root webserver.", "Setup Warning" : "Peringatan Pengaturan", "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.", @@ -128,13 +123,13 @@ OC.L10N.register( "Allow users to share via link" : "Izinkan pengguna untuk membagikan via tautan", "Enforce password protection" : "Berlakukan perlindungan sandi", "Allow public uploads" : "Izinkan unggahan publik", + "Allow users to send mail notification for shared files" : "Izinkan pengguna untuk mengirimkan email pemberitahuan untuk berkas berbagi", "Set default expiration date" : "Atur tanggal kadaluarsa default", "Expire after " : "Kadaluarsa setelah", "days" : "hari", "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" : "Izinkan pengguna untuk mengirimkan email pemberitahuan untuk berkas berbagi", "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", diff --git a/settings/l10n/id.json b/settings/l10n/id.json index 5a507822b59..b2de287e5fb 100644 --- a/settings/l10n/id.json +++ b/settings/l10n/id.json @@ -7,8 +7,6 @@ "Authentication error" : "Terjadi kesalahan saat otentikasi", "Your full name has been changed." : "Nama lengkap Anda telah diubah", "Unable to change full name" : "Tidak dapat mengubah nama lengkap", - "Group already exists" : "Grup sudah ada", - "Unable to add group" : "Tidak dapat menambah grup", "Files decrypted successfully" : "Berkas berhasil dideskripsi", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Tidak dapat mendeskripsi berkas Anda, mohon periksa owncloud.log Anda atau tanyakan pada administrator Anda", "Couldn't decrypt your files, check your password and try again" : "Tidak dapat mendeskripsi berkas Anda, periksa sandi Anda dan coba lagi", @@ -17,8 +15,6 @@ "Couldn't remove app." : "Tidak dapat menghapus aplikasi.", "Email saved" : "Email disimpan", "Invalid email" : "Email tidak valid", - "Unable to delete group" : "Tidak dapat menghapus grup", - "Unable to delete user" : "Tidak dapat menghapus pengguna", "Backups restored successfully" : "Cadangan berhasil dipulihkan", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Tidak dapat memulihkan kunci enkripsi Anda, mohon periksa owncloud.log Anda atau tanyakan pada administrator Anda.", "Language changed" : "Bahasa telah diubah", @@ -99,7 +95,6 @@ "TLS" : "TLS", "Security Warning" : "Peringatan Keamanan", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Anda mengakses %s melalui HTTP. Kami sangat menyarankan Anda untuk mengkonfigurasi server dengan menggunakan HTTPS sebagai gantinya.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Direktori data dan berkas Anda mungkin dapat diakses dari internet. Berkas .htaccess tidak bekerja. Kami sangat menyarankan untuk mengkonfigurasi server web Anda agar direktori data tidak lagi dapat diakses atau Anda dapat memindahkan direktori data di luar dokumen root webserver.", "Setup Warning" : "Peringatan Pengaturan", "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.", @@ -126,13 +121,13 @@ "Allow users to share via link" : "Izinkan pengguna untuk membagikan via tautan", "Enforce password protection" : "Berlakukan perlindungan sandi", "Allow public uploads" : "Izinkan unggahan publik", + "Allow users to send mail notification for shared files" : "Izinkan pengguna untuk mengirimkan email pemberitahuan untuk berkas berbagi", "Set default expiration date" : "Atur tanggal kadaluarsa default", "Expire after " : "Kadaluarsa setelah", "days" : "hari", "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" : "Izinkan pengguna untuk mengirimkan email pemberitahuan untuk berkas berbagi", "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", diff --git a/settings/l10n/is.js b/settings/l10n/is.js index d6d42ad0536..6e6fd5c902a 100644 --- a/settings/l10n/is.js +++ b/settings/l10n/is.js @@ -2,12 +2,8 @@ OC.L10N.register( "settings", { "Authentication error" : "Villa við auðkenningu", - "Group already exists" : "Hópur er þegar til", - "Unable to add group" : "Ekki tókst að bæta við hóp", "Email saved" : "Netfang vistað", "Invalid email" : "Ógilt netfang", - "Unable to delete group" : "Ekki tókst að eyða hóp", - "Unable to delete user" : "Ekki tókst að eyða notenda", "Language changed" : "Tungumáli breytt", "Invalid request" : "Ógild fyrirspurn", "Admins can't remove themself from the admin group" : "Stjórnendur geta ekki fjarlægt sjálfa sig úr stjórnendahóp", diff --git a/settings/l10n/is.json b/settings/l10n/is.json index d61b3ccfd1c..5a957e8e626 100644 --- a/settings/l10n/is.json +++ b/settings/l10n/is.json @@ -1,11 +1,7 @@ { "translations": { "Authentication error" : "Villa við auðkenningu", - "Group already exists" : "Hópur er þegar til", - "Unable to add group" : "Ekki tókst að bæta við hóp", "Email saved" : "Netfang vistað", "Invalid email" : "Ógilt netfang", - "Unable to delete group" : "Ekki tókst að eyða hóp", - "Unable to delete user" : "Ekki tókst að eyða notenda", "Language changed" : "Tungumáli breytt", "Invalid request" : "Ógild fyrirspurn", "Admins can't remove themself from the admin group" : "Stjórnendur geta ekki fjarlægt sjálfa sig úr stjórnendahóp", diff --git a/settings/l10n/it.js b/settings/l10n/it.js index 14ed39b3711..279c9f0836c 100644 --- a/settings/l10n/it.js +++ b/settings/l10n/it.js @@ -10,8 +10,6 @@ OC.L10N.register( "Authentication error" : "Errore di autenticazione", "Your full name has been changed." : "Il tuo nome completo è stato cambiato.", "Unable to change full name" : "Impossibile cambiare il nome completo", - "Group already exists" : "Il gruppo esiste già", - "Unable to add group" : "Impossibile aggiungere il gruppo", "Files decrypted successfully" : "File decifrato correttamente", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Impossibile decifrare i tuoi file, controlla il file owncloud.log o chiedi al tuo amministratore", "Couldn't decrypt your files, check your password and try again" : "Impossibile decifrare i tuoi file, controlla la password e prova ancora", @@ -20,8 +18,6 @@ OC.L10N.register( "Couldn't remove app." : "Impossibile rimuovere l'applicazione.", "Email saved" : "Email salvata", "Invalid email" : "Email non valida", - "Unable to delete group" : "Impossibile eliminare il gruppo", - "Unable to delete user" : "Impossibile eliminare l'utente", "Backups restored successfully" : "Copie di sicurezza ripristinate correttamente", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Impossibile ripristinare le chiavi di cifratura, controlla il file owncloud.log o chiedi al tuo amministratore", "Language changed" : "Lingua modificata", @@ -102,8 +98,8 @@ OC.L10N.register( "TLS" : "TLS", "Security Warning" : "Avviso di sicurezza", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Sei connesso a %s tramite HTTP. Ti suggeriamo vivamente di configurare il tuo server per richiedere l'utilizzo del protocollo HTTPS al posto di HTTP.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "La cartella dei dati e i tuoi file sono probabilmente accessibili da Internet.\nIl file .htaccess non funziona. Ti consigliamo vivamente di configurare il server web in modo che la cartella dei dati non sia più accessibile o spostare la cartella fuori dalla radice del server web.", - "Read-Only config enabled" : "Config di sola lettura abilitata", + "Read-Only config enabled" : "Configurazione di sola lettura abilitata", + "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." : "La configurazione di sola lettura è stata abilitata. Ciò impedisce l'impostazione di alcune configurazioni tramite l'interfaccia web. Inoltre, i file devono essere resi scrivibili manualmente per ogni aggiornamento.", "Setup Warning" : "Avviso di configurazione", "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.", @@ -119,7 +115,6 @@ OC.L10N.register( "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Consigliamo vivamente di installare i pacchetti richiesti sul tuo sistema per supportare una delle localizzazioni seguenti: %s.", "URL generation in notification emails" : "Generazione di URL nelle email di notifica", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Se la tua installazione non si trova nella radice del dominio e utilizza il cron di sistema, potrebbero esserci problemi con la generazione degli URL. Per evitare questi problemi, imposta l'opzione \"overwritewebroot\" nel file config.php al percorso della radice del sito della tua installazione (Suggerito: \"%s\")", - "Connectivity Checks" : "Controlli di connettività", "No problems found" : "Nessun problema trovato", "Please double check the <a href='%s'>installation guides</a>." : "Leggi attentamente le <a href='%s'>guide d'installazione</a>.", "Last cron was executed at %s." : "L'ultimo cron è stato eseguito alle %s.", @@ -132,13 +127,13 @@ OC.L10N.register( "Allow users to share via link" : "Consenti agli utenti di condivere tramite collegamento", "Enforce password protection" : "Imponi la protezione con password", "Allow public uploads" : "Consenti caricamenti pubblici", + "Allow users to send mail notification for shared files" : "Consenti agli utenti di inviare email di notifica per i file condivisi", "Set default expiration date" : "Imposta data di scadenza predefinita", "Expire after " : "Scadenza dopo", "days" : "giorni", "Enforce expiration date" : "Forza la data di scadenza", "Allow resharing" : "Consenti la ri-condivisione", "Restrict users to only share with users in their groups" : "Limita gli utenti a condividere solo con gli utenti nei loro gruppi", - "Allow users to send mail notification for shared files" : "Consenti agli utenti di inviare email di notifica per i file condivisi", "Exclude groups from sharing" : "Escludi gruppi dalla condivisione", "These groups will still be able to receive shares, but not to initiate them." : "Questi gruppi saranno in grado di ricevere condivisioni, ma non iniziarle.", "Enforce HTTPS" : "Forza HTTPS", @@ -172,6 +167,7 @@ OC.L10N.register( "Documentation:" : "Documentazione:", "User Documentation" : "Documentazione utente", "Admin Documentation" : "Documentazione di amministrazione", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Questa applicazione non può essere installata perché le seguenti dipendenze non sono soddisfatte:", "Update to %s" : "Aggiornato a %s", "Enable only for specific groups" : "Abilita solo per gruppi specifici", "Uninstall App" : "Disinstalla applicazione", diff --git a/settings/l10n/it.json b/settings/l10n/it.json index 15429d9fec3..7211fe5a309 100644 --- a/settings/l10n/it.json +++ b/settings/l10n/it.json @@ -8,8 +8,6 @@ "Authentication error" : "Errore di autenticazione", "Your full name has been changed." : "Il tuo nome completo è stato cambiato.", "Unable to change full name" : "Impossibile cambiare il nome completo", - "Group already exists" : "Il gruppo esiste già", - "Unable to add group" : "Impossibile aggiungere il gruppo", "Files decrypted successfully" : "File decifrato correttamente", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Impossibile decifrare i tuoi file, controlla il file owncloud.log o chiedi al tuo amministratore", "Couldn't decrypt your files, check your password and try again" : "Impossibile decifrare i tuoi file, controlla la password e prova ancora", @@ -18,8 +16,6 @@ "Couldn't remove app." : "Impossibile rimuovere l'applicazione.", "Email saved" : "Email salvata", "Invalid email" : "Email non valida", - "Unable to delete group" : "Impossibile eliminare il gruppo", - "Unable to delete user" : "Impossibile eliminare l'utente", "Backups restored successfully" : "Copie di sicurezza ripristinate correttamente", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Impossibile ripristinare le chiavi di cifratura, controlla il file owncloud.log o chiedi al tuo amministratore", "Language changed" : "Lingua modificata", @@ -100,8 +96,8 @@ "TLS" : "TLS", "Security Warning" : "Avviso di sicurezza", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Sei connesso a %s tramite HTTP. Ti suggeriamo vivamente di configurare il tuo server per richiedere l'utilizzo del protocollo HTTPS al posto di HTTP.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "La cartella dei dati e i tuoi file sono probabilmente accessibili da Internet.\nIl file .htaccess non funziona. Ti consigliamo vivamente di configurare il server web in modo che la cartella dei dati non sia più accessibile o spostare la cartella fuori dalla radice del server web.", - "Read-Only config enabled" : "Config di sola lettura abilitata", + "Read-Only config enabled" : "Configurazione di sola lettura abilitata", + "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." : "La configurazione di sola lettura è stata abilitata. Ciò impedisce l'impostazione di alcune configurazioni tramite l'interfaccia web. Inoltre, i file devono essere resi scrivibili manualmente per ogni aggiornamento.", "Setup Warning" : "Avviso di configurazione", "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.", @@ -117,7 +113,6 @@ "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Consigliamo vivamente di installare i pacchetti richiesti sul tuo sistema per supportare una delle localizzazioni seguenti: %s.", "URL generation in notification emails" : "Generazione di URL nelle email di notifica", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Se la tua installazione non si trova nella radice del dominio e utilizza il cron di sistema, potrebbero esserci problemi con la generazione degli URL. Per evitare questi problemi, imposta l'opzione \"overwritewebroot\" nel file config.php al percorso della radice del sito della tua installazione (Suggerito: \"%s\")", - "Connectivity Checks" : "Controlli di connettività", "No problems found" : "Nessun problema trovato", "Please double check the <a href='%s'>installation guides</a>." : "Leggi attentamente le <a href='%s'>guide d'installazione</a>.", "Last cron was executed at %s." : "L'ultimo cron è stato eseguito alle %s.", @@ -130,13 +125,13 @@ "Allow users to share via link" : "Consenti agli utenti di condivere tramite collegamento", "Enforce password protection" : "Imponi la protezione con password", "Allow public uploads" : "Consenti caricamenti pubblici", + "Allow users to send mail notification for shared files" : "Consenti agli utenti di inviare email di notifica per i file condivisi", "Set default expiration date" : "Imposta data di scadenza predefinita", "Expire after " : "Scadenza dopo", "days" : "giorni", "Enforce expiration date" : "Forza la data di scadenza", "Allow resharing" : "Consenti la ri-condivisione", "Restrict users to only share with users in their groups" : "Limita gli utenti a condividere solo con gli utenti nei loro gruppi", - "Allow users to send mail notification for shared files" : "Consenti agli utenti di inviare email di notifica per i file condivisi", "Exclude groups from sharing" : "Escludi gruppi dalla condivisione", "These groups will still be able to receive shares, but not to initiate them." : "Questi gruppi saranno in grado di ricevere condivisioni, ma non iniziarle.", "Enforce HTTPS" : "Forza HTTPS", @@ -170,6 +165,7 @@ "Documentation:" : "Documentazione:", "User Documentation" : "Documentazione utente", "Admin Documentation" : "Documentazione di amministrazione", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Questa applicazione non può essere installata perché le seguenti dipendenze non sono soddisfatte:", "Update to %s" : "Aggiornato a %s", "Enable only for specific groups" : "Abilita solo per gruppi specifici", "Uninstall App" : "Disinstalla applicazione", diff --git a/settings/l10n/ja.js b/settings/l10n/ja.js index 572ae5511c8..e8e94deeaa1 100644 --- a/settings/l10n/ja.js +++ b/settings/l10n/ja.js @@ -10,8 +10,6 @@ OC.L10N.register( "Authentication error" : "認証エラー", "Your full name has been changed." : "名前を変更しました。", "Unable to change full name" : "名前を変更できません", - "Group already exists" : "グループはすでに存在します", - "Unable to add group" : "グループを追加できません", "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" : "ファイルを復号化することができませんでした。パスワードを確認のうえ再試行してください。", @@ -20,8 +18,6 @@ OC.L10N.register( "Couldn't remove app." : "アプリが削除できませんでした。", "Email saved" : "メールアドレスを保存しました", "Invalid email" : "無効なメールアドレス", - "Unable to delete group" : "グループを削除できません", - "Unable to delete user" : "ユーザーを削除できません", "Backups restored successfully" : "バックアップの復元に成功しました", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "暗号化キーを復元できませんでした。owncloud.logを確認するか、管理者に問い合わせてください。", "Language changed" : "言語が変更されました", @@ -39,12 +35,17 @@ OC.L10N.register( "Enabled" : "有効", "Not enabled" : "無効", "Recommended" : "推奨", + "Group already exists." : "グループは既に存在しています", + "Unable to add group." : "グループを追加できません", + "Unable to delete group." : "グループを削除できません", "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." : "ユーザーメールを設定して初めて、テストメールを送信することができるようになります。", + "Unable to create user." : "ユーザを追加できません", + "Unable to delete user." : "ユーザを削除できません", "Are you really sure you want add \"{domain}\" as trusted domain?" : "\"{domain}\" を信頼するドメインに追加してもよろしいでしょうか?", "Add trusted domain" : "信頼するドメイン名に追加", "Sending..." : "送信中…", @@ -102,7 +103,8 @@ OC.L10N.register( "TLS" : "TLS", "Security Warning" : "セキュリティ警告", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "HTTP経由で %s にアクセスしています。HTTPSを使用するようサーバーを設定することを強くおすすめします。", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "データディレクトリとファイルがインターネットからアクセス可能になっている可能性があります。.htaccessファイルが機能していません。データディレクトリにアクセスできないようWebサーバーを設定するか、データディレクトリをWebサーバーのドキュメントルートから移動するよう強く提案します。", + "Read-Only config enabled" : "\"config\"は読み取り専用になってます", + "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." : "\"config\"は読み取り専用になってます。そのためにWEBインターフェースで設定できません可能性があります。さらに、更新時に\"config\"ファイルを書き込み権限を与えることが必要", "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 等のキャッシュ/アクセラレータが原因かもしれません。", @@ -115,9 +117,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 \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "もし、URLがドメインのルート(/)で終わっていない場合で、システムのcronを利用している場合、URLの生成に問題が発生します。その場合は、config.php ファイルの中の \"overwritewebroot\" オプションをインストールしたパスに設定してください。(推奨: \"%s\")", - "Connectivity Checks" : "接続の確認", + "Configuration Checks" : "設定を確認", "No problems found" : "問題は見つかりませんでした", "Please double check the <a href='%s'>installation guides</a>." : "<a href='%s'>インストールガイド</a>をよく確認してください。", "Last cron was executed at %s." : "直近では%sにcronが実行されました。", @@ -130,13 +133,13 @@ OC.L10N.register( "Allow users to share via link" : "URLリンクで共有を許可する", "Enforce password protection" : "常にパスワード保護を有効にする", "Allow public uploads" : "パブリックなアップロードを許可する", + "Allow users to send mail notification for shared files" : "共有ファイルに関するメール通知の送信をユーザーに許可する", "Set default expiration date" : "有効期限のデフォルト値を設定", "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" : "共有ファイルに関するメール通知の送信をユーザーに許可する", "Exclude groups from sharing" : "共有可能なグループから除外", "These groups will still be able to receive shares, but not to initiate them." : "このグループでは、フォルダー共有を開始することはできませんが、共有されたフォルダーを参照することはできます。", "Enforce HTTPS" : "常にHTTPSを使用する", @@ -170,6 +173,7 @@ 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" : "アプリをアンインストール", @@ -219,6 +223,7 @@ OC.L10N.register( "Create" : "作成", "Admin Recovery Password" : "管理者リカバリパスワード", "Enter the recovery password in order to recover the users files during password change" : "パスワード変更時のユーザーのファイルを回復するため、リカバリパスワードを入力してください", + "Search Users" : "ユーザーを検索", "Add Group" : "グループを追加", "Group" : "グループ", "Everyone" : "すべてのユーザー", diff --git a/settings/l10n/ja.json b/settings/l10n/ja.json index 37048e345ac..a49787c543d 100644 --- a/settings/l10n/ja.json +++ b/settings/l10n/ja.json @@ -8,8 +8,6 @@ "Authentication error" : "認証エラー", "Your full name has been changed." : "名前を変更しました。", "Unable to change full name" : "名前を変更できません", - "Group already exists" : "グループはすでに存在します", - "Unable to add group" : "グループを追加できません", "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" : "ファイルを復号化することができませんでした。パスワードを確認のうえ再試行してください。", @@ -18,8 +16,6 @@ "Couldn't remove app." : "アプリが削除できませんでした。", "Email saved" : "メールアドレスを保存しました", "Invalid email" : "無効なメールアドレス", - "Unable to delete group" : "グループを削除できません", - "Unable to delete user" : "ユーザーを削除できません", "Backups restored successfully" : "バックアップの復元に成功しました", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "暗号化キーを復元できませんでした。owncloud.logを確認するか、管理者に問い合わせてください。", "Language changed" : "言語が変更されました", @@ -37,12 +33,17 @@ "Enabled" : "有効", "Not enabled" : "無効", "Recommended" : "推奨", + "Group already exists." : "グループは既に存在しています", + "Unable to add group." : "グループを追加できません", + "Unable to delete group." : "グループを削除できません", "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." : "ユーザーメールを設定して初めて、テストメールを送信することができるようになります。", + "Unable to create user." : "ユーザを追加できません", + "Unable to delete user." : "ユーザを削除できません", "Are you really sure you want add \"{domain}\" as trusted domain?" : "\"{domain}\" を信頼するドメインに追加してもよろしいでしょうか?", "Add trusted domain" : "信頼するドメイン名に追加", "Sending..." : "送信中…", @@ -100,7 +101,8 @@ "TLS" : "TLS", "Security Warning" : "セキュリティ警告", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "HTTP経由で %s にアクセスしています。HTTPSを使用するようサーバーを設定することを強くおすすめします。", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "データディレクトリとファイルがインターネットからアクセス可能になっている可能性があります。.htaccessファイルが機能していません。データディレクトリにアクセスできないようWebサーバーを設定するか、データディレクトリをWebサーバーのドキュメントルートから移動するよう強く提案します。", + "Read-Only config enabled" : "\"config\"は読み取り専用になってます", + "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." : "\"config\"は読み取り専用になってます。そのためにWEBインターフェースで設定できません可能性があります。さらに、更新時に\"config\"ファイルを書き込み権限を与えることが必要", "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 等のキャッシュ/アクセラレータが原因かもしれません。", @@ -113,9 +115,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 \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "もし、URLがドメインのルート(/)で終わっていない場合で、システムのcronを利用している場合、URLの生成に問題が発生します。その場合は、config.php ファイルの中の \"overwritewebroot\" オプションをインストールしたパスに設定してください。(推奨: \"%s\")", - "Connectivity Checks" : "接続の確認", + "Configuration Checks" : "設定を確認", "No problems found" : "問題は見つかりませんでした", "Please double check the <a href='%s'>installation guides</a>." : "<a href='%s'>インストールガイド</a>をよく確認してください。", "Last cron was executed at %s." : "直近では%sにcronが実行されました。", @@ -128,13 +131,13 @@ "Allow users to share via link" : "URLリンクで共有を許可する", "Enforce password protection" : "常にパスワード保護を有効にする", "Allow public uploads" : "パブリックなアップロードを許可する", + "Allow users to send mail notification for shared files" : "共有ファイルに関するメール通知の送信をユーザーに許可する", "Set default expiration date" : "有効期限のデフォルト値を設定", "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" : "共有ファイルに関するメール通知の送信をユーザーに許可する", "Exclude groups from sharing" : "共有可能なグループから除外", "These groups will still be able to receive shares, but not to initiate them." : "このグループでは、フォルダー共有を開始することはできませんが、共有されたフォルダーを参照することはできます。", "Enforce HTTPS" : "常にHTTPSを使用する", @@ -168,6 +171,7 @@ "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" : "アプリをアンインストール", @@ -217,6 +221,7 @@ "Create" : "作成", "Admin Recovery Password" : "管理者リカバリパスワード", "Enter the recovery password in order to recover the users files during password change" : "パスワード変更時のユーザーのファイルを回復するため、リカバリパスワードを入力してください", + "Search Users" : "ユーザーを検索", "Add Group" : "グループを追加", "Group" : "グループ", "Everyone" : "すべてのユーザー", diff --git a/settings/l10n/ka_GE.js b/settings/l10n/ka_GE.js index 8851b231382..57299f31a03 100644 --- a/settings/l10n/ka_GE.js +++ b/settings/l10n/ka_GE.js @@ -6,12 +6,8 @@ OC.L10N.register( "Security" : "უსაფრთხოება", "Log" : "ლოგი", "Authentication error" : "ავთენტიფიკაციის შეცდომა", - "Group already exists" : "ჯგუფი უკვე არსებობს", - "Unable to add group" : "ჯგუფის დამატება ვერ მოხერხდა", "Email saved" : "იმეილი შენახულია", "Invalid email" : "არასწორი იმეილი", - "Unable to delete group" : "ჯგუფის წაშლა ვერ მოხერხდა", - "Unable to delete user" : "მომხმარებლის წაშლა ვერ მოხერხდა", "Language changed" : "ენა შეცვლილია", "Invalid request" : "არასწორი მოთხოვნა", "Admins can't remove themself from the admin group" : "ადმინისტრატორებს არ შეუძლიათ საკუთარი თავის წაშლა ადმინ ჯგუფიდან", diff --git a/settings/l10n/ka_GE.json b/settings/l10n/ka_GE.json index 0072516dfd8..efee60ffe9f 100644 --- a/settings/l10n/ka_GE.json +++ b/settings/l10n/ka_GE.json @@ -4,12 +4,8 @@ "Security" : "უსაფრთხოება", "Log" : "ლოგი", "Authentication error" : "ავთენტიფიკაციის შეცდომა", - "Group already exists" : "ჯგუფი უკვე არსებობს", - "Unable to add group" : "ჯგუფის დამატება ვერ მოხერხდა", "Email saved" : "იმეილი შენახულია", "Invalid email" : "არასწორი იმეილი", - "Unable to delete group" : "ჯგუფის წაშლა ვერ მოხერხდა", - "Unable to delete user" : "მომხმარებლის წაშლა ვერ მოხერხდა", "Language changed" : "ენა შეცვლილია", "Invalid request" : "არასწორი მოთხოვნა", "Admins can't remove themself from the admin group" : "ადმინისტრატორებს არ შეუძლიათ საკუთარი თავის წაშლა ადმინ ჯგუფიდან", diff --git a/settings/l10n/km.js b/settings/l10n/km.js index f19faf4d11b..213c4e4300b 100644 --- a/settings/l10n/km.js +++ b/settings/l10n/km.js @@ -7,12 +7,8 @@ OC.L10N.register( "Email Server" : "ម៉ាស៊ីនបម្រើអ៊ីមែល", "Log" : "Log", "Authentication error" : "កំហុសការផ្ទៀងផ្ទាត់ភាពត្រឹមត្រូវ", - "Group already exists" : "មានក្រុមនេះរួចហើយ", - "Unable to add group" : "មិនអាចបន្ថែមក្រុម", "Email saved" : "បានរក្សាទុកអ៊ីមែល", "Invalid email" : "អ៊ីមែលមិនត្រឹមត្រូវ", - "Unable to delete group" : "មិនអាចលុបក្រុមបាន", - "Unable to delete user" : "មិនអាចលុបអ្នកប្រើបាន", "Language changed" : "បានប្ដូរភាសា", "Invalid request" : "សំណើមិនត្រឹមត្រូវ", "Admins can't remove themself from the admin group" : "អ្នកគ្រប់គ្រងមិនអាចលុបខ្លួនឯងចេញពីក្រុមអ្នកគ្រប់គ្រងឡើយ", diff --git a/settings/l10n/km.json b/settings/l10n/km.json index b0d0d2a56e4..f79ade7853e 100644 --- a/settings/l10n/km.json +++ b/settings/l10n/km.json @@ -5,12 +5,8 @@ "Email Server" : "ម៉ាស៊ីនបម្រើអ៊ីមែល", "Log" : "Log", "Authentication error" : "កំហុសការផ្ទៀងផ្ទាត់ភាពត្រឹមត្រូវ", - "Group already exists" : "មានក្រុមនេះរួចហើយ", - "Unable to add group" : "មិនអាចបន្ថែមក្រុម", "Email saved" : "បានរក្សាទុកអ៊ីមែល", "Invalid email" : "អ៊ីមែលមិនត្រឹមត្រូវ", - "Unable to delete group" : "មិនអាចលុបក្រុមបាន", - "Unable to delete user" : "មិនអាចលុបអ្នកប្រើបាន", "Language changed" : "បានប្ដូរភាសា", "Invalid request" : "សំណើមិនត្រឹមត្រូវ", "Admins can't remove themself from the admin group" : "អ្នកគ្រប់គ្រងមិនអាចលុបខ្លួនឯងចេញពីក្រុមអ្នកគ្រប់គ្រងឡើយ", diff --git a/settings/l10n/ko.js b/settings/l10n/ko.js index e55c4c75dab..704f6d0ba36 100644 --- a/settings/l10n/ko.js +++ b/settings/l10n/ko.js @@ -9,13 +9,9 @@ OC.L10N.register( "Authentication error" : "인증 오류", "Your full name has been changed." : "전체 이름이 변경되었습니다.", "Unable to change full name" : "전체 이름을 변경할 수 없음", - "Group already exists" : "그룹이 이미 존재함", - "Unable to add group" : "그룹을 추가할 수 없음", "Couldn't remove app." : "앱을 제거할수 없습니다.", "Email saved" : "이메일 저장됨", "Invalid email" : "잘못된 이메일 주소", - "Unable to delete group" : "그룹을 삭제할 수 없음", - "Unable to delete user" : "사용자를 삭제할 수 없음.", "Backups restored successfully" : "성공적으로 백업을 복원했습니다", "Language changed" : "언어가 변경됨", "Invalid request" : "잘못된 요청", @@ -79,7 +75,6 @@ OC.L10N.register( "TLS" : "TLS", "Security Warning" : "보안 경고", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "%s에 HTTP로 접근하고 있습니다. 서버에서 HTTPS를 사용하도록 설정하는 것을 추천합니다.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "데이터 디렉터리와 파일을 인터넷에서 접근할 수도 있습니다. .htaccess 파일이 작동하지 않습니다. 웹 서버 설정을 변경하여 데이터 디렉터리에 접근할 수 없도록 하거나, 웹 서버 문서 경로 외부로 데이터 디렉터리를 옮기십시오.", "Setup Warning" : "설정 경고", "Database Performance Info" : "데이터베이스 성능 정보", "Module 'fileinfo' missing" : "모듈 'fileinfo'가 없음", diff --git a/settings/l10n/ko.json b/settings/l10n/ko.json index 2415c30316d..5c1ce3b839a 100644 --- a/settings/l10n/ko.json +++ b/settings/l10n/ko.json @@ -7,13 +7,9 @@ "Authentication error" : "인증 오류", "Your full name has been changed." : "전체 이름이 변경되었습니다.", "Unable to change full name" : "전체 이름을 변경할 수 없음", - "Group already exists" : "그룹이 이미 존재함", - "Unable to add group" : "그룹을 추가할 수 없음", "Couldn't remove app." : "앱을 제거할수 없습니다.", "Email saved" : "이메일 저장됨", "Invalid email" : "잘못된 이메일 주소", - "Unable to delete group" : "그룹을 삭제할 수 없음", - "Unable to delete user" : "사용자를 삭제할 수 없음.", "Backups restored successfully" : "성공적으로 백업을 복원했습니다", "Language changed" : "언어가 변경됨", "Invalid request" : "잘못된 요청", @@ -77,7 +73,6 @@ "TLS" : "TLS", "Security Warning" : "보안 경고", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "%s에 HTTP로 접근하고 있습니다. 서버에서 HTTPS를 사용하도록 설정하는 것을 추천합니다.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "데이터 디렉터리와 파일을 인터넷에서 접근할 수도 있습니다. .htaccess 파일이 작동하지 않습니다. 웹 서버 설정을 변경하여 데이터 디렉터리에 접근할 수 없도록 하거나, 웹 서버 문서 경로 외부로 데이터 디렉터리를 옮기십시오.", "Setup Warning" : "설정 경고", "Database Performance Info" : "데이터베이스 성능 정보", "Module 'fileinfo' missing" : "모듈 'fileinfo'가 없음", diff --git a/settings/l10n/lb.js b/settings/l10n/lb.js index 9cb363460b3..dc0991f7bab 100644 --- a/settings/l10n/lb.js +++ b/settings/l10n/lb.js @@ -4,12 +4,8 @@ OC.L10N.register( "Cron" : "Cron", "Log" : "Log", "Authentication error" : "Authentifikatioun's Fehler", - "Group already exists" : "Group existeiert schon.", - "Unable to add group" : "Onmeiglech Grupp beizefügen.", "Email saved" : "E-mail gespäichert", "Invalid email" : "Ongülteg e-mail", - "Unable to delete group" : "Onmeiglech d'Grup ze läschen.", - "Unable to delete user" : "Onmeiglech User zu läschen.", "Language changed" : "Sprooch huet geännert", "Invalid request" : "Ongülteg Requête", "Admins can't remove themself from the admin group" : "Admins kennen sech selwer net aus enger Admin Group läschen.", diff --git a/settings/l10n/lb.json b/settings/l10n/lb.json index 0fecc04be68..e1fbc48c2ec 100644 --- a/settings/l10n/lb.json +++ b/settings/l10n/lb.json @@ -2,12 +2,8 @@ "Cron" : "Cron", "Log" : "Log", "Authentication error" : "Authentifikatioun's Fehler", - "Group already exists" : "Group existeiert schon.", - "Unable to add group" : "Onmeiglech Grupp beizefügen.", "Email saved" : "E-mail gespäichert", "Invalid email" : "Ongülteg e-mail", - "Unable to delete group" : "Onmeiglech d'Grup ze läschen.", - "Unable to delete user" : "Onmeiglech User zu läschen.", "Language changed" : "Sprooch huet geännert", "Invalid request" : "Ongülteg Requête", "Admins can't remove themself from the admin group" : "Admins kennen sech selwer net aus enger Admin Group läschen.", diff --git a/settings/l10n/lt_LT.js b/settings/l10n/lt_LT.js index 4211d857b86..e2d2a588126 100644 --- a/settings/l10n/lt_LT.js +++ b/settings/l10n/lt_LT.js @@ -6,12 +6,8 @@ OC.L10N.register( "Security" : "Saugumas", "Log" : "Žurnalas", "Authentication error" : "Autentikacijos klaida", - "Group already exists" : "Grupė jau egzistuoja", - "Unable to add group" : "Nepavyko pridėti grupės", "Email saved" : "El. paštas išsaugotas", "Invalid email" : "Netinkamas el. paštas", - "Unable to delete group" : "Nepavyko ištrinti grupės", - "Unable to delete user" : "Nepavyko ištrinti vartotojo", "Language changed" : "Kalba pakeista", "Invalid request" : "Klaidinga užklausa", "Admins can't remove themself from the admin group" : "Administratoriai negali pašalinti savęs iš administratorių grupės", @@ -53,7 +49,6 @@ OC.L10N.register( "None" : "Nieko", "Login" : "Prisijungti", "Security Warning" : "Saugumo pranešimas", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Jūsų duomenų katalogas ir Jūsų failai turbūt yra pasiekiami per internetą. Failas .htaccess neveikia. Mes labai rekomenduojame sukonfigūruoti serverį taip, kad katalogas nebūtų daugiau pasiekiamas, arba iškelkite duomenis kitur iš webserverio šakninio aplanko.", "Setup Warning" : "Nustatyti perspėjimą", "Module 'fileinfo' missing" : "Trūksta 'fileinfo' modulio", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Trūksta PHP modulio „fileinfo“. Labai rekomenduojame įjungti šį modulį, kad gauti geriausius rezultatus nustatant mime-tipą.", diff --git a/settings/l10n/lt_LT.json b/settings/l10n/lt_LT.json index 98d570d9420..438527ec0bd 100644 --- a/settings/l10n/lt_LT.json +++ b/settings/l10n/lt_LT.json @@ -4,12 +4,8 @@ "Security" : "Saugumas", "Log" : "Žurnalas", "Authentication error" : "Autentikacijos klaida", - "Group already exists" : "Grupė jau egzistuoja", - "Unable to add group" : "Nepavyko pridėti grupės", "Email saved" : "El. paštas išsaugotas", "Invalid email" : "Netinkamas el. paštas", - "Unable to delete group" : "Nepavyko ištrinti grupės", - "Unable to delete user" : "Nepavyko ištrinti vartotojo", "Language changed" : "Kalba pakeista", "Invalid request" : "Klaidinga užklausa", "Admins can't remove themself from the admin group" : "Administratoriai negali pašalinti savęs iš administratorių grupės", @@ -51,7 +47,6 @@ "None" : "Nieko", "Login" : "Prisijungti", "Security Warning" : "Saugumo pranešimas", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Jūsų duomenų katalogas ir Jūsų failai turbūt yra pasiekiami per internetą. Failas .htaccess neveikia. Mes labai rekomenduojame sukonfigūruoti serverį taip, kad katalogas nebūtų daugiau pasiekiamas, arba iškelkite duomenis kitur iš webserverio šakninio aplanko.", "Setup Warning" : "Nustatyti perspėjimą", "Module 'fileinfo' missing" : "Trūksta 'fileinfo' modulio", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Trūksta PHP modulio „fileinfo“. Labai rekomenduojame įjungti šį modulį, kad gauti geriausius rezultatus nustatant mime-tipą.", diff --git a/settings/l10n/lv.js b/settings/l10n/lv.js index e1190cb7953..8236fe2ea2c 100644 --- a/settings/l10n/lv.js +++ b/settings/l10n/lv.js @@ -6,12 +6,8 @@ OC.L10N.register( "Security" : "Drošība", "Log" : "Žurnāls", "Authentication error" : "Autentifikācijas kļūda", - "Group already exists" : "Grupa jau eksistē", - "Unable to add group" : "Nevar pievienot grupu", "Email saved" : "E-pasts tika saglabāts", "Invalid email" : "Nederīgs epasts", - "Unable to delete group" : "Nevar izdzēst grupu", - "Unable to delete user" : "Nevar izdzēst lietotāju", "Language changed" : "Valoda tika nomainīta", "Invalid request" : "Nederīgs vaicājums", "Admins can't remove themself from the admin group" : "Administratori nevar izņemt paši sevi no administratoru grupas", @@ -41,7 +37,6 @@ OC.L10N.register( "None" : "Nav", "Login" : "Ierakstīties", "Security Warning" : "Brīdinājums par drošību", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Jūsu datu direktorija un faili visticamāk ir pieejami no interneta. .htaccess fails nedarbojas. Ir rekomendēts konfigurēt serveri tā lai jūsu datu direktorija nav lasāma vai pārvietot to ārpus tīmekļa servera dokumentu mapes.", "Setup Warning" : "Iestatīšanas brīdinājums", "Module 'fileinfo' missing" : "Trūkst modulis “fileinfo”", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Trūkst PHP modulis “fileinfo”. Mēs iesakām to aktivēt, lai pēc iespējas labāk noteiktu mime tipus.", diff --git a/settings/l10n/lv.json b/settings/l10n/lv.json index 35da6955cc1..6715e6f190d 100644 --- a/settings/l10n/lv.json +++ b/settings/l10n/lv.json @@ -4,12 +4,8 @@ "Security" : "Drošība", "Log" : "Žurnāls", "Authentication error" : "Autentifikācijas kļūda", - "Group already exists" : "Grupa jau eksistē", - "Unable to add group" : "Nevar pievienot grupu", "Email saved" : "E-pasts tika saglabāts", "Invalid email" : "Nederīgs epasts", - "Unable to delete group" : "Nevar izdzēst grupu", - "Unable to delete user" : "Nevar izdzēst lietotāju", "Language changed" : "Valoda tika nomainīta", "Invalid request" : "Nederīgs vaicājums", "Admins can't remove themself from the admin group" : "Administratori nevar izņemt paši sevi no administratoru grupas", @@ -39,7 +35,6 @@ "None" : "Nav", "Login" : "Ierakstīties", "Security Warning" : "Brīdinājums par drošību", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Jūsu datu direktorija un faili visticamāk ir pieejami no interneta. .htaccess fails nedarbojas. Ir rekomendēts konfigurēt serveri tā lai jūsu datu direktorija nav lasāma vai pārvietot to ārpus tīmekļa servera dokumentu mapes.", "Setup Warning" : "Iestatīšanas brīdinājums", "Module 'fileinfo' missing" : "Trūkst modulis “fileinfo”", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Trūkst PHP modulis “fileinfo”. Mēs iesakām to aktivēt, lai pēc iespējas labāk noteiktu mime tipus.", diff --git a/settings/l10n/mk.js b/settings/l10n/mk.js index 2f857a61b33..89a5fd6f434 100644 --- a/settings/l10n/mk.js +++ b/settings/l10n/mk.js @@ -9,14 +9,10 @@ OC.L10N.register( "Authentication error" : "Грешка во автентикација", "Your full name has been changed." : "Вашето целосно име е променето.", "Unable to change full name" : "Не можам да го променам целото име", - "Group already exists" : "Групата веќе постои", - "Unable to add group" : "Неможе да додадам група", "Files decrypted successfully" : "Датотектие се успешно декриптирани", "Encryption keys deleted permanently" : "Енкрипциските клучеви се трајно избришани", "Email saved" : "Електронската пошта е снимена", "Invalid email" : "Неисправна електронска пошта", - "Unable to delete group" : "Неможе да избришам група", - "Unable to delete user" : "Неможам да избришам корисник", "Backups restored successfully" : "Бекапите се успешно реставрирани", "Language changed" : "Јазикот е сменет", "Invalid request" : "Неправилно барање", diff --git a/settings/l10n/mk.json b/settings/l10n/mk.json index 44cfb40a7b4..791746d96a6 100644 --- a/settings/l10n/mk.json +++ b/settings/l10n/mk.json @@ -7,14 +7,10 @@ "Authentication error" : "Грешка во автентикација", "Your full name has been changed." : "Вашето целосно име е променето.", "Unable to change full name" : "Не можам да го променам целото име", - "Group already exists" : "Групата веќе постои", - "Unable to add group" : "Неможе да додадам група", "Files decrypted successfully" : "Датотектие се успешно декриптирани", "Encryption keys deleted permanently" : "Енкрипциските клучеви се трајно избришани", "Email saved" : "Електронската пошта е снимена", "Invalid email" : "Неисправна електронска пошта", - "Unable to delete group" : "Неможе да избришам група", - "Unable to delete user" : "Неможам да избришам корисник", "Backups restored successfully" : "Бекапите се успешно реставрирани", "Language changed" : "Јазикот е сменет", "Invalid request" : "Неправилно барање", diff --git a/settings/l10n/nb_NO.js b/settings/l10n/nb_NO.js index cf73debd87d..f98a896698f 100644 --- a/settings/l10n/nb_NO.js +++ b/settings/l10n/nb_NO.js @@ -9,8 +9,6 @@ OC.L10N.register( "Authentication error" : "Autentiseringsfeil", "Your full name has been changed." : "Ditt fulle navn er blitt endret.", "Unable to change full name" : "Klarte ikke å endre fullt navn", - "Group already exists" : "Gruppen finnes allerede", - "Unable to add group" : "Kan ikke legge til gruppe", "Files decrypted successfully" : "Dekryptering av filer vellykket", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Kunne ikke dekryptere filene dine. Sjekk owncloud.log eller spør administratoren", "Couldn't decrypt your files, check your password and try again" : "Kunne ikke dekryptere filene dine. Sjekk passordet ditt og prøv igjen", @@ -19,8 +17,6 @@ OC.L10N.register( "Couldn't remove app." : "Klarte ikke å fjerne app.", "Email saved" : "Epost lagret", "Invalid email" : "Ugyldig epost", - "Unable to delete group" : "Kan ikke slette gruppe", - "Unable to delete user" : "Kan ikke slette bruker", "Backups restored successfully" : "Vellykket gjenoppretting fra sikkerhetskopier", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Kunne ikke gjenopprette krypteringsnøklene dine. Sjekk owncloud.log eller spør administratoren", "Language changed" : "Språk endret", @@ -96,7 +92,6 @@ OC.L10N.register( "TLS" : "TLS", "Security Warning" : "Sikkerhetsadvarsel", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Du aksesserer %s via HTTP. Vi anbefaler på det sterkeste at du konfigurerer serveren til å kreve bruk av HTTPS i stedet.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Datamappen og filene dine er sannsynligvis tilgjengelig fra Internett fordi .htaccess-filen ikke fungerer. Vi anbefaler på det sterkeste at du konfigurerer web-serveren din slik at datamappen ikke lenger er tilgjengelig eller at du flytter datamappen ut av web-serverens dokument-rotmappe.", "Setup Warning" : "Installasjonsadvarsel", "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.", @@ -123,13 +118,13 @@ OC.L10N.register( "Allow users to share via link" : "Tillat brukere å dele via lenke", "Enforce password protection" : "Tving passordbeskyttelse", "Allow public uploads" : "Tillat offentlig opplasting", + "Allow users to send mail notification for shared files" : "Tlllat at brukere sender e-postvarsler for delte filer", "Set default expiration date" : "Sett standard utløpsdato", "Expire after " : "Utløper etter", "days" : "dager", "Enforce expiration date" : "Tving utløpsdato", "Allow resharing" : "TIllat videre deling", "Restrict users to only share with users in their groups" : "Begrens brukere til kun å dele med brukere i deres grupper", - "Allow users to send mail notification for shared files" : "Tlllat at brukere sender e-postvarsler for delte filer", "Exclude groups from sharing" : "Utelukk grupper fra deling", "These groups will still be able to receive shares, but not to initiate them." : "Disse gruppene vil fremdeles kunne motta delinger men ikke lage dem.", "Enforce HTTPS" : "Tving HTTPS", diff --git a/settings/l10n/nb_NO.json b/settings/l10n/nb_NO.json index 0c4614c1cfa..e890981c7b6 100644 --- a/settings/l10n/nb_NO.json +++ b/settings/l10n/nb_NO.json @@ -7,8 +7,6 @@ "Authentication error" : "Autentiseringsfeil", "Your full name has been changed." : "Ditt fulle navn er blitt endret.", "Unable to change full name" : "Klarte ikke å endre fullt navn", - "Group already exists" : "Gruppen finnes allerede", - "Unable to add group" : "Kan ikke legge til gruppe", "Files decrypted successfully" : "Dekryptering av filer vellykket", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Kunne ikke dekryptere filene dine. Sjekk owncloud.log eller spør administratoren", "Couldn't decrypt your files, check your password and try again" : "Kunne ikke dekryptere filene dine. Sjekk passordet ditt og prøv igjen", @@ -17,8 +15,6 @@ "Couldn't remove app." : "Klarte ikke å fjerne app.", "Email saved" : "Epost lagret", "Invalid email" : "Ugyldig epost", - "Unable to delete group" : "Kan ikke slette gruppe", - "Unable to delete user" : "Kan ikke slette bruker", "Backups restored successfully" : "Vellykket gjenoppretting fra sikkerhetskopier", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Kunne ikke gjenopprette krypteringsnøklene dine. Sjekk owncloud.log eller spør administratoren", "Language changed" : "Språk endret", @@ -94,7 +90,6 @@ "TLS" : "TLS", "Security Warning" : "Sikkerhetsadvarsel", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Du aksesserer %s via HTTP. Vi anbefaler på det sterkeste at du konfigurerer serveren til å kreve bruk av HTTPS i stedet.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Datamappen og filene dine er sannsynligvis tilgjengelig fra Internett fordi .htaccess-filen ikke fungerer. Vi anbefaler på det sterkeste at du konfigurerer web-serveren din slik at datamappen ikke lenger er tilgjengelig eller at du flytter datamappen ut av web-serverens dokument-rotmappe.", "Setup Warning" : "Installasjonsadvarsel", "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.", @@ -121,13 +116,13 @@ "Allow users to share via link" : "Tillat brukere å dele via lenke", "Enforce password protection" : "Tving passordbeskyttelse", "Allow public uploads" : "Tillat offentlig opplasting", + "Allow users to send mail notification for shared files" : "Tlllat at brukere sender e-postvarsler for delte filer", "Set default expiration date" : "Sett standard utløpsdato", "Expire after " : "Utløper etter", "days" : "dager", "Enforce expiration date" : "Tving utløpsdato", "Allow resharing" : "TIllat videre deling", "Restrict users to only share with users in their groups" : "Begrens brukere til kun å dele med brukere i deres grupper", - "Allow users to send mail notification for shared files" : "Tlllat at brukere sender e-postvarsler for delte filer", "Exclude groups from sharing" : "Utelukk grupper fra deling", "These groups will still be able to receive shares, but not to initiate them." : "Disse gruppene vil fremdeles kunne motta delinger men ikke lage dem.", "Enforce HTTPS" : "Tving HTTPS", diff --git a/settings/l10n/nl.js b/settings/l10n/nl.js index ae5c35a3ee4..ab57c775c37 100644 --- a/settings/l10n/nl.js +++ b/settings/l10n/nl.js @@ -10,8 +10,6 @@ OC.L10N.register( "Authentication error" : "Authenticatie fout", "Your full name has been changed." : "Uw volledige naam is gewijzigd.", "Unable to change full name" : "Kan de volledige naam niet wijzigen", - "Group already exists" : "Groep bestaat al", - "Unable to add group" : "Niet in staat om groep toe te voegen", "Files decrypted successfully" : "Bestanden succesvol ontsleuteld", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Kon uw bestanden niet ontsleutelem. Controleer uw owncloud logs of vraag het uw beheerder", "Couldn't decrypt your files, check your password and try again" : "Kon uw bestanden niet ontsleutelen. Controleer uw wachtwoord en probeer het opnieuw", @@ -20,8 +18,6 @@ OC.L10N.register( "Couldn't remove app." : "Kon app niet verwijderen.", "Email saved" : "E-mail bewaard", "Invalid email" : "Ongeldige e-mail", - "Unable to delete group" : "Niet in staat om groep te verwijderen", - "Unable to delete user" : "Niet in staat om gebruiker te verwijderen", "Backups restored successfully" : "Backup succesvol terggezet", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Kon uw cryptosleutels niet herstellen. Controleer uw owncloud.log of neem contact op met uw beheerder", "Language changed" : "Taal aangepast", @@ -39,12 +35,17 @@ OC.L10N.register( "Enabled" : "Geactiveerd", "Not enabled" : "Niet ingeschakeld", "Recommended" : "Aanbevolen", + "Group already exists." : "Groep bestaat al.", + "Unable to add group." : "Kan groep niet toevoegen.", + "Unable to delete group." : "Kan groep niet verwijderen.", "Saved" : "Bewaard", "test email settings" : "test e-mailinstellingen", "If you received this email, the settings seem to be correct." : "Als u dit e-mailbericht ontvangt, lijken de instellingen juist.", "A problem occurred while sending the email. Please revise your settings." : "Er ontstond een probleem bij het versturen van de e-mail. Controleer uw instellingen.", "Email sent" : "E-mail verzonden", "You need to set your user email before being able to send test emails." : "U moet uw e-mailadres invoeren voordat u testberichten kunt versturen.", + "Unable to create user." : "Kan gebruiker niet aanmaken.", + "Unable to delete user." : "Kan gebruiker niet afvoeren.", "Are you really sure you want add \"{domain}\" as trusted domain?" : "Weet u zeker dat u \"{domain}\" als een vertrouwd domein wilt toevoegen?", "Add trusted domain" : "Vertrouwd domein toevoegen", "Sending..." : "Versturen...", @@ -102,7 +103,6 @@ OC.L10N.register( "TLS" : "TLS", "Security Warning" : "Beveiligingswaarschuwing", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "U bent met %s verbonden over HTTP. We adviseren met klem uw server zo te configureren dat alleen HTTPS kan worden gebruikt.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Uw data folder en uw bestanden zijn waarschijnlijk vanaf het internet bereikbaar. Het .htaccess-bestand werkt niet. We raden ten zeerste aan aan om uw webserver zodanig te configureren, dat de datamap niet bereikbaar is vanaf het internet of om uw datamap te verplaatsen naar een locatie buiten de document root van de webserver.", "Read-Only config enabled" : "Alleen-lezen config geactiveerd", "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." : "De Alleen-lezen config is geactiveerd. Dit voorkomt het via de webinterface wijzigen van verschillende instellingen. Bovendien moet het bestand voor elke aanpassing handmatig op beschrijfbaar worden ingesteld.", "Setup Warning" : "Instellingswaarschuwing", @@ -120,7 +120,7 @@ OC.L10N.register( "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "We adviseren met klem om de noodzakelijke pakketten op uw systeem te installeren om een van de volgende talen te ondersteunen: %s.", "URL generation in notification emails" : "URL genereren in notificatie e-mails", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Als uw installatie niet in de hoofddirectory van het domein staat, maar wel cron gebruikt, dan kunnen er problemen ontstaan bij het genereren van URL's. Om deze problemen te voorkomen zou u de \"overwritewebroot\" optie in config.php moeten instellen op het webroot pad van uw ownCloud (aanbevolen: \"%s\") ", - "Connectivity Checks" : "Verbindingscontroles", + "Configuration Checks" : "Configuratie Controles", "No problems found" : "Geen problemen gevonden", "Please double check the <a href='%s'>installation guides</a>." : "Controleer de <a href='%s'>installatiehandleiding</a> goed.", "Last cron was executed at %s." : "Laatst uitgevoerde cron op %s.", @@ -133,13 +133,14 @@ OC.L10N.register( "Allow users to share via link" : "Sta gebruikers toe om te delen via een link", "Enforce password protection" : "Dwing wachtwoordbeveiliging af", "Allow public uploads" : "Sta publieke uploads toe", + "Allow users to send mail notification for shared files" : "Sta gebruikers toe om e-mailnotificaties te versturen voor gedeelde bestanden", "Set default expiration date" : "Stel standaard vervaldatum in", "Expire after " : "Vervalt na", "days" : "dagen", "Enforce expiration date" : "Verplicht de vervaldatum", "Allow resharing" : "Toestaan opnieuw delen", "Restrict users to only share with users in their groups" : "Laat gebruikers alleen delen met andere gebruikers in hun groepen", - "Allow users to send mail notification for shared files" : "Sta gebruikers toe om e-mailnotificaties te versturen voor gedeelde bestanden", + "Allow users to send mail notification for shared files to other users" : "Sta gebruikers toe om e-mailnotificaties aan andere gebruikers te versturen voor gedeelde bestanden", "Exclude groups from sharing" : "Sluit groepen uit van delen", "These groups will still be able to receive shares, but not to initiate them." : "Deze groepen kunnen gedeelde mappen bestanden ontvangen, maar kunnen ze niet starten.", "Enforce HTTPS" : "Afdwingen HTTPS", @@ -173,6 +174,7 @@ OC.L10N.register( "Documentation:" : "Documentatie:", "User Documentation" : "Gebruikersdocumentatie", "Admin Documentation" : "Beheerdocumentatie", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Deze app kan niet worden geïnstalleerd omdat de volgende afhankelijkheden niet zijn ingevuld:", "Update to %s" : "Bijgewerkt naar %s", "Enable only for specific groups" : "Alleen voor bepaalde groepen activeren", "Uninstall App" : "De-installeren app", diff --git a/settings/l10n/nl.json b/settings/l10n/nl.json index 0be78a7c4d4..ef3582a425a 100644 --- a/settings/l10n/nl.json +++ b/settings/l10n/nl.json @@ -8,8 +8,6 @@ "Authentication error" : "Authenticatie fout", "Your full name has been changed." : "Uw volledige naam is gewijzigd.", "Unable to change full name" : "Kan de volledige naam niet wijzigen", - "Group already exists" : "Groep bestaat al", - "Unable to add group" : "Niet in staat om groep toe te voegen", "Files decrypted successfully" : "Bestanden succesvol ontsleuteld", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Kon uw bestanden niet ontsleutelem. Controleer uw owncloud logs of vraag het uw beheerder", "Couldn't decrypt your files, check your password and try again" : "Kon uw bestanden niet ontsleutelen. Controleer uw wachtwoord en probeer het opnieuw", @@ -18,8 +16,6 @@ "Couldn't remove app." : "Kon app niet verwijderen.", "Email saved" : "E-mail bewaard", "Invalid email" : "Ongeldige e-mail", - "Unable to delete group" : "Niet in staat om groep te verwijderen", - "Unable to delete user" : "Niet in staat om gebruiker te verwijderen", "Backups restored successfully" : "Backup succesvol terggezet", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Kon uw cryptosleutels niet herstellen. Controleer uw owncloud.log of neem contact op met uw beheerder", "Language changed" : "Taal aangepast", @@ -37,12 +33,17 @@ "Enabled" : "Geactiveerd", "Not enabled" : "Niet ingeschakeld", "Recommended" : "Aanbevolen", + "Group already exists." : "Groep bestaat al.", + "Unable to add group." : "Kan groep niet toevoegen.", + "Unable to delete group." : "Kan groep niet verwijderen.", "Saved" : "Bewaard", "test email settings" : "test e-mailinstellingen", "If you received this email, the settings seem to be correct." : "Als u dit e-mailbericht ontvangt, lijken de instellingen juist.", "A problem occurred while sending the email. Please revise your settings." : "Er ontstond een probleem bij het versturen van de e-mail. Controleer uw instellingen.", "Email sent" : "E-mail verzonden", "You need to set your user email before being able to send test emails." : "U moet uw e-mailadres invoeren voordat u testberichten kunt versturen.", + "Unable to create user." : "Kan gebruiker niet aanmaken.", + "Unable to delete user." : "Kan gebruiker niet afvoeren.", "Are you really sure you want add \"{domain}\" as trusted domain?" : "Weet u zeker dat u \"{domain}\" als een vertrouwd domein wilt toevoegen?", "Add trusted domain" : "Vertrouwd domein toevoegen", "Sending..." : "Versturen...", @@ -100,7 +101,6 @@ "TLS" : "TLS", "Security Warning" : "Beveiligingswaarschuwing", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "U bent met %s verbonden over HTTP. We adviseren met klem uw server zo te configureren dat alleen HTTPS kan worden gebruikt.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Uw data folder en uw bestanden zijn waarschijnlijk vanaf het internet bereikbaar. Het .htaccess-bestand werkt niet. We raden ten zeerste aan aan om uw webserver zodanig te configureren, dat de datamap niet bereikbaar is vanaf het internet of om uw datamap te verplaatsen naar een locatie buiten de document root van de webserver.", "Read-Only config enabled" : "Alleen-lezen config geactiveerd", "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." : "De Alleen-lezen config is geactiveerd. Dit voorkomt het via de webinterface wijzigen van verschillende instellingen. Bovendien moet het bestand voor elke aanpassing handmatig op beschrijfbaar worden ingesteld.", "Setup Warning" : "Instellingswaarschuwing", @@ -118,7 +118,7 @@ "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "We adviseren met klem om de noodzakelijke pakketten op uw systeem te installeren om een van de volgende talen te ondersteunen: %s.", "URL generation in notification emails" : "URL genereren in notificatie e-mails", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Als uw installatie niet in de hoofddirectory van het domein staat, maar wel cron gebruikt, dan kunnen er problemen ontstaan bij het genereren van URL's. Om deze problemen te voorkomen zou u de \"overwritewebroot\" optie in config.php moeten instellen op het webroot pad van uw ownCloud (aanbevolen: \"%s\") ", - "Connectivity Checks" : "Verbindingscontroles", + "Configuration Checks" : "Configuratie Controles", "No problems found" : "Geen problemen gevonden", "Please double check the <a href='%s'>installation guides</a>." : "Controleer de <a href='%s'>installatiehandleiding</a> goed.", "Last cron was executed at %s." : "Laatst uitgevoerde cron op %s.", @@ -131,13 +131,14 @@ "Allow users to share via link" : "Sta gebruikers toe om te delen via een link", "Enforce password protection" : "Dwing wachtwoordbeveiliging af", "Allow public uploads" : "Sta publieke uploads toe", + "Allow users to send mail notification for shared files" : "Sta gebruikers toe om e-mailnotificaties te versturen voor gedeelde bestanden", "Set default expiration date" : "Stel standaard vervaldatum in", "Expire after " : "Vervalt na", "days" : "dagen", "Enforce expiration date" : "Verplicht de vervaldatum", "Allow resharing" : "Toestaan opnieuw delen", "Restrict users to only share with users in their groups" : "Laat gebruikers alleen delen met andere gebruikers in hun groepen", - "Allow users to send mail notification for shared files" : "Sta gebruikers toe om e-mailnotificaties te versturen voor gedeelde bestanden", + "Allow users to send mail notification for shared files to other users" : "Sta gebruikers toe om e-mailnotificaties aan andere gebruikers te versturen voor gedeelde bestanden", "Exclude groups from sharing" : "Sluit groepen uit van delen", "These groups will still be able to receive shares, but not to initiate them." : "Deze groepen kunnen gedeelde mappen bestanden ontvangen, maar kunnen ze niet starten.", "Enforce HTTPS" : "Afdwingen HTTPS", @@ -171,6 +172,7 @@ "Documentation:" : "Documentatie:", "User Documentation" : "Gebruikersdocumentatie", "Admin Documentation" : "Beheerdocumentatie", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Deze app kan niet worden geïnstalleerd omdat de volgende afhankelijkheden niet zijn ingevuld:", "Update to %s" : "Bijgewerkt naar %s", "Enable only for specific groups" : "Alleen voor bepaalde groepen activeren", "Uninstall App" : "De-installeren app", diff --git a/settings/l10n/nn_NO.js b/settings/l10n/nn_NO.js index 74380c67fdd..87ffe5ca760 100644 --- a/settings/l10n/nn_NO.js +++ b/settings/l10n/nn_NO.js @@ -6,12 +6,8 @@ OC.L10N.register( "Security" : "Tryggleik", "Log" : "Logg", "Authentication error" : "Autentiseringsfeil", - "Group already exists" : "Gruppa finst allereie", - "Unable to add group" : "Klarte ikkje leggja til gruppa", "Email saved" : "E-postadresse lagra", "Invalid email" : "Ugyldig e-postadresse", - "Unable to delete group" : "Klarte ikkje å sletta gruppa", - "Unable to delete user" : "Klarte ikkje sletta brukaren", "Language changed" : "Språk endra", "Invalid request" : "Ugyldig førespurnad", "Admins can't remove themself from the admin group" : "Administratorar kan ikkje fjerna seg sjølve frå admin-gruppa", @@ -50,7 +46,6 @@ OC.L10N.register( "Encryption" : "Kryptering", "Login" : "Logg inn", "Security Warning" : "Tryggleiksåtvaring", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Datamappa og filene dine er sannsynlegvis leselege frå nettet. Fila .htaccess fungerer ikkje. Me rår deg sterkt til å konfigurera vevtenaren din sånn at datamappa di ikkje lenger er tilgjengeleg; alternativt kan du flytta datamappa ut av dokumentrot til vevtenaren.", "Setup Warning" : "Oppsettsåtvaring", "Module 'fileinfo' missing" : "Modulen «fileinfo» manglar", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP-modulen «fileinfo» manglar. Me rår sterkt til å slå på denne modulen for å best mogleg oppdaga MIME-typar.", diff --git a/settings/l10n/nn_NO.json b/settings/l10n/nn_NO.json index c4a3844829c..4924aae38f4 100644 --- a/settings/l10n/nn_NO.json +++ b/settings/l10n/nn_NO.json @@ -4,12 +4,8 @@ "Security" : "Tryggleik", "Log" : "Logg", "Authentication error" : "Autentiseringsfeil", - "Group already exists" : "Gruppa finst allereie", - "Unable to add group" : "Klarte ikkje leggja til gruppa", "Email saved" : "E-postadresse lagra", "Invalid email" : "Ugyldig e-postadresse", - "Unable to delete group" : "Klarte ikkje å sletta gruppa", - "Unable to delete user" : "Klarte ikkje sletta brukaren", "Language changed" : "Språk endra", "Invalid request" : "Ugyldig førespurnad", "Admins can't remove themself from the admin group" : "Administratorar kan ikkje fjerna seg sjølve frå admin-gruppa", @@ -48,7 +44,6 @@ "Encryption" : "Kryptering", "Login" : "Logg inn", "Security Warning" : "Tryggleiksåtvaring", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Datamappa og filene dine er sannsynlegvis leselege frå nettet. Fila .htaccess fungerer ikkje. Me rår deg sterkt til å konfigurera vevtenaren din sånn at datamappa di ikkje lenger er tilgjengeleg; alternativt kan du flytta datamappa ut av dokumentrot til vevtenaren.", "Setup Warning" : "Oppsettsåtvaring", "Module 'fileinfo' missing" : "Modulen «fileinfo» manglar", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP-modulen «fileinfo» manglar. Me rår sterkt til å slå på denne modulen for å best mogleg oppdaga MIME-typar.", diff --git a/settings/l10n/oc.js b/settings/l10n/oc.js index 734e0de7551..9ee13dc141d 100644 --- a/settings/l10n/oc.js +++ b/settings/l10n/oc.js @@ -5,12 +5,8 @@ OC.L10N.register( "Sharing" : "Al partejar", "Log" : "Jornal", "Authentication error" : "Error d'autentificacion", - "Group already exists" : "Lo grop existís ja", - "Unable to add group" : "Pas capable d'apondre un grop", "Email saved" : "Corrièl enregistrat", "Invalid email" : "Corrièl incorrècte", - "Unable to delete group" : "Pas capable d'escafar un grop", - "Unable to delete user" : "Pas capable d'escafar un usancièr", "Language changed" : "Lengas cambiadas", "Invalid request" : "Demanda invalida", "Unable to add user to group %s" : "Pas capable d'apondre un usancièr al grop %s", diff --git a/settings/l10n/oc.json b/settings/l10n/oc.json index dc1827381dc..4f62786340e 100644 --- a/settings/l10n/oc.json +++ b/settings/l10n/oc.json @@ -3,12 +3,8 @@ "Sharing" : "Al partejar", "Log" : "Jornal", "Authentication error" : "Error d'autentificacion", - "Group already exists" : "Lo grop existís ja", - "Unable to add group" : "Pas capable d'apondre un grop", "Email saved" : "Corrièl enregistrat", "Invalid email" : "Corrièl incorrècte", - "Unable to delete group" : "Pas capable d'escafar un grop", - "Unable to delete user" : "Pas capable d'escafar un usancièr", "Language changed" : "Lengas cambiadas", "Invalid request" : "Demanda invalida", "Unable to add user to group %s" : "Pas capable d'apondre un usancièr al grop %s", diff --git a/settings/l10n/pl.js b/settings/l10n/pl.js index b1f268c1373..a2f18322080 100644 --- a/settings/l10n/pl.js +++ b/settings/l10n/pl.js @@ -9,8 +9,6 @@ OC.L10N.register( "Authentication error" : "Błąd uwierzytelniania", "Your full name has been changed." : "Twoja pełna nazwa została zmieniona.", "Unable to change full name" : "Nie można zmienić pełnej nazwy", - "Group already exists" : "Grupa już istnieje", - "Unable to add group" : "Nie można dodać grupy", "Files decrypted successfully" : "Pliki zostały poprawnie zdeszyfrowane", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Nie można zdeszyfrować Twoich plików, proszę sprawdzić owncloud.log lub zapytać administratora", "Couldn't decrypt your files, check your password and try again" : "Nie można zdeszyfrować Twoich plików, sprawdź swoje hasło i spróbuj ponownie", @@ -19,8 +17,6 @@ OC.L10N.register( "Couldn't remove app." : "Nie można usunąć aplikacji.", "Email saved" : "E-mail zapisany", "Invalid email" : "Nieprawidłowy e-mail", - "Unable to delete group" : "Nie można usunąć grupy", - "Unable to delete user" : "Nie można usunąć użytkownika", "Backups restored successfully" : "Archiwum zostało prawidłowo przywrócone", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Nie można przywrócić kluczy szyfrujących, proszę sprawdzić owncloud.log lub zapytać administratora", "Language changed" : "Zmieniono język", @@ -101,7 +97,6 @@ OC.L10N.register( "TLS" : "TLS", "Security Warning" : "Ostrzeżenie o zabezpieczeniach", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Uzyskujesz dostęp do %s za pomocą protokołu HTTP. Zalecamy skonfigurować swój serwer z użyciem protokołu HTTPS.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Twój katalog danych i pliki są prawdopodobnie dostępne z Internetu. Plik .htaccess, który dostarcza ownCloud nie działa. Sugerujemy, aby skonfigurować serwer WWW w taki sposób, aby katalog danych nie był dostępny lub przenieść katalog danych poza główny katalog serwera WWW.", "Setup Warning" : "Ostrzeżenia konfiguracji", "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.", @@ -128,13 +123,13 @@ OC.L10N.register( "Allow users to share via link" : "Pozwól użytkownikom współdzielić przez link", "Enforce password protection" : "Wymuś zabezpieczenie hasłem", "Allow public uploads" : "Pozwól na publiczne wczytywanie", + "Allow users to send mail notification for shared files" : "Zezwól użytkownikom na wysyłanie powiadomień email dla udostępnionych plików", "Set default expiration date" : "Ustaw domyślną datę wygaśnięcia", "Expire after " : "Wygaś po", "days" : "dniach", "Enforce expiration date" : "Wymuś datę wygaśnięcia", "Allow resharing" : "Zezwalaj na ponowne udostępnianie", "Restrict users to only share with users in their groups" : "Ogranicz użytkowników do współdzielenia wyłącznie pomiędzy użytkownikami swoich grup", - "Allow users to send mail notification for shared files" : "Zezwól użytkownikom na wysyłanie powiadomień email dla udostępnionych plików", "Exclude groups from sharing" : "Wyklucz grupy z udostępniania", "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", diff --git a/settings/l10n/pl.json b/settings/l10n/pl.json index 3e2c17d3140..223412e20b4 100644 --- a/settings/l10n/pl.json +++ b/settings/l10n/pl.json @@ -7,8 +7,6 @@ "Authentication error" : "Błąd uwierzytelniania", "Your full name has been changed." : "Twoja pełna nazwa została zmieniona.", "Unable to change full name" : "Nie można zmienić pełnej nazwy", - "Group already exists" : "Grupa już istnieje", - "Unable to add group" : "Nie można dodać grupy", "Files decrypted successfully" : "Pliki zostały poprawnie zdeszyfrowane", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Nie można zdeszyfrować Twoich plików, proszę sprawdzić owncloud.log lub zapytać administratora", "Couldn't decrypt your files, check your password and try again" : "Nie można zdeszyfrować Twoich plików, sprawdź swoje hasło i spróbuj ponownie", @@ -17,8 +15,6 @@ "Couldn't remove app." : "Nie można usunąć aplikacji.", "Email saved" : "E-mail zapisany", "Invalid email" : "Nieprawidłowy e-mail", - "Unable to delete group" : "Nie można usunąć grupy", - "Unable to delete user" : "Nie można usunąć użytkownika", "Backups restored successfully" : "Archiwum zostało prawidłowo przywrócone", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Nie można przywrócić kluczy szyfrujących, proszę sprawdzić owncloud.log lub zapytać administratora", "Language changed" : "Zmieniono język", @@ -99,7 +95,6 @@ "TLS" : "TLS", "Security Warning" : "Ostrzeżenie o zabezpieczeniach", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Uzyskujesz dostęp do %s za pomocą protokołu HTTP. Zalecamy skonfigurować swój serwer z użyciem protokołu HTTPS.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Twój katalog danych i pliki są prawdopodobnie dostępne z Internetu. Plik .htaccess, który dostarcza ownCloud nie działa. Sugerujemy, aby skonfigurować serwer WWW w taki sposób, aby katalog danych nie był dostępny lub przenieść katalog danych poza główny katalog serwera WWW.", "Setup Warning" : "Ostrzeżenia konfiguracji", "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.", @@ -126,13 +121,13 @@ "Allow users to share via link" : "Pozwól użytkownikom współdzielić przez link", "Enforce password protection" : "Wymuś zabezpieczenie hasłem", "Allow public uploads" : "Pozwól na publiczne wczytywanie", + "Allow users to send mail notification for shared files" : "Zezwól użytkownikom na wysyłanie powiadomień email dla udostępnionych plików", "Set default expiration date" : "Ustaw domyślną datę wygaśnięcia", "Expire after " : "Wygaś po", "days" : "dniach", "Enforce expiration date" : "Wymuś datę wygaśnięcia", "Allow resharing" : "Zezwalaj na ponowne udostępnianie", "Restrict users to only share with users in their groups" : "Ogranicz użytkowników do współdzielenia wyłącznie pomiędzy użytkownikami swoich grup", - "Allow users to send mail notification for shared files" : "Zezwól użytkownikom na wysyłanie powiadomień email dla udostępnionych plików", "Exclude groups from sharing" : "Wyklucz grupy z udostępniania", "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", diff --git a/settings/l10n/pt_BR.js b/settings/l10n/pt_BR.js index 021626539e0..cbb26486142 100644 --- a/settings/l10n/pt_BR.js +++ b/settings/l10n/pt_BR.js @@ -10,8 +10,6 @@ OC.L10N.register( "Authentication error" : "Erro de autenticação", "Your full name has been changed." : "Seu nome completo foi alterado.", "Unable to change full name" : "Não é possível alterar o nome completo", - "Group already exists" : "O Grupo já existe", - "Unable to add group" : "Não foi possível adicionar grupo", "Files decrypted successfully" : "Arquivos descriptografados com sucesso", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Não foi possível descriptografar os arquivos, verifique a sua owncloud.log ou pergunte ao seu administrador", "Couldn't decrypt your files, check your password and try again" : "Não foi possível descriptografar os arquivos, verifique sua senha e tente novamente", @@ -20,8 +18,6 @@ OC.L10N.register( "Couldn't remove app." : "Não foi possível remover aplicativos.", "Email saved" : "E-mail salvo", "Invalid email" : "E-mail inválido", - "Unable to delete group" : "Não foi possível remover grupo", - "Unable to delete user" : "Não foi possível remover usuário", "Backups restored successfully" : "Backup restaurado com sucesso", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Não foi possível salvar as chaves de criptografia, por favor, verifique o seu owncloud.log ou pergunte ao seu administrador", "Language changed" : "Idioma alterado", @@ -39,12 +35,17 @@ OC.L10N.register( "Enabled" : "Habilitado", "Not enabled" : "Desabilitado", "Recommended" : "Recomendado", + "Group already exists." : "O Grupo já existe.", + "Unable to add group." : "Não é possível adicionar grupo.", + "Unable to delete group." : "Não é possível excluir grupo.", "Saved" : "Salvo", "test email settings" : "testar configurações de email", "If you received this email, the settings seem to be correct." : "Se você recebeu este e-mail, as configurações parecem estar corretas.", "A problem occurred while sending the email. Please revise your settings." : "Ocorreu um problema ao enviar o e-mail. Por favor, revise suas configurações.", "Email sent" : "E-mail enviado", "You need to set your user email before being able to send test emails." : "Você precisa configurar seu e-mail de usuário antes de ser capaz de enviar e-mails de teste.", + "Unable to create user." : "Não é possível criar usuário.", + "Unable to delete user." : "Não é possível excluir usuário.", "Are you really sure you want add \"{domain}\" as trusted domain?" : "Você tem certeza que você quer adicionar \"{domain}\" como domínio confiável?", "Add trusted domain" : "Adicionar domínio confiável", "Sending..." : "Enviando...", @@ -102,7 +103,6 @@ OC.L10N.register( "TLS" : "TLS", "Security Warning" : "Aviso de Segurança", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Você está acessando %s via HTTP. Sugerimos você configurar o servidor para exigir o uso de HTTPS em seu lugar.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Seu diretório de dados e seus arquivos são, provavelmente, acessíveis a partir da internet. O arquivo htaccess. não está funcionando. Nós sugerimos fortemente que você configure o seu servidor web de uma forma que o diretório de dados não esteja mais acessível ou mova o diretório de dados para fora do raiz do servidor.", "Read-Only config enabled" : "Somente-Leitura configuração ativada", "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." : "A configuração Somente-Leitura foi habilitada. Isso impede que algumas configurações sejam definidas via a interface web. Além disso, o arquivo precisa ter permissão de escrita manual para cada atualização.", "Setup Warning" : "Aviso de Configuração", @@ -120,7 +120,7 @@ OC.L10N.register( "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Nós sugerimos a instalação dos pacotes necessários em seu sistema para suportar um dos seguintes locais: %s.", "URL generation in notification emails" : "Geração de URL em e-mails de notificação", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Se a sua instalação não estiver instalada na raiz do domínio e usa cron do sistema, pode haver problemas com a geração de URL. Para evitar esses problemas, por favor, defina a opção \"overwritewebroot\" em seu arquivo config.php para o caminho webroot de sua instalação (Sugestão: \"%s\")", - "Connectivity Checks" : "Verificações de Conectividade", + "Configuration Checks" : "Verificações de Configuração", "No problems found" : "Nenhum problema encontrado", "Please double check the <a href='%s'>installation guides</a>." : "Por favor, confira o <a href='%s'>guia de instalação</a>.", "Last cron was executed at %s." : "Último cron foi executado em %s.", @@ -133,13 +133,14 @@ OC.L10N.register( "Allow users to share via link" : "Permitir que os usuários compartilhem por link", "Enforce password protection" : "Reforce a proteção por senha", "Allow public uploads" : "Permitir envio público", + "Allow users to send mail notification for shared files" : "Permitir aos usuários enviar notificação de email para arquivos compartilhados", "Set default expiration date" : "Configurar a data de expiração", "Expire after " : "Expirar depois de", "days" : "dias", "Enforce expiration date" : "Fazer cumprir a data de expiração", "Allow resharing" : "Permitir recompartilhamento", "Restrict users to only share with users in their groups" : "Restringir os usuários a compartilhar somente com os usuários em seus grupos", - "Allow users to send mail notification for shared files" : "Permitir aos usuários enviar notificação de email para arquivos compartilhados", + "Allow users to send mail notification for shared files to other users" : "Permitir aos usuários enviar notificação de email de arquivos compartilhados para outros usuários", "Exclude groups from sharing" : "Excluir grupos de compartilhamento", "These groups will still be able to receive shares, but not to initiate them." : "Esses grupos ainda serão capazes de receber compartilhamentos, mas não para iniciá-los.", "Enforce HTTPS" : "Forçar HTTPS", @@ -173,6 +174,7 @@ OC.L10N.register( "Documentation:" : "Documentação:", "User Documentation" : "Documentação de Usuário", "Admin Documentation" : "Documentação de Administrador", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Este aplicativo não pode ser instalado porque as seguintes dependências não forão cumpridas:", "Update to %s" : "Atualizado para %s", "Enable only for specific groups" : "Ativar apenas para grupos específicos", "Uninstall App" : "Desinstalar Aplicativo", diff --git a/settings/l10n/pt_BR.json b/settings/l10n/pt_BR.json index 22721edab05..beaf0199ed6 100644 --- a/settings/l10n/pt_BR.json +++ b/settings/l10n/pt_BR.json @@ -8,8 +8,6 @@ "Authentication error" : "Erro de autenticação", "Your full name has been changed." : "Seu nome completo foi alterado.", "Unable to change full name" : "Não é possível alterar o nome completo", - "Group already exists" : "O Grupo já existe", - "Unable to add group" : "Não foi possível adicionar grupo", "Files decrypted successfully" : "Arquivos descriptografados com sucesso", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Não foi possível descriptografar os arquivos, verifique a sua owncloud.log ou pergunte ao seu administrador", "Couldn't decrypt your files, check your password and try again" : "Não foi possível descriptografar os arquivos, verifique sua senha e tente novamente", @@ -18,8 +16,6 @@ "Couldn't remove app." : "Não foi possível remover aplicativos.", "Email saved" : "E-mail salvo", "Invalid email" : "E-mail inválido", - "Unable to delete group" : "Não foi possível remover grupo", - "Unable to delete user" : "Não foi possível remover usuário", "Backups restored successfully" : "Backup restaurado com sucesso", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Não foi possível salvar as chaves de criptografia, por favor, verifique o seu owncloud.log ou pergunte ao seu administrador", "Language changed" : "Idioma alterado", @@ -37,12 +33,17 @@ "Enabled" : "Habilitado", "Not enabled" : "Desabilitado", "Recommended" : "Recomendado", + "Group already exists." : "O Grupo já existe.", + "Unable to add group." : "Não é possível adicionar grupo.", + "Unable to delete group." : "Não é possível excluir grupo.", "Saved" : "Salvo", "test email settings" : "testar configurações de email", "If you received this email, the settings seem to be correct." : "Se você recebeu este e-mail, as configurações parecem estar corretas.", "A problem occurred while sending the email. Please revise your settings." : "Ocorreu um problema ao enviar o e-mail. Por favor, revise suas configurações.", "Email sent" : "E-mail enviado", "You need to set your user email before being able to send test emails." : "Você precisa configurar seu e-mail de usuário antes de ser capaz de enviar e-mails de teste.", + "Unable to create user." : "Não é possível criar usuário.", + "Unable to delete user." : "Não é possível excluir usuário.", "Are you really sure you want add \"{domain}\" as trusted domain?" : "Você tem certeza que você quer adicionar \"{domain}\" como domínio confiável?", "Add trusted domain" : "Adicionar domínio confiável", "Sending..." : "Enviando...", @@ -100,7 +101,6 @@ "TLS" : "TLS", "Security Warning" : "Aviso de Segurança", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Você está acessando %s via HTTP. Sugerimos você configurar o servidor para exigir o uso de HTTPS em seu lugar.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Seu diretório de dados e seus arquivos são, provavelmente, acessíveis a partir da internet. O arquivo htaccess. não está funcionando. Nós sugerimos fortemente que você configure o seu servidor web de uma forma que o diretório de dados não esteja mais acessível ou mova o diretório de dados para fora do raiz do servidor.", "Read-Only config enabled" : "Somente-Leitura configuração ativada", "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." : "A configuração Somente-Leitura foi habilitada. Isso impede que algumas configurações sejam definidas via a interface web. Além disso, o arquivo precisa ter permissão de escrita manual para cada atualização.", "Setup Warning" : "Aviso de Configuração", @@ -118,7 +118,7 @@ "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Nós sugerimos a instalação dos pacotes necessários em seu sistema para suportar um dos seguintes locais: %s.", "URL generation in notification emails" : "Geração de URL em e-mails de notificação", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Se a sua instalação não estiver instalada na raiz do domínio e usa cron do sistema, pode haver problemas com a geração de URL. Para evitar esses problemas, por favor, defina a opção \"overwritewebroot\" em seu arquivo config.php para o caminho webroot de sua instalação (Sugestão: \"%s\")", - "Connectivity Checks" : "Verificações de Conectividade", + "Configuration Checks" : "Verificações de Configuração", "No problems found" : "Nenhum problema encontrado", "Please double check the <a href='%s'>installation guides</a>." : "Por favor, confira o <a href='%s'>guia de instalação</a>.", "Last cron was executed at %s." : "Último cron foi executado em %s.", @@ -131,13 +131,14 @@ "Allow users to share via link" : "Permitir que os usuários compartilhem por link", "Enforce password protection" : "Reforce a proteção por senha", "Allow public uploads" : "Permitir envio público", + "Allow users to send mail notification for shared files" : "Permitir aos usuários enviar notificação de email para arquivos compartilhados", "Set default expiration date" : "Configurar a data de expiração", "Expire after " : "Expirar depois de", "days" : "dias", "Enforce expiration date" : "Fazer cumprir a data de expiração", "Allow resharing" : "Permitir recompartilhamento", "Restrict users to only share with users in their groups" : "Restringir os usuários a compartilhar somente com os usuários em seus grupos", - "Allow users to send mail notification for shared files" : "Permitir aos usuários enviar notificação de email para arquivos compartilhados", + "Allow users to send mail notification for shared files to other users" : "Permitir aos usuários enviar notificação de email de arquivos compartilhados para outros usuários", "Exclude groups from sharing" : "Excluir grupos de compartilhamento", "These groups will still be able to receive shares, but not to initiate them." : "Esses grupos ainda serão capazes de receber compartilhamentos, mas não para iniciá-los.", "Enforce HTTPS" : "Forçar HTTPS", @@ -171,6 +172,7 @@ "Documentation:" : "Documentação:", "User Documentation" : "Documentação de Usuário", "Admin Documentation" : "Documentação de Administrador", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Este aplicativo não pode ser instalado porque as seguintes dependências não forão cumpridas:", "Update to %s" : "Atualizado para %s", "Enable only for specific groups" : "Ativar apenas para grupos específicos", "Uninstall App" : "Desinstalar Aplicativo", diff --git a/settings/l10n/pt_PT.js b/settings/l10n/pt_PT.js index 93fad6a87be..9c2f0b0ff60 100644 --- a/settings/l10n/pt_PT.js +++ b/settings/l10n/pt_PT.js @@ -10,8 +10,6 @@ OC.L10N.register( "Authentication error" : "Erro na autenticação", "Your full name has been changed." : "O seu nome completo foi alterado.", "Unable to change full name" : "Não foi possível alterar o seu nome completo", - "Group already exists" : "O grupo já existe", - "Unable to add group" : "Não é possível acrescentar o grupo", "Files decrypted successfully" : "Ficheiros desencriptados com sucesso", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Não foi possível descodificar os seus ficheiros. Por favor, verifique a sua owncloud.log ou pergunte ao seu administrador", "Couldn't decrypt your files, check your password and try again" : "Não foi possível descodificar os seus ficheiros. Por favor, verifique a sua palavra-passe e tente novamente", @@ -20,8 +18,6 @@ OC.L10N.register( "Couldn't remove app." : "Não foi possível remover a aplicação.", "Email saved" : "E-mail guardado", "Invalid email" : "e-mail inválido", - "Unable to delete group" : "Não é possível apagar o grupo", - "Unable to delete user" : "Não é possível apagar o utilizador", "Backups restored successfully" : "Cópias de segurança restauradas com sucesso", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Não foi possivel restaurar as suas chaves de encriptacao. Por favor, verifique a sua owncloud.log ou pergunte ao seu administrador", "Language changed" : "Idioma alterado", @@ -102,7 +98,6 @@ OC.L10N.register( "TLS" : "TLS", "Security Warning" : "Aviso de Segurança", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Está a aceder a %s via HTTP. Nós recomendamos vivamente que configure o seu servidor para requerer a utilização de HTTPS.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "A sua pasta dos dados e os seus ficheiros estão provavelmente acessíveis a partir da Internet. O ficheiro .htaccess não está a funcionar corretamente. Nós sugerimos fortemente que configure o seu servidor da Web de maneira a que a pasta dos dados deixe de ficar acessível, ou mova-a para fora da diretoria raiz dos documentos do servidor da Web.", "Read-Only config enabled" : "Configuração Só-de-Leitura ativada", "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." : "A configuração Só-de-Leitura foi ativada. Isto evita definir algumas configurações através da interface da Web. Além disso, o ficheiro precisa de ser definido gravável manualmente para cada atualização.", "Setup Warning" : "Aviso de Configuração", @@ -120,7 +115,6 @@ OC.L10N.register( "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Nós recomendamos fortemente que instale no seu sistema os pacotes necessários para suportar uma das seguintes locallidades: %s.", "URL generation in notification emails" : "Geração URL em e-mails de notificação", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Se a sua instalação não está instalada na raiz do domínio e usa o sistema cron, pode haver problemas com a geração de URL. Para evitar esses problemas, por favor, defina a opção \"overwritewebroot\" no ficheiro config.php para o caminho webroot da sua instalação (sugestão: \"%s\")", - "Connectivity Checks" : "Verificações de Conetividade", "No problems found" : "Nenhum problema encontrado", "Please double check the <a href='%s'>installation guides</a>." : "Por favor verifique <a href='%s'>installation guides</a>.", "Last cron was executed at %s." : "O ultimo cron foi executado em %s.", @@ -133,13 +127,13 @@ OC.L10N.register( "Allow users to share via link" : "Permitir que os utilizadores partilhem através do link", "Enforce password protection" : "Forçar proteção por palavra-passe", "Allow public uploads" : "Permitir Envios Públicos", + "Allow users to send mail notification for shared files" : "Permita que o utilizador envie notificações por correio electrónico para ficheiros partilhados", "Set default expiration date" : "Especificar a data padrão de expiração", "Expire after " : "Expira após", "days" : "dias", "Enforce expiration date" : "Forçar a data de expiração", "Allow resharing" : "Permitir repartilha", "Restrict users to only share with users in their groups" : "Restringe os utilizadores só a partilhar com utilizadores do seu grupo", - "Allow users to send mail notification for shared files" : "Permita que o utilizador envie notificações por correio electrónico para ficheiros partilhados", "Exclude groups from sharing" : "Excluir grupos das partilhas", "These groups will still be able to receive shares, but not to initiate them." : "Estes grupos poderão receber partilhas, mas não poderão iniciá-las.", "Enforce HTTPS" : "Forçar HTTPS", diff --git a/settings/l10n/pt_PT.json b/settings/l10n/pt_PT.json index d46aabb68b0..c1a1329c348 100644 --- a/settings/l10n/pt_PT.json +++ b/settings/l10n/pt_PT.json @@ -8,8 +8,6 @@ "Authentication error" : "Erro na autenticação", "Your full name has been changed." : "O seu nome completo foi alterado.", "Unable to change full name" : "Não foi possível alterar o seu nome completo", - "Group already exists" : "O grupo já existe", - "Unable to add group" : "Não é possível acrescentar o grupo", "Files decrypted successfully" : "Ficheiros desencriptados com sucesso", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Não foi possível descodificar os seus ficheiros. Por favor, verifique a sua owncloud.log ou pergunte ao seu administrador", "Couldn't decrypt your files, check your password and try again" : "Não foi possível descodificar os seus ficheiros. Por favor, verifique a sua palavra-passe e tente novamente", @@ -18,8 +16,6 @@ "Couldn't remove app." : "Não foi possível remover a aplicação.", "Email saved" : "E-mail guardado", "Invalid email" : "e-mail inválido", - "Unable to delete group" : "Não é possível apagar o grupo", - "Unable to delete user" : "Não é possível apagar o utilizador", "Backups restored successfully" : "Cópias de segurança restauradas com sucesso", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Não foi possivel restaurar as suas chaves de encriptacao. Por favor, verifique a sua owncloud.log ou pergunte ao seu administrador", "Language changed" : "Idioma alterado", @@ -100,7 +96,6 @@ "TLS" : "TLS", "Security Warning" : "Aviso de Segurança", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Está a aceder a %s via HTTP. Nós recomendamos vivamente que configure o seu servidor para requerer a utilização de HTTPS.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "A sua pasta dos dados e os seus ficheiros estão provavelmente acessíveis a partir da Internet. O ficheiro .htaccess não está a funcionar corretamente. Nós sugerimos fortemente que configure o seu servidor da Web de maneira a que a pasta dos dados deixe de ficar acessível, ou mova-a para fora da diretoria raiz dos documentos do servidor da Web.", "Read-Only config enabled" : "Configuração Só-de-Leitura ativada", "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." : "A configuração Só-de-Leitura foi ativada. Isto evita definir algumas configurações através da interface da Web. Além disso, o ficheiro precisa de ser definido gravável manualmente para cada atualização.", "Setup Warning" : "Aviso de Configuração", @@ -118,7 +113,6 @@ "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Nós recomendamos fortemente que instale no seu sistema os pacotes necessários para suportar uma das seguintes locallidades: %s.", "URL generation in notification emails" : "Geração URL em e-mails de notificação", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Se a sua instalação não está instalada na raiz do domínio e usa o sistema cron, pode haver problemas com a geração de URL. Para evitar esses problemas, por favor, defina a opção \"overwritewebroot\" no ficheiro config.php para o caminho webroot da sua instalação (sugestão: \"%s\")", - "Connectivity Checks" : "Verificações de Conetividade", "No problems found" : "Nenhum problema encontrado", "Please double check the <a href='%s'>installation guides</a>." : "Por favor verifique <a href='%s'>installation guides</a>.", "Last cron was executed at %s." : "O ultimo cron foi executado em %s.", @@ -131,13 +125,13 @@ "Allow users to share via link" : "Permitir que os utilizadores partilhem através do link", "Enforce password protection" : "Forçar proteção por palavra-passe", "Allow public uploads" : "Permitir Envios Públicos", + "Allow users to send mail notification for shared files" : "Permita que o utilizador envie notificações por correio electrónico para ficheiros partilhados", "Set default expiration date" : "Especificar a data padrão de expiração", "Expire after " : "Expira após", "days" : "dias", "Enforce expiration date" : "Forçar a data de expiração", "Allow resharing" : "Permitir repartilha", "Restrict users to only share with users in their groups" : "Restringe os utilizadores só a partilhar com utilizadores do seu grupo", - "Allow users to send mail notification for shared files" : "Permita que o utilizador envie notificações por correio electrónico para ficheiros partilhados", "Exclude groups from sharing" : "Excluir grupos das partilhas", "These groups will still be able to receive shares, but not to initiate them." : "Estes grupos poderão receber partilhas, mas não poderão iniciá-las.", "Enforce HTTPS" : "Forçar HTTPS", diff --git a/settings/l10n/ro.js b/settings/l10n/ro.js index 84b1e8d202e..16a817a066a 100644 --- a/settings/l10n/ro.js +++ b/settings/l10n/ro.js @@ -8,15 +8,11 @@ OC.L10N.register( "Authentication error" : "Eroare la autentificare", "Your full name has been changed." : "Numele tău complet a fost schimbat.", "Unable to change full name" : "Nu s-a puput schimba numele complet", - "Group already exists" : "Grupul există deja", - "Unable to add group" : "Nu s-a putut adăuga grupul", "Files decrypted successfully" : "Fișierele au fost decriptate cu succes", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Nu s-a puput decripta fișierele tale, verifică owncloud.log sau întreabă administratorul", "Couldn't decrypt your files, check your password and try again" : "Nu s-a puput decripta fișierele tale, verifică parola și încearcă din nou", "Email saved" : "E-mail salvat", "Invalid email" : "E-mail invalid", - "Unable to delete group" : "Nu s-a putut șterge grupul", - "Unable to delete user" : "Nu s-a putut șterge utilizatorul", "Language changed" : "Limba a fost schimbată", "Invalid request" : "Cerere eronată", "Admins can't remove themself from the admin group" : "Administratorii nu se pot șterge singuri din grupul admin", @@ -73,8 +69,8 @@ OC.L10N.register( "Execute one task with each page loaded" : "Execută o sarcină la fiecare pagină încărcată", "Allow apps to use the Share API" : "Permite aplicațiilor să folosească API-ul de partajare", "Allow public uploads" : "Permite încărcări publice", - "Allow resharing" : "Permite repartajarea", "Allow users to send mail notification for shared files" : "Permite utilizatorilor sa expedieze notificări prin e-mail pentru dosarele comune", + "Allow resharing" : "Permite repartajarea", "Forces the clients to connect to %s via an encrypted connection." : "Forțează clienții să se conecteze la %s folosind o conexiune sigură", "Send mode" : "Modul de expediere", "Authentication method" : "Modul de autentificare", diff --git a/settings/l10n/ro.json b/settings/l10n/ro.json index 090b6dada69..9d3a25fad68 100644 --- a/settings/l10n/ro.json +++ b/settings/l10n/ro.json @@ -6,15 +6,11 @@ "Authentication error" : "Eroare la autentificare", "Your full name has been changed." : "Numele tău complet a fost schimbat.", "Unable to change full name" : "Nu s-a puput schimba numele complet", - "Group already exists" : "Grupul există deja", - "Unable to add group" : "Nu s-a putut adăuga grupul", "Files decrypted successfully" : "Fișierele au fost decriptate cu succes", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Nu s-a puput decripta fișierele tale, verifică owncloud.log sau întreabă administratorul", "Couldn't decrypt your files, check your password and try again" : "Nu s-a puput decripta fișierele tale, verifică parola și încearcă din nou", "Email saved" : "E-mail salvat", "Invalid email" : "E-mail invalid", - "Unable to delete group" : "Nu s-a putut șterge grupul", - "Unable to delete user" : "Nu s-a putut șterge utilizatorul", "Language changed" : "Limba a fost schimbată", "Invalid request" : "Cerere eronată", "Admins can't remove themself from the admin group" : "Administratorii nu se pot șterge singuri din grupul admin", @@ -71,8 +67,8 @@ "Execute one task with each page loaded" : "Execută o sarcină la fiecare pagină încărcată", "Allow apps to use the Share API" : "Permite aplicațiilor să folosească API-ul de partajare", "Allow public uploads" : "Permite încărcări publice", - "Allow resharing" : "Permite repartajarea", "Allow users to send mail notification for shared files" : "Permite utilizatorilor sa expedieze notificări prin e-mail pentru dosarele comune", + "Allow resharing" : "Permite repartajarea", "Forces the clients to connect to %s via an encrypted connection." : "Forțează clienții să se conecteze la %s folosind o conexiune sigură", "Send mode" : "Modul de expediere", "Authentication method" : "Modul de autentificare", diff --git a/settings/l10n/ru.js b/settings/l10n/ru.js index 863e74ba137..9c90da5d62a 100644 --- a/settings/l10n/ru.js +++ b/settings/l10n/ru.js @@ -10,8 +10,6 @@ OC.L10N.register( "Authentication error" : "Ошибка аутентификации", "Your full name has been changed." : "Ваше полное имя было изменено.", "Unable to change full name" : "Невозможно изменить полное имя", - "Group already exists" : "Группа уже существует", - "Unable to add group" : "Невозможно добавить группу", "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" : "Ошибка при дешифровании файлов. Проверьте Ваш пароль и повторите попытку", @@ -20,8 +18,6 @@ OC.L10N.register( "Couldn't remove app." : "Невозможно удалить приложение.", "Email saved" : "Email сохранен", "Invalid email" : "Неправильный Email", - "Unable to delete group" : "Невозможно удалить группу", - "Unable to delete user" : "Невозможно удалить пользователя", "Backups restored successfully" : "Резервная копия успешно восстановлена", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Не получается восстановить ваши ключи шифрования, пожалуйста проверьте файл owncloud.log или обратитесь к Администратору.", "Language changed" : "Язык изменён", @@ -39,12 +35,17 @@ OC.L10N.register( "Enabled" : "Включено", "Not enabled" : "Выключено", "Recommended" : "Рекомендовано", + "Group already exists." : "Группа уже существует.", + "Unable to add group." : "Невозможно добавить группу.", + "Unable to delete group." : "Невозможно удалить группу.", "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." : "Вы должны настроить свой e-mail пользователя прежде чем отправлять тестовые сообщения.", + "Unable to create user." : "Невозможно создать пользователя.", + "Unable to delete user." : "Невозможно удалить пользователя.", "Are you really sure you want add \"{domain}\" as trusted domain?" : "Вы действительно хотите добавить домен \"{domain}\" как доверенный?", "Add trusted domain" : "Добавить доверенный домен", "Sending..." : "Отправляется ...", @@ -102,7 +103,6 @@ OC.L10N.register( "TLS" : "TLS", "Security Warning" : "Предупреждение безопасности", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Вы обращаетесь к %s используя HTTP. Мы настоятельно рекомендуем вам настроить сервер на использование HTTPS.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Похоже, что папка с Вашими данными и Ваши файлы доступны из интернета. Файл .htaccess не работает. Мы настойчиво предлагаем Вам сконфигурировать вебсервер таким образом, чтобы папка с Вашими данными более не была доступна или переместите папку с данными куда-нибудь в другое место вне основной папки документов вебсервера.", "Setup Warning" : "Предупреждение установки", "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.", @@ -118,7 +118,6 @@ OC.L10N.register( "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Мы рекомендуем установить требуемые пакеты для вашей системы для поддержки одного из следующих языков: %s.", "URL generation in notification emails" : "Генерирование URL в уведомляющих электронных письмах", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Если ваша копия ownCloud установлена не в корне домена и использует планировщик cron системы, возможны проблемы с правильной генерацией URL. Чтобы избежать этого, установите опцию verwritewebroot файла config.php равной пути папки установки. (Вероятно, это \"%s\".)", - "Connectivity 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.", @@ -131,13 +130,13 @@ OC.L10N.register( "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 " : "Заканчивается через", "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" : "Разрешить пользователю оповещать почтой о расшаренных файлах", "Exclude groups from sharing" : "Исключить группы из общего доступа", "These groups will still be able to receive shares, but not to initiate them." : "Эти группы смогут получать общие файлы, но не смогут отправлять их.", "Enforce HTTPS" : "HTTPS соединение обязательно", diff --git a/settings/l10n/ru.json b/settings/l10n/ru.json index 052861fd163..59e22320d5c 100644 --- a/settings/l10n/ru.json +++ b/settings/l10n/ru.json @@ -8,8 +8,6 @@ "Authentication error" : "Ошибка аутентификации", "Your full name has been changed." : "Ваше полное имя было изменено.", "Unable to change full name" : "Невозможно изменить полное имя", - "Group already exists" : "Группа уже существует", - "Unable to add group" : "Невозможно добавить группу", "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" : "Ошибка при дешифровании файлов. Проверьте Ваш пароль и повторите попытку", @@ -18,8 +16,6 @@ "Couldn't remove app." : "Невозможно удалить приложение.", "Email saved" : "Email сохранен", "Invalid email" : "Неправильный Email", - "Unable to delete group" : "Невозможно удалить группу", - "Unable to delete user" : "Невозможно удалить пользователя", "Backups restored successfully" : "Резервная копия успешно восстановлена", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Не получается восстановить ваши ключи шифрования, пожалуйста проверьте файл owncloud.log или обратитесь к Администратору.", "Language changed" : "Язык изменён", @@ -37,12 +33,17 @@ "Enabled" : "Включено", "Not enabled" : "Выключено", "Recommended" : "Рекомендовано", + "Group already exists." : "Группа уже существует.", + "Unable to add group." : "Невозможно добавить группу.", + "Unable to delete group." : "Невозможно удалить группу.", "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." : "Вы должны настроить свой e-mail пользователя прежде чем отправлять тестовые сообщения.", + "Unable to create user." : "Невозможно создать пользователя.", + "Unable to delete user." : "Невозможно удалить пользователя.", "Are you really sure you want add \"{domain}\" as trusted domain?" : "Вы действительно хотите добавить домен \"{domain}\" как доверенный?", "Add trusted domain" : "Добавить доверенный домен", "Sending..." : "Отправляется ...", @@ -100,7 +101,6 @@ "TLS" : "TLS", "Security Warning" : "Предупреждение безопасности", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Вы обращаетесь к %s используя HTTP. Мы настоятельно рекомендуем вам настроить сервер на использование HTTPS.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Похоже, что папка с Вашими данными и Ваши файлы доступны из интернета. Файл .htaccess не работает. Мы настойчиво предлагаем Вам сконфигурировать вебсервер таким образом, чтобы папка с Вашими данными более не была доступна или переместите папку с данными куда-нибудь в другое место вне основной папки документов вебсервера.", "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.", @@ -116,7 +116,6 @@ "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Мы рекомендуем установить требуемые пакеты для вашей системы для поддержки одного из следующих языков: %s.", "URL generation in notification emails" : "Генерирование URL в уведомляющих электронных письмах", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Если ваша копия ownCloud установлена не в корне домена и использует планировщик cron системы, возможны проблемы с правильной генерацией URL. Чтобы избежать этого, установите опцию verwritewebroot файла config.php равной пути папки установки. (Вероятно, это \"%s\".)", - "Connectivity 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.", @@ -129,13 +128,13 @@ "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 " : "Заканчивается через", "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" : "Разрешить пользователю оповещать почтой о расшаренных файлах", "Exclude groups from sharing" : "Исключить группы из общего доступа", "These groups will still be able to receive shares, but not to initiate them." : "Эти группы смогут получать общие файлы, но не смогут отправлять их.", "Enforce HTTPS" : "HTTPS соединение обязательно", diff --git a/settings/l10n/si_LK.js b/settings/l10n/si_LK.js index 26a22fa84b7..9f35f599a57 100644 --- a/settings/l10n/si_LK.js +++ b/settings/l10n/si_LK.js @@ -4,12 +4,8 @@ OC.L10N.register( "Sharing" : "හුවමාරු කිරීම", "Log" : "ලඝුව", "Authentication error" : "සත්යාපන දෝෂයක්", - "Group already exists" : "කණ්ඩායම දැනටමත් තිබේ", - "Unable to add group" : "කාණඩයක් එක් කළ නොහැකි විය", "Email saved" : "වි-තැපෑල සුරකින ලදී", "Invalid email" : "අවලංගු වි-තැපෑල", - "Unable to delete group" : "කණ්ඩායම මැකීමට නොහැක", - "Unable to delete user" : "පරිශීලකයා මැකීමට නොහැක", "Language changed" : "භාෂාව ාවනස් කිරීම", "Invalid request" : "අවලංගු අයැදුමක්", "Unable to add user to group %s" : "පරිශීලකයා %s කණ්ඩායමට එකතු කළ නොහැක", diff --git a/settings/l10n/si_LK.json b/settings/l10n/si_LK.json index c67f65c9b87..8b631fd8df7 100644 --- a/settings/l10n/si_LK.json +++ b/settings/l10n/si_LK.json @@ -2,12 +2,8 @@ "Sharing" : "හුවමාරු කිරීම", "Log" : "ලඝුව", "Authentication error" : "සත්යාපන දෝෂයක්", - "Group already exists" : "කණ්ඩායම දැනටමත් තිබේ", - "Unable to add group" : "කාණඩයක් එක් කළ නොහැකි විය", "Email saved" : "වි-තැපෑල සුරකින ලදී", "Invalid email" : "අවලංගු වි-තැපෑල", - "Unable to delete group" : "කණ්ඩායම මැකීමට නොහැක", - "Unable to delete user" : "පරිශීලකයා මැකීමට නොහැක", "Language changed" : "භාෂාව ාවනස් කිරීම", "Invalid request" : "අවලංගු අයැදුමක්", "Unable to add user to group %s" : "පරිශීලකයා %s කණ්ඩායමට එකතු කළ නොහැක", diff --git a/settings/l10n/sk_SK.js b/settings/l10n/sk_SK.js index 3d9fe53c946..a90ba60bedf 100644 --- a/settings/l10n/sk_SK.js +++ b/settings/l10n/sk_SK.js @@ -10,8 +10,6 @@ OC.L10N.register( "Authentication error" : "Chyba autentifikácie", "Your full name has been changed." : "Vaše meno a priezvisko bolo zmenené.", "Unable to change full name" : "Nemožno zmeniť meno a priezvisko", - "Group already exists" : "Skupina už existuje", - "Unable to add group" : "Nie je možné pridať skupinu", "Files decrypted successfully" : "Súbory sú úspešne dešifrované", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Nemožno dešifrovať vaše súbory, skontrolujte svoj owncloud.log alebo požiadajte o pomoc adminstrátora", "Couldn't decrypt your files, check your password and try again" : "Nemožno dešifrovať vaše súbory, skontrolujte svoje heslo a skúste to znova", @@ -20,8 +18,6 @@ OC.L10N.register( "Couldn't remove app." : "Nemožno odstrániť aplikáciu.", "Email saved" : "Email uložený", "Invalid email" : "Neplatný email", - "Unable to delete group" : "Nie je možné odstrániť skupinu", - "Unable to delete user" : "Nie je možné odstrániť používateľa", "Backups restored successfully" : "Zálohy boli úspešne obnovené", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Nebolo možné obnoviť vaše šifrovacie kľúče, skontrolujte si prosím owncloud.log alebo kontaktujte svojho správcu", "Language changed" : "Jazyk zmenený", @@ -102,7 +98,6 @@ 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.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Váš priečinok s dátami aj vaše súbory sú pravdepodobne prístupné z internetu. Súbor .htaccess nefunguje. Odporúčame nakonfigurovať webový server tak, aby priečinok s dátami nebol naďalej prístupný, alebo presunúť priečinok s dátami mimo priestor sprístupňovaný webovým serverom.", "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.", @@ -117,7 +112,6 @@ OC.L10N.register( "This means that there might be problems with certain characters in file names." : "To znamená, že sa môžu vyskytnúť problémy s niektorými znakmi v názvoch súborov.", "URL generation in notification emails" : "Generovanie adresy URL v oznamovacích emailoch", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Inštalácia mimo koreňový priečinok domény a používanie systémového príkazu cron môže spôsobiť problém s generovaním správnej URL. Pre zabránenie týmto chybám nastavte prosím správnu cestu v svojom config.php súbore pre hodnotu \"overwritewebroot\" (Doporučujeme: \"%s\")", - "Connectivity Checks" : "Overovanie pripojenia", "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.", @@ -130,13 +124,13 @@ OC.L10N.register( "Allow users to share via link" : "Povoliť používateľom zdieľanie pomocou odkazov", "Enforce password protection" : "Vynútiť ochranu heslom", "Allow public uploads" : "Povoliť verejné nahrávanie súborov", + "Allow users to send mail notification for shared files" : "Povoliť používateľom zasielať emailom oznámenie o zdieľaní súborov", "Set default expiration date" : "Nastaviť predvolený dátum expirácie", "Expire after " : "Platnosť do", "days" : "dni", "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" : "Povoliť používateľom zasielať emailom oznámenie o zdieľaní súborov", "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", diff --git a/settings/l10n/sk_SK.json b/settings/l10n/sk_SK.json index 95c4c76b74b..081a94e66de 100644 --- a/settings/l10n/sk_SK.json +++ b/settings/l10n/sk_SK.json @@ -8,8 +8,6 @@ "Authentication error" : "Chyba autentifikácie", "Your full name has been changed." : "Vaše meno a priezvisko bolo zmenené.", "Unable to change full name" : "Nemožno zmeniť meno a priezvisko", - "Group already exists" : "Skupina už existuje", - "Unable to add group" : "Nie je možné pridať skupinu", "Files decrypted successfully" : "Súbory sú úspešne dešifrované", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Nemožno dešifrovať vaše súbory, skontrolujte svoj owncloud.log alebo požiadajte o pomoc adminstrátora", "Couldn't decrypt your files, check your password and try again" : "Nemožno dešifrovať vaše súbory, skontrolujte svoje heslo a skúste to znova", @@ -18,8 +16,6 @@ "Couldn't remove app." : "Nemožno odstrániť aplikáciu.", "Email saved" : "Email uložený", "Invalid email" : "Neplatný email", - "Unable to delete group" : "Nie je možné odstrániť skupinu", - "Unable to delete user" : "Nie je možné odstrániť používateľa", "Backups restored successfully" : "Zálohy boli úspešne obnovené", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Nebolo možné obnoviť vaše šifrovacie kľúče, skontrolujte si prosím owncloud.log alebo kontaktujte svojho správcu", "Language changed" : "Jazyk zmenený", @@ -100,7 +96,6 @@ "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.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Váš priečinok s dátami aj vaše súbory sú pravdepodobne prístupné z internetu. Súbor .htaccess nefunguje. Odporúčame nakonfigurovať webový server tak, aby priečinok s dátami nebol naďalej prístupný, alebo presunúť priečinok s dátami mimo priestor sprístupňovaný webovým serverom.", "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.", @@ -115,7 +110,6 @@ "This means that there might be problems with certain characters in file names." : "To znamená, že sa môžu vyskytnúť problémy s niektorými znakmi v názvoch súborov.", "URL generation in notification emails" : "Generovanie adresy URL v oznamovacích emailoch", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Inštalácia mimo koreňový priečinok domény a používanie systémového príkazu cron môže spôsobiť problém s generovaním správnej URL. Pre zabránenie týmto chybám nastavte prosím správnu cestu v svojom config.php súbore pre hodnotu \"overwritewebroot\" (Doporučujeme: \"%s\")", - "Connectivity Checks" : "Overovanie pripojenia", "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,13 +122,13 @@ "Allow users to share via link" : "Povoliť používateľom zdieľanie pomocou odkazov", "Enforce password protection" : "Vynútiť ochranu heslom", "Allow public uploads" : "Povoliť verejné nahrávanie súborov", + "Allow users to send mail notification for shared files" : "Povoliť používateľom zasielať emailom oznámenie o zdieľaní súborov", "Set default expiration date" : "Nastaviť predvolený dátum expirácie", "Expire after " : "Platnosť do", "days" : "dni", "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" : "Povoliť používateľom zasielať emailom oznámenie o zdieľaní súborov", "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", diff --git a/settings/l10n/sl.js b/settings/l10n/sl.js index cd8a932499d..6d155adfa9e 100644 --- a/settings/l10n/sl.js +++ b/settings/l10n/sl.js @@ -10,8 +10,6 @@ OC.L10N.register( "Authentication error" : "Napaka med overjanjem", "Your full name has been changed." : "Vaše polno ime je spremenjeno.", "Unable to change full name" : "Ni mogoče spremeniti polnega imena", - "Group already exists" : "Skupina že obstaja", - "Unable to add group" : "Skupine ni mogoče dodati", "Files decrypted successfully" : "Datoteke so uspešno odšifrirane", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Datotek ni mogoče odšifrirati. Preverite dnevnik owncloud.log ali pa se posvetujte s skrbnikom.", "Couldn't decrypt your files, check your password and try again" : "Datotek ni mogoče odšifrirati. Preverite geslo in poskusite znova.", @@ -20,8 +18,6 @@ OC.L10N.register( "Couldn't remove app." : "Ni mogoče odstraniti programa.", "Email saved" : "Elektronski naslov je shranjen", "Invalid email" : "Neveljaven elektronski naslov", - "Unable to delete group" : "Skupine ni mogoče izbrisati", - "Unable to delete user" : "Uporabnika ni mogoče izbrisati", "Backups restored successfully" : "Varnostne kopije so uspešno obnovljene.", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Ni mogoče obnoviti šifrirnih ključev. Preverite dnevnik owncloud.log ali pa stopite v stik s skrbnikom sistema.", "Language changed" : "Jezik je spremenjen", @@ -102,7 +98,6 @@ OC.L10N.register( "TLS" : "TLS", "Security Warning" : "Varnostno opozorilo", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Dostop do %s poteka preko HTTP. Priporočljivo je nastaviti strežnik na privzeto uporabo varne povezave preko protokola HTTPS.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Vaša podatkovna mapa in datoteke so najverjetneje dosegljive preko interneta. Datoteka .htaccess ni ustrezno nastavljena. Priporočljivo je nastaviti spletni strežnik tako, da podatkovna mapa ni prosto dostopna. To je mogoče zagotoviti tudi tako, da je mapa premaknjena iz neustrezne korenske v podrejeno mapo .", "Setup Warning" : "Opozorilo nastavitve", "Database Performance Info" : "Podrobnosti delovanja podatkovne zbirke", "Module 'fileinfo' missing" : "Manjka modul 'fileinfo'.", @@ -112,7 +107,6 @@ OC.L10N.register( "System locale can not be set to a one which supports UTF-8." : "Sistemskih jezikovnih nastavitev ni mogoče nastaviti na možnost, ki podpira nabor UTF-8.", "This means that there might be problems with certain characters in file names." : "To pomeni, da se lahko pojavijo napake pri nekaterih znakih v imenih datotek.", "URL generation in notification emails" : "Ustvarjanje naslova URL v elektronskih sporočilih", - "Connectivity Checks" : "Preverjanje povezav", "No problems found" : "Ni zaznanih težav", "Please double check the <a href='%s'>installation guides</a>." : "Preverite <a href='%s'>navodila namestitve</a>.", "Last cron was executed at %s." : "Zadnje periodično opravilo cron je bilo izvedeno ob %s.", @@ -125,13 +119,13 @@ OC.L10N.register( "Allow users to share via link" : "Uporabnikom dovoli omogočanje souporabe s povezavami", "Enforce password protection" : "Vsili zaščito z geslom", "Allow public uploads" : "Dovoli javno pošiljanje datotek v oblak", + "Allow users to send mail notification for shared files" : "Dovoli uporabnikom pošiljati obvestila o souporabi datotek po elektronski pošti.", "Set default expiration date" : "Nastavitev privzetega datuma poteka", "Expire after " : "Preteče po", "days" : "dneh", "Enforce expiration date" : "Vsili datum preteka", "Allow resharing" : "Dovoli nadaljnjo souporabo", "Restrict users to only share with users in their groups" : "Uporabnikom dovoli omogočanje souporabe le znotraj njihove skupine", - "Allow users to send mail notification for shared files" : "Dovoli uporabnikom pošiljati obvestila o souporabi datotek po elektronski pošti.", "Exclude groups from sharing" : "Izloči skupine iz souporabe", "These groups will still be able to receive shares, but not to initiate them." : "Te skupine lahko sprejemajo mape v souporabo, ne morejo pa souporabe dovoliti", "Enforce HTTPS" : "Zahtevaj uporabo HTTPS", diff --git a/settings/l10n/sl.json b/settings/l10n/sl.json index 831ca55d515..f477315640d 100644 --- a/settings/l10n/sl.json +++ b/settings/l10n/sl.json @@ -8,8 +8,6 @@ "Authentication error" : "Napaka med overjanjem", "Your full name has been changed." : "Vaše polno ime je spremenjeno.", "Unable to change full name" : "Ni mogoče spremeniti polnega imena", - "Group already exists" : "Skupina že obstaja", - "Unable to add group" : "Skupine ni mogoče dodati", "Files decrypted successfully" : "Datoteke so uspešno odšifrirane", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Datotek ni mogoče odšifrirati. Preverite dnevnik owncloud.log ali pa se posvetujte s skrbnikom.", "Couldn't decrypt your files, check your password and try again" : "Datotek ni mogoče odšifrirati. Preverite geslo in poskusite znova.", @@ -18,8 +16,6 @@ "Couldn't remove app." : "Ni mogoče odstraniti programa.", "Email saved" : "Elektronski naslov je shranjen", "Invalid email" : "Neveljaven elektronski naslov", - "Unable to delete group" : "Skupine ni mogoče izbrisati", - "Unable to delete user" : "Uporabnika ni mogoče izbrisati", "Backups restored successfully" : "Varnostne kopije so uspešno obnovljene.", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Ni mogoče obnoviti šifrirnih ključev. Preverite dnevnik owncloud.log ali pa stopite v stik s skrbnikom sistema.", "Language changed" : "Jezik je spremenjen", @@ -100,7 +96,6 @@ "TLS" : "TLS", "Security Warning" : "Varnostno opozorilo", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Dostop do %s poteka preko HTTP. Priporočljivo je nastaviti strežnik na privzeto uporabo varne povezave preko protokola HTTPS.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Vaša podatkovna mapa in datoteke so najverjetneje dosegljive preko interneta. Datoteka .htaccess ni ustrezno nastavljena. Priporočljivo je nastaviti spletni strežnik tako, da podatkovna mapa ni prosto dostopna. To je mogoče zagotoviti tudi tako, da je mapa premaknjena iz neustrezne korenske v podrejeno mapo .", "Setup Warning" : "Opozorilo nastavitve", "Database Performance Info" : "Podrobnosti delovanja podatkovne zbirke", "Module 'fileinfo' missing" : "Manjka modul 'fileinfo'.", @@ -110,7 +105,6 @@ "System locale can not be set to a one which supports UTF-8." : "Sistemskih jezikovnih nastavitev ni mogoče nastaviti na možnost, ki podpira nabor UTF-8.", "This means that there might be problems with certain characters in file names." : "To pomeni, da se lahko pojavijo napake pri nekaterih znakih v imenih datotek.", "URL generation in notification emails" : "Ustvarjanje naslova URL v elektronskih sporočilih", - "Connectivity Checks" : "Preverjanje povezav", "No problems found" : "Ni zaznanih težav", "Please double check the <a href='%s'>installation guides</a>." : "Preverite <a href='%s'>navodila namestitve</a>.", "Last cron was executed at %s." : "Zadnje periodično opravilo cron je bilo izvedeno ob %s.", @@ -123,13 +117,13 @@ "Allow users to share via link" : "Uporabnikom dovoli omogočanje souporabe s povezavami", "Enforce password protection" : "Vsili zaščito z geslom", "Allow public uploads" : "Dovoli javno pošiljanje datotek v oblak", + "Allow users to send mail notification for shared files" : "Dovoli uporabnikom pošiljati obvestila o souporabi datotek po elektronski pošti.", "Set default expiration date" : "Nastavitev privzetega datuma poteka", "Expire after " : "Preteče po", "days" : "dneh", "Enforce expiration date" : "Vsili datum preteka", "Allow resharing" : "Dovoli nadaljnjo souporabo", "Restrict users to only share with users in their groups" : "Uporabnikom dovoli omogočanje souporabe le znotraj njihove skupine", - "Allow users to send mail notification for shared files" : "Dovoli uporabnikom pošiljati obvestila o souporabi datotek po elektronski pošti.", "Exclude groups from sharing" : "Izloči skupine iz souporabe", "These groups will still be able to receive shares, but not to initiate them." : "Te skupine lahko sprejemajo mape v souporabo, ne morejo pa souporabe dovoliti", "Enforce HTTPS" : "Zahtevaj uporabo HTTPS", diff --git a/settings/l10n/sq.js b/settings/l10n/sq.js index fbb926feeb7..9a28e9d7f77 100644 --- a/settings/l10n/sq.js +++ b/settings/l10n/sq.js @@ -10,8 +10,6 @@ OC.L10N.register( "Authentication error" : "Gabim autentifikimi", "Your full name has been changed." : "Emri juaj i plotë ka ndryshuar.", "Unable to change full name" : "Nuk mund të ndryshohet emri i plotë", - "Group already exists" : "Grupi ekziston", - "Unable to add group" : "E pamundur të shtohet grupi", "Files decrypted successfully" : "Skedarët janë dëshifruar me sukses", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Nuk mund të dëshifrohen skedarët tuaj, ju lutem kontrolloni owncloud.log ose pyesni administratorin tuaj.", "Couldn't decrypt your files, check your password and try again" : "Nuk mund të dëshifrohen skedarët tuaj, ju lutem kontrolloni fjalëkalimin tuaj dhe provoni përsëri.", @@ -20,8 +18,6 @@ OC.L10N.register( "Couldn't remove app." : "Nuk mund të hiqet aplikacioni.", "Email saved" : "Email u ruajt", "Invalid email" : "Email jo i vlefshëm", - "Unable to delete group" : "E pamundur të fshihet grupi", - "Unable to delete user" : "E pamundur të fshihet përdoruesi", "Backups restored successfully" : "Kopjet rezervë u restauruan me sukses", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Nuk mund të restaurohen çelësat tuaj të shifrimit, ju lutem kontrolloni owncloud.log ose pyesni administratorin tuaj.", "Language changed" : "Gjuha u ndryshua", diff --git a/settings/l10n/sq.json b/settings/l10n/sq.json index 2fa9c2f6d17..bc1a84a81b1 100644 --- a/settings/l10n/sq.json +++ b/settings/l10n/sq.json @@ -8,8 +8,6 @@ "Authentication error" : "Gabim autentifikimi", "Your full name has been changed." : "Emri juaj i plotë ka ndryshuar.", "Unable to change full name" : "Nuk mund të ndryshohet emri i plotë", - "Group already exists" : "Grupi ekziston", - "Unable to add group" : "E pamundur të shtohet grupi", "Files decrypted successfully" : "Skedarët janë dëshifruar me sukses", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Nuk mund të dëshifrohen skedarët tuaj, ju lutem kontrolloni owncloud.log ose pyesni administratorin tuaj.", "Couldn't decrypt your files, check your password and try again" : "Nuk mund të dëshifrohen skedarët tuaj, ju lutem kontrolloni fjalëkalimin tuaj dhe provoni përsëri.", @@ -18,8 +16,6 @@ "Couldn't remove app." : "Nuk mund të hiqet aplikacioni.", "Email saved" : "Email u ruajt", "Invalid email" : "Email jo i vlefshëm", - "Unable to delete group" : "E pamundur të fshihet grupi", - "Unable to delete user" : "E pamundur të fshihet përdoruesi", "Backups restored successfully" : "Kopjet rezervë u restauruan me sukses", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Nuk mund të restaurohen çelësat tuaj të shifrimit, ju lutem kontrolloni owncloud.log ose pyesni administratorin tuaj.", "Language changed" : "Gjuha u ndryshua", diff --git a/settings/l10n/sr.js b/settings/l10n/sr.js index e8952f96ef1..115fe320757 100644 --- a/settings/l10n/sr.js +++ b/settings/l10n/sr.js @@ -5,12 +5,8 @@ OC.L10N.register( "Security" : "Безбедност", "Log" : "Бележење", "Authentication error" : "Грешка при провери идентитета", - "Group already exists" : "Група већ постоји", - "Unable to add group" : "Не могу да додам групу", "Email saved" : "Е-порука сачувана", "Invalid email" : "Неисправна е-адреса", - "Unable to delete group" : "Не могу да уклоним групу", - "Unable to delete user" : "Не могу да уклоним корисника", "Language changed" : "Језик је промењен", "Invalid request" : "Неисправан захтев", "Admins can't remove themself from the admin group" : "Управници не могу себе уклонити из админ групе", diff --git a/settings/l10n/sr.json b/settings/l10n/sr.json index 492f66dae51..1c80869dea3 100644 --- a/settings/l10n/sr.json +++ b/settings/l10n/sr.json @@ -3,12 +3,8 @@ "Security" : "Безбедност", "Log" : "Бележење", "Authentication error" : "Грешка при провери идентитета", - "Group already exists" : "Група већ постоји", - "Unable to add group" : "Не могу да додам групу", "Email saved" : "Е-порука сачувана", "Invalid email" : "Неисправна е-адреса", - "Unable to delete group" : "Не могу да уклоним групу", - "Unable to delete user" : "Не могу да уклоним корисника", "Language changed" : "Језик је промењен", "Invalid request" : "Неисправан захтев", "Admins can't remove themself from the admin group" : "Управници не могу себе уклонити из админ групе", diff --git a/settings/l10n/sv.js b/settings/l10n/sv.js index ca4fac8cdd1..32b10e55ee7 100644 --- a/settings/l10n/sv.js +++ b/settings/l10n/sv.js @@ -9,8 +9,6 @@ OC.L10N.register( "Authentication error" : "Fel vid autentisering", "Your full name has been changed." : "Hela ditt namn har ändrats", "Unable to change full name" : "Kunde inte ändra hela namnet", - "Group already exists" : "Gruppen finns redan", - "Unable to add group" : "Kan inte lägga till grupp", "Files decrypted successfully" : "Filerna dekrypterades utan fel", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Det gick inte att dekryptera dina filer, kontrollera din owncloud.log eller fråga administratören", "Couldn't decrypt your files, check your password and try again" : "Det gick inte att dekryptera filerna, kontrollera ditt lösenord och försök igen", @@ -19,8 +17,6 @@ OC.L10N.register( "Couldn't remove app." : "Kunde inte ta bort applikationen.", "Email saved" : "E-post sparad", "Invalid email" : "Ogiltig e-post", - "Unable to delete group" : "Kan inte radera grupp", - "Unable to delete user" : "Kan inte radera användare", "Backups restored successfully" : "Återställning av säkerhetskopior lyckades", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Kan inte återställa dina krypteringsnycklar, vänligen kontrollera din owncloud.log eller fråga din administratör.", "Language changed" : "Språk ändrades", @@ -98,7 +94,6 @@ OC.L10N.register( "TLS" : "TLS", "Security Warning" : "Säkerhetsvarning", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Du ansluter till %s via HTTP. Vi rekommenderar starkt att du konfigurerar din server att använda HTTPS istället.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Din datakatalog och dina filer är förmodligen åtkomliga från internet. Filen .htaccess fungerar inte. Vi rekommenderar starkt att du konfigurerar din webbserver så att datakatalogen inte längre är åtkomlig eller du flyttar datakatalogen utanför webbserverns rotkatalog.", "Setup Warning" : "Installationsvarning", "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'", @@ -117,13 +112,13 @@ OC.L10N.register( "Allow users to share via link" : "Tillåt användare att dela via länk", "Enforce password protection" : "Tillämpa lösenordskydd", "Allow public uploads" : "Tillåt offentlig uppladdning", + "Allow users to send mail notification for shared files" : "Tillåt användare att skicka mailnotifieringar för delade filer", "Set default expiration date" : "Ställ in standardutgångsdatum", "Expire after " : "Förfaller efter", "days" : "dagar", "Enforce expiration date" : "Tillämpa förfallodatum", "Allow resharing" : "Tillåt vidaredelning", "Restrict users to only share with users in their groups" : "Begränsa användare till att enbart kunna dela med användare i deras grupper", - "Allow users to send mail notification for shared files" : "Tillåt användare att skicka mailnotifieringar för delade filer", "Exclude groups from sharing" : "Exkludera grupp från att dela", "These groups will still be able to receive shares, but not to initiate them." : "Dessa grupper kommer fortfarande kunna ta emot delningar, men inte skapa delningar.", "Enforce HTTPS" : "Kräv HTTPS", diff --git a/settings/l10n/sv.json b/settings/l10n/sv.json index d3e685a8432..3e447557a32 100644 --- a/settings/l10n/sv.json +++ b/settings/l10n/sv.json @@ -7,8 +7,6 @@ "Authentication error" : "Fel vid autentisering", "Your full name has been changed." : "Hela ditt namn har ändrats", "Unable to change full name" : "Kunde inte ändra hela namnet", - "Group already exists" : "Gruppen finns redan", - "Unable to add group" : "Kan inte lägga till grupp", "Files decrypted successfully" : "Filerna dekrypterades utan fel", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Det gick inte att dekryptera dina filer, kontrollera din owncloud.log eller fråga administratören", "Couldn't decrypt your files, check your password and try again" : "Det gick inte att dekryptera filerna, kontrollera ditt lösenord och försök igen", @@ -17,8 +15,6 @@ "Couldn't remove app." : "Kunde inte ta bort applikationen.", "Email saved" : "E-post sparad", "Invalid email" : "Ogiltig e-post", - "Unable to delete group" : "Kan inte radera grupp", - "Unable to delete user" : "Kan inte radera användare", "Backups restored successfully" : "Återställning av säkerhetskopior lyckades", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Kan inte återställa dina krypteringsnycklar, vänligen kontrollera din owncloud.log eller fråga din administratör.", "Language changed" : "Språk ändrades", @@ -96,7 +92,6 @@ "TLS" : "TLS", "Security Warning" : "Säkerhetsvarning", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Du ansluter till %s via HTTP. Vi rekommenderar starkt att du konfigurerar din server att använda HTTPS istället.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Din datakatalog och dina filer är förmodligen åtkomliga från internet. Filen .htaccess fungerar inte. Vi rekommenderar starkt att du konfigurerar din webbserver så att datakatalogen inte längre är åtkomlig eller du flyttar datakatalogen utanför webbserverns rotkatalog.", "Setup Warning" : "Installationsvarning", "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'", @@ -115,13 +110,13 @@ "Allow users to share via link" : "Tillåt användare att dela via länk", "Enforce password protection" : "Tillämpa lösenordskydd", "Allow public uploads" : "Tillåt offentlig uppladdning", + "Allow users to send mail notification for shared files" : "Tillåt användare att skicka mailnotifieringar för delade filer", "Set default expiration date" : "Ställ in standardutgångsdatum", "Expire after " : "Förfaller efter", "days" : "dagar", "Enforce expiration date" : "Tillämpa förfallodatum", "Allow resharing" : "Tillåt vidaredelning", "Restrict users to only share with users in their groups" : "Begränsa användare till att enbart kunna dela med användare i deras grupper", - "Allow users to send mail notification for shared files" : "Tillåt användare att skicka mailnotifieringar för delade filer", "Exclude groups from sharing" : "Exkludera grupp från att dela", "These groups will still be able to receive shares, but not to initiate them." : "Dessa grupper kommer fortfarande kunna ta emot delningar, men inte skapa delningar.", "Enforce HTTPS" : "Kräv HTTPS", diff --git a/settings/l10n/ta_LK.js b/settings/l10n/ta_LK.js index 5cfa80a5476..d8b7b36d2f4 100644 --- a/settings/l10n/ta_LK.js +++ b/settings/l10n/ta_LK.js @@ -2,12 +2,8 @@ OC.L10N.register( "settings", { "Authentication error" : "அத்தாட்சிப்படுத்தலில் வழு", - "Group already exists" : "குழு ஏற்கனவே உள்ளது", - "Unable to add group" : "குழுவை சேர்க்க முடியாது", "Email saved" : "மின்னஞ்சல் சேமிக்கப்பட்டது", "Invalid email" : "செல்லுபடியற்ற மின்னஞ்சல்", - "Unable to delete group" : "குழுவை நீக்க முடியாது", - "Unable to delete user" : "பயனாளரை நீக்க முடியாது", "Language changed" : "மொழி மாற்றப்பட்டது", "Invalid request" : "செல்லுபடியற்ற வேண்டுகோள்", "Unable to add user to group %s" : "குழு %s இல் பயனாளரை சேர்க்க முடியாது", diff --git a/settings/l10n/ta_LK.json b/settings/l10n/ta_LK.json index 0486b838403..1f508c2af4e 100644 --- a/settings/l10n/ta_LK.json +++ b/settings/l10n/ta_LK.json @@ -1,11 +1,7 @@ { "translations": { "Authentication error" : "அத்தாட்சிப்படுத்தலில் வழு", - "Group already exists" : "குழு ஏற்கனவே உள்ளது", - "Unable to add group" : "குழுவை சேர்க்க முடியாது", "Email saved" : "மின்னஞ்சல் சேமிக்கப்பட்டது", "Invalid email" : "செல்லுபடியற்ற மின்னஞ்சல்", - "Unable to delete group" : "குழுவை நீக்க முடியாது", - "Unable to delete user" : "பயனாளரை நீக்க முடியாது", "Language changed" : "மொழி மாற்றப்பட்டது", "Invalid request" : "செல்லுபடியற்ற வேண்டுகோள்", "Unable to add user to group %s" : "குழு %s இல் பயனாளரை சேர்க்க முடியாது", diff --git a/settings/l10n/th_TH.js b/settings/l10n/th_TH.js index 5f331a3c4fd..56062eaa1cb 100644 --- a/settings/l10n/th_TH.js +++ b/settings/l10n/th_TH.js @@ -5,12 +5,8 @@ OC.L10N.register( "Sharing" : "การแชร์ข้อมูล", "Log" : "บันทึกการเปลี่ยนแปลง", "Authentication error" : "เกิดข้อผิดพลาดในสิทธิ์การเข้าใช้งาน", - "Group already exists" : "มีกลุ่มดังกล่าวอยู่ในระบบอยู่แล้ว", - "Unable to add group" : "ไม่สามารถเพิ่มกลุ่มได้", "Email saved" : "อีเมลถูกบันทึกแล้ว", "Invalid email" : "อีเมลไม่ถูกต้อง", - "Unable to delete group" : "ไม่สามารถลบกลุ่มได้", - "Unable to delete user" : "ไม่สามารถลบผู้ใช้งานได้", "Language changed" : "เปลี่ยนภาษาเรียบร้อยแล้ว", "Invalid request" : "คำร้องขอไม่ถูกต้อง", "Admins can't remove themself from the admin group" : "ผู้ดูแลระบบไม่สามารถลบตัวเองออกจากกลุ่มผู้ดูแลได้", diff --git a/settings/l10n/th_TH.json b/settings/l10n/th_TH.json index 42eee4fa737..588ed635232 100644 --- a/settings/l10n/th_TH.json +++ b/settings/l10n/th_TH.json @@ -3,12 +3,8 @@ "Sharing" : "การแชร์ข้อมูล", "Log" : "บันทึกการเปลี่ยนแปลง", "Authentication error" : "เกิดข้อผิดพลาดในสิทธิ์การเข้าใช้งาน", - "Group already exists" : "มีกลุ่มดังกล่าวอยู่ในระบบอยู่แล้ว", - "Unable to add group" : "ไม่สามารถเพิ่มกลุ่มได้", "Email saved" : "อีเมลถูกบันทึกแล้ว", "Invalid email" : "อีเมลไม่ถูกต้อง", - "Unable to delete group" : "ไม่สามารถลบกลุ่มได้", - "Unable to delete user" : "ไม่สามารถลบผู้ใช้งานได้", "Language changed" : "เปลี่ยนภาษาเรียบร้อยแล้ว", "Invalid request" : "คำร้องขอไม่ถูกต้อง", "Admins can't remove themself from the admin group" : "ผู้ดูแลระบบไม่สามารถลบตัวเองออกจากกลุ่มผู้ดูแลได้", diff --git a/settings/l10n/tr.js b/settings/l10n/tr.js index 441f1377b96..d849829ac1b 100644 --- a/settings/l10n/tr.js +++ b/settings/l10n/tr.js @@ -10,8 +10,6 @@ OC.L10N.register( "Authentication error" : "Kimlik doğrulama hatası", "Your full name has been changed." : "Tam adınız değiştirildi.", "Unable to change full name" : "Tam adınız değiştirilirken hata", - "Group already exists" : "Grup zaten mevcut", - "Unable to add group" : "Grup eklenemiyor", "Files decrypted successfully" : "Dosyaların şifrelemesi başarıyla kaldırıldı", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Dosyalarınızın şifrelemesi kaldırılamadı, lütfen owncloud.log dosyasına bakın veya yöneticinizle iletişime geçin", "Couldn't decrypt your files, check your password and try again" : "Dosyalarınızın şifrelemesi kaldırılamadı, parolanızı denetleyip yeniden deneyin", @@ -20,8 +18,6 @@ OC.L10N.register( "Couldn't remove app." : "Uygulama kaldırılamadı.", "Email saved" : "E-posta kaydedildi", "Invalid email" : "Geçersiz e-posta", - "Unable to delete group" : "Grup silinemiyor", - "Unable to delete user" : "Kullanıcı silinemiyor", "Backups restored successfully" : "Yedekler başarıyla geri yüklendi", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Şifreleme anahtarlarınız geri yüklenemedi, lütfen owncloud.log dosyasını denetleyin veya yöneticinize danışın", "Language changed" : "Dil değiştirildi", @@ -39,12 +35,17 @@ OC.L10N.register( "Enabled" : "Etkin", "Not enabled" : "Etkin değil", "Recommended" : "Önerilen", + "Group already exists." : "Grup zaten mevcut.", + "Unable to add group." : "Grup ekleme başarısız.", + "Unable to delete group." : "Grubu silme başarısız.", "Saved" : "Kaydedildi", "test email settings" : "e-posta ayarlarını sına", "If you received this email, the settings seem to be correct." : "Eğer bu e-postayı aldıysanız, ayarlar doğru gibi görünüyor.", "A problem occurred while sending the email. Please revise your settings." : "E-posta gönderilirken bir sorun oluştu. Lütfen ayarlarınızı gözden geçirin.", "Email sent" : "E-posta gönderildi", "You need to set your user email before being able to send test emails." : "Sınama e-postaları göndermeden önce kullanıcı e-postasını ayarlamanız gerekiyor.", + "Unable to create user." : "Kullanıcı oluşturma başarısız.", + "Unable to delete user." : "Kullanıcı silme başarısız.", "Are you really sure you want add \"{domain}\" as trusted domain?" : "\"{domain}\" alan adını güvenilir alan adı olarak eklemek istediğinizden emin misiniz?", "Add trusted domain" : "Güvenilir alan adı ekle", "Sending..." : "Gönderiliyor...", @@ -102,7 +103,6 @@ OC.L10N.register( "TLS" : "TLS", "Security Warning" : "Güvenlik Uyarısı", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "%s erişiminiz HTTP aracılığıyla yapılıyor. Sunucunuzu, HTTPS kullanımını zorlamak üzere yapılandırmanızı şiddetle öneririz.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Veri dizininiz ve dosyalarınız muhtemelen İnternet üzerinden erişilebilir. .htaccess dosyası çalışmıyor. Web sunucunuzu yapılandırarak veri dizinine erişimi kapatmanızı veya veri dizinini web sunucu belge kök dizini dışına almanızı şiddetle tavsiye ederiz.", "Read-Only config enabled" : "Salt Okunur yapılandırma etkin", "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." : "Salt Okunur yapılandırma etkinleştirilmiş. Bu, bazı ayarların web arayüzü ile yapılandırılmasını önler. Ayrıca, bu dosya her güncelleme sırasında el ile yazılabilir yapılmalıdır.", "Setup Warning" : "Kurulum Uyarısı", @@ -120,7 +120,7 @@ OC.L10N.register( "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Şu dillerden birini desteklemesi için sisteminize gerekli paketleri kurmanızı şiddetle tavsiye ederiz: %s.", "URL generation in notification emails" : "Bildirim e-postalarında URL oluşturulması", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Eğer kurulumunuz alan adının köküne yapılmamışsa ve sistem cron'u kullanıyorsa, URL oluşturma ile ilgili sorunlar olabilir. Bu sorunların önüne geçmek için, kurulumunuzun web kök yolundaki config.php dosyasında \"overwritewebroot\" seçeneğini ayarlayın (Önerilen: \"%s\")", - "Connectivity Checks" : "Bağlantı Kontrolleri", + "Configuration Checks" : "Yapılandırma Kontrolleri", "No problems found" : "Hiç sorun yok", "Please double check the <a href='%s'>installation guides</a>." : "Lütfen <a href='%s'>kurulum rehberlerini</a> iki kez kontrol edin.", "Last cron was executed at %s." : "Son cron %s zamanında çalıştırıldı.", @@ -133,13 +133,14 @@ OC.L10N.register( "Allow users to share via link" : "Kullanıcıların bağlantı ile paylaşmasına izin ver", "Enforce password protection" : "Parola korumasını zorla", "Allow public uploads" : "Herkes tarafından yüklemeye izin ver", + "Allow users to send mail notification for shared files" : "Paylaşılmış dosyalar için kullanıcıların posta bildirimi göndermesine izin ver", "Set default expiration date" : "Öntanımlı son kullanma tarihini ayarla", "Expire after " : "Süre", "days" : "gün sonra dolsun", "Enforce expiration date" : "Son kullanma tarihini zorla", "Allow resharing" : "Yeniden paylaşıma izin ver", "Restrict users to only share with users in their groups" : "Kullanıcıların, dosyaları sadece kendi gruplarındaki kullanıcılarla paylaşmasına izin ver", - "Allow users to send mail notification for shared files" : "Paylaşılmış dosyalar için kullanıcıların posta bildirimi göndermesine izin ver", + "Allow users to send mail notification for shared files to other users" : "Kullanıcıların diğer kullanıcılara, paylaşılmış dosyalar için posta bildirimi göndermesine izin ver", "Exclude groups from sharing" : "Grupları paylaşma eyleminden hariç tut", "These groups will still be able to receive shares, but not to initiate them." : "Bu gruplar hala paylaşımları alabilecek, ancak başlatamayacaktır.", "Enforce HTTPS" : "HTTPS bağlantısına zorla", @@ -173,6 +174,7 @@ OC.L10N.register( "Documentation:" : "Belgelendirme:", "User Documentation" : "Kullanıcı Belgelendirmesi", "Admin Documentation" : "Yönetici Belgelendirmesi", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Bu uygulama, aşağıdaki bağımlılıklar sağlanmadığından yüklenemiyor:", "Update to %s" : "%s sürümüne güncelle", "Enable only for specific groups" : "Sadece belirli gruplar için etkinleştir", "Uninstall App" : "Uygulamayı Kaldır", diff --git a/settings/l10n/tr.json b/settings/l10n/tr.json index 188a93e0c85..e8ef562d358 100644 --- a/settings/l10n/tr.json +++ b/settings/l10n/tr.json @@ -8,8 +8,6 @@ "Authentication error" : "Kimlik doğrulama hatası", "Your full name has been changed." : "Tam adınız değiştirildi.", "Unable to change full name" : "Tam adınız değiştirilirken hata", - "Group already exists" : "Grup zaten mevcut", - "Unable to add group" : "Grup eklenemiyor", "Files decrypted successfully" : "Dosyaların şifrelemesi başarıyla kaldırıldı", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" : "Dosyalarınızın şifrelemesi kaldırılamadı, lütfen owncloud.log dosyasına bakın veya yöneticinizle iletişime geçin", "Couldn't decrypt your files, check your password and try again" : "Dosyalarınızın şifrelemesi kaldırılamadı, parolanızı denetleyip yeniden deneyin", @@ -18,8 +16,6 @@ "Couldn't remove app." : "Uygulama kaldırılamadı.", "Email saved" : "E-posta kaydedildi", "Invalid email" : "Geçersiz e-posta", - "Unable to delete group" : "Grup silinemiyor", - "Unable to delete user" : "Kullanıcı silinemiyor", "Backups restored successfully" : "Yedekler başarıyla geri yüklendi", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Şifreleme anahtarlarınız geri yüklenemedi, lütfen owncloud.log dosyasını denetleyin veya yöneticinize danışın", "Language changed" : "Dil değiştirildi", @@ -37,12 +33,17 @@ "Enabled" : "Etkin", "Not enabled" : "Etkin değil", "Recommended" : "Önerilen", + "Group already exists." : "Grup zaten mevcut.", + "Unable to add group." : "Grup ekleme başarısız.", + "Unable to delete group." : "Grubu silme başarısız.", "Saved" : "Kaydedildi", "test email settings" : "e-posta ayarlarını sına", "If you received this email, the settings seem to be correct." : "Eğer bu e-postayı aldıysanız, ayarlar doğru gibi görünüyor.", "A problem occurred while sending the email. Please revise your settings." : "E-posta gönderilirken bir sorun oluştu. Lütfen ayarlarınızı gözden geçirin.", "Email sent" : "E-posta gönderildi", "You need to set your user email before being able to send test emails." : "Sınama e-postaları göndermeden önce kullanıcı e-postasını ayarlamanız gerekiyor.", + "Unable to create user." : "Kullanıcı oluşturma başarısız.", + "Unable to delete user." : "Kullanıcı silme başarısız.", "Are you really sure you want add \"{domain}\" as trusted domain?" : "\"{domain}\" alan adını güvenilir alan adı olarak eklemek istediğinizden emin misiniz?", "Add trusted domain" : "Güvenilir alan adı ekle", "Sending..." : "Gönderiliyor...", @@ -100,7 +101,6 @@ "TLS" : "TLS", "Security Warning" : "Güvenlik Uyarısı", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "%s erişiminiz HTTP aracılığıyla yapılıyor. Sunucunuzu, HTTPS kullanımını zorlamak üzere yapılandırmanızı şiddetle öneririz.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Veri dizininiz ve dosyalarınız muhtemelen İnternet üzerinden erişilebilir. .htaccess dosyası çalışmıyor. Web sunucunuzu yapılandırarak veri dizinine erişimi kapatmanızı veya veri dizinini web sunucu belge kök dizini dışına almanızı şiddetle tavsiye ederiz.", "Read-Only config enabled" : "Salt Okunur yapılandırma etkin", "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." : "Salt Okunur yapılandırma etkinleştirilmiş. Bu, bazı ayarların web arayüzü ile yapılandırılmasını önler. Ayrıca, bu dosya her güncelleme sırasında el ile yazılabilir yapılmalıdır.", "Setup Warning" : "Kurulum Uyarısı", @@ -118,7 +118,7 @@ "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Şu dillerden birini desteklemesi için sisteminize gerekli paketleri kurmanızı şiddetle tavsiye ederiz: %s.", "URL generation in notification emails" : "Bildirim e-postalarında URL oluşturulması", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Eğer kurulumunuz alan adının köküne yapılmamışsa ve sistem cron'u kullanıyorsa, URL oluşturma ile ilgili sorunlar olabilir. Bu sorunların önüne geçmek için, kurulumunuzun web kök yolundaki config.php dosyasında \"overwritewebroot\" seçeneğini ayarlayın (Önerilen: \"%s\")", - "Connectivity Checks" : "Bağlantı Kontrolleri", + "Configuration Checks" : "Yapılandırma Kontrolleri", "No problems found" : "Hiç sorun yok", "Please double check the <a href='%s'>installation guides</a>." : "Lütfen <a href='%s'>kurulum rehberlerini</a> iki kez kontrol edin.", "Last cron was executed at %s." : "Son cron %s zamanında çalıştırıldı.", @@ -131,13 +131,14 @@ "Allow users to share via link" : "Kullanıcıların bağlantı ile paylaşmasına izin ver", "Enforce password protection" : "Parola korumasını zorla", "Allow public uploads" : "Herkes tarafından yüklemeye izin ver", + "Allow users to send mail notification for shared files" : "Paylaşılmış dosyalar için kullanıcıların posta bildirimi göndermesine izin ver", "Set default expiration date" : "Öntanımlı son kullanma tarihini ayarla", "Expire after " : "Süre", "days" : "gün sonra dolsun", "Enforce expiration date" : "Son kullanma tarihini zorla", "Allow resharing" : "Yeniden paylaşıma izin ver", "Restrict users to only share with users in their groups" : "Kullanıcıların, dosyaları sadece kendi gruplarındaki kullanıcılarla paylaşmasına izin ver", - "Allow users to send mail notification for shared files" : "Paylaşılmış dosyalar için kullanıcıların posta bildirimi göndermesine izin ver", + "Allow users to send mail notification for shared files to other users" : "Kullanıcıların diğer kullanıcılara, paylaşılmış dosyalar için posta bildirimi göndermesine izin ver", "Exclude groups from sharing" : "Grupları paylaşma eyleminden hariç tut", "These groups will still be able to receive shares, but not to initiate them." : "Bu gruplar hala paylaşımları alabilecek, ancak başlatamayacaktır.", "Enforce HTTPS" : "HTTPS bağlantısına zorla", @@ -171,6 +172,7 @@ "Documentation:" : "Belgelendirme:", "User Documentation" : "Kullanıcı Belgelendirmesi", "Admin Documentation" : "Yönetici Belgelendirmesi", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Bu uygulama, aşağıdaki bağımlılıklar sağlanmadığından yüklenemiyor:", "Update to %s" : "%s sürümüne güncelle", "Enable only for specific groups" : "Sadece belirli gruplar için etkinleştir", "Uninstall App" : "Uygulamayı Kaldır", diff --git a/settings/l10n/ug.js b/settings/l10n/ug.js index 6f49414e6e7..a4a06ae9884 100644 --- a/settings/l10n/ug.js +++ b/settings/l10n/ug.js @@ -5,12 +5,8 @@ OC.L10N.register( "Security" : "بىخەتەرلىك", "Log" : "خاتىرە", "Authentication error" : "سالاھىيەت دەلىللەش خاتالىقى", - "Group already exists" : "گۇرۇپپا مەۋجۇت", - "Unable to add group" : "گۇرۇپپا قوشقىلى بولمايدۇ", "Email saved" : "تورخەت ساقلاندى", "Invalid email" : "ئىناۋەتسىز تورخەت", - "Unable to delete group" : "گۇرۇپپىنى ئۆچۈرەلمىدى", - "Unable to delete user" : "ئىشلەتكۈچىنى ئۆچۈرەلمىدى", "Language changed" : "تىل ئۆزگەردى", "Invalid request" : "ئىناۋەتسىز ئىلتىماس", "Admins can't remove themself from the admin group" : "باشقۇرغۇچى ئۆزىنى باشقۇرۇش گۇرۇپپىسىدىن چىقىرىۋېتەلمەيدۇ", diff --git a/settings/l10n/ug.json b/settings/l10n/ug.json index c9622027cb7..d45c1a21b93 100644 --- a/settings/l10n/ug.json +++ b/settings/l10n/ug.json @@ -3,12 +3,8 @@ "Security" : "بىخەتەرلىك", "Log" : "خاتىرە", "Authentication error" : "سالاھىيەت دەلىللەش خاتالىقى", - "Group already exists" : "گۇرۇپپا مەۋجۇت", - "Unable to add group" : "گۇرۇپپا قوشقىلى بولمايدۇ", "Email saved" : "تورخەت ساقلاندى", "Invalid email" : "ئىناۋەتسىز تورخەت", - "Unable to delete group" : "گۇرۇپپىنى ئۆچۈرەلمىدى", - "Unable to delete user" : "ئىشلەتكۈچىنى ئۆچۈرەلمىدى", "Language changed" : "تىل ئۆزگەردى", "Invalid request" : "ئىناۋەتسىز ئىلتىماس", "Admins can't remove themself from the admin group" : "باشقۇرغۇچى ئۆزىنى باشقۇرۇش گۇرۇپپىسىدىن چىقىرىۋېتەلمەيدۇ", diff --git a/settings/l10n/uk.js b/settings/l10n/uk.js index e46e32c1a2e..ac01fbd8547 100644 --- a/settings/l10n/uk.js +++ b/settings/l10n/uk.js @@ -10,8 +10,6 @@ OC.L10N.register( "Authentication error" : "Помилка автентифікації", "Your full name has been changed." : "Ваше ім'я було змінене", "Unable to change full name" : "Неможливо змінити ім'я", - "Group already exists" : "Група вже існує", - "Unable to add group" : "Не вдалося додати групу", "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" : "Помилка розшифровки файлів, перевірте пароль та спробуйте ще раз", @@ -20,8 +18,6 @@ OC.L10N.register( "Couldn't remove app." : "Неможливо видалити додаток.", "Email saved" : "Адресу збережено", "Invalid email" : "Невірна адреса", - "Unable to delete group" : "Не вдалося видалити групу", - "Unable to delete user" : "Не вдалося видалити користувача", "Backups restored successfully" : "Резервна копія успішно відновлена", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Неможливо відновити ключі шифрування, зверніться до вашого адміністратора. Додаткова інформація в owncloud.log", "Language changed" : "Мова змінена", @@ -102,7 +98,6 @@ OC.L10N.register( "TLS" : "TLS", "Security Warning" : "Попередження про небезпеку", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Ви звертаєтесь до %s за допомогою HTTP. Ми наполегливо рекомендуємо вам налаштувати сервер на використання HTTPS.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Ваш каталог з даними та Ваші файли можливо доступні з Інтернету. Файл .htaccess, наданий з ownCloud, не працює. Ми наполегливо рекомендуємо Вам налаштувати свій веб-сервер таким чином, щоб каталог data більше не був доступний, або перемістити каталог data за межі кореневого каталогу документів веб-сервера.", "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.", @@ -118,7 +113,6 @@ OC.L10N.register( "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Пропонуємо встановити необхідні пакети для вашої системи для підтримки однієї з наступних мов %s.", "URL generation in notification emails" : "Генерування URL для повідомлень в електроних листах", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Якщо ваша копія ownCloud встановлена не в корені домену та використовує систему планування CRON, можливі проблеми з генерацією правильних URL. Щоб уникнути цього, встановіть опцію overwritewebroot файла config.php відповідно до теки розташування установки (Ймовірніше за все, це \"%s\")", - "Connectivity 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.", @@ -131,13 +125,13 @@ OC.L10N.register( "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 " : "Скінчиться через", "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" : "Дозволити користувачам сповіщати листами про спільний доступ до файлів", "Exclude groups from sharing" : "Виключити групи зі спільного доступу", "These groups will still be able to receive shares, but not to initiate them." : "Ці групи зможуть отримувати спільні файли, але не зможуть відправляти їх.", "Enforce HTTPS" : "Примусове застосування HTTPS", diff --git a/settings/l10n/uk.json b/settings/l10n/uk.json index 03455e50155..771be227edf 100644 --- a/settings/l10n/uk.json +++ b/settings/l10n/uk.json @@ -8,8 +8,6 @@ "Authentication error" : "Помилка автентифікації", "Your full name has been changed." : "Ваше ім'я було змінене", "Unable to change full name" : "Неможливо змінити ім'я", - "Group already exists" : "Група вже існує", - "Unable to add group" : "Не вдалося додати групу", "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" : "Помилка розшифровки файлів, перевірте пароль та спробуйте ще раз", @@ -18,8 +16,6 @@ "Couldn't remove app." : "Неможливо видалити додаток.", "Email saved" : "Адресу збережено", "Invalid email" : "Невірна адреса", - "Unable to delete group" : "Не вдалося видалити групу", - "Unable to delete user" : "Не вдалося видалити користувача", "Backups restored successfully" : "Резервна копія успішно відновлена", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "Неможливо відновити ключі шифрування, зверніться до вашого адміністратора. Додаткова інформація в owncloud.log", "Language changed" : "Мова змінена", @@ -100,7 +96,6 @@ "TLS" : "TLS", "Security Warning" : "Попередження про небезпеку", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "Ви звертаєтесь до %s за допомогою HTTP. Ми наполегливо рекомендуємо вам налаштувати сервер на використання HTTPS.", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Ваш каталог з даними та Ваші файли можливо доступні з Інтернету. Файл .htaccess, наданий з ownCloud, не працює. Ми наполегливо рекомендуємо Вам налаштувати свій веб-сервер таким чином, щоб каталог data більше не був доступний, або перемістити каталог data за межі кореневого каталогу документів веб-сервера.", "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.", @@ -116,7 +111,6 @@ "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Пропонуємо встановити необхідні пакети для вашої системи для підтримки однієї з наступних мов %s.", "URL generation in notification emails" : "Генерування URL для повідомлень в електроних листах", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Якщо ваша копія ownCloud встановлена не в корені домену та використовує систему планування CRON, можливі проблеми з генерацією правильних URL. Щоб уникнути цього, встановіть опцію overwritewebroot файла config.php відповідно до теки розташування установки (Ймовірніше за все, це \"%s\")", - "Connectivity 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.", @@ -129,13 +123,13 @@ "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 " : "Скінчиться через", "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" : "Дозволити користувачам сповіщати листами про спільний доступ до файлів", "Exclude groups from sharing" : "Виключити групи зі спільного доступу", "These groups will still be able to receive shares, but not to initiate them." : "Ці групи зможуть отримувати спільні файли, але не зможуть відправляти їх.", "Enforce HTTPS" : "Примусове застосування HTTPS", diff --git a/settings/l10n/vi.js b/settings/l10n/vi.js index a807bdc9328..03b918fb72c 100644 --- a/settings/l10n/vi.js +++ b/settings/l10n/vi.js @@ -7,12 +7,8 @@ OC.L10N.register( "Authentication error" : "Lỗi xác thực", "Your full name has been changed." : "Họ và tên đã được thay đổi.", "Unable to change full name" : "Họ và tên không thể đổi ", - "Group already exists" : "Nhóm đã tồn tại", - "Unable to add group" : "Không thể thêm nhóm", "Email saved" : "Lưu email", "Invalid email" : "Email không hợp lệ", - "Unable to delete group" : "Không thể xóa nhóm", - "Unable to delete user" : "Không thể xóa người dùng", "Language changed" : "Ngôn ngữ đã được thay đổi", "Invalid request" : "Yêu cầu không hợp lệ", "Admins can't remove themself from the admin group" : "Quản trị viên không thể loại bỏ chính họ khỏi nhóm quản lý", @@ -38,7 +34,6 @@ OC.L10N.register( "None" : "Không gì cả", "Login" : "Đăng nhập", "Security Warning" : "Cảnh bảo bảo mật", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Thư mục và các tập tin của bạn có thể được truy cập từ Internet. Tập tin .htaccess không làm việc. Chúng tôi đề nghị bạn cấu hình ebserver ,phân quyền lại thư mục dữ liệu và cấp quyền truy cập hoặc di chuyển thư mục dữ liệu bên ngoài tài liệu gốc máy chủ web.", "Execute one task with each page loaded" : "Thực thi tác vụ mỗi khi trang được tải", "Allow apps to use the Share API" : "Cho phép các ứng dụng sử dụng chia sẻ API", "Allow resharing" : "Cho phép chia sẻ lại", diff --git a/settings/l10n/vi.json b/settings/l10n/vi.json index 30787bc4f8c..2561411c0bf 100644 --- a/settings/l10n/vi.json +++ b/settings/l10n/vi.json @@ -5,12 +5,8 @@ "Authentication error" : "Lỗi xác thực", "Your full name has been changed." : "Họ và tên đã được thay đổi.", "Unable to change full name" : "Họ và tên không thể đổi ", - "Group already exists" : "Nhóm đã tồn tại", - "Unable to add group" : "Không thể thêm nhóm", "Email saved" : "Lưu email", "Invalid email" : "Email không hợp lệ", - "Unable to delete group" : "Không thể xóa nhóm", - "Unable to delete user" : "Không thể xóa người dùng", "Language changed" : "Ngôn ngữ đã được thay đổi", "Invalid request" : "Yêu cầu không hợp lệ", "Admins can't remove themself from the admin group" : "Quản trị viên không thể loại bỏ chính họ khỏi nhóm quản lý", @@ -36,7 +32,6 @@ "None" : "Không gì cả", "Login" : "Đăng nhập", "Security Warning" : "Cảnh bảo bảo mật", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "Thư mục và các tập tin của bạn có thể được truy cập từ Internet. Tập tin .htaccess không làm việc. Chúng tôi đề nghị bạn cấu hình ebserver ,phân quyền lại thư mục dữ liệu và cấp quyền truy cập hoặc di chuyển thư mục dữ liệu bên ngoài tài liệu gốc máy chủ web.", "Execute one task with each page loaded" : "Thực thi tác vụ mỗi khi trang được tải", "Allow apps to use the Share API" : "Cho phép các ứng dụng sử dụng chia sẻ API", "Allow resharing" : "Cho phép chia sẻ lại", diff --git a/settings/l10n/zh_CN.js b/settings/l10n/zh_CN.js index 15ff53307d3..f8ca4b5512f 100644 --- a/settings/l10n/zh_CN.js +++ b/settings/l10n/zh_CN.js @@ -9,8 +9,6 @@ OC.L10N.register( "Authentication error" : "认证错误", "Your full name has been changed." : "您的全名已修改。", "Unable to change full name" : "无法修改全名", - "Group already exists" : "已存在该组", - "Unable to add group" : "无法增加组", "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" : "无法解密您的文件,请检查密码并重试。", @@ -19,8 +17,6 @@ OC.L10N.register( "Couldn't remove app." : "无法删除应用。", "Email saved" : "电子邮件已保存", "Invalid email" : "无效的电子邮件", - "Unable to delete group" : "无法删除组", - "Unable to delete user" : "无法删除用户", "Backups restored successfully" : "恢复备份成功", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "无法恢复加密密钥,请检查 owncloud.log 或联系管理员", "Language changed" : "语言已修改", @@ -96,7 +92,6 @@ OC.L10N.register( "TLS" : "TLS", "Security Warning" : "安全警告", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "您正通过 HTTP 访问 %s。我们强烈建议您配置你的服务器来要求使用 HTTPS。", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "您的数据文件夹和文件可由互联网访问。OwnCloud提供的.htaccess文件未生效。我们强烈建议您配置服务器,以使数据文件夹不可被访问,或者将数据文件夹移到web服务器以外。", "Setup Warning" : "设置警告", "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。", @@ -123,13 +118,13 @@ OC.L10N.register( "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 " : "过期于", "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" : "允许用户发送共享文件的邮件通知", "Exclude groups from sharing" : "在分享中排除组", "These groups will still be able to receive shares, but not to initiate them." : "这些组将仍可以获取分享,但无法向他人分享。", "Enforce HTTPS" : "强制使用 HTTPS", diff --git a/settings/l10n/zh_CN.json b/settings/l10n/zh_CN.json index 776ca101012..c3beddd7205 100644 --- a/settings/l10n/zh_CN.json +++ b/settings/l10n/zh_CN.json @@ -7,8 +7,6 @@ "Authentication error" : "认证错误", "Your full name has been changed." : "您的全名已修改。", "Unable to change full name" : "无法修改全名", - "Group already exists" : "已存在该组", - "Unable to add group" : "无法增加组", "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" : "无法解密您的文件,请检查密码并重试。", @@ -17,8 +15,6 @@ "Couldn't remove app." : "无法删除应用。", "Email saved" : "电子邮件已保存", "Invalid email" : "无效的电子邮件", - "Unable to delete group" : "无法删除组", - "Unable to delete user" : "无法删除用户", "Backups restored successfully" : "恢复备份成功", "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" : "无法恢复加密密钥,请检查 owncloud.log 或联系管理员", "Language changed" : "语言已修改", @@ -94,7 +90,6 @@ "TLS" : "TLS", "Security Warning" : "安全警告", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "您正通过 HTTP 访问 %s。我们强烈建议您配置你的服务器来要求使用 HTTPS。", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "您的数据文件夹和文件可由互联网访问。OwnCloud提供的.htaccess文件未生效。我们强烈建议您配置服务器,以使数据文件夹不可被访问,或者将数据文件夹移到web服务器以外。", "Setup Warning" : "设置警告", "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。", @@ -121,13 +116,13 @@ "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 " : "过期于", "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" : "允许用户发送共享文件的邮件通知", "Exclude groups from sharing" : "在分享中排除组", "These groups will still be able to receive shares, but not to initiate them." : "这些组将仍可以获取分享,但无法向他人分享。", "Enforce HTTPS" : "强制使用 HTTPS", diff --git a/settings/l10n/zh_TW.js b/settings/l10n/zh_TW.js index 1a2b20e3f1d..fdc2d91bab5 100644 --- a/settings/l10n/zh_TW.js +++ b/settings/l10n/zh_TW.js @@ -9,15 +9,11 @@ OC.L10N.register( "Authentication error" : "認證錯誤", "Your full name has been changed." : "您的全名已變更。", "Unable to change full name" : "無法變更全名", - "Group already exists" : "群組已存在", - "Unable to add group" : "群組增加失敗", "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" : "無法解密您的檔案,確認您的密碼並再重試一次", "Email saved" : "Email已儲存", "Invalid email" : "無效的email", - "Unable to delete group" : "群組刪除錯誤", - "Unable to delete user" : "使用者刪除錯誤", "Language changed" : "語言已變更", "Invalid request" : "無效請求", "Admins can't remove themself from the admin group" : "管理者帳號無法從管理者群組中移除", @@ -79,7 +75,6 @@ OC.L10N.register( "TLS" : "TLS", "Security Warning" : "安全性警告", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "您正透過未加密網頁存取 %s。我們強烈建議您設定您的主機必須使用加密網頁。", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "您的資料目錄 (Data Directory) 和檔案可能可以由網際網路上面公開存取。Owncloud 所提供的 .htaccess 設定檔並未生效,我們強烈建議您設定您的網頁伺服器以防止資料目錄被公開存取,或將您的資料目錄移出網頁伺服器的 document root 。", "Setup Warning" : "設定警告", "Module 'fileinfo' missing" : "遺失 'fileinfo' 模組", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "未偵測到 PHP 模組 'fileinfo'。我們強烈建議啟用這個模組以取得最好的 mime-type 支援。", @@ -94,8 +89,8 @@ OC.L10N.register( "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "已經與 webcron 服務註冊好,將會每15分鐘呼叫 cron.php", "Allow apps to use the Share API" : "允許 apps 使用分享 API", "Allow public uploads" : "允許任何人上傳", - "Allow resharing" : "允許轉貼分享", "Allow users to send mail notification for shared files" : "允許使用者寄送有關分享檔案的郵件通知", + "Allow resharing" : "允許轉貼分享", "Enforce HTTPS" : "強制啟用 HTTPS", "Forces the clients to connect to %s via an encrypted connection." : "強迫用戶端使用加密連線連接到 %s", "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." : "請使用 HTTPS 連線到 %s 以啓用或停用強制 SSL 加密。", diff --git a/settings/l10n/zh_TW.json b/settings/l10n/zh_TW.json index 030d0f30720..b7064dafa86 100644 --- a/settings/l10n/zh_TW.json +++ b/settings/l10n/zh_TW.json @@ -7,15 +7,11 @@ "Authentication error" : "認證錯誤", "Your full name has been changed." : "您的全名已變更。", "Unable to change full name" : "無法變更全名", - "Group already exists" : "群組已存在", - "Unable to add group" : "群組增加失敗", "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" : "無法解密您的檔案,確認您的密碼並再重試一次", "Email saved" : "Email已儲存", "Invalid email" : "無效的email", - "Unable to delete group" : "群組刪除錯誤", - "Unable to delete user" : "使用者刪除錯誤", "Language changed" : "語言已變更", "Invalid request" : "無效請求", "Admins can't remove themself from the admin group" : "管理者帳號無法從管理者群組中移除", @@ -77,7 +73,6 @@ "TLS" : "TLS", "Security Warning" : "安全性警告", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." : "您正透過未加密網頁存取 %s。我們強烈建議您設定您的主機必須使用加密網頁。", - "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." : "您的資料目錄 (Data Directory) 和檔案可能可以由網際網路上面公開存取。Owncloud 所提供的 .htaccess 設定檔並未生效,我們強烈建議您設定您的網頁伺服器以防止資料目錄被公開存取,或將您的資料目錄移出網頁伺服器的 document root 。", "Setup Warning" : "設定警告", "Module 'fileinfo' missing" : "遺失 'fileinfo' 模組", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "未偵測到 PHP 模組 'fileinfo'。我們強烈建議啟用這個模組以取得最好的 mime-type 支援。", @@ -92,8 +87,8 @@ "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "已經與 webcron 服務註冊好,將會每15分鐘呼叫 cron.php", "Allow apps to use the Share API" : "允許 apps 使用分享 API", "Allow public uploads" : "允許任何人上傳", - "Allow resharing" : "允許轉貼分享", "Allow users to send mail notification for shared files" : "允許使用者寄送有關分享檔案的郵件通知", + "Allow resharing" : "允許轉貼分享", "Enforce HTTPS" : "強制啟用 HTTPS", "Forces the clients to connect to %s via an encrypted connection." : "強迫用戶端使用加密連線連接到 %s", "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." : "請使用 HTTPS 連線到 %s 以啓用或停用強制 SSL 加密。", diff --git a/settings/middleware/subadminmiddleware.php b/settings/middleware/subadminmiddleware.php new file mode 100644 index 00000000000..a5c005e3148 --- /dev/null +++ b/settings/middleware/subadminmiddleware.php @@ -0,0 +1,65 @@ +<?php +/** + * @author Lukas Reschke + * @copyright 2014 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\Middleware; + +use OC\AppFramework\Http; +use OC\AppFramework\Utility\ControllerMethodReflector; +use OCP\AppFramework\Http\TemplateResponse; +use OCP\AppFramework\Middleware; + +/** + * Verifies whether an user has at least subadmin rights. + * To bypass use the `@NoSubadminRequired` annotation + * + * @package OC\Settings\Middleware + */ +class SubadminMiddleware extends Middleware { + /** @var bool */ + protected $isSubAdmin; + /** @var ControllerMethodReflector */ + protected $reflector; + + /** + * @param ControllerMethodReflector $reflector + * @param bool $isSubAdmin + */ + public function __construct(ControllerMethodReflector $reflector, + $isSubAdmin) { + $this->reflector = $reflector; + $this->isSubAdmin = $isSubAdmin; + } + + /** + * Check if sharing is enabled before the controllers is executed + * @param \OCP\AppFramework\Controller $controller + * @param string $methodName + * @throws \Exception + */ + public function beforeController($controller, $methodName) { + if(!$this->reflector->hasAnnotation('NoSubadminRequired')) { + if(!$this->isSubAdmin) { + throw new \Exception('Logged in user must be a subadmin'); + } + } + } + + /** + * Return 403 page in case of an exception + * @param \OCP\AppFramework\Controller $controller + * @param string $methodName + * @param \Exception $exception + * @return TemplateResponse + */ + public function afterException($controller, $methodName, \Exception $exception) { + return new TemplateResponse('core', '403', array(), 'guest'); + } + +} diff --git a/settings/personal.php b/settings/personal.php index bef800ae7f1..f181c9cb2c1 100644 --- a/settings/personal.php +++ b/settings/personal.php @@ -9,6 +9,7 @@ OC_Util::checkLoggedIn(); $defaults = new OC_Defaults(); // initialize themable default strings and urls $certificateManager = \OC::$server->getCertificateManager(); +$config = \OC::$server->getConfig(); // Highlight navigation entry OC_Util::addScript( 'settings', 'personal' ); @@ -16,7 +17,7 @@ OC_Util::addStyle( 'settings', 'settings' ); \OC_Util::addVendorScript('strengthify/jquery.strengthify'); \OC_Util::addVendorStyle('strengthify/strengthify'); \OC_Util::addScript('files', 'jquery.fileupload'); -if (\OC_Config::getValue('enable_avatars', true) === true) { +if ($config->getSystemValue('enable_avatars', true) === true) { \OC_Util::addVendorScript('jcrop/js/jquery.Jcrop'); \OC_Util::addVendorStyle('jcrop/css/jquery.Jcrop'); } @@ -26,9 +27,9 @@ OC_App::setActiveNavigationEntry( 'personal' ); $storageInfo=OC_Helper::getStorageInfo('/'); -$email=OC_Preferences::getValue(OC_User::getUser(), 'settings', 'email', ''); +$email=$config->getUserValue(OC_User::getUser(), 'settings', 'email', ''); -$userLang=OC_Preferences::getValue( OC_User::getUser(), 'core', 'lang', OC_L10N::findLanguage() ); +$userLang=$config->getUserValue( OC_User::getUser(), 'core', 'lang', OC_L10N::findLanguage() ); $languageCodes=OC_L10N::findAvailableLanguages(); //check if encryption was enabled in the past @@ -74,9 +75,9 @@ usort( $languages, function ($a, $b) { //links to clients $clients = array( - 'desktop' => OC_Config::getValue('customclient_desktop', $defaults->getSyncClientUrl()), - 'android' => OC_Config::getValue('customclient_android', $defaults->getAndroidClientUrl()), - 'ios' => OC_Config::getValue('customclient_ios', $defaults->getiOSClientUrl()) + 'desktop' => $config->getSystemValue('customclient_desktop', $defaults->getSyncClientUrl()), + 'android' => $config->getSystemValue('customclient_android', $defaults->getAndroidClientUrl()), + 'ios' => $config->getSystemValue('customclient_ios', $defaults->getiOSClientUrl()) ); // Return template @@ -95,7 +96,7 @@ $tmpl->assign('displayName', OC_User::getDisplayName()); $tmpl->assign('enableDecryptAll' , $enableDecryptAll); $tmpl->assign('backupKeysExists' , $backupKeysExists); $tmpl->assign('filesStillEncrypted' , $filesStillEncrypted); -$tmpl->assign('enableAvatars', \OC_Config::getValue('enable_avatars', true)); +$tmpl->assign('enableAvatars', $config->getSystemValue('enable_avatars', true)); $tmpl->assign('avatarChangeSupported', OC_User::canUserChangeAvatar(OC_User::getUser())); $tmpl->assign('certs', $certificateManager->listCertificates()); diff --git a/settings/routes.php b/settings/routes.php index 7ca33fc2745..1b7a918fa79 100644 --- a/settings/routes.php +++ b/settings/routes.php @@ -9,17 +9,22 @@ namespace OC\Settings; $application = new Application(); -$application->registerRoutes($this, array('routes' =>array( - array('name' => 'MailSettings#setMailSettings', 'url' => '/settings/admin/mailsettings', 'verb' => 'POST'), - array('name' => 'MailSettings#storeCredentials', 'url' => '/settings/admin/mailsettings/credentials', 'verb' => 'POST'), - array('name' => 'MailSettings#sendTestMail', 'url' => '/settings/admin/mailtest', 'verb' => 'POST'), - array('name' => 'AppSettings#listCategories', 'url' => '/settings/apps/categories', 'verb' => 'GET'), - array('name' => 'AppSettings#listApps', 'url' => '/settings/apps/list', 'verb' => 'GET'), - array('name' => 'SecuritySettings#enforceSSL', 'url' => '/settings/admin/security/ssl', 'verb' => 'POST'), - array('name' => 'SecuritySettings#enforceSSLForSubdomains', 'url' => '/settings/admin/security/ssl/subdomains', 'verb' => 'POST'), - array('name' => 'SecuritySettings#trustedDomains', 'url' => '/settings/admin/security/trustedDomains', 'verb' => 'POST'), - -))); +$application->registerRoutes($this, array( + 'resources' => array( + 'groups' => array('url' => '/settings/users/groups'), + 'users' => array('url' => '/settings/users/users') + ), + 'routes' =>array( + array('name' => 'MailSettings#setMailSettings', 'url' => '/settings/admin/mailsettings', 'verb' => 'POST'), + array('name' => 'MailSettings#storeCredentials', 'url' => '/settings/admin/mailsettings/credentials', 'verb' => 'POST'), + array('name' => 'MailSettings#sendTestMail', 'url' => '/settings/admin/mailtest', 'verb' => 'POST'), + array('name' => 'AppSettings#listCategories', 'url' => '/settings/apps/categories', 'verb' => 'GET'), + array('name' => 'AppSettings#listApps', 'url' => '/settings/apps/list', 'verb' => 'GET'), + array('name' => 'SecuritySettings#enforceSSL', 'url' => '/settings/admin/security/ssl', 'verb' => 'POST'), + array('name' => 'SecuritySettings#enforceSSLForSubdomains', 'url' => '/settings/admin/security/ssl/subdomains', 'verb' => 'POST'), + array('name' => 'SecuritySettings#trustedDomains', 'url' => '/settings/admin/security/trustedDomains', 'verb' => 'POST'), + ) +)); /** @var $this \OCP\Route\IRouter */ @@ -38,26 +43,14 @@ $this->create('settings_admin', '/settings/admin') ->actionInclude('settings/admin.php'); // Settings ajax actions // users -$this->create('settings_ajax_userlist', '/settings/ajax/userlist') - ->actionInclude('settings/ajax/userlist.php'); -$this->create('settings_ajax_grouplist', '/settings/ajax/grouplist') - ->actionInclude('settings/ajax/grouplist.php'); $this->create('settings_ajax_everyonecount', '/settings/ajax/geteveryonecount') ->actionInclude('settings/ajax/geteveryonecount.php'); -$this->create('settings_ajax_createuser', '/settings/ajax/createuser.php') - ->actionInclude('settings/ajax/createuser.php'); -$this->create('settings_ajax_removeuser', '/settings/ajax/removeuser.php') - ->actionInclude('settings/ajax/removeuser.php'); $this->create('settings_ajax_setquota', '/settings/ajax/setquota.php') ->actionInclude('settings/ajax/setquota.php'); -$this->create('settings_ajax_creategroup', '/settings/ajax/creategroup.php') - ->actionInclude('settings/ajax/creategroup.php'); $this->create('settings_ajax_togglegroups', '/settings/ajax/togglegroups.php') ->actionInclude('settings/ajax/togglegroups.php'); $this->create('settings_ajax_togglesubadmins', '/settings/ajax/togglesubadmins.php') ->actionInclude('settings/ajax/togglesubadmins.php'); -$this->create('settings_ajax_removegroup', '/settings/ajax/removegroup.php') - ->actionInclude('settings/ajax/removegroup.php'); $this->create('settings_users_changepassword', '/settings/users/changepassword') ->post() ->action('OC\Settings\ChangePassword\Controller', 'changeUserPassword'); diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 83dc92a060a..d04351c2d6c 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -83,20 +83,6 @@ if (!$_['isConnectedViaHTTPS']) { <?php } -// is htaccess working ? -if (!$_['htaccessworking']) { - ?> - <div class="section"> - <h2><?php p($l->t('Security Warning')); ?></h2> - - <span class="securitywarning"> - <?php p($l->t('Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root.')); ?> - </span> - - </div> -<?php -} - // is read only config enabled if ($_['readOnlyConfigEnabled']) { ?> @@ -206,7 +192,7 @@ if ($_['suggestedOverwriteWebroot']) { } ?> <div id="postsetupchecks" class="section"> - <h2><?php p($l->t('Connectivity Checks'));?></h2> + <h2><?php p($l->t('Configuration Checks'));?></h2> <div class="loading"></div> <div class="success hidden"><?php p($l->t('No problems found'));?></div> <div class="errors hidden"></div> @@ -285,10 +271,15 @@ if ($_['suggestedOverwriteWebroot']) { <input type="checkbox" name="shareapi_enforce_links_password" id="enforceLinkPassword" value="1" <?php if ($_['enforceLinkPassword']) print_unescaped('checked="checked"'); ?> /> <label for="enforceLinkPassword"><?php p($l->t('Enforce password protection'));?></label><br/> + <input type="checkbox" name="shareapi_allow_public_upload" id="allowPublicUpload" value="1" <?php if ($_['allowPublicUpload'] == 'yes') print_unescaped('checked="checked"'); ?> /> <label for="allowPublicUpload"><?php p($l->t('Allow public uploads'));?></label><br/> + <input type="checkbox" name="shareapi_allow_public_notification" id="allowPublicMailNotification" + value="1" <?php if ($_['allowPublicMailNotification'] == 'yes') print_unescaped('checked="checked"'); ?> /> + <label for="allowPublicMailNotification"><?php p($l->t('Allow users to send mail notification for shared files'));?></label><br/> + <input type="checkbox" name="shareapi_default_expire_date" id="shareapiDefaultExpireDate" value="1" <?php if ($_['shareDefaultExpireDateSet'] === 'yes') print_unescaped('checked="checked"'); ?> /> <label for="shareapiDefaultExpireDate"><?php p($l->t('Set default expiration date'));?></label><br/> @@ -316,7 +307,7 @@ if ($_['suggestedOverwriteWebroot']) { <p class="<?php if ($_['shareAPIEnabled'] === 'no') p('hidden');?>"> <input type="checkbox" name="shareapi_allow_mail_notification" id="allowMailNotification" value="1" <?php if ($_['allowMailNotification'] === 'yes') print_unescaped('checked="checked"'); ?> /> - <label for="allowMailNotification"><?php p($l->t('Allow users to send mail notification for shared files'));?></label><br/> + <label for="allowMailNotification"><?php p($l->t('Allow users to send mail notification for shared files to other users'));?></label><br/> </p> <p class="<?php if ($_['shareAPIEnabled'] === 'no') p('hidden');?>"> <input type="checkbox" name="shareapi_exclude_groups" id="shareapiExcludeGroups" diff --git a/settings/templates/users/main.php b/settings/templates/users/main.php index d2b7652f142..c32c8df6809 100644 --- a/settings/templates/users/main.php +++ b/settings/templates/users/main.php @@ -4,6 +4,19 @@ * This file is licensed under the Affero General Public License version 3 or later. * See the COPYING-README file. */ + +script('settings', [ + 'users/deleteHandler', + 'users/filter', + 'users/users', + 'users/groups' +]); +script('core', [ + 'multiselect', + 'singleselect' +]); +style('settings', 'settings'); + $userlistParams = array(); $allGroups=array(); foreach($_["groups"] as $group) { @@ -31,14 +44,24 @@ translation('settings'); <?php print_unescaped($this->inc('users/part.setquota')); ?> <div id="userlistoptions"> - <p><label> - <input type="checkbox" name="StorageLocation" value="StorageLocation" id="CheckboxStorageLocation"> + <p> + <input type="checkbox" name="StorageLocation" value="StorageLocation" id="CheckboxStorageLocation"> + <label for="CheckboxStorageLocation"> <?php p($l->t('Show storage location')) ?> - </label></p> - <p><label> + </label> + </p> + <p> <input type="checkbox" name="LastLogin" value="LastLogin" id="CheckboxLastLogin"> - <?php p($l->t('Show last log in')) ?> - </label></p> + <label for="CheckboxLastLogin"> + <?php p($l->t('Show last log in')) ?> + </label> + </p> + <p> + <input type="checkbox" name="UserBackend" value="UserBackend" id="CheckboxUserBackend"> + <label for="CheckboxUserBackend"> + <?php p($l->t('Show user backend')) ?> + </label> + </p> </div> </div> </div> diff --git a/settings/templates/users/part.userlist.php b/settings/templates/users/part.userlist.php index 964aef600a2..6a6b0b69fa2 100644 --- a/settings/templates/users/part.userlist.php +++ b/settings/templates/users/part.userlist.php @@ -12,20 +12,20 @@ <th id="headerSubAdmins"><?php p($l->t('Group Admin for')); ?></th> <?php endif;?> <th id="headerQuota"><?php p($l->t('Quota')); ?></th> - <th id="headerStorageLocation"><?php p($l->t('Storage Location')); ?></th> - <th id="headerLastLogin"><?php p($l->t('Last Login')); ?></th> + <th class="storageLocation"><?php p($l->t('Storage Location')); ?></th> + <th class="userBackend"><?php p($l->t('User Backend')); ?></th> + <th class="lastLogin"><?php p($l->t('Last Login')); ?></th> <th id="headerRemove"> </th> </tr> </thead> <tbody> - <?php foreach($_["users"] as $user): ?> - <tr data-uid="<?php p($user["name"]) ?>" - data-displayname="<?php p($user["displayName"]) ?>"> + <!-- the following <tr> is used as a template for the JS part --> + <tr style="display:none"> <?php if ($_['enableAvatars']): ?> - <td class="avatar"><div class="avatardiv"></div></td> + <td class="avatar"><div class="avatardiv"></div></td> <?php endif; ?> - <td class="name"><?php p($user["name"]); ?></td> - <td class="displayName"><span><?php p($user["displayName"]); ?></span> <img class="svg action" + <td class="name"></td> + <td class="displayName"><span></span> <img class="svg action" src="<?php p(image_path('core', 'actions/rename.svg'))?>" alt="<?php p($l->t("change full name"))?>" title="<?php p($l->t("change full name"))?>"/> </td> @@ -33,84 +33,32 @@ src="<?php print_unescaped(image_path('core', 'actions/rename.svg'))?>" alt="<?php p($l->t("set new password"))?>" title="<?php p($l->t("set new password"))?>"/> </td> - <td class="groups"> - <select - class="groupsselect" - data-username="<?php p($user['name']) ;?>" - data-user-groups="<?php p(json_encode($user['groups'])) ;?>" - data-placeholder="groups" title="<?php p($l->t('no group'))?>" - multiple="multiple"> - <?php foreach($_["adminGroup"] as $adminGroup): ?> - <option value="<?php p($adminGroup['name']);?>"><?php p($adminGroup['name']); ?></option> - <?php endforeach; ?> - <?php foreach($_["groups"] as $group): ?> - <option value="<?php p($group['name']);?>"><?php p($group['name']);?></option> - <?php endforeach;?> - </select> - </td> + <td class="groups"></td> <?php if(is_array($_['subadmins']) || $_['subadmins']): ?> - <td class="subadmins"> - <select - class="subadminsselect" - data-username="<?php p($user['name']) ;?>" - data-subadmin="<?php p(json_encode($user['subadmin']));?>" - data-placeholder="subadmins" title="<?php p($l->t('no group'))?>" - multiple="multiple"> - <?php foreach($_["subadmingroups"] as $group): ?> - <option value="<?php p($group);?>"><?php p($group);?></option> - <?php endforeach;?> - </select> - </td> + <td class="subadmins"></td> <?php endif;?> <td class="quota"> <select class='quota-user' data-inputtitle="<?php p($l->t('Please enter storage quota (ex: "512 MB" or "12 GB")')) ?>"> - <option - <?php if($user['quota'] === 'default') print_unescaped('selected="selected"');?> - value='default'> + <option value='default'> <?php p($l->t('Default'));?> </option> - <option - <?php if($user['quota'] === 'none') print_unescaped('selected="selected"');?> - value='none'> + <option value='none'> <?php p($l->t('Unlimited'));?> </option> <?php foreach($_['quota_preset'] as $preset):?> - <option - <?php if($user['quota']==$preset) print_unescaped('selected="selected"');?> - value='<?php p($preset);?>'> - <?php p($preset);?> - </option> + <option value='<?php p($preset);?>'> + <?php p($preset);?> + </option> <?php endforeach;?> - <?php if($user['isQuotaUserDefined']):?> - <option selected="selected" value='<?php p($user['quota']);?>'> - <?php p($user['quota']);?> - </option> - <?php endif;?> <option value='other' data-new> - <?php p($l->t('Other'));?> - ... + <?php p($l->t('Other'));?> ... </option> </select> </td> - <td class="storageLocation"><?php p($user["storageLocation"]); ?></td> - <?php - if($user["lastLogin"] === 0) { - $lastLogin = $l->t('never'); - $lastLoginDate = $lastLogin; - } else { - $lastLogin = relative_modified_date($user["lastLogin"]); - $lastLoginDate = \OC_Util::formatDate($user["lastLogin"]); - } - ?> - <td class="lastLogin" title="<?php p('<span class="usersLastLoginTooltip">'.$lastLoginDate.'</span>'); ?>"><?php p($lastLogin); ?></td> - <td class="remove"> - <?php if($user['name']!=OC_User::getUser()):?> - <a href="#" class="action delete" original-title="<?php p($l->t('Delete'))?>"> - <img src="<?php print_unescaped(image_path('core', 'actions/delete.svg')) ?>" class="svg" /> - </a> - <?php endif;?> - </td> + <td class="storageLocation"></td> + <td class="userBackend"></td> + <td class="lastLogin"></td> + <td class="remove"></td> </tr> - <?php endforeach; ?> </tbody> </table> diff --git a/settings/tests/js/users/deleteHandlerSpec.js b/settings/tests/js/users/deleteHandlerSpec.js index 6b6328be801..c6d88b32411 100644 --- a/settings/tests/js/users/deleteHandlerSpec.js +++ b/settings/tests/js/users/deleteHandlerSpec.js @@ -85,7 +85,7 @@ describe('DeleteHandler tests', function() { // previous one was delete expect(fakeServer.requests.length).toEqual(1); var request = fakeServer.requests[0]; - expect(request.url).toEqual(OC.webroot + '/index.php/settings/ajax/dummyendpoint.php'); + expect(request.url).toEqual(OC.webroot + '/index.php/dummyendpoint.php/some_uid'); }); it('automatically deletes after timeout', function() { var handler = init(markCallback, removeCallback, undoCallback); @@ -98,7 +98,7 @@ describe('DeleteHandler tests', function() { clock.tick(3000); expect(fakeServer.requests.length).toEqual(1); var request = fakeServer.requests[0]; - expect(request.url).toEqual(OC.webroot + '/index.php/settings/ajax/dummyendpoint.php'); + expect(request.url).toEqual(OC.webroot + '/index.php/dummyendpoint.php/some_uid'); }); it('deletes when deleteEntry is called', function() { var handler = init(markCallback, removeCallback, undoCallback); @@ -107,7 +107,7 @@ describe('DeleteHandler tests', function() { handler.deleteEntry(); expect(fakeServer.requests.length).toEqual(1); var request = fakeServer.requests[0]; - expect(request.url).toEqual(OC.webroot + '/index.php/settings/ajax/dummyendpoint.php'); + expect(request.url).toEqual(OC.webroot + '/index.php/dummyendpoint.php/some_uid'); }); it('cancels deletion when undo is clicked', function() { var handler = init(markCallback, removeCallback, undoCallback); @@ -135,7 +135,7 @@ describe('DeleteHandler tests', function() { expect(fakeServer.requests.length).toEqual(0); }); it('calls removeCallback after successful server side deletion', function() { - fakeServer.respondWith(/\/index\.php\/settings\/ajax\/dummyendpoint.php/, [ + fakeServer.respondWith(/\/index\.php\/dummyendpoint.php\/some_uid/, [ 200, { 'Content-Type': 'application/json' }, JSON.stringify({status: 'success'}) @@ -148,7 +148,6 @@ describe('DeleteHandler tests', function() { expect(fakeServer.requests.length).toEqual(1); var request = fakeServer.requests[0]; var query = OC.parseQueryString(request.requestBody); - expect(query.paramid).toEqual('some_uid'); expect(removeCallback.calledOnce).toEqual(true); expect(undoCallback.notCalled).toEqual(true); @@ -157,7 +156,7 @@ describe('DeleteHandler tests', function() { it('calls undoCallback and shows alert after failed server side deletion', function() { // stub t to avoid extra calls var tStub = sinon.stub(window, 't').returns('text'); - fakeServer.respondWith(/\/index\.php\/settings\/ajax\/dummyendpoint.php/, [ + fakeServer.respondWith(/\/index\.php\/dummyendpoint.php\/some_uid/, [ 200, { 'Content-Type': 'application/json' }, JSON.stringify({status: 'error', data: {message: 'test error'}}) @@ -171,7 +170,6 @@ describe('DeleteHandler tests', function() { expect(fakeServer.requests.length).toEqual(1); var request = fakeServer.requests[0]; var query = OC.parseQueryString(request.requestBody); - expect(query.paramid).toEqual('some_uid'); expect(removeCallback.notCalled).toEqual(true); expect(undoCallback.calledOnce).toEqual(true); diff --git a/settings/users.php b/settings/users.php index 85f160a1552..75109f9ef74 100644 --- a/settings/users.php +++ b/settings/users.php @@ -7,20 +7,13 @@ OC_Util::checkSubAdminUser(); -// We have some javascript foo! -OC_Util::addScript('settings', 'users/deleteHandler'); -OC_Util::addScript('settings', 'users/filter'); -OC_Util::addScript( 'settings', 'users/users' ); -OC_Util::addScript( 'settings', 'users/groups' ); -OC_Util::addScript( 'core', 'multiselect' ); -OC_Util::addScript( 'core', 'singleselect' ); -OC_Util::addStyle( 'settings', 'settings' ); OC_App::setActiveNavigationEntry( 'core_users' ); -$users = array(); $userManager = \OC_User::getManager(); $groupManager = \OC_Group::getManager(); +$config = \OC::$server->getConfig(); + $isAdmin = OC_User::isAdminUser(OC_User::getUser()); $groupsInfo = new \OC\Group\MetaData(OC_User::getUser(), $isAdmin, $groupManager); @@ -28,10 +21,9 @@ $groupsInfo->setSorting($groupsInfo::SORT_USERCOUNT); list($adminGroup, $groups) = $groupsInfo->get(); $recoveryAdminEnabled = OC_App::isEnabled('files_encryption') && - OC_Appconfig::getValue( 'files_encryption', 'recoveryAdminEnabled' ); + $config->getAppValue( 'files_encryption', 'recoveryAdminEnabled', null ); if($isAdmin) { - $accessibleUsers = OC_User::getDisplayNames('', 30); $subadmins = OC_SubAdmin::getAllSubAdmins(); }else{ /* Retrieve group IDs from $groups array, so we can pass that information into OC_Group::displayNamesInGroups() */ @@ -41,48 +33,22 @@ if($isAdmin) { $gids[] = $group['id']; } } - $accessibleUsers = OC_Group::displayNamesInGroups($gids, '', 30); $subadmins = false; } // load preset quotas -$quotaPreset=OC_Appconfig::getValue('files', 'quota_preset', '1 GB, 5 GB, 10 GB'); +$quotaPreset=$config->getAppValue('files', 'quota_preset', '1 GB, 5 GB, 10 GB'); $quotaPreset=explode(',', $quotaPreset); foreach($quotaPreset as &$preset) { $preset=trim($preset); } $quotaPreset=array_diff($quotaPreset, array('default', 'none')); -$defaultQuota=OC_Appconfig::getValue('files', 'default_quota', 'none'); +$defaultQuota=$config->getAppValue('files', 'default_quota', 'none'); $defaultQuotaIsUserDefined=array_search($defaultQuota, $quotaPreset)===false && array_search($defaultQuota, array('none', 'default'))===false; -// load users and quota -foreach($accessibleUsers as $uid => $displayName) { - $quota = OC_Preferences::getValue($uid, 'files', 'quota', 'default'); - $isQuotaUserDefined = array_search($quota, $quotaPreset) === false - && array_search($quota, array('none', 'default')) === false; - - $name = $displayName; - if ($displayName !== $uid) { - $name = $name . ' (' . $uid . ')'; - } - - $user = $userManager->get($uid); - $users[] = array( - "name" => $uid, - "displayName" => $displayName, - "groups" => OC_Group::getUserGroups($uid), - 'quota' => $quota, - 'isQuotaUserDefined' => $isQuotaUserDefined, - 'subadmin' => OC_SubAdmin::getSubAdminsGroups($uid), - 'storageLocation' => $user->getHome(), - 'lastLogin' => $user->getLastLogin(), - ); -} - $tmpl = new OC_Template("settings", "users/main", "user"); -$tmpl->assign('users', $users); $tmpl->assign('groups', $groups); $tmpl->assign('adminGroup', $adminGroup); $tmpl->assign('isAdmin', (int)$isAdmin); |