diff options
Diffstat (limited to 'settings')
234 files changed, 0 insertions, 36804 deletions
diff --git a/settings/admin.php b/settings/admin.php deleted file mode 100644 index e0d3a907f47..00000000000 --- a/settings/admin.php +++ /dev/null @@ -1,253 +0,0 @@ -<?php -/** - * @author Bart Visscher <bartv@thisnet.nl> - * @author Björn Schießle <schiessle@owncloud.com> - * @author Frank Karlitschek <frank@owncloud.org> - * @author Georg Ehrke <georg@owncloud.com> - * @author Jan-Christoph Borchardt <hey@jancborchardt.net> - * @author Joas Schilling <nickvergessen@owncloud.com> - * @author Lukas Reschke <lukas@owncloud.com> - * @author Martin Mattel <martin.mattel@diemattels.at> - * @author Morris Jobke <hey@morrisjobke.de> - * @author Robin Appelman <icewind@owncloud.com> - * @author Thomas Müller <thomas.mueller@tmit.eu> - * - * @copyright Copyright (c) 2016, ownCloud, Inc. - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * This program 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, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * - */ - -use OC\Lock\NoopLockingProvider; - -OC_Util::checkAdminUser(); -\OC::$server->getNavigationManager()->setActiveEntry("admin"); - -$template = new OC_Template('settings', 'admin', 'user'); -$l = \OC::$server->getL10N('settings'); - -OC_Util::addScript('settings', 'certificates'); -OC_Util::addScript('files', 'jquery.iframe-transport'); -OC_Util::addScript('files', 'jquery.fileupload'); - -$showLog = (\OC::$server->getConfig()->getSystemValue('log_type', 'owncloud') === 'owncloud'); -$numEntriesToLoad = 3; -$entries = OC_Log_Owncloud::getEntries($numEntriesToLoad + 1); -$entriesRemaining = count($entries) > $numEntriesToLoad; -$entries = array_slice($entries, 0, $numEntriesToLoad); -$logFilePath = OC_Log_Owncloud::getLogFilePath(); -$doesLogFileExist = file_exists($logFilePath); -$logFileSize = 0; -if($doesLogFileExist) { - $logFileSize = filesize($logFilePath); -} -$config = \OC::$server->getConfig(); -$appConfig = \OC::$server->getAppConfig(); -$request = \OC::$server->getRequest(); -$certificateManager = \OC::$server->getCertificateManager(null); -$urlGenerator = \OC::$server->getURLGenerator(); - -// Should we display sendmail as an option? -$template->assign('sendmail_is_available', (bool) \OC_Helper::findBinaryPath('sendmail')); - -$template->assign('loglevel', $config->getSystemValue("loglevel", 2)); -$template->assign('mail_domain', $config->getSystemValue("mail_domain", '')); -$template->assign('mail_from_address', $config->getSystemValue("mail_from_address", '')); -$template->assign('mail_smtpmode', $config->getSystemValue("mail_smtpmode", '')); -$template->assign('mail_smtpsecure', $config->getSystemValue("mail_smtpsecure", '')); -$template->assign('mail_smtphost', $config->getSystemValue("mail_smtphost", '')); -$template->assign('mail_smtpport', $config->getSystemValue("mail_smtpport", '')); -$template->assign('mail_smtpauthtype', $config->getSystemValue("mail_smtpauthtype", '')); -$template->assign('mail_smtpauth', $config->getSystemValue("mail_smtpauth", false)); -$template->assign('mail_smtpname', $config->getSystemValue("mail_smtpname", '')); -$template->assign('mail_smtppassword', $config->getSystemValue("mail_smtppassword", '')); -$template->assign('entries', $entries); -$template->assign('entriesremain', $entriesRemaining); -$template->assign('logFileSize', $logFileSize); -$template->assign('doesLogFileExist', $doesLogFileExist); -$template->assign('showLog', $showLog); -$template->assign('readOnlyConfigEnabled', OC_Helper::isReadOnlyConfigEnabled()); -$template->assign('isLocaleWorking', OC_Util::isSetLocaleWorking()); -$template->assign('isAnnotationsWorking', OC_Util::isAnnotationsWorking()); -$template->assign('checkForWorkingWellKnownSetup', $config->getSystemValue('check_for_working_wellknown_setup', true)); -$template->assign('has_fileinfo', OC_Util::fileInfoLoaded()); -$template->assign('backgroundjobs_mode', $appConfig->getValue('core', 'backgroundjobs_mode', 'ajax')); -$template->assign('cron_log', $config->getSystemValue('cron_log', true)); -$template->assign('lastcron', $appConfig->getValue('core', 'lastcron', false)); -$template->assign('shareAPIEnabled', $appConfig->getValue('core', 'shareapi_enabled', 'yes')); -$template->assign('shareDefaultExpireDateSet', $appConfig->getValue('core', 'shareapi_default_expire_date', 'no')); -$template->assign('shareExpireAfterNDays', $appConfig->getValue('core', 'shareapi_expire_after_n_days', '7')); -$template->assign('shareEnforceExpireDate', $appConfig->getValue('core', 'shareapi_enforce_expire_date', 'no')); -$excludeGroups = $appConfig->getValue('core', 'shareapi_exclude_groups', 'no') === 'yes' ? true : false; -$template->assign('shareExcludeGroups', $excludeGroups); -$excludedGroupsList = $appConfig->getValue('core', 'shareapi_exclude_groups_list', ''); -$excludedGroupsList = json_decode($excludedGroupsList); -$template->assign('shareExcludedGroupsList', !is_null($excludedGroupsList) ? implode('|', $excludedGroupsList) : ''); -$template->assign('encryptionEnabled', \OC::$server->getEncryptionManager()->isEnabled()); -$backends = \OC::$server->getUserManager()->getBackends(); -$externalBackends = (count($backends) > 1) ? true : false; -$template->assign('encryptionReady', \OC::$server->getEncryptionManager()->isReady()); -$template->assign('externalBackendsEnabled', $externalBackends); - -$encryptionModules = \OC::$server->getEncryptionManager()->getEncryptionModules(); -$defaultEncryptionModuleId = \OC::$server->getEncryptionManager()->getDefaultEncryptionModuleId(); - -$encModulues = array(); -foreach ($encryptionModules as $module) { - $encModulues[$module['id']]['displayName'] = $module['displayName']; - $encModulues[$module['id']]['default'] = false; - if ($module['id'] === $defaultEncryptionModuleId) { - $encModulues[$module['id']]['default'] = true; - } -} -$template->assign('encryptionModules', $encModulues); - -// If the current web root is non-empty but the web root from the config is, -// and system cron is used, the URL generator fails to build valid URLs. -$shouldSuggestOverwriteCliUrl = $config->getAppValue('core', 'backgroundjobs_mode', 'ajax') === 'cron' && - \OC::$WEBROOT && \OC::$WEBROOT !== '/' && - !$config->getSystemValue('overwrite.cli.url', ''); -$suggestedOverwriteCliUrl = ($shouldSuggestOverwriteCliUrl) ? \OC::$WEBROOT : ''; -$template->assign('suggestedOverwriteCliUrl', $suggestedOverwriteCliUrl); - -$template->assign('allowLinks', $appConfig->getValue('core', 'shareapi_allow_links', 'yes')); -$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('allowShareDialogUserEnumeration', $appConfig->getValue('core', 'shareapi_allow_share_dialog_user_enumeration', 'yes')); -$template->assign('onlyShareWithGroupMembers', \OC\Share\Share::shareWithGroupMembersOnly()); -$template->assign('allowGroupSharing', $appConfig->getValue('core', 'shareapi_allow_group_sharing', 'yes')); -$databaseOverload = (strpos(\OCP\Config::getSystemValue('dbtype'), 'sqlite') !== false); -$template->assign('databaseOverload', $databaseOverload); -$template->assign('cronErrors', $appConfig->getValue('core', 'cronErrors')); - -// warn if php is not setup properly to get system variables with getenv -$path = getenv('PATH'); -$template->assign('getenvServerNotWorking', empty($path)); - -// warn if Windows is used -$template->assign('WindowsWarning', OC_Util::runningOnWindows()); - -// warn if outdated version of a memcache module is used -$caches = [ - 'apcu' => ['name' => $l->t('APCu'), 'version' => '4.0.6'], - 'redis' => ['name' => $l->t('Redis'), 'version' => '2.2.5'], -]; - -$outdatedCaches = []; -foreach ($caches as $php_module => $data) { - $isOutdated = extension_loaded($php_module) && version_compare(phpversion($php_module), $data['version'], '<'); - if ($isOutdated) { - $outdatedCaches[$php_module] = $data; - } -} -$template->assign('OutdatedCacheWarning', $outdatedCaches); - -// add hardcoded forms from the template -$forms = OC_App::getForms('admin'); - -if ($config->getSystemValue('enable_certificate_management', false)) { - $certificatesTemplate = new OC_Template('settings', 'certificates'); - $certificatesTemplate->assign('type', 'admin'); - $certificatesTemplate->assign('uploadRoute', 'settings.Certificate.addSystemRootCertificate'); - $certificatesTemplate->assign('certs', $certificateManager->listCertificates()); - $certificatesTemplate->assign('urlGenerator', $urlGenerator); - $forms[] = $certificatesTemplate->fetchPage(); -} - -$formsAndMore = array(); -if ($request->getServerProtocol() !== 'https' || !OC_Util::isAnnotationsWorking() || - $suggestedOverwriteCliUrl || !OC_Util::isSetLocaleWorking() || - !OC_Util::fileInfoLoaded() || $databaseOverload -) { - $formsAndMore[] = array('anchor' => 'security-warning', 'section-name' => $l->t('Security & setup warnings')); -} -$formsAndMore[] = array('anchor' => 'shareAPI', 'section-name' => $l->t('Sharing')); -$formsAndMore[] = ['anchor' => 'encryptionAPI', 'section-name' => $l->t('Server-side encryption')]; - -// Prioritize fileSharingSettings and files_external and move updater to the version -$fileSharingSettings = $filesExternal = $updaterAppPanel = $ocDefaultEncryptionModulePanel = ''; -foreach ($forms as $index => $form) { - if (strpos($form, 'id="fileSharingSettings"')) { - $fileSharingSettings = $form; - unset($forms[$index]); - continue; - } - if (strpos($form, 'id="files_external"')) { - $filesExternal = $form; - unset($forms[$index]); - continue; - } - if (strpos($form, 'class="updater-admin"')) { - $updaterAppPanel = $form; - unset($forms[$index]); - continue; - } - if (strpos($form, 'id="ocDefaultEncryptionModule"')) { - $ocDefaultEncryptionModulePanel = $form; - unset($forms[$index]); - continue; - } -} -if ($filesExternal) { - $formsAndMore[] = array('anchor' => 'files_external', 'section-name' => $l->t('External Storage')); -} - -$template->assign('fileSharingSettings', $fileSharingSettings); -$template->assign('filesExternal', $filesExternal); -$template->assign('updaterAppPanel', $updaterAppPanel); -$template->assign('ocDefaultEncryptionModulePanel', $ocDefaultEncryptionModulePanel); -$lockingProvider = \OC::$server->getLockingProvider(); -if ($lockingProvider instanceof NoopLockingProvider) { - $template->assign('fileLockingType', 'none'); -} else if ($lockingProvider instanceof \OC\Lock\DBLockingProvider) { - $template->assign('fileLockingType', 'db'); -} else { - $template->assign('fileLockingType', 'cache'); -} - -$formsMap = array_map(function ($form) { - if (preg_match('%(<h2(?P<class>[^>]*)>.*?</h2>)%i', $form, $regs)) { - $sectionName = str_replace('<h2'.$regs['class'].'>', '', $regs[0]); - $sectionName = str_replace('</h2>', '', $sectionName); - $anchor = strtolower($sectionName); - $anchor = str_replace(' ', '-', $anchor); - - return array( - 'anchor' => $anchor, - 'section-name' => $sectionName, - 'form' => $form - ); - } - return array( - 'form' => $form - ); -}, $forms); - -$formsAndMore = array_merge($formsAndMore, $formsMap); - -// add bottom hardcoded forms from the template -$formsAndMore[] = ['anchor' => 'backgroundjobs', 'section-name' => $l->t('Cron')]; -$formsAndMore[] = ['anchor' => 'mail_general_settings', 'section-name' => $l->t('Email server')]; -$formsAndMore[] = ['anchor' => 'log-section', 'section-name' => $l->t('Log')]; -$formsAndMore[] = ['anchor' => 'admin-tips', 'section-name' => $l->t('Tips & tricks')]; -if ($updaterAppPanel) { - $formsAndMore[] = ['anchor' => 'updater', 'section-name' => $l->t('Updates')]; -} - -$template->assign('forms', $formsAndMore); - -$template->printPage(); diff --git a/settings/ajax/disableapp.php b/settings/ajax/disableapp.php deleted file mode 100644 index 5d86168287b..00000000000 --- a/settings/ajax/disableapp.php +++ /dev/null @@ -1,35 +0,0 @@ -<?php -/** - * @author Georg Ehrke <georg@owncloud.com> - * @author Kamil Domanski <kdomanski@kdemail.net> - * @author Lukas Reschke <lukas@owncloud.com> - * - * @copyright Copyright (c) 2016, ownCloud, Inc. - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * This program 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, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * - */ -OCP\JSON::checkAdminUser(); -OCP\JSON::callCheck(); - -if (!array_key_exists('appid', $_POST)) { - OC_JSON::error(); - exit; -} - -$appId = (string)$_POST['appid']; -$appId = OC_App::cleanAppId($appId); - -OC_App::disable($appId); -OC_JSON::success(); diff --git a/settings/ajax/enableapp.php b/settings/ajax/enableapp.php deleted file mode 100644 index 57b6e919995..00000000000 --- a/settings/ajax/enableapp.php +++ /dev/null @@ -1,39 +0,0 @@ -<?php -/** - * @author Bart Visscher <bartv@thisnet.nl> - * @author Christopher Schäpers <kondou@ts.unde.re> - * @author Joas Schilling <nickvergessen@owncloud.com> - * @author Kamil Domanski <kdomanski@kdemail.net> - * @author Lukas Reschke <lukas@owncloud.com> - * @author Robin Appelman <icewind@owncloud.com> - * @author Thomas Müller <thomas.mueller@tmit.eu> - * - * @copyright Copyright (c) 2016, ownCloud, Inc. - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * This program 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, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * - */ -OC_JSON::checkAdminUser(); -OCP\JSON::callCheck(); - -$groups = isset($_POST['groups']) ? (array)$_POST['groups'] : null; - -try { - $app = OC_App::cleanAppId((string)$_POST['appid']); - OC_App::enable($app, $groups); - OC_JSON::success(['data' => ['update_required' => \OC_App::shouldUpgrade($app)]]); -} catch (Exception $e) { - \OCP\Util::writeLog('core', $e->getMessage(), \OCP\Util::ERROR); - OC_JSON::error(array("data" => array("message" => $e->getMessage()) )); -} diff --git a/settings/ajax/installapp.php b/settings/ajax/installapp.php deleted file mode 100644 index 96f5ad9d91c..00000000000 --- a/settings/ajax/installapp.php +++ /dev/null @@ -1,43 +0,0 @@ -<?php -/** - * @author Georg Ehrke <georg@owncloud.com> - * @author Lukas Reschke <lukas@owncloud.com> - * @author Robin Appelman <icewind@owncloud.com> - * - * @copyright Copyright (c) 2016, ownCloud, Inc. - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * This program 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, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * - */ -OCP\JSON::checkAdminUser(); -OCP\JSON::callCheck(); - -if (!array_key_exists('appid', $_POST)) { - OC_JSON::error(); - exit; -} - -$appId = (string)$_POST['appid']; -$appId = OC_App::cleanAppId($appId); - -$result = OC_App::installApp($appId); -if($result !== false) { - // FIXME: Clear the cache - move that into some sane helper method - \OC::$server->getMemCacheFactory()->create('settings')->remove('listApps-0'); - \OC::$server->getMemCacheFactory()->create('settings')->remove('listApps-1'); - OC_JSON::success(array('data' => array('appid' => $appId))); -} else { - $l = \OC::$server->getL10N('settings'); - OC_JSON::error(array("data" => array( "message" => $l->t("Couldn't remove app.") ))); -} diff --git a/settings/ajax/navigationdetect.php b/settings/ajax/navigationdetect.php deleted file mode 100644 index 61ec93a79b5..00000000000 --- a/settings/ajax/navigationdetect.php +++ /dev/null @@ -1,27 +0,0 @@ -<?php -/** - * @author Robin Appelman <icewind@owncloud.com> - * @author Robin McCorkell <robin@mccorkell.me.uk> - * - * @copyright Copyright (c) 2016, ownCloud, Inc. - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * This program 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, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * - */ -OC_Util::checkAdminUser(); -OCP\JSON::callCheck(); - -$navigation = \OC_App::getNavigation(); - -OCP\JSON::success(['nav_entries' => $navigation]); diff --git a/settings/ajax/setlanguage.php b/settings/ajax/setlanguage.php deleted file mode 100644 index cf59151ccf1..00000000000 --- a/settings/ajax/setlanguage.php +++ /dev/null @@ -1,45 +0,0 @@ -<?php -/** - * @author Bart Visscher <bartv@thisnet.nl> - * @author Christopher Schäpers <kondou@ts.unde.re> - * @author Joas Schilling <nickvergessen@owncloud.com> - * @author Lukas Reschke <lukas@owncloud.com> - * @author Morris Jobke <hey@morrisjobke.de> - * @author Robin Appelman <icewind@owncloud.com> - * @author Thomas Müller <thomas.mueller@tmit.eu> - * - * @copyright Copyright (c) 2016, ownCloud, Inc. - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * This program 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, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * - */ -$l = \OC::$server->getL10N('settings'); - -OC_JSON::checkLoggedIn(); -OCP\JSON::callCheck(); - - -// Get data -if( isset( $_POST['lang'] ) ) { - $languageCodes = \OC::$server->getL10NFactory()->findAvailableLanguages(); - $lang = (string)$_POST['lang']; - if(array_search($lang, $languageCodes) or $lang === 'en') { - \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") ))); - } -}else{ - OC_JSON::error(array("data" => array( "message" => $l->t("Invalid request") ))); -} diff --git a/settings/ajax/setquota.php b/settings/ajax/setquota.php deleted file mode 100644 index 0c974daaeed..00000000000 --- a/settings/ajax/setquota.php +++ /dev/null @@ -1,68 +0,0 @@ -<?php -/** - * @author Arthur Schiwon <blizzz@owncloud.com> - * @author Bart Visscher <bartv@thisnet.nl> - * @author Björn Schießle <schiessle@owncloud.com> - * @author Christopher Schäpers <kondou@ts.unde.re> - * @author Felix Moeller <mail@felixmoeller.de> - * @author Georg Ehrke <georg@owncloud.com> - * @author Lukas Reschke <lukas@owncloud.com> - * @author Morris Jobke <hey@morrisjobke.de> - * @author Robin Appelman <icewind@owncloud.com> - * @author Thomas Müller <thomas.mueller@tmit.eu> - * - * @copyright Copyright (c) 2016, ownCloud, Inc. - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * This program 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, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * - */ - -OC_JSON::checkSubAdminUser(); -OCP\JSON::callCheck(); - -$username = isset($_POST["username"]) ? (string)$_POST["username"] : ''; - -$isUserAccessible = false; -$currentUserObject = \OC::$server->getUserSession()->getUser(); -$targetUserObject = \OC::$server->getUserManager()->get($username); -if($targetUserObject !== null && $currentUserObject !== null) { - $isUserAccessible = \OC::$server->getGroupManager()->getSubAdmin()->isUserAccessible($currentUserObject, $targetUserObject); -} - -if(($username === '' && !OC_User::isAdminUser(OC_User::getUser())) - || (!OC_User::isAdminUser(OC_User::getUser()) - && !$isUserAccessible)) { - $l = \OC::$server->getL10N('core'); - OC_JSON::error(array( 'data' => array( 'message' => $l->t('Authentication error') ))); - exit(); -} - -//make sure the quota is in the expected format -$quota= (string)$_POST["quota"]; -if($quota !== 'none' and $quota !== 'default') { - $quota= OC_Helper::computerFileSize($quota); - $quota=OC_Helper::humanFileSize($quota); -} - -// Return Success story -if($username) { - $targetUserObject->setQuota($quota); -}else{//set the default quota when no username is specified - if($quota === 'default') {//'default' as default quota makes no sense - $quota='none'; - } - \OC::$server->getAppConfig()->setValue('files', 'default_quota', $quota); -} -OC_JSON::success(array("data" => array( "username" => $username , 'quota' => $quota))); - diff --git a/settings/ajax/togglegroups.php b/settings/ajax/togglegroups.php deleted file mode 100644 index 8cf51ab707f..00000000000 --- a/settings/ajax/togglegroups.php +++ /dev/null @@ -1,84 +0,0 @@ -<?php -/** - * @author Bart Visscher <bartv@thisnet.nl> - * @author Christopher Schäpers <kondou@ts.unde.re> - * @author Georg Ehrke <georg@owncloud.com> - * @author Jakob Sack <mail@jakobsack.de> - * @author Lukas Reschke <lukas@owncloud.com> - * @author Robin Appelman <icewind@owncloud.com> - * @author Thomas Müller <thomas.mueller@tmit.eu> - * - * @copyright Copyright (c) 2016, ownCloud, Inc. - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * This program 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, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * - */ -OC_JSON::checkSubAdminUser(); -OCP\JSON::callCheck(); - -$success = true; -$username = (string)$_POST['username']; -$group = (string)$_POST['group']; - -if($username === OC_User::getUser() && $group === "admin" && OC_User::isAdminUser($username)) { - $l = \OC::$server->getL10N('core'); - OC_JSON::error(array( 'data' => array( 'message' => $l->t('Admins can\'t remove themself from the admin group')))); - exit(); -} - -$isUserAccessible = false; -$isGroupAccessible = false; -$currentUserObject = \OC::$server->getUserSession()->getUser(); -$targetUserObject = \OC::$server->getUserManager()->get($username); -$targetGroupObject = \OC::$server->getGroupManager()->get($group); -if($targetUserObject !== null && $currentUserObject !== null && $targetGroupObject !== null) { - $isUserAccessible = \OC::$server->getGroupManager()->getSubAdmin()->isUserAccessible($currentUserObject, $targetUserObject); - $isGroupAccessible = \OC::$server->getGroupManager()->getSubAdmin()->isSubAdminofGroup($currentUserObject, $targetGroupObject); -} - -if(!OC_User::isAdminUser(OC_User::getUser()) - && (!$isUserAccessible - || !$isGroupAccessible)) { - $l = \OC::$server->getL10N('core'); - OC_JSON::error(array( 'data' => array( 'message' => $l->t('Authentication error') ))); - exit(); -} - -if(!OC_Group::groupExists($group)) { - OC_Group::createGroup($group); -} - -$l = \OC::$server->getL10N('settings'); - -$error = $l->t("Unable to add user to group %s", $group); -$action = "add"; - -// Toggle group -if( OC_Group::inGroup( $username, $group )) { - $action = "remove"; - $error = $l->t("Unable to remove user from group %s", $group); - $success = OC_Group::removeFromGroup( $username, $group ); - $usersInGroup=OC_Group::usersInGroup($group); -} -else{ - $success = OC_Group::addToGroup( $username, $group ); -} - -// Return Success story -if( $success ) { - OC_JSON::success(array("data" => array( "username" => $username, "action" => $action, "groupname" => $group ))); -} -else{ - OC_JSON::error(array("data" => array( "message" => $error ))); -} diff --git a/settings/ajax/togglesubadmins.php b/settings/ajax/togglesubadmins.php deleted file mode 100644 index afeaa1acfa0..00000000000 --- a/settings/ajax/togglesubadmins.php +++ /dev/null @@ -1,45 +0,0 @@ -<?php -/** - * @author Bart Visscher <bartv@thisnet.nl> - * @author Georg Ehrke <georg@owncloud.com> - * @author Lukas Reschke <lukas@owncloud.com> - * - * @copyright Copyright (c) 2016, ownCloud, Inc. - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * This program 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, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * - */ -OC_JSON::checkAdminUser(); -OCP\JSON::callCheck(); - -$username = (string)$_POST['username']; -$group = (string)$_POST['group']; - -$subAdminManager = \OC::$server->getGroupManager()->getSubAdmin(); -$targetUserObject = \OC::$server->getUserManager()->get($username); -$targetGroupObject = \OC::$server->getGroupManager()->get($group); - -$isSubAdminOfGroup = false; -if($targetUserObject !== null && $targetUserObject !== null) { - $isSubAdminOfGroup = $subAdminManager->isSubAdminofGroup($targetUserObject, $targetGroupObject); -} - -// Toggle group -if($isSubAdminOfGroup) { - $subAdminManager->deleteSubAdmin($targetUserObject, $targetGroupObject); -} else { - $subAdminManager->createSubAdmin($targetUserObject, $targetGroupObject); -} - -OC_JSON::success(); diff --git a/settings/ajax/uninstallapp.php b/settings/ajax/uninstallapp.php deleted file mode 100644 index 7ff20a1c999..00000000000 --- a/settings/ajax/uninstallapp.php +++ /dev/null @@ -1,43 +0,0 @@ -<?php -/** - * @author Georg Ehrke <georg@owncloud.com> - * @author Lukas Reschke <lukas@owncloud.com> - * @author Robin Appelman <icewind@owncloud.com> - * - * @copyright Copyright (c) 2016, ownCloud, Inc. - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * This program 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, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * - */ -OCP\JSON::checkAdminUser(); -OCP\JSON::callCheck(); - -if (!array_key_exists('appid', $_POST)) { - OC_JSON::error(); - exit; -} - -$appId = (string)$_POST['appid']; -$appId = OC_App::cleanAppId($appId); - -$result = OC_App::removeApp($appId); -if($result !== false) { - // FIXME: Clear the cache - move that into some sane helper method - \OC::$server->getMemCacheFactory()->create('settings')->remove('listApps-0'); - \OC::$server->getMemCacheFactory()->create('settings')->remove('listApps-1'); - OC_JSON::success(array('data' => array('appid' => $appId))); -} else { - $l = \OC::$server->getL10N('settings'); - OC_JSON::error(array("data" => array( "message" => $l->t("Couldn't remove app.") ))); -} diff --git a/settings/ajax/updateapp.php b/settings/ajax/updateapp.php deleted file mode 100644 index 8521914884f..00000000000 --- a/settings/ajax/updateapp.php +++ /dev/null @@ -1,66 +0,0 @@ -<?php -/** - * @author Christopher Schäpers <kondou@ts.unde.re> - * @author Frank Karlitschek <frank@owncloud.org> - * @author Georg Ehrke <georg@owncloud.com> - * @author Lukas Reschke <lukas@owncloud.com> - * @author Robin Appelman <icewind@owncloud.com> - * @author Thomas Müller <thomas.mueller@tmit.eu> - * - * @copyright Copyright (c) 2016, ownCloud, Inc. - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * This program 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, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * - */ -OCP\JSON::checkAdminUser(); -OCP\JSON::callCheck(); - -if (!array_key_exists('appid', $_POST)) { - OCP\JSON::error(array( - 'message' => 'No AppId given!' - )); - return; -} - -$appId = (string)$_POST['appid']; - -if (!is_numeric($appId)) { - $appId = \OC::$server->getAppConfig()->getValue($appId, 'ocsid', null); - if ($appId === null) { - OCP\JSON::error(array( - 'message' => 'No OCS-ID found for app!' - )); - exit; - } -} - -$appId = OC_App::cleanAppId($appId); - -$config = \OC::$server->getConfig(); -$config->setSystemValue('maintenance', true); -try { - $result = OC_Installer::updateAppByOCSId($appId); - $config->setSystemValue('maintenance', false); -} catch(Exception $ex) { - $config->setSystemValue('maintenance', false); - OC_JSON::error(array("data" => array( "message" => $ex->getMessage() ))); - return; -} - -if($result !== false) { - OC_JSON::success(array('data' => array('appid' => $appId))); -} else { - $l = \OC::$server->getL10N('settings'); - OC_JSON::error(array("data" => array( "message" => $l->t("Couldn't update app.") ))); -} diff --git a/settings/application.php b/settings/application.php deleted file mode 100644 index 5b84d028abf..00000000000 --- a/settings/application.php +++ /dev/null @@ -1,258 +0,0 @@ -<?php -/** - * @author Björn Schießle <schiessle@owncloud.com> - * @author Georg Ehrke <georg@owncloud.com> - * @author Joas Schilling <nickvergessen@owncloud.com> - * @author Lukas Reschke <lukas@owncloud.com> - * @author Morris Jobke <hey@morrisjobke.de> - * @author Robin Appelman <icewind@owncloud.com> - * @author Roeland Jago Douma <rullzer@owncloud.com> - * @author Thomas Müller <thomas.mueller@tmit.eu> - * - * @copyright Copyright (c) 2016, ownCloud, Inc. - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * This program 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, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * - */ - -namespace OC\Settings; - -use OC\Files\View; -use OC\Settings\Controller\AppSettingsController; -use OC\Settings\Controller\CertificateController; -use OC\Settings\Controller\CheckSetupController; -use OC\Settings\Controller\EncryptionController; -use OC\Settings\Controller\GroupsController; -use OC\Settings\Controller\LogSettingsController; -use OC\Settings\Controller\MailSettingsController; -use OC\Settings\Controller\SecuritySettingsController; -use OC\Settings\Controller\UsersController; -use OC\Settings\Middleware\SubadminMiddleware; -use \OCP\AppFramework\App; -use OCP\IContainer; -use \OCP\Util; -use OC\Server; - -/** - * @package OC\Settings - */ -class Application extends App { - - - /** - * @param array $urlParams - */ - public function __construct(array $urlParams=[]){ - parent::__construct('settings', $urlParams); - - $container = $this->getContainer(); - - /** - * Controllers - */ - $container->registerService('MailSettingsController', function(IContainer $c) { - return new MailSettingsController( - $c->query('AppName'), - $c->query('Request'), - $c->query('L10N'), - $c->query('Config'), - $c->query('UserSession'), - $c->query('Defaults'), - $c->query('Mailer'), - $c->query('DefaultMailAddress') - ); - }); - $container->registerService('EncryptionController', function(IContainer $c) { - return new EncryptionController( - $c->query('AppName'), - $c->query('Request'), - $c->query('L10N'), - $c->query('Config'), - $c->query('DatabaseConnection'), - $c->query('UserManager'), - new View(), - $c->query('Logger') - ); - }); - $container->registerService('AppSettingsController', function(IContainer $c) { - return new AppSettingsController( - $c->query('AppName'), - $c->query('Request'), - $c->query('L10N'), - $c->query('Config'), - $c->query('ICacheFactory'), - $c->query('INavigationManager'), - $c->query('IAppManager'), - $c->query('OcsClient') - ); - }); - $container->registerService('SecuritySettingsController', function(IContainer $c) { - return new SecuritySettingsController( - $c->query('AppName'), - $c->query('Request'), - $c->query('Config') - ); - }); - $container->registerService('CertificateController', function(IContainer $c) { - return new CertificateController( - $c->query('AppName'), - $c->query('Request'), - $c->query('CertificateManager'), - $c->query('SystemCertificateManager'), - $c->query('L10N'), - $c->query('IAppManager') - ); - }); - $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'), - $c->query('Logger'), - $c->query('Defaults'), - $c->query('Mailer'), - $c->query('DefaultMailAddress'), - $c->query('URLGenerator'), - $c->query('OCP\\App\\IAppManager'), - $c->query('OCP\\IAvatarManager') - ); - }); - $container->registerService('LogSettingsController', function(IContainer $c) { - return new LogSettingsController( - $c->query('AppName'), - $c->query('Request'), - $c->query('Config'), - $c->query('L10N') - ); - }); - $container->registerService('CheckSetupController', function(IContainer $c) { - return new CheckSetupController( - $c->query('AppName'), - $c->query('Request'), - $c->query('Config'), - $c->query('ClientService'), - $c->query('URLGenerator'), - $c->query('Util'), - $c->query('L10N'), - $c->query('Checker') - ); - }); - - /** - * 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(IContainer $c) { - return $c->query('ServerContainer')->getConfig(); - }); - $container->registerService('ICacheFactory', function(IContainer $c) { - return $c->query('ServerContainer')->getMemCacheFactory(); - }); - $container->registerService('L10N', function(IContainer $c) { - return $c->query('ServerContainer')->getL10N('settings'); - }); - $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(); - }); - /** 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) { - $userObject = \OC::$server->getUserSession()->getUser(); - $isSubAdmin = false; - if($userObject !== null) { - $isSubAdmin = \OC::$server->getGroupManager()->getSubAdmin()->isSubAdmin($userObject); - } - return $isSubAdmin; - }); - $container->registerService('Mailer', function(IContainer $c) { - return $c->query('ServerContainer')->getMailer(); - }); - $container->registerService('Defaults', function(IContainer $c) { - return new \OC_Defaults; - }); - $container->registerService('DefaultMailAddress', function(IContainer $c) { - return Util::getDefaultEmailAddress('no-reply'); - }); - $container->registerService('Logger', function(IContainer $c) { - return $c->query('ServerContainer')->getLogger(); - }); - $container->registerService('URLGenerator', function(IContainer $c) { - return $c->query('ServerContainer')->getURLGenerator(); - }); - $container->registerService('ClientService', function(IContainer $c) { - return $c->query('ServerContainer')->getHTTPClientService(); - }); - $container->registerService('INavigationManager', function(IContainer $c) { - return $c->query('ServerContainer')->getNavigationManager(); - }); - $container->registerService('IAppManager', function(IContainer $c) { - return $c->query('ServerContainer')->getAppManager(); - }); - $container->registerService('OcsClient', function(IContainer $c) { - return $c->query('ServerContainer')->getOcsClient(); - }); - $container->registerService('Util', function(IContainer $c) { - return new \OC_Util(); - }); - $container->registerService('DatabaseConnection', function(IContainer $c) { - return $c->query('ServerContainer')->getDatabaseConnection(); - }); - $container->registerService('CertificateManager', function(IContainer $c){ - return $c->query('ServerContainer')->getCertificateManager(); - }); - $container->registerService('SystemCertificateManager', function (IContainer $c) { - return $c->query('ServerContainer')->getCertificateManager(null); - }); - $container->registerService('Checker', function(IContainer $c) { - /** @var Server $server */ - $server = $c->query('ServerContainer'); - return $server->getIntegrityCodeChecker(); - }); - } -} diff --git a/settings/changepassword/controller.php b/settings/changepassword/controller.php deleted file mode 100644 index 8469ec1423a..00000000000 --- a/settings/changepassword/controller.php +++ /dev/null @@ -1,159 +0,0 @@ -<?php -/** - * @author Arthur Schiwon <blizzz@owncloud.com> - * @author Björn Schießle <schiessle@owncloud.com> - * @author Christopher Schäpers <kondou@ts.unde.re> - * @author Clark Tomlinson <fallen013@gmail.com> - * @author cmeh <cmeh@users.noreply.github.com> - * @author Florin Peter <github@florin-peter.de> - * @author Jakob Sack <mail@jakobsack.de> - * @author Lukas Reschke <lukas@owncloud.com> - * @author Robin Appelman <icewind@owncloud.com> - * @author Sam Tuke <mail@samtuke.com> - * @author Thomas Müller <thomas.mueller@tmit.eu> - * - * @copyright Copyright (c) 2016, ownCloud, Inc. - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * This program 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, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * - */ -namespace OC\Settings\ChangePassword; - -class Controller { - public static function changePersonalPassword($args) { - // Check if we are an user - \OC_JSON::callCheck(); - \OC_JSON::checkLoggedIn(); - - $username = \OC_User::getUser(); - $password = isset($_POST['personal-password']) ? $_POST['personal-password'] : null; - $oldPassword = isset($_POST['oldpassword']) ? $_POST['oldpassword'] : ''; - - if (!\OC_User::checkPassword($username, $oldPassword)) { - $l = new \OC_L10n('settings'); - \OC_JSON::error(array("data" => array("message" => $l->t("Wrong password")) )); - exit(); - } - if (!is_null($password) && \OC_User::setPassword($username, $password)) { - \OC_JSON::success(); - } else { - \OC_JSON::error(); - } - } - - public static function changeUserPassword($args) { - // Check if we are an user - \OC_JSON::callCheck(); - \OC_JSON::checkLoggedIn(); - - $l = new \OC_L10n('settings'); - if (isset($_POST['username'])) { - $username = $_POST['username']; - } else { - \OC_JSON::error(array('data' => array('message' => $l->t('No user supplied')) )); - exit(); - } - - $password = isset($_POST['password']) ? $_POST['password'] : null; - $recoveryPassword = isset($_POST['recoveryPassword']) ? $_POST['recoveryPassword'] : null; - - $isUserAccessible = false; - $currentUserObject = \OC::$server->getUserSession()->getUser(); - $targetUserObject = \OC::$server->getUserManager()->get($username); - if($currentUserObject !== null && $targetUserObject !== null) { - $isUserAccessible = \OC::$server->getGroupManager()->getSubAdmin()->isUserAccessible($currentUserObject, $targetUserObject); - } - - if (\OC_User::isAdminUser(\OC_User::getUser())) { - $userstatus = 'admin'; - } elseif ($isUserAccessible) { - $userstatus = 'subadmin'; - } else { - \OC_JSON::error(array('data' => array('message' => $l->t('Authentication error')) )); - exit(); - } - - if (\OC_App::isEnabled('encryption')) { - //handle the recovery case - $crypt = new \OCA\Encryption\Crypto\Crypt( - \OC::$server->getLogger(), - \OC::$server->getUserSession(), - \OC::$server->getConfig(), - \OC::$server->getL10N('encryption')); - $keyStorage = \OC::$server->getEncryptionKeyStorage(); - $util = new \OCA\Encryption\Util( - new \OC\Files\View(), - $crypt, - \OC::$server->getLogger(), - \OC::$server->getUserSession(), - \OC::$server->getConfig(), - \OC::$server->getUserManager()); - $keyManager = new \OCA\Encryption\KeyManager( - $keyStorage, - $crypt, - \OC::$server->getConfig(), - \OC::$server->getUserSession(), - new \OCA\Encryption\Session(\OC::$server->getSession()), - \OC::$server->getLogger(), - $util); - $recovery = new \OCA\Encryption\Recovery( - \OC::$server->getUserSession(), - $crypt, - \OC::$server->getSecureRandom(), - $keyManager, - \OC::$server->getConfig(), - $keyStorage, - \OC::$server->getEncryptionFilesHelper(), - new \OC\Files\View()); - $recoveryAdminEnabled = $recovery->isRecoveryKeyEnabled(); - - $validRecoveryPassword = false; - $recoveryEnabledForUser = false; - if ($recoveryAdminEnabled) { - $validRecoveryPassword = $keyManager->checkRecoveryPassword($recoveryPassword); - $recoveryEnabledForUser = $recovery->isRecoveryEnabledForUser($username); - } - - if ($recoveryEnabledForUser && $recoveryPassword === '') { - \OC_JSON::error(array('data' => array( - 'message' => $l->t('Please provide an admin recovery password, otherwise all user data will be lost') - ))); - } elseif ($recoveryEnabledForUser && ! $validRecoveryPassword) { - \OC_JSON::error(array('data' => array( - 'message' => $l->t('Wrong admin recovery password. Please check the password and try again.') - ))); - } else { // now we know that everything is fine regarding the recovery password, let's try to change the password - $result = \OC_User::setPassword($username, $password, $recoveryPassword); - if (!$result && $recoveryEnabledForUser) { - \OC_JSON::error(array( - "data" => array( - "message" => $l->t("Backend doesn't support password change, but the user's encryption key was successfully updated.") - ) - )); - } elseif (!$result && !$recoveryEnabledForUser) { - \OC_JSON::error(array("data" => array( "message" => $l->t("Unable to change password" ) ))); - } else { - \OC_JSON::success(array("data" => array( "username" => $username ))); - } - - } - } else { // if encryption is disabled, proceed - if (!is_null($password) && \OC_User::setPassword($username, $password)) { - \OC_JSON::success(array('data' => array('username' => $username))); - } else { - \OC_JSON::error(array('data' => array('message' => $l->t('Unable to change password')))); - } - } - } -} diff --git a/settings/controller/appsettingscontroller.php b/settings/controller/appsettingscontroller.php deleted file mode 100644 index cc69d3130d9..00000000000 --- a/settings/controller/appsettingscontroller.php +++ /dev/null @@ -1,322 +0,0 @@ -<?php -/** - * @author Joas Schilling <nickvergessen@owncloud.com> - * @author Lukas Reschke <lukas@owncloud.com> - * @author Morris Jobke <hey@morrisjobke.de> - * @author Thomas Müller <thomas.mueller@tmit.eu> - * - * @copyright Copyright (c) 2016, ownCloud, Inc. - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * This program 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, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * - */ - -namespace OC\Settings\Controller; - -use OC\App\DependencyAnalyzer; -use OC\App\Platform; -use OC\OCSClient; -use OCP\App\IAppManager; -use \OCP\AppFramework\Controller; -use OCP\AppFramework\Http\ContentSecurityPolicy; -use OCP\AppFramework\Http\DataResponse; -use OCP\AppFramework\Http\TemplateResponse; -use OCP\ICacheFactory; -use OCP\INavigationManager; -use OCP\IRequest; -use OCP\IL10N; -use OCP\IConfig; - -/** - * @package OC\Settings\Controller - */ -class AppSettingsController extends Controller { - const CAT_ENABLED = 0; - const CAT_DISABLED = 1; - - /** @var \OCP\IL10N */ - private $l10n; - /** @var IConfig */ - private $config; - /** @var \OCP\ICache */ - private $cache; - /** @var INavigationManager */ - private $navigationManager; - /** @var IAppManager */ - private $appManager; - /** @var OCSClient */ - private $ocsClient; - - /** - * @param string $appName - * @param IRequest $request - * @param IL10N $l10n - * @param IConfig $config - * @param ICacheFactory $cache - * @param INavigationManager $navigationManager - * @param IAppManager $appManager - * @param OCSClient $ocsClient - */ - public function __construct($appName, - IRequest $request, - IL10N $l10n, - IConfig $config, - ICacheFactory $cache, - INavigationManager $navigationManager, - IAppManager $appManager, - OCSClient $ocsClient) { - parent::__construct($appName, $request); - $this->l10n = $l10n; - $this->config = $config; - $this->cache = $cache->create($appName); - $this->navigationManager = $navigationManager; - $this->appManager = $appManager; - $this->ocsClient = $ocsClient; - } - - /** - * Enables or disables the display of experimental apps - * @param bool $state - * @return DataResponse - */ - public function changeExperimentalConfigState($state) { - $this->config->setSystemValue('appstore.experimental.enabled', $state); - $this->appManager->clearAppsCache(); - return new DataResponse(); - } - - /** - * @param string|int $category - * @return int - */ - protected function getCategory($category) { - if (is_string($category)) { - foreach ($this->listCategories() as $cat) { - if (isset($cat['ident']) && $cat['ident'] === $category) { - $category = (int) $cat['id']; - break; - } - } - - // Didn't find the category, falling back to enabled - if (is_string($category)) { - $category = self::CAT_ENABLED; - } - } - return (int) $category; - } - - /** - * @NoCSRFRequired - * @param string $category - * @return TemplateResponse - */ - public function viewApps($category = '') { - $categoryId = $this->getCategory($category); - if ($categoryId === self::CAT_ENABLED) { - // Do not use an arbitrary input string, because we put the category in html - $category = 'enabled'; - } - - $params = []; - $params['experimentalEnabled'] = $this->config->getSystemValue('appstore.experimental.enabled', false); - $params['category'] = $category; - $params['appstoreEnabled'] = $this->config->getSystemValue('appstoreenabled', true) === true; - $this->navigationManager->setActiveEntry('core_apps'); - - $templateResponse = new TemplateResponse($this->appName, 'apps', $params, 'user'); - $policy = new ContentSecurityPolicy(); - $policy->addAllowedImageDomain('https://apps.owncloud.com'); - $templateResponse->setContentSecurityPolicy($policy); - - return $templateResponse; - } - - /** - * Get all available categories - * @return array - */ - public function listCategories() { - - if(!is_null($this->cache->get('listCategories'))) { - return $this->cache->get('listCategories'); - } - $categories = [ - ['id' => self::CAT_ENABLED, 'ident' => 'enabled', 'displayName' => (string)$this->l10n->t('Enabled')], - ['id' => self::CAT_DISABLED, 'ident' => 'disabled', 'displayName' => (string)$this->l10n->t('Not enabled')], - ]; - - if($this->ocsClient->isAppStoreEnabled()) { - // apps from external repo via OCS - $ocs = $this->ocsClient->getCategories(\OCP\Util::getVersion()); - if ($ocs) { - foreach($ocs as $k => $v) { - $name = str_replace('ownCloud ', '', $v); - $ident = str_replace(' ', '-', urlencode(strtolower($name))); - $categories[] = [ - 'id' => $k, - 'ident' => $ident, - 'displayName' => $name, - ]; - } - } - } - - $this->cache->set('listCategories', $categories, 3600); - - return $categories; - } - - /** - * Get all available apps in a category - * - * @param string $category - * @param bool $includeUpdateInfo Should we check whether there is an update - * in the app store? - * @return array - */ - public function listApps($category = '', $includeUpdateInfo = true) { - $category = $this->getCategory($category); - $cacheName = 'listApps-' . $category . '-' . (int) $includeUpdateInfo; - - if(!is_null($this->cache->get($cacheName))) { - $apps = $this->cache->get($cacheName); - } else { - switch ($category) { - // installed apps - case 0: - $apps = $this->getInstalledApps($includeUpdateInfo); - usort($apps, function ($a, $b) { - $a = (string)$a['name']; - $b = (string)$b['name']; - if ($a === $b) { - return 0; - } - return ($a < $b) ? -1 : 1; - }); - $version = \OCP\Util::getVersion(); - foreach($apps as $key => $app) { - if(!array_key_exists('level', $app) && array_key_exists('ocsid', $app)) { - $remoteAppEntry = $this->ocsClient->getApplication($app['ocsid'], $version); - - if(is_array($remoteAppEntry) && array_key_exists('level', $remoteAppEntry)) { - $apps[$key]['level'] = $remoteAppEntry['level']; - } - } - } - break; - // not-installed apps - case 1: - $apps = \OC_App::listAllApps(true, $includeUpdateInfo, $this->ocsClient); - $apps = array_filter($apps, function ($app) { - return !$app['active']; - }); - $version = \OCP\Util::getVersion(); - foreach($apps as $key => $app) { - if(!array_key_exists('level', $app) && array_key_exists('ocsid', $app)) { - $remoteAppEntry = $this->ocsClient->getApplication($app['ocsid'], $version); - - if(is_array($remoteAppEntry) && array_key_exists('level', $remoteAppEntry)) { - $apps[$key]['level'] = $remoteAppEntry['level']; - } - } - } - usort($apps, function ($a, $b) { - $a = (string)$a['name']; - $b = (string)$b['name']; - if ($a === $b) { - return 0; - } - return ($a < $b) ? -1 : 1; - }); - break; - default: - $filter = $this->config->getSystemValue('appstore.experimental.enabled', false) ? 'all' : 'approved'; - - $apps = \OC_App::getAppstoreApps($filter, $category, $this->ocsClient); - if (!$apps) { - $apps = array(); - } else { - // don't list installed apps - $installedApps = $this->getInstalledApps(false); - $installedApps = array_map(function ($app) { - if (isset($app['ocsid'])) { - return $app['ocsid']; - } - return $app['id']; - }, $installedApps); - $apps = array_filter($apps, function ($app) use ($installedApps) { - return !in_array($app['id'], $installedApps); - }); - } - - // sort by score - usort($apps, function ($a, $b) { - $a = (int)$a['score']; - $b = (int)$b['score']; - if ($a === $b) { - return 0; - } - return ($a > $b) ? -1 : 1; - }); - break; - } - } - - // fix groups to be an array - $dependencyAnalyzer = new DependencyAnalyzer(new Platform($this->config), $this->l10n); - $apps = array_map(function($app) use ($dependencyAnalyzer) { - - // fix groups - $groups = array(); - if (is_string($app['groups'])) { - $groups = json_decode($app['groups']); - } - $app['groups'] = $groups; - $app['canUnInstall'] = !$app['active'] && $app['removable']; - - // fix licence vs license - if (isset($app['license']) && !isset($app['licence'])) { - $app['licence'] = $app['license']; - } - - // analyse dependencies - $missing = $dependencyAnalyzer->analyze($app); - $app['canInstall'] = empty($missing); - $app['missingDependencies'] = $missing; - - $app['missingMinOwnCloudVersion'] = !isset($app['dependencies']['owncloud']['@attributes']['min-version']); - $app['missingMaxOwnCloudVersion'] = !isset($app['dependencies']['owncloud']['@attributes']['max-version']); - - return $app; - }, $apps); - - $this->cache->set($cacheName, $apps, 300); - - return ['apps' => $apps, 'status' => 'success']; - } - - /** - * @param bool $includeUpdateInfo Should we check whether there is an update - * in the app store? - * @return array - */ - private function getInstalledApps($includeUpdateInfo = true) { - $apps = \OC_App::listAllApps(true, $includeUpdateInfo, $this->ocsClient); - $apps = array_filter($apps, function ($app) { - return $app['active']; - }); - return $apps; - } -} diff --git a/settings/controller/certificatecontroller.php b/settings/controller/certificatecontroller.php deleted file mode 100644 index 90d0c664d84..00000000000 --- a/settings/controller/certificatecontroller.php +++ /dev/null @@ -1,183 +0,0 @@ -<?php -/** - * @author Björn Schießle <schiessle@owncloud.com> - * @author Lukas Reschke <lukas@owncloud.com> - * @author Robin Appelman <icewind@owncloud.com> - * @author Vincent Petry <pvince81@owncloud.com> - * - * @copyright Copyright (c) 2016, ownCloud, Inc. - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * This program 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, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * - */ - -namespace OC\Settings\Controller; - -use OCP\App\IAppManager; -use OCP\AppFramework\Controller; -use OCP\AppFramework\Http; -use OCP\AppFramework\Http\DataResponse; -use OCP\ICertificateManager; -use OCP\IL10N; -use OCP\IRequest; - -/** - * @package OC\Settings\Controller - */ -class CertificateController extends Controller { - /** @var ICertificateManager */ - private $userCertificateManager; - /** @var ICertificateManager */ - private $systemCertificateManager; - /** @var IL10N */ - private $l10n; - /** @var IAppManager */ - private $appManager; - - /** - * @param string $appName - * @param IRequest $request - * @param ICertificateManager $userCertificateManager - * @param ICertificateManager $systemCertificateManager - * @param IL10N $l10n - * @param IAppManager $appManager - */ - public function __construct($appName, - IRequest $request, - ICertificateManager $userCertificateManager, - ICertificateManager $systemCertificateManager, - IL10N $l10n, - IAppManager $appManager) { - parent::__construct($appName, $request); - $this->userCertificateManager = $userCertificateManager; - $this->systemCertificateManager = $systemCertificateManager; - $this->l10n = $l10n; - $this->appManager = $appManager; - } - - /** - * Add a new personal root certificate to the users' trust store - * - * @NoAdminRequired - * @NoSubadminRequired - * @return array - */ - public function addPersonalRootCertificate() { - return $this->addCertificate($this->userCertificateManager); - } - - /** - * Add a new root certificate to a trust store - * - * @param ICertificateManager $certificateManager - * @return array - */ - private function addCertificate(ICertificateManager $certificateManager) { - $headers = []; - if ($this->request->isUserAgent([\OC\AppFramework\Http\Request::USER_AGENT_IE_8])) { - // due to upload iframe workaround, need to set content-type to text/plain - $headers['Content-Type'] = 'text/plain'; - } - - if ($this->isCertificateImportAllowed() === false) { - return new DataResponse(['message' => 'Individual certificate management disabled'], Http::STATUS_FORBIDDEN, $headers); - } - - $file = $this->request->getUploadedFile('rootcert_import'); - if (empty($file)) { - return new DataResponse(['message' => 'No file uploaded'], Http::STATUS_UNPROCESSABLE_ENTITY, $headers); - } - - try { - $certificate = $certificateManager->addCertificate(file_get_contents($file['tmp_name']), $file['name']); - return new DataResponse( - [ - 'name' => $certificate->getName(), - 'commonName' => $certificate->getCommonName(), - 'organization' => $certificate->getOrganization(), - 'validFrom' => $certificate->getIssueDate()->getTimestamp(), - 'validTill' => $certificate->getExpireDate()->getTimestamp(), - 'validFromString' => $this->l10n->l('date', $certificate->getIssueDate()), - 'validTillString' => $this->l10n->l('date', $certificate->getExpireDate()), - 'issuer' => $certificate->getIssuerName(), - 'issuerOrganization' => $certificate->getIssuerOrganization(), - ], - Http::STATUS_OK, - $headers - ); - } catch (\Exception $e) { - return new DataResponse('An error occurred.', Http::STATUS_UNPROCESSABLE_ENTITY, $headers); - } - } - - /** - * Removes a personal root certificate from the users' trust store - * - * @NoAdminRequired - * @NoSubadminRequired - * @param string $certificateIdentifier - * @return DataResponse - */ - public function removePersonalRootCertificate($certificateIdentifier) { - - if ($this->isCertificateImportAllowed() === false) { - return new DataResponse('Individual certificate management disabled', Http::STATUS_FORBIDDEN); - } - - $this->userCertificateManager->removeCertificate($certificateIdentifier); - return new DataResponse(); - } - - /** - * check if certificate import is allowed - * - * @return bool - */ - protected function isCertificateImportAllowed() { - $externalStorageEnabled = $this->appManager->isEnabledForUser('files_external'); - if ($externalStorageEnabled) { - /** @var \OCA\Files_External\Service\BackendService $backendService */ - $backendService = \OC_Mount_Config::$app->getContainer()->query('\OCA\Files_External\Service\BackendService'); - if ($backendService->isUserMountingAllowed()) { - return true; - } - } - return false; - } - - /** - * Add a new personal root certificate to the system's trust store - * - * @return array - */ - public function addSystemRootCertificate() { - return $this->addCertificate($this->systemCertificateManager); - } - - /** - * Removes a personal root certificate from the users' trust store - * - * @param string $certificateIdentifier - * @return DataResponse - */ - public function removeSystemRootCertificate($certificateIdentifier) { - - if ($this->isCertificateImportAllowed() === false) { - return new DataResponse('Individual certificate management disabled', Http::STATUS_FORBIDDEN); - } - - $this->systemCertificateManager->removeCertificate($certificateIdentifier); - return new DataResponse(); - } -} diff --git a/settings/controller/checksetupcontroller.php b/settings/controller/checksetupcontroller.php deleted file mode 100644 index cfdfa5021bc..00000000000 --- a/settings/controller/checksetupcontroller.php +++ /dev/null @@ -1,350 +0,0 @@ -<?php -/** - * @author Joas Schilling <nickvergessen@owncloud.com> - * @author Lukas Reschke <lukas@owncloud.com> - * @author Morris Jobke <hey@morrisjobke.de> - * @author Robin McCorkell <robin@mccorkell.me.uk> - * @author Roeland Jago Douma <rullzer@owncloud.com> - * - * @copyright Copyright (c) 2016, ownCloud, Inc. - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * This program 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, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * - */ - -namespace OC\Settings\Controller; - -use GuzzleHttp\Exception\ClientException; -use OC\AppFramework\Http; -use OC\IntegrityCheck\Checker; -use OCP\AppFramework\Controller; -use OCP\AppFramework\Http\DataDisplayResponse; -use OCP\AppFramework\Http\DataResponse; -use OCP\AppFramework\Http\RedirectResponse; -use OCP\Http\Client\IClientService; -use OCP\IConfig; -use OCP\IL10N; -use OCP\IRequest; -use OC_Util; -use OCP\IURLGenerator; - -/** - * @package OC\Settings\Controller - */ -class CheckSetupController extends Controller { - /** @var IConfig */ - private $config; - /** @var IClientService */ - private $clientService; - /** @var \OC_Util */ - private $util; - /** @var IURLGenerator */ - private $urlGenerator; - /** @var IL10N */ - private $l10n; - /** @var Checker */ - private $checker; - - /** - * @param string $AppName - * @param IRequest $request - * @param IConfig $config - * @param IClientService $clientService - * @param IURLGenerator $urlGenerator - * @param \OC_Util $util - * @param IL10N $l10n - * @param Checker $checker - */ - public function __construct($AppName, - IRequest $request, - IConfig $config, - IClientService $clientService, - IURLGenerator $urlGenerator, - \OC_Util $util, - IL10N $l10n, - Checker $checker) { - parent::__construct($AppName, $request); - $this->config = $config; - $this->clientService = $clientService; - $this->util = $util; - $this->urlGenerator = $urlGenerator; - $this->l10n = $l10n; - $this->checker = $checker; - } - - /** - * Checks if the ownCloud server can connect to the internet using HTTPS and HTTP - * @return bool - */ - private function isInternetConnectionWorking() { - if ($this->config->getSystemValue('has_internet_connection', true) === false) { - return false; - } - - try { - $client = $this->clientService->newClient(); - $client->get('https://www.owncloud.org/'); - $client->get('http://www.owncloud.org/'); - return true; - } catch (\Exception $e) { - return false; - } - } - - /** - * Checks whether a local memcache is installed or not - * @return bool - */ - private function isMemcacheConfigured() { - return $this->config->getSystemValue('memcache.local', null) !== null; - } - - /** - * Whether /dev/urandom is available to the PHP controller - * - * @return bool - */ - private function isUrandomAvailable() { - if(@file_exists('/dev/urandom')) { - $file = fopen('/dev/urandom', 'rb'); - if($file) { - fclose($file); - return true; - } - } - - return false; - } - - /** - * Public for the sake of unit-testing - * - * @return array - */ - protected function getCurlVersion() { - return curl_version(); - } - - /** - * Check if the used SSL lib is outdated. Older OpenSSL and NSS versions do - * have multiple bugs which likely lead to problems in combination with - * functionality required by ownCloud such as SNI. - * - * @link https://github.com/owncloud/core/issues/17446#issuecomment-122877546 - * @link https://bugzilla.redhat.com/show_bug.cgi?id=1241172 - * @return string - */ - private function isUsedTlsLibOutdated() { - // Appstore is disabled by default in EE - $appStoreDefault = false; - if (\OC_Util::getEditionString() === '') { - $appStoreDefault = true; - } - - // Don't run check when: - // 1. Server has `has_internet_connection` set to false - // 2. AppStore AND S2S is disabled - if(!$this->config->getSystemValue('has_internet_connection', true)) { - return ''; - } - if(!$this->config->getSystemValue('appstoreenabled', $appStoreDefault) - && $this->config->getAppValue('files_sharing', 'outgoing_server2server_share_enabled', 'yes') === 'no' - && $this->config->getAppValue('files_sharing', 'incoming_server2server_share_enabled', 'yes') === 'no') { - return ''; - } - - $versionString = $this->getCurlVersion(); - if(isset($versionString['ssl_version'])) { - $versionString = $versionString['ssl_version']; - } else { - return ''; - } - - $features = (string)$this->l10n->t('installing and updating apps via the app store or Federated Cloud Sharing'); - if(!$this->config->getSystemValue('appstoreenabled', $appStoreDefault)) { - $features = (string)$this->l10n->t('Federated Cloud Sharing'); - } - - // Check if at least OpenSSL after 1.01d or 1.0.2b - if(strpos($versionString, 'OpenSSL/') === 0) { - $majorVersion = substr($versionString, 8, 5); - $patchRelease = substr($versionString, 13, 6); - - if(($majorVersion === '1.0.1' && ord($patchRelease) < ord('d')) || - ($majorVersion === '1.0.2' && ord($patchRelease) < ord('b'))) { - return (string) $this->l10n->t('cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably.', ['OpenSSL', $versionString, $features]); - } - } - - // Check if NSS and perform heuristic check - if(strpos($versionString, 'NSS/') === 0) { - try { - $firstClient = $this->clientService->newClient(); - $firstClient->get('https://www.owncloud.org/'); - - $secondClient = $this->clientService->newClient(); - $secondClient->get('https://owncloud.org/'); - } catch (ClientException $e) { - if($e->getResponse()->getStatusCode() === 400) { - return (string) $this->l10n->t('cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably.', ['NSS', $versionString, $features]); - } - } - } - - return ''; - } - - /** - * Whether the php version is still supported (at time of release) - * according to: https://secure.php.net/supported-versions.php - * - * @return array - */ - private function isPhpSupported() { - $eol = false; - - //PHP 5.4 is EOL on 14 Sep 2015 - if (version_compare(PHP_VERSION, '5.5.0') === -1) { - $eol = true; - } - - return ['eol' => $eol, 'version' => PHP_VERSION]; - } - - /** - * Check if the reverse proxy configuration is working as expected - * - * @return bool - */ - private function forwardedForHeadersWorking() { - $trustedProxies = $this->config->getSystemValue('trusted_proxies', []); - $remoteAddress = $this->request->getRemoteAddress(); - - if (is_array($trustedProxies) && in_array($remoteAddress, $trustedProxies)) { - return false; - } - - // either not enabled or working correctly - return true; - } - - /** - * Checks if the correct memcache module for PHP is installed. Only - * fails if memcached is configured and the working module is not installed. - * - * @return bool - */ - private function isCorrectMemcachedPHPModuleInstalled() { - if ($this->config->getSystemValue('memcache.distributed', null) !== '\OC\Memcache\Memcached') { - return true; - } - - // there are two different memcached modules for PHP - // we only support memcached and not memcache - // https://code.google.com/p/memcached/wiki/PHPClientComparison - return !(!extension_loaded('memcached') && extension_loaded('memcache')); - } - - /** - * @return RedirectResponse - */ - public function rescanFailedIntegrityCheck() { - $this->checker->runInstanceVerification(); - return new RedirectResponse( - $this->urlGenerator->linkToRoute('settings_admin') - ); - } - - /** - * @NoCSRFRequired - * @return DataResponse - */ - public function getFailedIntegrityCheckFiles() { - if(!$this->checker->isCodeCheckEnforced()) { - return new DataDisplayResponse('Integrity checker has been disabled. Integrity cannot be verified.'); - } - - $completeResults = $this->checker->getResults(); - - if(!empty($completeResults)) { - $formattedTextResponse = 'Technical information -===================== -The following list covers which files have failed the integrity check. Please read -the previous linked documentation to learn more about the errors and how to fix -them. - -Results -======= -'; - foreach($completeResults as $context => $contextResult) { - $formattedTextResponse .= "- $context\n"; - - foreach($contextResult as $category => $result) { - $formattedTextResponse .= "\t- $category\n"; - if($category !== 'EXCEPTION') { - foreach ($result as $key => $results) { - $formattedTextResponse .= "\t\t- $key\n"; - } - } else { - foreach ($result as $key => $results) { - $formattedTextResponse .= "\t\t- $results\n"; - } - } - - } - } - - $formattedTextResponse .= ' -Raw output -========== -'; - $formattedTextResponse .= print_r($completeResults, true); - } else { - $formattedTextResponse = 'No errors have been found.'; - } - - - $response = new DataDisplayResponse( - $formattedTextResponse, - Http::STATUS_OK, - [ - 'Content-Type' => 'text/plain', - ] - ); - - return $response; - } - - /** - * @return DataResponse - */ - public function check() { - return new DataResponse( - [ - 'serverHasInternetConnection' => $this->isInternetConnectionWorking(), - 'isMemcacheConfigured' => $this->isMemcacheConfigured(), - 'memcacheDocs' => $this->urlGenerator->linkToDocs('admin-performance'), - 'isUrandomAvailable' => $this->isUrandomAvailable(), - 'securityDocs' => $this->urlGenerator->linkToDocs('admin-security'), - 'isUsedTlsLibOutdated' => $this->isUsedTlsLibOutdated(), - 'phpSupported' => $this->isPhpSupported(), - 'forwardedForHeadersWorking' => $this->forwardedForHeadersWorking(), - 'reverseProxyDocs' => $this->urlGenerator->linkToDocs('admin-reverse-proxy'), - 'isCorrectMemcachedPHPModuleInstalled' => $this->isCorrectMemcachedPHPModuleInstalled(), - 'hasPassedCodeIntegrityCheck' => $this->checker->hasPassedCheck(), - 'codeIntegrityCheckerDocumentation' => $this->urlGenerator->linkToDocs('admin-code-integrity'), - ] - ); - } -} diff --git a/settings/controller/encryptioncontroller.php b/settings/controller/encryptioncontroller.php deleted file mode 100644 index 504448a5a2c..00000000000 --- a/settings/controller/encryptioncontroller.php +++ /dev/null @@ -1,145 +0,0 @@ -<?php -/** - * @author Björn Schießle <schiessle@owncloud.com> - * @author Lukas Reschke <lukas@owncloud.com> - * - * @copyright Copyright (c) 2016, ownCloud, Inc. - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * This program 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, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * - */ - - -namespace OC\Settings\Controller; -use OC\Files\View; -use OCA\Encryption\Migration; -use OCP\IL10N; -use OCP\AppFramework\Controller; -use OCP\ILogger; -use OCP\IRequest; -use OCP\IConfig; -use OC\DB\Connection; -use OCP\IUserManager; - -/** - * @package OC\Settings\Controller - */ -class EncryptionController extends Controller { - - /** @var \OCP\IL10N */ - private $l10n; - - /** @var Connection */ - private $connection; - - /** @var IConfig */ - private $config; - - /** @var IUserManager */ - private $userManager; - - /** @var View */ - private $view; - - /** @var ILogger */ - private $logger; - - /** - * @param string $appName - * @param IRequest $request - * @param \OCP\IL10N $l10n - * @param \OCP\IConfig $config - * @param \OC\DB\Connection $connection - * @param IUserManager $userManager - * @param View $view - * @param ILogger $logger - */ - public function __construct($appName, - IRequest $request, - IL10N $l10n, - IConfig $config, - Connection $connection, - IUserManager $userManager, - View $view, - ILogger $logger) { - parent::__construct($appName, $request); - $this->l10n = $l10n; - $this->config = $config; - $this->connection = $connection; - $this->view = $view; - $this->userManager = $userManager; - $this->logger = $logger; - } - - /** - * @param IConfig $config - * @param View $view - * @param Connection $connection - * @param ILogger $logger - * @return Migration - */ - protected function getMigration(IConfig $config, - View $view, - Connection $connection, - ILogger $logger) { - return new Migration($config, $view, $connection, $logger); - } - - /** - * start migration - * - * @return array - */ - public function startMigration() { - // allow as long execution on the web server as possible - set_time_limit(0); - - try { - - $migration = $this->getMigration($this->config, $this->view, $this->connection, $this->logger); - $migration->reorganizeSystemFolderStructure(); - $migration->updateDB(); - - foreach ($this->userManager->getBackends() as $backend) { - $limit = 500; - $offset = 0; - do { - $users = $backend->getUsers('', $limit, $offset); - foreach ($users as $user) { - $migration->reorganizeFolderStructureForUser($user); - } - $offset += $limit; - } while (count($users) >= $limit); - } - - $migration->finalCleanUp(); - - } catch (\Exception $e) { - return [ - 'data' => [ - 'message' => (string)$this->l10n->t('A problem occurred, please check your log files (Error: %s)', [$e->getMessage()]), - ], - 'status' => 'error', - ]; - } - - return [ - 'data' => [ - 'message' => (string) $this->l10n->t('Migration Completed'), - ], - 'status' => 'success', - ]; - } - -} diff --git a/settings/controller/groupscontroller.php b/settings/controller/groupscontroller.php deleted file mode 100644 index bb8e6755d41..00000000000 --- a/settings/controller/groupscontroller.php +++ /dev/null @@ -1,159 +0,0 @@ -<?php -/** - * @author Joas Schilling <nickvergessen@owncloud.com> - * @author Lukas Reschke <lukas@owncloud.com> - * @author Morris Jobke <hey@morrisjobke.de> - * - * @copyright Copyright (c) 2016, ownCloud, Inc. - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * This program 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, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * - */ - -namespace OC\Settings\Controller; - -use OC\AppFramework\Http; -use OC\Group\MetaData; -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 - * @param int $sortGroups - * @return DataResponse - */ - public function index($pattern = '', $filterGroups = false, $sortGroups = MetaData::SORT_USERCOUNT) { - $groupPattern = $filterGroups ? $pattern : ''; - - $groupsInfo = new MetaData( - $this->userSession->getUser()->getUID(), - $this->isAdmin, - $this->groupManager, - $this->userSession - ); - $groupsInfo->setSorting($sortGroups); - 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/logsettingscontroller.php b/settings/controller/logsettingscontroller.php deleted file mode 100644 index c0c9ee04ca3..00000000000 --- a/settings/controller/logsettingscontroller.php +++ /dev/null @@ -1,109 +0,0 @@ -<?php -/** - * @author Georg Ehrke <georg@owncloud.com> - * @author Morris Jobke <hey@morrisjobke.de> - * @author Thomas Müller <thomas.mueller@tmit.eu> - * - * @copyright Copyright (c) 2016, ownCloud, Inc. - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * This program 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, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * - */ - -namespace OC\Settings\Controller; - -use OCP\AppFramework\Controller; -use OCP\AppFramework\Http; -use OCP\AppFramework\Http\JSONResponse; -use OCP\AppFramework\Http\StreamResponse; -use OCP\IL10N; -use OCP\IRequest; -use OCP\IConfig; - -/** - * Class LogSettingsController - * - * @package OC\Settings\Controller - */ -class LogSettingsController extends Controller { - /** - * @var \OCP\IConfig - */ - private $config; - - /** - * @var \OCP\IL10N - */ - private $l10n; - - /** - * @param string $appName - * @param IRequest $request - * @param IConfig $config - */ - public function __construct($appName, - IRequest $request, - IConfig $config, - IL10N $l10n) { - parent::__construct($appName, $request); - $this->config = $config; - $this->l10n = $l10n; - } - - /** - * set log level for logger - * - * @param int $level - * @return JSONResponse - */ - public function setLogLevel($level) { - if ($level < 0 || $level > 4) { - return new JSONResponse([ - 'message' => (string) $this->l10n->t('log-level out of allowed range'), - ], Http::STATUS_BAD_REQUEST); - } - - $this->config->setSystemValue('loglevel', $level); - return new JSONResponse([ - 'level' => $level, - ]); - } - - /** - * get log entries from logfile - * - * @param int $count - * @param int $offset - * @return JSONResponse - */ - public function getEntries($count=50, $offset=0) { - return new JSONResponse([ - 'data' => \OC_Log_Owncloud::getEntries($count, $offset), - 'remain' => count(\OC_Log_Owncloud::getEntries(1, $offset + $count)) !== 0, - ]); - } - - /** - * download logfile - * - * @NoCSRFRequired - * - * @return StreamResponse - */ - public function download() { - $resp = new StreamResponse(\OC_Log_Owncloud::getLogFilePath()); - $resp->addHeader('Content-Disposition', 'attachment; filename="owncloud.log"'); - return $resp; - } -} diff --git a/settings/controller/mailsettingscontroller.php b/settings/controller/mailsettingscontroller.php deleted file mode 100644 index dbba4bd9bc0..00000000000 --- a/settings/controller/mailsettingscontroller.php +++ /dev/null @@ -1,181 +0,0 @@ -<?php -/** - * @author Joas Schilling <nickvergessen@owncloud.com> - * @author Lukas Reschke <lukas@owncloud.com> - * @author Morris Jobke <hey@morrisjobke.de> - * - * @copyright Copyright (c) 2016, ownCloud, Inc. - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * This program 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, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * - */ - -namespace OC\Settings\Controller; - -use OC\User\Session; -use \OCP\AppFramework\Controller; -use OCP\IRequest; -use OCP\IL10N; -use OCP\IConfig; -use OCP\Mail\IMailer; -use OCP\Mail\IMessage; - -/** - * @package OC\Settings\Controller - */ -class MailSettingsController extends Controller { - - /** @var \OCP\IL10N */ - private $l10n; - /** @var \OCP\IConfig */ - private $config; - /** @var Session */ - private $userSession; - /** @var \OC_Defaults */ - private $defaults; - /** @var IMailer */ - private $mailer; - /** @var string */ - private $defaultMailAddress; - - /** - * @param string $appName - * @param IRequest $request - * @param IL10N $l10n - * @param IConfig $config - * @param Session $userSession - * @param \OC_Defaults $defaults - * @param IMailer $mailer - * @param string $defaultMailAddress - */ - public function __construct($appName, - IRequest $request, - IL10N $l10n, - IConfig $config, - Session $userSession, - \OC_Defaults $defaults, - IMailer $mailer, - $defaultMailAddress) { - parent::__construct($appName, $request); - $this->l10n = $l10n; - $this->config = $config; - $this->userSession = $userSession; - $this->defaults = $defaults; - $this->mailer = $mailer; - $this->defaultMailAddress = $defaultMailAddress; - } - - /** - * Sets the email settings - * @param string $mail_domain - * @param string $mail_from_address - * @param string $mail_smtpmode - * @param string $mail_smtpsecure - * @param string $mail_smtphost - * @param string $mail_smtpauthtype - * @param int $mail_smtpauth - * @param string $mail_smtpport - * @return array - */ - public function setMailSettings($mail_domain, - $mail_from_address, - $mail_smtpmode, - $mail_smtpsecure, - $mail_smtphost, - $mail_smtpauthtype, - $mail_smtpauth, - $mail_smtpport) { - - $params = get_defined_vars(); - $configs = []; - foreach($params as $key => $value) { - $configs[$key] = (empty($value)) ? null : $value; - } - - // Delete passwords from config in case no auth is specified - if ($params['mail_smtpauth'] !== 1) { - $configs['mail_smtpname'] = null; - $configs['mail_smtppassword'] = null; - } - - $this->config->setSystemValues($configs); - - return array('data' => - array('message' => - (string) $this->l10n->t('Saved') - ), - 'status' => 'success' - ); - } - - /** - * Store the credentials used for SMTP in the config - * @param string $mail_smtpname - * @param string $mail_smtppassword - * @return array - */ - public function storeCredentials($mail_smtpname, $mail_smtppassword) { - $this->config->setSystemValues([ - 'mail_smtpname' => $mail_smtpname, - 'mail_smtppassword' => $mail_smtppassword, - ]); - - return array('data' => - array('message' => - (string) $this->l10n->t('Saved') - ), - 'status' => 'success' - ); - } - - /** - * Send a mail to test the settings - * @return array - */ - public function sendTestMail() { - $email = $this->config->getUserValue($this->userSession->getUser()->getUID(), $this->appName, 'email', ''); - if (!empty($email)) { - try { - $message = $this->mailer->createMessage(); - $message->setTo([$email => $this->userSession->getUser()->getDisplayName()]); - $message->setFrom([$this->defaultMailAddress]); - $message->setSubject($this->l10n->t('test email settings')); - $message->setPlainBody('If you received this email, the settings seem to be correct.'); - $this->mailer->send($message); - } catch (\Exception $e) { - return [ - 'data' => [ - 'message' => (string) $this->l10n->t('A problem occurred while sending the email. Please revise your settings. (Error: %s)', [$e->getMessage()]), - ], - 'status' => 'error', - ]; - } - - return array('data' => - array('message' => - (string) $this->l10n->t('Email sent') - ), - 'status' => 'success' - ); - } - - return array('data' => - array('message' => - (string) $this->l10n->t('You need to set your user email before being able to send test emails.'), - ), - 'status' => 'error' - ); - } - -} diff --git a/settings/controller/securitysettingscontroller.php b/settings/controller/securitysettingscontroller.php deleted file mode 100644 index d7274d6bcb2..00000000000 --- a/settings/controller/securitysettingscontroller.php +++ /dev/null @@ -1,70 +0,0 @@ -<?php -/** - * @author Lukas Reschke <lukas@owncloud.com> - * @author Morris Jobke <hey@morrisjobke.de> - * - * @copyright Copyright (c) 2016, ownCloud, Inc. - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * This program 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, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * - */ - -namespace OC\Settings\Controller; - -use \OCP\AppFramework\Controller; -use OCP\IRequest; -use OCP\IConfig; - -/** - * @package OC\Settings\Controller - */ -class SecuritySettingsController extends Controller { - /** @var \OCP\IConfig */ - private $config; - - /** - * @param string $appName - * @param IRequest $request - * @param IConfig $config - */ - public function __construct($appName, - IRequest $request, - IConfig $config) { - parent::__construct($appName, $request); - $this->config = $config; - } - - /** - * @return array - */ - protected function returnSuccess() { - return array( - 'status' => 'success' - ); - } - - /** - * Add a new trusted domain - * @param string $newTrustedDomain The newly to add trusted domain - * @return array - */ - public function trustedDomains($newTrustedDomain) { - $trustedDomains = $this->config->getSystemValue('trusted_domains'); - $trustedDomains[] = $newTrustedDomain; - $this->config->setSystemValue('trusted_domains', $trustedDomains); - - return $this->returnSuccess(); - } - -} diff --git a/settings/controller/userscontroller.php b/settings/controller/userscontroller.php deleted file mode 100644 index f5b7f2d2e5d..00000000000 --- a/settings/controller/userscontroller.php +++ /dev/null @@ -1,659 +0,0 @@ -<?php -/** - * @author Arthur Schiwon <blizzz@owncloud.com> - * @author Clark Tomlinson <fallen013@gmail.com> - * @author Lukas Reschke <lukas@owncloud.com> - * @author Morris Jobke <hey@morrisjobke.de> - * @author Robin Appelman <icewind@owncloud.com> - * @author Roeland Jago Douma <rullzer@owncloud.com> - * @author Thomas Müller <thomas.mueller@tmit.eu> - * @author Vincent Petry <pvince81@owncloud.com> - * - * @copyright Copyright (c) 2016, ownCloud, Inc. - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * This program 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, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * - */ - -namespace OC\Settings\Controller; - -use OC\AppFramework\Http; -use OC\User\User; -use OCP\App\IAppManager; -use OCP\AppFramework\Controller; -use OCP\AppFramework\Http\DataResponse; -use OCP\AppFramework\Http\TemplateResponse; -use OCP\IConfig; -use OCP\IGroupManager; -use OCP\IL10N; -use OCP\ILogger; -use OCP\IRequest; -use OCP\IURLGenerator; -use OCP\IUser; -use OCP\IUserManager; -use OCP\IUserSession; -use OCP\Mail\IMailer; -use OCP\IAvatarManager; - -/** - * @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; - /** @var ILogger */ - private $log; - /** @var \OC_Defaults */ - private $defaults; - /** @var IMailer */ - private $mailer; - /** @var string */ - private $fromMailAddress; - /** @var IURLGenerator */ - private $urlGenerator; - /** @var bool contains the state of the encryption app */ - private $isEncryptionAppEnabled; - /** @var bool contains the state of the admin recovery setting */ - private $isRestoreEnabled = false; - /** @var IAvatarManager */ - private $avatarManager; - - /** - * @param string $appName - * @param IRequest $request - * @param IUserManager $userManager - * @param IGroupManager $groupManager - * @param IUserSession $userSession - * @param IConfig $config - * @param bool $isAdmin - * @param IL10N $l10n - * @param ILogger $log - * @param \OC_Defaults $defaults - * @param IMailer $mailer - * @param string $fromMailAddress - * @param IURLGenerator $urlGenerator - * @param IAppManager $appManager - */ - public function __construct($appName, - IRequest $request, - IUserManager $userManager, - IGroupManager $groupManager, - IUserSession $userSession, - IConfig $config, - $isAdmin, - IL10N $l10n, - ILogger $log, - \OC_Defaults $defaults, - IMailer $mailer, - $fromMailAddress, - IURLGenerator $urlGenerator, - IAppManager $appManager, - IAvatarManager $avatarManager) { - parent::__construct($appName, $request); - $this->userManager = $userManager; - $this->groupManager = $groupManager; - $this->userSession = $userSession; - $this->config = $config; - $this->isAdmin = $isAdmin; - $this->l10n = $l10n; - $this->log = $log; - $this->defaults = $defaults; - $this->mailer = $mailer; - $this->fromMailAddress = $fromMailAddress; - $this->urlGenerator = $urlGenerator; - $this->avatarManager = $avatarManager; - - // check for encryption state - TODO see formatUserForIndex - $this->isEncryptionAppEnabled = $appManager->isEnabledForUser('encryption'); - if($this->isEncryptionAppEnabled) { - // putting this directly in empty is possible in PHP 5.5+ - $result = $config->getAppValue('encryption', 'recoveryAdminEnabled', 0); - $this->isRestoreEnabled = !empty($result); - } - } - - /** - * @param IUser $user - * @param array $userGroups - * @return array - */ - private function formatUserForIndex(IUser $user, array $userGroups = null) { - - // TODO: eliminate this encryption specific code below and somehow - // hook in additional user info from other apps - - // recovery isn't possible if admin or user has it disabled and encryption - // is enabled - so we eliminate the else paths in the conditional tree - // below - $restorePossible = false; - - if ($this->isEncryptionAppEnabled) { - if ($this->isRestoreEnabled) { - // check for the users recovery setting - $recoveryMode = $this->config->getUserValue($user->getUID(), 'encryption', 'recoveryEnabled', '0'); - // method call inside empty is possible with PHP 5.5+ - $recoveryModeEnabled = !empty($recoveryMode); - if ($recoveryModeEnabled) { - // user also has recovery mode enabled - $restorePossible = true; - } - } - } else { - // recovery is possible if encryption is disabled (plain files are - // available) - $restorePossible = true; - } - - $subAdminGroups = $this->groupManager->getSubAdmin()->getSubAdminsGroups($user); - foreach($subAdminGroups as $key => $subAdminGroup) { - $subAdminGroups[$key] = $subAdminGroup->getGID(); - } - - $displayName = $user->getEMailAddress(); - if (is_null($displayName)) { - $displayName = ''; - } - - $avatarAvailable = false; - if ($this->config->getSystemValue('enable_avatars', true) === true) { - try { - $avatarAvailable = $this->avatarManager->getAvatar($user->getUID())->exists(); - } catch (\Exception $e) { - //No avatar yet - } - } - - return [ - 'name' => $user->getUID(), - 'displayname' => $user->getDisplayName(), - 'groups' => (empty($userGroups)) ? $this->groupManager->getUserGroupIds($user) : $userGroups, - 'subadmin' => $subAdminGroups, - 'quota' => $user->getQuota(), - 'storageLocation' => $user->getHome(), - 'lastLogin' => $user->getLastLogin() * 1000, - 'backend' => $user->getBackendClassName(), - 'email' => $displayName, - 'isRestoreDisabled' => !$restorePossible, - 'isAvatarAvailable' => $avatarAvailable, - ]; - } - - /** - * @param array $userIDs Array with schema [$uid => $displayName] - * @return IUser[] - */ - private function getUsersForUID(array $userIDs) { - $users = []; - foreach ($userIDs as $uid => $displayName) { - $users[$uid] = $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 = []; - if ($this->isAdmin) { - - if($gid !== '') { - $batch = $this->getUsersForUID($this->groupManager->displayNamesInGroup($gid, $pattern, $limit, $offset)); - } else { - $batch = $this->userManager->search($pattern, $limit, $offset); - } - - foreach ($batch as $user) { - $users[] = $this->formatUserForIndex($user); - } - - } else { - $subAdminOfGroups = $this->groupManager->getSubAdmin()->getSubAdminsGroups($this->userSession->getUser()); - // New class returns IGroup[] so convert back - $gids = []; - foreach ($subAdminOfGroups as $group) { - $gids[] = $group->getGID(); - } - $subAdminOfGroups = $gids; - - // Set the $gid parameter to an empty value if the subadmin has no rights to access a specific group - if($gid !== '' && !in_array($gid, $subAdminOfGroups)) { - $gid = ''; - } - - // Batch all groups the user is subadmin of when a group is specified - $batch = []; - if($gid === '') { - foreach($subAdminOfGroups as $group) { - $groupUsers = $this->groupManager->displayNamesInGroup($group, $pattern, $limit, $offset); - - foreach($groupUsers as $uid => $displayName) { - $batch[$uid] = $displayName; - } - } - } else { - $batch = $this->groupManager->displayNamesInGroup($gid, $pattern, $limit, $offset); - } - $batch = $this->getUsersForUID($batch); - - foreach ($batch as $user) { - // Only add the groups, this user is a subadmin of - $userGroups = array_values(array_intersect( - $this->groupManager->getUserGroupIds($user), - $subAdminOfGroups - )); - $users[] = $this->formatUserForIndex($user, $userGroups); - } - } - - return new DataResponse($users); - } - - /** - * @NoAdminRequired - * - * @param string $username - * @param string $password - * @param array $groups - * @param string $email - * @return DataResponse - */ - public function create($username, $password, array $groups=array(), $email='') { - if($email !== '' && !$this->mailer->validateMailAddress($email)) { - return new DataResponse( - array( - 'message' => (string)$this->l10n->t('Invalid mail address') - ), - Http::STATUS_UNPROCESSABLE_ENTITY - ); - } - - $currentUser = $this->userSession->getUser(); - - if (!$this->isAdmin) { - if (!empty($groups)) { - foreach ($groups as $key => $group) { - $groupObject = $this->groupManager->get($group); - if($groupObject === null) { - unset($groups[$key]); - continue; - } - - if (!$this->groupManager->getSubAdmin()->isSubAdminofGroup($currentUser, $groupObject)) { - unset($groups[$key]); - } - } - } - - if (empty($groups)) { - $groups = $this->groupManager->getSubAdmin()->getSubAdminsGroups($currentUser); - // New class returns IGroup[] so convert back - $gids = []; - foreach ($groups as $group) { - $gids[] = $group->getGID(); - } - $groups = $gids; - } - } - - if ($this->userManager->userExists($username)) { - return new DataResponse( - array( - 'message' => (string)$this->l10n->t('A user with that name already exists.') - ), - Http::STATUS_CONFLICT - ); - } - - 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) { - if($groups !== null) { - foreach($groups as $groupName) { - $group = $this->groupManager->get($groupName); - - if(empty($group)) { - $group = $this->groupManager->createGroup($groupName); - } - $group->addUser($user); - } - } - /** - * Send new user mail only if a mail is set - */ - if($email !== '') { - $user->setEMailAddress($email); - - // data for the mail template - $mailData = array( - 'username' => $username, - 'url' => $this->urlGenerator->getAbsoluteURL('/') - ); - - $mail = new TemplateResponse('settings', 'email.new_user', $mailData, 'blank'); - $mailContent = $mail->render(); - - $mail = new TemplateResponse('settings', 'email.new_user_plain_text', $mailData, 'blank'); - $plainTextMailContent = $mail->render(); - - $subject = $this->l10n->t('Your %s account was created', [$this->defaults->getName()]); - - try { - $message = $this->mailer->createMessage(); - $message->setTo([$email => $username]); - $message->setSubject($subject); - $message->setHtmlBody($mailContent); - $message->setPlainBody($plainTextMailContent); - $message->setFrom([$this->fromMailAddress => $this->defaults->getName()]); - $this->mailer->send($message); - } catch(\Exception $e) { - $this->log->error("Can't send new user mail to $email: " . $e->getMessage(), array('app' => 'settings')); - } - } - // fetch users groups - $userGroups = $this->groupManager->getUserGroupIds($user); - - return new DataResponse( - $this->formatUserForIndex($user, $userGroups), - Http::STATUS_CREATED - ); - } - - return new DataResponse( - array( - 'message' => (string)$this->l10n->t('Unable to create user.') - ), - Http::STATUS_FORBIDDEN - ); - - } - - /** - * @NoAdminRequired - * - * @param string $id - * @return DataResponse - */ - public function destroy($id) { - $userId = $this->userSession->getUser()->getUID(); - $user = $this->userManager->get($id); - - if($userId === $id) { - return new DataResponse( - array( - 'status' => 'error', - 'data' => array( - 'message' => (string)$this->l10n->t('Unable to delete user.') - ) - ), - Http::STATUS_FORBIDDEN - ); - } - - if(!$this->isAdmin && !$this->groupManager->getSubAdmin()->isUserAccessible($this->userSession->getUser(), $user)) { - return new DataResponse( - array( - 'status' => 'error', - 'data' => array( - 'message' => (string)$this->l10n->t('Authentication error') - ) - ), - Http::STATUS_FORBIDDEN - ); - } - - 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 - ); - } - - /** - * Set the mail address of a user - * - * @NoAdminRequired - * @NoSubadminRequired - * - * @param string $id - * @param string $mailAddress - * @return DataResponse - */ - public function setMailAddress($id, $mailAddress) { - $userId = $this->userSession->getUser()->getUID(); - $user = $this->userManager->get($id); - - if($userId !== $id - && !$this->isAdmin - && !$this->groupManager->getSubAdmin()->isUserAccessible($this->userSession->getUser(), $user)) { - return new DataResponse( - array( - 'status' => 'error', - 'data' => array( - 'message' => (string)$this->l10n->t('Forbidden') - ) - ), - Http::STATUS_FORBIDDEN - ); - } - - if($mailAddress !== '' && !$this->mailer->validateMailAddress($mailAddress)) { - return new DataResponse( - array( - 'status' => 'error', - 'data' => array( - 'message' => (string)$this->l10n->t('Invalid mail address') - ) - ), - Http::STATUS_UNPROCESSABLE_ENTITY - ); - } - - if(!$user){ - return new DataResponse( - array( - 'status' => 'error', - 'data' => array( - 'message' => (string)$this->l10n->t('Invalid user') - ) - ), - Http::STATUS_UNPROCESSABLE_ENTITY - ); - } - - // this is the only permission a backend provides and is also used - // for the permission of setting a email address - if(!$user->canChangeDisplayName()){ - return new DataResponse( - array( - 'status' => 'error', - 'data' => array( - 'message' => (string)$this->l10n->t('Unable to change mail address') - ) - ), - Http::STATUS_FORBIDDEN - ); - } - - // delete user value if email address is empty - $user->setEMailAddress($mailAddress); - - return new DataResponse( - array( - 'status' => 'success', - 'data' => array( - 'username' => $id, - 'mailAddress' => $mailAddress, - 'message' => (string)$this->l10n->t('Email saved') - ) - ), - Http::STATUS_OK - ); - } - - /** - * Count all unique users visible for the current admin/subadmin. - * - * @NoAdminRequired - * - * @return DataResponse - */ - public function stats() { - $userCount = 0; - if ($this->isAdmin) { - $countByBackend = $this->userManager->countUsers(); - - if (!empty($countByBackend)) { - foreach ($countByBackend as $count) { - $userCount += $count; - } - } - } else { - $groups = $this->groupManager->getSubAdmin()->getSubAdminsGroups($this->userSession->getUser()); - - $uniqueUsers = []; - foreach ($groups as $group) { - foreach($group->getUsers() as $uid => $displayName) { - $uniqueUsers[$uid] = true; - } - } - - $userCount = count($uniqueUsers); - } - - return new DataResponse( - [ - 'totalUsers' => $userCount - ] - ); - } - - - /** - * Set the displayName of a user - * - * @NoAdminRequired - * @NoSubadminRequired - * - * @param string $username - * @param string $displayName - * @return DataResponse - */ - public function setDisplayName($username, $displayName) { - $currentUser = $this->userSession->getUser(); - - if ($username === null) { - $username = $currentUser->getUID(); - } - - $user = $this->userManager->get($username); - - if ($user === null || - !$user->canChangeDisplayName() || - ( - !$this->groupManager->isAdmin($currentUser->getUID()) && - !$this->groupManager->getSubAdmin()->isUserAccessible($currentUser, $user) && - $currentUser !== $user) - ) { - return new DataResponse([ - 'status' => 'error', - 'data' => [ - 'message' => $this->l10n->t('Authentication error'), - ], - ]); - } - - if ($user->setDisplayName($displayName)) { - return new DataResponse([ - 'status' => 'success', - 'data' => [ - 'message' => $this->l10n->t('Your full name has been changed.'), - 'username' => $username, - 'displayName' => $displayName, - ], - ]); - } else { - return new DataResponse([ - 'status' => 'error', - 'data' => [ - 'message' => $this->l10n->t('Unable to change full name'), - 'displayName' => $user->getDisplayName(), - ], - ]); - } - } -} diff --git a/settings/css/settings.css b/settings/css/settings.css deleted file mode 100644 index edc4939d2d8..00000000000 --- a/settings/css/settings.css +++ /dev/null @@ -1,573 +0,0 @@ -/* Copyright (c) 2011, Jan-Christoph Borchardt, http://jancborchardt.net - This file is licensed under the Affero General Public License version 3 or later. - See the COPYING-README file. */ - -select#languageinput, select#timezone { width:15em; } -input#openid, input#webdav { width:20em; } - -/* PERSONAL */ - -#avatar { - display: inline-block; - float: left; - width: 160px; - padding-right: 0; -} -#avatar .avatardiv { - margin-bottom: 10px; -} -#avatar .warning { - width: 100%; -} -#uploadavatarbutton, -#selectavatar, -#removeavatar { - width: 33px; - height: 33px; -} -.jcrop-holder { - z-index: 500; -} -#avatar #cropper { - float: left; - background-color: #fff; - z-index: 500; - position: relative; -} - -#displaynameform, -#lostpassword, -#groups, -#passwordform, -#language { - display: inline-block; - margin-bottom: 0; - padding-bottom: 0; - padding-right: 0; - min-width: 60%; -} -#avatar, -#passwordform { - margin-bottom: 0; - padding-bottom: 0; -} -#groups { - overflow-wrap: break-word; - max-width: 75%; -} - -.clientsbox img { - height: 60px; -} - -#sslCertificate tr.expired { - background-color: rgba(255, 0, 0, 0.5); -} -#sslCertificate td { - padding: 5px; -} - - -#displaynameerror { - display: none; -} -#displaynamechanged { - display: none; -} -input#identity { - width: 20em; -} -#displayName, -#email { - width: 17em; -} - -#showWizard { - display: inline-block; -} - -.msg.success { - color: #fff; - background-color: #47a447; - padding: 3px; -} -.msg.error { - color: #fff; - background-color: #d2322d; - padding: 3px; -} - -table.nostyle label { margin-right: 2em; } -table.nostyle td { padding: 0.2em 0; } - -/* USERS */ -#newgroup-init a span { margin-left: 20px; } -#newgroup-init a span:before { - position: absolute; left: 12px; top:-2px; - content: '+'; font-weight: bold; font-size: 150%; -} - -#newgroup-form { - height: 44px; -} -#newgroupname { - margin: 6px; - width: 95%; - padding-right: 32px; - box-sizing: border-box -} -#newgroup-form .button { - position: absolute; - right: 0; - top: 3px; - height: 32px; - width: 32px; -} - -.ie8 #newgroup-form .icon-add { - height: 30px; -} - -.isgroup .groupname { - width: 85%; - display: block; - overflow: hidden; - text-overflow: ellipsis; -} -.isgroup.active .groupname { - width: 65%; -} - -.usercount { float: left; margin: 5px; } -li.active span.utils .delete { - float: left; position: relative; opacity: 0.5; - top: -7px; left: 7px; width: 44px; height: 44px; -} -li.active .rename { - padding: 8px 14px 20px 14px; - top: 0px; position: absolute; width: 16px; height: 16px; - opacity: 0.5; - display: inline-block !important; -} -li.active span.utils .delete img { margin: 14px; } -li.active .rename { opacity: 0.5; } -li.active span.utils .delete:hover, li.active .rename:hover { opacity: 1; } -span.utils .delete, .rename { display: none; } -#app-navigation ul li.active > span.utils .delete, -#app-navigation ul li.active > span.utils .rename { display: block; } -#usersearchform { - position: absolute; - top: 2px; - right: 0; -} -#usersearchform input { - width: 150px; -} -#usersearchform label { font-weight: 700; } - -/* display table at full width */ -table.grid { - width: 100%; -} - -table.grid th { height:2em; color:#999; } -table.grid th, table.grid td { border-bottom:1px solid #ddd; padding:0 .5em; padding-left:.8em; text-align:left; font-weight:normal; } -td.name, td.password { padding-left:.8em; } -td.password>img,td.displayName>img, td.remove>a, td.quota>img { visibility:hidden; } -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; } - -/* dropdowns will be relative to this element */ -#userlist { - position: relative; -} -#userlist .mailAddress, -#userlist .storageLocation, -#userlist .userBackend, -#userlist .lastLogin { - display : none; -} - -/* because of accessibility the name cell is <th> - therefore we enforce the black color */ -#userlist th.name { - color: #000000; -} - -#userlist .mailAddress .loading-small { - width: 16px; - height: 16px; - margin-left: -26px; - position: relative; - top: 3px; -} - -tr:hover>td.password>span, tr:hover>td.displayName>span { margin:0; cursor:pointer; } -tr:hover>td.remove>a, tr:hover>td.password>img,tr:hover>td.displayName>img, tr:hover>td.quota>img { visibility:visible; cursor:pointer; } -td.remove { - width: 25px; -} -tr:hover>td.remove>a { - float: left; -} - -div.recoveryPassword { left:50em; display:block; position:absolute; top:-1px; } -input#recoveryPassword {width:15em;} -#controls select.quota { - margin: 3px; - margin-right: 10px; - height: 37px; -} -select.quota-user { position:relative; left:0; top:0; width:10em; } -select.quota.active { background: #fff; } - -input.userFilter {width: 200px;} - -/* positioning fixes */ -#newuser { - padding-left: 3px; -} -#newuser .multiselect { - min-width: 150px !important; -} -#newuser .multiselect, -#newusergroups + input[type='submit'] { - position: relative; - top: -1px; -} -#headerGroups, -#headerSubAdmins, -#headerQuota { - padding-left: 18px; -} -#headerAvatar { - width: 32px; -} - - -.ie8 table.hascontrols{border-collapse:collapse;width: 100%;} -.ie8 table.hascontrols tbody tr{border-collapse:collapse;border: 1px solid #ddd !important;} - -/* used to highlight a user row in red */ -#userlist tr.row-warning { - background-color: #FDD; -} - - -/* APPS */ - -.appinfo { margin: 1em 40px; } -#app-navigation .appwarning { - background: #fcc; -} -#app-navigation.appwarning:hover { - background: #fbb; -} - -span.version { - margin-left: 1em; - margin-right: 1em; - color: #555; -} - -#app-navigation .app-external, -.app-version { - -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; - filter: alpha(opacity=50); - opacity: .5; -} - -.app-level { - margin-top: 8px; -} -.app-level span { - color: #555; - background-color: transparent; - border: 1px solid #555; - border-radius: 3px; - padding: 3px 6px; -} -.app-level .official { - border-color: #37ce02; - background-position: left center; - background-position: 5px center; - padding-left: 25px; -} -.app-level .approved { - border-color: #e8c805; -} -.app-level .experimental { - background-color: #ce3702; - border-color: #ce3702; - color: #fff; -} -.apps-experimental { - color: #ce3702; -} - -.app-score { - position: relative; - top: 4px; -} - -#apps-list { - position: relative; - height: 100%; -} -.section { - position: relative; -} -.section h2.app-name { - margin-bottom: 8px; -} -.app-image { - float: left; - padding-right: 10px; - width: 80px; - height: 80px; -} -.app-image img { - max-width: 80px; - max-height: 80px; -} -.app-image-icon img { - background-color: #ccc; - width: 60px; - padding: 10px; - border-radius: 3px; -} -.app-name, -.app-version, -.app-score, -.app-level { - display: inline-block; -} - -.app-description-toggle-show, -.app-description-toggle-hide { - clear: both; - padding: 7px 0; - cursor: pointer; - -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; - opacity: .5; -} -.app-description-container { - clear: both; - position: relative; - top: 7px; -} - -.app-description { - clear: both; -} -.app-description pre { - white-space: pre-line; -} - -#app-category-1 { - margin-bottom: 18px; -} -/* capitalize "Other" category */ -#app-category-925 { - text-transform: capitalize; -} - -.app-dependencies { - color: #ce3702; -} - -.missing-dependencies { - list-style: initial; - list-style-type: initial; - list-style-position: inside; -} - -/* Transition to complete width! */ -.app:hover, .app:active { max-width: inherit; } - -.appslink { text-decoration: underline; } -.score { color:#666; font-weight:bold; font-size:0.8em; } - -.appinfo .documentation { - margin-top: 1em; - margin-bottom: 1em; -} - - -/* LOG */ -#log { - white-space:normal; - margin-bottom: 14px; -} -#lessLog { display:none; } -table.grid td.date{ - white-space: nowrap; -} - -/* ADMIN */ -#security-warning li { - list-style: initial; - margin: 10px 0; -} -#security-warning-state span { - padding-left: 25px; - background-position: 5px center; - margin-left: -5px; -} - -#shareAPI p { padding-bottom: 0.8em; } -#shareAPI input#shareapiExpireAfterNDays {width: 25px;} -#shareAPI .indent { - padding-left: 28px; -} -#shareAPI .double-indent { - padding-left: 56px; -} -#fileSharingSettings h3 { - display: inline-block; -} - -/* correctly display help icons next to headings */ -.icon-info { - padding: 11px 20px; - vertical-align: text-bottom; -} -#shareAPI h2, -#encryptionAPI h2, -#mail_general_settings h2 { - display: inline-block; -} - -#encryptionAPI li { - list-style-type: initial; - margin-left: 20px; - padding: 5px 0; -} - -.mail_settings p label:first-child { - display: inline-block; - width: 300px; - text-align: right; -} -.mail_settings p select:nth-child(2) { - width: 143px; -} -#mail_smtpport { - width: 40px; -} - -.cronlog { - margin-left: 10px; -} -.status { - display: inline-block; - height: 16px; - width: 16px; - vertical-align: text-bottom; -} -.status.success { - border-radius: 50%; -} - -#selectGroups select { - -moz-box-sizing: border-box; - -webkit-box-sizing: border-box; - box-sizing: border-box; - display: inline-block; - height: 36px; - padding: 7px 10px -} - -#log .log-message { - word-break: break-all; - min-width: 180px; -} - -span.success { - background: #37ce02; - border-radius: 3px; -} -span.error { - background: #ce3702; -} -span.indeterminate { - background: #e6db00; - border-radius: 40% 0; -} - -/* PASSWORD */ -.strengthify-wrapper { - position: absolute; - left: 189px; - width: 131px; - margin-top: -7px; -} - -.ie8 .strengthify-wrapper { - left: 389px; -} - -.onlyInIE8 { - display: none; -} - -.ie8 .onlyInIE8 { - display: inline; -} - -/* OPERA hack for strengthify*/ -doesnotexist:-o-prefocus, .strengthify-wrapper { - left: 185px; - width: 129px; -} - - - - - -/* HELP */ - -.help-includes { - overflow: hidden !important; -} - -.help-iframe { - width: 100%; - height: 100%; - margin: 0; - padding: 0; - border: 0; - overflow: auto; -} - -#postsetupchecks .loading { - height: 50px; - background-position: left center; -} - -#postsetupchecks .errors, -#postsetupchecks .warnings, -#security-warning > ul { - color: #ce3702; -} - -#admin-tips li { - list-style: initial; -} -#admin-tips li a { - display: inline-block; - padding: 3px 0; -} - -#selectEncryptionModules { - margin-left: 30px; - padding: 10px; -} - -#encryptionModules { - padding: 10px; -} - -#warning { - color: red; -} diff --git a/settings/help.php b/settings/help.php deleted file mode 100644 index ce942d6ae80..00000000000 --- a/settings/help.php +++ /dev/null @@ -1,57 +0,0 @@ -<?php -/** - * @author Bart Visscher <bartv@thisnet.nl> - * @author Christopher Schäpers <kondou@ts.unde.re> - * @author Frank Karlitschek <frank@owncloud.org> - * @author Jakob Sack <mail@jakobsack.de> - * @author Jan-Christoph Borchardt <hey@jancborchardt.net> - * @author Lukas Reschke <lukas@owncloud.com> - * @author Morris Jobke <hey@morrisjobke.de> - * @author Robin Appelman <icewind@owncloud.com> - * @author Roeland Jago Douma <rullzer@owncloud.com> - * - * @copyright Copyright (c) 2016, ownCloud, Inc. - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * This program 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, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * - */ - -OC_Util::checkLoggedIn(); - -// Load the files we need -OC_Util::addStyle( "settings", "settings" ); -\OC::$server->getNavigationManager()->setActiveEntry('help'); - - -if(isset($_GET['mode']) and $_GET['mode'] === 'admin') { - $url=\OCP\Util::linkToAbsolute( 'core', 'doc/admin/index.html' ); - $style1=''; - $style2=' active'; -}else{ - $url=\OCP\Util::linkToAbsolute( 'core', 'doc/user/index.html' ); - $style1=' active'; - $style2=''; -} - -$url1=\OC::$server->getURLGenerator()->linkToRoute('settings_help').'?mode=user'; -$url2=\OC::$server->getURLGenerator()->linkToRoute('settings_help').'?mode=admin'; - -$tmpl = new OC_Template( "settings", "help", "user" ); -$tmpl->assign( "admin", OC_User::isAdminUser(OC_User::getUser())); -$tmpl->assign( "url", $url ); -$tmpl->assign( "url1", $url1 ); -$tmpl->assign( "url2", $url2 ); -$tmpl->assign( "style1", $style1 ); -$tmpl->assign( "style2", $style2 ); -$tmpl->printPage(); diff --git a/settings/img/admin.png b/settings/img/admin.png Binary files differdeleted file mode 100644 index 9cd69def9cd..00000000000 --- a/settings/img/admin.png +++ /dev/null diff --git a/settings/img/admin.svg b/settings/img/admin.svg deleted file mode 100644 index 46ee7f1b46f..00000000000 --- a/settings/img/admin.svg +++ /dev/null @@ -1,5 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> - <rect style="color:#000000" fill-opacity="0" height="97.986" width="163.31" y="-32.993" x="-62.897"/> - <path style="block-progression:tb;color:#000000;text-transform:none;text-indent:0" d="m2 3v3h3v-3h-3zm4 1v1h8v-1h-8zm-4 3v3h3v-3h-3zm4 1v1h8v-1h-8zm-4 3v3h3v-3h-3zm1 1h1v1h-1v-1zm3 0v1h8v-1h-8z" fill="#FFF"/> -</svg> diff --git a/settings/img/apps.png b/settings/img/apps.png Binary files differdeleted file mode 100644 index 9afec98a460..00000000000 --- a/settings/img/apps.png +++ /dev/null diff --git a/settings/img/apps.svg b/settings/img/apps.svg deleted file mode 100644 index a50859c8663..00000000000 --- a/settings/img/apps.svg +++ /dev/null @@ -1,4 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="32" width="32" version="1.0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> - <path d="m14 6v8h-8v4h8v8h4v-8h8v-4h-8v-8h-4z" fill="#FFF"/> -</svg> diff --git a/settings/img/help.png b/settings/img/help.png Binary files differdeleted file mode 100644 index 3c9cfed40fc..00000000000 --- a/settings/img/help.png +++ /dev/null diff --git a/settings/img/help.svg b/settings/img/help.svg deleted file mode 100644 index b49998bb9ee..00000000000 --- a/settings/img/help.svg +++ /dev/null @@ -1,5 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> - <rect style="color:#000000" fill-opacity="0" height="97.986" width="163.31" y="-32.993" x="-62.897"/> - <path d="m5 8.4745c0.1554 0.3811 0.3254 0.6881 0.6445 0.2459 0.4066-0.2685 1.7588-1.4279 1.6617-0.3421-0.3682 2.0167-0.8342 4.0167-1.1712 6.0387-0.3916 1.115 0.635 2.068 1.638 1.312 1.0779-0.503 1.9915-1.288 2.928-2.012-0.144-0.322-0.25-0.789-0.597-0.346-0.4681 0.239-1.469 1.317-1.6962 0.471 0.3154-2.181 0.9756-4.2953 1.3655-6.4616 0.3977-1.0049-0.3645-2.2233-1.3998-1.3634-1.2565 0.6173-2.2896 1.5844-3.3735 2.4575zm4.4594-7.4718c-1.3075-0.01736-1.9056 2.1455-0.6427 2.6795 1.0225 0.378 2.0763-0.7138 1.7893-1.7504-0.098-0.5419-0.597-0.96979-1.1466-0.9291h-0.000001z" fill="#FFF"/> -</svg> diff --git a/settings/img/personal.png b/settings/img/personal.png Binary files differdeleted file mode 100644 index a3fce59edb1..00000000000 --- a/settings/img/personal.png +++ /dev/null diff --git a/settings/img/personal.svg b/settings/img/personal.svg deleted file mode 100644 index 413716e28ba..00000000000 --- a/settings/img/personal.svg +++ /dev/null @@ -1,5 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> - <rect style="color:#000000" fill-opacity="0" height="97.986" width="163.31" y="-32.993" x="-62.897"/> - <path style="block-progression:tb;color:#000000;text-transform:none;text-indent:0" d="m8.0038 0.99998c-1.6231 0-3 1.1869-3 2.7187 0.011519 0.48415 0.054822 1.0812 0.34375 2.3437v0.03125l0.031247 0.03125c0.092751 0.26567 0.22772 0.41764 0.40624 0.62499s0.39135 0.4514 0.59374 0.65624c0.023812 0.0241 0.039074 0.03903 0.062494 0.06251 0.040137 0.17466 0.088761 0.36263 0.125 0.53124 0.096423 0.4486 0.086533 0.76628 0.062505 0.87499-0.6975 0.245-1.5651 0.5366-2.3437 0.8751-0.4371 0.19-0.8327 0.3601-1.1563 0.5621-0.32358 0.20278-0.64539 0.35598-0.74999 0.81249-0.00134 0.02081-0.00134 0.04169 0 0.06251-0.10221 0.93847-0.25682 2.3185-0.375 3.25-0.025513 0.19607 0.077829 0.40276 0.25 0.49999 1.4137 0.7636 3.5852 1.0709 5.7499 1.0625s4.319-0.33383 5.6874-1.0625c0.17217-0.09723 0.27551-0.30392 0.25-0.49999-0.03773-0.29116-0.08408-0.94772-0.125-1.5937-0.04092-0.64601-0.07644-1.2815-0.12499-1.6562-0.01694-0.09289-0.06086-0.18071-0.125-0.25-0.43471-0.51909-1.0842-0.83642-1.8437-1.1562-0.69342-0.29198-1.5063-0.59518-2.3125-0.93749-0.045118-0.10051-0.089936-0.39293 0-0.84374 0.0246-0.1208 0.0624-0.2505 0.0942-0.3748 0.0757-0.0848 0.1348-0.1542 0.2187-0.25 0.179-0.2043 0.3715-0.4187 0.5315-0.625s0.29-0.3832 0.375-0.625l0.031-0.0312c0.32664-1.3183 0.32681-1.8684 0.34375-2.3437v-0.03213c0-1.5318-1.3769-2.7187-3-2.7187z" fill="#FFF"/> -</svg> diff --git a/settings/img/trans.png b/settings/img/trans.png Binary files differdeleted file mode 100644 index ef57510d530..00000000000 --- a/settings/img/trans.png +++ /dev/null diff --git a/settings/img/users.png b/settings/img/users.png Binary files differdeleted file mode 100644 index fac2e6f3ea5..00000000000 --- a/settings/img/users.png +++ /dev/null diff --git a/settings/img/users.svg b/settings/img/users.svg deleted file mode 100644 index e2834402b1d..00000000000 --- a/settings/img/users.svg +++ /dev/null @@ -1,5 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> - <rect style="color:#000000" fill-opacity="0" height="97.986" width="163.31" y="-32.993" x="-62.897"/> - <path style="block-progression:tb;color:#000000;text-transform:none;text-indent:0" d="m4.1179 2.7112c-1.1132 0-2.0576 0.81415-2.0576 1.8648 0.0079 0.33209 0.037602 0.7416 0.23577 1.6076v0.02144l0.021432 0.02143c0.063617 0.18223 0.15619 0.28647 0.27864 0.4287 0.12245 0.14222 0.26842 0.30962 0.40724 0.45013 0.016332 0.01653 0.0268 0.02677 0.042864 0.04288 0.02753 0.1198 0.060881 0.24874 0.085735 0.36439 0.066135 0.3077 0.059353 0.52561 0.042871 0.60017-0.4783 0.1679-1.0735 0.368-1.6075 0.6001-0.2998 0.1304-0.5711 0.2468-0.79304 0.3859-0.22195 0.139-0.44267 0.2441-0.51441 0.5573-0.0009199 0.01427-0.0009199 0.0286 0 0.04288-0.070103 0.64371-0.17615 1.5903-0.25721 2.2292-0.017499 0.13449 0.053382 0.27626 0.17147 0.34296 0.96962 0.52377 2.4591 0.73457 3.9438 0.72878 1.4848-0.0058 2.9623-0.22898 3.901-0.72878 0.11809-0.06669 0.18897-0.20847 0.17147-0.34296-0.025879-0.19971-0.05767-0.65006-0.085735-1.0932-0.0282-0.443-0.0526-0.879-0.0859-1.1361-0.0116-0.0637-0.0418-0.1239-0.0857-0.1714-0.2982-0.3561-0.7437-0.5738-1.2646-0.7931-0.4756-0.2003-1.0332-0.4083-1.5861-0.6431-0.031-0.0689-0.0617-0.2695 0-0.5787 0.0165-0.083 0.0425-0.172 0.0643-0.2572 0.0519-0.0582 0.0924-0.1058 0.15-0.1715 0.1228-0.1402 0.2547-0.2872 0.3644-0.4287 0.1096-0.1415 0.1993-0.2629 0.2572-0.4287l0.0214-0.0215c0.224-0.9043 0.2242-1.2816 0.2358-1.6076v-0.02145c0-1.0507-0.9444-1.8648-2.0576-1.8648zm5.8861-1.7112c-1.6231 0-3 1.1869-3 2.7187 0.011519 0.48415 0.054822 1.0812 0.34375 2.3437v0.03125l0.0312 0.03125c0.092751 0.26567 0.22772 0.41764 0.40624 0.62499s0.39135 0.4514 0.59374 0.65624c0.023812 0.0241 0.039074 0.03903 0.062494 0.06251 0.040137 0.17466 0.088761 0.36263 0.125 0.53124 0.096423 0.4486 0.086533 0.76628 0.062505 0.87499-0.69745 0.24488-1.5651 0.53652-2.3437 0.87499-0.43711 0.19003-0.83265 0.35972-1.1562 0.56249-0.32358 0.20278-0.64539 0.35598-0.74999 0.81249-0.00134 0.02081-0.00134 0.04169 0 0.06251-0.10221 0.93847-0.25682 2.3185-0.375 3.25-0.025513 0.19607 0.077829 0.40276 0.25 0.49999 1.4137 0.7636 3.5852 1.0709 5.7499 1.0625s4.319-0.33383 5.6874-1.0625c0.17217-0.09723 0.27551-0.30392 0.25-0.49999-0.03773-0.29116-0.08408-0.94772-0.125-1.5937-0.04092-0.64601-0.07644-1.2815-0.12499-1.6562-0.01694-0.09289-0.06086-0.18071-0.125-0.25-0.43471-0.51909-1.0842-0.83642-1.8437-1.1562-0.69342-0.29198-1.5063-0.59518-2.3125-0.93749-0.04512-0.10051-0.08994-0.39293 0-0.84374 0.02415-0.12105 0.06197-0.2507 0.09375-0.375 0.07576-0.08485 0.1348-0.15419 0.21875-0.25 0.17904-0.20434 0.37141-0.4187 0.53124-0.62499 0.15984-0.2063 0.2906-0.38327 0.375-0.62499l0.031-0.0313c0.32664-1.3183 0.32681-1.8684 0.34375-2.3437v-0.03181c0-1.5318-1.3769-2.7187-3-2.7187z" fill="#FFF"/> -</svg> diff --git a/settings/js/admin.js b/settings/js/admin.js deleted file mode 100644 index 1bbb20efa00..00000000000 --- a/settings/js/admin.js +++ /dev/null @@ -1,226 +0,0 @@ -$(document).ready(function(){ - var params = OC.Util.History.parseUrlQuery(); - - // Hack to add a trusted domain - if (params.trustDomain) { - OC.dialogs.confirm(t('settings', 'Are you really sure you want add "{domain}" as trusted domain?', - {domain: params.trustDomain}), - t('settings', 'Add trusted domain'), function(answer) { - if(answer) { - $.ajax({ - type: 'POST', - url: OC.generateUrl('settings/admin/security/trustedDomains'), - data: { newTrustedDomain: params.trustDomain } - }).done(function() { - window.location.replace(OC.generateUrl('settings/admin')); - }); - } - }); - } - - - $('#excludedGroups').each(function (index, element) { - OC.Settings.setupGroupsSelect($(element)); - $(element).change(function(ev) { - var groups = ev.val || []; - groups = JSON.stringify(groups); - OC.AppConfig.setValue('core', $(this).attr('name'), groups); - }); - }); - - - $('#loglevel').change(function(){ - $.post(OC.generateUrl('/settings/admin/log/level'), {level: $(this).val()},function(){ - OC.Log.reload(); - } ); - }); - - $('#backgroundjobs span.crondate').tipsy({gravity: 's', live: true}); - - $('#backgroundjobs input').change(function(){ - if($(this).attr('checked')){ - var mode = $(this).val(); - if (mode === 'ajax' || mode === 'webcron' || mode === 'cron') { - OC.AppConfig.setValue('core', 'backgroundjobs_mode', mode); - // clear cron errors on background job mode change - OC.AppConfig.deleteKey('core', 'cronErrors'); - } - } - }); - - $('#shareAPIEnabled').change(function() { - $('#shareAPI p:not(#enable)').toggleClass('hidden', !this.checked); - }); - - $('#enableEncryption').change(function() { - $('#encryptionAPI div#EncryptionWarning').toggleClass('hidden'); - }); - - $('#reallyEnableEncryption').click(function() { - $('#encryptionAPI div#EncryptionWarning').toggleClass('hidden'); - $('#encryptionAPI div#EncryptionSettingsArea').toggleClass('hidden'); - OC.AppConfig.setValue('core', 'encryption_enabled', 'yes'); - $('#enableEncryption').attr('disabled', 'disabled'); - }); - - $('#startmigration').click(function(event){ - $(window).on('beforeunload.encryption', function(e) { - return t('settings', 'Migration in progress. Please wait until the migration is finished'); - }); - event.preventDefault(); - $('#startmigration').prop('disabled', true); - OC.msg.startAction('#startmigration_msg', t('settings', 'Migration started …')); - $.post(OC.generateUrl('/settings/admin/startmigration'), '', function(data){ - OC.msg.finishedAction('#startmigration_msg', data); - if (data['status'] === 'success') { - $('#encryptionAPI div#selectEncryptionModules').toggleClass('hidden'); - $('#encryptionAPI div#migrationWarning').toggleClass('hidden'); - } else { - $('#startmigration').prop('disabled', false); - } - $(window).off('beforeunload.encryption'); - - }); - }); - - $('#shareapiExpireAfterNDays').change(function() { - var value = $(this).val(); - if (value <= 0) { - $(this).val("1"); - } - }); - - $('#shareAPI input:not(#excludedGroups)').change(function() { - var value = $(this).val(); - if ($(this).attr('type') === 'checkbox') { - if (this.checked) { - value = 'yes'; - } else { - value = 'no'; - } - } - OC.AppConfig.setValue('core', $(this).attr('name'), value); - }); - - $('#shareapiDefaultExpireDate').change(function() { - $("#setDefaultExpireDate").toggleClass('hidden', !this.checked); - }); - - $('#allowLinks').change(function() { - $("#publicLinkSettings").toggleClass('hidden', !this.checked); - $('#setDefaultExpireDate').toggleClass('hidden', !(this.checked && $('#shareapiDefaultExpireDate')[0].checked)); - }); - - $('#mail_smtpauth').change(function() { - if (!this.checked) { - $('#mail_credentials').addClass('hidden'); - } else { - $('#mail_credentials').removeClass('hidden'); - } - }); - - $('#mail_smtpmode').change(function() { - if ($(this).val() !== 'smtp') { - $('#setting_smtpauth').addClass('hidden'); - $('#setting_smtphost').addClass('hidden'); - $('#mail_smtpsecure_label').addClass('hidden'); - $('#mail_smtpsecure').addClass('hidden'); - $('#mail_credentials').addClass('hidden'); - } else { - $('#setting_smtpauth').removeClass('hidden'); - $('#setting_smtphost').removeClass('hidden'); - $('#mail_smtpsecure_label').removeClass('hidden'); - $('#mail_smtpsecure').removeClass('hidden'); - if ($('#mail_smtpauth').attr('checked')) { - $('#mail_credentials').removeClass('hidden'); - } - } - }); - - $('#mail_general_settings_form').change(function(){ - OC.msg.startSaving('#mail_settings_msg'); - var post = $( "#mail_general_settings_form" ).serialize(); - $.post(OC.generateUrl('/settings/admin/mailsettings'), post, function(data){ - OC.msg.finishedSaving('#mail_settings_msg', data); - }); - }); - - $('#mail_credentials_settings_submit').click(function(){ - OC.msg.startSaving('#mail_settings_msg'); - var post = $( "#mail_credentials_settings" ).serialize(); - $.post(OC.generateUrl('/settings/admin/mailsettings/credentials'), post, function(data){ - OC.msg.finishedSaving('#mail_settings_msg', data); - }); - }); - - $('#sendtestemail').click(function(event){ - event.preventDefault(); - OC.msg.startAction('#sendtestmail_msg', t('settings', 'Sending...')); - $.post(OC.generateUrl('/settings/admin/mailtest'), '', function(data){ - OC.msg.finishedAction('#sendtestmail_msg', data); - }); - }); - - $('#allowGroupSharing').change(function() { - $('#allowGroupSharing').toggleClass('hidden', !this.checked); - }); - - $('#shareapiExcludeGroups').change(function() { - $("#selectExcludedGroups").toggleClass('hidden', !this.checked); - }); - - // run setup checks then gather error messages - $.when( - OC.SetupChecks.checkWebDAV(), - OC.SetupChecks.checkWellKnownUrl('/.well-known/caldav/', oc_defaults.docPlaceholderUrl, $('#postsetupchecks').data('check-wellknown') === 'true'), - OC.SetupChecks.checkWellKnownUrl('/.well-known/carddav/', oc_defaults.docPlaceholderUrl, $('#postsetupchecks').data('check-wellknown') === 'true'), - OC.SetupChecks.checkSetup(), - OC.SetupChecks.checkGeneric(), - OC.SetupChecks.checkDataProtected() - ).then(function(check1, check2, check3, check4, check5, check6) { - var messages = [].concat(check1, check2, check3, check4, check5, check6); - var $el = $('#postsetupchecks'); - $el.find('.loading').addClass('hidden'); - - var hasMessages = false; - var $errorsEl = $el.find('.errors'); - var $warningsEl = $el.find('.warnings'); - var $infoEl = $el.find('.info'); - - for (var i = 0; i < messages.length; i++ ) { - switch(messages[i].type) { - case OC.SetupChecks.MESSAGE_TYPE_INFO: - $infoEl.append('<li>' + messages[i].msg + '</li>'); - break; - case OC.SetupChecks.MESSAGE_TYPE_WARNING: - $warningsEl.append('<li>' + messages[i].msg + '</li>'); - break; - case OC.SetupChecks.MESSAGE_TYPE_ERROR: - default: - $errorsEl.append('<li>' + messages[i].msg + '</li>'); - } - } - - if ($errorsEl.find('li').length > 0) { - $errorsEl.removeClass('hidden'); - hasMessages = true; - } - if ($warningsEl.find('li').length > 0) { - $warningsEl.removeClass('hidden'); - hasMessages = true; - } - if ($infoEl.find('li').length > 0) { - $infoEl.removeClass('hidden'); - hasMessages = true; - } - - if (hasMessages) { - $el.find('.hint').removeClass('hidden'); - } else { - var securityWarning = $('#security-warning'); - if (securityWarning.children('ul').children().length === 0) { - $('#security-warning-state').find('span').removeClass('hidden'); - } - } - }); -}); diff --git a/settings/js/apps.js b/settings/js/apps.js deleted file mode 100644 index e052a9ee9d3..00000000000 --- a/settings/js/apps.js +++ /dev/null @@ -1,632 +0,0 @@ -/* global Handlebars */ - -Handlebars.registerHelper('score', function() { - if(this.score) { - var score = Math.round( this.score / 10 ); - var imageName = 'rating/s' + score + '.svg'; - - return new Handlebars.SafeString('<img src="' + OC.imagePath('core', imageName) + '">'); - } - return new Handlebars.SafeString(''); -}); -Handlebars.registerHelper('level', function() { - if(typeof this.level !== 'undefined') { - if(this.level === 200) { - return new Handlebars.SafeString('<span class="official icon-checkmark">' + t('settings', 'Official') + '</span>'); - } else if(this.level === 100) { - return new Handlebars.SafeString('<span class="approved">' + t('settings', 'Approved') + '</span>'); - } else { - return new Handlebars.SafeString('<span class="experimental">' + t('settings', 'Experimental') + '</span>'); - } - } -}); - -OC.Settings = OC.Settings || {}; -OC.Settings.Apps = OC.Settings.Apps || { - setupGroupsSelect: function($elements) { - OC.Settings.setupGroupsSelect($elements, { - placeholder: t('core', 'All') - }); - }, - - State: { - currentCategory: null, - apps: null - }, - - loadCategories: function() { - if (this._loadCategoriesCall) { - this._loadCategoriesCall.abort(); - } - - var categories = [ - {displayName: t('settings', 'Enabled'), ident: 'enabled', id: '0'}, - {displayName: t('settings', 'Not enabled'), ident: 'disabled', id: '1'} - ]; - - var source = $("#categories-template").html(); - var template = Handlebars.compile(source); - var html = template(categories); - $('#apps-categories').html(html); - - OC.Settings.Apps.loadCategory($('#app-navigation').attr('data-category')); - - this._loadCategoriesCall = $.ajax(OC.generateUrl('settings/apps/categories'), { - data:{}, - type:'GET', - success:function (jsondata) { - var html = template(jsondata); - $('#apps-categories').html(html); - $('#app-category-' + OC.Settings.Apps.State.currentCategory).addClass('active'); - }, - complete: function() { - $('#app-navigation').removeClass('icon-loading'); - } - }); - - }, - - loadCategory: function(categoryId) { - if (OC.Settings.Apps.State.currentCategory === categoryId) { - return; - } - if (this._loadCategoryCall) { - this._loadCategoryCall.abort(); - } - $('#apps-list') - .addClass('icon-loading') - .removeClass('hidden') - .html(''); - $('#apps-list-empty').addClass('hidden'); - $('#app-category-' + OC.Settings.Apps.State.currentCategory).removeClass('active'); - $('#app-category-' + categoryId).addClass('active'); - OC.Settings.Apps.State.currentCategory = categoryId; - - this._loadCategoryCall = $.ajax(OC.generateUrl('settings/apps/list?category={categoryId}&includeUpdateInfo=0', { - categoryId: categoryId - }), { - type:'GET', - success: function (apps) { - var appListWithIndex = _.indexBy(apps.apps, 'id'); - OC.Settings.Apps.State.apps = appListWithIndex; - var appList = _.map(appListWithIndex, function(app) { - // default values for missing fields - return _.extend({level: 0}, app); - }); - var source = $("#app-template").html(); - var template = Handlebars.compile(source); - - if (appList.length) { - appList.sort(function(a,b) { - var levelDiff = b.level - a.level; - if (levelDiff === 0) { - return OC.Util.naturalSortCompare(a.name, b.name); - } - return levelDiff; - }); - - var firstExperimental = false; - _.each(appList, function(app) { - if(app.level === 0 && firstExperimental === false) { - firstExperimental = true; - OC.Settings.Apps.renderApp(app, template, null, true); - } else { - OC.Settings.Apps.renderApp(app, template, null, false); - } - }); - } else { - $('#apps-list').addClass('hidden'); - $('#apps-list-empty').removeClass('hidden').find('h2').text(t('settings', 'No apps found for your version')); - } - - $('.app-level .official').tipsy({fallback: t('settings', 'Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use.')}); - $('.app-level .approved').tipsy({fallback: t('settings', 'Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use.')}); - $('.app-level .experimental').tipsy({fallback: t('settings', 'This app is not checked for security issues and is new or known to be unstable. Install at your own risk.')}); - }, - complete: function() { - var availableUpdates = 0; - $('#apps-list').removeClass('icon-loading'); - $.ajax(OC.generateUrl('settings/apps/list?category={categoryId}&includeUpdateInfo=1', { - categoryId: categoryId - }), { - type: 'GET', - success: function (apps) { - _.each(apps.apps, function(app) { - if (app.update) { - var $update = $('#app-' + app.id + ' .update'); - $update.removeClass('hidden'); - $update.val(t('settings', 'Update to %s').replace(/%s/g, app.update)); - availableUpdates++; - OC.Settings.Apps.State.apps[app.id].update = true; - } - }); - - if (availableUpdates > 0) { - OC.Notification.show(n('settings', 'You have %n app update pending', 'You have %n app updates pending', availableUpdates)); - } - } - }); - } - }); - }, - - renderApp: function(app, template, selector, firstExperimental) { - if (!template) { - var source = $("#app-template").html(); - template = Handlebars.compile(source); - } - if (typeof app === 'string') { - app = OC.Settings.Apps.State.apps[app]; - } - app.firstExperimental = firstExperimental; - - if (!app.preview) { - app.preview = OC.imagePath('core', 'default-app-icon'); - app.previewAsIcon = true; - } - - var html = template(app); - if (selector) { - selector.html(html); - } else { - $('#apps-list').append(html); - } - - var page = $('#app-' + app.id); - - // image loading kung-fu (IE doesn't properly scale SVGs, so disable app icons) - if (app.preview && !OC.Util.isIE()) { - var currentImage = new Image(); - currentImage.src = app.preview; - - currentImage.onload = function() { - page.find('.app-image') - .append(this) - .fadeIn(); - }; - } - - // set group select properly - if(OC.Settings.Apps.isType(app, 'filesystem') || OC.Settings.Apps.isType(app, 'prelogin') || - OC.Settings.Apps.isType(app, 'authentication') || OC.Settings.Apps.isType(app, 'logging') || - OC.Settings.Apps.isType(app, 'prevent_group_restriction')) { - page.find(".groups-enable").hide(); - page.find(".groups-enable__checkbox").attr('checked', null); - } else { - page.find('#group_select').val((app.groups || []).join('|')); - if (app.active) { - if (app.groups.length) { - OC.Settings.Apps.setupGroupsSelect(page.find('#group_select')); - page.find(".groups-enable__checkbox").attr('checked','checked'); - } else { - page.find(".groups-enable__checkbox").attr('checked', null); - } - page.find(".groups-enable").show(); - } else { - page.find(".groups-enable").hide(); - } - } - }, - - isType: function(app, type){ - return app.types && app.types.indexOf(type) !== -1; - }, - - /** - * Checks the server health. - * - * If the promise fails, the server is broken. - * - * @return {Promise} promise - */ - _checkServerHealth: function() { - return $.get(OC.generateUrl('apps/files')); - }, - - enableApp:function(appId, active, element, groups) { - var self = this; - OC.Settings.Apps.hideErrorMessage(appId); - groups = groups || []; - var appItem = $('div#app-'+appId+''); - element.val(t('settings','Please wait....')); - if(active && !groups.length) { - $.post(OC.filePath('settings','ajax','disableapp.php'),{appid:appId},function(result) { - if(!result || result.status !== 'success') { - if (result.data && result.data.message) { - OC.Settings.Apps.showErrorMessage(appId, result.data.message); - appItem.data('errormsg', result.data.message); - } else { - OC.Settings.Apps.showErrorMessage(appId, t('settings', 'Error while disabling app')); - appItem.data('errormsg', t('settings', 'Error while disabling app')); - } - element.val(t('settings','Disable')); - appItem.addClass('appwarning'); - } else { - OC.Settings.Apps.rebuildNavigation(); - appItem.data('active',false); - appItem.data('groups', ''); - element.data('active',false); - appItem.removeClass('active'); - element.val(t('settings','Enable')); - element.parent().find(".groups-enable").hide(); - element.parent().find('#group_select').hide().val(null); - OC.Settings.Apps.State.apps[appId].active = false; - } - },'json'); - } else { - // TODO: display message to admin to not refresh the page! - // TODO: lock UI to prevent further operations - $.post(OC.filePath('settings','ajax','enableapp.php'),{appid: appId, groups: groups},function(result) { - if(!result || result.status !== 'success') { - if (result.data && result.data.message) { - OC.Settings.Apps.showErrorMessage(appId, result.data.message); - appItem.data('errormsg', result.data.message); - } else { - OC.Settings.Apps.showErrorMessage(appId, t('settings', 'Error while enabling app')); - appItem.data('errormsg', t('settings', 'Error while disabling app')); - } - element.val(t('settings','Enable')); - appItem.addClass('appwarning'); - } else { - self._checkServerHealth().done(function() { - if (result.data.update_required) { - OC.Settings.Apps.showReloadMessage(); - - setTimeout(function() { - location.reload(); - }, 5000); - } - - OC.Settings.Apps.rebuildNavigation(); - appItem.data('active',true); - element.data('active',true); - appItem.addClass('active'); - element.val(t('settings','Disable')); - var app = OC.Settings.Apps.State.apps[appId]; - app.active = true; - - if (OC.Settings.Apps.isType(app, 'filesystem') || OC.Settings.Apps.isType(app, 'prelogin') || - OC.Settings.Apps.isType(app, 'authentication') || OC.Settings.Apps.isType(app, 'logging')) { - element.parent().find(".groups-enable").attr('checked', null); - element.parent().find(".groups-enable").hide(); - element.parent().find('#group_select').hide().val(null); - } else { - element.parent().find("#groups-enable").show(); - if (groups) { - appItem.data('groups', JSON.stringify(groups)); - } else { - appItem.data('groups', ''); - } - } - }).fail(function() { - // server borked, emergency disable app - $.post(OC.webroot + '/index.php/disableapp', {appid: appId}, function() { - OC.Settings.Apps.showErrorMessage( - appId, - t('settings', 'Error: this app cannot be enabled because it makes the server unstable') - ); - appItem.data('errormsg', t('settings', 'Error while enabling app')); - element.val(t('settings','Enable')); - appItem.addClass('appwarning'); - }).fail(function() { - OC.Settings.Apps.showErrorMessage( - appId, - t('settings', 'Error: could not disable broken app') - ); - appItem.data('errormsg', t('settings', 'Error while disabling broken app')); - element.val(t('settings','Enable')); - }); - }); - } - },'json') - .fail(function() { - OC.Settings.Apps.showErrorMessage(appId, t('settings', 'Error while enabling app')); - appItem.data('errormsg', t('settings', 'Error while enabling app')); - appItem.data('active',false); - appItem.addClass('appwarning'); - element.val(t('settings','Enable')); - }); - } - }, - - updateApp:function(appId, element) { - var oldButtonText = element.val(); - element.val(t('settings','Updating....')); - OC.Settings.Apps.hideErrorMessage(appId); - $.post(OC.filePath('settings','ajax','updateapp.php'),{appid:appId},function(result) { - if(!result || result.status !== 'success') { - if (result.data && result.data.message) { - OC.Settings.Apps.showErrorMessage(appId, result.data.message); - } else { - OC.Settings.Apps.showErrorMessage(appId, t('settings','Error while updating app')); - } - element.val(oldButtonText); - } - else { - element.val(t('settings','Updated')); - element.hide(); - } - },'json'); - }, - - uninstallApp:function(appId, element) { - OC.Settings.Apps.hideErrorMessage(appId); - element.val(t('settings','Uninstalling ....')); - $.post(OC.filePath('settings','ajax','uninstallapp.php'),{appid:appId},function(result) { - if(!result || result.status !== 'success') { - OC.Settings.Apps.showErrorMessage(appId, t('settings','Error while uninstalling app')); - element.val(t('settings','Uninstall')); - } else { - OC.Settings.Apps.rebuildNavigation(); - element.parent().fadeOut(function() { - element.remove(); - }); - } - },'json'); - }, - - rebuildNavigation: function() { - $.getJSON(OC.filePath('settings', 'ajax', 'navigationdetect.php')).done(function(response){ - if(response.status === 'success'){ - var idsToKeep = {}; - var navEntries=response.nav_entries; - var container = $('#apps ul'); - for(var i=0; i< navEntries.length; i++){ - var entry = navEntries[i]; - idsToKeep[entry.id] = true; - - if(container.children('li[data-id="'+entry.id+'"]').length === 0){ - var li=$('<li></li>'); - li.attr('data-id', entry.id); - var img= $('<img class="app-icon"/>').attr({ src: entry.icon}); - var a=$('<a></a>').attr('href', entry.href); - var filename=$('<span></span>'); - var loading = $('<div class="icon-loading-dark"></div>').css('display', 'none'); - filename.text(entry.name); - a.prepend(filename); - a.prepend(loading); - a.prepend(img); - li.append(a); - - // append the new app as last item in the list - // which is the "add apps" entry with the id - // #apps-management - $('#apps-management').before(li); - - // scroll the app navigation down - // so the newly added app is seen - $('#navigation').animate({ - scrollTop: $('#navigation').height() - }, 'slow'); - - // draw attention to the newly added app entry - // by flashing it twice - $('#header .menutoggle') - .animate({opacity: 0.5}) - .animate({opacity: 1}) - .animate({opacity: 0.5}) - .animate({opacity: 1}) - .animate({opacity: 0.75}); - - if (!OC.Util.hasSVGSupport() && entry.icon.match(/\.svg$/i)) { - $(img).addClass('svg'); - OC.Util.replaceSVG(); - } - } - } - - container.children('li[data-id]').each(function(index, el) { - if (!idsToKeep[$(el).data('id')]) { - $(el).remove(); - } - }); - } - }); - }, - - showErrorMessage: function(appId, message) { - $('div#app-'+appId+' .warning') - .show() - .text(message); - }, - - hideErrorMessage: function(appId) { - $('div#app-'+appId+' .warning') - .hide() - .text(''); - }, - - showReloadMessage: function() { - OC.dialogs.info( - t( - 'settings', - 'The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds.' - ), - t('settings','App update'), - function () { - window.location.reload(); - }, - true - ); - }, - - filter: function(query) { - var $appList = $('#apps-list'), - $emptyList = $('#apps-list-empty'); - $appList.removeClass('hidden'); - $appList.find('.section').removeClass('hidden'); - $emptyList.addClass('hidden'); - - if (query === '') { - return; - } - - query = query.toLowerCase(); - $appList.find('.section').addClass('hidden'); - - // App Name - var apps = _.filter(OC.Settings.Apps.State.apps, function (app) { - return app.name.toLowerCase().indexOf(query) !== -1; - }); - - // App ID - apps = apps.concat(_.filter(OC.Settings.Apps.State.apps, function (app) { - return app.id.toLowerCase().indexOf(query) !== -1; - })); - - // App Description - apps = apps.concat(_.filter(OC.Settings.Apps.State.apps, function (app) { - return app.description.toLowerCase().indexOf(query) !== -1; - })); - - // Author Name - apps = apps.concat(_.filter(OC.Settings.Apps.State.apps, function (app) { - return app.author.toLowerCase().indexOf(query) !== -1; - })); - - // App status - if (t('settings', 'Official').toLowerCase().indexOf(query) !== -1) { - apps = apps.concat(_.filter(OC.Settings.Apps.State.apps, function (app) { - return app.level === 200; - })); - } - if (t('settings', 'Approved').toLowerCase().indexOf(query) !== -1) { - apps = apps.concat(_.filter(OC.Settings.Apps.State.apps, function (app) { - return app.level === 100; - })); - } - if (t('settings', 'Experimental').toLowerCase().indexOf(query) !== -1) { - apps = apps.concat(_.filter(OC.Settings.Apps.State.apps, function (app) { - return app.level !== 100 && app.level !== 200; - })); - } - - apps = _.uniq(apps, function(app){return app.id;}); - - if (apps.length === 0) { - $appList.addClass('hidden'); - $emptyList.removeClass('hidden'); - $emptyList.removeClass('hidden').find('h2').text(t('settings', 'No apps found for {query}', { - query: query - })); - } else { - _.each(apps, function (app) { - $('#app-' + app.id).removeClass('hidden'); - }); - - $('#searchresults').hide(); - } - }, - - _onPopState: function(params) { - params = _.extend({ - category: 'enabled' - }, params); - - OC.Settings.Apps.loadCategory(params.category); - }, - - /** - * Initializes the apps list - */ - initialize: function($el) { - OC.Plugins.register('OCA.Search', OC.Settings.Apps.Search); - OC.Settings.Apps.loadCategories(); - OC.Util.History.addOnPopStateHandler(_.bind(this._onPopState, this)); - - $(document).on('click', 'ul#apps-categories li', function () { - var categoryId = $(this).data('categoryId'); - OC.Settings.Apps.loadCategory(categoryId); - OC.Util.History.pushState({ - category: categoryId - }); - $('#searchbox').val(''); - }); - - $(document).on('click', '.app-description-toggle-show', function () { - $(this).addClass('hidden'); - $(this).siblings('.app-description-toggle-hide').removeClass('hidden'); - $(this).siblings('.app-description-container').slideDown(); - }); - $(document).on('click', '.app-description-toggle-hide', function () { - $(this).addClass('hidden'); - $(this).siblings('.app-description-toggle-show').removeClass('hidden'); - $(this).siblings('.app-description-container').slideUp(); - }); - - $(document).on('click', '#apps-list input.enable', function () { - var appId = $(this).data('appid'); - var element = $(this); - var active = $(this).data('active'); - - OC.Settings.Apps.enableApp(appId, active, element); - }); - - $(document).on('click', '#apps-list input.uninstall', function () { - var appId = $(this).data('appid'); - var element = $(this); - - OC.Settings.Apps.uninstallApp(appId, element); - }); - - $(document).on('click', '#apps-list input.update', function () { - var appId = $(this).data('appid'); - var element = $(this); - - OC.Settings.Apps.updateApp(appId, element); - }); - - $(document).on('change', '#group_select', function() { - var element = $(this).parent().find('input.enable'); - var groups = $(this).val(); - if (groups && groups !== '') { - groups = groups.split('|'); - } else { - groups = []; - } - - var appId = element.data('appid'); - if (appId) { - OC.Settings.Apps.enableApp(appId, false, element, groups); - OC.Settings.Apps.State.apps[appId].groups = groups; - } - }); - - $(document).on('change', ".groups-enable__checkbox", function() { - var $select = $(this).closest('.section').find('#group_select'); - $select.val(''); - - if (this.checked) { - OC.Settings.Apps.setupGroupsSelect($select); - } else { - $select.select2('destroy'); - } - - $select.change(); - }); - - $(document).on('click', '#enable-experimental-apps', function () { - var state = $(this).prop('checked'); - $.ajax(OC.generateUrl('settings/apps/experimental'), { - data: {state: state}, - type: 'POST', - success:function () { - location.reload(); - } - }); - }); - } -}; - -OC.Settings.Apps.Search = { - attach: function (search) { - search.setFilter('settings', OC.Settings.Apps.filter); - } -}; - -$(document).ready(function () { - // HACK: FIXME: use plugin approach - if (!window.TESTING) { - OC.Settings.Apps.initialize($('#apps-list')); - } -}); diff --git a/settings/js/certificates.js b/settings/js/certificates.js deleted file mode 100644 index f2a8e6b0afb..00000000000 --- a/settings/js/certificates.js +++ /dev/null @@ -1,70 +0,0 @@ -$(document).ready(function () { - var type = $('#sslCertificate').data('type'); - $('#sslCertificate').on('click', 'td.remove', function () { - var row = $(this).parent(); - $.ajax(OC.generateUrl('settings/' + type + '/certificate/{certificate}', {certificate: row.data('name')}), { - type: 'DELETE' - }); - row.remove(); - - if ($('#sslCertificate > tbody > tr').length === 0) { - $('#sslCertificate').hide(); - } - return true; - }); - - $('#sslCertificate tr > td').tipsy({gravity: 'n', live: true}); - - $('#rootcert_import').fileupload({ - pasteZone: null, - submit: function (e, data) { - data.formData = _.extend(data.formData || {}, { - requesttoken: OC.requestToken - }); - }, - success: function (data) { - if (typeof data === 'string') { - data = $.parseJSON(data); - } else if (data && data.length) { - // fetch response from iframe - data = $.parseJSON(data[0].body.innerText); - } - if (!data || typeof(data) === 'string') { - // IE8 iframe workaround comes here instead of fail() - OC.Notification.showTemporary( - t('settings', 'An error occurred. Please upload an ASCII-encoded PEM certificate.')); - return; - } - var issueDate = new Date(data.validFrom * 1000); - var expireDate = new Date(data.validTill * 1000); - var now = new Date(); - var isExpired = !(issueDate <= now && now <= expireDate); - - var row = $('<tr/>'); - row.data('name', data.name); - row.addClass(isExpired ? 'expired' : 'valid'); - row.append($('<td/>').attr('title', data.organization).text(data.commonName)); - row.append($('<td/>').attr('title', t('core,', 'Valid until {date}', {date: data.validTillString})) - .text(data.validTillString)); - row.append($('<td/>').attr('title', data.issuerOrganization).text(data.issuer)); - row.append($('<td/>').addClass('remove').append( - $('<img/>').attr({ - alt: t('core', 'Delete'), - title: t('core', 'Delete'), - src: OC.imagePath('core', 'actions/delete.svg') - }).addClass('action') - )); - - $('#sslCertificate tbody').append(row); - $('#sslCertificate').show(); - }, - fail: function () { - OC.Notification.showTemporary( - t('settings', 'An error occurred. Please upload an ASCII-encoded PEM certificate.')); - } - }); - - if ($('#sslCertificate > tbody > tr').length === 0) { - $('#sslCertificate').hide(); - } -}); diff --git a/settings/js/log.js b/settings/js/log.js deleted file mode 100644 index 43ef561f7ee..00000000000 --- a/settings/js/log.js +++ /dev/null @@ -1,80 +0,0 @@ -/** - * Copyright (c) 2012, Robin Appelman <icewind1991@gmail.com> - * Copyright (c) 2013, Morris Jobke <morris.jobke@gmail.com> - * This file is licensed under the Affero General Public License version 3 or later. - * See the COPYING-README file. - */ - -/* global formatDate */ - -OC.Log = { - reload: function (count) { - if (!count) { - count = OC.Log.loaded; - } - OC.Log.loaded = 0; - $('#log tbody').empty(); - OC.Log.getMore(count); - }, - levels: ['Debug', 'Info', 'Warning', 'Error', 'Fatal'], - loaded: 3,//are initially loaded - getMore: function (count) { - count = count || 10; - $.get(OC.generateUrl('/settings/admin/log/entries'), {offset: OC.Log.loaded, count: count}, function (result) { - OC.Log.addEntries(result.data); - if (!result.remain) { - $('#moreLog').hide(); - } - $('#lessLog').show(); - }); - }, - showLess: function (count) { - count = count || 10; - //calculate remaining items - at least 3 - OC.Log.loaded = Math.max(3, OC.Log.loaded - count); - $('#moreLog').show(); - // remove all non-remaining items - $('#log tr').slice(OC.Log.loaded).remove(); - if (OC.Log.loaded <= 3) { - $('#lessLog').hide(); - } - }, - addEntries: function (entries) { - for (var i = 0; i < entries.length; i++) { - var entry = entries[i]; - var row = $('<tr/>'); - var levelTd = $('<td/>'); - levelTd.text(OC.Log.levels[entry.level]); - row.append(levelTd); - - var appTd = $('<td/>'); - appTd.text(entry.app); - row.append(appTd); - - var messageTd = $('<td/>'); - messageTd.addClass('log-message'); - messageTd.text(entry.message); - row.append(messageTd); - - var timeTd = $('<td/>'); - timeTd.addClass('date'); - if (isNaN(entry.time)) { - timeTd.text(entry.time); - } else { - timeTd.text(formatDate(entry.time * 1000)); - } - row.append(timeTd); - $('#log').append(row); - } - OC.Log.loaded += entries.length; - } -}; - -$(document).ready(function () { - $('#moreLog').click(function () { - OC.Log.getMore(); - }); - $('#lessLog').click(function () { - OC.Log.showLess(); - }); -}); diff --git a/settings/js/personal.js b/settings/js/personal.js deleted file mode 100644 index bd13b7fd251..00000000000 --- a/settings/js/personal.js +++ /dev/null @@ -1,383 +0,0 @@ -/** - * Copyright (c) 2011, Robin Appelman <icewind1991@gmail.com> - * 2013, Morris Jobke <morris.jobke@gmail.com> - * This file is licensed under the Affero General Public License version 3 or later. - * See the COPYING-README file. - */ - -/** - * The callback will be fired as soon as enter is pressed by the - * user or 1 second after the last data entry - * - * @param callback - * @param allowEmptyValue if this is set to true the callback is also called when the value is empty - */ -jQuery.fn.keyUpDelayedOrEnter = function (callback, allowEmptyValue) { - var cb = callback; - var that = this; - this.keyup(_.debounce(function (event) { - // enter is already handled in keypress - if (event.keyCode === 13) { - return; - } - if (allowEmptyValue || that.val() !== '') { - cb(); - } - }, 1000)); - - this.keypress(function (event) { - if (event.keyCode === 13 && (allowEmptyValue || that.val() !== '')) { - event.preventDefault(); - cb(); - } - }); - - this.bind('paste', null, function (e) { - if(!e.keyCode){ - if (allowEmptyValue || that.val() !== '') { - cb(); - } - } - }); -}; - - -/** - * Post the email address change to the server. - */ -function changeEmailAddress () { - var emailInfo = $('#email'); - if (emailInfo.val() === emailInfo.defaultValue) { - return; - } - emailInfo.defaultValue = emailInfo.val(); - OC.msg.startSaving('#lostpassword .msg'); - var post = $("#lostpassword").serializeArray(); - $.ajax({ - type: 'PUT', - url: OC.generateUrl('/settings/users/{id}/mailAddress', {id: OC.currentUser}), - data: { - mailAddress: post[0].value - } - }).done(function(result){ - // I know the following 4 lines look weird, but that is how it works - // in jQuery - for success the first parameter is the result - // for failure the first parameter is the result object - OC.msg.finishedSaving('#lostpassword .msg', result); - }).fail(function(result){ - OC.msg.finishedSaving('#lostpassword .msg', result.responseJSON); - }); -} - -/** - * Post the display name change to the server. - */ -function changeDisplayName () { - if ($('#displayName').val() !== '') { - OC.msg.startSaving('#displaynameform .msg'); - // Serialize the data - var post = $("#displaynameform").serialize(); - // Ajax foo - $.post(OC.generateUrl('/settings/users/{id}/displayName', {id: OC.currentUser}), post, function (data) { - if (data.status === "success") { - $('#oldDisplayName').val($('#displayName').val()); - // update displayName on the top right expand button - $('#expandDisplayName').text($('#displayName').val()); - // update avatar if avatar is available - if(!$('#removeavatar').hasClass('hidden')) { - updateAvatar(); - } - } - else { - $('#newdisplayname').val(data.data.displayName); - } - OC.msg.finishedSaving('#displaynameform .msg', data); - }); - } -} - -function updateAvatar (hidedefault) { - var $headerdiv = $('#header .avatardiv'); - var $displaydiv = $('#displayavatar .avatardiv'); - - if (hidedefault) { - $headerdiv.hide(); - $('#header .avatardiv').removeClass('avatardiv-shown'); - } else { - $headerdiv.css({'background-color': ''}); - $headerdiv.avatar(OC.currentUser, 32, true); - $('#header .avatardiv').addClass('avatardiv-shown'); - } - $displaydiv.css({'background-color': ''}); - $displaydiv.avatar(OC.currentUser, 145, true); - - $('#removeavatar').removeClass('hidden').addClass('inlineblock'); -} - -function showAvatarCropper () { - var $cropper = $('#cropper'); - $cropper.prepend("<img>"); - var $cropperImage = $('#cropper img'); - - $cropperImage.attr('src', - OC.generateUrl('/avatar/tmp') + '?requesttoken=' + encodeURIComponent(oc_requesttoken) + '#' + Math.floor(Math.random() * 1000)); - - // Looks weird, but on('load', ...) doesn't work in IE8 - $cropperImage.ready(function () { - $('#displayavatar').hide(); - $cropper.show(); - - $cropperImage.Jcrop({ - onChange: saveCoords, - onSelect: saveCoords, - aspectRatio: 1, - boxHeight: 500, - boxWidth: 500, - setSelect: [0, 0, 300, 300] - }); - }); -} - -function sendCropData () { - cleanCropper(); - - var cropperData = $('#cropper').data(); - var data = { - x: cropperData.x, - y: cropperData.y, - w: cropperData.w, - h: cropperData.h - }; - $.post(OC.generateUrl('/avatar/cropped'), {crop: data}, avatarResponseHandler); -} - -function saveCoords (c) { - $('#cropper').data(c); -} - -function cleanCropper () { - var $cropper = $('#cropper'); - $('#displayavatar').show(); - $cropper.hide(); - $('.jcrop-holder').remove(); - $('#cropper img').removeData('Jcrop').removeAttr('style').removeAttr('src'); - $('#cropper img').remove(); -} - -function avatarResponseHandler (data) { - if (typeof data === 'string') { - data = $.parseJSON(data); - } - var $warning = $('#avatar .warning'); - $warning.hide(); - if (data.status === "success") { - updateAvatar(); - } else if (data.data === "notsquare") { - showAvatarCropper(); - } else { - $warning.show(); - $warning.text(data.data.message); - } -} - -$(document).ready(function () { - if($('#pass2').length) { - $('#pass2').showPassword().keyup(); - } - $("#passwordbutton").click(function () { - var isIE8or9 = $('html').hasClass('lte9'); - // FIXME - TODO - once support for IE8 and IE9 is dropped - // for IE8 and IE9 this will check additionally if the typed in password - // is different from the placeholder, because in IE8/9 the placeholder - // is simply set as the value to look like a placeholder - if ($('#pass1').val() !== '' && $('#pass2').val() !== '' - && !(isIE8or9 && $('#pass2').val() === $('#pass2').attr('placeholder'))) { - // Serialize the data - var post = $("#passwordform").serialize(); - $('#passwordchanged').hide(); - $('#passworderror').hide(); - // Ajax foo - $.post(OC.generateUrl('/settings/personal/changepassword'), post, function (data) { - if (data.status === "success") { - $('#pass1').val(''); - $('#pass2').val('').change(); - // Hide a possible errormsg and show successmsg - $('#password-changed').removeClass('hidden').addClass('inlineblock'); - $('#password-error').removeClass('inlineblock').addClass('hidden'); - } else { - if (typeof(data.data) !== "undefined") { - $('#password-error').text(data.data.message); - } else { - $('#password-error').text(t('Unable to change password')); - } - // Hide a possible successmsg and show errormsg - $('#password-changed').removeClass('inlineblock').addClass('hidden'); - $('#password-error').removeClass('hidden').addClass('inlineblock'); - } - }); - return false; - } else { - // Hide a possible successmsg and show errormsg - $('#password-changed').removeClass('inlineblock').addClass('hidden'); - $('#password-error').removeClass('hidden').addClass('inlineblock'); - return false; - } - - }); - - $('#displayName').keyUpDelayedOrEnter(changeDisplayName); - $('#email').keyUpDelayedOrEnter(changeEmailAddress, true); - - $("#languageinput").change(function () { - // Serialize the data - var post = $("#languageinput").serialize(); - // Ajax foo - $.post('ajax/setlanguage.php', post, function (data) { - if (data.status === "success") { - location.reload(); - } - else { - $('#passworderror').text(data.data.message); - } - }); - return false; - }); - - var uploadparms = { - pasteZone: null, - done: function (e, data) { - var response = data; - if (typeof data.result === 'string') { - response = $.parseJSON(data.result); - } else if (data.result && data.result.length) { - // fetch response from iframe - response = $.parseJSON(data.result[0].body.innerText); - } else { - response = data.result; - } - avatarResponseHandler(response); - }, - submit: function(e, data) { - data.formData = _.extend(data.formData || {}, { - requesttoken: OC.requestToken - }); - }, - fail: function (e, data){ - var msg = data.jqXHR.statusText + ' (' + data.jqXHR.status + ')'; - if (!_.isUndefined(data.jqXHR.responseJSON) && - !_.isUndefined(data.jqXHR.responseJSON.data) && - !_.isUndefined(data.jqXHR.responseJSON.data.message) - ) { - msg = data.jqXHR.responseJSON.data.message; - } - avatarResponseHandler({ - data: { - message: t('settings', 'An error occurred: {message}', { message: msg }) - } - }); - } - }; - - $('#uploadavatar').fileupload(uploadparms); - - $('#selectavatar').click(function () { - OC.dialogs.filepicker( - t('settings', "Select a profile picture"), - function (path) { - $.ajax({ - type: "POST", - url: OC.generateUrl('/avatar/'), - data: { path: path } - }).done(avatarResponseHandler) - .fail(function(jqXHR, status){ - var msg = jqXHR.statusText + ' (' + jqXHR.status + ')'; - if (!_.isUndefined(jqXHR.responseJSON) && - !_.isUndefined(jqXHR.responseJSON.data) && - !_.isUndefined(jqXHR.responseJSON.data.message) - ) { - msg = jqXHR.responseJSON.data.message; - } - avatarResponseHandler({ - data: { - message: t('settings', 'An error occurred: {message}', { message: msg }) - } - }); - }); - }, - false, - ["image/png", "image/jpeg"] - ); - }); - - $('#removeavatar').click(function () { - $.ajax({ - type: 'DELETE', - url: OC.generateUrl('/avatar/'), - success: function () { - updateAvatar(true); - $('#removeavatar').addClass('hidden').removeClass('inlineblock'); - } - }); - }); - - $('#abortcropperbutton').click(function () { - cleanCropper(); - }); - - $('#sendcropperbutton').click(function () { - sendCropData(); - }); - - $('#pass2').strengthify({ - zxcvbn: OC.linkTo('core','vendor/zxcvbn/zxcvbn.js'), - titles: [ - t('core', 'Very weak password'), - t('core', 'Weak password'), - t('core', 'So-so password'), - t('core', 'Good password'), - t('core', 'Strong password') - ] - }); - - // does the user have a custom avatar? if he does show #removeavatar - $.get(OC.generateUrl( - '/avatar/{user}/{size}', - {user: OC.currentUser, size: 1} - ), function (result) { - if (typeof(result) === 'string') { - // Show the delete button when the avatar is custom - $('#removeavatar').removeClass('hidden').addClass('inlineblock'); - } - }); - - // Load the big avatar - if (oc_config.enable_avatars) { - $('#avatar .avatardiv').avatar(OC.currentUser, 145); - } -}); - -if (!OC.Encryption) { - OC.Encryption = {}; -} - -OC.Encryption.msg = { - start: function (selector, msg) { - var spinner = '<img src="' + OC.imagePath('core', 'loading-small.gif') + '">'; - $(selector) - .html(msg + ' ' + spinner) - .removeClass('success') - .removeClass('error') - .stop(true, true) - .show(); - }, - finished: function (selector, data) { - if (data.status === "success") { - $(selector).html(data.data.message) - .addClass('success') - .stop(true, true) - .delay(3000); - } else { - $(selector).html(data.data.message).addClass('error'); - } - } -}; diff --git a/settings/js/settings.js b/settings/js/settings.js deleted file mode 100644 index fcbe328b76f..00000000000 --- a/settings/js/settings.js +++ /dev/null @@ -1,94 +0,0 @@ -/** - * Copyright (c) 2014, Vincent Petry <pvince81@owncloud.com> - * This file is licensed under the Affero General Public License version 3 or later. - * See the COPYING-README file. - */ -OC.Settings = OC.Settings || {}; -OC.Settings = _.extend(OC.Settings, { - - _cachedGroups: null, - - /** - * Setup selection box for group selection. - * - * Values need to be separated by a pipe "|" character. - * (mostly because a comma is more likely to be used - * for groups) - * - * @param $elements jQuery element (hidden input) to setup select2 on - * @param [extraOptions] extra options hash to pass to select2 - */ - setupGroupsSelect: function($elements, extraOptions) { - var self = this; - if ($elements.length > 0) { - // note: settings are saved through a "change" event registered - // on all input fields - $elements.select2(_.extend({ - placeholder: t('core', 'Groups'), - allowClear: true, - multiple: true, - separator: '|', - query: _.debounce(function(query) { - var queryData = {}; - if (self._cachedGroups && query.term === '') { - query.callback({results: self._cachedGroups}); - return; - } - if (query.term !== '') { - queryData = { - pattern: query.term, - filterGroups: 1 - }; - } - $.ajax({ - url: OC.generateUrl('/settings/users/groups'), - data: queryData, - dataType: 'json', - success: function(data) { - var results = []; - - // add groups - $.each(data.data.adminGroups, function(i, group) { - results.push({id:group.id, displayname:group.name}); - }); - $.each(data.data.groups, function(i, group) { - results.push({id:group.id, displayname:group.name}); - }); - - if (query.term === '') { - // cache full list - self._cachedGroups = results; - } - query.callback({results: results}); - } - }); - }, 100, true), - id: function(element) { - return element.id; - }, - initSelection: function(element, callback) { - var selection = - _.map(($(element).val() || []).split('|').sort(), - function(groupName) { - return { - id: groupName, - displayname: groupName - }; - }); - callback(selection); - }, - formatResult: function (element) { - return escapeHTML(element.displayname); - }, - formatSelection: function (element) { - return escapeHTML(element.displayname); - }, - escapeMarkup: function(m) { - // prevent double markup escape - return m; - } - }, extraOptions || {})); - } - } -}); - diff --git a/settings/js/users/deleteHandler.js b/settings/js/users/deleteHandler.js deleted file mode 100644 index b684aff1889..00000000000 --- a/settings/js/users/deleteHandler.js +++ /dev/null @@ -1,210 +0,0 @@ -/** - * Copyright (c) 2014, Arthur Schiwon <blizzz@owncloud.com> - * This file is licensed under the Affero General Public License version 3 or later. - * See the COPYING-README file. - */ - -/** - * takes care of deleting things represented by an ID - * - * @class - * @param {string} endpoint the corresponding ajax PHP script. Currently limited - * to settings - ajax path. - * @param {string} paramID the by the script expected parameter name holding the - * ID of the object to delete - * @param {markCallback} markCallback function to be called after successfully - * marking the object for deletion. - * @param {removeCallback} removeCallback the function to be called after - * successful delete. - */ -function DeleteHandler(endpoint, paramID, markCallback, removeCallback) { - this.oidToDelete = false; - this.canceled = false; - - this.ajaxEndpoint = endpoint; - this.ajaxParamID = paramID; - - this.markCallback = markCallback; - this.removeCallback = removeCallback; - this.undoCallback = false; - - this.notifier = false; - this.notificationDataID = false; - this.notificationMessage = false; - this.notificationPlaceholder = '%oid'; -} - -/** - * Number of milliseconds after which the operation is performed. - */ -DeleteHandler.TIMEOUT_MS = 7000; - -/** - * Timer after which the action will be performed anyway. - */ -DeleteHandler.prototype._timeout = null; - -/** - * The function to be called after successfully marking the object for deletion - * @callback markCallback - * @param {string} oid the ID of the specific user or group - */ - -/** - * The function to be called after successful delete. The id of the object will - * be passed as argument. Unsuccessful operations will display an error using - * OC.dialogs, no callback is fired. - * @callback removeCallback - * @param {string} oid the ID of the specific user or group - */ - -/** - * This callback is fired after "undo" was clicked so the consumer can update - * the web interface - * @callback undoCallback - * @param {string} oid the ID of the specific user or group - */ - -/** - * enabled the notification system. Required for undo UI. - * - * @param {object} notifier Usually OC.Notification - * @param {string} dataID an identifier for the notifier, e.g. 'deleteuser' - * @param {string} message the message that should be shown upon delete. %oid - * will be replaced with the affected id of the item to be deleted - * @param {undoCallback} undoCallback called after "undo" was clicked - */ -DeleteHandler.prototype.setNotification = function(notifier, dataID, message, undoCallback) { - this.notifier = notifier; - this.notificationDataID = dataID; - this.notificationMessage = message; - this.undoCallback = undoCallback; - - var dh = this; - - $('#notification') - .off('click.deleteHandler_' + dataID) - .on('click.deleteHandler_' + dataID, '.undo', function () { - if ($('#notification').data(dh.notificationDataID)) { - var oid = dh.oidToDelete; - dh.cancel(); - if(typeof dh.undoCallback !== 'undefined') { - dh.undoCallback(oid); - } - } - dh.notifier.hide(); - }); -}; - -/** - * shows the Undo Notification (if configured) - */ -DeleteHandler.prototype.showNotification = function() { - if(this.notifier !== false) { - if(!this.notifier.isHidden()) { - this.hideNotification(); - } - $('#notification').data(this.notificationDataID, true); - var msg = this.notificationMessage.replace( - this.notificationPlaceholder, escapeHTML(this.oidToDelete)); - this.notifier.showHtml(msg); - } -}; - -/** - * hides the Undo Notification - */ -DeleteHandler.prototype.hideNotification = function() { - if(this.notifier !== false) { - $('#notification').removeData(this.notificationDataID); - this.notifier.hide(); - } -}; - -/** - * initializes the delete operation for a given object id - * - * @param {string} oid the object id - */ -DeleteHandler.prototype.mark = function(oid) { - if(this.oidToDelete !== false) { - // passing true to avoid hiding the notification - // twice and causing the second notification - // to disappear immediately - this.deleteEntry(true); - } - this.oidToDelete = oid; - this.canceled = false; - this.markCallback(oid); - this.showNotification(); - if (this._timeout) { - clearTimeout(this._timeout); - this._timeout = null; - } - if (DeleteHandler.TIMEOUT_MS > 0) { - this._timeout = window.setTimeout( - _.bind(this.deleteEntry, this), - DeleteHandler.TIMEOUT_MS - ); - } -}; - -/** - * cancels a delete operation - */ -DeleteHandler.prototype.cancel = function() { - if (this._timeout) { - clearTimeout(this._timeout); - this._timeout = null; - } - - this.canceled = true; - this.oidToDelete = false; -}; - -/** - * executes a delete operation. Requires that the operation has been - * initialized by mark(). On error, it will show a message via - * OC.dialogs.alert. On success, a callback is fired so that the client can - * update the web interface accordingly. - * - * @param {boolean} [keepNotification] true to keep the notification, false to hide - * it, defaults to false - */ -DeleteHandler.prototype.deleteEntry = function(keepNotification) { - var deferred = $.Deferred(); - if(this.canceled || this.oidToDelete === false) { - return deferred.resolve().promise(); - } - - var dh = this; - if(!keepNotification && $('#notification').data(this.notificationDataID) === true) { - dh.hideNotification(); - } - - if (this._timeout) { - clearTimeout(this._timeout); - this._timeout = null; - } - - var payload = {}; - payload[dh.ajaxParamID] = dh.oidToDelete; - return $.ajax({ - type: 'DELETE', - url: OC.generateUrl(dh.ajaxEndpoint+'/'+this.oidToDelete), - // FIXME: do not use synchronous ajax calls as they block the browser ! - async: false, - success: function (result) { - // Remove undo option, & remove user from table - - //TODO: following line - dh.removeCallback(dh.oidToDelete); - dh.canceled = true; - }, - error: function (jqXHR) { - OC.dialogs.alert(jqXHR.responseJSON.data.message, t('settings', 'Unable to delete {objName}', {objName: dh.oidToDelete})); - dh.undoCallback(dh.oidToDelete); - - } - }); -}; diff --git a/settings/js/users/filter.js b/settings/js/users/filter.js deleted file mode 100644 index 339d6ad5ec7..00000000000 --- a/settings/js/users/filter.js +++ /dev/null @@ -1,78 +0,0 @@ -/** - * Copyright (c) 2014, Arthur Schiwon <blizzz@owncloud.com> - * This file is licensed under the Affero General Public License version 3 or later. - * See the COPYING-README file. - */ - -/** - * @brief this object takes care of the filter functionality on the user - * management page - * @param {UserList} userList the UserList object - * @param {GroupList} groupList the GroupList object - */ -function UserManagementFilter (userList, groupList) { - this.userList = userList; - this.groupList = groupList; - this.oldFilter = ''; - - this.init(); -} - -/** - * @brief sets up when the filter action shall be triggered - */ -UserManagementFilter.prototype.init = function () { - OC.Plugins.register('OCA.Search', this); -}; - -/** - * @brief the filter action needs to be done, here the accurate steps are being - * taken care of - */ -UserManagementFilter.prototype.run = _.debounce(function (filter) { - if (filter === this.oldFilter) { - return; - } - this.oldFilter = filter; - this.userList.filter = filter; - this.userList.empty(); - this.userList.update(GroupList.getCurrentGID()); - if (this.groupList.filterGroups) { - // user counts are being updated nevertheless - this.groupList.empty(); - } - this.groupList.update(); - }, - 300 -); - -/** - * @brief returns the filter String - * @returns string - */ -UserManagementFilter.prototype.getPattern = function () { - 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; -}; - -/** - * @brief adds reset functionality to an HTML element - * @param jQuery the jQuery representation of that element - */ -UserManagementFilter.prototype.addResetButton = function (button) { - var umf = this; - button.click(function () { - umf.filterInput.val(''); - umf.run(); - }); -}; - -UserManagementFilter.prototype.attach = function (search) { - search.setFilter('settings', this.run.bind(this)); -}; diff --git a/settings/js/users/groups.js b/settings/js/users/groups.js deleted file mode 100644 index 27c41884504..00000000000 --- a/settings/js/users/groups.js +++ /dev/null @@ -1,359 +0,0 @@ -/** - * Copyright (c) 2014, Raghu Nayyar <beingminimal@gmail.com> - * Copyright (c) 2014, Arthur Schiwon <blizzz@owncloud.com> - * This file is licensed under the Affero General Public License version 3 or later. - * See the COPYING-README file. - */ - -var $userGroupList, - $sortGroupBy; - -var GroupList; -GroupList = { - activeGID: '', - everyoneGID: '_everyone', - filter: '', - filterGroups: false, - - addGroup: function (gid, usercount) { - var $li = $userGroupList.find('.isgroup:last-child').clone(); - $li - .data('gid', gid) - .find('.groupname').text(gid); - GroupList.setUserCount($li, usercount); - - $li.appendTo($userGroupList); - - GroupList.sortGroups(); - - return $li; - }, - - setUserCount: function (groupLiElement, usercount) { - if ($sortGroupBy !== 1) { - // If we don't sort by group count we dont display them either - return; - } - - var $groupLiElement = $(groupLiElement); - if (usercount === undefined || usercount === 0 || usercount < 0) { - usercount = ''; - $groupLiElement.data('usercount', 0); - } else { - $groupLiElement.data('usercount', usercount); - } - $groupLiElement.find('.usercount').text(usercount); - }, - - getUserCount: function ($groupLiElement) { - return parseInt($groupLiElement.data('usercount'), 10); - }, - - modGroupCount: function(gid, diff) { - var $li = GroupList.getGroupLI(gid); - var count = GroupList.getUserCount($li) + diff; - GroupList.setUserCount($li, count); - }, - - incEveryoneCount: function() { - GroupList.modGroupCount(GroupList.everyoneGID, 1); - }, - - decEveryoneCount: function() { - GroupList.modGroupCount(GroupList.everyoneGID, -1); - }, - - incGroupCount: function(gid) { - GroupList.modGroupCount(gid, 1); - }, - - decGroupCount: function(gid) { - GroupList.modGroupCount(gid, -1); - }, - - getCurrentGID: function () { - return GroupList.activeGID; - }, - - sortGroups: function () { - var lis = $userGroupList.find('.isgroup').get(); - - lis.sort(function (a, b) { - // "Everyone" always at the top - if ($(a).data('gid') === '_everyone') { - return -1; - } else if ($(b).data('gid') === '_everyone') { - return 1; - } - - // "admin" always as second - if ($(a).data('gid') === 'admin') { - return -1; - } else if ($(b).data('gid') === 'admin') { - return 1; - } - - if ($sortGroupBy === 1) { - // Sort by user count first - var $usersGroupA = $(a).data('usercount'), - $usersGroupB = $(b).data('usercount'); - if ($usersGroupA > 0 && $usersGroupA > $usersGroupB) { - return -1; - } - if ($usersGroupB > 0 && $usersGroupB > $usersGroupA) { - return 1; - } - } - - // Fallback or sort by group name - return UserList.alphanum( - $(a).find('a span').text(), - $(b).find('a span').text() - ); - }); - - var items = []; - $.each(lis, function (index, li) { - items.push(li); - if (items.length === 100) { - $userGroupList.append(items); - items = []; - } - }); - if (items.length > 0) { - $userGroupList.append(items); - } - }, - - createGroup: function (groupname) { - $.post( - OC.generateUrl('/settings/users/groups'), - { - id: groupname - }, - function (result) { - 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)); - } - GroupList.toggleAddGroup(); - }).fail(function(result) { - OC.Notification.showTemporary(t('settings', 'Error creating group: {message}', {message: result.responseJSON.message})); - }); - }, - - update: function () { - if (GroupList.updating) { - return; - } - GroupList.updating = true; - $.get( - OC.generateUrl('/settings/users/groups'), - { - pattern: this.filter, - filterGroups: this.filterGroups ? 1 : 0, - sortGroups: $sortGroupBy - }, - function (result) { - - var lis = []; - if (result.status === 'success') { - $.each(result.data, function (i, subset) { - $.each(subset, function (index, group) { - if (GroupList.getGroupLI(group.name).length > 0) { - GroupList.setUserCount(GroupList.getGroupLI(group.name).first(), group.usercount); - } - else { - var $li = GroupList.addGroup(group.name, group.usercount); - - $li.addClass('appear transparent'); - lis.push($li); - } - }); - }); - if (result.data.length > 0) { - GroupList.doSort(); - } - else { - GroupList.noMoreEntries = true; - } - _.defer(function () { - $(lis).each(function () { - this.removeClass('transparent'); - }); - }); - } - GroupList.updating = false; - - } - ); - }, - - elementBelongsToAddGroup: function (el) { - return !(el !== $('#newgroup-form').get(0) && - $('#newgroup-form').find($(el)).length === 0); - }, - - hasAddGroupNameText: function () { - var name = $('#newgroupname').val(); - return $.trim(name) !== ''; - - }, - - showGroup: function (gid) { - GroupList.activeGID = gid; - UserList.empty(); - UserList.update(gid); - $userGroupList.find('li').removeClass('active'); - if (gid !== undefined) { - //TODO: treat Everyone properly - GroupList.getGroupLI(gid).addClass('active'); - } - }, - - isAddGroupButtonVisible: function () { - return $('#newgroup-init').is(":visible"); - }, - - toggleAddGroup: function (event) { - if (GroupList.isAddGroupButtonVisible()) { - event.stopPropagation(); - $('#newgroup-form').show(); - $('#newgroup-init').hide(); - $('#newgroupname').focus(); - GroupList.handleAddGroupInput(''); - } - else { - $('#newgroup-form').hide(); - $('#newgroup-init').show(); - $('#newgroupname').val(''); - } - }, - - handleAddGroupInput: function (input) { - if(input.length) { - $('#newgroup-form input[type="submit"]').attr('disabled', null); - } else { - $('#newgroup-form input[type="submit"]').attr('disabled', 'disabled'); - } - }, - - isGroupNameValid: function (groupname) { - if ($.trim(groupname) === '') { - OC.Notification.showTemporary(t('settings', 'Error creating group: {message}', { - message: t('settings', 'A valid group name must be provided') - })); - return false; - } - return true; - }, - - hide: function (gid) { - GroupList.getGroupLI(gid).hide(); - }, - show: function (gid) { - GroupList.getGroupLI(gid).show(); - }, - remove: function (gid) { - GroupList.getGroupLI(gid).remove(); - }, - empty: function () { - $userGroupList.find('.isgroup').filter(function(index, item){ - return $(item).data('gid') !== ''; - }).remove(); - }, - initDeleteHandling: function () { - //set up handler - GroupDeleteHandler = new DeleteHandler('/settings/users/groups', 'groupname', - GroupList.hide, GroupList.remove); - - //configure undo - OC.Notification.hide(); - var msg = escapeHTML(t('settings', 'deleted {groupName}', {groupName: '%oid'})) + '<span class="undo">' + - escapeHTML(t('settings', 'undo')) + '</span>'; - GroupDeleteHandler.setNotification(OC.Notification, 'deletegroup', msg, - GroupList.show); - - //when to mark user for delete - $userGroupList.on('click', '.delete', function () { - // Call function for handling delete/undo - GroupDeleteHandler.mark(GroupList.getElementGID(this)); - }); - - //delete a marked user when leaving the page - $(window).on('beforeunload', function () { - GroupDeleteHandler.deleteEntry(); - }); - }, - - getGroupLI: function (gid) { - return $userGroupList.find('li.isgroup').filter(function () { - return GroupList.getElementGID(this) === gid; - }); - }, - - getElementGID: function (element) { - return ($(element).closest('li').data('gid') || '').toString(); - }, - getEveryoneCount: function () { - $.ajax({ - type: "GET", - dataType: "json", - url: OC.generateUrl('/settings/users/stats') - }).success(function (data) { - $('#everyonegroup').data('usercount', data.totalUsers); - $('#everyonecount').text(data.totalUsers); - }); - } -}; - -$(document).ready( function () { - $userGroupList = $('#usergrouplist'); - GroupList.initDeleteHandling(); - $sortGroupBy = $userGroupList.data('sort-groups'); - if ($sortGroupBy === 1) { - // Disabled due to performance issues, when we don't need it for sorting - GroupList.getEveryoneCount(); - } - - // Display or hide of Create Group List Element - $('#newgroup-form').hide(); - $('#newgroup-init').on('click', function (e) { - GroupList.toggleAddGroup(e); - }); - - $(document).on('click keydown keyup', function(event) { - if(!GroupList.isAddGroupButtonVisible() && - !GroupList.elementBelongsToAddGroup(event.target) && - !GroupList.hasAddGroupNameText()) { - GroupList.toggleAddGroup(); - } - // Escape - if(!GroupList.isAddGroupButtonVisible() && event.keyCode && event.keyCode === 27) { - GroupList.toggleAddGroup(); - } - }); - - - // Responsible for Creating Groups. - $('#newgroup-form form').submit(function (event) { - event.preventDefault(); - if(GroupList.isGroupNameValid($('#newgroupname').val())) { - GroupList.createGroup($('#newgroupname').val()); - } - }); - - // click on group name - $userGroupList.on('click', '.isgroup', function () { - GroupList.showGroup(GroupList.getElementGID(this)); - }); - - $('#newgroupname').on('input', function(){ - GroupList.handleAddGroupInput(this.value); - }); -}); diff --git a/settings/js/users/users.js b/settings/js/users/users.js deleted file mode 100644 index 9706ac9fbcd..00000000000 --- a/settings/js/users/users.js +++ /dev/null @@ -1,943 +0,0 @@ -/** - * Copyright (c) 2014, Arthur Schiwon <blizzz@owncloud.com> - * Copyright (c) 2014, Raghu Nayyar <beingminimal@gmail.com> - * Copyright (c) 2011, Robin Appelman <icewind1991@gmail.com> - * This file is licensed under the Affero General Public License version 3 or later. - * See the COPYING-README file. - */ - -var $userList; -var $userListBody; - -var UserDeleteHandler; -var UserList = { - availableGroups: [], - offset: 0, - usersToLoad: 10, //So many users will be loaded when user scrolls down - initialUsersToLoad: 250, //initial number of users to load - currentGid: '', - filter: '', - - /** - * Initializes the user list - * @param $el user list table element - */ - initialize: function($el) { - this.$el = $el; - - // initially the list might already contain user entries (not fully ajaxified yet) - // initialize these entries - this.$el.find('.quota-user').singleSelect().on('change', this.onQuotaSelect); - }, - - /** - * Add a user row from user object - * - * @param user object containing following keys: - * { - * 'name': 'username', - * 'displayname': 'Users display name', - * 'groups': ['group1', 'group2'], - * 'subadmin': ['group4', 'group5'], - * 'quota': '10 GB', - * 'storageLocation': '/srv/www/owncloud/data/username', - * 'lastLogin': '1418632333' - * 'backend': 'LDAP', - * 'email': 'username@example.org' - * 'isRestoreDisabled':false - * } - * @param sort - * @returns table row created for this user - */ - add: function (user, sort) { - if (this.currentGid && this.currentGid !== '_everyone' && _.indexOf(user.groups, this.currentGid) < 0) { - return; - } - - 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) { - if (user.isAvatarAvailable === true) { - $('div.avatardiv', $tr).avatar(user.name, 32, undefined, undefined, undefined, user.displayname); - } else { - $('div.avatardiv', $tr).imageplaceholder(user.displayname, undefined, 32); - } - } - - /** - * add username and displayname to row (in data and visible markup) - */ - $tr.data('uid', user.name); - $tr.data('displayname', user.displayname); - $tr.data('mailAddress', user.email); - $tr.data('restoreDisabled', user.isRestoreDisabled); - $tr.find('.name').text(user.name); - $tr.find('td.displayName > span').text(user.displayname); - $tr.find('td.mailAddress > span').text(user.email); - $tr.find('td.displayName > .action').tooltip({placement: 'top'}); - $tr.find('td.mailAddress > .action').tooltip({placement: 'top'}); - $tr.find('td.password > .action').tooltip({placement: 'top'}); - - /** - * 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>') - .data('username', user.name) - .data('user-groups', user.groups); - if ($tr.find('td.subadmins').length > 0) { - subAdminSelect = $('<select multiple="multiple" class="subadminsselect multiselect button" data-placehoder="subadmins" title="' + t('settings', 'no group') + '">') - .data('username', user.name) - .data('user-groups', user.groups) - .data('subadmin', user.subadmin); - $tr.find('td.subadmins').empty(); - } - $.each(this.availableGroups, function (i, group) { - groupsSelect.append($('<option value="' + escapeHTML(group) + '">' + escapeHTML(group) + '</option>')); - if (typeof subAdminSelect !== 'undefined' && group !== 'admin') { - subAdminSelect.append($('<option value="' + escapeHTML(group) + '">' + escapeHTML(group) + '</option>')); - } - }); - $tr.find('td.groups').empty().append(groupsSelect); - subAdminsEl = $tr.find('td.subadmins'); - if (subAdminsEl.length > 0) { - subAdminsEl.append(subAdminSelect); - } - - /** - * remove action - */ - if ($tr.find('td.remove img').length === 0 && OC.currentUser !== user.name) { - var deleteImage = $('<img class="svg action">').attr({ - src: OC.imagePath('core', 'actions/delete') - }); - var deleteLink = $('<a class="action delete">') - .attr({ href: '#', 'original-title': t('settings', 'Delete')}) - .append(deleteImage); - $tr.find('td.remove').append(deleteLink); - } else if (OC.currentUser === user.name) { - $tr.find('td.remove a').remove(); - } - - /** - * quota - */ - var $quotaSelect = $tr.find('.quota-user'); - if (user.quota === 'default') { - $quotaSelect - .data('previous', 'default') - .find('option').attr('selected', null) - .first().attr('selected', 'selected'); - } else { - if ($quotaSelect.find('option').filterAttr('value', user.quota).length > 0) { - $quotaSelect.find('option').filterAttr('value', user.quota).attr('selected', 'selected'); - } else { - $quotaSelect.append('<option value="' + escapeHTML(user.quota) + '" selected="selected">' + escapeHTML(user.quota) + '</option>'); - } - } - - /** - * storage location - */ - $tr.find('td.storageLocation').text(user.storageLocation); - - /** - * user backend - */ - $tr.find('td.userBackend').text(user.backend); - - /** - * last login - */ - var lastLoginRel = t('settings', 'never'); - var lastLoginAbs = lastLoginRel; - if(user.lastLogin !== 0) { - lastLoginRel = OC.Util.relativeModifiedDate(user.lastLogin); - lastLoginAbs = OC.Util.formatDate(user.lastLogin); - } - var $tdLastLogin = $tr.find('td.lastLogin'); - $tdLastLogin.text(lastLoginRel); - $tdLastLogin.attr('title', lastLoginAbs); - // setup tooltip with #app-content as container to prevent the td to resize on hover - $tdLastLogin.tooltip({placement: 'top', container: '#app-content'}); - - /** - * 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 - //add working and the layout unbroken. We need to remove this item - $tr.show(); - $userListBody.find('tr:first').remove(); - UserList.isEmpty = false; - UserList.checkUsersToLoad(); - } - - /** - * sort list - */ - if (sort) { - UserList.doSort(); - } - - $quotaSelect.on('change', UserList.onQuotaSelect); - - // defer init so the user first sees the list appear more quickly - window.setTimeout(function(){ - $quotaSelect.singleSelect(); - UserList.applyGroupSelect(groupsSelect); - if (subAdminSelect) { - UserList.applySubadminSelect(subAdminSelect); - } - }, 0); - return $tr; - }, - // From http://my.opera.com/GreyWyvern/blog/show.dml/1671288 - alphanum: function(a, b) { - function chunkify(t) { - var tz = [], x = 0, y = -1, n = 0, i, j; - - while (i = (j = t.charAt(x++)).charCodeAt(0)) { - var m = (i === 46 || (i >=48 && i <= 57)); - if (m !== n) { - tz[++y] = ""; - n = m; - } - tz[y] += j; - } - return tz; - } - - var aa = chunkify(a.toLowerCase()); - var bb = chunkify(b.toLowerCase()); - - for (var x = 0; aa[x] && bb[x]; x++) { - if (aa[x] !== bb[x]) { - var c = Number(aa[x]), d = Number(bb[x]); - if (c === aa[x] && d === bb[x]) { - return c - d; - } else { - return (aa[x] > bb[x]) ? 1 : -1; - } - } - } - return aa.length - bb.length; - }, - preSortSearchString: function(a, b) { - var pattern = this.filter; - if(typeof pattern === 'undefined') { - return undefined; - } - pattern = pattern.toLowerCase(); - var aMatches = false; - var bMatches = false; - if(typeof a === 'string' && a.toLowerCase().indexOf(pattern) === 0) { - aMatches = true; - } - if(typeof b === 'string' && b.toLowerCase().indexOf(pattern) === 0) { - bMatches = true; - } - - if((aMatches && bMatches) || (!aMatches && !bMatches)) { - return undefined; - } - - if(aMatches) { - return -1; - } else { - return 1; - } - }, - doSort: function() { - // some browsers like Chrome lose the scrolling information - // when messing with the list elements - var lastScrollTop = this.scrollArea.scrollTop(); - var lastScrollLeft = this.scrollArea.scrollLeft(); - var rows = $userListBody.find('tr').get(); - - rows.sort(function(a, b) { - // FIXME: inefficient way of getting the names, - // better use a data attribute - a = $(a).find('.name').text(); - b = $(b).find('.name').text(); - var firstSort = UserList.preSortSearchString(a, b); - if(typeof firstSort !== 'undefined') { - return firstSort; - } - return OC.Util.naturalSortCompare(a, b); - }); - - var items = []; - $.each(rows, function(index, row) { - items.push(row); - if(items.length === 100) { - $userListBody.append(items); - items = []; - } - }); - if(items.length > 0) { - $userListBody.append(items); - } - this.scrollArea.scrollTop(lastScrollTop); - this.scrollArea.scrollLeft(lastScrollLeft); - }, - checkUsersToLoad: function() { - //30 shall be loaded initially, from then on always 10 upon scrolling - if(UserList.isEmpty === false) { - UserList.usersToLoad = 10; - } else { - UserList.usersToLoad = UserList.initialUsersToLoad; - } - }, - empty: function() { - //one row needs to be kept, because it is cloned to add new rows - $userListBody.find('tr:not(:first)').remove(); - var $tr = $userListBody.find('tr:first'); - $tr.hide(); - //on an update a user may be missing when the username matches with that - //of the hidden row. So change this to a random string. - $tr.data('uid', Math.random().toString(36).substring(2)); - UserList.isEmpty = true; - UserList.offset = 0; - UserList.checkUsersToLoad(); - }, - hide: function(uid) { - UserList.getRow(uid).hide(); - }, - show: function(uid) { - UserList.getRow(uid).show(); - }, - markRemove: function(uid) { - var $tr = UserList.getRow(uid); - var groups = $tr.find('.groups .groupsselect').val(); - for(var i in groups) { - var gid = groups[i]; - var $li = GroupList.getGroupLI(gid); - var userCount = GroupList.getUserCount($li); - GroupList.setUserCount($li, userCount - 1); - } - GroupList.decEveryoneCount(); - UserList.hide(uid); - }, - remove: function(uid) { - UserList.getRow(uid).remove(); - }, - undoRemove: function(uid) { - var $tr = UserList.getRow(uid); - var groups = $tr.find('.groups .groupsselect').val(); - for(var i in groups) { - var gid = groups[i]; - var $li = GroupList.getGroupLI(gid); - var userCount = GroupList.getUserCount($li); - GroupList.setUserCount($li, userCount + 1); - } - GroupList.incEveryoneCount(); - UserList.getRow(uid).show(); - }, - has: function(uid) { - return UserList.getRow(uid).length > 0; - }, - getRow: function(uid) { - return $userListBody.find('tr').filter(function(){ - return UserList.getUID(this) === uid; - }); - }, - getUID: function(element) { - return ($(element).closest('tr').data('uid') || '').toString(); - }, - getDisplayName: function(element) { - return ($(element).closest('tr').data('displayname') || '').toString(); - }, - getMailAddress: function(element) { - return ($(element).closest('tr').data('mailAddress') || '').toString(); - }, - getRestoreDisabled: function(element) { - return ($(element).closest('tr').data('restoreDisabled') || ''); - }, - initDeleteHandling: function() { - //set up handler - UserDeleteHandler = new DeleteHandler('/settings/users/users', 'username', - UserList.markRemove, UserList.remove); - - //configure undo - OC.Notification.hide(); - var msg = escapeHTML(t('settings', 'deleted {userName}', {userName: '%oid'})) + '<span class="undo">' + - escapeHTML(t('settings', 'undo')) + '</span>'; - UserDeleteHandler.setNotification(OC.Notification, 'deleteuser', msg, - UserList.undoRemove); - - //when to mark user for delete - $userListBody.on('click', '.delete', function () { - // Call function for handling delete/undo - var uid = UserList.getUID(this); - UserDeleteHandler.mark(uid); - }); - - //delete a marked user when leaving the page - $(window).on('beforeunload', function () { - UserDeleteHandler.deleteEntry(); - }); - }, - update: function (gid, limit) { - if (UserList.updating) { - return; - } - if(!limit) { - limit = UserList.usersToLoad; - } - $userList.siblings('.loading').css('visibility', 'visible'); - UserList.updating = true; - if(gid === undefined) { - gid = ''; - } - UserList.currentGid = gid; - var pattern = this.filter; - $.get( - OC.generateUrl('/settings/users/users'), - { offset: UserList.offset, limit: limit, gid: gid, pattern: pattern }, - function (result) { - var loadedUsers = 0; - var trs = []; - //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; - } - var $tr = UserList.add(user, user.lastLogin, false, user.backend); - trs.push($tr); - loadedUsers++; - }); - if (result.length > 0) { - UserList.doSort(); - $userList.siblings('.loading').css('visibility', 'hidden'); - // reset state on load - UserList.noMoreEntries = false; - } - else { - UserList.noMoreEntries = true; - $userList.siblings('.loading').remove(); - } - UserList.offset += limit; - }).always(function() { - UserList.updating = false; - }); - }, - - applyGroupSelect: function (element) { - var checked = []; - var $element = $(element); - var user = UserList.getUID($element); - - if ($element.data('user-groups')) { - if (typeof $element.data('user-groups') === 'string') { - checked = $element.data('user-groups').split(", "); - } - else { - checked = $element.data('user-groups'); - } - } - var checkHandler = null; - if(user) { // Only if in a user row, and not the #newusergroups select - checkHandler = function (group) { - if (user === OC.currentUser && group === 'admin') { - return false; - } - if (!oc_isadmin && checked.length === 1 && checked[0] === group) { - return false; - } - $.post( - OC.filePath('settings', 'ajax', 'togglegroups.php'), - { - username: user, - group: group - }, - function (response) { - if (response.status === 'success') { - GroupList.update(); - var groupName = response.data.groupname; - if (UserList.availableGroups.indexOf(groupName) === -1 && - response.data.action === 'add' - ) { - UserList.availableGroups.push(groupName); - } - - if (response.data.action === 'add') { - GroupList.incGroupCount(groupName); - } else { - GroupList.decGroupCount(groupName); - } - } - if (response.data.message) { - OC.Notification.show(response.data.message); - } - } - ); - }; - } - var addGroup = function (select, group) { - $('select[multiple]').each(function (index, element) { - $element = $(element); - if ($element.find('option').filterAttr('value', group).length === 0 && - select.data('msid') !== $element.data('msid')) { - $element.append('<option value="' + escapeHTML(group) + '">' + escapeHTML(group) + '</option>'); - } - }); - GroupList.addGroup(escapeHTML(group)); - }; - var label; - if (oc_isadmin) { - label = t('settings', 'add group'); - } - else { - label = null; - } - $element.multiSelect({ - createCallback: addGroup, - createText: label, - selectedFirst: true, - checked: checked, - oncheck: checkHandler, - onuncheck: checkHandler, - minWidth: 100 - }); - }, - - applySubadminSelect: function (element) { - var checked = []; - var $element = $(element); - var user = UserList.getUID($element); - - if ($element.data('subadmin')) { - if (typeof $element.data('subadmin') === 'string') { - checked = $element.data('subadmin').split(", "); - } - else { - checked = $element.data('subadmin'); - } - } - var checkHandler = function (group) { - if (group === 'admin') { - return false; - } - $.post( - OC.filePath('settings', 'ajax', 'togglesubadmins.php'), - { - username: user, - group: group - }, - function () { - } - ); - }; - - var addSubAdmin = function (group) { - $('select[multiple]').each(function (index, element) { - if ($(element).find('option').filterAttr('value', group).length === 0) { - $(element).append('<option value="' + escapeHTML(group) + '">' + escapeHTML(group) + '</option>'); - } - }); - }; - $element.multiSelect({ - createCallback: addSubAdmin, - createText: null, - checked: checked, - oncheck: checkHandler, - onuncheck: checkHandler, - minWidth: 100 - }); - }, - - _onScroll: function() { - if (!!UserList.noMoreEntries) { - return; - } - if (UserList.scrollArea.scrollTop() + UserList.scrollArea.height() > UserList.scrollArea.get(0).scrollHeight - 500) { - UserList.update(UserList.currentGid); - } - }, - - /** - * Event handler for when a quota has been changed through a single select. - * This will save the value. - */ - onQuotaSelect: function(ev) { - var $select = $(ev.target); - var uid = UserList.getUID($select); - var quota = $select.val(); - UserList._updateQuota(uid, quota, function(returnedQuota){ - if (quota !== returnedQuota) { - $select.find(':selected').text(returnedQuota); - } - }); - }, - - /** - * Saves the quota for the given user - * @param {String} [uid] optional user id, sets default quota if empty - * @param {String} quota quota value - * @param {Function} ready callback after save - */ - _updateQuota: function(uid, quota, ready) { - $.post( - OC.filePath('settings', 'ajax', 'setquota.php'), - {username: uid, quota: quota}, - function (result) { - if (ready) { - ready(result.data.quota); - } - } - ); - } -}; - -$(document).ready(function () { - $userList = $('#userlist'); - $userListBody = $userList.find('tbody'); - - UserList.initDeleteHandling(); - - // Implements User Search - OCA.Search.users= new UserManagementFilter(UserList, GroupList); - - UserList.scrollArea = $('#app-content'); - - UserList.doSort(); - UserList.availableGroups = $userList.data('groups'); - - UserList.scrollArea.scroll(function(e) {UserList._onScroll(e);}); - - $userList.after($('<div class="loading" style="height: 200px; visibility: hidden;"></div>')); - - // TODO: move other init calls inside of initialize - UserList.initialize($('#userlist')); - - $('.groupsselect').each(function (index, element) { - UserList.applyGroupSelect(element); - }); - $('.subadminsselect').each(function (index, element) { - UserList.applySubadminSelect(element); - }); - - $userListBody.on('click', '.password', function (event) { - event.stopPropagation(); - - var $td = $(this).closest('td'); - var $tr = $(this).closest('tr'); - var uid = UserList.getUID($td); - var $input = $('<input type="password">'); - var isRestoreDisabled = UserList.getRestoreDisabled($td) === true; - if(isRestoreDisabled) { - $tr.addClass('row-warning'); - // add tipsy if the password change could cause data loss - no recovery enabled - $input.tipsy({gravity:'s'}); - $input.attr('title', t('settings', 'Changing the password will result in data loss, because data recovery is not available for this user')); - } - $td.find('img').hide(); - $td.children('span').replaceWith($input); - $input - .focus() - .keypress(function (event) { - if (event.keyCode === 13) { - if ($(this).val().length > 0) { - var recoveryPasswordVal = $('input:password[id="recoveryPassword"]').val(); - $.post( - OC.generateUrl('/settings/users/changepassword'), - {username: uid, password: $(this).val(), recoveryPassword: recoveryPasswordVal}, - function (result) { - if (result.status != 'success') { - OC.Notification.showTemporary(t('admin', result.data.message)); - } - } - ); - $input.blur(); - } else { - $input.blur(); - } - } - }) - .blur(function () { - $(this).replaceWith($('<span>●●●●●●●</span>')); - $td.find('img').show(); - // remove highlight class from users without recovery ability - $tr.removeClass('row-warning'); - }); - }); - $('input:password[id="recoveryPassword"]').keyup(function() { - OC.Notification.hide(); - }); - - $userListBody.on('click', '.displayName', function (event) { - event.stopPropagation(); - var $td = $(this).closest('td'); - var $tr = $td.closest('tr'); - var uid = UserList.getUID($td); - var displayName = escapeHTML(UserList.getDisplayName($td)); - var $input = $('<input type="text" value="' + displayName + '">'); - $td.find('img').hide(); - $td.children('span').replaceWith($input); - $input - .focus() - .keypress(function (event) { - if (event.keyCode === 13) { - if ($(this).val().length > 0) { - var $div = $tr.find('div.avatardiv'); - if ($div.length) { - $div.imageplaceholder(uid, displayName); - } - $.post( - OC.generateUrl('/settings/users/{id}/displayName', {id: uid}), - {username: uid, displayName: $(this).val()}, - function (result) { - if (result && result.status==='success' && $div.length){ - $div.avatar(result.data.username, 32); - } - } - ); - var displayName = $input.val(); - $tr.data('displayname', displayName); - $input.blur(); - } else { - $input.blur(); - } - } - }) - .blur(function () { - var displayName = $tr.data('displayname'); - $input.replaceWith('<span>' + escapeHTML(displayName) + '</span>'); - $td.find('img').show(); - }); - }); - - $userListBody.on('click', '.mailAddress', function (event) { - event.stopPropagation(); - var $td = $(this).closest('td'); - var $tr = $td.closest('tr'); - var uid = UserList.getUID($td); - var mailAddress = escapeHTML(UserList.getMailAddress($td)); - var $input = $('<input type="text">').val(mailAddress); - $td.children('span').replaceWith($input); - $td.find('img').hide(); - $input - .focus() - .keypress(function (event) { - if (event.keyCode === 13) { - // enter key - - var mailAddress = $input.val(); - $td.find('.loading-small').css('display', 'inline-block'); - $input.css('padding-right', '26px'); - $input.attr('disabled', 'disabled'); - $.ajax({ - type: 'PUT', - url: OC.generateUrl('/settings/users/{id}/mailAddress', {id: uid}), - data: { - mailAddress: $(this).val() - } - }).success(function () { - // set data attribute to new value - // will in blur() be used to show the text instead of the input field - $tr.data('mailAddress', mailAddress); - $td.find('.loading-small').css('display', ''); - $input.removeAttr('disabled') - .triggerHandler('blur'); // needed instead of $input.blur() for Firefox - }).fail(function (result) { - OC.Notification.showTemporary(result.responseJSON.data.message); - $td.find('.loading-small').css('display', ''); - $input.removeAttr('disabled') - .css('padding-right', '6px'); - }); - } - }) - .blur(function () { - if($td.find('.loading-small').css('display') === 'inline-block') { - // in Chrome the blur event is fired too early by the browser - even if the request is still running - return; - } - var $span = $('<span>').text($tr.data('mailAddress')); - $input.replaceWith($span); - $td.find('img').show(); - }); - }); - - // init the quota field select box after it is shown the first time - $('#app-settings').one('show', function() { - $(this).find('#default_quota').singleSelect().on('change', UserList.onQuotaSelect); - }); - - $('#newuser').submit(function (event) { - event.preventDefault(); - var username = $('#newusername').val(); - var password = $('#newuserpassword').val(); - var email = $('#newemail').val(); - if ($.trim(username) === '') { - OC.Notification.showTemporary(t('settings', 'Error creating user: {message}', { - message: t('settings', 'A valid username must be provided') - })); - return false; - } - if ($.trim(password) === '') { - OC.Notification.showTemporary(t('settings', 'Error creating user: {message}', { - message: t('settings', 'A valid password must be provided') - })); - return false; - } - if(!$('#CheckboxMailOnUserCreate').is(':checked')) { - email = ''; - } - if ($('#CheckboxMailOnUserCreate').is(':checked') && $.trim(email) === '') { - OC.Notification.showTemporary( t('settings', 'Error creating user: {message}', { - message: t('settings', 'A valid email must be provided') - })); - return false; - } - - var promise; - if (UserDeleteHandler) { - promise = UserDeleteHandler.deleteEntry(); - } else { - promise = $.Deferred().resolve().promise(); - } - - promise.then(function() { - var groups = $('#newusergroups').val() || []; - $.post( - OC.generateUrl('/settings/users/users'), - { - username: username, - password: password, - groups: groups, - email: email - }, - function (result) { - if (result.groups) { - for (var i in result.groups) { - var gid = result.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(!UserList.has(username)) { - UserList.add(result, true); - } - $('#newusername').focus(); - GroupList.incEveryoneCount(); - }).fail(function(result) { - OC.Notification.showTemporary(t('settings', 'Error creating user: {message}', { - message: result.responseJSON.message - })); - }).success(function(){ - $('#newuser').get(0).reset(); - }); - }); - }); - - if ($('#CheckboxStorageLocation').is(':checked')) { - $("#userlist .storageLocation").show(); - } - // Option to display/hide the "Storage location" column - $('#CheckboxStorageLocation').click(function() { - if ($('#CheckboxStorageLocation').is(':checked')) { - $("#userlist .storageLocation").show(); - OC.AppConfig.setValue('core', 'umgmt_show_storage_location', 'true'); - } else { - $("#userlist .storageLocation").hide(); - OC.AppConfig.setValue('core', 'umgmt_show_storage_location', 'false'); - } - }); - - if ($('#CheckboxLastLogin').is(':checked')) { - $("#userlist .lastLogin").show(); - } - // Option to display/hide the "Last Login" column - $('#CheckboxLastLogin').click(function() { - if ($('#CheckboxLastLogin').is(':checked')) { - $("#userlist .lastLogin").show(); - OC.AppConfig.setValue('core', 'umgmt_show_last_login', 'true'); - } else { - $("#userlist .lastLogin").hide(); - OC.AppConfig.setValue('core', 'umgmt_show_last_login', 'false'); - } - }); - - if ($('#CheckboxEmailAddress').is(':checked')) { - $("#userlist .mailAddress").show(); - } - // Option to display/hide the "Mail Address" column - $('#CheckboxEmailAddress').click(function() { - if ($('#CheckboxEmailAddress').is(':checked')) { - $("#userlist .mailAddress").show(); - OC.AppConfig.setValue('core', 'umgmt_show_email', 'true'); - } else { - $("#userlist .mailAddress").hide(); - OC.AppConfig.setValue('core', 'umgmt_show_email', 'false'); - } - }); - - if ($('#CheckboxUserBackend').is(':checked')) { - $("#userlist .userBackend").show(); - } - // Option to display/hide the "User Backend" column - $('#CheckboxUserBackend').click(function() { - if ($('#CheckboxUserBackend').is(':checked')) { - $("#userlist .userBackend").show(); - OC.AppConfig.setValue('core', 'umgmt_show_backend', 'true'); - } else { - $("#userlist .userBackend").hide(); - OC.AppConfig.setValue('core', 'umgmt_show_backend', 'false'); - } - }); - - if ($('#CheckboxMailOnUserCreate').is(':checked')) { - $("#newemail").show(); - } - // Option to display/hide the "E-Mail" input field - $('#CheckboxMailOnUserCreate').click(function() { - if ($('#CheckboxMailOnUserCreate').is(':checked')) { - $("#newemail").show(); - OC.AppConfig.setValue('core', 'umgmt_send_email', 'true'); - } else { - $("#newemail").hide(); - OC.AppConfig.setValue('core', 'umgmt_send_email', 'false'); - } - }); - - // calculate initial limit of users to load - var initialUserCountLimit = UserList.initialUsersToLoad, - containerHeight = $('#app-content').height(); - if(containerHeight > 40) { - initialUserCountLimit = Math.floor(containerHeight/40); - if (initialUserCountLimit < UserList.initialUsersToLoad) { - initialUserCountLimit = UserList.initialUsersToLoad; - } - } - //realign initialUserCountLimit with usersToLoad as a safeguard - while((initialUserCountLimit % UserList.usersToLoad) !== 0) { - // must be a multiple of this, otherwise LDAP freaks out. - // FIXME: solve this in LDAP backend in 8.1 - initialUserCountLimit = initialUserCountLimit + 1; - } - - // trigger loading of users on startup - UserList.update(UserList.currentGid, initialUserCountLimit); - - _.defer(function() { - $('#app-content').trigger($.Event('apprendered')); - }); - -}); diff --git a/settings/l10n/af_ZA.js b/settings/l10n/af_ZA.js deleted file mode 100644 index 509b7f2de7c..00000000000 --- a/settings/l10n/af_ZA.js +++ /dev/null @@ -1,10 +0,0 @@ -OC.L10N.register( - "settings", - { - "So-so password" : "So-so wagwoord", - "Cancel" : "Kanseleer", - "Password" : "Wagwoord", - "New password" : "Nuwe wagwoord", - "Username" : "Gebruikersnaam" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/af_ZA.json b/settings/l10n/af_ZA.json deleted file mode 100644 index 4cc552a2d96..00000000000 --- a/settings/l10n/af_ZA.json +++ /dev/null @@ -1,8 +0,0 @@ -{ "translations": { - "So-so password" : "So-so wagwoord", - "Cancel" : "Kanseleer", - "Password" : "Wagwoord", - "New password" : "Nuwe wagwoord", - "Username" : "Gebruikersnaam" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/ar.js b/settings/l10n/ar.js deleted file mode 100644 index f56a22c91ef..00000000000 --- a/settings/l10n/ar.js +++ /dev/null @@ -1,114 +0,0 @@ -OC.L10N.register( - "settings", - { - "Sharing" : "مشاركة", - "Cron" : "مجدول", - "Log" : "سجل", - "Language changed" : "تم تغيير اللغة", - "Invalid request" : "طلب غير مفهوم", - "Authentication error" : "لم يتم التأكد من الشخصية بنجاح", - "Admins can't remove themself from the admin group" : "لا يستطيع المدير إزالة حسابه من مجموعة المديرين", - "Unable to add user to group %s" : "فشل إضافة المستخدم الى المجموعة %s", - "Unable to remove user from group %s" : "فشل إزالة المستخدم من المجموعة %s", - "Couldn't update app." : "تعذر تحديث التطبيق.", - "Wrong password" : "كلمة مرور خاطئة", - "No user supplied" : "لم يتم توفير مستخدم ", - "Please provide an admin recovery password, otherwise all user data will be lost" : "يرجى توفير كلمة مرور المسؤول المستردة, وإلا سيتم فقد جميع بيانات المستخدم ", - "Wrong admin recovery password. Please check the password and try again." : "خطا في كلمة مرور المسؤول المستردة, يرجى التاكد من كلمة المرور والمحاولة مرة اخرى.", - "Unable to change password" : "لا يمكن تغيير كلمة المرور", - "Enabled" : "مفعلة", - "Saved" : "حفظ", - "test email settings" : "إعدادات البريد التجريبي", - "Email sent" : "تم ارسال البريد الالكتروني", - "Email saved" : "تم حفظ البريد الإلكتروني", - "Your full name has been changed." : "اسمك الكامل تم تغييره.", - "Unable to change full name" : "لم يتم التمكن من تغيير اسمك الكامل", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "هل أنت متأكد انك تريد إضافة \"{domain}\" كنطاق موثوق فيه.", - "Sending..." : "جاري الارسال ...", - "All" : "الكل", - "Please wait...." : "الرجاء الانتظار ...", - "Error while disabling app" : "خطا عند تعطيل البرنامج", - "Disable" : "إيقاف", - "Enable" : "تفعيل", - "Error while enabling app" : "خطا عند تفعيل البرنامج ", - "Updating...." : "جاري التحديث ...", - "Error while updating app" : "حصل خطأ أثناء تحديث التطبيق", - "Updated" : "تم التحديث بنجاح", - "Uninstalling ...." : "جاري إلغاء التثبيت ...", - "Uninstall" : "ألغاء التثبيت", - "Delete" : "إلغاء", - "Select a profile picture" : "اختر صورة الملف الشخصي ", - "Very weak password" : "كلمة السر ضعيفة جدا", - "Weak password" : "كلمة السر ضعيفة", - "Good password" : "كلمة السر جيدة", - "Strong password" : "كلمة السر قوية", - "Groups" : "مجموعات", - "undo" : "تراجع", - "never" : "بتاتا", - "add group" : "اضافة مجموعة", - "A valid username must be provided" : "يجب ادخال اسم مستخدم صحيح", - "A valid password must be provided" : "يجب ادخال كلمة مرور صحيحة", - "__language_name__" : "__language_name__", - "Unlimited" : "غير محدود", - "Everything (fatal issues, errors, warnings, info, debug)" : "كل شيء (مشاكل فادحة, اخطاء , تحذيرات , معلومات , تصحيح الاخطاء)", - "Info, warnings, errors and fatal issues" : "معلومات , تحذيرات , اخطاء , مشاكل فادحة ", - "Warnings, errors and fatal issues" : "تحذيرات , اخطاء , مشاكل فادحة ", - "Errors and fatal issues" : "اخطاء ومشاكل فادحة ", - "Fatal issues only" : "مشاكل فادحة فقط ", - "None" : "لا شيء", - "Login" : "تسجيل الدخول", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "موديل 'fileinfo' الخاص بالـPHP مفقود . نوصي بتفعيل هذا الموديل للحصول على أفضل النتائج مع خاصية التحقق ", - "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." : "هذا يعني انه من الممكن ان يكون هناك مشكلة في بعض الاحرف في اسم الملف.", - "Allow apps to use the Share API" : "السماح للتطبيقات بالمشاركة عن طريق الAPI", - "Allow users to share via link" : "السماح للمستخدم بمشاركة الملف عن طريق رابط", - "Allow public uploads" : "السماح بالرفع للعامة ", - "Expire after " : "ينتهي بعد", - "days" : "أيام", - "Allow resharing" : "السماح بإعادة المشاركة ", - "Execute one task with each page loaded" : "قم بتنفيذ مهمة واحدة مع كل صفحة تم تحميلها", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "الملف cron.php تم تسجيله فى خدمه webcron لاستدعاء الملف cron.php كل 15 دقيقه", - "Send mode" : "وضعية الإرسال", - "Encryption" : "التشفير", - "Authentication method" : "أسلوب التطابق", - "Server address" : "عنوان الخادم", - "Port" : "المنفذ", - "More" : "المزيد", - "Less" : "أقل", - "Version" : "إصدار", - "Documentation:" : "التوثيق", - "Uninstall App" : "أزالة تطبيق", - "Valid until" : "صالح حتى", - "Forum" : "منتدى", - "Profile picture" : "صورة الملف الشخصي", - "Upload new" : "رفع الان", - "Remove image" : "إزالة الصورة", - "Cancel" : "الغاء", - "Email" : "البريد الإلكترونى", - "Your email address" : "عنوانك البريدي", - "Password" : "كلمة المرور", - "Unable to change your password" : "لم يتم تعديل كلمة السر بنجاح", - "Current password" : "كلمات السر الحالية", - "New password" : "كلمات سر جديدة", - "Change password" : "عدل كلمة السر", - "Language" : "اللغة", - "Help translate" : "ساعد في الترجمه", - "Get the apps to sync your files" : "احصل على التطبيقات لمزامنة ملفاتك", - "Show First Run Wizard again" : "ابدأ خطوات بداية التشغيل من جديد", - "Username" : "إسم المستخدم", - "Create" : "انشئ", - "Admin Recovery Password" : "استعادة كلمة المرور للمسؤول", - "Enter the recovery password in order to recover the users files during password change" : "ادخل كلمة المرور المستعادة من اجل استرداد ملفات المستخدمين اثناء تغيير كلمة المرور", - "Group" : "مجموعة", - "Everyone" : "الجميع", - "Default Quota" : "الحصة النسبية الإفتراضية", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "يرجى ادخال تخزين quota (مثل:\"512 MB\" او \"12 GB\")", - "Other" : "شيء آخر", - "Full Name" : "اسمك الكامل", - "Quota" : "حصه", - "Last Login" : "آخر تسجيل دخول", - "change full name" : "تغيير اسمك الكامل", - "set new password" : "اعداد كلمة مرور جديدة", - "Default" : "افتراضي" -}, -"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"); diff --git a/settings/l10n/ar.json b/settings/l10n/ar.json deleted file mode 100644 index 2901a6c0cdd..00000000000 --- a/settings/l10n/ar.json +++ /dev/null @@ -1,112 +0,0 @@ -{ "translations": { - "Sharing" : "مشاركة", - "Cron" : "مجدول", - "Log" : "سجل", - "Language changed" : "تم تغيير اللغة", - "Invalid request" : "طلب غير مفهوم", - "Authentication error" : "لم يتم التأكد من الشخصية بنجاح", - "Admins can't remove themself from the admin group" : "لا يستطيع المدير إزالة حسابه من مجموعة المديرين", - "Unable to add user to group %s" : "فشل إضافة المستخدم الى المجموعة %s", - "Unable to remove user from group %s" : "فشل إزالة المستخدم من المجموعة %s", - "Couldn't update app." : "تعذر تحديث التطبيق.", - "Wrong password" : "كلمة مرور خاطئة", - "No user supplied" : "لم يتم توفير مستخدم ", - "Please provide an admin recovery password, otherwise all user data will be lost" : "يرجى توفير كلمة مرور المسؤول المستردة, وإلا سيتم فقد جميع بيانات المستخدم ", - "Wrong admin recovery password. Please check the password and try again." : "خطا في كلمة مرور المسؤول المستردة, يرجى التاكد من كلمة المرور والمحاولة مرة اخرى.", - "Unable to change password" : "لا يمكن تغيير كلمة المرور", - "Enabled" : "مفعلة", - "Saved" : "حفظ", - "test email settings" : "إعدادات البريد التجريبي", - "Email sent" : "تم ارسال البريد الالكتروني", - "Email saved" : "تم حفظ البريد الإلكتروني", - "Your full name has been changed." : "اسمك الكامل تم تغييره.", - "Unable to change full name" : "لم يتم التمكن من تغيير اسمك الكامل", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "هل أنت متأكد انك تريد إضافة \"{domain}\" كنطاق موثوق فيه.", - "Sending..." : "جاري الارسال ...", - "All" : "الكل", - "Please wait...." : "الرجاء الانتظار ...", - "Error while disabling app" : "خطا عند تعطيل البرنامج", - "Disable" : "إيقاف", - "Enable" : "تفعيل", - "Error while enabling app" : "خطا عند تفعيل البرنامج ", - "Updating...." : "جاري التحديث ...", - "Error while updating app" : "حصل خطأ أثناء تحديث التطبيق", - "Updated" : "تم التحديث بنجاح", - "Uninstalling ...." : "جاري إلغاء التثبيت ...", - "Uninstall" : "ألغاء التثبيت", - "Delete" : "إلغاء", - "Select a profile picture" : "اختر صورة الملف الشخصي ", - "Very weak password" : "كلمة السر ضعيفة جدا", - "Weak password" : "كلمة السر ضعيفة", - "Good password" : "كلمة السر جيدة", - "Strong password" : "كلمة السر قوية", - "Groups" : "مجموعات", - "undo" : "تراجع", - "never" : "بتاتا", - "add group" : "اضافة مجموعة", - "A valid username must be provided" : "يجب ادخال اسم مستخدم صحيح", - "A valid password must be provided" : "يجب ادخال كلمة مرور صحيحة", - "__language_name__" : "__language_name__", - "Unlimited" : "غير محدود", - "Everything (fatal issues, errors, warnings, info, debug)" : "كل شيء (مشاكل فادحة, اخطاء , تحذيرات , معلومات , تصحيح الاخطاء)", - "Info, warnings, errors and fatal issues" : "معلومات , تحذيرات , اخطاء , مشاكل فادحة ", - "Warnings, errors and fatal issues" : "تحذيرات , اخطاء , مشاكل فادحة ", - "Errors and fatal issues" : "اخطاء ومشاكل فادحة ", - "Fatal issues only" : "مشاكل فادحة فقط ", - "None" : "لا شيء", - "Login" : "تسجيل الدخول", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "موديل 'fileinfo' الخاص بالـPHP مفقود . نوصي بتفعيل هذا الموديل للحصول على أفضل النتائج مع خاصية التحقق ", - "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." : "هذا يعني انه من الممكن ان يكون هناك مشكلة في بعض الاحرف في اسم الملف.", - "Allow apps to use the Share API" : "السماح للتطبيقات بالمشاركة عن طريق الAPI", - "Allow users to share via link" : "السماح للمستخدم بمشاركة الملف عن طريق رابط", - "Allow public uploads" : "السماح بالرفع للعامة ", - "Expire after " : "ينتهي بعد", - "days" : "أيام", - "Allow resharing" : "السماح بإعادة المشاركة ", - "Execute one task with each page loaded" : "قم بتنفيذ مهمة واحدة مع كل صفحة تم تحميلها", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "الملف cron.php تم تسجيله فى خدمه webcron لاستدعاء الملف cron.php كل 15 دقيقه", - "Send mode" : "وضعية الإرسال", - "Encryption" : "التشفير", - "Authentication method" : "أسلوب التطابق", - "Server address" : "عنوان الخادم", - "Port" : "المنفذ", - "More" : "المزيد", - "Less" : "أقل", - "Version" : "إصدار", - "Documentation:" : "التوثيق", - "Uninstall App" : "أزالة تطبيق", - "Valid until" : "صالح حتى", - "Forum" : "منتدى", - "Profile picture" : "صورة الملف الشخصي", - "Upload new" : "رفع الان", - "Remove image" : "إزالة الصورة", - "Cancel" : "الغاء", - "Email" : "البريد الإلكترونى", - "Your email address" : "عنوانك البريدي", - "Password" : "كلمة المرور", - "Unable to change your password" : "لم يتم تعديل كلمة السر بنجاح", - "Current password" : "كلمات السر الحالية", - "New password" : "كلمات سر جديدة", - "Change password" : "عدل كلمة السر", - "Language" : "اللغة", - "Help translate" : "ساعد في الترجمه", - "Get the apps to sync your files" : "احصل على التطبيقات لمزامنة ملفاتك", - "Show First Run Wizard again" : "ابدأ خطوات بداية التشغيل من جديد", - "Username" : "إسم المستخدم", - "Create" : "انشئ", - "Admin Recovery Password" : "استعادة كلمة المرور للمسؤول", - "Enter the recovery password in order to recover the users files during password change" : "ادخل كلمة المرور المستعادة من اجل استرداد ملفات المستخدمين اثناء تغيير كلمة المرور", - "Group" : "مجموعة", - "Everyone" : "الجميع", - "Default Quota" : "الحصة النسبية الإفتراضية", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "يرجى ادخال تخزين quota (مثل:\"512 MB\" او \"12 GB\")", - "Other" : "شيء آخر", - "Full Name" : "اسمك الكامل", - "Quota" : "حصه", - "Last Login" : "آخر تسجيل دخول", - "change full name" : "تغيير اسمك الكامل", - "set new password" : "اعداد كلمة مرور جديدة", - "Default" : "افتراضي" -},"pluralForm" :"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;" -}
\ No newline at end of file diff --git a/settings/l10n/ast.js b/settings/l10n/ast.js deleted file mode 100644 index 6dad0877372..00000000000 --- a/settings/l10n/ast.js +++ /dev/null @@ -1,159 +0,0 @@ -OC.L10N.register( - "settings", - { - "Sharing" : "Compartiendo", - "External Storage" : "Almacenamientu esternu", - "Cron" : "Cron", - "Log" : "Rexistru", - "Updates" : "Anovamientos", - "Couldn't remove app." : "Nun pudo desaniciase l'aplicación.", - "Language changed" : "Camudóse la llingua", - "Invalid request" : "Solicitú inválida", - "Authentication error" : "Fallu d'autenticación", - "Admins can't remove themself from the admin group" : "Los alministradores nun puen desaniciase a ellos mesmos del grupu d'alministrador", - "Unable to add user to group %s" : "Nun pudo amestase l'usuariu al grupu %s", - "Unable to remove user from group %s" : "Nun pudo desaniciase al usuariu del grupu %s", - "Couldn't update app." : "Nun pudo anovase l'aplicación.", - "Wrong password" : "Contraseña incorreuta", - "No user supplied" : "Nun s'especificó un usuariu", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Facilita una contraseña de recuperación d'alministrador, sinón podríen perdese tolos datos d'usuariu", - "Wrong admin recovery password. Please check the password and try again." : "Contraseña de recuperación d'alministrador incorreuta. Comprueba la contraseña ya inténtalo dempués.", - "Unable to change password" : "Nun pudo camudase la contraseña", - "Enabled" : "Habilitar", - "Not enabled" : "Desactiváu", - "Saved" : "Guardáu", - "test email settings" : "probar configuración de corréu", - "Email sent" : "Corréu-e unviáu", - "You need to set your user email before being able to send test emails." : "Tienes de configurar la direición de corréu-e enantes de poder unviar mensaxes de prueba.", - "Email saved" : "Corréu-e guardáu", - "Your full name has been changed." : "Camudóse'l nome completu.", - "Unable to change full name" : "Nun pue camudase'l nome completu", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "¿De xuru que quies amestar \"{domain}\" como dominiu de confianza?", - "Add trusted domain" : "Amestar dominiu de confianza", - "Sending..." : "Unviando...", - "All" : "Toos", - "Please wait...." : "Espera, por favor....", - "Error while disabling app" : "Fallu mientres se desactivaba l'aplicación", - "Disable" : "Desactivar", - "Enable" : "Activar", - "Error while enabling app" : "Fallu mientres s'activaba l'aplicación", - "Updating...." : "Anovando....", - "Error while updating app" : "Fallu mientres s'anovaba l'aplicación", - "Updated" : "Anováu", - "Uninstalling ...." : "Desinstalando ...", - "Error while uninstalling app" : "Fallu mientres se desinstalaba l'aplicación", - "Uninstall" : "Desinstalar", - "Valid until {date}" : "Válidu fasta {date}", - "Delete" : "Desaniciar", - "Select a profile picture" : "Esbillar una imaxe de perfil", - "Very weak password" : "Contraseña mui feble", - "Weak password" : "Contraseña feble", - "So-so password" : "Contraseña pasable", - "Good password" : "Contraseña bona", - "Strong password" : "Contraseña mui bona", - "Groups" : "Grupos", - "Unable to delete {objName}" : "Nun pue desaniciase {objName}", - "A valid group name must be provided" : "Hai d'escribir un nome de grupu válidu", - "deleted {groupName}" : "desaniciáu {groupName}", - "undo" : "desfacer", - "no group" : "Ensín grupu", - "never" : "enxamás", - "deleted {userName}" : "desaniciáu {userName}", - "add group" : "amestar Grupu", - "A valid username must be provided" : "Tien d'apurrise un nome d'usuariu válidu", - "A valid password must be provided" : "Tien d'apurrise una contraseña válida", - "__language_name__" : "Asturianu", - "Unlimited" : "Non llendáu", - "Everything (fatal issues, errors, warnings, info, debug)" : "Too (Información, Avisos, Fallos, debug y problemes fatales)", - "Info, warnings, errors and fatal issues" : "Información, Avisos, Fallos y problemes fatales", - "Warnings, errors and fatal issues" : "Avisos, fallos y problemes fatales", - "Errors and fatal issues" : "Fallos y problemes fatales", - "Fatal issues only" : "Namái problemes fatales", - "None" : "Dengún", - "Login" : "Entamar sesión", - "Plain" : "Planu", - "NT LAN Manager" : "Xestor de NT LAN", - "SSL" : "SSL", - "TLS" : "TLS", - "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.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Nun s'atopó'l módulu PHP 'fileinfo'. Encamentámoste qu'habilites esti módulu pa obtener meyores resultaos cola deteición de tribes MIME.", - "System locale can not be set to a one which supports UTF-8." : "Nun se pue escoyer una configuración rexonal que sofite UTF-8.", - "This means that there might be problems with certain characters in file names." : "Esto significa que pue haber problemes con ciertos caráuteres nos nomes de los ficheros.", - "Allow apps to use the Share API" : "Permitir a les aplicaciones usar la API de Compartición", - "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", - "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", - "Cron was not executed yet!" : "¡Cron entá nun s'executó!", - "Execute one task with each page loaded" : "Executar una xera con cada páxina cargada", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php rexístrase nun serviciu webcron pa llamar a cron.php cada 15 minutos al traviés de HTTP.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Usar el serviciu cron del sistema pa llamar al ficheru cron.php cada 15 mins.", - "This is used for sending out notifications." : "Esto úsase pa unviar notificaciones.", - "Send mode" : "Mou d'unviu", - "Encryption" : "Cifráu", - "From address" : "Dende la direición", - "mail" : "corréu", - "Authentication method" : "Métodu d'autenticación", - "Authentication required" : "Necesítase autenticación", - "Server address" : "Direición del sirvidor", - "Port" : "Puertu", - "Credentials" : "Credenciales", - "SMTP Username" : "Nome d'usuariu SMTP", - "SMTP Password" : "Contraseña SMTP", - "Test email settings" : "Probar configuración de corréu electrónicu", - "Send email" : "Unviar mensaxe", - "More" : "Más", - "Less" : "Menos", - "Version" : "Versión", - "Documentation:" : "Documentación:", - "Enable only for specific groups" : "Habilitar namái pa grupos específicos", - "Uninstall App" : "Desinstalar aplicación", - "Cheers!" : "¡Salú!", - "Forum" : "Foru", - "Profile picture" : "Semeya de perfil", - "Upload new" : "Xubir otra", - "Remove image" : "Desaniciar imaxe", - "Cancel" : "Encaboxar", - "Email" : "Corréu-e", - "Your email address" : "Direición de corréu-e", - "Password" : "Contraseña", - "Unable to change your password" : "Nun pudo camudase la contraseña", - "Current password" : "Contraseña actual", - "New password" : "Contraseña nueva", - "Change password" : "Camudar contraseña", - "Language" : "Llingua", - "Help translate" : "Ayúdanos nes traducciones", - "Get the apps to sync your files" : "Obtener les aplicaciones pa sincronizar ficheros", - "Desktop client" : "Cliente d'escritoriu", - "Android app" : "Aplicación d'Android", - "iOS app" : "Aplicación d'iOS", - "Show First Run Wizard again" : "Amosar nuevamente l'Encontu d'execución inicial", - "Username" : "Nome d'usuariu", - "Create" : "Crear", - "Admin Recovery Password" : "Recuperación de la contraseña d'alministración", - "Enter the recovery password in order to recover the users files during password change" : "Introduz la contraseña de recuperación col envís de recuperar los ficheros de los usuarios mientres el cambéu de contraseña.", - "Add Group" : "Amestar grupu", - "Group" : "Grupu", - "Everyone" : "Toos", - "Admins" : "Almins", - "Default Quota" : "Cuota predeterminada", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor indica la cuota d'almacenamientu (ex: \"512 MB\" o \"12 GB\")", - "Other" : "Otru", - "Full Name" : "Nome completu", - "Quota" : "Cuota", - "Storage Location" : "Llocalización d'almacenamientu", - "Last Login" : "Caberu aniciu de sesión", - "change full name" : "camudar el nome completu", - "set new password" : "afitar nueva contraseña", - "Default" : "Predetermináu" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/ast.json b/settings/l10n/ast.json deleted file mode 100644 index 2db20e732e6..00000000000 --- a/settings/l10n/ast.json +++ /dev/null @@ -1,157 +0,0 @@ -{ "translations": { - "Sharing" : "Compartiendo", - "External Storage" : "Almacenamientu esternu", - "Cron" : "Cron", - "Log" : "Rexistru", - "Updates" : "Anovamientos", - "Couldn't remove app." : "Nun pudo desaniciase l'aplicación.", - "Language changed" : "Camudóse la llingua", - "Invalid request" : "Solicitú inválida", - "Authentication error" : "Fallu d'autenticación", - "Admins can't remove themself from the admin group" : "Los alministradores nun puen desaniciase a ellos mesmos del grupu d'alministrador", - "Unable to add user to group %s" : "Nun pudo amestase l'usuariu al grupu %s", - "Unable to remove user from group %s" : "Nun pudo desaniciase al usuariu del grupu %s", - "Couldn't update app." : "Nun pudo anovase l'aplicación.", - "Wrong password" : "Contraseña incorreuta", - "No user supplied" : "Nun s'especificó un usuariu", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Facilita una contraseña de recuperación d'alministrador, sinón podríen perdese tolos datos d'usuariu", - "Wrong admin recovery password. Please check the password and try again." : "Contraseña de recuperación d'alministrador incorreuta. Comprueba la contraseña ya inténtalo dempués.", - "Unable to change password" : "Nun pudo camudase la contraseña", - "Enabled" : "Habilitar", - "Not enabled" : "Desactiváu", - "Saved" : "Guardáu", - "test email settings" : "probar configuración de corréu", - "Email sent" : "Corréu-e unviáu", - "You need to set your user email before being able to send test emails." : "Tienes de configurar la direición de corréu-e enantes de poder unviar mensaxes de prueba.", - "Email saved" : "Corréu-e guardáu", - "Your full name has been changed." : "Camudóse'l nome completu.", - "Unable to change full name" : "Nun pue camudase'l nome completu", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "¿De xuru que quies amestar \"{domain}\" como dominiu de confianza?", - "Add trusted domain" : "Amestar dominiu de confianza", - "Sending..." : "Unviando...", - "All" : "Toos", - "Please wait...." : "Espera, por favor....", - "Error while disabling app" : "Fallu mientres se desactivaba l'aplicación", - "Disable" : "Desactivar", - "Enable" : "Activar", - "Error while enabling app" : "Fallu mientres s'activaba l'aplicación", - "Updating...." : "Anovando....", - "Error while updating app" : "Fallu mientres s'anovaba l'aplicación", - "Updated" : "Anováu", - "Uninstalling ...." : "Desinstalando ...", - "Error while uninstalling app" : "Fallu mientres se desinstalaba l'aplicación", - "Uninstall" : "Desinstalar", - "Valid until {date}" : "Válidu fasta {date}", - "Delete" : "Desaniciar", - "Select a profile picture" : "Esbillar una imaxe de perfil", - "Very weak password" : "Contraseña mui feble", - "Weak password" : "Contraseña feble", - "So-so password" : "Contraseña pasable", - "Good password" : "Contraseña bona", - "Strong password" : "Contraseña mui bona", - "Groups" : "Grupos", - "Unable to delete {objName}" : "Nun pue desaniciase {objName}", - "A valid group name must be provided" : "Hai d'escribir un nome de grupu válidu", - "deleted {groupName}" : "desaniciáu {groupName}", - "undo" : "desfacer", - "no group" : "Ensín grupu", - "never" : "enxamás", - "deleted {userName}" : "desaniciáu {userName}", - "add group" : "amestar Grupu", - "A valid username must be provided" : "Tien d'apurrise un nome d'usuariu válidu", - "A valid password must be provided" : "Tien d'apurrise una contraseña válida", - "__language_name__" : "Asturianu", - "Unlimited" : "Non llendáu", - "Everything (fatal issues, errors, warnings, info, debug)" : "Too (Información, Avisos, Fallos, debug y problemes fatales)", - "Info, warnings, errors and fatal issues" : "Información, Avisos, Fallos y problemes fatales", - "Warnings, errors and fatal issues" : "Avisos, fallos y problemes fatales", - "Errors and fatal issues" : "Fallos y problemes fatales", - "Fatal issues only" : "Namái problemes fatales", - "None" : "Dengún", - "Login" : "Entamar sesión", - "Plain" : "Planu", - "NT LAN Manager" : "Xestor de NT LAN", - "SSL" : "SSL", - "TLS" : "TLS", - "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.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Nun s'atopó'l módulu PHP 'fileinfo'. Encamentámoste qu'habilites esti módulu pa obtener meyores resultaos cola deteición de tribes MIME.", - "System locale can not be set to a one which supports UTF-8." : "Nun se pue escoyer una configuración rexonal que sofite UTF-8.", - "This means that there might be problems with certain characters in file names." : "Esto significa que pue haber problemes con ciertos caráuteres nos nomes de los ficheros.", - "Allow apps to use the Share API" : "Permitir a les aplicaciones usar la API de Compartición", - "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", - "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", - "Cron was not executed yet!" : "¡Cron entá nun s'executó!", - "Execute one task with each page loaded" : "Executar una xera con cada páxina cargada", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php rexístrase nun serviciu webcron pa llamar a cron.php cada 15 minutos al traviés de HTTP.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Usar el serviciu cron del sistema pa llamar al ficheru cron.php cada 15 mins.", - "This is used for sending out notifications." : "Esto úsase pa unviar notificaciones.", - "Send mode" : "Mou d'unviu", - "Encryption" : "Cifráu", - "From address" : "Dende la direición", - "mail" : "corréu", - "Authentication method" : "Métodu d'autenticación", - "Authentication required" : "Necesítase autenticación", - "Server address" : "Direición del sirvidor", - "Port" : "Puertu", - "Credentials" : "Credenciales", - "SMTP Username" : "Nome d'usuariu SMTP", - "SMTP Password" : "Contraseña SMTP", - "Test email settings" : "Probar configuración de corréu electrónicu", - "Send email" : "Unviar mensaxe", - "More" : "Más", - "Less" : "Menos", - "Version" : "Versión", - "Documentation:" : "Documentación:", - "Enable only for specific groups" : "Habilitar namái pa grupos específicos", - "Uninstall App" : "Desinstalar aplicación", - "Cheers!" : "¡Salú!", - "Forum" : "Foru", - "Profile picture" : "Semeya de perfil", - "Upload new" : "Xubir otra", - "Remove image" : "Desaniciar imaxe", - "Cancel" : "Encaboxar", - "Email" : "Corréu-e", - "Your email address" : "Direición de corréu-e", - "Password" : "Contraseña", - "Unable to change your password" : "Nun pudo camudase la contraseña", - "Current password" : "Contraseña actual", - "New password" : "Contraseña nueva", - "Change password" : "Camudar contraseña", - "Language" : "Llingua", - "Help translate" : "Ayúdanos nes traducciones", - "Get the apps to sync your files" : "Obtener les aplicaciones pa sincronizar ficheros", - "Desktop client" : "Cliente d'escritoriu", - "Android app" : "Aplicación d'Android", - "iOS app" : "Aplicación d'iOS", - "Show First Run Wizard again" : "Amosar nuevamente l'Encontu d'execución inicial", - "Username" : "Nome d'usuariu", - "Create" : "Crear", - "Admin Recovery Password" : "Recuperación de la contraseña d'alministración", - "Enter the recovery password in order to recover the users files during password change" : "Introduz la contraseña de recuperación col envís de recuperar los ficheros de los usuarios mientres el cambéu de contraseña.", - "Add Group" : "Amestar grupu", - "Group" : "Grupu", - "Everyone" : "Toos", - "Admins" : "Almins", - "Default Quota" : "Cuota predeterminada", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor indica la cuota d'almacenamientu (ex: \"512 MB\" o \"12 GB\")", - "Other" : "Otru", - "Full Name" : "Nome completu", - "Quota" : "Cuota", - "Storage Location" : "Llocalización d'almacenamientu", - "Last Login" : "Caberu aniciu de sesión", - "change full name" : "camudar el nome completu", - "set new password" : "afitar nueva contraseña", - "Default" : "Predetermináu" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/az.js b/settings/l10n/az.js deleted file mode 100644 index 87f60ea9944..00000000000 --- a/settings/l10n/az.js +++ /dev/null @@ -1,223 +0,0 @@ -OC.L10N.register( - "settings", - { - "Security & setup warnings" : "Təhlükəsizlik & işə salma xəbərdarlıqları", - "Sharing" : "Paylaşılır", - "External Storage" : "Kənar depo", - "Cron" : "Cron", - "Log" : "Jurnal", - "Updates" : "Yenilənmələr", - "Couldn't remove app." : "Proqram təminatını silmək mümkün olmadı.", - "Language changed" : "Dil dəyişdirildi", - "Invalid request" : "Səhv müraciət", - "Authentication error" : "Təyinat metodikası", - "Admins can't remove themself from the admin group" : "İnzibatçılar özlərini inzibatçı qrupundan silə bilməz", - "Unable to add user to group %s" : "İstifadəçini %s qrupuna əlavə etmək mümkün olmadı", - "Unable to remove user from group %s" : "İstifadəçini %s qrupundan silmək mümkün olmadı", - "Couldn't update app." : "Proqram təminatını yeniləmək mümkün deyil.", - "Wrong password" : "Yalnış şifrə", - "No user supplied" : "Heç bir istifadəçiyə mənimsədilmir", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Xahış olunur inzibatçı geriyə qayıdış şifrəsini təqdim edəsiniz, əks halda bütün istfadəçi datası itəcək.", - "Wrong admin recovery password. Please check the password and try again." : "İnzibatçı geriyə qayıdış şifrəsi yalnışdır. Xahiş olunur şifrəni yoxlayıb yenidən təkrar edəsiniz.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Arxa sonluq şifrənin dəyişdirilməsini dəstəkləmir ancaq, istifadəçi şifrələmə açarı uğurla yeniləndi.", - "Unable to change password" : "Şifrəni dəyişmək olmur", - "Enabled" : "İşə salınıb", - "Not enabled" : "İşə salınıb", - "Federated Cloud Sharing" : "Federal Cloud Paylaşım", - "Group already exists." : "Qrup artılq mövcduddur.", - "Unable to add group." : "Qrupu əlavə etmək mümkün deyil. ", - "Unable to delete group." : "Qrupu silmək mümkün deyil.", - "log-level out of allowed range" : "jurnal-səviyyəsi izin verilən aralıqdan kənardır", - "Saved" : "Saxlanıldı", - "test email settings" : "sınaq məktubu quraşdırmaları", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Məktubun yollanmasında səhv baş verdi. Xahiş olunur öz quraşdırmalarınıza yenidən göz yetirəsiniz.(Error: %s)", - "Email sent" : "Məktub göndərildi", - "You need to set your user email before being able to send test emails." : "Test məktubu göndərməzdən öncə, siz öz istifadəçi poçtunuzu təyin etməlisiniz.", - "Invalid mail address" : "Yalnış mail ünvanı", - "A user with that name already exists." : "Bu adla istifadəçi artıq mövcuddur.", - "Unable to create user." : "İstifadəçi yaratmaq mümkün deyil.", - "Your %s account was created" : "Sizin %s hesab yaradıldı", - "Unable to delete user." : "İstifadəçini silmək mümkün deyil.", - "Forbidden" : "Qadağan", - "Invalid user" : "İstifadəçi adı yalnışdır", - "Unable to change mail address" : "Mail ünvanını dəyişmək olmur", - "Email saved" : "Məktub yadda saxlanıldı", - "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", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "\"{domain}\" adını inamlı domainlər siyahısına əlavə etməyinizdən əminsinizmi?", - "Add trusted domain" : "İnamlı domainlərə əlavə et", - "Sending..." : "Göndərilir...", - "All" : "Hamısı", - "No apps found for your version" : "Sizin versiya üçün proqram tapılmadı", - "Update to %s" : "Yenilə bunadək %s", - "Please wait...." : "Xahiş olunur gözləyəsiniz.", - "Error while disabling app" : "Proqram təminatını dayandırdıqda səhv baş verdi", - "Disable" : "Dayandır", - "Enable" : "İşə sal", - "Error while enabling app" : "Proqram təminatını işə saldıqda səhv baş verdi", - "Updating...." : "Yenilənir...", - "Error while updating app" : "Proqram təminatı yeniləndikdə səhv baş verdi", - "Updated" : "Yeniləndi", - "Uninstalling ...." : "Silinir...", - "Error while uninstalling app" : "Proqram təminatını sildikdə səhv baş verdi", - "Uninstall" : "Sil", - "Valid until {date}" : "Müddətədək keçərlidir {date}", - "Delete" : "Sil", - "Select a profile picture" : "Profil üçün şəkli seç", - "Very weak password" : "Çox asan şifrə", - "Weak password" : "Asan şifrə", - "So-so password" : "Elə-belə şifrə", - "Good password" : "Yaxşı şifrə", - "Strong password" : "Çətin şifrə", - "Groups" : "Qruplar", - "Unable to delete {objName}" : "{objName} silmək olmur", - "A valid group name must be provided" : "Düzgün qrup adı təyin edilməlidir", - "deleted {groupName}" : "{groupName} silindi", - "undo" : "geriyə", - "no group" : "qrup yoxdur", - "never" : "heç vaxt", - "deleted {userName}" : "{userName} silindi", - "add group" : "qrupu əlavə et", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Şifrənin dəyişdirilməsi data itkisinə gətirəcək ona görə ki, datanın bərpası bu istifadəçi üçün movcud deyil.", - "A valid username must be provided" : "Düzgün istifadəçi adı daxil edilməlidir", - "A valid password must be provided" : "Düzgün şifrə daxil edilməlidir", - "A valid email must be provided" : "Düzgün email təqdim edilməlidir", - "__language_name__" : "__AZ_Azerbaijan__", - "Unlimited" : "Limitsiz", - "Personal info" : "Şəxsi məlumat", - "Sync clients" : "Müştəriləri sinxronizasiya et", - "Everything (fatal issues, errors, warnings, info, debug)" : "Hər şey(ən pis hadisələr, səhvlər, xəbərdarlıqlar, məlmat, araşdırma səhvləri)", - "Info, warnings, errors and fatal issues" : "Məlmat, xəbərdarlıqlar, səhvlər və ən pis hadisələr", - "Warnings, errors and fatal issues" : "Xəbərdarlıqlar, səhvlər və ən pis hadisələr", - "Errors and fatal issues" : "Səhvlər və ən pis hadisələr", - "Fatal issues only" : "Yalnız ən pis hadisələr", - "None" : "Heç bir", - "Login" : "Giriş", - "Plain" : "Adi", - "NT LAN Manager" : "NT LAN Manager", - "SSL" : "SSL", - "TLS" : "TLS", - "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." : "Yalnız-Oxuma işə salınıb. Bu web-interface vasitəsilə edilən bəzi konfiqlərin qarşısını alır. Bundan başqa, fayl əllə edilən istənilən yenilınmə üçün yazılma yetkisinə sahib olmalıdır. ", - "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP göründüyü kimi, daxili doc bloklarının ayrılması işini görəcək. Bu bəzi özək proqramlarını əlçatılmaz edə bilər.", - "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Bu ola bilər ki, cache/accelerator such tərəfindən cağırılıb hansi ki, Zend OPcache və eAccelerator-da olduğu kimidir.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Sizin servef Microsoft Windows-da işləyir. Optimal istifadəçi təcrübəsi üçün, təkidlə Linux məsləhət görürük.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP-nin modulu 'fileinfo' mövcud deyil. Mime-type təyin edilməsi üçün, modulun aktivləşdirilməsini təkidlə məsləhət görürük.", - "System locale can not be set to a one which supports UTF-8." : "UTF-8 dsətklənən sistemdə daxili vaxt və dil təyinatı ola bilməz. ", - "This means that there might be problems with certain characters in file names." : "Bu o deməkdir ki, orda faylın adında bəzi simvollarda problemlər var.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Biz təkidlə təklif edirik ki, göstərilən dillər üçün tələb edilən paketləri sisteminizdə yükləyəsiniz: %s.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Eger sizin yüklənməniz root domain-də yüklənməyibsə və sistem cron-u istifadə edirsə, orda URL generasiyası ilə bağlı problemləriniz ola bilər. Bu problemləri aşmaq üçün xahiş olunur yüklənmə vaxtı \"overwrite.cli.url\" opsiyasını config.php faylında webroot ünvanı olaraq təyin edəsiniz (Məsləhətdir: \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "CRON işini CLİ-dan yerinə yetirmək mümkün olmadı. Görünən texniki səhv baş verdi.", - "Open documentation" : "Sənədləri aç", - "Allow apps to use the Share API" : "Proqramlara izin verin ki, Paylaşım API-sindən istifadə edə bilsinlər.", - "Allow users to share via link" : "Istifadəçilərə link üzərindən paylaşım etməyə izin vermək", - "Enforce password protection" : "Şifrə müdafiəsini həyata keçirmək", - "Allow public uploads" : "Ümumi yüklənmələrə izin vermək", - "Allow users to send mail notification for shared files" : "Yayımlanmış fayllar üçün, istifadəçilərə məktubla xəbərdarlığın yollanmasına izin verir", - "Set default expiration date" : "Susmaya görə olan bitmə vaxtını təyin edin", - "Expire after " : "Bitir sonra", - "days" : "günlər", - "Enforce expiration date" : "Bitmə tarixini həyata keçir", - "Allow resharing" : "Yenidən paylaşıma izin", - "Restrict users to only share with users in their groups" : "İstifadəçiləri yalnız yerləşdikləri qrup üzvləri ilə paylaşım edə bilmələrini məhdudla", - "Allow users to send mail notification for shared files to other users" : "İstifadəçilərə etdikləri paylaşımı digər istifadəçilərə mail vasitəsilə xəbərdarlıq göndərilməsinə izin verin", - "Exclude groups from sharing" : "Qrupları paylaşımdan ayır", - "These groups will still be able to receive shares, but not to initiate them." : "Bu qruplar paylaşımları hələdə ala biləcəklər ancaq, yarada bilməyəcəklər", - "Last cron job execution: %s." : "Son cron yerinə yetirilməsi işi: %s.", - "Last cron job execution: %s. Something seems wrong." : "Son cron yerinə yetirilməsi: %s. Nə isə yalnış görünür.", - "Cron was not executed yet!" : "Cron hələ yerinə yetirilməyib!", - "Execute one task with each page loaded" : "Hər səhifə yüklənməsində bir işi yerinə yetir", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php qeydə alınmış webcron servisdir hansi ki, http üzərindən hər 15 dəqiqədən bir cron.php çağırır.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Sistemin cron servisindən istifadə edin ki, cron.php faylını hər 15 dəqiqədən bir işə salasınız.", - "This is used for sending out notifications." : "Kənara xəbərdarlıqları ötürmək üçün bu istifadə edilir.", - "Send mode" : "Göndərmə rejimi", - "Encryption" : "Şifrələnmə", - "From address" : "Ünvandan", - "mail" : "poçt", - "Authentication method" : "Qeydiyyat metodikası", - "Authentication required" : "Qeydiyyat tələb edilir", - "Server address" : "Server ünvanı", - "Port" : "Port", - "Credentials" : "Səlahiyyətlər", - "SMTP Username" : "SMTP İstifadəçi adı", - "SMTP Password" : "SMTP Şifrəsi", - "Store credentials" : "Səlahiyyətləri saxla", - "Test email settings" : "Email qurmalarını test et", - "Send email" : "Email yolla", - "Download logfile" : "Jurnal faylını endir", - "More" : "Yenə", - "Less" : "Az", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Jurnal faylı 100MB-dan çoxdur. Onun endirilməsi müəyyən vaxt ala bilər.", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLinte verilənlər bazası kimi istifadə edilir. Geniş tətbiq üçün, biz məsləhət görürük ki, arxa sonluqda fərqli verilənlər bazasından istifadə edəsiniz. ", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Xüsusilə fayl sinxronizasiyası üçün desktop client-dən istifadə edilərsə, SQLite məsləhət görülmür.", - "How to do backups" : "Rezerv nüsxələr neçə edilisin", - "Advanced monitoring" : "İrəliləmiş monitoring", - "Version" : "Versiya", - "Developer documentation" : "Yaradıcı sənədləşməsi", - "Documentation:" : "Sənədləşmə:", - "Show description …" : "Açıqlanmanı göstər ...", - "Hide description …" : "Açıqlamanı gizlət ...", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Bu proqram yüklənə bilməz ona görə ki, göstərilən asılılıqlar yerinə yetirilməyib:", - "Enable only for specific groups" : "Yalnız spesifik qruplara izin ver", - "Uninstall App" : "Proqram təminatını sil", - "Common Name" : "Ümumi ad", - "Valid until" : "Vaxtadək keçərlidir", - "Issued By" : "Tərəfindən yaradılıb", - "Valid until %s" : "Keçərlidir vaxtadək %s", - "Import root certificate" : "root sertifikatı import et", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Ey ora,<br><br>ancaq deyirik ki, sizin artiq %s hesabınız var.<br><br>Sizin istifadəçi adınız: %s<br>Yetkilidir: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Şərəfə!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Ey ora,\n\nancaq deyirik ki, sizin artiq %s hesabınız var.\n\nizin istifadəçi adınız: %s\nYetkilidir: %s\n\n", - "Forum" : "Forum", - "Profile picture" : "Profil şəkli", - "Upload new" : "Yenisini yüklə", - "Remove image" : "Şəkili sil", - "Cancel" : "Dayandır", - "Full name" : "Tam ad", - "No display name set" : "Ekranda adı dəsti yoxdur", - "Email" : "Email", - "Your email address" : "Sizin email ünvanı", - "No email address set" : "Email ünvanı dəsti yoxdur", - "You are member of the following groups:" : "Siz göstərilən qrupların üzvüsünüz:", - "Password" : "Şifrə", - "Unable to change your password" : "Sizin şifrəni dəyişmək mümkün olmadı", - "Current password" : "Hazırkı şifrə", - "New password" : "Yeni şifrə", - "Change password" : "Şifrəni dəyiş", - "Language" : "Dil", - "Help translate" : "Tərcüməyə kömək", - "Get the apps to sync your files" : "Fayllarınızın sinxronizasiyası üçün proqramları götürün", - "Desktop client" : "Desktop client", - "Android app" : "Android proqramı", - "iOS app" : "iOS proqramı", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Əgər siz proektə dəstək vermək istəyirsinizsə\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">Təkmilləşdirməyə üzv</a>\n\t\tyada\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">söz yaymaq</a>!", - "Show First Run Wizard again" : "İlk işəsalma sehirbazını yenidən göstər", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Tərəfindən yaradılıb{communityopen}ownCloud cəmiyyəti{linkclose}, {githubopen}mənbə kodları{linkclose} altında lisenziya edilib {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}.", - "Show storage location" : "Depo ünvanını göstər", - "Show last log in" : "Son girişi göstər", - "Show user backend" : "Daxili istifadəçini göstər", - "Send email to new user" : "Yeni istifadəçiyə məktub yolla", - "Show email address" : "Email ünvanını göstər", - "Username" : "İstifadəçi adı", - "E-Mail" : "E-Mail", - "Create" : "Yarat", - "Admin Recovery Password" : "İnzibatçı bərpa şifrəsi", - "Enter the recovery password in order to recover the users files during password change" : "Şifrə dəyişilməsi müddətində, səliqə ilə bərpa açarını daxil et ki, istifadəçi fayllları bərpa edilsin. ", - "Add Group" : "Qrup əlavə et", - "Group" : "Qrup", - "Everyone" : "Hamı", - "Admins" : "İnzibatçılar", - "Default Quota" : "Susmaya görə olan norma", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Xahiş olunur depo normasını daxil edəsiniz (Məs: \"512 MB\" yada \"12 GB\")", - "Other" : "Digər", - "Full Name" : "Tam ad", - "Group Admin for" : "üçün qrup inzibatçısı", - "Quota" : "Norma", - "Storage Location" : "Depo yeri", - "User Backend" : "İstifadəçı bazası", - "Last Login" : "Son giriş", - "change full name" : "tam adı dəyiş", - "set new password" : "yeni şifrə təyin et", - "change email address" : "email ünvanını dəyiş", - "Default" : "Susmaya görə" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/az.json b/settings/l10n/az.json deleted file mode 100644 index 6b646e59774..00000000000 --- a/settings/l10n/az.json +++ /dev/null @@ -1,221 +0,0 @@ -{ "translations": { - "Security & setup warnings" : "Təhlükəsizlik & işə salma xəbərdarlıqları", - "Sharing" : "Paylaşılır", - "External Storage" : "Kənar depo", - "Cron" : "Cron", - "Log" : "Jurnal", - "Updates" : "Yenilənmələr", - "Couldn't remove app." : "Proqram təminatını silmək mümkün olmadı.", - "Language changed" : "Dil dəyişdirildi", - "Invalid request" : "Səhv müraciət", - "Authentication error" : "Təyinat metodikası", - "Admins can't remove themself from the admin group" : "İnzibatçılar özlərini inzibatçı qrupundan silə bilməz", - "Unable to add user to group %s" : "İstifadəçini %s qrupuna əlavə etmək mümkün olmadı", - "Unable to remove user from group %s" : "İstifadəçini %s qrupundan silmək mümkün olmadı", - "Couldn't update app." : "Proqram təminatını yeniləmək mümkün deyil.", - "Wrong password" : "Yalnış şifrə", - "No user supplied" : "Heç bir istifadəçiyə mənimsədilmir", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Xahış olunur inzibatçı geriyə qayıdış şifrəsini təqdim edəsiniz, əks halda bütün istfadəçi datası itəcək.", - "Wrong admin recovery password. Please check the password and try again." : "İnzibatçı geriyə qayıdış şifrəsi yalnışdır. Xahiş olunur şifrəni yoxlayıb yenidən təkrar edəsiniz.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Arxa sonluq şifrənin dəyişdirilməsini dəstəkləmir ancaq, istifadəçi şifrələmə açarı uğurla yeniləndi.", - "Unable to change password" : "Şifrəni dəyişmək olmur", - "Enabled" : "İşə salınıb", - "Not enabled" : "İşə salınıb", - "Federated Cloud Sharing" : "Federal Cloud Paylaşım", - "Group already exists." : "Qrup artılq mövcduddur.", - "Unable to add group." : "Qrupu əlavə etmək mümkün deyil. ", - "Unable to delete group." : "Qrupu silmək mümkün deyil.", - "log-level out of allowed range" : "jurnal-səviyyəsi izin verilən aralıqdan kənardır", - "Saved" : "Saxlanıldı", - "test email settings" : "sınaq məktubu quraşdırmaları", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Məktubun yollanmasında səhv baş verdi. Xahiş olunur öz quraşdırmalarınıza yenidən göz yetirəsiniz.(Error: %s)", - "Email sent" : "Məktub göndərildi", - "You need to set your user email before being able to send test emails." : "Test məktubu göndərməzdən öncə, siz öz istifadəçi poçtunuzu təyin etməlisiniz.", - "Invalid mail address" : "Yalnış mail ünvanı", - "A user with that name already exists." : "Bu adla istifadəçi artıq mövcuddur.", - "Unable to create user." : "İstifadəçi yaratmaq mümkün deyil.", - "Your %s account was created" : "Sizin %s hesab yaradıldı", - "Unable to delete user." : "İstifadəçini silmək mümkün deyil.", - "Forbidden" : "Qadağan", - "Invalid user" : "İstifadəçi adı yalnışdır", - "Unable to change mail address" : "Mail ünvanını dəyişmək olmur", - "Email saved" : "Məktub yadda saxlanıldı", - "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", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "\"{domain}\" adını inamlı domainlər siyahısına əlavə etməyinizdən əminsinizmi?", - "Add trusted domain" : "İnamlı domainlərə əlavə et", - "Sending..." : "Göndərilir...", - "All" : "Hamısı", - "No apps found for your version" : "Sizin versiya üçün proqram tapılmadı", - "Update to %s" : "Yenilə bunadək %s", - "Please wait...." : "Xahiş olunur gözləyəsiniz.", - "Error while disabling app" : "Proqram təminatını dayandırdıqda səhv baş verdi", - "Disable" : "Dayandır", - "Enable" : "İşə sal", - "Error while enabling app" : "Proqram təminatını işə saldıqda səhv baş verdi", - "Updating...." : "Yenilənir...", - "Error while updating app" : "Proqram təminatı yeniləndikdə səhv baş verdi", - "Updated" : "Yeniləndi", - "Uninstalling ...." : "Silinir...", - "Error while uninstalling app" : "Proqram təminatını sildikdə səhv baş verdi", - "Uninstall" : "Sil", - "Valid until {date}" : "Müddətədək keçərlidir {date}", - "Delete" : "Sil", - "Select a profile picture" : "Profil üçün şəkli seç", - "Very weak password" : "Çox asan şifrə", - "Weak password" : "Asan şifrə", - "So-so password" : "Elə-belə şifrə", - "Good password" : "Yaxşı şifrə", - "Strong password" : "Çətin şifrə", - "Groups" : "Qruplar", - "Unable to delete {objName}" : "{objName} silmək olmur", - "A valid group name must be provided" : "Düzgün qrup adı təyin edilməlidir", - "deleted {groupName}" : "{groupName} silindi", - "undo" : "geriyə", - "no group" : "qrup yoxdur", - "never" : "heç vaxt", - "deleted {userName}" : "{userName} silindi", - "add group" : "qrupu əlavə et", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Şifrənin dəyişdirilməsi data itkisinə gətirəcək ona görə ki, datanın bərpası bu istifadəçi üçün movcud deyil.", - "A valid username must be provided" : "Düzgün istifadəçi adı daxil edilməlidir", - "A valid password must be provided" : "Düzgün şifrə daxil edilməlidir", - "A valid email must be provided" : "Düzgün email təqdim edilməlidir", - "__language_name__" : "__AZ_Azerbaijan__", - "Unlimited" : "Limitsiz", - "Personal info" : "Şəxsi məlumat", - "Sync clients" : "Müştəriləri sinxronizasiya et", - "Everything (fatal issues, errors, warnings, info, debug)" : "Hər şey(ən pis hadisələr, səhvlər, xəbərdarlıqlar, məlmat, araşdırma səhvləri)", - "Info, warnings, errors and fatal issues" : "Məlmat, xəbərdarlıqlar, səhvlər və ən pis hadisələr", - "Warnings, errors and fatal issues" : "Xəbərdarlıqlar, səhvlər və ən pis hadisələr", - "Errors and fatal issues" : "Səhvlər və ən pis hadisələr", - "Fatal issues only" : "Yalnız ən pis hadisələr", - "None" : "Heç bir", - "Login" : "Giriş", - "Plain" : "Adi", - "NT LAN Manager" : "NT LAN Manager", - "SSL" : "SSL", - "TLS" : "TLS", - "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." : "Yalnız-Oxuma işə salınıb. Bu web-interface vasitəsilə edilən bəzi konfiqlərin qarşısını alır. Bundan başqa, fayl əllə edilən istənilən yenilınmə üçün yazılma yetkisinə sahib olmalıdır. ", - "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP göründüyü kimi, daxili doc bloklarının ayrılması işini görəcək. Bu bəzi özək proqramlarını əlçatılmaz edə bilər.", - "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Bu ola bilər ki, cache/accelerator such tərəfindən cağırılıb hansi ki, Zend OPcache və eAccelerator-da olduğu kimidir.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Sizin servef Microsoft Windows-da işləyir. Optimal istifadəçi təcrübəsi üçün, təkidlə Linux məsləhət görürük.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP-nin modulu 'fileinfo' mövcud deyil. Mime-type təyin edilməsi üçün, modulun aktivləşdirilməsini təkidlə məsləhət görürük.", - "System locale can not be set to a one which supports UTF-8." : "UTF-8 dsətklənən sistemdə daxili vaxt və dil təyinatı ola bilməz. ", - "This means that there might be problems with certain characters in file names." : "Bu o deməkdir ki, orda faylın adında bəzi simvollarda problemlər var.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Biz təkidlə təklif edirik ki, göstərilən dillər üçün tələb edilən paketləri sisteminizdə yükləyəsiniz: %s.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Eger sizin yüklənməniz root domain-də yüklənməyibsə və sistem cron-u istifadə edirsə, orda URL generasiyası ilə bağlı problemləriniz ola bilər. Bu problemləri aşmaq üçün xahiş olunur yüklənmə vaxtı \"overwrite.cli.url\" opsiyasını config.php faylında webroot ünvanı olaraq təyin edəsiniz (Məsləhətdir: \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "CRON işini CLİ-dan yerinə yetirmək mümkün olmadı. Görünən texniki səhv baş verdi.", - "Open documentation" : "Sənədləri aç", - "Allow apps to use the Share API" : "Proqramlara izin verin ki, Paylaşım API-sindən istifadə edə bilsinlər.", - "Allow users to share via link" : "Istifadəçilərə link üzərindən paylaşım etməyə izin vermək", - "Enforce password protection" : "Şifrə müdafiəsini həyata keçirmək", - "Allow public uploads" : "Ümumi yüklənmələrə izin vermək", - "Allow users to send mail notification for shared files" : "Yayımlanmış fayllar üçün, istifadəçilərə məktubla xəbərdarlığın yollanmasına izin verir", - "Set default expiration date" : "Susmaya görə olan bitmə vaxtını təyin edin", - "Expire after " : "Bitir sonra", - "days" : "günlər", - "Enforce expiration date" : "Bitmə tarixini həyata keçir", - "Allow resharing" : "Yenidən paylaşıma izin", - "Restrict users to only share with users in their groups" : "İstifadəçiləri yalnız yerləşdikləri qrup üzvləri ilə paylaşım edə bilmələrini məhdudla", - "Allow users to send mail notification for shared files to other users" : "İstifadəçilərə etdikləri paylaşımı digər istifadəçilərə mail vasitəsilə xəbərdarlıq göndərilməsinə izin verin", - "Exclude groups from sharing" : "Qrupları paylaşımdan ayır", - "These groups will still be able to receive shares, but not to initiate them." : "Bu qruplar paylaşımları hələdə ala biləcəklər ancaq, yarada bilməyəcəklər", - "Last cron job execution: %s." : "Son cron yerinə yetirilməsi işi: %s.", - "Last cron job execution: %s. Something seems wrong." : "Son cron yerinə yetirilməsi: %s. Nə isə yalnış görünür.", - "Cron was not executed yet!" : "Cron hələ yerinə yetirilməyib!", - "Execute one task with each page loaded" : "Hər səhifə yüklənməsində bir işi yerinə yetir", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php qeydə alınmış webcron servisdir hansi ki, http üzərindən hər 15 dəqiqədən bir cron.php çağırır.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Sistemin cron servisindən istifadə edin ki, cron.php faylını hər 15 dəqiqədən bir işə salasınız.", - "This is used for sending out notifications." : "Kənara xəbərdarlıqları ötürmək üçün bu istifadə edilir.", - "Send mode" : "Göndərmə rejimi", - "Encryption" : "Şifrələnmə", - "From address" : "Ünvandan", - "mail" : "poçt", - "Authentication method" : "Qeydiyyat metodikası", - "Authentication required" : "Qeydiyyat tələb edilir", - "Server address" : "Server ünvanı", - "Port" : "Port", - "Credentials" : "Səlahiyyətlər", - "SMTP Username" : "SMTP İstifadəçi adı", - "SMTP Password" : "SMTP Şifrəsi", - "Store credentials" : "Səlahiyyətləri saxla", - "Test email settings" : "Email qurmalarını test et", - "Send email" : "Email yolla", - "Download logfile" : "Jurnal faylını endir", - "More" : "Yenə", - "Less" : "Az", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Jurnal faylı 100MB-dan çoxdur. Onun endirilməsi müəyyən vaxt ala bilər.", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLinte verilənlər bazası kimi istifadə edilir. Geniş tətbiq üçün, biz məsləhət görürük ki, arxa sonluqda fərqli verilənlər bazasından istifadə edəsiniz. ", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Xüsusilə fayl sinxronizasiyası üçün desktop client-dən istifadə edilərsə, SQLite məsləhət görülmür.", - "How to do backups" : "Rezerv nüsxələr neçə edilisin", - "Advanced monitoring" : "İrəliləmiş monitoring", - "Version" : "Versiya", - "Developer documentation" : "Yaradıcı sənədləşməsi", - "Documentation:" : "Sənədləşmə:", - "Show description …" : "Açıqlanmanı göstər ...", - "Hide description …" : "Açıqlamanı gizlət ...", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Bu proqram yüklənə bilməz ona görə ki, göstərilən asılılıqlar yerinə yetirilməyib:", - "Enable only for specific groups" : "Yalnız spesifik qruplara izin ver", - "Uninstall App" : "Proqram təminatını sil", - "Common Name" : "Ümumi ad", - "Valid until" : "Vaxtadək keçərlidir", - "Issued By" : "Tərəfindən yaradılıb", - "Valid until %s" : "Keçərlidir vaxtadək %s", - "Import root certificate" : "root sertifikatı import et", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Ey ora,<br><br>ancaq deyirik ki, sizin artiq %s hesabınız var.<br><br>Sizin istifadəçi adınız: %s<br>Yetkilidir: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Şərəfə!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Ey ora,\n\nancaq deyirik ki, sizin artiq %s hesabınız var.\n\nizin istifadəçi adınız: %s\nYetkilidir: %s\n\n", - "Forum" : "Forum", - "Profile picture" : "Profil şəkli", - "Upload new" : "Yenisini yüklə", - "Remove image" : "Şəkili sil", - "Cancel" : "Dayandır", - "Full name" : "Tam ad", - "No display name set" : "Ekranda adı dəsti yoxdur", - "Email" : "Email", - "Your email address" : "Sizin email ünvanı", - "No email address set" : "Email ünvanı dəsti yoxdur", - "You are member of the following groups:" : "Siz göstərilən qrupların üzvüsünüz:", - "Password" : "Şifrə", - "Unable to change your password" : "Sizin şifrəni dəyişmək mümkün olmadı", - "Current password" : "Hazırkı şifrə", - "New password" : "Yeni şifrə", - "Change password" : "Şifrəni dəyiş", - "Language" : "Dil", - "Help translate" : "Tərcüməyə kömək", - "Get the apps to sync your files" : "Fayllarınızın sinxronizasiyası üçün proqramları götürün", - "Desktop client" : "Desktop client", - "Android app" : "Android proqramı", - "iOS app" : "iOS proqramı", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Əgər siz proektə dəstək vermək istəyirsinizsə\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">Təkmilləşdirməyə üzv</a>\n\t\tyada\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">söz yaymaq</a>!", - "Show First Run Wizard again" : "İlk işəsalma sehirbazını yenidən göstər", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Tərəfindən yaradılıb{communityopen}ownCloud cəmiyyəti{linkclose}, {githubopen}mənbə kodları{linkclose} altında lisenziya edilib {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}.", - "Show storage location" : "Depo ünvanını göstər", - "Show last log in" : "Son girişi göstər", - "Show user backend" : "Daxili istifadəçini göstər", - "Send email to new user" : "Yeni istifadəçiyə məktub yolla", - "Show email address" : "Email ünvanını göstər", - "Username" : "İstifadəçi adı", - "E-Mail" : "E-Mail", - "Create" : "Yarat", - "Admin Recovery Password" : "İnzibatçı bərpa şifrəsi", - "Enter the recovery password in order to recover the users files during password change" : "Şifrə dəyişilməsi müddətində, səliqə ilə bərpa açarını daxil et ki, istifadəçi fayllları bərpa edilsin. ", - "Add Group" : "Qrup əlavə et", - "Group" : "Qrup", - "Everyone" : "Hamı", - "Admins" : "İnzibatçılar", - "Default Quota" : "Susmaya görə olan norma", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Xahiş olunur depo normasını daxil edəsiniz (Məs: \"512 MB\" yada \"12 GB\")", - "Other" : "Digər", - "Full Name" : "Tam ad", - "Group Admin for" : "üçün qrup inzibatçısı", - "Quota" : "Norma", - "Storage Location" : "Depo yeri", - "User Backend" : "İstifadəçı bazası", - "Last Login" : "Son giriş", - "change full name" : "tam adı dəyiş", - "set new password" : "yeni şifrə təyin et", - "change email address" : "email ünvanını dəyiş", - "Default" : "Susmaya görə" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/bg_BG.js b/settings/l10n/bg_BG.js deleted file mode 100644 index 8dda3bef52b..00000000000 --- a/settings/l10n/bg_BG.js +++ /dev/null @@ -1,221 +0,0 @@ -OC.L10N.register( - "settings", - { - "Security & setup warnings" : "Предупреждения за сигурност и настройки", - "Sharing" : "Споделяне", - "External Storage" : "Външно Дисково Пространство", - "Cron" : "Крон", - "Log" : "Лог", - "Updates" : "Обновления", - "Couldn't remove app." : "Неуспешно премахване на приложението.", - "Language changed" : "Езикът е променен", - "Invalid request" : "Невалидна заявка", - "Authentication error" : "Възникна проблем с идентификацията", - "Admins can't remove themself from the admin group" : "Администраторите не могат да премахват себе си от групата \"admin\".", - "Unable to add user to group %s" : "Неуспешно добавяне на потребител към групата %s.", - "Unable to remove user from group %s" : "Неуспешно премахване на потребител от групата %s.", - "Couldn't update app." : "Обновяването на приложението е неуспешно..", - "Wrong password" : "Грешна парола", - "No user supplied" : "Липсва потребителско име", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Моля, посочете администраторската парола за възстановяване. В противен случай, всичката информация на потребителите ще бъде загубена.", - "Wrong admin recovery password. Please check the password and try again." : "Грешна администраторска парола за възстановяване. Моля, проверете паролата и опитайте отново.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Сървърът не позволява смяна на паролата, но потребителския ключ за криптиране беше успешно обновен.", - "Unable to change password" : "Неуспешна смяна на паролата.", - "Enabled" : "Включено", - "Not enabled" : "Изключено", - "Group already exists." : "Групата вече съществува.", - "Unable to add group." : "Неуспешно добавяне на група.", - "Unable to delete group." : "Неуспешно изтриване на група", - "log-level out of allowed range" : "Ниво на проследяване \\(log-level\\) e извън допустимия обхват", - "Saved" : "Запаметяване", - "test email settings" : "проверка на настройките на електронна поща", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Настъпи проблем при изпращането на имейла. Моля, провери настройките. (Грешка: %s)", - "Email sent" : "Имейлът е изпратен", - "You need to set your user email before being able to send test emails." : "Трябва да зададете своя имейл преди да можете да изпращате тестови имейли.", - "Invalid mail address" : "невалиден адрес на електронна поща", - "A user with that name already exists." : "Потребител с това име вече съществува", - "Unable to create user." : "Неуспешно създаване на потребител.", - "Your %s account was created" : "Вашия %s профил бе създаден", - "Unable to delete user." : "Неуспешно изтриване на потребител.", - "Forbidden" : "Забранено", - "Invalid user" : "Невалиден протребител", - "Unable to change mail address" : "Неуспешна промяна на адрес на електронна поща", - "Email saved" : "Имейлът е запазен", - "Your full name has been changed." : "Вашето пълно име е променено.", - "Unable to change full name" : "Неуспешна промяна на пълното име.", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Сигурен/на ли сте, че искате \"{domain}\" да бъде добавен като сигурен домейн?", - "Add trusted domain" : "Добавяне на сигурен домейн", - "Sending..." : "Изпращане...", - "All" : "Всички", - "No apps found for your version" : "Няма намерени приложения за вашата версия", - "Update to %s" : "Обнови до %s", - "Please wait...." : "Моля, изчакайте....", - "Error while disabling app" : "Грешка при изключването на приложението", - "Disable" : "Изключване", - "Enable" : "Включване", - "Error while enabling app" : "Грешка при включване на приложението", - "Updating...." : "Обновяване...", - "Error while updating app" : "Грешка при обновяване на приложението.", - "Updated" : "Обновено", - "Uninstalling ...." : "Премахване ...", - "Error while uninstalling app" : "Грешка при премахването на приложението", - "Uninstall" : "Премахване", - "Valid until {date}" : "Далидна до {date}", - "Delete" : "Изтриване", - "Select a profile picture" : "Избиране на профилна снимка", - "Very weak password" : "Много слаба парола", - "Weak password" : "Слаба парола", - "So-so password" : "Не особено добра парола", - "Good password" : "Добра парола", - "Strong password" : "Сигурна парола", - "Groups" : "Групи", - "Unable to delete {objName}" : "Неуспешно изтриване на {objName}.", - "A valid group name must be provided" : "Очаква се валидно име на група", - "deleted {groupName}" : "{groupName} е изтрита", - "undo" : "възстановяване", - "no group" : "няма група", - "never" : "никога", - "deleted {userName}" : "{userName} е изтрит", - "add group" : "добавяне на група", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Промяна на паролата ще доведе до загуба на данни, защото не е налично възстановяване за този потребител.", - "A valid username must be provided" : "Трябва да бъде зададено валидно потребителско име", - "A valid password must be provided" : "Трябва да бъде зададена валидна парола", - "A valid email must be provided" : "Трябва да бъде зададена валидна електронна поща", - "__language_name__" : "Български", - "Unlimited" : "Неограничено", - "Personal info" : "Лична информация", - "Sync clients" : "Синхронизиращи клиенти", - "Everything (fatal issues, errors, warnings, info, debug)" : "Всичко (фатални проблеми, грешки, предупреждения, информация, дебъгване)", - "Info, warnings, errors and fatal issues" : "информация, предупреждения, грешки и фатални проблеми", - "Warnings, errors and fatal issues" : "Предупреждения, грешки и фатални проблеми", - "Errors and fatal issues" : "Грешки и фатални проблеми", - "Fatal issues only" : "Само фатални проблеми", - "None" : "Няма", - "Login" : "Вход", - "Plain" : "Обикновен", - "NT LAN Manager" : "NT LAN Manager", - "SSL" : "SSL", - "TLS" : "TLS", - "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP е настроен да премахва inline doc блокове. Това ще направи няколко основни приложения недостъпни.", - "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Това може да се дължи на кеш/акселератор като Zend OPache или eAccelerator.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Вашия сървър работи на Microsoft Windows. Ние горещо препоръчваме Linux за оптимално потребителско изживяване.", - "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 откриването.", - "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.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Ако инсталацията не е в основата на вашия домейн и използва системния cron, могат да възникнат проблеми с генерирането на URLи. За избягване на тези проблеми, моля настройте <code>overwrite.cli.url</code> опцията в config.php файла с мрежовия път към вашята инсталация (Вероятно : \\\"%s\\\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Не бе възможно да изпълним cron задачата през команден интерфейс. Следните технически грешки се появиха:", - "Allow apps to use the Share API" : "Разреши приложенията да използват Share API.", - "Allow users to share via link" : "Разреши потребителите да споделят с връзка", - "Enforce password protection" : "Изискай защита с парола.", - "Allow public uploads" : "Разреши общодостъпно качване", - "Allow users to send mail notification for shared files" : "Разреши потребителите да изпращат имейл уведомления за споделени файлове.", - "Set default expiration date" : "Заложи дата на изтичане по подразбиране", - "Expire after " : "Изтечи след", - "days" : "дена", - "Enforce expiration date" : "Изисквай дата на изтичане", - "Allow resharing" : "Разреши пресподеляне.", - "Restrict users to only share with users in their groups" : "Ограничи потребителите, така че да могат да споделят само с други потребители в своите групи.", - "Allow users to send mail notification for shared files to other users" : "Разреши потребителите да изпращат уведомителни писма за споделени файлове към други потребители.", - "Exclude groups from sharing" : "Забрани групи да споделят", - "These groups will still be able to receive shares, but not to initiate them." : "Тези групи ще могат да получават споделения, но няма да могат самите те да споделят.", - "Last cron job execution: %s." : "Последно изпълнение на cron задача: %s.", - "Last cron job execution: %s. Something seems wrong." : "Последно изпълнение на cron задача: %s. Нещо не е както трябва", - "Cron was not executed yet!" : "Cron oще не е изпълнен!", - "Execute one task with each page loaded" : "Изпълни по едно задание с всяка заредена страница.", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php е регистриран към webcron да се свързва с cron.php всеки 15 минути по http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Изполвай системната cron service, за връзка с cron.php файла всеки 15 минути.", - "This is used for sending out notifications." : "Това се използва за изпращане на уведомления.", - "Send mode" : "Режим на изпращане", - "Encryption" : "Криптиране", - "From address" : "От адрес", - "mail" : "поща", - "Authentication method" : "Метод за отризиране", - "Authentication required" : "Нужна е идентификация", - "Server address" : "Адрес на сървъра", - "Port" : "Порт", - "Credentials" : "Потр. име и парола", - "SMTP Username" : "SMTP Потребителско Име", - "SMTP Password" : "SMTP Парола", - "Store credentials" : "Запазвай креденциите", - "Test email settings" : "Настройки на проверяващия имейл", - "Send email" : "Изпрати имейл", - "Download logfile" : "Изтегли log файла", - "More" : "Още", - "Less" : "По-малко", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Log файла е по-голям от 100 MB. Изтеглянето му може да отнеме време!", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite е използваната база данни. За по-големи инсталации Ви препоръчваме да изберете друг сървър за бази данни.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Особено, когато използвате клиент за работен плот за синхронизация, използването на SQLite e непрепоръчително.", - "How to do backups" : "Как се правят резервни копия", - "Advanced monitoring" : "Разширено наблюдение", - "Performance tuning" : "Настройване на производителност", - "Improving the config.php" : "Подобряване на config.php", - "Theming" : "Промяна на облика", - "Version" : "Версия", - "Developer documentation" : "Документация за разработчици", - "Documentation:" : "Документация:", - "Show description …" : "Покажи описание ...", - "Hide description …" : "Скрии описание ...", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Това приложение не може да бъде инсталирано, защото следните зависимости не са удовлетворени:", - "Enable only for specific groups" : "Включи само за определени групи", - "Uninstall App" : "Премахни Приложението", - "Common Name" : "Познато Име", - "Valid until" : "Валиден до", - "Issued By" : "Издаден От", - "Valid until %s" : "Валиден до %s", - "Import root certificate" : "Импортиране на основен сертификат", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Здрасти,<br><br>Само да ти кажа, че имаш %s профил<br><br> Потребителя ти е: %s<br>Достъпи го: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Поздрави!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Здрасти,\n\nСамо да ти кажа, че имаш %s профил.\n\nПотребителя ти е: %s\nДостъпи го: %s\n", - "Forum" : "Форум", - "Profile picture" : "Аватар", - "Upload new" : "Качи нов", - "Remove image" : "Премахни изображението", - "Cancel" : "Отказ", - "Full name" : "Пълно име", - "No display name set" : "Няма настроено екранно име", - "Email" : "Имейл", - "Your email address" : "Твоят имейл адрес", - "No email address set" : "Няма настроен адрес на електронна поща", - "You are member of the following groups:" : "Ти си член на следните групи:", - "Password" : "Парола", - "Unable to change your password" : "Неуспешна промяна на паролата.", - "Current password" : "Текуща парола", - "New password" : "Нова парола", - "Change password" : "Промяна на паролата", - "Language" : "Език", - "Help translate" : "Помогни с превода", - "Get the apps to sync your files" : "Изтегли програми за синхронизиране на файловете ти", - "Desktop client" : "Клиент за настолен компютър", - "Android app" : "Андроид приложение", - "iOS app" : "iOS приложение", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Ако искаш да помогнеш на проекта:\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">присъедини се и пиши код</a>\n\t\tили\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">разпространи мълвата</a>!", - "Show First Run Wizard again" : "Покажи Настройките за Първоначално Зареждане отново", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Разработен от {communityopen}ownCloud общността {linkclose}, {githubopen}изходящия код{linkclose} е лицензиран под {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}.", - "Show storage location" : "Покажи място за запис", - "Show last log in" : "Покажи последно вписване", - "Send email to new user" : "Изпращай писмо към нов потребител", - "Show email address" : "Покажи адреса на електронната поща", - "Username" : "Потребителско Име", - "E-Mail" : "Електронна поща", - "Create" : "Създаване", - "Admin Recovery Password" : "Възстановяване на Администраторска Парола", - "Enter the recovery password in order to recover the users files during password change" : "Въведи паролата за възстановяване, за да възстановиш файловете на потребителите при промяна на паролата.", - "Add Group" : "Добави Група", - "Group" : "Група", - "Everyone" : "Всички", - "Admins" : "Администратори", - "Default Quota" : "Квота по подразбиране", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Моля, въведи квота за заделено място (пр. \"512 MB\" или \"12 GB\")", - "Other" : "Друга...", - "Full Name" : "Пълно Име", - "Group Admin for" : "Групов администратор за", - "Quota" : "Квота", - "Storage Location" : "Място за Запис", - "Last Login" : "Последно Вписване", - "change full name" : "промени пълното име", - "set new password" : "сложи нова парола", - "change email address" : "Смени адреса на елетронната поща", - "Default" : "По подразбиране" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/bg_BG.json b/settings/l10n/bg_BG.json deleted file mode 100644 index 2513a364ffe..00000000000 --- a/settings/l10n/bg_BG.json +++ /dev/null @@ -1,219 +0,0 @@ -{ "translations": { - "Security & setup warnings" : "Предупреждения за сигурност и настройки", - "Sharing" : "Споделяне", - "External Storage" : "Външно Дисково Пространство", - "Cron" : "Крон", - "Log" : "Лог", - "Updates" : "Обновления", - "Couldn't remove app." : "Неуспешно премахване на приложението.", - "Language changed" : "Езикът е променен", - "Invalid request" : "Невалидна заявка", - "Authentication error" : "Възникна проблем с идентификацията", - "Admins can't remove themself from the admin group" : "Администраторите не могат да премахват себе си от групата \"admin\".", - "Unable to add user to group %s" : "Неуспешно добавяне на потребител към групата %s.", - "Unable to remove user from group %s" : "Неуспешно премахване на потребител от групата %s.", - "Couldn't update app." : "Обновяването на приложението е неуспешно..", - "Wrong password" : "Грешна парола", - "No user supplied" : "Липсва потребителско име", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Моля, посочете администраторската парола за възстановяване. В противен случай, всичката информация на потребителите ще бъде загубена.", - "Wrong admin recovery password. Please check the password and try again." : "Грешна администраторска парола за възстановяване. Моля, проверете паролата и опитайте отново.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Сървърът не позволява смяна на паролата, но потребителския ключ за криптиране беше успешно обновен.", - "Unable to change password" : "Неуспешна смяна на паролата.", - "Enabled" : "Включено", - "Not enabled" : "Изключено", - "Group already exists." : "Групата вече съществува.", - "Unable to add group." : "Неуспешно добавяне на група.", - "Unable to delete group." : "Неуспешно изтриване на група", - "log-level out of allowed range" : "Ниво на проследяване \\(log-level\\) e извън допустимия обхват", - "Saved" : "Запаметяване", - "test email settings" : "проверка на настройките на електронна поща", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Настъпи проблем при изпращането на имейла. Моля, провери настройките. (Грешка: %s)", - "Email sent" : "Имейлът е изпратен", - "You need to set your user email before being able to send test emails." : "Трябва да зададете своя имейл преди да можете да изпращате тестови имейли.", - "Invalid mail address" : "невалиден адрес на електронна поща", - "A user with that name already exists." : "Потребител с това име вече съществува", - "Unable to create user." : "Неуспешно създаване на потребител.", - "Your %s account was created" : "Вашия %s профил бе създаден", - "Unable to delete user." : "Неуспешно изтриване на потребител.", - "Forbidden" : "Забранено", - "Invalid user" : "Невалиден протребител", - "Unable to change mail address" : "Неуспешна промяна на адрес на електронна поща", - "Email saved" : "Имейлът е запазен", - "Your full name has been changed." : "Вашето пълно име е променено.", - "Unable to change full name" : "Неуспешна промяна на пълното име.", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Сигурен/на ли сте, че искате \"{domain}\" да бъде добавен като сигурен домейн?", - "Add trusted domain" : "Добавяне на сигурен домейн", - "Sending..." : "Изпращане...", - "All" : "Всички", - "No apps found for your version" : "Няма намерени приложения за вашата версия", - "Update to %s" : "Обнови до %s", - "Please wait...." : "Моля, изчакайте....", - "Error while disabling app" : "Грешка при изключването на приложението", - "Disable" : "Изключване", - "Enable" : "Включване", - "Error while enabling app" : "Грешка при включване на приложението", - "Updating...." : "Обновяване...", - "Error while updating app" : "Грешка при обновяване на приложението.", - "Updated" : "Обновено", - "Uninstalling ...." : "Премахване ...", - "Error while uninstalling app" : "Грешка при премахването на приложението", - "Uninstall" : "Премахване", - "Valid until {date}" : "Далидна до {date}", - "Delete" : "Изтриване", - "Select a profile picture" : "Избиране на профилна снимка", - "Very weak password" : "Много слаба парола", - "Weak password" : "Слаба парола", - "So-so password" : "Не особено добра парола", - "Good password" : "Добра парола", - "Strong password" : "Сигурна парола", - "Groups" : "Групи", - "Unable to delete {objName}" : "Неуспешно изтриване на {objName}.", - "A valid group name must be provided" : "Очаква се валидно име на група", - "deleted {groupName}" : "{groupName} е изтрита", - "undo" : "възстановяване", - "no group" : "няма група", - "never" : "никога", - "deleted {userName}" : "{userName} е изтрит", - "add group" : "добавяне на група", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Промяна на паролата ще доведе до загуба на данни, защото не е налично възстановяване за този потребител.", - "A valid username must be provided" : "Трябва да бъде зададено валидно потребителско име", - "A valid password must be provided" : "Трябва да бъде зададена валидна парола", - "A valid email must be provided" : "Трябва да бъде зададена валидна електронна поща", - "__language_name__" : "Български", - "Unlimited" : "Неограничено", - "Personal info" : "Лична информация", - "Sync clients" : "Синхронизиращи клиенти", - "Everything (fatal issues, errors, warnings, info, debug)" : "Всичко (фатални проблеми, грешки, предупреждения, информация, дебъгване)", - "Info, warnings, errors and fatal issues" : "информация, предупреждения, грешки и фатални проблеми", - "Warnings, errors and fatal issues" : "Предупреждения, грешки и фатални проблеми", - "Errors and fatal issues" : "Грешки и фатални проблеми", - "Fatal issues only" : "Само фатални проблеми", - "None" : "Няма", - "Login" : "Вход", - "Plain" : "Обикновен", - "NT LAN Manager" : "NT LAN Manager", - "SSL" : "SSL", - "TLS" : "TLS", - "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP е настроен да премахва inline doc блокове. Това ще направи няколко основни приложения недостъпни.", - "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Това може да се дължи на кеш/акселератор като Zend OPache или eAccelerator.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Вашия сървър работи на Microsoft Windows. Ние горещо препоръчваме Linux за оптимално потребителско изживяване.", - "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 откриването.", - "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.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Ако инсталацията не е в основата на вашия домейн и използва системния cron, могат да възникнат проблеми с генерирането на URLи. За избягване на тези проблеми, моля настройте <code>overwrite.cli.url</code> опцията в config.php файла с мрежовия път към вашята инсталация (Вероятно : \\\"%s\\\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Не бе възможно да изпълним cron задачата през команден интерфейс. Следните технически грешки се появиха:", - "Allow apps to use the Share API" : "Разреши приложенията да използват Share API.", - "Allow users to share via link" : "Разреши потребителите да споделят с връзка", - "Enforce password protection" : "Изискай защита с парола.", - "Allow public uploads" : "Разреши общодостъпно качване", - "Allow users to send mail notification for shared files" : "Разреши потребителите да изпращат имейл уведомления за споделени файлове.", - "Set default expiration date" : "Заложи дата на изтичане по подразбиране", - "Expire after " : "Изтечи след", - "days" : "дена", - "Enforce expiration date" : "Изисквай дата на изтичане", - "Allow resharing" : "Разреши пресподеляне.", - "Restrict users to only share with users in their groups" : "Ограничи потребителите, така че да могат да споделят само с други потребители в своите групи.", - "Allow users to send mail notification for shared files to other users" : "Разреши потребителите да изпращат уведомителни писма за споделени файлове към други потребители.", - "Exclude groups from sharing" : "Забрани групи да споделят", - "These groups will still be able to receive shares, but not to initiate them." : "Тези групи ще могат да получават споделения, но няма да могат самите те да споделят.", - "Last cron job execution: %s." : "Последно изпълнение на cron задача: %s.", - "Last cron job execution: %s. Something seems wrong." : "Последно изпълнение на cron задача: %s. Нещо не е както трябва", - "Cron was not executed yet!" : "Cron oще не е изпълнен!", - "Execute one task with each page loaded" : "Изпълни по едно задание с всяка заредена страница.", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php е регистриран към webcron да се свързва с cron.php всеки 15 минути по http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Изполвай системната cron service, за връзка с cron.php файла всеки 15 минути.", - "This is used for sending out notifications." : "Това се използва за изпращане на уведомления.", - "Send mode" : "Режим на изпращане", - "Encryption" : "Криптиране", - "From address" : "От адрес", - "mail" : "поща", - "Authentication method" : "Метод за отризиране", - "Authentication required" : "Нужна е идентификация", - "Server address" : "Адрес на сървъра", - "Port" : "Порт", - "Credentials" : "Потр. име и парола", - "SMTP Username" : "SMTP Потребителско Име", - "SMTP Password" : "SMTP Парола", - "Store credentials" : "Запазвай креденциите", - "Test email settings" : "Настройки на проверяващия имейл", - "Send email" : "Изпрати имейл", - "Download logfile" : "Изтегли log файла", - "More" : "Още", - "Less" : "По-малко", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Log файла е по-голям от 100 MB. Изтеглянето му може да отнеме време!", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite е използваната база данни. За по-големи инсталации Ви препоръчваме да изберете друг сървър за бази данни.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Особено, когато използвате клиент за работен плот за синхронизация, използването на SQLite e непрепоръчително.", - "How to do backups" : "Как се правят резервни копия", - "Advanced monitoring" : "Разширено наблюдение", - "Performance tuning" : "Настройване на производителност", - "Improving the config.php" : "Подобряване на config.php", - "Theming" : "Промяна на облика", - "Version" : "Версия", - "Developer documentation" : "Документация за разработчици", - "Documentation:" : "Документация:", - "Show description …" : "Покажи описание ...", - "Hide description …" : "Скрии описание ...", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Това приложение не може да бъде инсталирано, защото следните зависимости не са удовлетворени:", - "Enable only for specific groups" : "Включи само за определени групи", - "Uninstall App" : "Премахни Приложението", - "Common Name" : "Познато Име", - "Valid until" : "Валиден до", - "Issued By" : "Издаден От", - "Valid until %s" : "Валиден до %s", - "Import root certificate" : "Импортиране на основен сертификат", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Здрасти,<br><br>Само да ти кажа, че имаш %s профил<br><br> Потребителя ти е: %s<br>Достъпи го: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Поздрави!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Здрасти,\n\nСамо да ти кажа, че имаш %s профил.\n\nПотребителя ти е: %s\nДостъпи го: %s\n", - "Forum" : "Форум", - "Profile picture" : "Аватар", - "Upload new" : "Качи нов", - "Remove image" : "Премахни изображението", - "Cancel" : "Отказ", - "Full name" : "Пълно име", - "No display name set" : "Няма настроено екранно име", - "Email" : "Имейл", - "Your email address" : "Твоят имейл адрес", - "No email address set" : "Няма настроен адрес на електронна поща", - "You are member of the following groups:" : "Ти си член на следните групи:", - "Password" : "Парола", - "Unable to change your password" : "Неуспешна промяна на паролата.", - "Current password" : "Текуща парола", - "New password" : "Нова парола", - "Change password" : "Промяна на паролата", - "Language" : "Език", - "Help translate" : "Помогни с превода", - "Get the apps to sync your files" : "Изтегли програми за синхронизиране на файловете ти", - "Desktop client" : "Клиент за настолен компютър", - "Android app" : "Андроид приложение", - "iOS app" : "iOS приложение", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Ако искаш да помогнеш на проекта:\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">присъедини се и пиши код</a>\n\t\tили\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">разпространи мълвата</a>!", - "Show First Run Wizard again" : "Покажи Настройките за Първоначално Зареждане отново", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Разработен от {communityopen}ownCloud общността {linkclose}, {githubopen}изходящия код{linkclose} е лицензиран под {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}.", - "Show storage location" : "Покажи място за запис", - "Show last log in" : "Покажи последно вписване", - "Send email to new user" : "Изпращай писмо към нов потребител", - "Show email address" : "Покажи адреса на електронната поща", - "Username" : "Потребителско Име", - "E-Mail" : "Електронна поща", - "Create" : "Създаване", - "Admin Recovery Password" : "Възстановяване на Администраторска Парола", - "Enter the recovery password in order to recover the users files during password change" : "Въведи паролата за възстановяване, за да възстановиш файловете на потребителите при промяна на паролата.", - "Add Group" : "Добави Група", - "Group" : "Група", - "Everyone" : "Всички", - "Admins" : "Администратори", - "Default Quota" : "Квота по подразбиране", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Моля, въведи квота за заделено място (пр. \"512 MB\" или \"12 GB\")", - "Other" : "Друга...", - "Full Name" : "Пълно Име", - "Group Admin for" : "Групов администратор за", - "Quota" : "Квота", - "Storage Location" : "Място за Запис", - "Last Login" : "Последно Вписване", - "change full name" : "промени пълното име", - "set new password" : "сложи нова парола", - "change email address" : "Смени адреса на елетронната поща", - "Default" : "По подразбиране" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/bn_BD.js b/settings/l10n/bn_BD.js deleted file mode 100644 index 52fae5ad939..00000000000 --- a/settings/l10n/bn_BD.js +++ /dev/null @@ -1,82 +0,0 @@ -OC.L10N.register( - "settings", - { - "Sharing" : "ভাগাভাগিরত", - "External Storage" : "বাহ্যিক সংরক্ষণাগার", - "Couldn't remove app." : "অ্যাপ অপসারণ করা গেলনা", - "Language changed" : "ভাষা পরিবর্তন করা হয়েছে", - "Invalid request" : "অনুরোধটি সঠিক নয়", - "Authentication error" : "অনুমোদন ঘটিত সমস্যা", - "Admins can't remove themself from the admin group" : "প্রশাসকবৃন্দ তাদেরকে প্রশাসক গোষ্ঠী থেকে মুছে ফেলতে পারবেন না", - "Unable to add user to group %s" : " %s গোষ্ঠীতে ব্যবহারকারী যোগ করা সম্ভব হলো না ", - "Unable to remove user from group %s" : "%s গোষ্ঠী থেকে ব্যবহারকারীকে অপসারণ করা সম্ভব হলো না", - "Couldn't update app." : "অ্যাপ নবায়ন করা গেলনা।", - "Wrong password" : "ভুল কুটশব্দ", - "No user supplied" : "ব্যবহারকারী দেয়া হয়নি", - "Enabled" : "কার্যকর", - "Saved" : "সংরক্ষণ করা হলো", - "test email settings" : "ইমেইল নিয়ামকসমূহ পরীক্ষা করুন", - "Email sent" : "ই-মেইল পাঠানো হয়েছে", - "Email saved" : "ই-মেইল সংরক্ষন করা হয়েছে", - "Your full name has been changed." : "আপনার পূর্ণ নাম পরিবর্তন করা হয়েছে।", - "All" : "সবাই", - "Error while disabling app" : "অ্যাপ অকার্যকর করতে সমস্যা দেখা দিয়েছে ", - "Disable" : "নিষ্ক্রিয়", - "Enable" : "সক্রিয় ", - "Error while enabling app" : "অ্যাপ কার্যকর করতে সমস্যা দেখা দিয়েছে ", - "Updating...." : "নবায়ন করা হচ্ছে....", - "Error while updating app" : "অ্যাপ নবায়ন করতে সমস্যা দেখা দিয়েছে ", - "Updated" : "নবায়নকৃত", - "Valid until {date}" : "বৈধতা বলবৎ আছে {তারিখ} অবধি ", - "Delete" : "মুছে", - "Strong password" : "শক্তিশালী কুটশব্দ", - "Groups" : "গোষ্ঠীসমূহ", - "undo" : "ক্রিয়া প্রত্যাহার", - "never" : "কখনোই নয়", - "__language_name__" : "__language_name__", - "Unlimited" : "অসীম", - "None" : "কোনটিই নয়", - "Login" : "প্রবেশ", - "Expire after " : "এরপর মেয়াদোত্তীর্ণ হও", - "days" : "দিনগুলি", - "Enforce expiration date" : "মেয়াদোত্তীর্ণ হওয়ার তারিখ কার্যকর করুন", - "Send mode" : "পাঠানো মোড", - "Encryption" : "সংকেতায়ন", - "From address" : "হইতে ঠিকানা", - "mail" : "মেইল", - "Server address" : "সার্ভার ঠিকানা", - "Port" : "পোর্ট", - "Send email" : "ইমেইল পাঠান ", - "More" : "বেশী", - "Less" : "কম", - "Version" : "ভার্সন", - "Cheers!" : "শুভেচ্ছা!", - "Forum" : "ফোরাম", - "Cancel" : "বাতির", - "Email" : "ইমেইল", - "Your email address" : "আপনার ই-মেইল ঠিকানা", - "Password" : "কূটশব্দ", - "Unable to change your password" : "আপনার কূটশব্দটি পরিবর্তন করতে সক্ষম নয়", - "Current password" : "বর্তমান কূটশব্দ", - "New password" : "নতুন কূটশব্দ", - "Change password" : "কূটশব্দ পরিবর্তন করুন", - "Language" : "ভাষা", - "Help translate" : "অনুবাদ করতে সহায়তা করুন", - "Get the apps to sync your files" : "আপনার ফাইলসমূহ সিংক করতে অ্যাপস নিন", - "Show First Run Wizard again" : "প্রথমবার চালানোর যাদুকর পূনরায় প্রদর্শন কর", - "Username" : "ব্যবহারকারী", - "Create" : "তৈরী কর", - "Admin Recovery Password" : "প্রশাসক পূণরূদ্ধার কুটশব্দ", - "Add Group" : "গ্রুপ যোগ কর", - "Group" : "গোষ্ঠীসমূহ", - "Everyone" : "সকলে", - "Admins" : "প্রশাসন", - "Other" : "অন্যান্য", - "Quota" : "কোটা", - "Storage Location" : "সংরক্ষণাগার এর অবস্থান", - "Last Login" : "শেষ লগইন", - "change full name" : "পুরোনাম পরিবর্তন করুন", - "set new password" : "নতুন কূটশব্দ নির্ধারণ করুন", - "Default" : "পূর্বনির্ধারিত" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/bn_BD.json b/settings/l10n/bn_BD.json deleted file mode 100644 index 82da15db3fc..00000000000 --- a/settings/l10n/bn_BD.json +++ /dev/null @@ -1,80 +0,0 @@ -{ "translations": { - "Sharing" : "ভাগাভাগিরত", - "External Storage" : "বাহ্যিক সংরক্ষণাগার", - "Couldn't remove app." : "অ্যাপ অপসারণ করা গেলনা", - "Language changed" : "ভাষা পরিবর্তন করা হয়েছে", - "Invalid request" : "অনুরোধটি সঠিক নয়", - "Authentication error" : "অনুমোদন ঘটিত সমস্যা", - "Admins can't remove themself from the admin group" : "প্রশাসকবৃন্দ তাদেরকে প্রশাসক গোষ্ঠী থেকে মুছে ফেলতে পারবেন না", - "Unable to add user to group %s" : " %s গোষ্ঠীতে ব্যবহারকারী যোগ করা সম্ভব হলো না ", - "Unable to remove user from group %s" : "%s গোষ্ঠী থেকে ব্যবহারকারীকে অপসারণ করা সম্ভব হলো না", - "Couldn't update app." : "অ্যাপ নবায়ন করা গেলনা।", - "Wrong password" : "ভুল কুটশব্দ", - "No user supplied" : "ব্যবহারকারী দেয়া হয়নি", - "Enabled" : "কার্যকর", - "Saved" : "সংরক্ষণ করা হলো", - "test email settings" : "ইমেইল নিয়ামকসমূহ পরীক্ষা করুন", - "Email sent" : "ই-মেইল পাঠানো হয়েছে", - "Email saved" : "ই-মেইল সংরক্ষন করা হয়েছে", - "Your full name has been changed." : "আপনার পূর্ণ নাম পরিবর্তন করা হয়েছে।", - "All" : "সবাই", - "Error while disabling app" : "অ্যাপ অকার্যকর করতে সমস্যা দেখা দিয়েছে ", - "Disable" : "নিষ্ক্রিয়", - "Enable" : "সক্রিয় ", - "Error while enabling app" : "অ্যাপ কার্যকর করতে সমস্যা দেখা দিয়েছে ", - "Updating...." : "নবায়ন করা হচ্ছে....", - "Error while updating app" : "অ্যাপ নবায়ন করতে সমস্যা দেখা দিয়েছে ", - "Updated" : "নবায়নকৃত", - "Valid until {date}" : "বৈধতা বলবৎ আছে {তারিখ} অবধি ", - "Delete" : "মুছে", - "Strong password" : "শক্তিশালী কুটশব্দ", - "Groups" : "গোষ্ঠীসমূহ", - "undo" : "ক্রিয়া প্রত্যাহার", - "never" : "কখনোই নয়", - "__language_name__" : "__language_name__", - "Unlimited" : "অসীম", - "None" : "কোনটিই নয়", - "Login" : "প্রবেশ", - "Expire after " : "এরপর মেয়াদোত্তীর্ণ হও", - "days" : "দিনগুলি", - "Enforce expiration date" : "মেয়াদোত্তীর্ণ হওয়ার তারিখ কার্যকর করুন", - "Send mode" : "পাঠানো মোড", - "Encryption" : "সংকেতায়ন", - "From address" : "হইতে ঠিকানা", - "mail" : "মেইল", - "Server address" : "সার্ভার ঠিকানা", - "Port" : "পোর্ট", - "Send email" : "ইমেইল পাঠান ", - "More" : "বেশী", - "Less" : "কম", - "Version" : "ভার্সন", - "Cheers!" : "শুভেচ্ছা!", - "Forum" : "ফোরাম", - "Cancel" : "বাতির", - "Email" : "ইমেইল", - "Your email address" : "আপনার ই-মেইল ঠিকানা", - "Password" : "কূটশব্দ", - "Unable to change your password" : "আপনার কূটশব্দটি পরিবর্তন করতে সক্ষম নয়", - "Current password" : "বর্তমান কূটশব্দ", - "New password" : "নতুন কূটশব্দ", - "Change password" : "কূটশব্দ পরিবর্তন করুন", - "Language" : "ভাষা", - "Help translate" : "অনুবাদ করতে সহায়তা করুন", - "Get the apps to sync your files" : "আপনার ফাইলসমূহ সিংক করতে অ্যাপস নিন", - "Show First Run Wizard again" : "প্রথমবার চালানোর যাদুকর পূনরায় প্রদর্শন কর", - "Username" : "ব্যবহারকারী", - "Create" : "তৈরী কর", - "Admin Recovery Password" : "প্রশাসক পূণরূদ্ধার কুটশব্দ", - "Add Group" : "গ্রুপ যোগ কর", - "Group" : "গোষ্ঠীসমূহ", - "Everyone" : "সকলে", - "Admins" : "প্রশাসন", - "Other" : "অন্যান্য", - "Quota" : "কোটা", - "Storage Location" : "সংরক্ষণাগার এর অবস্থান", - "Last Login" : "শেষ লগইন", - "change full name" : "পুরোনাম পরিবর্তন করুন", - "set new password" : "নতুন কূটশব্দ নির্ধারণ করুন", - "Default" : "পূর্বনির্ধারিত" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/bn_IN.js b/settings/l10n/bn_IN.js deleted file mode 100644 index 6891bfd9454..00000000000 --- a/settings/l10n/bn_IN.js +++ /dev/null @@ -1,10 +0,0 @@ -OC.L10N.register( - "settings", - { - "Saved" : "সংরক্ষিত", - "Delete" : "মুছে ফেলা", - "Cancel" : "বাতিল করা", - "Get the apps to sync your files" : "আপনার ফাইল সিঙ্ক করার অ্যাপ পান", - "Username" : "ইউজারনেম" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/bn_IN.json b/settings/l10n/bn_IN.json deleted file mode 100644 index 430cec27ef6..00000000000 --- a/settings/l10n/bn_IN.json +++ /dev/null @@ -1,8 +0,0 @@ -{ "translations": { - "Saved" : "সংরক্ষিত", - "Delete" : "মুছে ফেলা", - "Cancel" : "বাতিল করা", - "Get the apps to sync your files" : "আপনার ফাইল সিঙ্ক করার অ্যাপ পান", - "Username" : "ইউজারনেম" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/bs.js b/settings/l10n/bs.js deleted file mode 100644 index 1bb97de4374..00000000000 --- a/settings/l10n/bs.js +++ /dev/null @@ -1,189 +0,0 @@ -OC.L10N.register( - "settings", - { - "Sharing" : "Dijeljenje", - "Cron" : "Cron", - "Log" : "Zapisnik", - "Updates" : "Ažuriranja", - "Couldn't remove app." : "Nije moguće ukloniti aplikaciju.", - "Language changed" : "Jezik je promijenjen", - "Invalid request" : "Neispravan zahtjev", - "Authentication error" : "Grešna autentifikacije", - "Admins can't remove themself from the admin group" : "Administratori ne mogu sami sebe ukloniti iz admin grupe", - "Unable to add user to group %s" : "Dodavanje korisnika grupi %s nije moguće", - "Unable to remove user from group %s" : "Uklanjanje korisnika iz grupe %s nije moguće", - "Couldn't update app." : "Ažuriranje aplikacije nije moguće.", - "Wrong password" : "Pogrešna lozinka", - "No user supplied" : "Nijedan korisnik nije dostavljen", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Molim navedite admin lozinku za povratak, u protivnom će svi korisnički podaci biti izgubljeni", - "Wrong admin recovery password. Please check the password and try again." : "Pogrešna admin lozinka za povratak. Molim provjerite lozinku i pokušajte ponovno.", - "Unable to change password" : "Promjena lozinke nije moguća", - "Enabled" : "Aktivirano", - "Not enabled" : "Nije aktivirano", - "Group already exists." : "Grupa već postoji.", - "Unable to add group." : "Nemoguće dodati grupu.", - "Unable to delete group." : "Nemoguće izbrisati grupu.", - "Saved" : "Spremljeno", - "test email settings" : "testiraj postavke e-pošte", - "Email sent" : "E-pošta je poslana", - "You need to set your user email before being able to send test emails." : "Prije nego li ste u mogućnosti slati testnu email trebate postaviti svoj korisnički email.", - "Invalid mail address" : "Nevažeća adresa e-pošte", - "Unable to create user." : "Nemoguće kreirati korisnika", - "Your %s account was created" : "Vaš %s račun je kreiran", - "Unable to delete user." : "Nemoguće izbrisati korisnika", - "Forbidden" : "Zabranjeno", - "Invalid user" : "Nevažeči korisnik", - "Unable to change mail address" : "Nemoguće je izmjeniti adresu e-pošte", - "Email saved" : "E-pošta je spremljena", - "Your full name has been changed." : "Vaše puno ime je promijenjeno.", - "Unable to change full name" : "Puno ime nije moguće promijeniti", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Jeste li zaista sigurni da želite dodati \"{domain}\" kao pouzdanu domenu?", - "Add trusted domain" : "Dodaj pouzdanu domenu", - "Sending..." : "Slanje...", - "All" : "Sve", - "Update to %s" : "Ažuriraj na %s", - "Please wait...." : "Molim pričekajte...", - "Error while disabling app" : "Greška pri onemogućavanju aplikacije", - "Disable" : "Onemogući", - "Enable" : "Omogući", - "Error while enabling app" : "Greška pri omogućavanju aplikacije", - "Updating...." : "Ažuriranje...", - "Error while updating app" : "Greška pri ažuriranju aplikacije", - "Updated" : "Ažurirano", - "Uninstalling ...." : "Deinstaliranje....", - "Error while uninstalling app" : "Greška pri deinstaliranju aplikacije", - "Uninstall" : "Deinstaliraj", - "Valid until {date}" : "Validno do {date}", - "Delete" : "Izbriši", - "Select a profile picture" : "Odaberi sliku profila", - "Very weak password" : "Veoma slaba lozinka", - "Weak password" : "Slaba lozinka", - "So-so password" : "Tu-i-tamo lozinka", - "Good password" : "Dobra lozinka", - "Strong password" : "Jaka lozinka", - "Groups" : "Grupe", - "Unable to delete {objName}" : "Nije moguće izbrisati {objName}", - "A valid group name must be provided" : "Nužno je navesti valjani naziv grupe", - "deleted {groupName}" : "izbrisana {groupName}", - "undo" : "poništi", - "no group" : "nema grupe", - "never" : "nikad", - "deleted {userName}" : "izbrisan {userName}", - "add group" : "dodaj grupu", - "A valid username must be provided" : "Nužno je navesti valjano korisničko ime", - "A valid password must be provided" : "Nužno je navesti valjanu lozinku", - "A valid email must be provided" : "Nužno je navesti valjanu adresu e-pošte", - "__language_name__" : "__naziv_jezika___", - "Unlimited" : "Neograničeno", - "Everything (fatal issues, errors, warnings, info, debug)" : "Sve (fatalni problemi, greške, upozorenja, info, ispravljanje pogrešaka)", - "Info, warnings, errors and fatal issues" : "Informacije, upozorenja, greške i fatalni problemi", - "Warnings, errors and fatal issues" : "Upozorenja, greške i fatalni problemi", - "Errors and fatal issues" : "Greške i fatalni problemi", - "Fatal issues only" : "Samo fatalni problemi", - "None" : "Ništa", - "Login" : "Prijava", - "Plain" : "Čisti tekst", - "NT LAN Manager" : "NT LAN menedžer", - "SSL" : "SSL", - "TLS" : "TLS", - "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." : "Samo-čitajuća konfiguracija je podešena. Ovo spriječava postavljanje neke konfiguracije putem web-sučelja. Nadalje, datoteka mora biti omogućena ručnu izmjenu pri svakom ažuriranju.", - "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP je očigledno postavljen da se skine inline doc blokova. To će nekoliko osnovnih aplikacija učiniti nedostupnim.", - "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Uzrok tome je vjerojatno neki ubrzivač predmemorisanja kao što je Zend OPcache ili eAccelerator.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP modul 'fileinfo' nedostaje. Strogo vam preporučjem da taj modul omogućite kako biste dobili najbolje rezultate u detekciji mime vrste.", - "System locale can not be set to a one which supports UTF-8." : "Regionalnu šemu sustava nemoguće je postaviti na neku koja podržava UTF-8.", - "This means that there might be problems with certain characters in file names." : "To znači da se mogu javiti problemi s određenim znakovima u nazivu datoteke.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Strogo se preporučuje instaliranje zahtjevnih paketa na vašem sistemu koji podržavaju jednu od slijedećih regionalnih šemi: %s.", - "Allow apps to use the Share API" : "Dozvoli aplikacijama korištenje Share API", - "Allow users to share via link" : "Dozvoli korisnicima dijeljenje putem veze", - "Enforce password protection" : "Nametni zaštitu lozinke", - "Allow public uploads" : "Dozvoli javno učitavanje", - "Allow users to send mail notification for shared files" : "Dozvoli 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" : "Nametni datum isteka", - "Allow resharing" : "Dopustite ponovno dijeljenje", - "Restrict users to only share with users in their groups" : "Ograniči korisnike na međusobno dijeljenje resursa samo s korisnicima unutar svoje grupe", - "Allow users to send mail notification for shared files to other users" : "Dozvoli korisnicima slanje notifikacijske e-pošte za podijeljene datoteke ka ostalim korisnicima", - "Exclude groups from sharing" : "Isključite grupe iz dijeljenja", - "These groups will still be able to receive shares, but not to initiate them." : "Ove će grupe i dalje moći primati dijeljene resurse, ali ne i inicirati ih", - "Cron was not executed yet!" : "Cron još nije izvršen!", - "Execute one task with each page loaded" : "Izvrši jedan zadatak sa svakom učitanom stranicom", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php je registrovan na webcron usluzi da poziva cron.php svakih 15 minuta preko http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Koristite cron uslugu sustava za pozivanje cron.php datoteke svakih 15 minuta.", - "This is used for sending out notifications." : "Ovo se koristi za slanje notifikacija.", - "Send mode" : "Način rada za slanje", - "Encryption" : "Šifriranje", - "From address" : "S adrese", - "mail" : "pošta", - "Authentication method" : "Metoda autentifikacije", - "Authentication required" : "Potrebna autentifikacija", - "Server address" : "Adresa servera", - "Port" : "Priključak", - "Credentials" : "Vjerodajnice", - "SMTP Username" : "SMTP Korisničko ime", - "SMTP Password" : "SMPT Lozinka", - "Store credentials" : "Spremi vjerodajnice", - "Test email settings" : "Postavke za testnu e-poštu", - "Send email" : "Pošalji e-poštu", - "More" : "Više", - "Less" : "Manje", - "Version" : "Verzija", - "Documentation:" : "Dokumentacija:", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Ova aplikacija se ne može instalirati zbog slijedećih neispunjenih ovisnosti:", - "Enable only for specific groups" : "Omogućite samo za specifične grupe", - "Uninstall App" : "Deinstaliraj aplikaciju", - "Common Name" : "Opće Ime", - "Valid until" : "Validno do", - "Issued By" : "Izdano od", - "Valid until %s" : "Validno do %s", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Hej,<br><br>samo da javim da sad imate %s račum.<br><br>Vaše korisničko ime: %s<br>Pristupite mu: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Cheers!", - "Forum" : "Forum", - "Profile picture" : "Slika profila", - "Upload new" : "Učitaj novu", - "Remove image" : "Ukloni sliku", - "Cancel" : "Odustani", - "Email" : "E-pošta", - "Your email address" : "Vaša adresa e-pošte", - "Password" : "Lozinka", - "Unable to change your password" : "Vašu lozinku nije moguće promijeniti", - "Current password" : "Trenutna lozinka", - "New password" : "Nova lozinka", - "Change password" : "Promijeni lozinku", - "Language" : "Jezik", - "Help translate" : "Pomozi prevesti", - "Get the apps to sync your files" : "Koristite aplikacije za sinhronizaciju svojih datoteka", - "Desktop client" : "Desktop klijent", - "Android app" : "Android aplikacija", - "iOS app" : "iOS aplikacija", - "Show First Run Wizard again" : "Opet pokažite First Run Wizard", - "Show storage location" : "Prikaži mjesto pohrane", - "Show last log in" : "Prikaži zadnju prijavu", - "Show user backend" : "Prikaži korisničku pozadinu (backend)", - "Send email to new user" : "Pošalji e-poštu novom korisniku", - "Show email address" : "Prikaži adresu e-pošte", - "Username" : "Korisničko ime", - "E-Mail" : "E-pošta", - "Create" : "Kreiraj", - "Admin Recovery Password" : "Admin lozinka za oporavak", - "Enter the recovery password in order to recover the users files during password change" : "Unesite lozinku za oporavak da biste oporavili korisničke datoteke tokom promjene lozinke", - "Add Group" : "Dodaj Grupu", - "Group" : "Grupa", - "Everyone" : "Svi", - "Admins" : "Administratori", - "Default Quota" : "Zadana kvota", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Molim unesite kvotu za spremanje (npr: \"512 MB\" ili \"12 GB\")", - "Other" : "Ostali", - "Full Name" : "Puno ime", - "Group Admin for" : "Grupa Admin za", - "Quota" : "Kvota", - "Storage Location" : "Mjesto za spremanje", - "User Backend" : "Korisnička Pozadina (Backend)", - "Last Login" : "Zadnja prijava", - "change full name" : "promijeni puno ime", - "set new password" : "postavi novu lozinku", - "change email address" : "promjeni adresu e-pošte", - "Default" : "Zadano" -}, -"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"); diff --git a/settings/l10n/bs.json b/settings/l10n/bs.json deleted file mode 100644 index 5424e6141b0..00000000000 --- a/settings/l10n/bs.json +++ /dev/null @@ -1,187 +0,0 @@ -{ "translations": { - "Sharing" : "Dijeljenje", - "Cron" : "Cron", - "Log" : "Zapisnik", - "Updates" : "Ažuriranja", - "Couldn't remove app." : "Nije moguće ukloniti aplikaciju.", - "Language changed" : "Jezik je promijenjen", - "Invalid request" : "Neispravan zahtjev", - "Authentication error" : "Grešna autentifikacije", - "Admins can't remove themself from the admin group" : "Administratori ne mogu sami sebe ukloniti iz admin grupe", - "Unable to add user to group %s" : "Dodavanje korisnika grupi %s nije moguće", - "Unable to remove user from group %s" : "Uklanjanje korisnika iz grupe %s nije moguće", - "Couldn't update app." : "Ažuriranje aplikacije nije moguće.", - "Wrong password" : "Pogrešna lozinka", - "No user supplied" : "Nijedan korisnik nije dostavljen", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Molim navedite admin lozinku za povratak, u protivnom će svi korisnički podaci biti izgubljeni", - "Wrong admin recovery password. Please check the password and try again." : "Pogrešna admin lozinka za povratak. Molim provjerite lozinku i pokušajte ponovno.", - "Unable to change password" : "Promjena lozinke nije moguća", - "Enabled" : "Aktivirano", - "Not enabled" : "Nije aktivirano", - "Group already exists." : "Grupa već postoji.", - "Unable to add group." : "Nemoguće dodati grupu.", - "Unable to delete group." : "Nemoguće izbrisati grupu.", - "Saved" : "Spremljeno", - "test email settings" : "testiraj postavke e-pošte", - "Email sent" : "E-pošta je poslana", - "You need to set your user email before being able to send test emails." : "Prije nego li ste u mogućnosti slati testnu email trebate postaviti svoj korisnički email.", - "Invalid mail address" : "Nevažeća adresa e-pošte", - "Unable to create user." : "Nemoguće kreirati korisnika", - "Your %s account was created" : "Vaš %s račun je kreiran", - "Unable to delete user." : "Nemoguće izbrisati korisnika", - "Forbidden" : "Zabranjeno", - "Invalid user" : "Nevažeči korisnik", - "Unable to change mail address" : "Nemoguće je izmjeniti adresu e-pošte", - "Email saved" : "E-pošta je spremljena", - "Your full name has been changed." : "Vaše puno ime je promijenjeno.", - "Unable to change full name" : "Puno ime nije moguće promijeniti", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Jeste li zaista sigurni da želite dodati \"{domain}\" kao pouzdanu domenu?", - "Add trusted domain" : "Dodaj pouzdanu domenu", - "Sending..." : "Slanje...", - "All" : "Sve", - "Update to %s" : "Ažuriraj na %s", - "Please wait...." : "Molim pričekajte...", - "Error while disabling app" : "Greška pri onemogućavanju aplikacije", - "Disable" : "Onemogući", - "Enable" : "Omogući", - "Error while enabling app" : "Greška pri omogućavanju aplikacije", - "Updating...." : "Ažuriranje...", - "Error while updating app" : "Greška pri ažuriranju aplikacije", - "Updated" : "Ažurirano", - "Uninstalling ...." : "Deinstaliranje....", - "Error while uninstalling app" : "Greška pri deinstaliranju aplikacije", - "Uninstall" : "Deinstaliraj", - "Valid until {date}" : "Validno do {date}", - "Delete" : "Izbriši", - "Select a profile picture" : "Odaberi sliku profila", - "Very weak password" : "Veoma slaba lozinka", - "Weak password" : "Slaba lozinka", - "So-so password" : "Tu-i-tamo lozinka", - "Good password" : "Dobra lozinka", - "Strong password" : "Jaka lozinka", - "Groups" : "Grupe", - "Unable to delete {objName}" : "Nije moguće izbrisati {objName}", - "A valid group name must be provided" : "Nužno je navesti valjani naziv grupe", - "deleted {groupName}" : "izbrisana {groupName}", - "undo" : "poništi", - "no group" : "nema grupe", - "never" : "nikad", - "deleted {userName}" : "izbrisan {userName}", - "add group" : "dodaj grupu", - "A valid username must be provided" : "Nužno je navesti valjano korisničko ime", - "A valid password must be provided" : "Nužno je navesti valjanu lozinku", - "A valid email must be provided" : "Nužno je navesti valjanu adresu e-pošte", - "__language_name__" : "__naziv_jezika___", - "Unlimited" : "Neograničeno", - "Everything (fatal issues, errors, warnings, info, debug)" : "Sve (fatalni problemi, greške, upozorenja, info, ispravljanje pogrešaka)", - "Info, warnings, errors and fatal issues" : "Informacije, upozorenja, greške i fatalni problemi", - "Warnings, errors and fatal issues" : "Upozorenja, greške i fatalni problemi", - "Errors and fatal issues" : "Greške i fatalni problemi", - "Fatal issues only" : "Samo fatalni problemi", - "None" : "Ništa", - "Login" : "Prijava", - "Plain" : "Čisti tekst", - "NT LAN Manager" : "NT LAN menedžer", - "SSL" : "SSL", - "TLS" : "TLS", - "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." : "Samo-čitajuća konfiguracija je podešena. Ovo spriječava postavljanje neke konfiguracije putem web-sučelja. Nadalje, datoteka mora biti omogućena ručnu izmjenu pri svakom ažuriranju.", - "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP je očigledno postavljen da se skine inline doc blokova. To će nekoliko osnovnih aplikacija učiniti nedostupnim.", - "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Uzrok tome je vjerojatno neki ubrzivač predmemorisanja kao što je Zend OPcache ili eAccelerator.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP modul 'fileinfo' nedostaje. Strogo vam preporučjem da taj modul omogućite kako biste dobili najbolje rezultate u detekciji mime vrste.", - "System locale can not be set to a one which supports UTF-8." : "Regionalnu šemu sustava nemoguće je postaviti na neku koja podržava UTF-8.", - "This means that there might be problems with certain characters in file names." : "To znači da se mogu javiti problemi s određenim znakovima u nazivu datoteke.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Strogo se preporučuje instaliranje zahtjevnih paketa na vašem sistemu koji podržavaju jednu od slijedećih regionalnih šemi: %s.", - "Allow apps to use the Share API" : "Dozvoli aplikacijama korištenje Share API", - "Allow users to share via link" : "Dozvoli korisnicima dijeljenje putem veze", - "Enforce password protection" : "Nametni zaštitu lozinke", - "Allow public uploads" : "Dozvoli javno učitavanje", - "Allow users to send mail notification for shared files" : "Dozvoli 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" : "Nametni datum isteka", - "Allow resharing" : "Dopustite ponovno dijeljenje", - "Restrict users to only share with users in their groups" : "Ograniči korisnike na međusobno dijeljenje resursa samo s korisnicima unutar svoje grupe", - "Allow users to send mail notification for shared files to other users" : "Dozvoli korisnicima slanje notifikacijske e-pošte za podijeljene datoteke ka ostalim korisnicima", - "Exclude groups from sharing" : "Isključite grupe iz dijeljenja", - "These groups will still be able to receive shares, but not to initiate them." : "Ove će grupe i dalje moći primati dijeljene resurse, ali ne i inicirati ih", - "Cron was not executed yet!" : "Cron još nije izvršen!", - "Execute one task with each page loaded" : "Izvrši jedan zadatak sa svakom učitanom stranicom", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php je registrovan na webcron usluzi da poziva cron.php svakih 15 minuta preko http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Koristite cron uslugu sustava za pozivanje cron.php datoteke svakih 15 minuta.", - "This is used for sending out notifications." : "Ovo se koristi za slanje notifikacija.", - "Send mode" : "Način rada za slanje", - "Encryption" : "Šifriranje", - "From address" : "S adrese", - "mail" : "pošta", - "Authentication method" : "Metoda autentifikacije", - "Authentication required" : "Potrebna autentifikacija", - "Server address" : "Adresa servera", - "Port" : "Priključak", - "Credentials" : "Vjerodajnice", - "SMTP Username" : "SMTP Korisničko ime", - "SMTP Password" : "SMPT Lozinka", - "Store credentials" : "Spremi vjerodajnice", - "Test email settings" : "Postavke za testnu e-poštu", - "Send email" : "Pošalji e-poštu", - "More" : "Više", - "Less" : "Manje", - "Version" : "Verzija", - "Documentation:" : "Dokumentacija:", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Ova aplikacija se ne može instalirati zbog slijedećih neispunjenih ovisnosti:", - "Enable only for specific groups" : "Omogućite samo za specifične grupe", - "Uninstall App" : "Deinstaliraj aplikaciju", - "Common Name" : "Opće Ime", - "Valid until" : "Validno do", - "Issued By" : "Izdano od", - "Valid until %s" : "Validno do %s", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Hej,<br><br>samo da javim da sad imate %s račum.<br><br>Vaše korisničko ime: %s<br>Pristupite mu: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Cheers!", - "Forum" : "Forum", - "Profile picture" : "Slika profila", - "Upload new" : "Učitaj novu", - "Remove image" : "Ukloni sliku", - "Cancel" : "Odustani", - "Email" : "E-pošta", - "Your email address" : "Vaša adresa e-pošte", - "Password" : "Lozinka", - "Unable to change your password" : "Vašu lozinku nije moguće promijeniti", - "Current password" : "Trenutna lozinka", - "New password" : "Nova lozinka", - "Change password" : "Promijeni lozinku", - "Language" : "Jezik", - "Help translate" : "Pomozi prevesti", - "Get the apps to sync your files" : "Koristite aplikacije za sinhronizaciju svojih datoteka", - "Desktop client" : "Desktop klijent", - "Android app" : "Android aplikacija", - "iOS app" : "iOS aplikacija", - "Show First Run Wizard again" : "Opet pokažite First Run Wizard", - "Show storage location" : "Prikaži mjesto pohrane", - "Show last log in" : "Prikaži zadnju prijavu", - "Show user backend" : "Prikaži korisničku pozadinu (backend)", - "Send email to new user" : "Pošalji e-poštu novom korisniku", - "Show email address" : "Prikaži adresu e-pošte", - "Username" : "Korisničko ime", - "E-Mail" : "E-pošta", - "Create" : "Kreiraj", - "Admin Recovery Password" : "Admin lozinka za oporavak", - "Enter the recovery password in order to recover the users files during password change" : "Unesite lozinku za oporavak da biste oporavili korisničke datoteke tokom promjene lozinke", - "Add Group" : "Dodaj Grupu", - "Group" : "Grupa", - "Everyone" : "Svi", - "Admins" : "Administratori", - "Default Quota" : "Zadana kvota", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Molim unesite kvotu za spremanje (npr: \"512 MB\" ili \"12 GB\")", - "Other" : "Ostali", - "Full Name" : "Puno ime", - "Group Admin for" : "Grupa Admin za", - "Quota" : "Kvota", - "Storage Location" : "Mjesto za spremanje", - "User Backend" : "Korisnička Pozadina (Backend)", - "Last Login" : "Zadnja prijava", - "change full name" : "promijeni puno ime", - "set new password" : "postavi novu lozinku", - "change email address" : "promjeni adresu e-pošte", - "Default" : "Zadano" -},"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);" -}
\ No newline at end of file diff --git a/settings/l10n/ca.js b/settings/l10n/ca.js deleted file mode 100644 index 0683d152bfa..00000000000 --- a/settings/l10n/ca.js +++ /dev/null @@ -1,247 +0,0 @@ -OC.L10N.register( - "settings", - { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Avisos de seguretat i configuració", - "Sharing" : "Compartir", - "Server-side encryption" : "Xifrat del costat del servidor", - "External Storage" : "Emmagatzemament extern", - "Cron" : "Cron", - "Email server" : "Servidor de correu electrònic", - "Log" : "Registre", - "Tips & tricks" : "Consells i trucs", - "Updates" : "Actualitzacions", - "Couldn't remove app." : "No s'ha pogut eliminar l'aplicació", - "Language changed" : "S'ha canviat l'idioma", - "Invalid request" : "Sol·licitud no vàlida", - "Authentication error" : "Error d'autenticació", - "Admins can't remove themself from the admin group" : "Els administradors no es poden eliminar del grup admin", - "Unable to add user to group %s" : "No es pot afegir l'usuari al grup %s", - "Unable to remove user from group %s" : "No es pot eliminar l'usuari del grup %s", - "Couldn't update app." : "No s'ha pogut actualitzar l'aplicació.", - "Wrong password" : "Contrasenya incorrecta", - "No user supplied" : "No heu proporcionat cap usuari", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Sisplau, proporcioneu una contrasenya de recuperació d'administrador, altrament totes les dades d'usuari es perdran", - "Wrong admin recovery password. Please check the password and try again." : "La contrasenya de recuperació d'administrador és incorrecta. Comproveu-la i torneu-ho a intentar.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "El backend no admet canvis de contrasenya, però la clau de xifrat de l'usuari ha estat actualitzada satisfactòriament.", - "Unable to change password" : "No es pot canviar la contrasenya", - "Enabled" : "Activat", - "Not enabled" : "Desactivat", - "A problem occurred, please check your log files (Error: %s)" : "S'ha produït un problema, si us plau revisi els arxius de registre (Error: %s)", - "Migration Completed" : "Migració completada", - "Group already exists." : "El grup ja existeix.", - "Unable to add group." : "No es pot agregar el grup.", - "Unable to delete group." : "No es pot esborrar el grup.", - "log-level out of allowed range" : "Nivell d'autenticació fora del rang permès", - "Saved" : "Desat", - "test email settings" : "prova l'arranjament del correu", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Hi ha hagut un problema en enviar el correu. Revisi la seva configuració. (Error: %s)", - "Email sent" : "El correu electrónic s'ha enviat", - "You need to set your user email before being able to send test emails." : "Heu d'establir un nom d'usuari abans de poder enviar correus de prova.", - "Invalid mail address" : "Adreça de correu invàlida", - "A user with that name already exists." : "Ja existeix un usuari amb est nom.", - "Unable to create user." : "No es pot crear el usuari.", - "Your %s account was created" : "S'ha creat el seu compte %s", - "Unable to delete user." : "No es pot eliminar l'usuari", - "Forbidden" : "Prohibit", - "Invalid user" : "Usuari no vàlid", - "Unable to change mail address" : "No es pot canviar l'adreça de correu electrònic", - "Email saved" : "S'ha desat el correu electrònic", - "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", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Esteu seguir que voleu afegir \"{domain}\" com a un domini de confiança?", - "Add trusted domain" : "Afegir domini de confiança", - "Migration in progress. Please wait until the migration is finished" : "Migració en progrés. Si us plau, espereu fins que finalitzi la migració", - "Migration started …" : "Migració iniciada ...", - "Sending..." : "Enviant...", - "Official" : "Oficial", - "Approved" : "Aprovat", - "Experimental" : "Experimental", - "All" : "Tots", - "No apps found for your version" : "No s'han trobat aplicacions per la seva versió", - "Update to %s" : "Actualitzar a %s", - "Please wait...." : "Espereu...", - "Error while disabling app" : "Error en desactivar l'aplicació", - "Disable" : "Desactiva", - "Enable" : "Habilita", - "Error while enabling app" : "Error en activar l'aplicació", - "Updating...." : "Actualitzant...", - "Error while updating app" : "Error en actualitzar l'aplicació", - "Updated" : "Actualitzada", - "Uninstalling ...." : "Desintal·lant ...", - "Error while uninstalling app" : "Error en desinstal·lar l'aplicació", - "Uninstall" : "Desinstal·la", - "Valid until {date}" : "Vàlid fins {date}", - "Delete" : "Esborra", - "An error occurred: {message}" : "S'ha produït un error: {message}", - "Select a profile picture" : "Seleccioneu una imatge de perfil", - "Very weak password" : "Contrasenya massa feble", - "Weak password" : "Contrasenya feble", - "So-so password" : "Contrasenya passable", - "Good password" : "Contrasenya bona", - "Strong password" : "Contrasenya forta", - "Groups" : "Grups", - "Unable to delete {objName}" : "No es pot eliminar {objName}", - "A valid group name must be provided" : "Heu de facilitar un nom de grup vàlid", - "deleted {groupName}" : "eliminat {groupName}", - "undo" : "desfés", - "no group" : "sense grup", - "never" : "mai", - "deleted {userName}" : "eliminat {userName}", - "add group" : "afegeix grup", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Canviar la contrasenya provocarà pèrdua de dades, perquè la recuperació de dades no està disponible per a aquest usuari", - "A valid username must be provided" : "Heu de facilitar un nom d'usuari vàlid", - "A valid password must be provided" : "Heu de facilitar una contrasenya vàlida", - "A valid email must be provided" : "S'ha de subministrar una adreça de correu electrònic vàlida", - "__language_name__" : "Català", - "Unlimited" : "Il·limitat", - "Personal info" : "Informació personal", - "Sync clients" : "Sincronitzar clients", - "Everything (fatal issues, errors, warnings, info, debug)" : "Tot (problemes fatals, errors, avisos, informació, depuració)", - "Info, warnings, errors and fatal issues" : "Informació, avisos, errors i problemes fatals", - "Warnings, errors and fatal issues" : "Avisos, errors i problemes fatals", - "Errors and fatal issues" : "Errors i problemes fatals", - "Fatal issues only" : "Només problemes fatals", - "None" : "Cap", - "Login" : "Inici de sessió", - "Plain" : "Pla", - "NT LAN Manager" : "Gestor NT LAN", - "SSL" : "SSL", - "TLS" : "TLS", - "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." : "S'ha habilitat la configuració de només lectura. Això no permet ajustar algunes configuracions a través de la interfície web. A més, l'arxiu ha de fer-se modificable manualment per a cada actualització.", - "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.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "El seu servidor està funcionant amb Microsoft Windows. Li recomanem Linux encaridament per gaudir una experiència òptima com a usuari.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "El mòdul de PHP 'fileinfo' no s'ha trobat. Us recomanem que habiliteu aquest mòdul per obtenir millors resultats amb la detecció mime-type.", - "System locale can not be set to a one which supports UTF-8." : "No s'ha pogut establir cap localització del sistema amb suport per UTF-8.", - "This means that there might be problems with certain characters in file names." : "Això podria comportar problemes amb alguns caràcters en els noms dels fitxer.", - "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", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Si la seva instal·lació no està situada en l'arrel del domini i usa el sistema cron, pot haver-hi problemes en generar-se els URL. Per evitar-los, configuri l'opció \"overwrite.cli.url\" en el seu arxiu config.php perquè usi la ruta de l'arrel del lloc web de la seva instal·lació (suggeriment: \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "No va ser possible executar cronjob via CLI. Han aparegut els següents errors tècnics:", - "Open documentation" : "Obre la documentació", - "Allow apps to use the Share API" : "Permet que les aplicacions utilitzin l'API de compartir", - "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 to other users" : "Permetre als usuaris enviar notificacions per correu electrònic dels arxius compartits a d'altres usuaris", - "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.", - "Last cron job execution: %s." : "Última execució de la tasca cron: %s.", - "Last cron job execution: %s. Something seems wrong." : "Última execució de la tasca cron: %s. Alguna cosa sembla malament.", - "Cron was not executed yet!" : "El cron encara no s'ha executat!", - "Execute one task with each page loaded" : "Executa una tasca per cada paquet carregat", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php està registrat en un servei webcron que fa una crida a cron.php cada 15 minuts a través de http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Fer servir el cron del sistema per cridar el cron.php cada 15 minuts.", - "Enable server-side encryption" : "Habilitar xifrat en el servidor", - "Enable encryption" : "Habilitar xifrat", - "Start migration" : "Iniciar migració", - "This is used for sending out notifications." : "S'usa per enviar notificacions.", - "Send mode" : "Mode d'enviament", - "Encryption" : "Xifrat", - "From address" : "Des de l'adreça", - "mail" : "correu electrònic", - "Authentication method" : "Mètode d'autenticació", - "Authentication required" : "Es requereix autenticació", - "Server address" : "Adreça del servidor", - "Port" : "Port", - "Credentials" : "Credencials", - "SMTP Username" : "Nom d'usuari SMTP", - "SMTP Password" : "Contrasenya SMTP", - "Store credentials" : "Emmagatzemar credencials", - "Test email settings" : "Prova l'arranjament del correu", - "Send email" : "Envia correu", - "Download logfile" : "Descarregar arxiu de registre", - "More" : "Més", - "Less" : "Menys", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "L'arxiu de registre és més gran de 100 MB. La descàrrega pot trigar!", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "S'utilitza SQLite com a base de dades. Per a instal·lacions mes grans es recomana canviar a un altre sistema de base de dades.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "L'ús de SQLite està desaconsellat especialment quan s'usa el client d'escriptori per sincronitzar els fitxers.", - "How to do backups" : "Com fer còpies de seguretat", - "Advanced monitoring" : "Supervisió avançada", - "Performance tuning" : "Ajust del rendiment", - "Improving the config.php" : "Millorant el config.php", - "Theming" : "Tematització", - "Hardening and security guidance" : "Guia de protecció i seguretat", - "Version" : "Versió", - "Developer documentation" : "Documentació para desenvolupadors", - "Experimental applications ahead" : "A partir d'aquest punt hi ha aplicacions experimentals", - "Documentation:" : "Documentació:", - "User documentation" : "Documentació d'usuari", - "Show description …" : "Mostrar descripció...", - "Hide description …" : "Amagar descripció...", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Aquesta aplicació no es pot instal·lar perquè les següents dependències no es compleixen:", - "Enable only for specific groups" : "Activa només per grups específics", - "Uninstall App" : "Desinstal·la l'aplicació", - "Common Name" : "Nom comú", - "Valid until" : "Valid fins", - "Issued By" : "Emès Per", - "Valid until %s" : "Vàlid fins %s", - "Import root certificate" : "Importa certificat root", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Què tal?,<br><br>aquest missatge és per fer-li saber que ara té uncompte %s.<br><br>El seu nom d'usuari: %s<br>Accedeixi en: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Salut!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Hola, què tal?,\n\nAquest missatge és per fer-li saber que ara té un compte %s.\n\n El seu nom d'usuari: %s\nAccedeixi en: %s\n\n", - "Administrator documentation" : "Documentació d'administrador", - "Online documentation" : "Documentació en línia", - "Forum" : "Fòrum", - "Commercial support" : "Suport comercial", - "Profile picture" : "Foto de perfil", - "Upload new" : "Puja'n una de nova", - "Remove image" : "Elimina imatge", - "Cancel" : "Cancel·la", - "Full name" : "Nom complet", - "No display name set" : "No s'ha establert cap nom para mostrar", - "Email" : "Correu electrònic", - "Your email address" : "Correu electrònic", - "No email address set" : "No s'ha establert cap adreça de correu", - "You are member of the following groups:" : "Vostè és membre dels següents grups:", - "Password" : "Contrasenya", - "Unable to change your password" : "No s'ha pogut canviar la contrasenya", - "Current password" : "Contrasenya actual", - "New password" : "Contrasenya nova", - "Change password" : "Canvia la contrasenya", - "Language" : "Idioma", - "Help translate" : "Ajudeu-nos amb la traducció", - "Get the apps to sync your files" : "Obtingueu les aplicacions per sincronitzar els vostres fitxers", - "Desktop client" : "Client d'escriptori", - "Android app" : "aplicació para Android", - "iOS app" : "aplicació para iOS", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Si vol recolzar el projecte\n⇥⇥<a href=\"https://owncloud.org/contribute\"\n⇥⇥⇥target=\"_blank\" rel=\"noreferrer\"> unir-se al desenvolupament</a>\n⇥⇥o\n⇥⇥<a href=\"https://owncloud.org/promote\"\n⇥⇥⇥target=\"_blank\" rel=\"noreferrer\"> difondre'l !</a>!", - "Show First Run Wizard again" : "Torna a mostrar l'assistent de primera execució", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Desenvolupat per la {communityopen} comunitat ownCloud comunitat{linkclose} , el {githubopen} codi font {linkclose} està llicenciat sota la {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}.", - "Show storage location" : "Mostra la ubicació del magatzem", - "Show last log in" : "Mostrar l'últim accés", - "Show user backend" : "Mostrar backend d'usuari", - "Send email to new user" : "Enviar correu electrònic al nou usuari", - "Show email address" : "Mostrar l'adreça de correu electrònic", - "Username" : "Nom d'usuari", - "E-Mail" : "E-mail", - "Create" : "Crea", - "Admin Recovery Password" : "Recuperació de contrasenya d'administrador", - "Enter the recovery password in order to recover the users files during password change" : "Escriviu la contrasenya de recuperació per a poder recuperar els fitxers dels usuaris en canviar la contrasenya", - "Add Group" : "Afegeix grup", - "Group" : "Grup", - "Everyone" : "Tothom", - "Admins" : "Administradors", - "Default Quota" : "Quota per defecte", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Escriviu la quota d'emmagatzemament (per ex.: \"512 MB\" o \"12 GB\")", - "Other" : "Un altre", - "Full Name" : "Nom complet", - "Group Admin for" : "Grup Admin per", - "Quota" : "Quota", - "Storage Location" : "Ubicació de l'emmagatzemament", - "User Backend" : "Backend d'usuari", - "Last Login" : "Últim accés", - "change full name" : "canvia el nom complet", - "set new password" : "estableix nova contrasenya", - "change email address" : "canvi d'adreça de correu electrònic", - "Default" : "Per defecte" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/ca.json b/settings/l10n/ca.json deleted file mode 100644 index efdaceb580e..00000000000 --- a/settings/l10n/ca.json +++ /dev/null @@ -1,245 +0,0 @@ -{ "translations": { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Avisos de seguretat i configuració", - "Sharing" : "Compartir", - "Server-side encryption" : "Xifrat del costat del servidor", - "External Storage" : "Emmagatzemament extern", - "Cron" : "Cron", - "Email server" : "Servidor de correu electrònic", - "Log" : "Registre", - "Tips & tricks" : "Consells i trucs", - "Updates" : "Actualitzacions", - "Couldn't remove app." : "No s'ha pogut eliminar l'aplicació", - "Language changed" : "S'ha canviat l'idioma", - "Invalid request" : "Sol·licitud no vàlida", - "Authentication error" : "Error d'autenticació", - "Admins can't remove themself from the admin group" : "Els administradors no es poden eliminar del grup admin", - "Unable to add user to group %s" : "No es pot afegir l'usuari al grup %s", - "Unable to remove user from group %s" : "No es pot eliminar l'usuari del grup %s", - "Couldn't update app." : "No s'ha pogut actualitzar l'aplicació.", - "Wrong password" : "Contrasenya incorrecta", - "No user supplied" : "No heu proporcionat cap usuari", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Sisplau, proporcioneu una contrasenya de recuperació d'administrador, altrament totes les dades d'usuari es perdran", - "Wrong admin recovery password. Please check the password and try again." : "La contrasenya de recuperació d'administrador és incorrecta. Comproveu-la i torneu-ho a intentar.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "El backend no admet canvis de contrasenya, però la clau de xifrat de l'usuari ha estat actualitzada satisfactòriament.", - "Unable to change password" : "No es pot canviar la contrasenya", - "Enabled" : "Activat", - "Not enabled" : "Desactivat", - "A problem occurred, please check your log files (Error: %s)" : "S'ha produït un problema, si us plau revisi els arxius de registre (Error: %s)", - "Migration Completed" : "Migració completada", - "Group already exists." : "El grup ja existeix.", - "Unable to add group." : "No es pot agregar el grup.", - "Unable to delete group." : "No es pot esborrar el grup.", - "log-level out of allowed range" : "Nivell d'autenticació fora del rang permès", - "Saved" : "Desat", - "test email settings" : "prova l'arranjament del correu", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Hi ha hagut un problema en enviar el correu. Revisi la seva configuració. (Error: %s)", - "Email sent" : "El correu electrónic s'ha enviat", - "You need to set your user email before being able to send test emails." : "Heu d'establir un nom d'usuari abans de poder enviar correus de prova.", - "Invalid mail address" : "Adreça de correu invàlida", - "A user with that name already exists." : "Ja existeix un usuari amb est nom.", - "Unable to create user." : "No es pot crear el usuari.", - "Your %s account was created" : "S'ha creat el seu compte %s", - "Unable to delete user." : "No es pot eliminar l'usuari", - "Forbidden" : "Prohibit", - "Invalid user" : "Usuari no vàlid", - "Unable to change mail address" : "No es pot canviar l'adreça de correu electrònic", - "Email saved" : "S'ha desat el correu electrònic", - "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", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Esteu seguir que voleu afegir \"{domain}\" com a un domini de confiança?", - "Add trusted domain" : "Afegir domini de confiança", - "Migration in progress. Please wait until the migration is finished" : "Migració en progrés. Si us plau, espereu fins que finalitzi la migració", - "Migration started …" : "Migració iniciada ...", - "Sending..." : "Enviant...", - "Official" : "Oficial", - "Approved" : "Aprovat", - "Experimental" : "Experimental", - "All" : "Tots", - "No apps found for your version" : "No s'han trobat aplicacions per la seva versió", - "Update to %s" : "Actualitzar a %s", - "Please wait...." : "Espereu...", - "Error while disabling app" : "Error en desactivar l'aplicació", - "Disable" : "Desactiva", - "Enable" : "Habilita", - "Error while enabling app" : "Error en activar l'aplicació", - "Updating...." : "Actualitzant...", - "Error while updating app" : "Error en actualitzar l'aplicació", - "Updated" : "Actualitzada", - "Uninstalling ...." : "Desintal·lant ...", - "Error while uninstalling app" : "Error en desinstal·lar l'aplicació", - "Uninstall" : "Desinstal·la", - "Valid until {date}" : "Vàlid fins {date}", - "Delete" : "Esborra", - "An error occurred: {message}" : "S'ha produït un error: {message}", - "Select a profile picture" : "Seleccioneu una imatge de perfil", - "Very weak password" : "Contrasenya massa feble", - "Weak password" : "Contrasenya feble", - "So-so password" : "Contrasenya passable", - "Good password" : "Contrasenya bona", - "Strong password" : "Contrasenya forta", - "Groups" : "Grups", - "Unable to delete {objName}" : "No es pot eliminar {objName}", - "A valid group name must be provided" : "Heu de facilitar un nom de grup vàlid", - "deleted {groupName}" : "eliminat {groupName}", - "undo" : "desfés", - "no group" : "sense grup", - "never" : "mai", - "deleted {userName}" : "eliminat {userName}", - "add group" : "afegeix grup", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Canviar la contrasenya provocarà pèrdua de dades, perquè la recuperació de dades no està disponible per a aquest usuari", - "A valid username must be provided" : "Heu de facilitar un nom d'usuari vàlid", - "A valid password must be provided" : "Heu de facilitar una contrasenya vàlida", - "A valid email must be provided" : "S'ha de subministrar una adreça de correu electrònic vàlida", - "__language_name__" : "Català", - "Unlimited" : "Il·limitat", - "Personal info" : "Informació personal", - "Sync clients" : "Sincronitzar clients", - "Everything (fatal issues, errors, warnings, info, debug)" : "Tot (problemes fatals, errors, avisos, informació, depuració)", - "Info, warnings, errors and fatal issues" : "Informació, avisos, errors i problemes fatals", - "Warnings, errors and fatal issues" : "Avisos, errors i problemes fatals", - "Errors and fatal issues" : "Errors i problemes fatals", - "Fatal issues only" : "Només problemes fatals", - "None" : "Cap", - "Login" : "Inici de sessió", - "Plain" : "Pla", - "NT LAN Manager" : "Gestor NT LAN", - "SSL" : "SSL", - "TLS" : "TLS", - "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." : "S'ha habilitat la configuració de només lectura. Això no permet ajustar algunes configuracions a través de la interfície web. A més, l'arxiu ha de fer-se modificable manualment per a cada actualització.", - "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.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "El seu servidor està funcionant amb Microsoft Windows. Li recomanem Linux encaridament per gaudir una experiència òptima com a usuari.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "El mòdul de PHP 'fileinfo' no s'ha trobat. Us recomanem que habiliteu aquest mòdul per obtenir millors resultats amb la detecció mime-type.", - "System locale can not be set to a one which supports UTF-8." : "No s'ha pogut establir cap localització del sistema amb suport per UTF-8.", - "This means that there might be problems with certain characters in file names." : "Això podria comportar problemes amb alguns caràcters en els noms dels fitxer.", - "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", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Si la seva instal·lació no està situada en l'arrel del domini i usa el sistema cron, pot haver-hi problemes en generar-se els URL. Per evitar-los, configuri l'opció \"overwrite.cli.url\" en el seu arxiu config.php perquè usi la ruta de l'arrel del lloc web de la seva instal·lació (suggeriment: \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "No va ser possible executar cronjob via CLI. Han aparegut els següents errors tècnics:", - "Open documentation" : "Obre la documentació", - "Allow apps to use the Share API" : "Permet que les aplicacions utilitzin l'API de compartir", - "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 to other users" : "Permetre als usuaris enviar notificacions per correu electrònic dels arxius compartits a d'altres usuaris", - "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.", - "Last cron job execution: %s." : "Última execució de la tasca cron: %s.", - "Last cron job execution: %s. Something seems wrong." : "Última execució de la tasca cron: %s. Alguna cosa sembla malament.", - "Cron was not executed yet!" : "El cron encara no s'ha executat!", - "Execute one task with each page loaded" : "Executa una tasca per cada paquet carregat", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php està registrat en un servei webcron que fa una crida a cron.php cada 15 minuts a través de http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Fer servir el cron del sistema per cridar el cron.php cada 15 minuts.", - "Enable server-side encryption" : "Habilitar xifrat en el servidor", - "Enable encryption" : "Habilitar xifrat", - "Start migration" : "Iniciar migració", - "This is used for sending out notifications." : "S'usa per enviar notificacions.", - "Send mode" : "Mode d'enviament", - "Encryption" : "Xifrat", - "From address" : "Des de l'adreça", - "mail" : "correu electrònic", - "Authentication method" : "Mètode d'autenticació", - "Authentication required" : "Es requereix autenticació", - "Server address" : "Adreça del servidor", - "Port" : "Port", - "Credentials" : "Credencials", - "SMTP Username" : "Nom d'usuari SMTP", - "SMTP Password" : "Contrasenya SMTP", - "Store credentials" : "Emmagatzemar credencials", - "Test email settings" : "Prova l'arranjament del correu", - "Send email" : "Envia correu", - "Download logfile" : "Descarregar arxiu de registre", - "More" : "Més", - "Less" : "Menys", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "L'arxiu de registre és més gran de 100 MB. La descàrrega pot trigar!", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "S'utilitza SQLite com a base de dades. Per a instal·lacions mes grans es recomana canviar a un altre sistema de base de dades.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "L'ús de SQLite està desaconsellat especialment quan s'usa el client d'escriptori per sincronitzar els fitxers.", - "How to do backups" : "Com fer còpies de seguretat", - "Advanced monitoring" : "Supervisió avançada", - "Performance tuning" : "Ajust del rendiment", - "Improving the config.php" : "Millorant el config.php", - "Theming" : "Tematització", - "Hardening and security guidance" : "Guia de protecció i seguretat", - "Version" : "Versió", - "Developer documentation" : "Documentació para desenvolupadors", - "Experimental applications ahead" : "A partir d'aquest punt hi ha aplicacions experimentals", - "Documentation:" : "Documentació:", - "User documentation" : "Documentació d'usuari", - "Show description …" : "Mostrar descripció...", - "Hide description …" : "Amagar descripció...", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Aquesta aplicació no es pot instal·lar perquè les següents dependències no es compleixen:", - "Enable only for specific groups" : "Activa només per grups específics", - "Uninstall App" : "Desinstal·la l'aplicació", - "Common Name" : "Nom comú", - "Valid until" : "Valid fins", - "Issued By" : "Emès Per", - "Valid until %s" : "Vàlid fins %s", - "Import root certificate" : "Importa certificat root", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Què tal?,<br><br>aquest missatge és per fer-li saber que ara té uncompte %s.<br><br>El seu nom d'usuari: %s<br>Accedeixi en: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Salut!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Hola, què tal?,\n\nAquest missatge és per fer-li saber que ara té un compte %s.\n\n El seu nom d'usuari: %s\nAccedeixi en: %s\n\n", - "Administrator documentation" : "Documentació d'administrador", - "Online documentation" : "Documentació en línia", - "Forum" : "Fòrum", - "Commercial support" : "Suport comercial", - "Profile picture" : "Foto de perfil", - "Upload new" : "Puja'n una de nova", - "Remove image" : "Elimina imatge", - "Cancel" : "Cancel·la", - "Full name" : "Nom complet", - "No display name set" : "No s'ha establert cap nom para mostrar", - "Email" : "Correu electrònic", - "Your email address" : "Correu electrònic", - "No email address set" : "No s'ha establert cap adreça de correu", - "You are member of the following groups:" : "Vostè és membre dels següents grups:", - "Password" : "Contrasenya", - "Unable to change your password" : "No s'ha pogut canviar la contrasenya", - "Current password" : "Contrasenya actual", - "New password" : "Contrasenya nova", - "Change password" : "Canvia la contrasenya", - "Language" : "Idioma", - "Help translate" : "Ajudeu-nos amb la traducció", - "Get the apps to sync your files" : "Obtingueu les aplicacions per sincronitzar els vostres fitxers", - "Desktop client" : "Client d'escriptori", - "Android app" : "aplicació para Android", - "iOS app" : "aplicació para iOS", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Si vol recolzar el projecte\n⇥⇥<a href=\"https://owncloud.org/contribute\"\n⇥⇥⇥target=\"_blank\" rel=\"noreferrer\"> unir-se al desenvolupament</a>\n⇥⇥o\n⇥⇥<a href=\"https://owncloud.org/promote\"\n⇥⇥⇥target=\"_blank\" rel=\"noreferrer\"> difondre'l !</a>!", - "Show First Run Wizard again" : "Torna a mostrar l'assistent de primera execució", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Desenvolupat per la {communityopen} comunitat ownCloud comunitat{linkclose} , el {githubopen} codi font {linkclose} està llicenciat sota la {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}.", - "Show storage location" : "Mostra la ubicació del magatzem", - "Show last log in" : "Mostrar l'últim accés", - "Show user backend" : "Mostrar backend d'usuari", - "Send email to new user" : "Enviar correu electrònic al nou usuari", - "Show email address" : "Mostrar l'adreça de correu electrònic", - "Username" : "Nom d'usuari", - "E-Mail" : "E-mail", - "Create" : "Crea", - "Admin Recovery Password" : "Recuperació de contrasenya d'administrador", - "Enter the recovery password in order to recover the users files during password change" : "Escriviu la contrasenya de recuperació per a poder recuperar els fitxers dels usuaris en canviar la contrasenya", - "Add Group" : "Afegeix grup", - "Group" : "Grup", - "Everyone" : "Tothom", - "Admins" : "Administradors", - "Default Quota" : "Quota per defecte", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Escriviu la quota d'emmagatzemament (per ex.: \"512 MB\" o \"12 GB\")", - "Other" : "Un altre", - "Full Name" : "Nom complet", - "Group Admin for" : "Grup Admin per", - "Quota" : "Quota", - "Storage Location" : "Ubicació de l'emmagatzemament", - "User Backend" : "Backend d'usuari", - "Last Login" : "Últim accés", - "change full name" : "canvia el nom complet", - "set new password" : "estableix nova contrasenya", - "change email address" : "canvi d'adreça de correu electrònic", - "Default" : "Per defecte" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/cs_CZ.js b/settings/l10n/cs_CZ.js deleted file mode 100644 index d6eb0ecf843..00000000000 --- a/settings/l10n/cs_CZ.js +++ /dev/null @@ -1,298 +0,0 @@ -OC.L10N.register( - "settings", - { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Upozornění zabezpečení a nastavení", - "Sharing" : "Sdílení", - "Server-side encryption" : "Šifrování na serveru", - "External Storage" : "Externí úložiště", - "Cron" : "Cron", - "Email server" : "Emailový server", - "Log" : "Záznam", - "Tips & tricks" : "Tipy a triky", - "Updates" : "Aktualizace", - "Couldn't remove app." : "Nepodařilo se odebrat aplikaci.", - "Language changed" : "Jazyk byl změněn", - "Invalid request" : "Neplatný požadavek", - "Authentication error" : "Chyba přihlášení", - "Admins can't remove themself from the admin group" : "Správci se nemohou odebrat sami ze skupiny správců", - "Unable to add user to group %s" : "Nelze přidat uživatele do skupiny %s", - "Unable to remove user from group %s" : "Nelze odebrat uživatele ze skupiny %s", - "Couldn't update app." : "Nelze aktualizovat aplikaci.", - "Wrong password" : "Nesprávné heslo", - "No user supplied" : "Nebyl uveden uživatel", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Zadejte prosím administrátorské heslo pro obnovu, jinak budou všechna data ztracena", - "Wrong admin recovery password. Please check the password and try again." : "Chybné administrátorské heslo pro obnovu. Překontrolujte správnost hesla a zkuste to znovu.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Úložiště nepodporuje změnu hesla, ale šifrovací klíč uživatele byl úspěšně aktualizován.", - "Unable to change password" : "Změna hesla se nezdařila", - "Enabled" : "Povoleno", - "Not enabled" : "Vypnuto", - "installing and updating apps via the app store or Federated Cloud Sharing" : "Instalovat a aktualizovat aplikace pomocí obchodu nebo Sdíleného Cloudového Úložiště", - "Federated Cloud Sharing" : "Propojené cloudové sdílení", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL používá zastaralou %s verzi (%s). Aktualizujte prosím svůj operační systém, jinak funkce jako %s nemusí spolehlivě pracovat.", - "A problem occurred, please check your log files (Error: %s)" : "Došlo k chybě, zkontrolujte prosím log (Chyba: %s)", - "Migration Completed" : "Migrace dokončena", - "Group already exists." : "Skupina již existuje.", - "Unable to add group." : "Nelze přidat skupinu.", - "Unable to delete group." : "Nelze smazat skupinu.", - "log-level out of allowed range" : "úroveň logování z povoleného rozpětí", - "Saved" : "Uloženo", - "test email settings" : "Test nastavení emailu", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Při odesílání emailu nastala chyba. Překontrolujte prosím svá nastavení. (Error: %s)", - "Email sent" : "Email odeslán", - "You need to set your user email before being able to send test emails." : "Pro možnost odeslání zkušebních emailů musíte nejprve nastavit svou emailovou adresu.", - "Invalid mail address" : "Neplatná emailová adresa", - "A user with that name already exists." : "Uživatel tohoto jména již existuje.", - "Unable to create user." : "Nelze vytvořit uživatele.", - "Your %s account was created" : "Účet %s byl vytvořen", - "Unable to delete user." : "Nelze smazat uživatele.", - "Forbidden" : "Zakázáno", - "Invalid user" : "Neplatný uživatel", - "Unable to change mail address" : "Nelze změnit emailovou adresu", - "Email saved" : "Email ulož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", - "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", - "Migration in progress. Please wait until the migration is finished" : "Migrace probíhá. Počkejte prosím než bude dokončena", - "Migration started …" : "Migrace spuštěna ...", - "Sending..." : "Odesílání...", - "Official" : "Oficiální", - "Approved" : "Potvrzeno", - "Experimental" : "Experimentální", - "All" : "Vše", - "No apps found for your version" : "Nebyly nalezeny aplikace pro vaši verzi", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Oficiální aplikace jsou vyvíjeny komunitou ownCloud. Nabízejí funkce důležité pro ownCloud a jsou připraveny pro nasazení v produkčním prostředí.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Schválené aplikace jsou vyvíjeny důvěryhodnými vývojáři a prošly zběžným bezpečnostním prověřením. Jsou aktivně udržovány v repozitáři s otevřeným kódem a jejich správci je považují za stabilní pro občasné až normální použití.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "U této aplikace nebyla provedena kontrola na bezpečnostní problémy. Aplikace je nová nebo nestabilní. Instalujte pouze na vlastní nebezpečí.", - "Update to %s" : "Aktualizovat na %s", - "_You have %n app update pending_::_You have %n app updates pending_" : ["Je dostupná %n čekající aktualizace aplikace","Jsou dostupné %n čekající aktualizace aplikací","Je dostupných %n čekajících aktualizací aplikací"], - "Please wait...." : "Čekejte prosím...", - "Error while disabling app" : "Chyba při zakazování aplikace", - "Disable" : "Zakázat", - "Enable" : "Povolit", - "Error while enabling app" : "Chyba při povolování aplikace", - "Error: this app cannot be enabled because it makes the server unstable" : "Chyba: tuto aplikaci nelze zapnout, protože způsobuje nestabilitu serveru", - "Error: could not disable broken app" : "Chyba: nezdařilo se vypnout rozbitou aplikaci", - "Error while disabling broken app" : "Chyba při vypínání rozbité aplikace", - "Updating...." : "Aktualizuji...", - "Error while updating app" : "Chyba při aktualizaci aplikace", - "Updated" : "Aktualizováno", - "Uninstalling ...." : "Probíhá odinstalace ...", - "Error while uninstalling app" : "Chyba při odinstalaci aplikace", - "Uninstall" : "Odinstalovat", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Aplikace byla povolena ale je třeba ji aktualizovat. Za 5 sekund budete přesměrování na stránku pro aktualizaci.", - "App update" : "Aktualizace aplikace", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Došlo k chybě. Nahrajte prosím ASCII-kódovaný PEM certifikát.", - "Valid until {date}" : "Platný do {date}", - "Delete" : "Smazat", - "An error occurred: {message}" : "Nastala chyba: {message}", - "Select a profile picture" : "Vyberte profilový obrázek", - "Very weak password" : "Velmi slabé heslo", - "Weak password" : "Slabé heslo", - "So-so password" : "Středně silné heslo", - "Good password" : "Dobré heslo", - "Strong password" : "Silné heslo", - "Groups" : "Skupiny", - "Unable to delete {objName}" : "Nelze smazat {objName}", - "Error creating group: {message}" : "Chyba vytvoření skupiny: {message}", - "A valid group name must be provided" : "Musíte zadat platný název skupiny", - "deleted {groupName}" : "smazána {groupName}", - "undo" : "vrátit zpět", - "no group" : "není ve skupině", - "never" : "nikdy", - "deleted {userName}" : "smazán {userName}", - "add group" : "přidat skupinu", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Změna hesla bude mít za následek ztrátu dat, protože jejich obnova není pro tohoto uživatele dostupná.", - "A valid username must be provided" : "Musíte zadat platné uživatelské jméno", - "Error creating user: {message}" : "Chyba vytvoření uživatele: {message}", - "A valid password must be provided" : "Musíte zadat platné heslo", - "A valid email must be provided" : "Musíte zadat platný email", - "__language_name__" : "Česky", - "Unlimited" : "Neomezeně", - "Personal info" : "Osobní informace", - "Sync clients" : "Synchronizační klienti", - "Everything (fatal issues, errors, warnings, info, debug)" : "Vše (fatální problémy, chyby, varování, informační, ladící)", - "Info, warnings, errors and fatal issues" : "Informace, varování, chyby a fatální problémy", - "Warnings, errors and fatal issues" : "Varování, chyby a fatální problémy", - "Errors and fatal issues" : "Chyby a fatální problémy", - "Fatal issues only" : "Pouze fatální problémy", - "None" : "Žádné", - "Login" : "Přihlásit", - "Plain" : "Čistý text", - "NT LAN Manager" : "Správce NT LAN", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "php není nejspíše správně nastaveno pro dotazování na proměnné hodnoty systému. Test s getenv(\"PATH\") vrací pouze prázdnou odpověď.", - "Please check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation documentation ↗</a> for php configuration notes and the php configuration of your server, especially when using php-fpm." : "Zkontrolujte prosím konfiguraci php podle <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">instalační dokumentace ↗</a>, hlavně při použití php-fpm.", - "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." : "Konfigurace je nastavena pouze pro čtení. Toto znemožňuje některá nastavení přes webové rozhraní. Dále musí být pro každou změnu povolen zápis do konfiguračního souboru ručně.", - "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP je patrně nastaveno tak, aby odstraňovalo bloky komentářů. Toto bude mít za následek nedostupnost množství hlavních aplikací.", - "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Toto je pravděpodobně způsobeno aplikacemi pro urychlení načítání jako jsou Zend OPcache nebo eAccelerator.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Server běží v prostředí Microsoft Windows. Pro optimální uživatelské pohodlí doporučujeme přejít na Linux.", - "%1$s below version %2$s is installed, for stability and performance reasons we recommend updating to a newer %1$s version." : "Je nainstalován %1$s nižší verze než %2$s, z důvodu lepší stability a výkonu doporučujeme aktualizovat na novější verzi %1$s.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Schází PHP modul 'fileinfo'. Doporučujeme jej povolit pro nejlepší výsledky detekce typů MIME.", - "Transactional file locking is disabled, this might lead to issues with race conditions. Enable 'filelocking.enabled' in config.php to avoid these problems. See the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a> for more information." : "Transakční uzamykání souborů je vypnuto, což může vést k problémům s \"race\" podmínkami. Pro zabránění těmto problémům povolte 'filelocking.enabled' v souboru config.php. Více informací lze nalézt v <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">dokumentaci ↗</a>.", - "System locale can not be set to a one which supports UTF-8." : "Není možné nastavit znakovou sadu, která podporuje UTF-8.", - "This means that there might be problems with certain characters in file names." : "To znamená, že se mohou vyskytnout problémy s určitými znaky v názvech souborů.", - "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.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Instalace mimo kořenový adresář domény a používání systémového příkazu cron může způsobit problém s generováním správné URL. Pro zabránění těmto chybám nastavte prosím správnou cestu ve svém config.php souboru v hodnotě \"overwrite.cli.url\" (Je doporučena tato: \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Nebylo možné spustit službu cron v CLI. Došlo k následujícím technickým chybám:", - "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"#log-section\">log</a>." : "Prosím překontrolujte <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">instalační pokyny ↗</a> a zkontrolujte jakékoliv chyby a varování v <a href=\"#log-section\">logu</a>.", - "All checks passed." : "Všechny testy byly úspěšné.", - "Open documentation" : "Otevřít dokumentaci", - "Allow apps to use the Share API" : "Povolit aplikacím používat API sdílení", - "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 emailová 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í", - "Allow sharing with groups" : "Povolit sdílení se skupinami", - "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 to other users" : "Povolit uživatelům odesílat emailová upozornění na sdílené soubory ostatním uživatelům", - "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.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Povolit automatické vyplňování v dialogu sdílení. Pokud je toto vypnuto, je třeba ručně vyplňovat celé uživatelské jméno.", - "Last cron job execution: %s." : "Poslední cron proběhl: %s.", - "Last cron job execution: %s. Something seems wrong." : "Poslední cron proběhl: %s. Vypadá to, že něco není v pořádku.", - "Cron was not executed yet!" : "Cron ještě nebyl spuštěn!", - "Execute one task with each page loaded" : "Spustit jednu úlohu s každým načtením stránky", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php je registrován u služby webcron, aby volal cron.php jednou za 15 minut přes http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Použít systémovou službu cron pro volání cron.php každých 15 minut.", - "Enable server-side encryption" : "Povolit šifrování na straně serveru", - "Please read carefully before activating server-side encryption: " : "Pročtěte prosím důkladně před aktivací šifrování dat na serveru:", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "Poté co je zapnuto šifrování, jsou od toho bodu všechny nahrávané soubory šifrovány serverem. Vypnout šifrování bude možné pouze později, až bude šifrovací modul tuto možnost podporovat a po splnění všech nutných podmínek (tzn. nastavení klíčů pro obnovení).", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "Samotné šifrování nezajistí bezpečnost systému. Projděte si dokumentaci aplikace ownCloud pro více informací o tom jak šifrovací aplikace funguje a jejím správném použití.", - "Be aware that encryption always increases the file size." : "Mějte na paměti, že šifrování vždy navýší velikost souboru.", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "Je vždy dobré vytvářet pravidelné zálohy svých dat, v případě zapnutého šifrování také zajistěte zálohu šifrovacích klíčů společně se zálohou dat.", - "This is the final warning: Do you really want to enable encryption?" : "Toto je poslední varování: Opravdu si přejete zapnout šifrování?", - "Enable encryption" : "Povolit šifrování", - "No encryption module loaded, please enable an encryption module in the app menu." : "Není načten žádný šifrovací modul, povolte ho prosím v menu aplikací.", - "Select default encryption module:" : "Vybrat výchozí šifrovací modul:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Musíte přenést své šifrovací klíče ze staré verze šifrování (ownCloud <= 8.0) na novou. Povolte prosím \"Default encryption module\" a spusťte příkaz 'occ encryption:migrate'", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Musíte přenést své šifrovací klíče ze staré verze šifrování (ownCloud <= 8.0) na novou.", - "Start migration" : "Spustit migraci", - "This is used for sending out notifications." : "Toto se používá pro odesílání upozornění.", - "Send mode" : "Mód odesílání", - "Encryption" : "Šifrování", - "From address" : "Adresa odesílatele", - "mail" : "email", - "Authentication method" : "Metoda ověření", - "Authentication required" : "Vyžadováno ověření", - "Server address" : "Adresa serveru", - "Port" : "Port", - "Credentials" : "Přihlašovací údaje", - "SMTP Username" : "SMTP uživatelské jméno ", - "SMTP Password" : "SMTP heslo", - "Store credentials" : "Ukládat přihlašovací údaje", - "Test email settings" : "Test nastavení emailu", - "Send email" : "Odeslat email", - "Download logfile" : "Stáhnout soubor logu", - "More" : "Více", - "Less" : "Méně", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Soubor logu je větší než 100 MB. Jeho stažení zabere nějaký čas!", - "What to log" : "Co se má logovat", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "Je použita databáze SQLite. Pro větší instalace doporučujeme přejít na robustnější databázi.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Obzvláště při používání klientské aplikace pro synchronizaci s desktopem není SQLite doporučeno.", - "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a>." : "Pro migraci na jinou databázi použijte v příkazovém řádku nástroj: 'occ db:convert-type' nebo nahlédněte do <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">dokumentace ↗</a>.", - "How to do backups" : "Jak vytvářet zálohy", - "Advanced monitoring" : "Pokročilé monitorování", - "Performance tuning" : "Ladění výkonu", - "Improving the config.php" : "Vylepšení souboru config.php", - "Theming" : "Vzhledy", - "Hardening and security guidance" : "Průvodce vylepšením bezpečnosti", - "Version" : "Verze", - "Developer documentation" : "Vývojářská dokumentace", - "Experimental applications ahead" : "Experimentální aplikace v pořadí", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Experimentální aplikace nejsou prověřovány na bezpečnostní chyby, mohou být nestabilní a velmi se měnit. Jejich instalací můžete způsobit ztrátu dat nebo bezpečnostní problémy.", - "by %s" : "%s", - "%s-licensed" : "%s-licencováno", - "Documentation:" : "Dokumentace:", - "User documentation" : "Dokumentace uživatele", - "Admin documentation" : "Dokumentace pro administrátory", - "Show description …" : "Zobrazit popis ...", - "Hide description …" : "Skrýt popis ...", - "This app has an update available." : "Pro tuto aplikaci je dostupná aktualizace.", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Tato aplikace nemá přiřazenou nejnižší verzi ownCloud. Toto povede k chybě v ownCloud 11 a vyšším.", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Tato aplikace nemá přiřazenou nejvyšší verzi ownCloud. Toto povede k chybě v ownCloud 11 a vyšším.", - "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:", - "Enable only for specific groups" : "Povolit pouze pro vybrané skupiny", - "Uninstall App" : "Odinstalovat aplikaci", - "Enable experimental apps" : "Povolit experimentální aplikace", - "SSL Root Certificates" : "Kořenové certifikáty SSL", - "Common Name" : "Common Name", - "Valid until" : "Platný do", - "Issued By" : "Vydal", - "Valid until %s" : "Platný do %s", - "Import root certificate" : "Import kořenového certifikátu", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Ahoj,<br><br>toto je oznámení o nově vytvořeném %s účtu.<br><br>Uživatelské jméno: %s<br>Přihlásit se dá zde: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Ať slouží!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Ahoj,\n\ntoto je oznámení o nově vytvořeném %s účtu.\n\nUživatelské jméno: %s\nPřihlásit se dá zde: %s\n", - "Administrator documentation" : "Dokumentace administrátora", - "Online documentation" : "Online dokumentace", - "Forum" : "Fórum", - "Issue tracker" : "Seznam chyb", - "Commercial support" : "Placená podpora", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "Používáte <strong>%s</strong> z <strong>%s</strong>", - "Profile picture" : "Profilový obrázek", - "Upload new" : "Nahrát nový", - "Select from Files" : "Vybrat ze Souborů", - "Remove image" : "Odebrat obrázek", - "png or jpg, max. 20 MB" : "png nebo jpg, max. 20 MB", - "Picture provided by original account" : "Obrázek je poskytován původním účtem", - "Cancel" : "Zrušit", - "Choose as profile picture" : "Vybrat jako profilový obrázek", - "Full name" : "Celé jméno", - "No display name set" : "Jméno pro zobrazení nenastaveno", - "Email" : "Email", - "Your email address" : "Vaše emailová adresa", - "For password recovery and notifications" : "Pro obnovení hesla a upozornění", - "No email address set" : "Emailová adresa není nastavena", - "You are member of the following groups:" : "Patříte do následujících skupin:", - "Password" : "Heslo", - "Unable to change your password" : "Změna vašeho hesla se nezdařila", - "Current password" : "Současné heslo", - "New password" : "Nové heslo", - "Change password" : "Změnit heslo", - "Language" : "Jazyk", - "Help translate" : "Pomoci s překladem", - "Get the apps to sync your files" : "Získat aplikace pro synchronizaci vašich souborů", - "Desktop client" : "Aplikace pro počítač", - "Android app" : "Aplikace pro Android", - "iOS app" : "iOS aplikace", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Chcete-li podpořit tento projekt\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">přidejte se k jeho vývoji</a>\n\t\tnebo\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">šiřte osvětu</a>!", - "Show First Run Wizard again" : "Znovu zobrazit průvodce prvním spuštěním", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Vyvíjeno {communityopen}komunitou ownCloud{linkclose}, {githubopen}zdrojový kód{linkclose} je licencován pod {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}.", - "Show storage location" : "Cesta k datům", - "Show last log in" : "Poslední přihlášení", - "Show user backend" : "Zobrazit uživatelskou podpůrnou vrstvu", - "Send email to new user" : "Poslat email novému uživateli", - "Show email address" : "Emailová adresa", - "Username" : "Uživatelské jméno", - "E-Mail" : "Email", - "Create" : "Vytvořit", - "Admin Recovery Password" : "Heslo obnovy správce", - "Enter the recovery password in order to recover the users files during password change" : "Zadejte heslo obnovy pro obnovení souborů uživatele při změně hesla", - "Add Group" : "Přidat skupinu", - "Group" : "Skupina", - "Everyone" : "Všichni", - "Admins" : "Administrátoři", - "Default Quota" : "Výchozí kvóta", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Zvolte prosím kvótu pro úložiště (např. \"512 MB\" nebo \"12 GB\")", - "Other" : "Jiný", - "Full Name" : "Celé jméno", - "Group Admin for" : "Správce skupiny ", - "Quota" : "Kvóta", - "Storage Location" : "Umístění úložiště", - "User Backend" : "Uživatelská podpůrná vrstva", - "Last Login" : "Poslední přihlášení", - "change full name" : "změnit celé jméno", - "set new password" : "nastavit nové heslo", - "change email address" : "změnit emailovou adresu", - "Default" : "Výchozí" -}, -"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"); diff --git a/settings/l10n/cs_CZ.json b/settings/l10n/cs_CZ.json deleted file mode 100644 index e5aa853f62e..00000000000 --- a/settings/l10n/cs_CZ.json +++ /dev/null @@ -1,296 +0,0 @@ -{ "translations": { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Upozornění zabezpečení a nastavení", - "Sharing" : "Sdílení", - "Server-side encryption" : "Šifrování na serveru", - "External Storage" : "Externí úložiště", - "Cron" : "Cron", - "Email server" : "Emailový server", - "Log" : "Záznam", - "Tips & tricks" : "Tipy a triky", - "Updates" : "Aktualizace", - "Couldn't remove app." : "Nepodařilo se odebrat aplikaci.", - "Language changed" : "Jazyk byl změněn", - "Invalid request" : "Neplatný požadavek", - "Authentication error" : "Chyba přihlášení", - "Admins can't remove themself from the admin group" : "Správci se nemohou odebrat sami ze skupiny správců", - "Unable to add user to group %s" : "Nelze přidat uživatele do skupiny %s", - "Unable to remove user from group %s" : "Nelze odebrat uživatele ze skupiny %s", - "Couldn't update app." : "Nelze aktualizovat aplikaci.", - "Wrong password" : "Nesprávné heslo", - "No user supplied" : "Nebyl uveden uživatel", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Zadejte prosím administrátorské heslo pro obnovu, jinak budou všechna data ztracena", - "Wrong admin recovery password. Please check the password and try again." : "Chybné administrátorské heslo pro obnovu. Překontrolujte správnost hesla a zkuste to znovu.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Úložiště nepodporuje změnu hesla, ale šifrovací klíč uživatele byl úspěšně aktualizován.", - "Unable to change password" : "Změna hesla se nezdařila", - "Enabled" : "Povoleno", - "Not enabled" : "Vypnuto", - "installing and updating apps via the app store or Federated Cloud Sharing" : "Instalovat a aktualizovat aplikace pomocí obchodu nebo Sdíleného Cloudového Úložiště", - "Federated Cloud Sharing" : "Propojené cloudové sdílení", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL používá zastaralou %s verzi (%s). Aktualizujte prosím svůj operační systém, jinak funkce jako %s nemusí spolehlivě pracovat.", - "A problem occurred, please check your log files (Error: %s)" : "Došlo k chybě, zkontrolujte prosím log (Chyba: %s)", - "Migration Completed" : "Migrace dokončena", - "Group already exists." : "Skupina již existuje.", - "Unable to add group." : "Nelze přidat skupinu.", - "Unable to delete group." : "Nelze smazat skupinu.", - "log-level out of allowed range" : "úroveň logování z povoleného rozpětí", - "Saved" : "Uloženo", - "test email settings" : "Test nastavení emailu", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Při odesílání emailu nastala chyba. Překontrolujte prosím svá nastavení. (Error: %s)", - "Email sent" : "Email odeslán", - "You need to set your user email before being able to send test emails." : "Pro možnost odeslání zkušebních emailů musíte nejprve nastavit svou emailovou adresu.", - "Invalid mail address" : "Neplatná emailová adresa", - "A user with that name already exists." : "Uživatel tohoto jména již existuje.", - "Unable to create user." : "Nelze vytvořit uživatele.", - "Your %s account was created" : "Účet %s byl vytvořen", - "Unable to delete user." : "Nelze smazat uživatele.", - "Forbidden" : "Zakázáno", - "Invalid user" : "Neplatný uživatel", - "Unable to change mail address" : "Nelze změnit emailovou adresu", - "Email saved" : "Email ulož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", - "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", - "Migration in progress. Please wait until the migration is finished" : "Migrace probíhá. Počkejte prosím než bude dokončena", - "Migration started …" : "Migrace spuštěna ...", - "Sending..." : "Odesílání...", - "Official" : "Oficiální", - "Approved" : "Potvrzeno", - "Experimental" : "Experimentální", - "All" : "Vše", - "No apps found for your version" : "Nebyly nalezeny aplikace pro vaši verzi", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Oficiální aplikace jsou vyvíjeny komunitou ownCloud. Nabízejí funkce důležité pro ownCloud a jsou připraveny pro nasazení v produkčním prostředí.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Schválené aplikace jsou vyvíjeny důvěryhodnými vývojáři a prošly zběžným bezpečnostním prověřením. Jsou aktivně udržovány v repozitáři s otevřeným kódem a jejich správci je považují za stabilní pro občasné až normální použití.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "U této aplikace nebyla provedena kontrola na bezpečnostní problémy. Aplikace je nová nebo nestabilní. Instalujte pouze na vlastní nebezpečí.", - "Update to %s" : "Aktualizovat na %s", - "_You have %n app update pending_::_You have %n app updates pending_" : ["Je dostupná %n čekající aktualizace aplikace","Jsou dostupné %n čekající aktualizace aplikací","Je dostupných %n čekajících aktualizací aplikací"], - "Please wait...." : "Čekejte prosím...", - "Error while disabling app" : "Chyba při zakazování aplikace", - "Disable" : "Zakázat", - "Enable" : "Povolit", - "Error while enabling app" : "Chyba při povolování aplikace", - "Error: this app cannot be enabled because it makes the server unstable" : "Chyba: tuto aplikaci nelze zapnout, protože způsobuje nestabilitu serveru", - "Error: could not disable broken app" : "Chyba: nezdařilo se vypnout rozbitou aplikaci", - "Error while disabling broken app" : "Chyba při vypínání rozbité aplikace", - "Updating...." : "Aktualizuji...", - "Error while updating app" : "Chyba při aktualizaci aplikace", - "Updated" : "Aktualizováno", - "Uninstalling ...." : "Probíhá odinstalace ...", - "Error while uninstalling app" : "Chyba při odinstalaci aplikace", - "Uninstall" : "Odinstalovat", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Aplikace byla povolena ale je třeba ji aktualizovat. Za 5 sekund budete přesměrování na stránku pro aktualizaci.", - "App update" : "Aktualizace aplikace", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Došlo k chybě. Nahrajte prosím ASCII-kódovaný PEM certifikát.", - "Valid until {date}" : "Platný do {date}", - "Delete" : "Smazat", - "An error occurred: {message}" : "Nastala chyba: {message}", - "Select a profile picture" : "Vyberte profilový obrázek", - "Very weak password" : "Velmi slabé heslo", - "Weak password" : "Slabé heslo", - "So-so password" : "Středně silné heslo", - "Good password" : "Dobré heslo", - "Strong password" : "Silné heslo", - "Groups" : "Skupiny", - "Unable to delete {objName}" : "Nelze smazat {objName}", - "Error creating group: {message}" : "Chyba vytvoření skupiny: {message}", - "A valid group name must be provided" : "Musíte zadat platný název skupiny", - "deleted {groupName}" : "smazána {groupName}", - "undo" : "vrátit zpět", - "no group" : "není ve skupině", - "never" : "nikdy", - "deleted {userName}" : "smazán {userName}", - "add group" : "přidat skupinu", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Změna hesla bude mít za následek ztrátu dat, protože jejich obnova není pro tohoto uživatele dostupná.", - "A valid username must be provided" : "Musíte zadat platné uživatelské jméno", - "Error creating user: {message}" : "Chyba vytvoření uživatele: {message}", - "A valid password must be provided" : "Musíte zadat platné heslo", - "A valid email must be provided" : "Musíte zadat platný email", - "__language_name__" : "Česky", - "Unlimited" : "Neomezeně", - "Personal info" : "Osobní informace", - "Sync clients" : "Synchronizační klienti", - "Everything (fatal issues, errors, warnings, info, debug)" : "Vše (fatální problémy, chyby, varování, informační, ladící)", - "Info, warnings, errors and fatal issues" : "Informace, varování, chyby a fatální problémy", - "Warnings, errors and fatal issues" : "Varování, chyby a fatální problémy", - "Errors and fatal issues" : "Chyby a fatální problémy", - "Fatal issues only" : "Pouze fatální problémy", - "None" : "Žádné", - "Login" : "Přihlásit", - "Plain" : "Čistý text", - "NT LAN Manager" : "Správce NT LAN", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "php není nejspíše správně nastaveno pro dotazování na proměnné hodnoty systému. Test s getenv(\"PATH\") vrací pouze prázdnou odpověď.", - "Please check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation documentation ↗</a> for php configuration notes and the php configuration of your server, especially when using php-fpm." : "Zkontrolujte prosím konfiguraci php podle <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">instalační dokumentace ↗</a>, hlavně při použití php-fpm.", - "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." : "Konfigurace je nastavena pouze pro čtení. Toto znemožňuje některá nastavení přes webové rozhraní. Dále musí být pro každou změnu povolen zápis do konfiguračního souboru ručně.", - "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP je patrně nastaveno tak, aby odstraňovalo bloky komentářů. Toto bude mít za následek nedostupnost množství hlavních aplikací.", - "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Toto je pravděpodobně způsobeno aplikacemi pro urychlení načítání jako jsou Zend OPcache nebo eAccelerator.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Server běží v prostředí Microsoft Windows. Pro optimální uživatelské pohodlí doporučujeme přejít na Linux.", - "%1$s below version %2$s is installed, for stability and performance reasons we recommend updating to a newer %1$s version." : "Je nainstalován %1$s nižší verze než %2$s, z důvodu lepší stability a výkonu doporučujeme aktualizovat na novější verzi %1$s.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Schází PHP modul 'fileinfo'. Doporučujeme jej povolit pro nejlepší výsledky detekce typů MIME.", - "Transactional file locking is disabled, this might lead to issues with race conditions. Enable 'filelocking.enabled' in config.php to avoid these problems. See the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a> for more information." : "Transakční uzamykání souborů je vypnuto, což může vést k problémům s \"race\" podmínkami. Pro zabránění těmto problémům povolte 'filelocking.enabled' v souboru config.php. Více informací lze nalézt v <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">dokumentaci ↗</a>.", - "System locale can not be set to a one which supports UTF-8." : "Není možné nastavit znakovou sadu, která podporuje UTF-8.", - "This means that there might be problems with certain characters in file names." : "To znamená, že se mohou vyskytnout problémy s určitými znaky v názvech souborů.", - "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.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Instalace mimo kořenový adresář domény a používání systémového příkazu cron může způsobit problém s generováním správné URL. Pro zabránění těmto chybám nastavte prosím správnou cestu ve svém config.php souboru v hodnotě \"overwrite.cli.url\" (Je doporučena tato: \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Nebylo možné spustit službu cron v CLI. Došlo k následujícím technickým chybám:", - "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"#log-section\">log</a>." : "Prosím překontrolujte <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">instalační pokyny ↗</a> a zkontrolujte jakékoliv chyby a varování v <a href=\"#log-section\">logu</a>.", - "All checks passed." : "Všechny testy byly úspěšné.", - "Open documentation" : "Otevřít dokumentaci", - "Allow apps to use the Share API" : "Povolit aplikacím používat API sdílení", - "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 emailová 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í", - "Allow sharing with groups" : "Povolit sdílení se skupinami", - "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 to other users" : "Povolit uživatelům odesílat emailová upozornění na sdílené soubory ostatním uživatelům", - "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.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Povolit automatické vyplňování v dialogu sdílení. Pokud je toto vypnuto, je třeba ručně vyplňovat celé uživatelské jméno.", - "Last cron job execution: %s." : "Poslední cron proběhl: %s.", - "Last cron job execution: %s. Something seems wrong." : "Poslední cron proběhl: %s. Vypadá to, že něco není v pořádku.", - "Cron was not executed yet!" : "Cron ještě nebyl spuštěn!", - "Execute one task with each page loaded" : "Spustit jednu úlohu s každým načtením stránky", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php je registrován u služby webcron, aby volal cron.php jednou za 15 minut přes http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Použít systémovou službu cron pro volání cron.php každých 15 minut.", - "Enable server-side encryption" : "Povolit šifrování na straně serveru", - "Please read carefully before activating server-side encryption: " : "Pročtěte prosím důkladně před aktivací šifrování dat na serveru:", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "Poté co je zapnuto šifrování, jsou od toho bodu všechny nahrávané soubory šifrovány serverem. Vypnout šifrování bude možné pouze později, až bude šifrovací modul tuto možnost podporovat a po splnění všech nutných podmínek (tzn. nastavení klíčů pro obnovení).", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "Samotné šifrování nezajistí bezpečnost systému. Projděte si dokumentaci aplikace ownCloud pro více informací o tom jak šifrovací aplikace funguje a jejím správném použití.", - "Be aware that encryption always increases the file size." : "Mějte na paměti, že šifrování vždy navýší velikost souboru.", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "Je vždy dobré vytvářet pravidelné zálohy svých dat, v případě zapnutého šifrování také zajistěte zálohu šifrovacích klíčů společně se zálohou dat.", - "This is the final warning: Do you really want to enable encryption?" : "Toto je poslední varování: Opravdu si přejete zapnout šifrování?", - "Enable encryption" : "Povolit šifrování", - "No encryption module loaded, please enable an encryption module in the app menu." : "Není načten žádný šifrovací modul, povolte ho prosím v menu aplikací.", - "Select default encryption module:" : "Vybrat výchozí šifrovací modul:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Musíte přenést své šifrovací klíče ze staré verze šifrování (ownCloud <= 8.0) na novou. Povolte prosím \"Default encryption module\" a spusťte příkaz 'occ encryption:migrate'", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Musíte přenést své šifrovací klíče ze staré verze šifrování (ownCloud <= 8.0) na novou.", - "Start migration" : "Spustit migraci", - "This is used for sending out notifications." : "Toto se používá pro odesílání upozornění.", - "Send mode" : "Mód odesílání", - "Encryption" : "Šifrování", - "From address" : "Adresa odesílatele", - "mail" : "email", - "Authentication method" : "Metoda ověření", - "Authentication required" : "Vyžadováno ověření", - "Server address" : "Adresa serveru", - "Port" : "Port", - "Credentials" : "Přihlašovací údaje", - "SMTP Username" : "SMTP uživatelské jméno ", - "SMTP Password" : "SMTP heslo", - "Store credentials" : "Ukládat přihlašovací údaje", - "Test email settings" : "Test nastavení emailu", - "Send email" : "Odeslat email", - "Download logfile" : "Stáhnout soubor logu", - "More" : "Více", - "Less" : "Méně", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Soubor logu je větší než 100 MB. Jeho stažení zabere nějaký čas!", - "What to log" : "Co se má logovat", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "Je použita databáze SQLite. Pro větší instalace doporučujeme přejít na robustnější databázi.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Obzvláště při používání klientské aplikace pro synchronizaci s desktopem není SQLite doporučeno.", - "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a>." : "Pro migraci na jinou databázi použijte v příkazovém řádku nástroj: 'occ db:convert-type' nebo nahlédněte do <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">dokumentace ↗</a>.", - "How to do backups" : "Jak vytvářet zálohy", - "Advanced monitoring" : "Pokročilé monitorování", - "Performance tuning" : "Ladění výkonu", - "Improving the config.php" : "Vylepšení souboru config.php", - "Theming" : "Vzhledy", - "Hardening and security guidance" : "Průvodce vylepšením bezpečnosti", - "Version" : "Verze", - "Developer documentation" : "Vývojářská dokumentace", - "Experimental applications ahead" : "Experimentální aplikace v pořadí", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Experimentální aplikace nejsou prověřovány na bezpečnostní chyby, mohou být nestabilní a velmi se měnit. Jejich instalací můžete způsobit ztrátu dat nebo bezpečnostní problémy.", - "by %s" : "%s", - "%s-licensed" : "%s-licencováno", - "Documentation:" : "Dokumentace:", - "User documentation" : "Dokumentace uživatele", - "Admin documentation" : "Dokumentace pro administrátory", - "Show description …" : "Zobrazit popis ...", - "Hide description …" : "Skrýt popis ...", - "This app has an update available." : "Pro tuto aplikaci je dostupná aktualizace.", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Tato aplikace nemá přiřazenou nejnižší verzi ownCloud. Toto povede k chybě v ownCloud 11 a vyšším.", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Tato aplikace nemá přiřazenou nejvyšší verzi ownCloud. Toto povede k chybě v ownCloud 11 a vyšším.", - "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:", - "Enable only for specific groups" : "Povolit pouze pro vybrané skupiny", - "Uninstall App" : "Odinstalovat aplikaci", - "Enable experimental apps" : "Povolit experimentální aplikace", - "SSL Root Certificates" : "Kořenové certifikáty SSL", - "Common Name" : "Common Name", - "Valid until" : "Platný do", - "Issued By" : "Vydal", - "Valid until %s" : "Platný do %s", - "Import root certificate" : "Import kořenového certifikátu", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Ahoj,<br><br>toto je oznámení o nově vytvořeném %s účtu.<br><br>Uživatelské jméno: %s<br>Přihlásit se dá zde: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Ať slouží!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Ahoj,\n\ntoto je oznámení o nově vytvořeném %s účtu.\n\nUživatelské jméno: %s\nPřihlásit se dá zde: %s\n", - "Administrator documentation" : "Dokumentace administrátora", - "Online documentation" : "Online dokumentace", - "Forum" : "Fórum", - "Issue tracker" : "Seznam chyb", - "Commercial support" : "Placená podpora", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "Používáte <strong>%s</strong> z <strong>%s</strong>", - "Profile picture" : "Profilový obrázek", - "Upload new" : "Nahrát nový", - "Select from Files" : "Vybrat ze Souborů", - "Remove image" : "Odebrat obrázek", - "png or jpg, max. 20 MB" : "png nebo jpg, max. 20 MB", - "Picture provided by original account" : "Obrázek je poskytován původním účtem", - "Cancel" : "Zrušit", - "Choose as profile picture" : "Vybrat jako profilový obrázek", - "Full name" : "Celé jméno", - "No display name set" : "Jméno pro zobrazení nenastaveno", - "Email" : "Email", - "Your email address" : "Vaše emailová adresa", - "For password recovery and notifications" : "Pro obnovení hesla a upozornění", - "No email address set" : "Emailová adresa není nastavena", - "You are member of the following groups:" : "Patříte do následujících skupin:", - "Password" : "Heslo", - "Unable to change your password" : "Změna vašeho hesla se nezdařila", - "Current password" : "Současné heslo", - "New password" : "Nové heslo", - "Change password" : "Změnit heslo", - "Language" : "Jazyk", - "Help translate" : "Pomoci s překladem", - "Get the apps to sync your files" : "Získat aplikace pro synchronizaci vašich souborů", - "Desktop client" : "Aplikace pro počítač", - "Android app" : "Aplikace pro Android", - "iOS app" : "iOS aplikace", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Chcete-li podpořit tento projekt\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">přidejte se k jeho vývoji</a>\n\t\tnebo\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">šiřte osvětu</a>!", - "Show First Run Wizard again" : "Znovu zobrazit průvodce prvním spuštěním", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Vyvíjeno {communityopen}komunitou ownCloud{linkclose}, {githubopen}zdrojový kód{linkclose} je licencován pod {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}.", - "Show storage location" : "Cesta k datům", - "Show last log in" : "Poslední přihlášení", - "Show user backend" : "Zobrazit uživatelskou podpůrnou vrstvu", - "Send email to new user" : "Poslat email novému uživateli", - "Show email address" : "Emailová adresa", - "Username" : "Uživatelské jméno", - "E-Mail" : "Email", - "Create" : "Vytvořit", - "Admin Recovery Password" : "Heslo obnovy správce", - "Enter the recovery password in order to recover the users files during password change" : "Zadejte heslo obnovy pro obnovení souborů uživatele při změně hesla", - "Add Group" : "Přidat skupinu", - "Group" : "Skupina", - "Everyone" : "Všichni", - "Admins" : "Administrátoři", - "Default Quota" : "Výchozí kvóta", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Zvolte prosím kvótu pro úložiště (např. \"512 MB\" nebo \"12 GB\")", - "Other" : "Jiný", - "Full Name" : "Celé jméno", - "Group Admin for" : "Správce skupiny ", - "Quota" : "Kvóta", - "Storage Location" : "Umístění úložiště", - "User Backend" : "Uživatelská podpůrná vrstva", - "Last Login" : "Poslední přihlášení", - "change full name" : "změnit celé jméno", - "set new password" : "nastavit nové heslo", - "change email address" : "změnit emailovou adresu", - "Default" : "Výchozí" -},"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;" -}
\ No newline at end of file diff --git a/settings/l10n/cy_GB.js b/settings/l10n/cy_GB.js deleted file mode 100644 index e4999d91b93..00000000000 --- a/settings/l10n/cy_GB.js +++ /dev/null @@ -1,21 +0,0 @@ -OC.L10N.register( - "settings", - { - "Invalid request" : "Cais annilys", - "Authentication error" : "Gwall dilysu", - "Email sent" : "Anfonwyd yr e-bost", - "Delete" : "Dileu", - "Groups" : "Grwpiau", - "undo" : "dadwneud", - "never" : "byth", - "None" : "Dim", - "Login" : "Mewngofnodi", - "Encryption" : "Amgryptiad", - "Cancel" : "Diddymu", - "Email" : "E-bost", - "Password" : "Cyfrinair", - "New password" : "Cyfrinair newydd", - "Username" : "Enw defnyddiwr", - "Other" : "Arall" -}, -"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"); diff --git a/settings/l10n/cy_GB.json b/settings/l10n/cy_GB.json deleted file mode 100644 index 0a8fe61beb9..00000000000 --- a/settings/l10n/cy_GB.json +++ /dev/null @@ -1,19 +0,0 @@ -{ "translations": { - "Invalid request" : "Cais annilys", - "Authentication error" : "Gwall dilysu", - "Email sent" : "Anfonwyd yr e-bost", - "Delete" : "Dileu", - "Groups" : "Grwpiau", - "undo" : "dadwneud", - "never" : "byth", - "None" : "Dim", - "Login" : "Mewngofnodi", - "Encryption" : "Amgryptiad", - "Cancel" : "Diddymu", - "Email" : "E-bost", - "Password" : "Cyfrinair", - "New password" : "Cyfrinair newydd", - "Username" : "Enw defnyddiwr", - "Other" : "Arall" -},"pluralForm" :"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;" -}
\ No newline at end of file diff --git a/settings/l10n/da.js b/settings/l10n/da.js deleted file mode 100644 index e33565af3b8..00000000000 --- a/settings/l10n/da.js +++ /dev/null @@ -1,269 +0,0 @@ -OC.L10N.register( - "settings", - { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Advarsler om sikkerhed og opsætning", - "Sharing" : "Deling", - "Server-side encryption" : "Kryptering på serversiden", - "External Storage" : "Ekstern opbevaring", - "Cron" : "Cron", - "Email server" : "E-mailserver", - "Log" : "Log", - "Tips & tricks" : "Tips & tricks", - "Updates" : "Opdateringer", - "Couldn't remove app." : "Kunne ikke fjerne app'en.", - "Language changed" : "Sprog ændret", - "Invalid request" : "Ugyldig forespørgsel", - "Authentication error" : "Adgangsfejl", - "Admins can't remove themself from the admin group" : "Administratorer kan ikke fjerne dem selv fra admin gruppen", - "Unable to add user to group %s" : "Brugeren kan ikke tilføjes til gruppen %s", - "Unable to remove user from group %s" : "Brugeren kan ikke fjernes fra gruppen %s", - "Couldn't update app." : "Kunne ikke opdatere app'en.", - "Wrong password" : "Forkert kodeord", - "No user supplied" : "Intet brugernavn givet", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Angiv venligst en admininstrator gendannelseskode, ellers vil alt brugerdata gå tabt", - "Wrong admin recovery password. Please check the password and try again." : "Forkert admin gendannelseskode. Se venligst koden efter og prøv igen.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Backend'en understøtter ikke skift af kodeord, men opdateringen af brugerens krypteringsnøgle blev gennemført.", - "Unable to change password" : "Kunne ikke ændre kodeord", - "Enabled" : "Aktiveret", - "Not enabled" : "Slået fra", - "installing and updating apps via the app store or Federated Cloud Sharing" : "installation og opdatering af apps via app-butikken eller sammensluttet Cloud deling", - "Federated Cloud Sharing" : "Sammensluttet Cloud deling", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL bruger en forældet %s version (%s). Husk at opdatere dit styresystem ellers vil funktioner såsom %s ikke fungere pålideligt.", - "A problem occurred, please check your log files (Error: %s)" : "Der opstod en fejl - tjek venligst dine logfiler (fejl: %s)", - "Migration Completed" : "Overflytning blev fuldført", - "Group already exists." : "Gruppen findes allerede.", - "Unable to add group." : "Kan ikke tilføje gruppen.", - "Unable to delete group." : "Kan ikke slette gruppen.", - "log-level out of allowed range" : "niveau for logregistrering går ud over tilladte interval", - "Saved" : "Gemt", - "test email settings" : "test e-mailindstillinger", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Der opstod et problem under afsendelse af e-mailen. Gennemse venligst dine indstillinger. (Fejl: %s)", - "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.", - "Invalid mail address" : "Ugyldig mailadresse", - "A user with that name already exists." : "Dette brugernavn eksistere allerede.", - "Unable to create user." : "Kan ikke oprette brugeren.", - "Your %s account was created" : "Din %s-konto blev oprettet", - "Unable to delete user." : "Kan ikke slette brugeren.", - "Forbidden" : "Forbudt", - "Invalid user" : "Ugyldig bruger", - "Unable to change mail address" : "Kan ikke ændre mailadresse", - "Email saved" : "E-mailadressen er gemt", - "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", - "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", - "Migration in progress. Please wait until the migration is finished" : "Immigration er i gang. Vent venligst indtil overflytningen er afsluttet", - "Migration started …" : "Migrering er påbegyndt...", - "Sending..." : "Sender...", - "Official" : "Officiel", - "Approved" : "Godkendt", - "Experimental" : "Eksperimentel", - "All" : "Alle", - "No apps found for your version" : "Ingen apps fundet til din verion", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Officielt program er udviklet af ownCloud fællesskabet. Funktionerne spiller en central rolle i ownCloud og kan bruges i produktionsmiljøer.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Godkendte programmer er udviklet af betroet udviklere som har bestået en let sikkerheds gennemgang. De er aktivt vedligeholdt i et åben kode lager og udviklerne vurdere programmet til at være stabilt for normalt brug.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Dette program er ikke kontrolleret for sikkerhedsproblemer, og er nyt eller kendt for at være ustabilt. Installer på eget ansvar.", - "Update to %s" : "Opdatér til %s", - "Please wait...." : "Vent venligst...", - "Error while disabling app" : "Kunne ikke deaktivere app", - "Disable" : "Deaktiver", - "Enable" : "Aktiver", - "Error while enabling app" : "Kunne ikke aktivere app", - "Updating...." : "Opdaterer....", - "Error while updating app" : "Der opstod en fejl under app opgraderingen", - "Updated" : "Opdateret", - "Uninstalling ...." : "Afinstallerer...", - "Error while uninstalling app" : "Fejl under afinstallering af app", - "Uninstall" : "Afinstallér", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Der opstod en fejl. Upload venligst et ASCII-indkodet PEM-certifikat.", - "Valid until {date}" : "Gyldig indtil {date}", - "Delete" : "Slet", - "An error occurred: {message}" : "Der opstod en fejl:{message}", - "Select a profile picture" : "Vælg et profilbillede", - "Very weak password" : "Meget svagt kodeord", - "Weak password" : "Svagt kodeord", - "So-so password" : "Jævnt kodeord", - "Good password" : "Godt kodeord", - "Strong password" : "Stærkt kodeord", - "Groups" : "Grupper", - "Unable to delete {objName}" : "Kunne ikke slette {objName}", - "A valid group name must be provided" : "Et gyldigt gruppenavn skal angives ", - "deleted {groupName}" : "slettede {groupName}", - "undo" : "fortryd", - "no group" : "ingen gruppe", - "never" : "aldrig", - "deleted {userName}" : "slettede {userName}", - "add group" : "Tilføj gruppe", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Ændring af kodeordet vil føre til datatab, fordi datagendannelse ikke er tilgængelig for denne bruger", - "A valid username must be provided" : "Et gyldigt brugernavn skal angives", - "A valid password must be provided" : "En gyldig adgangskode skal angives", - "A valid email must be provided" : "Der skal angives en gyldig e-mail", - "__language_name__" : "Dansk", - "Unlimited" : "Ubegrænset", - "Personal info" : "Personlige oplysninger", - "Sync clients" : "Synkroniserings klienter", - "Everything (fatal issues, errors, warnings, info, debug)" : "Alt (alvorlige fejl, fejl, advarsler, info, debug)", - "Info, warnings, errors and fatal issues" : "Info, advarsler, fejl og alvorlige fejl", - "Warnings, errors and fatal issues" : "Advarsler, fejl og alvorlige fejl", - "Errors and fatal issues" : "Fejl og alvorlige fejl", - "Fatal issues only" : "Kun alvorlige fejl", - "None" : "Ingen", - "Login" : "Login", - "Plain" : "Klartekst", - "NT LAN Manager" : "NT LAN Manager", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "php lader ikke til at være korrekt opsat til at forespørge miljøvariablerne i systemet. Testen med getenv(\"PATH\") returnerer blot et tomt svar.", - "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.", - "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP opsætning blokere \"inline doc blocks\". dette gør at flere grundlæggende apps utilgængelige", - "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Dette er sansynligvis forårsaget af et accelerator eller cache som Zend OPcache eller eAccelerator", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Din server kører på Microsoft Windows. Vi anbefaler stærkt at anvende Linux for en optimal brugeroplevelse.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP modulet 'fileinfo' mangler. Vi anbefaler stærkt at aktivere dette modul til at få de bedste resultater med mime-type detektion.", - "System locale can not be set to a one which supports UTF-8." : "Systemets lokalitet kan ikke sættes til et der bruger UTF-8.", - "This means that there might be problems with certain characters in file names." : "Det betyder at der kan være problemer med visse tegn i filnavne.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Vi anbefaler kraftigt, at du installerer den krævede pakke på dit system, for at understøtte følgende lokaliteter: %s.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Hvis din installation ikke er installeret i roden af domænet, og bruger systemets cron, så kan der være problemer med URL-oprettelsen. For at undgå disse problemer, så angiv tilvalget \"overwrite.cli.url\" i din fil config.php til webrodens sti for din installation (foreslået værdi: \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Det var ikke muligt at udføre cronjobbet via kommandolinjefladen CLI. Følgende tekniske fejl fremkom:", - "All checks passed." : "Alle tjek blev bestået.", - "Open documentation" : "Åben dokumentation", - "Allow apps to use the Share API" : "Tillad apps til at bruge Share API", - "Allow users to share via link" : "Tillad brugere at dele via link", - "Enforce password protection" : "Tving kodeords beskyttelse", - "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 kun at dele med brugere i deres egen gruppe", - "Allow users to send mail notification for shared files to other users" : "Tillader brugere at sende mailnotifikationer for delte filer til andre brugere", - "Exclude groups from sharing" : "Ekskluder grupper fra at dele", - "These groups will still be able to receive shares, but not to initiate them." : "Disse grupper vil stadig kunne modtage delefiler, men ikke skabe dem.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Tillad autofuldførelse af brugernavnet i delings dialogboksen. Hvis funktion er deaktiveret skal det fulde brugernavn indtastes.", - "Last cron job execution: %s." : "Seneste udførsel af cronjob: %s.", - "Last cron job execution: %s. Something seems wrong." : "Seneste udførsel af cronjob: %s. Der er vist noget galt.", - "Cron was not executed yet!" : "Cron har ikke kørt endnu!", - "Execute one task with each page loaded" : "Udføre en opgave med hver side indlæsning", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php er registreret til at en webcron service skal kalde cron.php hvert 15 minut over http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Brug systemets cron service til at kalde cron.php hver 15. minut", - "Enable server-side encryption" : "Slå kryptering til på serversiden", - "Please read carefully before activating server-side encryption: " : "Læs venligst dette omhyggeligt, før der aktivere kryptering på serversiden:", - "This is the final warning: Do you really want to enable encryption?" : "Dette er den sidste advarsel: Sikker på at du vil slå kryptering til?", - "Enable encryption" : "Slå kryptering til", - "No encryption module loaded, please enable an encryption module in the app menu." : "Der er ikke indlæst et krypteringsmodul - slå venligst et krypteringsmodul til i app-menuen.", - "Select default encryption module:" : "Vælg standardmodulet til kryptering:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Du skal immigrere dine krypteringsnøgler fra den gamle kryptering (ownCloud <= 8.0) til den nye af slagsen. Slå venligst \"Standardmodul til kryptering\" til, og kør \"occ encryption:migrate\"", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Du skal immigrere dine krypteringsnøgler fra den gamle kryptering (ownCloud <= 8.0) til den nye af slagsen.", - "Start migration" : "Påbegynd immigrering", - "This is used for sending out notifications." : "Dette anvendes til udsendelse af notifikationer.", - "Send mode" : "Tilstand for afsendelse", - "Encryption" : "Kryptering", - "From address" : "Fra adresse", - "mail" : "mail", - "Authentication method" : "Godkendelsesmetode", - "Authentication required" : "Godkendelse påkrævet", - "Server address" : "Serveradresse", - "Port" : "Port", - "Credentials" : "Brugeroplysninger", - "SMTP Username" : "SMTP Brugernavn", - "SMTP Password" : "SMTP Kodeord", - "Store credentials" : "Gem brugeroplysninger", - "Test email settings" : "Test e-mail-indstillinger", - "Send email" : "Send e-mail", - "Download logfile" : "Hent logfil", - "More" : "Mere", - "Less" : "Mindre", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Logfilen er større end 100 MB. Det kan tage en del tid at hente den!", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite bruges som database. Til større installationer anbefaler vi at skifte til en anden database-backend.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Brug af SQLite frarådes især når skrivebordsklienten anvendes til filsynkronisering.", - "How to do backups" : "Hvordan man laver sikkerhedskopier", - "Advanced monitoring" : "Avancerede monitorering", - "Performance tuning" : "Ydelses optimering", - "Improving the config.php" : "Forbedring af config.php", - "Theming" : "Temaer", - "Hardening and security guidance" : "Modstanddygtighed og sikkerheds vejledning", - "Version" : "Version", - "Developer documentation" : "Dokumentation for udviklere", - "Experimental applications ahead" : "Kommende eksperimentale programmer", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Eksperimentale programmer er ikke undersøgt for sikkerheds problemer. Kendt for at være ustabil og stadig under intensiv udvikling. Installering af disse programmer kan medføre datatab og/eller udgøre en sikkerhedsrisiko.", - "Documentation:" : "Dokumentation:", - "User documentation" : "Brugerdokumentation", - "Admin documentation" : "Admin-dokumentation", - "Show description …" : "Vis beskrivelse", - "Hide description …" : "Skjul beskrivelse", - "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:", - "Enable only for specific groups" : "Aktivér kun for udvalgte grupper", - "Uninstall App" : "Afinstallér app", - "Enable experimental apps" : "Aktiver eksperimentale programmer", - "Common Name" : "Almindeligt navn", - "Valid until" : "Gyldig indtil", - "Issued By" : "Udstedt af", - "Valid until %s" : "Gyldig indtil %s", - "Import root certificate" : "Importer rodcertifikat", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Hejsa,<br><br>dette er blot en besked om, at du nu har en %s-konto.<br><br>Dit brugernavn: %s<br>Tilgå den: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Hej!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Hejsa,\n\ndette er blot en besked om, at du nu har en %s-konto.\n\nDit brugernavn: %s\nTilgå den: %s\n\n", - "Administrator documentation" : "Administratordokumentation", - "Online documentation" : "Online dokumentation", - "Forum" : "Forum", - "Issue tracker" : "Problem følger", - "Commercial support" : "Kommerciel support", - "Profile picture" : "Profilbillede", - "Upload new" : "Upload nyt", - "Remove image" : "Fjern billede", - "Cancel" : "Annuller", - "Choose as profile picture" : "Vælg et profilbillede", - "Full name" : "Fulde navn", - "No display name set" : "Der er ikke angivet skærmnavn", - "Email" : "E-mail", - "Your email address" : "Din e-mailadresse", - "For password recovery and notifications" : "Angiv en e-mailadresse for at aktivere gendannelse af adgangskode og modtage notifikationer", - "No email address set" : "Der er ikke angivet e-mailadresse", - "You are member of the following groups:" : "Der er medlem af følgende grupper:", - "Password" : "Kodeord", - "Unable to change your password" : "Ude af stand til at ændre dit kodeord", - "Current password" : "Nuværende adgangskode", - "New password" : "Nyt kodeord", - "Change password" : "Skift kodeord", - "Language" : "Sprog", - "Help translate" : "Hjælp med oversættelsen", - "Get the apps to sync your files" : "Hent applikationerne for at synkronisere dine filer", - "Desktop client" : "Skrivebordsklient", - "Android app" : "Android-app", - "iOS app" : "iOS-app", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Hvis du vil støtte projektet, så\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">deltag i udviklingen</a>\n\t\teller\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spred budskabet</a>!", - "Show First Run Wizard again" : "Vis guiden for første kørsel igen.", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Udviklet af {communityopen}ownCloud-fællesskabet{linkclose}, {githubopen}kildekoden{linkclose} er udgivet under licensen {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}.", - "Show storage location" : "Vis placering af lageret", - "Show last log in" : "Vis seneste login", - "Show user backend" : "Vis bruger-backend", - "Send email to new user" : "Send e-mail til ny bruger", - "Show email address" : "Vis e-mailadresse", - "Username" : "Brugernavn", - "E-Mail" : "E-mail", - "Create" : "Ny", - "Admin Recovery Password" : "Administrator gendannelse kodeord", - "Enter the recovery password in order to recover the users files during password change" : "Indtast et gendannelse kodeord for, at kunne gendanne brugerens filer ved ændring af kodeord", - "Add Group" : "Tilføj Gruppe", - "Group" : "Gruppe", - "Everyone" : "Alle", - "Admins" : "Administratore", - "Default Quota" : "Standard kvote", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Indtast venligst lagerkvote (f.eks. \"512 MB\" eller \"12 GB\")", - "Other" : "Andet", - "Full Name" : "Fulde navn", - "Group Admin for" : "Gruppeadministrator for", - "Quota" : "Kvote", - "Storage Location" : "Placering af lageret", - "User Backend" : "Bruger-backend", - "Last Login" : "Seneste login", - "change full name" : "ændre fulde navn", - "set new password" : "skift kodeord", - "change email address" : "skift e-mailadresse", - "Default" : "Standard" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/da.json b/settings/l10n/da.json deleted file mode 100644 index b503b69fd4c..00000000000 --- a/settings/l10n/da.json +++ /dev/null @@ -1,267 +0,0 @@ -{ "translations": { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Advarsler om sikkerhed og opsætning", - "Sharing" : "Deling", - "Server-side encryption" : "Kryptering på serversiden", - "External Storage" : "Ekstern opbevaring", - "Cron" : "Cron", - "Email server" : "E-mailserver", - "Log" : "Log", - "Tips & tricks" : "Tips & tricks", - "Updates" : "Opdateringer", - "Couldn't remove app." : "Kunne ikke fjerne app'en.", - "Language changed" : "Sprog ændret", - "Invalid request" : "Ugyldig forespørgsel", - "Authentication error" : "Adgangsfejl", - "Admins can't remove themself from the admin group" : "Administratorer kan ikke fjerne dem selv fra admin gruppen", - "Unable to add user to group %s" : "Brugeren kan ikke tilføjes til gruppen %s", - "Unable to remove user from group %s" : "Brugeren kan ikke fjernes fra gruppen %s", - "Couldn't update app." : "Kunne ikke opdatere app'en.", - "Wrong password" : "Forkert kodeord", - "No user supplied" : "Intet brugernavn givet", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Angiv venligst en admininstrator gendannelseskode, ellers vil alt brugerdata gå tabt", - "Wrong admin recovery password. Please check the password and try again." : "Forkert admin gendannelseskode. Se venligst koden efter og prøv igen.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Backend'en understøtter ikke skift af kodeord, men opdateringen af brugerens krypteringsnøgle blev gennemført.", - "Unable to change password" : "Kunne ikke ændre kodeord", - "Enabled" : "Aktiveret", - "Not enabled" : "Slået fra", - "installing and updating apps via the app store or Federated Cloud Sharing" : "installation og opdatering af apps via app-butikken eller sammensluttet Cloud deling", - "Federated Cloud Sharing" : "Sammensluttet Cloud deling", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL bruger en forældet %s version (%s). Husk at opdatere dit styresystem ellers vil funktioner såsom %s ikke fungere pålideligt.", - "A problem occurred, please check your log files (Error: %s)" : "Der opstod en fejl - tjek venligst dine logfiler (fejl: %s)", - "Migration Completed" : "Overflytning blev fuldført", - "Group already exists." : "Gruppen findes allerede.", - "Unable to add group." : "Kan ikke tilføje gruppen.", - "Unable to delete group." : "Kan ikke slette gruppen.", - "log-level out of allowed range" : "niveau for logregistrering går ud over tilladte interval", - "Saved" : "Gemt", - "test email settings" : "test e-mailindstillinger", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Der opstod et problem under afsendelse af e-mailen. Gennemse venligst dine indstillinger. (Fejl: %s)", - "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.", - "Invalid mail address" : "Ugyldig mailadresse", - "A user with that name already exists." : "Dette brugernavn eksistere allerede.", - "Unable to create user." : "Kan ikke oprette brugeren.", - "Your %s account was created" : "Din %s-konto blev oprettet", - "Unable to delete user." : "Kan ikke slette brugeren.", - "Forbidden" : "Forbudt", - "Invalid user" : "Ugyldig bruger", - "Unable to change mail address" : "Kan ikke ændre mailadresse", - "Email saved" : "E-mailadressen er gemt", - "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", - "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", - "Migration in progress. Please wait until the migration is finished" : "Immigration er i gang. Vent venligst indtil overflytningen er afsluttet", - "Migration started …" : "Migrering er påbegyndt...", - "Sending..." : "Sender...", - "Official" : "Officiel", - "Approved" : "Godkendt", - "Experimental" : "Eksperimentel", - "All" : "Alle", - "No apps found for your version" : "Ingen apps fundet til din verion", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Officielt program er udviklet af ownCloud fællesskabet. Funktionerne spiller en central rolle i ownCloud og kan bruges i produktionsmiljøer.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Godkendte programmer er udviklet af betroet udviklere som har bestået en let sikkerheds gennemgang. De er aktivt vedligeholdt i et åben kode lager og udviklerne vurdere programmet til at være stabilt for normalt brug.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Dette program er ikke kontrolleret for sikkerhedsproblemer, og er nyt eller kendt for at være ustabilt. Installer på eget ansvar.", - "Update to %s" : "Opdatér til %s", - "Please wait...." : "Vent venligst...", - "Error while disabling app" : "Kunne ikke deaktivere app", - "Disable" : "Deaktiver", - "Enable" : "Aktiver", - "Error while enabling app" : "Kunne ikke aktivere app", - "Updating...." : "Opdaterer....", - "Error while updating app" : "Der opstod en fejl under app opgraderingen", - "Updated" : "Opdateret", - "Uninstalling ...." : "Afinstallerer...", - "Error while uninstalling app" : "Fejl under afinstallering af app", - "Uninstall" : "Afinstallér", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Der opstod en fejl. Upload venligst et ASCII-indkodet PEM-certifikat.", - "Valid until {date}" : "Gyldig indtil {date}", - "Delete" : "Slet", - "An error occurred: {message}" : "Der opstod en fejl:{message}", - "Select a profile picture" : "Vælg et profilbillede", - "Very weak password" : "Meget svagt kodeord", - "Weak password" : "Svagt kodeord", - "So-so password" : "Jævnt kodeord", - "Good password" : "Godt kodeord", - "Strong password" : "Stærkt kodeord", - "Groups" : "Grupper", - "Unable to delete {objName}" : "Kunne ikke slette {objName}", - "A valid group name must be provided" : "Et gyldigt gruppenavn skal angives ", - "deleted {groupName}" : "slettede {groupName}", - "undo" : "fortryd", - "no group" : "ingen gruppe", - "never" : "aldrig", - "deleted {userName}" : "slettede {userName}", - "add group" : "Tilføj gruppe", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Ændring af kodeordet vil føre til datatab, fordi datagendannelse ikke er tilgængelig for denne bruger", - "A valid username must be provided" : "Et gyldigt brugernavn skal angives", - "A valid password must be provided" : "En gyldig adgangskode skal angives", - "A valid email must be provided" : "Der skal angives en gyldig e-mail", - "__language_name__" : "Dansk", - "Unlimited" : "Ubegrænset", - "Personal info" : "Personlige oplysninger", - "Sync clients" : "Synkroniserings klienter", - "Everything (fatal issues, errors, warnings, info, debug)" : "Alt (alvorlige fejl, fejl, advarsler, info, debug)", - "Info, warnings, errors and fatal issues" : "Info, advarsler, fejl og alvorlige fejl", - "Warnings, errors and fatal issues" : "Advarsler, fejl og alvorlige fejl", - "Errors and fatal issues" : "Fejl og alvorlige fejl", - "Fatal issues only" : "Kun alvorlige fejl", - "None" : "Ingen", - "Login" : "Login", - "Plain" : "Klartekst", - "NT LAN Manager" : "NT LAN Manager", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "php lader ikke til at være korrekt opsat til at forespørge miljøvariablerne i systemet. Testen med getenv(\"PATH\") returnerer blot et tomt svar.", - "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.", - "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP opsætning blokere \"inline doc blocks\". dette gør at flere grundlæggende apps utilgængelige", - "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Dette er sansynligvis forårsaget af et accelerator eller cache som Zend OPcache eller eAccelerator", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Din server kører på Microsoft Windows. Vi anbefaler stærkt at anvende Linux for en optimal brugeroplevelse.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP modulet 'fileinfo' mangler. Vi anbefaler stærkt at aktivere dette modul til at få de bedste resultater med mime-type detektion.", - "System locale can not be set to a one which supports UTF-8." : "Systemets lokalitet kan ikke sættes til et der bruger UTF-8.", - "This means that there might be problems with certain characters in file names." : "Det betyder at der kan være problemer med visse tegn i filnavne.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Vi anbefaler kraftigt, at du installerer den krævede pakke på dit system, for at understøtte følgende lokaliteter: %s.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Hvis din installation ikke er installeret i roden af domænet, og bruger systemets cron, så kan der være problemer med URL-oprettelsen. For at undgå disse problemer, så angiv tilvalget \"overwrite.cli.url\" i din fil config.php til webrodens sti for din installation (foreslået værdi: \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Det var ikke muligt at udføre cronjobbet via kommandolinjefladen CLI. Følgende tekniske fejl fremkom:", - "All checks passed." : "Alle tjek blev bestået.", - "Open documentation" : "Åben dokumentation", - "Allow apps to use the Share API" : "Tillad apps til at bruge Share API", - "Allow users to share via link" : "Tillad brugere at dele via link", - "Enforce password protection" : "Tving kodeords beskyttelse", - "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 kun at dele med brugere i deres egen gruppe", - "Allow users to send mail notification for shared files to other users" : "Tillader brugere at sende mailnotifikationer for delte filer til andre brugere", - "Exclude groups from sharing" : "Ekskluder grupper fra at dele", - "These groups will still be able to receive shares, but not to initiate them." : "Disse grupper vil stadig kunne modtage delefiler, men ikke skabe dem.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Tillad autofuldførelse af brugernavnet i delings dialogboksen. Hvis funktion er deaktiveret skal det fulde brugernavn indtastes.", - "Last cron job execution: %s." : "Seneste udførsel af cronjob: %s.", - "Last cron job execution: %s. Something seems wrong." : "Seneste udførsel af cronjob: %s. Der er vist noget galt.", - "Cron was not executed yet!" : "Cron har ikke kørt endnu!", - "Execute one task with each page loaded" : "Udføre en opgave med hver side indlæsning", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php er registreret til at en webcron service skal kalde cron.php hvert 15 minut over http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Brug systemets cron service til at kalde cron.php hver 15. minut", - "Enable server-side encryption" : "Slå kryptering til på serversiden", - "Please read carefully before activating server-side encryption: " : "Læs venligst dette omhyggeligt, før der aktivere kryptering på serversiden:", - "This is the final warning: Do you really want to enable encryption?" : "Dette er den sidste advarsel: Sikker på at du vil slå kryptering til?", - "Enable encryption" : "Slå kryptering til", - "No encryption module loaded, please enable an encryption module in the app menu." : "Der er ikke indlæst et krypteringsmodul - slå venligst et krypteringsmodul til i app-menuen.", - "Select default encryption module:" : "Vælg standardmodulet til kryptering:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Du skal immigrere dine krypteringsnøgler fra den gamle kryptering (ownCloud <= 8.0) til den nye af slagsen. Slå venligst \"Standardmodul til kryptering\" til, og kør \"occ encryption:migrate\"", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Du skal immigrere dine krypteringsnøgler fra den gamle kryptering (ownCloud <= 8.0) til den nye af slagsen.", - "Start migration" : "Påbegynd immigrering", - "This is used for sending out notifications." : "Dette anvendes til udsendelse af notifikationer.", - "Send mode" : "Tilstand for afsendelse", - "Encryption" : "Kryptering", - "From address" : "Fra adresse", - "mail" : "mail", - "Authentication method" : "Godkendelsesmetode", - "Authentication required" : "Godkendelse påkrævet", - "Server address" : "Serveradresse", - "Port" : "Port", - "Credentials" : "Brugeroplysninger", - "SMTP Username" : "SMTP Brugernavn", - "SMTP Password" : "SMTP Kodeord", - "Store credentials" : "Gem brugeroplysninger", - "Test email settings" : "Test e-mail-indstillinger", - "Send email" : "Send e-mail", - "Download logfile" : "Hent logfil", - "More" : "Mere", - "Less" : "Mindre", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Logfilen er større end 100 MB. Det kan tage en del tid at hente den!", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite bruges som database. Til større installationer anbefaler vi at skifte til en anden database-backend.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Brug af SQLite frarådes især når skrivebordsklienten anvendes til filsynkronisering.", - "How to do backups" : "Hvordan man laver sikkerhedskopier", - "Advanced monitoring" : "Avancerede monitorering", - "Performance tuning" : "Ydelses optimering", - "Improving the config.php" : "Forbedring af config.php", - "Theming" : "Temaer", - "Hardening and security guidance" : "Modstanddygtighed og sikkerheds vejledning", - "Version" : "Version", - "Developer documentation" : "Dokumentation for udviklere", - "Experimental applications ahead" : "Kommende eksperimentale programmer", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Eksperimentale programmer er ikke undersøgt for sikkerheds problemer. Kendt for at være ustabil og stadig under intensiv udvikling. Installering af disse programmer kan medføre datatab og/eller udgøre en sikkerhedsrisiko.", - "Documentation:" : "Dokumentation:", - "User documentation" : "Brugerdokumentation", - "Admin documentation" : "Admin-dokumentation", - "Show description …" : "Vis beskrivelse", - "Hide description …" : "Skjul beskrivelse", - "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:", - "Enable only for specific groups" : "Aktivér kun for udvalgte grupper", - "Uninstall App" : "Afinstallér app", - "Enable experimental apps" : "Aktiver eksperimentale programmer", - "Common Name" : "Almindeligt navn", - "Valid until" : "Gyldig indtil", - "Issued By" : "Udstedt af", - "Valid until %s" : "Gyldig indtil %s", - "Import root certificate" : "Importer rodcertifikat", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Hejsa,<br><br>dette er blot en besked om, at du nu har en %s-konto.<br><br>Dit brugernavn: %s<br>Tilgå den: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Hej!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Hejsa,\n\ndette er blot en besked om, at du nu har en %s-konto.\n\nDit brugernavn: %s\nTilgå den: %s\n\n", - "Administrator documentation" : "Administratordokumentation", - "Online documentation" : "Online dokumentation", - "Forum" : "Forum", - "Issue tracker" : "Problem følger", - "Commercial support" : "Kommerciel support", - "Profile picture" : "Profilbillede", - "Upload new" : "Upload nyt", - "Remove image" : "Fjern billede", - "Cancel" : "Annuller", - "Choose as profile picture" : "Vælg et profilbillede", - "Full name" : "Fulde navn", - "No display name set" : "Der er ikke angivet skærmnavn", - "Email" : "E-mail", - "Your email address" : "Din e-mailadresse", - "For password recovery and notifications" : "Angiv en e-mailadresse for at aktivere gendannelse af adgangskode og modtage notifikationer", - "No email address set" : "Der er ikke angivet e-mailadresse", - "You are member of the following groups:" : "Der er medlem af følgende grupper:", - "Password" : "Kodeord", - "Unable to change your password" : "Ude af stand til at ændre dit kodeord", - "Current password" : "Nuværende adgangskode", - "New password" : "Nyt kodeord", - "Change password" : "Skift kodeord", - "Language" : "Sprog", - "Help translate" : "Hjælp med oversættelsen", - "Get the apps to sync your files" : "Hent applikationerne for at synkronisere dine filer", - "Desktop client" : "Skrivebordsklient", - "Android app" : "Android-app", - "iOS app" : "iOS-app", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Hvis du vil støtte projektet, så\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">deltag i udviklingen</a>\n\t\teller\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spred budskabet</a>!", - "Show First Run Wizard again" : "Vis guiden for første kørsel igen.", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Udviklet af {communityopen}ownCloud-fællesskabet{linkclose}, {githubopen}kildekoden{linkclose} er udgivet under licensen {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}.", - "Show storage location" : "Vis placering af lageret", - "Show last log in" : "Vis seneste login", - "Show user backend" : "Vis bruger-backend", - "Send email to new user" : "Send e-mail til ny bruger", - "Show email address" : "Vis e-mailadresse", - "Username" : "Brugernavn", - "E-Mail" : "E-mail", - "Create" : "Ny", - "Admin Recovery Password" : "Administrator gendannelse kodeord", - "Enter the recovery password in order to recover the users files during password change" : "Indtast et gendannelse kodeord for, at kunne gendanne brugerens filer ved ændring af kodeord", - "Add Group" : "Tilføj Gruppe", - "Group" : "Gruppe", - "Everyone" : "Alle", - "Admins" : "Administratore", - "Default Quota" : "Standard kvote", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Indtast venligst lagerkvote (f.eks. \"512 MB\" eller \"12 GB\")", - "Other" : "Andet", - "Full Name" : "Fulde navn", - "Group Admin for" : "Gruppeadministrator for", - "Quota" : "Kvote", - "Storage Location" : "Placering af lageret", - "User Backend" : "Bruger-backend", - "Last Login" : "Seneste login", - "change full name" : "ændre fulde navn", - "set new password" : "skift kodeord", - "change email address" : "skift e-mailadresse", - "Default" : "Standard" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/de.js b/settings/l10n/de.js deleted file mode 100644 index 70b183d355a..00000000000 --- a/settings/l10n/de.js +++ /dev/null @@ -1,299 +0,0 @@ -OC.L10N.register( - "settings", - { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Sicherheits- & Einrichtungswarnungen", - "Sharing" : "Teilen", - "Server-side encryption" : "Serverseitige Verschlüsselung", - "External Storage" : "Externer Speicher", - "Cron" : "Cron", - "Email server" : "E-Mail-Server", - "Log" : "Log", - "Tips & tricks" : "Tipps & Tricks", - "Updates" : "Updates", - "Couldn't remove app." : "Die App konnte nicht entfernt werden.", - "Language changed" : "Sprache geändert", - "Invalid request" : "Fehlerhafte Anfrage", - "Authentication error" : "Authentifizierungsfehler", - "Admins can't remove themself from the admin group" : "Administratoren können sich nicht selbst aus der Admin-Gruppe löschen.", - "Unable to add user to group %s" : "Der Benutzer konnte nicht zur Gruppe %s hinzugefügt werden", - "Unable to remove user from group %s" : "Der Benutzer konnte nicht aus der Gruppe %s entfernt werden", - "Couldn't update app." : "Die App konnte nicht aktualisiert werden.", - "Wrong password" : "Falsches Passwort", - "No user supplied" : "Keinen Benutzer übermittelt", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Bitte gib ein Wiederherstellungspasswort für das Administratorkonto an, da sonst alle Benutzerdaten verlorengehen können", - "Wrong admin recovery password. Please check the password and try again." : "Falsches Wiederherstellungspasswort für das Admin-Konto. Bitte überprüfe das Passwort und versuche es erneut.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Das Backend unterstützt die Passwortänderung nicht, aber der Benutzerschlüssel wurde erfolgreich aktualisiert.", - "Unable to change password" : "Passwort konnte nicht geändert werden", - "Enabled" : "Aktiviert", - "Not enabled" : "Nicht aktiviert", - "installing and updating apps via the app store or Federated Cloud Sharing" : "Das Installieren und Aktualisieren von Apps durch den App-Store oder durch Federated Cloud Sharing", - "Federated Cloud Sharing" : "Federated-Cloud-Sharing", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL verwendet eine veraltete %s Version (%s). Bitte aktualisiere dein Betriebssystem, da ansonsten Funktionen, wie z.B. %s, nicht zuverlässig funktionieren werden.", - "A problem occurred, please check your log files (Error: %s)" : "Es ist ein Problem aufgetreten, bitte überprüfe Deine Logdateien (Fehler: %s)", - "Migration Completed" : "Migration komplett", - "Group already exists." : "Gruppe existiert bereits.", - "Unable to add group." : "Gruppe konnte nicht angelegt werden.", - "Unable to delete group." : "Gruppe konnte nicht gelöscht werden.", - "log-level out of allowed range" : "Log-Level außerhalb des erlaubten Bereichs", - "Saved" : "Gespeichert", - "test email settings" : "E-Mail-Einstellungen testen", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Beim Senden der E-Mail ist ein Problem aufgetreten. Bitte überprüfe Deine Einstellungen. (Fehler: %s)", - "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 angeben, bevor Du Test-E-Mail verschicken kannst.", - "Invalid mail address" : "Ungültige E-Mail-Adresse", - "A user with that name already exists." : "Ein Benutzer mit diesem Namen existiert bereits.", - "Unable to create user." : "Benutzer konnte nicht erstellt werden.", - "Your %s account was created" : "Dein %s-Konto wurde erstellt", - "Unable to delete user." : "Benutzer konnte nicht gelöscht werden.", - "Forbidden" : "Verboten", - "Invalid user" : "Ungültiger Benutzer", - "Unable to change mail address" : "E-Mail-Adresse konnte nicht geändert werden", - "Email saved" : "E-Mail-Adresse gespeichert", - "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", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Bist Du wirklich sicher, dass Du „{domain}“ als vertrauenswürdige Domain hinzufügen möchtest?", - "Add trusted domain" : "Vertrauenswürdige Domain hinzufügen", - "Migration in progress. Please wait until the migration is finished" : "Migration in Arbeit. Bitte warte, bis die Migration beendet ist", - "Migration started …" : "Migration begonnen…", - "Sending..." : "Senden…", - "Official" : "Offiziell", - "Approved" : "Geprüft", - "Experimental" : "Experimentell", - "All" : "Alle", - "No apps found for your version" : "Es wurden keine Apps für Deine Version gefunden", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Offizielle Apps werden von und innerhalb der ownCloud-Community entwickelt. Sie stellen zentrale Funktionen von ownCloud bereit und sind auf den Produktiveinsatz vorbereitet.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Geprüfte Apps werden von vertrauenswürdigen Entwicklern entwickelt und haben eine oberflächliche Sicherheitsprüfung durchlaufen. Sie werden innerhalb eines offenen Code-Repositorys aktiv gepflegt und ihre Betreuer erachten sie als stabil genug für für den gelegentlichen bis normalen Einsatz.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Diese App ist nicht auf Sicherheitsprobleme hin überprüft und ist neu oder bekanntermaßen instabil. Die Installation erfolgt auf eigenes Risiko.", - "Update to %s" : "Aktualisierung auf %s", - "_You have %n app update pending_::_You have %n app updates pending_" : ["Du hast %n Aktualisierung verfügbar","Du hast %n Aktualisierungen verfügbar"], - "Please wait...." : "Bitte warten…", - "Error while disabling app" : "Beim Deaktivieren der App ist ein Fehler aufgetreten", - "Disable" : "Deaktivieren", - "Enable" : "Aktivieren", - "Error while enabling app" : "Beim Aktivieren der App ist ein Fehler aufgetreten", - "Error: this app cannot be enabled because it makes the server unstable" : "Fehler: Diese Anwendung kann nicht aktiviert werden, da sie den Server instabil macht", - "Error: could not disable broken app" : "Fehler: Die beschädigte Anwendung konnte nicht deaktiviert werden", - "Error while disabling broken app" : "Beim Deaktivieren der beschädigten App ist ein Fehler aufgetreten", - "Updating...." : "Aktualisierung…", - "Error while updating app" : "Fehler beim Aktualisieren der App", - "Updated" : "Aktualisiert", - "Uninstalling ...." : "Deinstallieren…", - "Error while uninstalling app" : "Fehler beim Deinstallieren der App", - "Uninstall" : "Deinstallieren", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Die App wurde aktiviert, muss aber aktualisiert werden. Du wirst in 5 Sekunden zu Aktualisierungsseite weitergeleitet", - "App update" : "App aktualisiert", - "No apps found for {query}" : "Keine Applikationen für {query} gefunden", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Es ist ein Fehler aufgetreten. Bitte lade ein ASCII-kodiertes PEM-Zertifikat hoch.", - "Valid until {date}" : "Gültig bis {date}", - "Delete" : "Löschen", - "An error occurred: {message}" : "Ein Fehler ist aufgetreten: {message}", - "Select a profile picture" : "Wähle ein Profilbild", - "Very weak password" : "Sehr schwaches Passwort", - "Weak password" : "Schwaches Passwort", - "So-so password" : "Durchschnittliches Passwort", - "Good password" : "Gutes Passwort", - "Strong password" : "Starkes Passwort", - "Groups" : "Gruppen", - "Unable to delete {objName}" : "Löschen von {objName} nicht möglich", - "Error creating group: {message}" : "Fehler beim Erstellen der Gruppe: {message}", - "A valid group name must be provided" : "Ein gültiger Gruppenname muss angegeben werden", - "deleted {groupName}" : "{groupName} gelöscht", - "undo" : "rückgängig machen", - "no group" : "Keine Gruppe", - "never" : "niemals", - "deleted {userName}" : "{userName} gelöscht", - "add group" : "Gruppe hinzufügen", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Die Änderung des Passworts führt zu Datenverlust, weil die Datenwiederherstellung für diesen Benutzer nicht verfügbar ist", - "A valid username must be provided" : "Es muss ein gültiger Benutzername angegeben werden", - "Error creating user: {message}" : "Fehler beim Anlegen des Benutzers: {message}", - "A valid password must be provided" : "Es muss ein gültiges Passwort angegeben werden", - "A valid email must be provided" : "Es muss eine gültige E-Mail-Adresse angegeben werden", - "__language_name__" : "Deutsch (Persönlich)", - "Unlimited" : "Unbegrenzt", - "Personal info" : "Persönliche Informationen", - "Sync clients" : "Sync-Clients", - "Everything (fatal issues, errors, warnings, info, debug)" : "Alles (fatale Probleme, Fehler, Warnungen, Infos, Debug-Meldungen)", - "Info, warnings, errors and fatal issues" : "Infos, Warnungen, Fehler und fatale Probleme", - "Warnings, errors and fatal issues" : "Warnungen, Fehler und fatale Probleme", - "Errors and fatal issues" : "Fehler und fatale Probleme", - "Fatal issues only" : "Nur fatale Probleme", - "None" : "Nichts", - "Login" : "Anmelden", - "Plain" : "Plain", - "NT LAN Manager" : "NT LAN Manager", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "PHP scheint zur Abfrage von Systemumgebungsvariablen nicht richtig eingerichtet zu sein. Der Test mit getenv (\"PATH\") liefert nur eine leere Antwort zurück.", - "Please check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation documentation ↗</a> for php configuration notes and the php configuration of your server, especially when using php-fpm." : "Bitte schau in der <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">Installationsdokumentation ↗</a>auf Hinweise zur PHP-Konfiguration, sowie die PHP-Konfiguration Deines Servers, insbesondere dann, wenn Du PHP-FPM einsetzt.", - "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 verhindert das Setzen einiger Einstellungen über die Web-Schnittstelle. Weiterhin muss bei jedem Update der Schreibzugriff auf die Datei händisch aktiviert werden.", - "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP ist offenbar so konfiguriert, dass PHPDoc-Blöcke in der Anweisung entfernt werden. Dadurch sind mehrere Kern-Apps nicht erreichbar.", - "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Dies wird wahrscheinlich durch Zwischenspeicher/Beschleuniger wie etwa Zend OPcache oder eAccelerator verursacht.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Dein Server wird mit Microsoft Windows betrieben. Für ein optimales Nutzungserlebnis empfehlen wir dringend Linux.", - "%1$s below version %2$s is installed, for stability and performance reasons we recommend updating to a newer %1$s version." : "%1$s ist in einer älteren Version als %2$s installiert. Aus Stabilitäts- und Performancegründen empfehlen wir eine Aktualisierung auf eine neuere %1$s-Version", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen dieses Modul zu aktivieren um die besten Resultate bei der Erkennung der Dateitypen zu erreichen.", - "Transactional file locking is disabled, this might lead to issues with race conditions. Enable 'filelocking.enabled' in config.php to avoid these problems. See the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a> for more information." : "Transaktionales Sperren ist deaktiviert, was zu Problemen mit Laufzeitbedingungen führen kann. Aktiviere 'filelocking.enabled' in der config.php diese Probleme zu vermeiden. Weitere Informationen findest du in unserer <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">Dokumentation ↗</a>.", - "System locale can not be set to a one which supports UTF-8." : "Es kann kein Systemgebietsschema gesetzt werden, das UTF-8 unterstützt.", - "This means that there might be problems with certain characters in file names." : "Dies bedeutet, dass es zu Problemen mit bestimmten Zeichen in Dateinamen kommen kann.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Wir empfehlen dringend, die erforderlichen Pakete auf Ihrem System zu installieren, damit eines der folgenden Gebietsschemata unterstützt wird: %s.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Wenn sich Deine Installation nicht im Wurzelverzeichnis der Domain befindet und Cron aus dem System genutzt wird, kann es zu Fehlern bei der URL-Generierung kommen. Um dies zu verhindern, setze bitte die „overwrite.cli.url“-Option in Deiner config.php auf das Web-Wurzelverzeichnis Deiner Installation (Vorschlag: „%s“).", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Die Ausführung des Cron-Jobs über die Kommandozeile war nicht möglich. Die folgenden technischen Fehler sind dabei aufgetreten:", - "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"#log-section\">log</a>." : "Bitte überprüfe noch einmal die <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">Installationsanleitungen ↗</a> und kontrolliere das <a href=\"#log-section\">Log</a> auf mögliche Fehler oder Warnungen.", - "All checks passed." : "Alle Überprüfungen bestanden.", - "Open documentation" : "Dokumentation öffnen", - "Allow apps to use the Share API" : "Apps die Benutzung der Share-API erlauben", - "Allow users to share via link" : "Benutzern erlauben, Inhalte über 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, E-Mail-Benachrichtigungen für freigegebene Dateien zu senden", - "Set default expiration date" : "Standardmäßiges Ablaufdatum setzen", - "Expire after " : "Ablauf nach ", - "days" : "Tagen", - "Enforce expiration date" : "Ablaufdatum erzwingen", - "Allow resharing" : "Weiterverteilen erlauben", - "Allow sharing with groups" : "Mit Gruppen teilen erlauben", - "Restrict users to only share with users in their groups" : "Benutzer auf das Teilen innerhalb ihrer Gruppen beschränken", - "Allow users to send mail notification for shared files to other users" : "Benutzern erlauben, E-Mail-Benachrichtigungen für geteilte 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.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Die Auto-Vervollständigung von Benutzernamen im Teilen-Dialog erlauben. Wenn dies deaktiviert ist, muss der vollständige Benutzername eingegeben werden.", - "Last cron job execution: %s." : "Letzte Cron-Job-Ausführung: %s.", - "Last cron job execution: %s. Something seems wrong." : "Letzte Cron-Job-Ausführung: %s. Möglicherweise liegt ein Fehler vor.", - "Cron was not executed yet!" : "Cron wurde bis jetzt noch nicht ausgeführt!", - "Execute one task with each page loaded" : "Führe eine Aufgabe mit jeder geladenen Seite aus", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php ist als Webcron-Dienst registriert, der die cron.php alle 15 Minuten per HTTP aufruft.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Benutze den systemeigenen Cron-Dienst, um die cron.php alle 15 Minuten aufzurufen.", - "Enable server-side encryption" : "Serverseitige Verschlüsselung aktivieren", - "Please read carefully before activating server-side encryption: " : "Bitte sorgfältig lesen, bevor die serverseitige Verschlüsselung aktiviert wird:", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "Wird die Verschlüsselung einmal aktiviert, so werden alle ab diesem Zeitpunkt hochgeladene Dateien verschlüsselt. Sie kann nur wieder deaktiviert werden, wenn das Verschlüsselungsmodul dies unterstützt und alle Voraussetzungen (wie das Setzen eines Wiederherstellungsschlüssels) im Vorhinein erfüllt wurden.", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "Verschlüsselung an sich garantiert nicht die Sicherheit des Systems. Bitte schau in die ownCloud Dokumentation für weitere Informationen wie die Verschlüsselungs-App funktioniert und welche Anwendungsfälle unterstützt werden.", - "Be aware that encryption always increases the file size." : "Sei dir bewusst, dass die Verschlüsselung immer die Dateigröße erhöht.", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "Es ist immer gut, regelmäßig Sicherungskopien von deinen Daten zu machen. Falls du die Verschlüsselung nutzt, solltest du auch eine Sicherung der Verschlüsselungsschlüssel zusammen mit deinen Daten machen.", - "This is the final warning: Do you really want to enable encryption?" : "Dies ist die letzte Warnung: Verschlüsselung wirklich aktivieren?", - "Enable encryption" : "Verschlüsselung aktivieren", - "No encryption module loaded, please enable an encryption module in the app menu." : "Kein Verschlüsselungs-Modul geladen, bitte aktiviere ein Verschlüsselungs-Modul im Anwendungs-Menü.", - "Select default encryption module:" : "Bite Standard-Verschlüsselungs-Modul auswählen:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Du musst Deine Verschlüsselungsschlüssel von der alten Verschlüsselung (ownCloud <= 8.0) zur Neuen migrieren. Bitte aktiviere das \"Default Encryption Module\" und rufe 'occ encryption:migrate' auf.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Du musst Deine Verschlüsselungsschlüssel von der alten Verschlüsselung (ownCloud <= 8.0) zur Neuen migrieren.", - "Start migration" : "Migration beginnen", - "This is used for sending out notifications." : "Dies wird zum Senden von Benachrichtigungen verwendet.", - "Send mode" : "Sendemodus", - "Encryption" : "Verschlüsselung", - "From address" : "Absenderadresse", - "mail" : "Mail", - "Authentication method" : "Authentifizierungsmethode", - "Authentication required" : "Authentifizierung benötigt", - "Server address" : "Serveradresse", - "Port" : "Port", - "Credentials" : "Zugangsdaten", - "SMTP Username" : "SMTP Benutzername", - "SMTP Password" : "SMTP Passwort", - "Store credentials" : "Anmeldeinformationen speichern", - "Test email settings" : "E-Mail-Einstellungen testen", - "Send email" : "E-Mail senden", - "Download logfile" : "Logdatei herunterladen", - "More" : "Mehr", - "Less" : "Weniger", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Die Logdatei ist größer als 100 MB. Es kann etwas Zeit beanspruchen, sie herunterzuladen!", - "What to log" : "Was für ein Protokoll", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite wird als Datenbank verwendet. Bei größeren Installationen wird empfohlen, auf ein anderes Datenbank-Backend zu wechseln.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Insbesondere bei der Nutzung des Desktop Clients zur Dateisynchronisierung wird vom Einsatz von SQLite abgeraten.", - "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a>." : "Um zu einer anderen Datenbank zu migrieren, benutze bitte die Kommandozeile: 'occ db:convert-type', oder in die <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">Dokumentation ↗</a> schauen.", - "How to do backups" : "Wie man Backups anlegt", - "Advanced monitoring" : "Erweitertes Monitoring", - "Performance tuning" : "Leistungsoptimierung", - "Improving the config.php" : "Die config.php optimieren", - "Theming" : "Themes verwenden", - "Hardening and security guidance" : "Systemhärtung und Sicherheitsempfehlungen", - "Version" : "Version", - "Developer documentation" : "Dokumentation für Entwickler", - "Experimental applications ahead" : "Experimentelle Apps nachfolgend", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Experimentelle Apps sind nicht auf Sicherheitsprobleme hin überprüft, sind neu oder bekanntermaßen instabil und befinden sich in intensiver Entwicklung. Ihre Installation kann Datenverlust oder Sicherheitslücken hervorrufen.", - "by %s" : "durch %s", - "%s-licensed" : "%s-lizensiert", - "Documentation:" : "Dokumentation:", - "User documentation" : "Dokumentation für Benutzer", - "Admin documentation" : "Dokumentation für Administratoren", - "Show description …" : "Beschreibung anzeigen…", - "Hide description …" : "Beschreibung ausblenden…", - "This app has an update available." : "Es ist eine Aktualisierung verfügbar.", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Diese App hat keine minimale ownCloud Version zugeordnet. Dies wird ein Fehler in ownCloud 11 und später sein.", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Diese App hat keine maximale ownCloud Version zugeordnet. Dies wird ein Fehler in ownCloud 11 und später sein.", - "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:", - "Enable only for specific groups" : "Nur für bestimmte Gruppen aktivieren", - "Uninstall App" : "App deinstallieren", - "Enable experimental apps" : "Experimentelle Apps aktivieren", - "SSL Root Certificates" : "SSL Root Zertifikate", - "Common Name" : "Common Name", - "Valid until" : "Gültig bis", - "Issued By" : "Ausgestellt von:", - "Valid until %s" : "Gültig bis %s", - "Import root certificate" : "Root-Zertifikat importieren", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Hallo,<br><br>hier nur kurz die Mitteilung, dass Du jetzt ein %s-Konto hast.<br><br>Dein Benutzername: %s<br>Greife darauf zu: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Noch einen schönen Tag!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Hallo,\n\nhier nur kurz die Mitteilung, dass Du jetzt ein %s-Konto hast.\n\nDein Benutzername: %s\nGreife darauf zu: %s\n\n", - "Administrator documentation" : "Dokumentation für Administratoren", - "Online documentation" : "Online-Dokumentation", - "Forum" : "Forum", - "Issue tracker" : "Issue Tracker", - "Commercial support" : "Kommerzieller Support", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "Du benutzt <strong>%s</strong> von <strong>%s</strong>", - "Profile picture" : "Profilbild", - "Upload new" : "Neues hochladen", - "Select from Files" : "Wähle aus Dateien", - "Remove image" : "Bild entfernen", - "png or jpg, max. 20 MB" : "png oder jpg, max. 20MB", - "Picture provided by original account" : "Bild von Original- Konto zur Verfügung gestellt", - "Cancel" : "Abbrechen", - "Choose as profile picture" : "Wähle ein Profilbild", - "Full name" : "Vollständiger Name", - "No display name set" : "Kein Anzeigename angegeben", - "Email" : "E-Mail", - "Your email address" : "Deine E-Mail-Adresse", - "For password recovery and notifications" : "Für Passwort Wiederherstellung und Benachrichtigungen", - "No email address set" : "Keine E-Mail-Adresse angegeben", - "You are member of the following groups:" : "Du bist Mitglied folgender Gruppen:", - "Password" : "Passwort", - "Unable to change your password" : "Passwort konnte nicht geändert werden", - "Current password" : "Aktuelles Passwort", - "New password" : "Neues Passwort", - "Change password" : "Passwort ändern", - "Language" : "Sprache", - "Help translate" : "Hilf bei der Übersetzung", - "Get the apps to sync your files" : "Lade die Apps zur Synchronisierung Deiner Daten herunter", - "Desktop client" : "Desktop-Client", - "Android app" : "Android-App", - "iOS app" : "iOS-App", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Wenn Du das Projekt unterstützen möchtest,\n<a href=\"https://owncloud.org/contribute\"\ntarget=\"_blank\" rel=\"noreferrer\">beteilige Dich an der Entwicklung</a>\noder\n<a href=\"https://owncloud.org/promote\"\ntarget=\"_blank\" rel=\"noreferrer\">hilf mit, es bekannter zu machen</a>!", - "Show First Run Wizard again" : "Den Einrichtungsassistenten erneut anzeigen", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Entwickelt von der {communityopen}ownCloud-Community{linkclose}, der {githubopen}Quellcode{linkclose} ist unter den Bedingungen der {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose} lizenziert.", - "Show storage location" : "Speicherort anzeigen", - "Show last log in" : "Letzte Anmeldung anzeigen", - "Show user backend" : "Benutzer-Backend anzeigen", - "Send email to new user" : "E-Mail an neuen Benutzer senden", - "Show email address" : "E-Mail-Adresse anzeigen", - "Username" : "Benutzername", - "E-Mail" : "E-Mail", - "Create" : "Anlegen", - "Admin Recovery Password" : "Admin-Wiederherstellungspasswort", - "Enter the recovery password in order to recover the users files during password change" : "Gib das Wiederherstellungspasswort ein, um die Benutzerdateien während der Passwortänderung wiederherzustellen", - "Add Group" : "Gruppe hinzufügen", - "Group" : "Gruppe", - "Everyone" : "Jeder", - "Admins" : "Administratoren", - "Default Quota" : "Standard-Quota", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Bitte Speicherkontingent eingeben (z. B.: „512 MB“ oder „12 GB“)", - "Other" : "Andere", - "Full Name" : "Vollständiger Name", - "Group Admin for" : "Gruppenadministrator für", - "Quota" : "Quota", - "Storage Location" : "Speicherort", - "User Backend" : "Benutzer-Backend", - "Last Login" : "Letzte Anmeldung", - "change full name" : "Vollständigen Namen ändern", - "set new password" : "Neues Passwort setzen", - "change email address" : "E-Mail-Adresse ändern", - "Default" : "Standard" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/de.json b/settings/l10n/de.json deleted file mode 100644 index 3d9095a7204..00000000000 --- a/settings/l10n/de.json +++ /dev/null @@ -1,297 +0,0 @@ -{ "translations": { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Sicherheits- & Einrichtungswarnungen", - "Sharing" : "Teilen", - "Server-side encryption" : "Serverseitige Verschlüsselung", - "External Storage" : "Externer Speicher", - "Cron" : "Cron", - "Email server" : "E-Mail-Server", - "Log" : "Log", - "Tips & tricks" : "Tipps & Tricks", - "Updates" : "Updates", - "Couldn't remove app." : "Die App konnte nicht entfernt werden.", - "Language changed" : "Sprache geändert", - "Invalid request" : "Fehlerhafte Anfrage", - "Authentication error" : "Authentifizierungsfehler", - "Admins can't remove themself from the admin group" : "Administratoren können sich nicht selbst aus der Admin-Gruppe löschen.", - "Unable to add user to group %s" : "Der Benutzer konnte nicht zur Gruppe %s hinzugefügt werden", - "Unable to remove user from group %s" : "Der Benutzer konnte nicht aus der Gruppe %s entfernt werden", - "Couldn't update app." : "Die App konnte nicht aktualisiert werden.", - "Wrong password" : "Falsches Passwort", - "No user supplied" : "Keinen Benutzer übermittelt", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Bitte gib ein Wiederherstellungspasswort für das Administratorkonto an, da sonst alle Benutzerdaten verlorengehen können", - "Wrong admin recovery password. Please check the password and try again." : "Falsches Wiederherstellungspasswort für das Admin-Konto. Bitte überprüfe das Passwort und versuche es erneut.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Das Backend unterstützt die Passwortänderung nicht, aber der Benutzerschlüssel wurde erfolgreich aktualisiert.", - "Unable to change password" : "Passwort konnte nicht geändert werden", - "Enabled" : "Aktiviert", - "Not enabled" : "Nicht aktiviert", - "installing and updating apps via the app store or Federated Cloud Sharing" : "Das Installieren und Aktualisieren von Apps durch den App-Store oder durch Federated Cloud Sharing", - "Federated Cloud Sharing" : "Federated-Cloud-Sharing", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL verwendet eine veraltete %s Version (%s). Bitte aktualisiere dein Betriebssystem, da ansonsten Funktionen, wie z.B. %s, nicht zuverlässig funktionieren werden.", - "A problem occurred, please check your log files (Error: %s)" : "Es ist ein Problem aufgetreten, bitte überprüfe Deine Logdateien (Fehler: %s)", - "Migration Completed" : "Migration komplett", - "Group already exists." : "Gruppe existiert bereits.", - "Unable to add group." : "Gruppe konnte nicht angelegt werden.", - "Unable to delete group." : "Gruppe konnte nicht gelöscht werden.", - "log-level out of allowed range" : "Log-Level außerhalb des erlaubten Bereichs", - "Saved" : "Gespeichert", - "test email settings" : "E-Mail-Einstellungen testen", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Beim Senden der E-Mail ist ein Problem aufgetreten. Bitte überprüfe Deine Einstellungen. (Fehler: %s)", - "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 angeben, bevor Du Test-E-Mail verschicken kannst.", - "Invalid mail address" : "Ungültige E-Mail-Adresse", - "A user with that name already exists." : "Ein Benutzer mit diesem Namen existiert bereits.", - "Unable to create user." : "Benutzer konnte nicht erstellt werden.", - "Your %s account was created" : "Dein %s-Konto wurde erstellt", - "Unable to delete user." : "Benutzer konnte nicht gelöscht werden.", - "Forbidden" : "Verboten", - "Invalid user" : "Ungültiger Benutzer", - "Unable to change mail address" : "E-Mail-Adresse konnte nicht geändert werden", - "Email saved" : "E-Mail-Adresse gespeichert", - "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", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Bist Du wirklich sicher, dass Du „{domain}“ als vertrauenswürdige Domain hinzufügen möchtest?", - "Add trusted domain" : "Vertrauenswürdige Domain hinzufügen", - "Migration in progress. Please wait until the migration is finished" : "Migration in Arbeit. Bitte warte, bis die Migration beendet ist", - "Migration started …" : "Migration begonnen…", - "Sending..." : "Senden…", - "Official" : "Offiziell", - "Approved" : "Geprüft", - "Experimental" : "Experimentell", - "All" : "Alle", - "No apps found for your version" : "Es wurden keine Apps für Deine Version gefunden", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Offizielle Apps werden von und innerhalb der ownCloud-Community entwickelt. Sie stellen zentrale Funktionen von ownCloud bereit und sind auf den Produktiveinsatz vorbereitet.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Geprüfte Apps werden von vertrauenswürdigen Entwicklern entwickelt und haben eine oberflächliche Sicherheitsprüfung durchlaufen. Sie werden innerhalb eines offenen Code-Repositorys aktiv gepflegt und ihre Betreuer erachten sie als stabil genug für für den gelegentlichen bis normalen Einsatz.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Diese App ist nicht auf Sicherheitsprobleme hin überprüft und ist neu oder bekanntermaßen instabil. Die Installation erfolgt auf eigenes Risiko.", - "Update to %s" : "Aktualisierung auf %s", - "_You have %n app update pending_::_You have %n app updates pending_" : ["Du hast %n Aktualisierung verfügbar","Du hast %n Aktualisierungen verfügbar"], - "Please wait...." : "Bitte warten…", - "Error while disabling app" : "Beim Deaktivieren der App ist ein Fehler aufgetreten", - "Disable" : "Deaktivieren", - "Enable" : "Aktivieren", - "Error while enabling app" : "Beim Aktivieren der App ist ein Fehler aufgetreten", - "Error: this app cannot be enabled because it makes the server unstable" : "Fehler: Diese Anwendung kann nicht aktiviert werden, da sie den Server instabil macht", - "Error: could not disable broken app" : "Fehler: Die beschädigte Anwendung konnte nicht deaktiviert werden", - "Error while disabling broken app" : "Beim Deaktivieren der beschädigten App ist ein Fehler aufgetreten", - "Updating...." : "Aktualisierung…", - "Error while updating app" : "Fehler beim Aktualisieren der App", - "Updated" : "Aktualisiert", - "Uninstalling ...." : "Deinstallieren…", - "Error while uninstalling app" : "Fehler beim Deinstallieren der App", - "Uninstall" : "Deinstallieren", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Die App wurde aktiviert, muss aber aktualisiert werden. Du wirst in 5 Sekunden zu Aktualisierungsseite weitergeleitet", - "App update" : "App aktualisiert", - "No apps found for {query}" : "Keine Applikationen für {query} gefunden", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Es ist ein Fehler aufgetreten. Bitte lade ein ASCII-kodiertes PEM-Zertifikat hoch.", - "Valid until {date}" : "Gültig bis {date}", - "Delete" : "Löschen", - "An error occurred: {message}" : "Ein Fehler ist aufgetreten: {message}", - "Select a profile picture" : "Wähle ein Profilbild", - "Very weak password" : "Sehr schwaches Passwort", - "Weak password" : "Schwaches Passwort", - "So-so password" : "Durchschnittliches Passwort", - "Good password" : "Gutes Passwort", - "Strong password" : "Starkes Passwort", - "Groups" : "Gruppen", - "Unable to delete {objName}" : "Löschen von {objName} nicht möglich", - "Error creating group: {message}" : "Fehler beim Erstellen der Gruppe: {message}", - "A valid group name must be provided" : "Ein gültiger Gruppenname muss angegeben werden", - "deleted {groupName}" : "{groupName} gelöscht", - "undo" : "rückgängig machen", - "no group" : "Keine Gruppe", - "never" : "niemals", - "deleted {userName}" : "{userName} gelöscht", - "add group" : "Gruppe hinzufügen", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Die Änderung des Passworts führt zu Datenverlust, weil die Datenwiederherstellung für diesen Benutzer nicht verfügbar ist", - "A valid username must be provided" : "Es muss ein gültiger Benutzername angegeben werden", - "Error creating user: {message}" : "Fehler beim Anlegen des Benutzers: {message}", - "A valid password must be provided" : "Es muss ein gültiges Passwort angegeben werden", - "A valid email must be provided" : "Es muss eine gültige E-Mail-Adresse angegeben werden", - "__language_name__" : "Deutsch (Persönlich)", - "Unlimited" : "Unbegrenzt", - "Personal info" : "Persönliche Informationen", - "Sync clients" : "Sync-Clients", - "Everything (fatal issues, errors, warnings, info, debug)" : "Alles (fatale Probleme, Fehler, Warnungen, Infos, Debug-Meldungen)", - "Info, warnings, errors and fatal issues" : "Infos, Warnungen, Fehler und fatale Probleme", - "Warnings, errors and fatal issues" : "Warnungen, Fehler und fatale Probleme", - "Errors and fatal issues" : "Fehler und fatale Probleme", - "Fatal issues only" : "Nur fatale Probleme", - "None" : "Nichts", - "Login" : "Anmelden", - "Plain" : "Plain", - "NT LAN Manager" : "NT LAN Manager", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "PHP scheint zur Abfrage von Systemumgebungsvariablen nicht richtig eingerichtet zu sein. Der Test mit getenv (\"PATH\") liefert nur eine leere Antwort zurück.", - "Please check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation documentation ↗</a> for php configuration notes and the php configuration of your server, especially when using php-fpm." : "Bitte schau in der <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">Installationsdokumentation ↗</a>auf Hinweise zur PHP-Konfiguration, sowie die PHP-Konfiguration Deines Servers, insbesondere dann, wenn Du PHP-FPM einsetzt.", - "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 verhindert das Setzen einiger Einstellungen über die Web-Schnittstelle. Weiterhin muss bei jedem Update der Schreibzugriff auf die Datei händisch aktiviert werden.", - "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP ist offenbar so konfiguriert, dass PHPDoc-Blöcke in der Anweisung entfernt werden. Dadurch sind mehrere Kern-Apps nicht erreichbar.", - "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Dies wird wahrscheinlich durch Zwischenspeicher/Beschleuniger wie etwa Zend OPcache oder eAccelerator verursacht.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Dein Server wird mit Microsoft Windows betrieben. Für ein optimales Nutzungserlebnis empfehlen wir dringend Linux.", - "%1$s below version %2$s is installed, for stability and performance reasons we recommend updating to a newer %1$s version." : "%1$s ist in einer älteren Version als %2$s installiert. Aus Stabilitäts- und Performancegründen empfehlen wir eine Aktualisierung auf eine neuere %1$s-Version", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen dieses Modul zu aktivieren um die besten Resultate bei der Erkennung der Dateitypen zu erreichen.", - "Transactional file locking is disabled, this might lead to issues with race conditions. Enable 'filelocking.enabled' in config.php to avoid these problems. See the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a> for more information." : "Transaktionales Sperren ist deaktiviert, was zu Problemen mit Laufzeitbedingungen führen kann. Aktiviere 'filelocking.enabled' in der config.php diese Probleme zu vermeiden. Weitere Informationen findest du in unserer <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">Dokumentation ↗</a>.", - "System locale can not be set to a one which supports UTF-8." : "Es kann kein Systemgebietsschema gesetzt werden, das UTF-8 unterstützt.", - "This means that there might be problems with certain characters in file names." : "Dies bedeutet, dass es zu Problemen mit bestimmten Zeichen in Dateinamen kommen kann.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Wir empfehlen dringend, die erforderlichen Pakete auf Ihrem System zu installieren, damit eines der folgenden Gebietsschemata unterstützt wird: %s.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Wenn sich Deine Installation nicht im Wurzelverzeichnis der Domain befindet und Cron aus dem System genutzt wird, kann es zu Fehlern bei der URL-Generierung kommen. Um dies zu verhindern, setze bitte die „overwrite.cli.url“-Option in Deiner config.php auf das Web-Wurzelverzeichnis Deiner Installation (Vorschlag: „%s“).", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Die Ausführung des Cron-Jobs über die Kommandozeile war nicht möglich. Die folgenden technischen Fehler sind dabei aufgetreten:", - "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"#log-section\">log</a>." : "Bitte überprüfe noch einmal die <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">Installationsanleitungen ↗</a> und kontrolliere das <a href=\"#log-section\">Log</a> auf mögliche Fehler oder Warnungen.", - "All checks passed." : "Alle Überprüfungen bestanden.", - "Open documentation" : "Dokumentation öffnen", - "Allow apps to use the Share API" : "Apps die Benutzung der Share-API erlauben", - "Allow users to share via link" : "Benutzern erlauben, Inhalte über 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, E-Mail-Benachrichtigungen für freigegebene Dateien zu senden", - "Set default expiration date" : "Standardmäßiges Ablaufdatum setzen", - "Expire after " : "Ablauf nach ", - "days" : "Tagen", - "Enforce expiration date" : "Ablaufdatum erzwingen", - "Allow resharing" : "Weiterverteilen erlauben", - "Allow sharing with groups" : "Mit Gruppen teilen erlauben", - "Restrict users to only share with users in their groups" : "Benutzer auf das Teilen innerhalb ihrer Gruppen beschränken", - "Allow users to send mail notification for shared files to other users" : "Benutzern erlauben, E-Mail-Benachrichtigungen für geteilte 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.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Die Auto-Vervollständigung von Benutzernamen im Teilen-Dialog erlauben. Wenn dies deaktiviert ist, muss der vollständige Benutzername eingegeben werden.", - "Last cron job execution: %s." : "Letzte Cron-Job-Ausführung: %s.", - "Last cron job execution: %s. Something seems wrong." : "Letzte Cron-Job-Ausführung: %s. Möglicherweise liegt ein Fehler vor.", - "Cron was not executed yet!" : "Cron wurde bis jetzt noch nicht ausgeführt!", - "Execute one task with each page loaded" : "Führe eine Aufgabe mit jeder geladenen Seite aus", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php ist als Webcron-Dienst registriert, der die cron.php alle 15 Minuten per HTTP aufruft.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Benutze den systemeigenen Cron-Dienst, um die cron.php alle 15 Minuten aufzurufen.", - "Enable server-side encryption" : "Serverseitige Verschlüsselung aktivieren", - "Please read carefully before activating server-side encryption: " : "Bitte sorgfältig lesen, bevor die serverseitige Verschlüsselung aktiviert wird:", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "Wird die Verschlüsselung einmal aktiviert, so werden alle ab diesem Zeitpunkt hochgeladene Dateien verschlüsselt. Sie kann nur wieder deaktiviert werden, wenn das Verschlüsselungsmodul dies unterstützt und alle Voraussetzungen (wie das Setzen eines Wiederherstellungsschlüssels) im Vorhinein erfüllt wurden.", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "Verschlüsselung an sich garantiert nicht die Sicherheit des Systems. Bitte schau in die ownCloud Dokumentation für weitere Informationen wie die Verschlüsselungs-App funktioniert und welche Anwendungsfälle unterstützt werden.", - "Be aware that encryption always increases the file size." : "Sei dir bewusst, dass die Verschlüsselung immer die Dateigröße erhöht.", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "Es ist immer gut, regelmäßig Sicherungskopien von deinen Daten zu machen. Falls du die Verschlüsselung nutzt, solltest du auch eine Sicherung der Verschlüsselungsschlüssel zusammen mit deinen Daten machen.", - "This is the final warning: Do you really want to enable encryption?" : "Dies ist die letzte Warnung: Verschlüsselung wirklich aktivieren?", - "Enable encryption" : "Verschlüsselung aktivieren", - "No encryption module loaded, please enable an encryption module in the app menu." : "Kein Verschlüsselungs-Modul geladen, bitte aktiviere ein Verschlüsselungs-Modul im Anwendungs-Menü.", - "Select default encryption module:" : "Bite Standard-Verschlüsselungs-Modul auswählen:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Du musst Deine Verschlüsselungsschlüssel von der alten Verschlüsselung (ownCloud <= 8.0) zur Neuen migrieren. Bitte aktiviere das \"Default Encryption Module\" und rufe 'occ encryption:migrate' auf.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Du musst Deine Verschlüsselungsschlüssel von der alten Verschlüsselung (ownCloud <= 8.0) zur Neuen migrieren.", - "Start migration" : "Migration beginnen", - "This is used for sending out notifications." : "Dies wird zum Senden von Benachrichtigungen verwendet.", - "Send mode" : "Sendemodus", - "Encryption" : "Verschlüsselung", - "From address" : "Absenderadresse", - "mail" : "Mail", - "Authentication method" : "Authentifizierungsmethode", - "Authentication required" : "Authentifizierung benötigt", - "Server address" : "Serveradresse", - "Port" : "Port", - "Credentials" : "Zugangsdaten", - "SMTP Username" : "SMTP Benutzername", - "SMTP Password" : "SMTP Passwort", - "Store credentials" : "Anmeldeinformationen speichern", - "Test email settings" : "E-Mail-Einstellungen testen", - "Send email" : "E-Mail senden", - "Download logfile" : "Logdatei herunterladen", - "More" : "Mehr", - "Less" : "Weniger", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Die Logdatei ist größer als 100 MB. Es kann etwas Zeit beanspruchen, sie herunterzuladen!", - "What to log" : "Was für ein Protokoll", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite wird als Datenbank verwendet. Bei größeren Installationen wird empfohlen, auf ein anderes Datenbank-Backend zu wechseln.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Insbesondere bei der Nutzung des Desktop Clients zur Dateisynchronisierung wird vom Einsatz von SQLite abgeraten.", - "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a>." : "Um zu einer anderen Datenbank zu migrieren, benutze bitte die Kommandozeile: 'occ db:convert-type', oder in die <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">Dokumentation ↗</a> schauen.", - "How to do backups" : "Wie man Backups anlegt", - "Advanced monitoring" : "Erweitertes Monitoring", - "Performance tuning" : "Leistungsoptimierung", - "Improving the config.php" : "Die config.php optimieren", - "Theming" : "Themes verwenden", - "Hardening and security guidance" : "Systemhärtung und Sicherheitsempfehlungen", - "Version" : "Version", - "Developer documentation" : "Dokumentation für Entwickler", - "Experimental applications ahead" : "Experimentelle Apps nachfolgend", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Experimentelle Apps sind nicht auf Sicherheitsprobleme hin überprüft, sind neu oder bekanntermaßen instabil und befinden sich in intensiver Entwicklung. Ihre Installation kann Datenverlust oder Sicherheitslücken hervorrufen.", - "by %s" : "durch %s", - "%s-licensed" : "%s-lizensiert", - "Documentation:" : "Dokumentation:", - "User documentation" : "Dokumentation für Benutzer", - "Admin documentation" : "Dokumentation für Administratoren", - "Show description …" : "Beschreibung anzeigen…", - "Hide description …" : "Beschreibung ausblenden…", - "This app has an update available." : "Es ist eine Aktualisierung verfügbar.", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Diese App hat keine minimale ownCloud Version zugeordnet. Dies wird ein Fehler in ownCloud 11 und später sein.", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Diese App hat keine maximale ownCloud Version zugeordnet. Dies wird ein Fehler in ownCloud 11 und später sein.", - "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:", - "Enable only for specific groups" : "Nur für bestimmte Gruppen aktivieren", - "Uninstall App" : "App deinstallieren", - "Enable experimental apps" : "Experimentelle Apps aktivieren", - "SSL Root Certificates" : "SSL Root Zertifikate", - "Common Name" : "Common Name", - "Valid until" : "Gültig bis", - "Issued By" : "Ausgestellt von:", - "Valid until %s" : "Gültig bis %s", - "Import root certificate" : "Root-Zertifikat importieren", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Hallo,<br><br>hier nur kurz die Mitteilung, dass Du jetzt ein %s-Konto hast.<br><br>Dein Benutzername: %s<br>Greife darauf zu: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Noch einen schönen Tag!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Hallo,\n\nhier nur kurz die Mitteilung, dass Du jetzt ein %s-Konto hast.\n\nDein Benutzername: %s\nGreife darauf zu: %s\n\n", - "Administrator documentation" : "Dokumentation für Administratoren", - "Online documentation" : "Online-Dokumentation", - "Forum" : "Forum", - "Issue tracker" : "Issue Tracker", - "Commercial support" : "Kommerzieller Support", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "Du benutzt <strong>%s</strong> von <strong>%s</strong>", - "Profile picture" : "Profilbild", - "Upload new" : "Neues hochladen", - "Select from Files" : "Wähle aus Dateien", - "Remove image" : "Bild entfernen", - "png or jpg, max. 20 MB" : "png oder jpg, max. 20MB", - "Picture provided by original account" : "Bild von Original- Konto zur Verfügung gestellt", - "Cancel" : "Abbrechen", - "Choose as profile picture" : "Wähle ein Profilbild", - "Full name" : "Vollständiger Name", - "No display name set" : "Kein Anzeigename angegeben", - "Email" : "E-Mail", - "Your email address" : "Deine E-Mail-Adresse", - "For password recovery and notifications" : "Für Passwort Wiederherstellung und Benachrichtigungen", - "No email address set" : "Keine E-Mail-Adresse angegeben", - "You are member of the following groups:" : "Du bist Mitglied folgender Gruppen:", - "Password" : "Passwort", - "Unable to change your password" : "Passwort konnte nicht geändert werden", - "Current password" : "Aktuelles Passwort", - "New password" : "Neues Passwort", - "Change password" : "Passwort ändern", - "Language" : "Sprache", - "Help translate" : "Hilf bei der Übersetzung", - "Get the apps to sync your files" : "Lade die Apps zur Synchronisierung Deiner Daten herunter", - "Desktop client" : "Desktop-Client", - "Android app" : "Android-App", - "iOS app" : "iOS-App", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Wenn Du das Projekt unterstützen möchtest,\n<a href=\"https://owncloud.org/contribute\"\ntarget=\"_blank\" rel=\"noreferrer\">beteilige Dich an der Entwicklung</a>\noder\n<a href=\"https://owncloud.org/promote\"\ntarget=\"_blank\" rel=\"noreferrer\">hilf mit, es bekannter zu machen</a>!", - "Show First Run Wizard again" : "Den Einrichtungsassistenten erneut anzeigen", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Entwickelt von der {communityopen}ownCloud-Community{linkclose}, der {githubopen}Quellcode{linkclose} ist unter den Bedingungen der {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose} lizenziert.", - "Show storage location" : "Speicherort anzeigen", - "Show last log in" : "Letzte Anmeldung anzeigen", - "Show user backend" : "Benutzer-Backend anzeigen", - "Send email to new user" : "E-Mail an neuen Benutzer senden", - "Show email address" : "E-Mail-Adresse anzeigen", - "Username" : "Benutzername", - "E-Mail" : "E-Mail", - "Create" : "Anlegen", - "Admin Recovery Password" : "Admin-Wiederherstellungspasswort", - "Enter the recovery password in order to recover the users files during password change" : "Gib das Wiederherstellungspasswort ein, um die Benutzerdateien während der Passwortänderung wiederherzustellen", - "Add Group" : "Gruppe hinzufügen", - "Group" : "Gruppe", - "Everyone" : "Jeder", - "Admins" : "Administratoren", - "Default Quota" : "Standard-Quota", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Bitte Speicherkontingent eingeben (z. B.: „512 MB“ oder „12 GB“)", - "Other" : "Andere", - "Full Name" : "Vollständiger Name", - "Group Admin for" : "Gruppenadministrator für", - "Quota" : "Quota", - "Storage Location" : "Speicherort", - "User Backend" : "Benutzer-Backend", - "Last Login" : "Letzte Anmeldung", - "change full name" : "Vollständigen Namen ändern", - "set new password" : "Neues Passwort setzen", - "change email address" : "E-Mail-Adresse ändern", - "Default" : "Standard" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/de_AT.js b/settings/l10n/de_AT.js deleted file mode 100644 index 2f3af547bed..00000000000 --- a/settings/l10n/de_AT.js +++ /dev/null @@ -1,17 +0,0 @@ -OC.L10N.register( - "settings", - { - "Invalid request" : "Fehlerhafte Anfrage", - "Delete" : "Löschen", - "never" : "niemals", - "__language_name__" : "Deutsch (Österreich)", - "Server address" : "Adresse des Servers", - "Port" : "Port", - "Cancel" : "Abbrechen", - "Email" : "E-Mail", - "Password" : "Passwort", - "Change password" : "Passwort ändern", - "Username" : "Benutzername", - "Other" : "Anderes" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/de_AT.json b/settings/l10n/de_AT.json deleted file mode 100644 index bd2f8340856..00000000000 --- a/settings/l10n/de_AT.json +++ /dev/null @@ -1,15 +0,0 @@ -{ "translations": { - "Invalid request" : "Fehlerhafte Anfrage", - "Delete" : "Löschen", - "never" : "niemals", - "__language_name__" : "Deutsch (Österreich)", - "Server address" : "Adresse des Servers", - "Port" : "Port", - "Cancel" : "Abbrechen", - "Email" : "E-Mail", - "Password" : "Passwort", - "Change password" : "Passwort ändern", - "Username" : "Benutzername", - "Other" : "Anderes" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/de_DE.js b/settings/l10n/de_DE.js deleted file mode 100644 index 64c1978f908..00000000000 --- a/settings/l10n/de_DE.js +++ /dev/null @@ -1,299 +0,0 @@ -OC.L10N.register( - "settings", - { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Sicherheits- & Einrichtungswarnungen", - "Sharing" : "Teilen", - "Server-side encryption" : "Serverseitige Verschlüsselung", - "External Storage" : "Externer Speicher", - "Cron" : "Cron", - "Email server" : "E-Mail-Server", - "Log" : "Log", - "Tips & tricks" : "Tipps & Tricks", - "Updates" : "Updates", - "Couldn't remove app." : "Die App konnte nicht entfernt werden.", - "Language changed" : "Sprache geändert", - "Invalid request" : "Ungültige Anforderung", - "Authentication error" : "Authentifizierungsfehler", - "Admins can't remove themself from the admin group" : "Administratoren können sich nicht selbst aus der admin-Gruppe löschen", - "Unable to add user to group %s" : "Der Benutzer konnte nicht zur Gruppe %s hinzugefügt werden", - "Unable to remove user from group %s" : "Der Benutzer konnte nicht aus der Gruppe %s entfernt werden", - "Couldn't update app." : "Die App konnte nicht aktualisiert werden.", - "Wrong password" : "Falsches Passwort", - "No user supplied" : "Keinen Benutzer angegeben", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Bitte geben Sie ein Wiederherstellungspasswort für das Administratorkonto an, da sonst alle Benutzerdaten verlorengehen können", - "Wrong admin recovery password. Please check the password and try again." : "Falsches Wiederherstellungspasswort für das Admin-Konto. Bitte überprüfen Sie das Passwort und versuchen Sie es erneut.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Das Backend unterstützt die Passwortänderung nicht, aber der Benutzerschlüssel wurde erfolgreich aktualisiert.", - "Unable to change password" : "Passwort konnte nicht geändert werden", - "Enabled" : "Aktiviert", - "Not enabled" : "Nicht aktiviert", - "installing and updating apps via the app store or Federated Cloud Sharing" : "Das Installieren und Aktualisieren von Apps durch den App-Store oder durch Federated Cloud Sharing", - "Federated Cloud Sharing" : "Federated-Cloud-Sharing", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL verwendet eine veraltete %s Version (%s). Bitte aktualisieren Sie ihr Betriebssystem, da ansonsten Funktionen, wie z.B. %s, nicht zuverlässig funktionieren werden.", - "A problem occurred, please check your log files (Error: %s)" : "Es ist ein Problem aufgetreten, bitte überprüfen Sie Ihre Logdateien (Fehler: %s)", - "Migration Completed" : "Migration abgeschlossen", - "Group already exists." : "Gruppe existiert bereits.", - "Unable to add group." : "Gruppe konnte nicht angelegt werden.", - "Unable to delete group." : "Gruppe konnte nicht gelöscht werden.", - "log-level out of allowed range" : "Log-Level außerhalb des erlaubten Bereichs", - "Saved" : "Gespeichert", - "test email settings" : "E-Mail-Einstellungen testen", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Beim Senden der E-Mail ist ein Problem aufgetreten. Bitte überprüfen Sie Ihre Einstellungen. (Fehler: %s)", - "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.", - "Invalid mail address" : "Ungültige E-Mail-Adresse", - "A user with that name already exists." : "Ein Benutzer mit diesem Namen existiert bereits.", - "Unable to create user." : "Benutzer konnte nicht erstellt werden.", - "Your %s account was created" : "Ihr %s-Konto wurde erstellt", - "Unable to delete user." : "Benutzer konnte nicht gelöscht werden.", - "Forbidden" : "Verboten", - "Invalid user" : "Ungültiger Benutzer", - "Unable to change mail address" : "E-Mail-Adresse konnte nicht geändert werden", - "Email saved" : "E-Mail-Adresse gespeichert", - "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", - "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", - "Migration in progress. Please wait until the migration is finished" : "Migration in Arbeit. Bitte warten Sie, bis die Migration beendet ist", - "Migration started …" : "Migration begonnen…", - "Sending..." : "Wird gesendet…", - "Official" : "Offiziell", - "Approved" : "Geprüft", - "Experimental" : "Experimentell", - "All" : "Alle", - "No apps found for your version" : "Es wurden keine Apps für Ihre Version gefunden", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Offizielle Apps werden von und innerhalb der ownCloud-Community entwickelt. Sie stellen zentrale Funktionen von ownCloud bereit und sind auf den Produktiveinsatz vorbereitet.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Geprüfte Apps werden von vertrauenswürdigen Entwicklern entwickelt und haben eine oberflächliche Sicherheitsprüfung durchlaufen. Sie werden innerhalb eines offenen Code-Repositorys aktiv gepflegt und ihre Betreuer erachten sie als stabil genug für für den gelegentlichen bis normalen Einsatz.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Diese App ist nicht auf Sicherheitsprobleme hin überprüft und ist neu oder bekanntermaßen instabil. Die Installation erfolgt auf eigenes Risiko.", - "Update to %s" : "Aktualisierung auf %s", - "_You have %n app update pending_::_You have %n app updates pending_" : ["Sie haben %n Aktualisierung verfügbar","Sie haben %n Aktualisierungen verfügbar"], - "Please wait...." : "Bitte warten…", - "Error while disabling app" : "Beim Deaktivieren der App ist ein Fehler aufgetreten", - "Disable" : "Deaktivieren", - "Enable" : "Aktivieren", - "Error while enabling app" : "Beim Aktivieren der App ist ein Fehler aufgetreten", - "Error: this app cannot be enabled because it makes the server unstable" : "Fehler: Diese App kann nicht aktiviert werden, da es den Server instabil macht.", - "Error: could not disable broken app" : "Fehler: Die beschädigte Anwendung konnte nicht deaktiviert werden", - "Error while disabling broken app" : "Beim Deaktivieren der defekten App ist ein Fehler aufgetreten", - "Updating...." : "Update…", - "Error while updating app" : "Es ist ein Fehler während des Updates aufgetreten", - "Updated" : "Aktualisiert", - "Uninstalling ...." : "Wird deinstalliert…", - "Error while uninstalling app" : "Fehler beim Deinstallieren der App", - "Uninstall" : "Deinstallieren", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Die App wurde aktiviert, aber sie benötigt ein Update. Sie werden zur Update Seite in 5 Sekunden weitergeleitet.", - "App update" : "App aktualisieren", - "No apps found for {query}" : "Keine Applikationen für {query} gefunden", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Es ist ein Fehler aufgetreten. Bitte laden Sie ein ASCII-kodiertes PEM-Zertifikat hoch.", - "Valid until {date}" : "Gültig bis {date}", - "Delete" : "Löschen", - "An error occurred: {message}" : "Ein Fehler ist aufgetreten: {message}", - "Select a profile picture" : "Wählen Sie ein Profilbild", - "Very weak password" : "Sehr schwaches Passwort", - "Weak password" : "Schwaches Passwort", - "So-so password" : "Passables Passwort", - "Good password" : "Gutes Passwort", - "Strong password" : "Starkes Passwort", - "Groups" : "Gruppen", - "Unable to delete {objName}" : "Löschen von {objName} nicht möglich", - "Error creating group: {message}" : "Fehler beim Erstellen einer Gruppe: {message}", - "A valid group name must be provided" : "Ein gültiger Gruppenname muss angegeben werden", - "deleted {groupName}" : "{groupName} gelöscht", - "undo" : "rückgängig machen", - "no group" : "Keine Gruppe", - "never" : "niemals", - "deleted {userName}" : "{userName} gelöscht", - "add group" : "Gruppe hinzufügen", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Die Änderung des Passworts führt zu Datenverlust, weil die Datenwiederherstellung für diesen Benutzer nicht verfügbar ist", - "A valid username must be provided" : "Es muss ein gültiger Benutzername angegeben werden", - "Error creating user: {message}" : "Fehler beim Erstellen eines Benutzers: {message}", - "A valid password must be provided" : "Es muss ein gültiges Passwort angegeben werden", - "A valid email must be provided" : "Es muss eine gültige E-Mail-Adresse angegeben werden", - "__language_name__" : "Deutsch (Förmlich: Sie)", - "Unlimited" : "Unbegrenzt", - "Personal info" : "Persönliche Informationen", - "Sync clients" : "Sync-Clients", - "Everything (fatal issues, errors, warnings, info, debug)" : "Alles (fatale Probleme, Fehler, Warnungen, Infos, Fehlerdiagnose)", - "Info, warnings, errors and fatal issues" : "Infos, Warnungen, Fehler und fatale Probleme", - "Warnings, errors and fatal issues" : "Warnungen, Fehler und fatale Probleme", - "Errors and fatal issues" : "Fehler und fatale Probleme", - "Fatal issues only" : "Nur kritische Fehler", - "None" : "Keine", - "Login" : "Anmelden", - "Plain" : "Plain", - "NT LAN Manager" : "NT LAN Manager", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "PHP scheint zur Abfrage von Systemumgebungsvariablen nicht richtig eingerichtet zu sein. Der Test mit getenv (\"PATH\") liefert nur eine leere Antwort zurück.", - "Please check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation documentation ↗</a> for php configuration notes and the php configuration of your server, especially when using php-fpm." : "Bitte schauen Sie in der <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">Installationsdokumentation ↗</a>auf Hinweise zur PHP-Konfiguration, sowie die PHP-Konfiguration ihres Servers, insbesondere dann, wenn Sie PHP-FPM einsetzten.", - "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 verhindert das Setzen einiger Einstellungen über die Web-Schnittstelle. Weiterhin muss bei jedem Update der Schreibzugriff auf die Datei händisch aktiviert werden.", - "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP ist offenbar so konfiguriert, dass PHPDoc-Blöcke in der Anweisung entfernt werden. Dadurch sind mehrere Kern-Apps nicht erreichbar.", - "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Dies wird wahrscheinlich durch Zwischenspeicher/Beschleuniger wie etwa Zend OPcache oder eAccelerator verursacht.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Ihr Server wird mit Microsoft Windows betrieben. Für ein optimales Nutzungserlebnis empfehlen wir dringend Linux.", - "%1$s below version %2$s is installed, for stability and performance reasons we recommend updating to a newer %1$s version." : "%1$s ist in einer älteren Version als %2$s installiert. Aus Stabilitäts- und Performancegründen empfehlen wir eine Aktualisierung auf eine neuere %1$s-Version", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen Ihnen dieses Modul zu aktivieren, um die besten Resultate bei der Bestimmung der Dateitypen zu erzielen.", - "Transactional file locking is disabled, this might lead to issues with race conditions. Enable 'filelocking.enabled' in config.php to avoid these problems. See the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a> for more information." : "Transaktionales Sperren ist deaktiviert, was zu Problemen mit Laufzeitbedingungen führen kann. Aktivieren Sie 'filelocking.enabled' in der config.php diese Probleme zu vermeiden. Weitere Informationen findest Sie in unserer <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">Dokumentation ↗</a>.", - "System locale can not be set to a one which supports UTF-8." : "Es kann kein Systemgebietsschema gesetzt werden, das UTF-8 unterstützt.", - "This means that there might be problems with certain characters in file names." : "Dies bedeutet, dass es zu Problemen mit bestimmten Zeichen in Dateinamen kommen kann.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Wir empfehlen dringend, die erforderlichen Pakete auf Ihrem System zu installieren, damit eines der folgenden Gebietsschemata unterstützt wird: %s.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Wenn sich Ihre Installation nicht im Wurzelverzeichnis der Domain befindet und Cron aus dem System genutzt wird, kann es zu Fehlern bei der URL-Generierung kommen. Um dies zu verhindern, setzen Sie bitte die „overwrite.cli.url“-Option in Ihrer config.php auf das Web-Wurzelverzeichnis Ihrer Installation (Vorschlag: „%s“).", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Die Ausführung des Cron-Jobs über die Kommandozeile war nicht möglich. Die folgenden technischen Fehler sind dabei aufgetreten:", - "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"#log-section\">log</a>." : "Bitte überprüfen Sie noch einmal die <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">Installationsanleitungen ↗</a> und kontrollieren Sie das <a href=\"#log-section\">Log</a> auf mögliche Fehler oder Warnungen.", - "All checks passed." : "Alle checks erfolgreich gepfüft.", - "Open documentation" : "Dokumentation öffnen", - "Allow apps to use the Share API" : "Apps die Benutzung der Share-API erlauben", - "Allow users to share via link" : "Benutzern erlauben, Inhalte über 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, E-Mail-Benachrichtigungen für freigegebene Dateien zu senden", - "Set default expiration date" : "Standardmäßiges Ablaufdatum setzen", - "Expire after " : "Ablauf nach ", - "days" : "Tagen", - "Enforce expiration date" : "Ablaufdatum erzwingen", - "Allow resharing" : "Weiterverteilen erlauben", - "Allow sharing with groups" : "Mit Gruppen teilen erlauben", - "Restrict users to only share with users in their groups" : "Benutzer auf das Teilen innerhalb ihrer Gruppen beschränken", - "Allow users to send mail notification for shared files to other users" : "Benutzern erlauben, E-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.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Die Auto-Vervollständigung von Benutzernamen im Teilen-Dialog erlauben. Wenn dies deaktiviert ist, muss der vollständige Benutzername eingegeben werden.", - "Last cron job execution: %s." : "Letzte Cron-Job-Ausführung: %s.", - "Last cron job execution: %s. Something seems wrong." : "Letzte Cron-Job-Ausführung: %s. Möglicherweise liegt ein Fehler vor.", - "Cron was not executed yet!" : "Cron wurde bis jetzt noch nicht ausgeführt!", - "Execute one task with each page loaded" : "Eine Aufgabe bei jedem Laden der Seite ausführen", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php ist als Webcron-Dienst registriert, der die cron.php alle 15 Minuten per HTTP aufruft.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Benutzen Sie den systemeigenen Cron-Dienst, um die cron.php alle 15 Minuten aufzurufen.", - "Enable server-side encryption" : "Serverseitige Verschlüsselung aktivieren", - "Please read carefully before activating server-side encryption: " : "Bitte lesen Sie ganz genau, bevor Sie die Serverseite Verschlüsselung aktivieren:", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "Wird die Verschlüsselung einmal aktiviert, so werden alle ab diesem Zeitpunkt hochgeladene Dateien verschlüsselt. Sie kann nur wieder deaktiviert werden, wenn das Verschlüsselungsmodul dies unterstützt und alle Voraussetzungen (wie das Setzen eines Wiederherstellungsschlüssels) im Vorhinein erfüllt wurden.", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "Verschlüsselung an sich garantiert nicht die Sicherheit des Systems. Bitte schauen Sie in die ownCloud Dokumentation für weitere Informationen wie die Verschlüsselungs-App funktioniert und welche Anwendungsfälle unterstützt werden.", - "Be aware that encryption always increases the file size." : "Bedenke das durch die Verschlüsselung die Dateigröße zunimmt. ", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "Es ist immer gut, regelmäßig Sicherungskopien von ihren Daten zu machen. Falls Sie die Verschlüsselung nutzen, sollten Sie auch eine Sicherung der Verschlüsselungsschlüssel zusammen mit ihren Daten machen.", - "This is the final warning: Do you really want to enable encryption?" : "Dies ist die letzte Warnung: Wollen Sie die Verschlüsselung wirklich aktivieren?", - "Enable encryption" : "Verschlüsselung aktivieren", - "No encryption module loaded, please enable an encryption module in the app menu." : "Kein Verschlüsselungs-Modul geladen, bitte aktiviere ein Verschlüsselungs-Modul im Anwendungs-Menü.", - "Select default encryption module:" : "Standard-Verschlüsselungs-Modul auswählen:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Sie müssen Ihre Verschlüsselungsschlüssel von der alten Verschlüsselung (ownCloud <= 8.0) zur Neuen migrieren. Bitte aktivieren Sie das \"Default Encryption Module\" und rufen Sie 'occ encryption:migrate' auf.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Sie müssen Ihre Verschlüsselungsschlüssel von der alten Verschlüsselung (ownCloud <= 8.0) zur Neuen migrieren.", - "Start migration" : "Migration beginnen", - "This is used for sending out notifications." : "Dies wird für das Senden von Benachrichtigungen verwendet.", - "Send mode" : "Sendemodus", - "Encryption" : "Verschlüsselung", - "From address" : "Absenderadresse", - "mail" : "Mail", - "Authentication method" : "Authentifizierungsmethode", - "Authentication required" : "Authentifizierung benötigt", - "Server address" : "Serveradresse", - "Port" : "Port", - "Credentials" : "Zugangsdaten", - "SMTP Username" : "SMTP Benutzername", - "SMTP Password" : "SMTP Passwort", - "Store credentials" : "Anmeldeinformationen speichern", - "Test email settings" : "E-Mail-Einstellungen testen", - "Send email" : "E-Mail senden", - "Download logfile" : "Logdatei herunterladen", - "More" : "Mehr", - "Less" : "Weniger", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Die Logdatei ist größer als 100 MB. Es kann etwas Zeit beanspruchen, sie herunterzuladen!", - "What to log" : "Was geloggt wird", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite wird als Datenbank verwendet. Bei größeren Installationen wird empfohlen, auf ein anderes Datenbank-Backend zu wechseln.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Insbesondere bei der Nutzung des Desktop Clients zur Dateisynchronisierung wird vom Einsatz von SQLite abgeraten.", - "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a>." : "Um zu einer anderen Datenbank zu migrieren, benutzen Sie bitte die Kommandozeile: 'occ db:convert-type', oder in die <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">Dokumentation ↗</a> schauen.", - "How to do backups" : "Wie man Backups anlegt", - "Advanced monitoring" : "Erweitertes Monitoring", - "Performance tuning" : "Leistungsoptimierung", - "Improving the config.php" : "Die config.php optimieren", - "Theming" : "Themes verwenden", - "Hardening and security guidance" : "Systemhärtung und Sicherheitsempfehlungen", - "Version" : "Version", - "Developer documentation" : "Dokumentation für Entwickler", - "Experimental applications ahead" : "Experimentelle Apps nachfolgend", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Experimentelle Apps sind nicht auf Sicherheitsprobleme hin überprüft, sind neu oder bekanntermaßen instabil und befinden sich in intensiver Entwicklung. Ihre Installation kann Datenverlust oder Sicherheitslücken hervorrufen.", - "by %s" : "durch %s", - "%s-licensed" : "%s-Lizensiert", - "Documentation:" : "Dokumentation:", - "User documentation" : "Dokumentation für Benutzer", - "Admin documentation" : "Dokumentation für Administratoren", - "Show description …" : "Beschreibung anzeigen…", - "Hide description …" : "Beschreibung ausblenden…", - "This app has an update available." : "Es ist eine Aktualisierung für diese Anwendung verfügbar.", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Dieser App ist keine minimum ownCloud Version zugewiesen. Dies wird ein Fehler in ownCloud 11 und später sein.", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Diese App hat keine maximale ownCloud Version zugeordnet. Dies wird ein Fehler in ownCloud 11 und später sein.", - "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:", - "Enable only for specific groups" : "Nur für bestimmte Gruppen aktivieren", - "Uninstall App" : "App deinstallieren", - "Enable experimental apps" : "Experimentelle Apps aktivieren", - "SSL Root Certificates" : "SSL Root Zertifikate", - "Common Name" : "Common Name", - "Valid until" : "Gültig bis", - "Issued By" : "Ausgestellt von:", - "Valid until %s" : "Gültig bis %s", - "Import root certificate" : "Root-Zertifikat importieren", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Hallo,<br><br>hier nur kurz die Mitteilung, dass Sie jetzt ein %s-Konto haben.<br><br>Ihr Benutzername: %s<br>Greifen Sie darauf zu: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Noch einen schönen Tag!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Hallo,\n\nhier nur kurz die Mitteilung, dass Sie jetzt ein %s-Konto haben.\n\nIhr Benutzername: %s\nGreifen Sie darauf zu: %s\n\n", - "Administrator documentation" : "Dokumentation für Administratoren", - "Online documentation" : "Online-Dokumentation", - "Forum" : "Forum", - "Issue tracker" : "Issue Tracker", - "Commercial support" : "Kommerzieller Support", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "Sie verwenden <strong>%s</strong> der verfügbaren <strong>%s</strong>", - "Profile picture" : "Profilbild", - "Upload new" : "Neues hochladen", - "Select from Files" : "Aus Dateien wählen", - "Remove image" : "Bild entfernen", - "png or jpg, max. 20 MB" : "png oder jpg, max. 20 MB", - "Picture provided by original account" : "Bild von Original-Konto zur Verfügung gestellt", - "Cancel" : "Abbrechen", - "Choose as profile picture" : "Als Profilbild auswählen", - "Full name" : "Vollständiger Name", - "No display name set" : "Kein Anzeigename angegeben", - "Email" : "E-Mail", - "Your email address" : "Ihre E-Mail-Adresse", - "For password recovery and notifications" : "Für Passwort Wiederherstellung und Benachrichtigungen", - "No email address set" : "Keine E-Mail-Adresse angegeben", - "You are member of the following groups:" : "Sie sind Mitglied folgender Gruppen:", - "Password" : "Passwort", - "Unable to change your password" : "Das Passwort konnte nicht geändert werden", - "Current password" : "Aktuelles Passwort", - "New password" : "Neues Passwort", - "Change password" : "Passwort ändern", - "Language" : "Sprache", - "Help translate" : "Helfen Sie bei der Übersetzung", - "Get the apps to sync your files" : "Installieren Sie die Anwendungen, um Ihre Dateien zu synchronisieren", - "Desktop client" : "Desktop-Client", - "Android app" : "Android-App", - "iOS app" : "iOS-App", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Wenn Sie das Projekt unterstützen möchten,\n<a href=\"https://owncloud.org/contribute\"\ntarget=\"_blank\" rel=\"noreferrer\">beteiligen Sie sich an der Entwicklung</a>\noder\n<a href=\"https://owncloud.org/promote\"\ntarget=\"_blank\" rel=\"noreferrer\">helfen Sie mit, es bekannter zu machen</a>!", - "Show First Run Wizard again" : "Den Einrichtungsassistenten erneut anzeigen", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Entwickelt von der {communityopen}ownCloud-Community{linkclose}, der {githubopen}Quellcode{linkclose} ist unter den Bedingungen der {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose} lizenziert.", - "Show storage location" : "Speicherort anzeigen", - "Show last log in" : "Letzte Anmeldung anzeigen", - "Show user backend" : "Benutzer-Backend anzeigen", - "Send email to new user" : "E-Mail an neuen Benutzer senden", - "Show email address" : "E-Mail Adresse anzeigen", - "Username" : "Benutzername", - "E-Mail" : "E-Mail", - "Create" : "Erstellen", - "Admin Recovery Password" : "Admin-Passwort-Wiederherstellung", - "Enter the recovery password in order to recover the users files during password change" : "Geben Sie das Wiederherstellungspasswort ein, um die Benutzerdateien während der Passwortänderung wiederherzustellen", - "Add Group" : "Gruppe hinzufügen", - "Group" : "Gruppe", - "Everyone" : "Jeder", - "Admins" : "Administratoren", - "Default Quota" : "Standardkontingent", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Bitte Speicherkontingent eingeben (z.B.: „512 MB“ oder „12 GB“)", - "Other" : "Andere", - "Full Name" : "Vollständiger Name", - "Group Admin for" : "Gruppenadministrator für", - "Quota" : "Kontingent", - "Storage Location" : "Speicherort", - "User Backend" : "Benutzer-Backend", - "Last Login" : "Letzte Anmeldung", - "change full name" : "Vollständigen Namen ändern", - "set new password" : "Neues Passwort setzen", - "change email address" : "E-Mail-Adresse ändern", - "Default" : "Standard" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/de_DE.json b/settings/l10n/de_DE.json deleted file mode 100644 index 5b267b9bf7c..00000000000 --- a/settings/l10n/de_DE.json +++ /dev/null @@ -1,297 +0,0 @@ -{ "translations": { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Sicherheits- & Einrichtungswarnungen", - "Sharing" : "Teilen", - "Server-side encryption" : "Serverseitige Verschlüsselung", - "External Storage" : "Externer Speicher", - "Cron" : "Cron", - "Email server" : "E-Mail-Server", - "Log" : "Log", - "Tips & tricks" : "Tipps & Tricks", - "Updates" : "Updates", - "Couldn't remove app." : "Die App konnte nicht entfernt werden.", - "Language changed" : "Sprache geändert", - "Invalid request" : "Ungültige Anforderung", - "Authentication error" : "Authentifizierungsfehler", - "Admins can't remove themself from the admin group" : "Administratoren können sich nicht selbst aus der admin-Gruppe löschen", - "Unable to add user to group %s" : "Der Benutzer konnte nicht zur Gruppe %s hinzugefügt werden", - "Unable to remove user from group %s" : "Der Benutzer konnte nicht aus der Gruppe %s entfernt werden", - "Couldn't update app." : "Die App konnte nicht aktualisiert werden.", - "Wrong password" : "Falsches Passwort", - "No user supplied" : "Keinen Benutzer angegeben", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Bitte geben Sie ein Wiederherstellungspasswort für das Administratorkonto an, da sonst alle Benutzerdaten verlorengehen können", - "Wrong admin recovery password. Please check the password and try again." : "Falsches Wiederherstellungspasswort für das Admin-Konto. Bitte überprüfen Sie das Passwort und versuchen Sie es erneut.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Das Backend unterstützt die Passwortänderung nicht, aber der Benutzerschlüssel wurde erfolgreich aktualisiert.", - "Unable to change password" : "Passwort konnte nicht geändert werden", - "Enabled" : "Aktiviert", - "Not enabled" : "Nicht aktiviert", - "installing and updating apps via the app store or Federated Cloud Sharing" : "Das Installieren und Aktualisieren von Apps durch den App-Store oder durch Federated Cloud Sharing", - "Federated Cloud Sharing" : "Federated-Cloud-Sharing", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL verwendet eine veraltete %s Version (%s). Bitte aktualisieren Sie ihr Betriebssystem, da ansonsten Funktionen, wie z.B. %s, nicht zuverlässig funktionieren werden.", - "A problem occurred, please check your log files (Error: %s)" : "Es ist ein Problem aufgetreten, bitte überprüfen Sie Ihre Logdateien (Fehler: %s)", - "Migration Completed" : "Migration abgeschlossen", - "Group already exists." : "Gruppe existiert bereits.", - "Unable to add group." : "Gruppe konnte nicht angelegt werden.", - "Unable to delete group." : "Gruppe konnte nicht gelöscht werden.", - "log-level out of allowed range" : "Log-Level außerhalb des erlaubten Bereichs", - "Saved" : "Gespeichert", - "test email settings" : "E-Mail-Einstellungen testen", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Beim Senden der E-Mail ist ein Problem aufgetreten. Bitte überprüfen Sie Ihre Einstellungen. (Fehler: %s)", - "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.", - "Invalid mail address" : "Ungültige E-Mail-Adresse", - "A user with that name already exists." : "Ein Benutzer mit diesem Namen existiert bereits.", - "Unable to create user." : "Benutzer konnte nicht erstellt werden.", - "Your %s account was created" : "Ihr %s-Konto wurde erstellt", - "Unable to delete user." : "Benutzer konnte nicht gelöscht werden.", - "Forbidden" : "Verboten", - "Invalid user" : "Ungültiger Benutzer", - "Unable to change mail address" : "E-Mail-Adresse konnte nicht geändert werden", - "Email saved" : "E-Mail-Adresse gespeichert", - "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", - "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", - "Migration in progress. Please wait until the migration is finished" : "Migration in Arbeit. Bitte warten Sie, bis die Migration beendet ist", - "Migration started …" : "Migration begonnen…", - "Sending..." : "Wird gesendet…", - "Official" : "Offiziell", - "Approved" : "Geprüft", - "Experimental" : "Experimentell", - "All" : "Alle", - "No apps found for your version" : "Es wurden keine Apps für Ihre Version gefunden", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Offizielle Apps werden von und innerhalb der ownCloud-Community entwickelt. Sie stellen zentrale Funktionen von ownCloud bereit und sind auf den Produktiveinsatz vorbereitet.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Geprüfte Apps werden von vertrauenswürdigen Entwicklern entwickelt und haben eine oberflächliche Sicherheitsprüfung durchlaufen. Sie werden innerhalb eines offenen Code-Repositorys aktiv gepflegt und ihre Betreuer erachten sie als stabil genug für für den gelegentlichen bis normalen Einsatz.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Diese App ist nicht auf Sicherheitsprobleme hin überprüft und ist neu oder bekanntermaßen instabil. Die Installation erfolgt auf eigenes Risiko.", - "Update to %s" : "Aktualisierung auf %s", - "_You have %n app update pending_::_You have %n app updates pending_" : ["Sie haben %n Aktualisierung verfügbar","Sie haben %n Aktualisierungen verfügbar"], - "Please wait...." : "Bitte warten…", - "Error while disabling app" : "Beim Deaktivieren der App ist ein Fehler aufgetreten", - "Disable" : "Deaktivieren", - "Enable" : "Aktivieren", - "Error while enabling app" : "Beim Aktivieren der App ist ein Fehler aufgetreten", - "Error: this app cannot be enabled because it makes the server unstable" : "Fehler: Diese App kann nicht aktiviert werden, da es den Server instabil macht.", - "Error: could not disable broken app" : "Fehler: Die beschädigte Anwendung konnte nicht deaktiviert werden", - "Error while disabling broken app" : "Beim Deaktivieren der defekten App ist ein Fehler aufgetreten", - "Updating...." : "Update…", - "Error while updating app" : "Es ist ein Fehler während des Updates aufgetreten", - "Updated" : "Aktualisiert", - "Uninstalling ...." : "Wird deinstalliert…", - "Error while uninstalling app" : "Fehler beim Deinstallieren der App", - "Uninstall" : "Deinstallieren", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Die App wurde aktiviert, aber sie benötigt ein Update. Sie werden zur Update Seite in 5 Sekunden weitergeleitet.", - "App update" : "App aktualisieren", - "No apps found for {query}" : "Keine Applikationen für {query} gefunden", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Es ist ein Fehler aufgetreten. Bitte laden Sie ein ASCII-kodiertes PEM-Zertifikat hoch.", - "Valid until {date}" : "Gültig bis {date}", - "Delete" : "Löschen", - "An error occurred: {message}" : "Ein Fehler ist aufgetreten: {message}", - "Select a profile picture" : "Wählen Sie ein Profilbild", - "Very weak password" : "Sehr schwaches Passwort", - "Weak password" : "Schwaches Passwort", - "So-so password" : "Passables Passwort", - "Good password" : "Gutes Passwort", - "Strong password" : "Starkes Passwort", - "Groups" : "Gruppen", - "Unable to delete {objName}" : "Löschen von {objName} nicht möglich", - "Error creating group: {message}" : "Fehler beim Erstellen einer Gruppe: {message}", - "A valid group name must be provided" : "Ein gültiger Gruppenname muss angegeben werden", - "deleted {groupName}" : "{groupName} gelöscht", - "undo" : "rückgängig machen", - "no group" : "Keine Gruppe", - "never" : "niemals", - "deleted {userName}" : "{userName} gelöscht", - "add group" : "Gruppe hinzufügen", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Die Änderung des Passworts führt zu Datenverlust, weil die Datenwiederherstellung für diesen Benutzer nicht verfügbar ist", - "A valid username must be provided" : "Es muss ein gültiger Benutzername angegeben werden", - "Error creating user: {message}" : "Fehler beim Erstellen eines Benutzers: {message}", - "A valid password must be provided" : "Es muss ein gültiges Passwort angegeben werden", - "A valid email must be provided" : "Es muss eine gültige E-Mail-Adresse angegeben werden", - "__language_name__" : "Deutsch (Förmlich: Sie)", - "Unlimited" : "Unbegrenzt", - "Personal info" : "Persönliche Informationen", - "Sync clients" : "Sync-Clients", - "Everything (fatal issues, errors, warnings, info, debug)" : "Alles (fatale Probleme, Fehler, Warnungen, Infos, Fehlerdiagnose)", - "Info, warnings, errors and fatal issues" : "Infos, Warnungen, Fehler und fatale Probleme", - "Warnings, errors and fatal issues" : "Warnungen, Fehler und fatale Probleme", - "Errors and fatal issues" : "Fehler und fatale Probleme", - "Fatal issues only" : "Nur kritische Fehler", - "None" : "Keine", - "Login" : "Anmelden", - "Plain" : "Plain", - "NT LAN Manager" : "NT LAN Manager", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "PHP scheint zur Abfrage von Systemumgebungsvariablen nicht richtig eingerichtet zu sein. Der Test mit getenv (\"PATH\") liefert nur eine leere Antwort zurück.", - "Please check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation documentation ↗</a> for php configuration notes and the php configuration of your server, especially when using php-fpm." : "Bitte schauen Sie in der <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">Installationsdokumentation ↗</a>auf Hinweise zur PHP-Konfiguration, sowie die PHP-Konfiguration ihres Servers, insbesondere dann, wenn Sie PHP-FPM einsetzten.", - "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 verhindert das Setzen einiger Einstellungen über die Web-Schnittstelle. Weiterhin muss bei jedem Update der Schreibzugriff auf die Datei händisch aktiviert werden.", - "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP ist offenbar so konfiguriert, dass PHPDoc-Blöcke in der Anweisung entfernt werden. Dadurch sind mehrere Kern-Apps nicht erreichbar.", - "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Dies wird wahrscheinlich durch Zwischenspeicher/Beschleuniger wie etwa Zend OPcache oder eAccelerator verursacht.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Ihr Server wird mit Microsoft Windows betrieben. Für ein optimales Nutzungserlebnis empfehlen wir dringend Linux.", - "%1$s below version %2$s is installed, for stability and performance reasons we recommend updating to a newer %1$s version." : "%1$s ist in einer älteren Version als %2$s installiert. Aus Stabilitäts- und Performancegründen empfehlen wir eine Aktualisierung auf eine neuere %1$s-Version", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen Ihnen dieses Modul zu aktivieren, um die besten Resultate bei der Bestimmung der Dateitypen zu erzielen.", - "Transactional file locking is disabled, this might lead to issues with race conditions. Enable 'filelocking.enabled' in config.php to avoid these problems. See the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a> for more information." : "Transaktionales Sperren ist deaktiviert, was zu Problemen mit Laufzeitbedingungen führen kann. Aktivieren Sie 'filelocking.enabled' in der config.php diese Probleme zu vermeiden. Weitere Informationen findest Sie in unserer <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">Dokumentation ↗</a>.", - "System locale can not be set to a one which supports UTF-8." : "Es kann kein Systemgebietsschema gesetzt werden, das UTF-8 unterstützt.", - "This means that there might be problems with certain characters in file names." : "Dies bedeutet, dass es zu Problemen mit bestimmten Zeichen in Dateinamen kommen kann.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Wir empfehlen dringend, die erforderlichen Pakete auf Ihrem System zu installieren, damit eines der folgenden Gebietsschemata unterstützt wird: %s.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Wenn sich Ihre Installation nicht im Wurzelverzeichnis der Domain befindet und Cron aus dem System genutzt wird, kann es zu Fehlern bei der URL-Generierung kommen. Um dies zu verhindern, setzen Sie bitte die „overwrite.cli.url“-Option in Ihrer config.php auf das Web-Wurzelverzeichnis Ihrer Installation (Vorschlag: „%s“).", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Die Ausführung des Cron-Jobs über die Kommandozeile war nicht möglich. Die folgenden technischen Fehler sind dabei aufgetreten:", - "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"#log-section\">log</a>." : "Bitte überprüfen Sie noch einmal die <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">Installationsanleitungen ↗</a> und kontrollieren Sie das <a href=\"#log-section\">Log</a> auf mögliche Fehler oder Warnungen.", - "All checks passed." : "Alle checks erfolgreich gepfüft.", - "Open documentation" : "Dokumentation öffnen", - "Allow apps to use the Share API" : "Apps die Benutzung der Share-API erlauben", - "Allow users to share via link" : "Benutzern erlauben, Inhalte über 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, E-Mail-Benachrichtigungen für freigegebene Dateien zu senden", - "Set default expiration date" : "Standardmäßiges Ablaufdatum setzen", - "Expire after " : "Ablauf nach ", - "days" : "Tagen", - "Enforce expiration date" : "Ablaufdatum erzwingen", - "Allow resharing" : "Weiterverteilen erlauben", - "Allow sharing with groups" : "Mit Gruppen teilen erlauben", - "Restrict users to only share with users in their groups" : "Benutzer auf das Teilen innerhalb ihrer Gruppen beschränken", - "Allow users to send mail notification for shared files to other users" : "Benutzern erlauben, E-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.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Die Auto-Vervollständigung von Benutzernamen im Teilen-Dialog erlauben. Wenn dies deaktiviert ist, muss der vollständige Benutzername eingegeben werden.", - "Last cron job execution: %s." : "Letzte Cron-Job-Ausführung: %s.", - "Last cron job execution: %s. Something seems wrong." : "Letzte Cron-Job-Ausführung: %s. Möglicherweise liegt ein Fehler vor.", - "Cron was not executed yet!" : "Cron wurde bis jetzt noch nicht ausgeführt!", - "Execute one task with each page loaded" : "Eine Aufgabe bei jedem Laden der Seite ausführen", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php ist als Webcron-Dienst registriert, der die cron.php alle 15 Minuten per HTTP aufruft.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Benutzen Sie den systemeigenen Cron-Dienst, um die cron.php alle 15 Minuten aufzurufen.", - "Enable server-side encryption" : "Serverseitige Verschlüsselung aktivieren", - "Please read carefully before activating server-side encryption: " : "Bitte lesen Sie ganz genau, bevor Sie die Serverseite Verschlüsselung aktivieren:", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "Wird die Verschlüsselung einmal aktiviert, so werden alle ab diesem Zeitpunkt hochgeladene Dateien verschlüsselt. Sie kann nur wieder deaktiviert werden, wenn das Verschlüsselungsmodul dies unterstützt und alle Voraussetzungen (wie das Setzen eines Wiederherstellungsschlüssels) im Vorhinein erfüllt wurden.", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "Verschlüsselung an sich garantiert nicht die Sicherheit des Systems. Bitte schauen Sie in die ownCloud Dokumentation für weitere Informationen wie die Verschlüsselungs-App funktioniert und welche Anwendungsfälle unterstützt werden.", - "Be aware that encryption always increases the file size." : "Bedenke das durch die Verschlüsselung die Dateigröße zunimmt. ", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "Es ist immer gut, regelmäßig Sicherungskopien von ihren Daten zu machen. Falls Sie die Verschlüsselung nutzen, sollten Sie auch eine Sicherung der Verschlüsselungsschlüssel zusammen mit ihren Daten machen.", - "This is the final warning: Do you really want to enable encryption?" : "Dies ist die letzte Warnung: Wollen Sie die Verschlüsselung wirklich aktivieren?", - "Enable encryption" : "Verschlüsselung aktivieren", - "No encryption module loaded, please enable an encryption module in the app menu." : "Kein Verschlüsselungs-Modul geladen, bitte aktiviere ein Verschlüsselungs-Modul im Anwendungs-Menü.", - "Select default encryption module:" : "Standard-Verschlüsselungs-Modul auswählen:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Sie müssen Ihre Verschlüsselungsschlüssel von der alten Verschlüsselung (ownCloud <= 8.0) zur Neuen migrieren. Bitte aktivieren Sie das \"Default Encryption Module\" und rufen Sie 'occ encryption:migrate' auf.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Sie müssen Ihre Verschlüsselungsschlüssel von der alten Verschlüsselung (ownCloud <= 8.0) zur Neuen migrieren.", - "Start migration" : "Migration beginnen", - "This is used for sending out notifications." : "Dies wird für das Senden von Benachrichtigungen verwendet.", - "Send mode" : "Sendemodus", - "Encryption" : "Verschlüsselung", - "From address" : "Absenderadresse", - "mail" : "Mail", - "Authentication method" : "Authentifizierungsmethode", - "Authentication required" : "Authentifizierung benötigt", - "Server address" : "Serveradresse", - "Port" : "Port", - "Credentials" : "Zugangsdaten", - "SMTP Username" : "SMTP Benutzername", - "SMTP Password" : "SMTP Passwort", - "Store credentials" : "Anmeldeinformationen speichern", - "Test email settings" : "E-Mail-Einstellungen testen", - "Send email" : "E-Mail senden", - "Download logfile" : "Logdatei herunterladen", - "More" : "Mehr", - "Less" : "Weniger", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Die Logdatei ist größer als 100 MB. Es kann etwas Zeit beanspruchen, sie herunterzuladen!", - "What to log" : "Was geloggt wird", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite wird als Datenbank verwendet. Bei größeren Installationen wird empfohlen, auf ein anderes Datenbank-Backend zu wechseln.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Insbesondere bei der Nutzung des Desktop Clients zur Dateisynchronisierung wird vom Einsatz von SQLite abgeraten.", - "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a>." : "Um zu einer anderen Datenbank zu migrieren, benutzen Sie bitte die Kommandozeile: 'occ db:convert-type', oder in die <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">Dokumentation ↗</a> schauen.", - "How to do backups" : "Wie man Backups anlegt", - "Advanced monitoring" : "Erweitertes Monitoring", - "Performance tuning" : "Leistungsoptimierung", - "Improving the config.php" : "Die config.php optimieren", - "Theming" : "Themes verwenden", - "Hardening and security guidance" : "Systemhärtung und Sicherheitsempfehlungen", - "Version" : "Version", - "Developer documentation" : "Dokumentation für Entwickler", - "Experimental applications ahead" : "Experimentelle Apps nachfolgend", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Experimentelle Apps sind nicht auf Sicherheitsprobleme hin überprüft, sind neu oder bekanntermaßen instabil und befinden sich in intensiver Entwicklung. Ihre Installation kann Datenverlust oder Sicherheitslücken hervorrufen.", - "by %s" : "durch %s", - "%s-licensed" : "%s-Lizensiert", - "Documentation:" : "Dokumentation:", - "User documentation" : "Dokumentation für Benutzer", - "Admin documentation" : "Dokumentation für Administratoren", - "Show description …" : "Beschreibung anzeigen…", - "Hide description …" : "Beschreibung ausblenden…", - "This app has an update available." : "Es ist eine Aktualisierung für diese Anwendung verfügbar.", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Dieser App ist keine minimum ownCloud Version zugewiesen. Dies wird ein Fehler in ownCloud 11 und später sein.", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Diese App hat keine maximale ownCloud Version zugeordnet. Dies wird ein Fehler in ownCloud 11 und später sein.", - "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:", - "Enable only for specific groups" : "Nur für bestimmte Gruppen aktivieren", - "Uninstall App" : "App deinstallieren", - "Enable experimental apps" : "Experimentelle Apps aktivieren", - "SSL Root Certificates" : "SSL Root Zertifikate", - "Common Name" : "Common Name", - "Valid until" : "Gültig bis", - "Issued By" : "Ausgestellt von:", - "Valid until %s" : "Gültig bis %s", - "Import root certificate" : "Root-Zertifikat importieren", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Hallo,<br><br>hier nur kurz die Mitteilung, dass Sie jetzt ein %s-Konto haben.<br><br>Ihr Benutzername: %s<br>Greifen Sie darauf zu: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Noch einen schönen Tag!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Hallo,\n\nhier nur kurz die Mitteilung, dass Sie jetzt ein %s-Konto haben.\n\nIhr Benutzername: %s\nGreifen Sie darauf zu: %s\n\n", - "Administrator documentation" : "Dokumentation für Administratoren", - "Online documentation" : "Online-Dokumentation", - "Forum" : "Forum", - "Issue tracker" : "Issue Tracker", - "Commercial support" : "Kommerzieller Support", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "Sie verwenden <strong>%s</strong> der verfügbaren <strong>%s</strong>", - "Profile picture" : "Profilbild", - "Upload new" : "Neues hochladen", - "Select from Files" : "Aus Dateien wählen", - "Remove image" : "Bild entfernen", - "png or jpg, max. 20 MB" : "png oder jpg, max. 20 MB", - "Picture provided by original account" : "Bild von Original-Konto zur Verfügung gestellt", - "Cancel" : "Abbrechen", - "Choose as profile picture" : "Als Profilbild auswählen", - "Full name" : "Vollständiger Name", - "No display name set" : "Kein Anzeigename angegeben", - "Email" : "E-Mail", - "Your email address" : "Ihre E-Mail-Adresse", - "For password recovery and notifications" : "Für Passwort Wiederherstellung und Benachrichtigungen", - "No email address set" : "Keine E-Mail-Adresse angegeben", - "You are member of the following groups:" : "Sie sind Mitglied folgender Gruppen:", - "Password" : "Passwort", - "Unable to change your password" : "Das Passwort konnte nicht geändert werden", - "Current password" : "Aktuelles Passwort", - "New password" : "Neues Passwort", - "Change password" : "Passwort ändern", - "Language" : "Sprache", - "Help translate" : "Helfen Sie bei der Übersetzung", - "Get the apps to sync your files" : "Installieren Sie die Anwendungen, um Ihre Dateien zu synchronisieren", - "Desktop client" : "Desktop-Client", - "Android app" : "Android-App", - "iOS app" : "iOS-App", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Wenn Sie das Projekt unterstützen möchten,\n<a href=\"https://owncloud.org/contribute\"\ntarget=\"_blank\" rel=\"noreferrer\">beteiligen Sie sich an der Entwicklung</a>\noder\n<a href=\"https://owncloud.org/promote\"\ntarget=\"_blank\" rel=\"noreferrer\">helfen Sie mit, es bekannter zu machen</a>!", - "Show First Run Wizard again" : "Den Einrichtungsassistenten erneut anzeigen", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Entwickelt von der {communityopen}ownCloud-Community{linkclose}, der {githubopen}Quellcode{linkclose} ist unter den Bedingungen der {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose} lizenziert.", - "Show storage location" : "Speicherort anzeigen", - "Show last log in" : "Letzte Anmeldung anzeigen", - "Show user backend" : "Benutzer-Backend anzeigen", - "Send email to new user" : "E-Mail an neuen Benutzer senden", - "Show email address" : "E-Mail Adresse anzeigen", - "Username" : "Benutzername", - "E-Mail" : "E-Mail", - "Create" : "Erstellen", - "Admin Recovery Password" : "Admin-Passwort-Wiederherstellung", - "Enter the recovery password in order to recover the users files during password change" : "Geben Sie das Wiederherstellungspasswort ein, um die Benutzerdateien während der Passwortänderung wiederherzustellen", - "Add Group" : "Gruppe hinzufügen", - "Group" : "Gruppe", - "Everyone" : "Jeder", - "Admins" : "Administratoren", - "Default Quota" : "Standardkontingent", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Bitte Speicherkontingent eingeben (z.B.: „512 MB“ oder „12 GB“)", - "Other" : "Andere", - "Full Name" : "Vollständiger Name", - "Group Admin for" : "Gruppenadministrator für", - "Quota" : "Kontingent", - "Storage Location" : "Speicherort", - "User Backend" : "Benutzer-Backend", - "Last Login" : "Letzte Anmeldung", - "change full name" : "Vollständigen Namen ändern", - "set new password" : "Neues Passwort setzen", - "change email address" : "E-Mail-Adresse ändern", - "Default" : "Standard" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/el.js b/settings/l10n/el.js deleted file mode 100644 index 05710d0659d..00000000000 --- a/settings/l10n/el.js +++ /dev/null @@ -1,273 +0,0 @@ -OC.L10N.register( - "settings", - { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Προειδοποιήσεις ασφάλειας & ρυθμίσεων", - "Sharing" : "Διαμοιρασμός", - "Server-side encryption" : "Κρυπτογράφηση από τον Διακομιστή", - "External Storage" : "Εξωτερικό Αποθηκευτικό Μέσο", - "Cron" : "Cron", - "Email server" : "Διακομιστής Email", - "Log" : "Καταγραφές", - "Tips & tricks" : "Συμβουλές & τεχνάσματα", - "Updates" : "Ενημερώσεις", - "Couldn't remove app." : "Αδυναμία αφαίρεσης εφαρμογής.", - "Language changed" : "Η γλώσσα άλλαξε", - "Invalid request" : "Μη έγκυρο αίτημα", - "Authentication error" : "Σφάλμα πιστοποίησης", - "Admins can't remove themself from the admin group" : "Οι διαχειριστές δεν μπορούν να αφαιρέσουν τους εαυτούς τους από την ομάδα των διαχειριστών", - "Unable to add user to group %s" : "Αδυναμία προσθήκη χρήστη στην ομάδα %s", - "Unable to remove user from group %s" : "Αδυναμία αφαίρεσης χρήστη από την ομάδα %s", - "Couldn't update app." : "Αδυναμία ενημέρωσης εφαρμογής", - "Wrong password" : "Εσφαλμένο συνθηματικό", - "No user supplied" : "Δεν εισήχθη χρήστης", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Παρακαλώ παρέχετε έναν κωδικό ανάκτησης διαχειριστή, διαφορετικά όλα τα δεδομένα χρήστη θα χαθούν", - "Wrong admin recovery password. Please check the password and try again." : "Λάθος κωδικός ανάκτησης διαχειριστή. Παρακαλώ ελέγξτε τον κωδικό και δοκιμάστε ξανά.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Το σύστημα δεν υποστηρίζει αλλαγή κωδικού, αλλά το κλειδί κρυπτογράφησης του χρήστη ενημερώθηκε επιτυχώς.", - "Unable to change password" : "Αδυναμία αλλαγής συνθηματικού", - "Enabled" : "Ενεργοποιημένο", - "Not enabled" : "Μη ενεργοποιημένο", - "installing and updating apps via the app store or Federated Cloud Sharing" : "εγκατάσταση και ενημέρωση εφαρμογών μέσω του καταστήματος εφαρμογών ή του ", - "Federated Cloud Sharing" : "Διαμοιρασμός σε ομόσπονδα σύννεφα ", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "Το cURL χρησιμοποιεί μια παρωχημένη %s έκδοση (%s). Παρακαλούμε αναβαθμίστε το λειτουργικό σας σύστημα αλλιώς δυνατότητες όπως %s δεν θα δουλέψουν αξιόπιστα.", - "A problem occurred, please check your log files (Error: %s)" : "Παρουσιάστηκε πρόβλημα, παρακαλώ ελέγξτε τα αρχεία καταγραφής σας (Σφάλμα: %s)", - "Migration Completed" : "Η μετάβαση ολοκληρώθηκε", - "Group already exists." : "Η ομάδα υπάρχει ήδη.", - "Unable to add group." : "Αδυναμία προσθήκης ομάδας.", - "Unable to delete group." : "Αδυναμία διαγραφής ομάδας.", - "log-level out of allowed range" : "Το επίπεδο καταγραφής είναι εκτός του επιτρεπόμενου πεδίου", - "Saved" : "Αποθηκεύτηκαν", - "test email settings" : "δοκιμή ρυθμίσεων email", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Παρουσιάστηκε σφάλμα κατά την αποστολή e-mail. Παρακαλώ ελέγξτε τις ρυθμίσεις σας.(Error: %s)", - "Email sent" : "Το Email απεστάλη ", - "You need to set your user email before being able to send test emails." : "Πρέπει να ορίσετε το email του χρήστη πριν να είστε σε θέση να στείλετε δοκιμαστικά emails.", - "Invalid mail address" : "Μη έγκυρη διεύθυνση ταχυδρομείου.", - "A user with that name already exists." : "Υπάρχει ήδη χρήστης με το ίδιο όνομα", - "Unable to create user." : "Αδυναμία δημιουργίας χρήστη.", - "Your %s account was created" : "Ο λογαριασμός %s δημιουργήθηκε", - "Unable to delete user." : "Αδυναμία διαγραφής χρήστη.", - "Forbidden" : "Δεν επιτρέπεται", - "Invalid user" : "Μη έγκυρος χρήστης", - "Unable to change mail address" : "Αδυναμία αλλαγής διεύθυνσης αλληλογραφίας", - "Email saved" : "Το email αποθηκεύτηκε ", - "Your full name has been changed." : "Το πλήρες όνομά σας άλλαξε.", - "Unable to change full name" : "Δεν ήταν δυνατή η αλλαγή του πλήρους ονόματός σας", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Είστε πραγματικά σίγουροι ότι θέλετε να προσθέσετε το \"{domain}\" σαν αξιόπιστη περιοχή;", - "Add trusted domain" : "Προσθέστε αξιόπιστη περιοχή", - "Migration in progress. Please wait until the migration is finished" : "Μετάβαση σε εξέλιξη. Παρακαλούμε περιμένετε μέχρι να ολοκληρωθεί η μετάβαση", - "Migration started …" : "Η μετάβαση ξεκίνησε ...", - "Sending..." : "Αποστέλεται...", - "Official" : "Επίσημο", - "Approved" : "Εγκεκριμένο", - "Experimental" : "Πειραματικό", - "All" : "Όλες", - "No apps found for your version" : "Δεν βρέθηκαν εφαρμογές για αυτή την έκδοση", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Οι επίσημες εφαρμογές αναπτύσσονται από την κοινότητα ownCloud. Προσφέρουν λειτουργικότητα κοντά στο ownCloud και είναι έτοιμες για χρήση.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Οι εγκεκριμένες εφαρμογές αναπτύχθηκαν από αξιόπιστους προγραμματιστές και έχουν περάσει έναν συνοπτικό έλεγχο ασφαλείας. Διατηρούνται ενεργά σε ένα αποθετήριο ανοιχτού κώδικα και οι συντηρητές θεωρούν οτι είναι σταθερές για κανονική χρήση.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Η εφαρμογή αυτή δεν ελέγχεται για θέματα ασφάλειας και είναι νέα ή είναι γνωστό ότι είναι ασταθής. Η εγκατάσταση γίνεται με δική σας ευθύνη.", - "Update to %s" : "Ενημέρωση σε %s", - "Please wait...." : "Παρακαλώ περιμένετε...", - "Error while disabling app" : "Σφάλμα κατά την απενεργοποίηση εισόδου", - "Disable" : "Απενεργοποίηση", - "Enable" : "Ενεργοποίηση", - "Error while enabling app" : "Σφάλμα κατά την ενεργοποίηση της εφαρμογής", - "Updating...." : "Ενημέρωση...", - "Error while updating app" : "Σφάλμα κατά την ενημέρωση της εφαρμογής", - "Updated" : "Ενημερώθηκε", - "Uninstalling ...." : "Απεγκατάσταση ....", - "Error while uninstalling app" : "Σφάλμα κατά την απεγκατάσταση της εφαρμογής", - "Uninstall" : "Απεγκατάσταση", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Η εφαρμογή έχει ενεργοποιηθεί αλλά χρειάζεται ενημέρωση. Θα μεταφερθείτε στη σελίδα ενημέρωσης σε 5 δευτερόλεπτα.", - "App update" : "Ενημέρωση εφαρμογής", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Προέκυψε σφάλμα. Παρακαλούμε μεταφορτώστε ένα πιστοποιητικό PEM κωδικοποιημένο κατά ASCII.", - "Valid until {date}" : "Έγκυρο έως {date}", - "Delete" : "Διαγραφή", - "An error occurred: {message}" : "Παρουσιάστηκε σφάλμα: {message}", - "Select a profile picture" : "Επιλογή εικόνας προφίλ", - "Very weak password" : "Πολύ αδύναμο συνθηματικό", - "Weak password" : "Αδύναμο συνθηματικό", - "So-so password" : "Μέτριο συνθηματικό", - "Good password" : "Καλό συνθηματικό", - "Strong password" : "Δυνατό συνθηματικό", - "Groups" : "Ομάδες", - "Unable to delete {objName}" : "Αδυναμία διαγραφής του {objName}", - "A valid group name must be provided" : "Πρέπει να δοθεί ένα έγκυρο όνομα ομάδας", - "deleted {groupName}" : "διαγραφή {groupName}", - "undo" : "αναίρεση", - "no group" : "καμια ομάδα", - "never" : "ποτέ", - "deleted {userName}" : "διαγραφή {userName}", - "add group" : "προσθήκη ομάδας", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Η αλλαγή του κωδικού πρόσβασης θα έχει ως αποτέλεσμα το χάσιμο δεδομένων, επειδή η ανάκτηση δεδομένων δεν είναι διαθέσιμη γι' αυτόν τον χρήστη", - "A valid username must be provided" : "Πρέπει να δοθεί έγκυρο όνομα χρήστη", - "A valid password must be provided" : "Πρέπει να δοθεί έγκυρο συνθηματικό", - "A valid email must be provided" : "Πρέπει να εισαχθεί ένα έγκυρο email", - "__language_name__" : "__όνομα_γλώσσας__", - "Unlimited" : "Απεριόριστο", - "Personal info" : "Προσωπικές Πληροφορίες", - "Sync clients" : "Συγχρονισμός πελατών", - "Everything (fatal issues, errors, warnings, info, debug)" : "Όλα (καίρια ζητήματα, σφάλματα, προειδοποιήσεις, πληροφορίες, αποσφαλμάτωση)", - "Info, warnings, errors and fatal issues" : "Πληροφορίες, προειδοποιήσεις, σφάλματα και καίρια ζητήματα", - "Warnings, errors and fatal issues" : "Προειδοποιήσεις, σφάλματα και καίρια ζητήματα", - "Errors and fatal issues" : "Σφάλματα και καίρια ζητήματα", - "Fatal issues only" : "Καίρια ζητήματα μόνο", - "None" : "Τίποτα", - "Login" : "Σύνδεση", - "Plain" : "Απλό", - "NT LAN Manager" : "Διαχειριστης NT LAN", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "Η php δεν φαίνεται να είναι σωστά ρυθμισμένη για ερωτήματα σε μεταβλητές περιβάλλοντος του συστήματος. Η δοκιμή με την εντολή getenv(\"PATH\") επιστρέφει κενή απάντηση.", - "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." : "Η ρύθμιση \"μόνο ανάγνωση\" έχει ενεργοποιηθεί. Αυτό εμποδίζει τον καθορισμό κάποιων ρυθμίσεων μέσω της διεπαφής web. Επιπλέον, το αρχείο πρέπει να γίνει χειροκίνητα εγγράψιμο πριν από κάθε διαδικασία ενημέρωσης.", - "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.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Ο διακομιστής σας τρέχει σε Microsoft Windows. Συστήνουμε ιδιαίτερα Linux για τη βέλτιστη εμπειρία του χρήστη.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Η PHP ενοτητα 'fileinfo' λειπει. Σας συνιστούμε να ενεργοποιήσετε αυτή την ενότητα για να έχετε καλύτερα αποτελέσματα με τον εντοπισμό τύπου MIME. ", - "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.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Αν η εγκατάστασή σας δεν έχει γίνει στο root του τομέα και χρησιμοποιείται το cron του συστήματος, μπορεί να υπάρξουν ζητήματα με τη δημιουργία URL. Για να αποφύγετε αυτά τα προβλήματα, παρακαλώ ρυθμίστε την επιλογή \"overwrite.cli.url\" στο αρχείο config.php που βρίσκεται στη διαδρομή webroot της εγκατάστασής σας (Suggested: \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Δεν ήταν δυνατή η εκτέλεση της cronjob μέσω τερματικού. Εμφανίστηκαν τα παρακάτω τεχνικά σφάλματα:", - "All checks passed." : "Όλοι οι έλεγχοι επιτυχείς.", - "Open documentation" : "Ανοιχτή τεκμηρίωση.", - "Allow apps to use the Share API" : "Επιτρέπει την χρήση του API διαμοιρασμού σε εφαρμογές ", - "Allow users to share via link" : "Να επιτρέπεται σε χρήστες ο διαμοιρασμός μέσω συνδέσμου", - "Enforce password protection" : "Επιβολή προστασίας με κωδικό", - "Allow public uploads" : "Επιτρέπεται το κοινόχρηστο ανέβασμα", - "Allow users to send mail notification for shared files" : "Επιτρέψτε στους χρήστες να στέλνουν ειδοποιήσεις μέσω ηλεκτρονικού ταχυδρομείου για κοινόχρηστα αρχεία", - "Set default expiration date" : "Ορισμός ερήμην ημερομηνίας λήξης", - "Expire after " : "Λήξη μετά από", - "days" : "ημέρες", - "Enforce expiration date" : "Επιβολή της ημερομηνίας λήξης", - "Allow resharing" : "Επιτρέπεται ο επαναδιαμοιρασμός", - "Restrict users to only share with users in their groups" : "Να επιτρέπεται σε χρήστες ο διαμοιρασμός μόνο με χρήστες που ανήκουν στις ομάδες τους", - "Allow users to send mail notification for shared files to other users" : "Να επιτρέπεται η αποστολή ειδοποιήσεων σε άλλους χρήστες, μέσω αλληλογραφίας για κοινόχρηστα αρχεία", - "Exclude groups from sharing" : "Εξαίρεση ομάδων από τον διαμοιρασμό", - "These groups will still be able to receive shares, but not to initiate them." : "Αυτές οι ομάδες θα συνεχίσουν να λαμβάνουν διαμοιρασμούς, αλλά δεν θα είναι δυνατό να τους δημιουργήσουν.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Να επιτρέπεται η χρήση αυτόματης συμπλήρωσης στο διάλογο διαμοιρασμού. Αν αυτό είναι απενεργοποιημένο θα πρέπει να εισαχθεί το πλήρες όνομα χρήστη.", - "Last cron job execution: %s." : "Τελευταία εκτέλεση cron job: %s.", - "Last cron job execution: %s. Something seems wrong." : "Τελευταία εκτέλεση cron job: %s. Κάτι πήγε στραβά.", - "Cron was not executed yet!" : "Η διεργασία cron δεν έχει εκτελεστεί ακόμα!", - "Execute one task with each page loaded" : "Εκτελεί μια διεργασία κάθε φορά που φορτώνεται μια σελίδα", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "Το cron.php είναι καταχωρημένο σε μια υπηρεσία webcron ώστε να καλεί το cron.php κάθε 15 λεπτά μέσω http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Χρησιμοποιήστε την cron υπηρεσία του συτήματος για να καλέσετε το cron.php αρχείο κάθε 15 λεπτά.", - "Enable server-side encryption" : "Ενεργοποίηση κρυπτογράφησης από το διακομιστή", - "Please read carefully before activating server-side encryption: " : "Παρακαλούμε διαβάστε προσεκτικά πριν ενεργοποιήσετε την κρυπτογράφηση στο διακομιστή:", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "Μόλις ενεργοποιηθεί η κρυπτογράφηση, όλα τα αρχεία που θα μεταφορτωθούν από αυτό το σημείο και μετά θα κρυπτογραφηθούν στο διακομιστή. Η κρυπτογράφηση είναι δυνατόν να απενεργοποιηθεί αργότερα μόνο αν το ενεργό άρθρωμα κρυπτογράφησης υποστηρίζει αυτή τη λειτουργία και εκπληρούνται όλες οι προϋποθέσεις (πχ ορισμός κλειδιού ανάκτησης).", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "Η κρυπτογράφηση από΄μ9ονη της δεν εγγυάται την την ασφάλεια του συστήματος. Παρακαλούμε δείτε την τεκμηρίωση του ownCloud για περισσότερες πληροφορίες σχετικά με το πως δουλεύει η εφαρμογή κρυπτογράφησης και τις υποστηριζόμενες περιπτώσεις χρήσης.", - "Be aware that encryption always increases the file size." : "Έχετε στο νου σας πως η κρυπτογράφηση πάντα αυξάνει το μέγεθος του αρχείου", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "Είναι πάντοτε καλό να δημιουργείτε τακτικά αντίγραφα ασφαλείας των δεδομένων σας, στην περίπτωση της κρυπτογράφησης βεβαιωθείτε ότι έχετε λάβει αντίγραφο ασφαλείας των κλειδιών κρυπτογράφησης παράλληλα με τα δεδομένα σας.", - "This is the final warning: Do you really want to enable encryption?" : "Αυτή είναι η τελευταία προειδοποίηση: Θέλετε πραγματικά να ενεργοποιήσετε την κρυπτογράφηση;", - "Enable encryption" : "Ενεργοποίηση κρυπτογράφησης", - "No encryption module loaded, please enable an encryption module in the app menu." : "Δεν έχει φορτωθεί μονάδα κρυπτογράφησης, παρακαλούμε φορτώστε μια μονάδα κρυπτογράφησης από το μενού εφαρμογών.", - "Select default encryption module:" : "Επιλογή προεπιλεγμένης μονάδας κρυπτογράφησης:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Πρέπει να μεταφέρετε τα κλειδιά κρυπτογράφησής σας από την παλιά κρυπτογράφηση (ownCloud <= 8.0) στην καινούρια. Παρακαλούμε ενεργοποιήστε την \"Προεπιλεγμένη Μονάδα Κρυπτογράφησης\" και εκτελέστε την εντολή 'occ encryption:migrate'", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Πρέπει να μεταφέρετε τα κλειδιά σας κρυπτογράφησης από την παλιά κρυπτογράφηση (ownCloud <= 8.0) στην καινούρια.", - "Start migration" : "Έναρξη μετάβασης", - "This is used for sending out notifications." : "Χρησιμοποιείται για αποστολή ειδοποιήσεων.", - "Send mode" : "Κατάσταση αποστολής", - "Encryption" : "Κρυπτογράφηση", - "From address" : "Από τη διεύθυνση", - "mail" : "ταχυδρομείο", - "Authentication method" : "Μέθοδος πιστοποίησης", - "Authentication required" : "Απαιτείται πιστοποίηση", - "Server address" : "Διεύθυνση διακομιστή", - "Port" : "Θύρα", - "Credentials" : "Πιστοποιητικά", - "SMTP Username" : "Όνομα χρήστη SMTP", - "SMTP Password" : "Συνθηματικό SMTP", - "Store credentials" : "Διαπιστευτήρια αποθήκευσης", - "Test email settings" : "Δοκιμή ρυθμίσεων email", - "Send email" : "Αποστολή email", - "Download logfile" : "Λήψη αρχείου ιστορικού", - "More" : "Περισσότερα", - "Less" : "Λιγότερα", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Το αρχείο ιστορικού είναι μεγαλύτερο από 100ΜΒ. Η λήψη του ίσως πάρει λίγη ώρα!", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "Ως βάση δεδομένων χρησιμοποιείται η SQLite. Για μεγαλύτερες εγκαταστάσεις συνιστούμε να επιλέξετε ένα διαφορετικό σύστημα υποστήριξης βάσης δεδομένων.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Ειδικά όταν χρησιμοποιείτε τον πελάτη για συγχρονισμό στον υπολογιστή σας, δεν συνίσταται η χρήση της SQLite.", - "How to do backups" : "Πώς να κάνετε αντίγραφα ασφαλείας", - "Advanced monitoring" : "Παρακολούθηση για προχωρημένους", - "Performance tuning" : "Ρύθμιση βελτίωσης της απόδοσης", - "Improving the config.php" : "Βελτίωση του config.php", - "Theming" : "Θέματα", - "Hardening and security guidance" : "Οδηγίες ασφάλειας και θωράκισης", - "Version" : "Έκδοση", - "Developer documentation" : "Τεκμηρίωση προγραμματιστή", - "Experimental applications ahead" : "Πειραματικές εφαρμογές", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Οι πειραματικές εφαρμογές δεν ελέγχονται για θέματα ασφάλειας, είναι ασταθείς και υπό συνεχή εξέλιξη. Η εγκατάσταση τους μπορεί να προκαλέσει απώλεια δεδομένων ή παραβιάσεις της ασφάλειας.", - "Documentation:" : "Τεκμηρίωση:", - "User documentation" : "Τεκμηρίωση Χρήστη", - "Admin documentation" : "Τεκμηρίωση Διαχειριστή", - "Show description …" : "Εμφάνιση περιγραφής", - "Hide description …" : "Απόκρυψη περιγραφής", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Αυτή η εφαρμογή δεν μπορεί να εγκατασταθεί διότι δεν εκπληρώνονται οι ακόλουθες εξαρτήσεις:", - "Enable only for specific groups" : "Ενεργοποίηση μόνο για καθορισμένες ομάδες", - "Uninstall App" : "Απεγκατάσταση Εφαρμογής", - "Enable experimental apps" : "Ενεργοποίηση πειραματικών εφαρμογών", - "Common Name" : "Κοινό Όνομα", - "Valid until" : "Έγκυρο έως", - "Issued By" : "Έκδόθηκε από", - "Valid until %s" : "Έγκυρο έως %s", - "Import root certificate" : "Εισαγωγή Πιστοποιητικού Root", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Χαίρεται,<br><br>απλά σας κάνουμε γνωστό ότι διαθέτετε έναν %s λογαριασμό.<br><br>Το όνομά σας είναι: %s<br>Έχετε πρόσβαση: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Χαιρετισμούς!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Χαίρεται, \nαπλά σας κάνουμε γνωστό ότι διαθέτετε έναν %s λογαριασμό.\nΤο όνομά σας είναι: %s\nΈχετε πρόσβαση: %s\n", - "Administrator documentation" : "Τεκμηρίωση Διαχειριστή", - "Online documentation" : "Τεκμηρίωση στο Διαδίκτυο", - "Forum" : "Φόρουμ", - "Issue tracker" : "Ιχνηλάτης ζητημάτων", - "Commercial support" : "Εμπορική Υποστήριξη", - "Profile picture" : "Φωτογραφία προφίλ", - "Upload new" : "Μεταφόρτωση νέου", - "Remove image" : "Αφαίρεση εικόνας", - "Cancel" : "Άκυρο", - "Full name" : "Πλήρες όνομα", - "No display name set" : "Δεν ορίστηκε όνομα", - "Email" : "Ηλεκτρονικό ταχυδρομείο", - "Your email address" : "Η διεύθυνση ηλ. ταχυδρομείου σας", - "No email address set" : "Δεν ορίστηκε διεύθυνση email", - "You are member of the following groups:" : "Είστε μέλος των ακόλουθων ομάδων:", - "Password" : "Συνθηματικό", - "Unable to change your password" : "Δεν ήταν δυνατή η αλλαγή του κωδικού πρόσβασης", - "Current password" : "Τρέχων συνθηματικό", - "New password" : "Νέο συνθηματικό", - "Change password" : "Αλλαγή συνθηματικού", - "Language" : "Γλώσσα", - "Help translate" : "Βοηθήστε στη μετάφραση", - "Get the apps to sync your files" : "Λήψη της εφαρμογής για συγχρονισμό των αρχείων σας", - "Desktop client" : "Πελάτης σταθερού υπολογιστή", - "Android app" : "Εφαρμογή Android", - "iOS app" : "Εφαρμογή iOS", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Εάν θέλετε να υποστηρίξετε το έργο\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">συμμετέχετε στην ανάπτυξη</a>\n\t\tή\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">διαδόστε το μήνυμα</a>!", - "Show First Run Wizard again" : "Προβολή Οδηγού Πρώτης Εκτέλεσης ξανά", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Αναπτύχθηκε από την {communityopen} κοινότητα του ownCloud {linkclose}, ο {githubopen} πηγαίος κώδικας {linkclose} έχει την άδεια της {licenseopen} <abbr title = \"Affero General Public License\"> AGPL </ abbr> {linkclose}.", - "Show storage location" : "Εμφάνιση τοποθεσίας αποθήκευσης", - "Show last log in" : "Εμφάνιση τελευταίας εισόδου", - "Show user backend" : "Εμφάνιση χρήστη συστήματος υποστήριξης", - "Send email to new user" : "Αποστολή μηνύματος στο νέο χρήστη", - "Show email address" : "Εμφάνιση διεύθυνσης ηλ. αλληλογραφίας", - "Username" : "Όνομα χρήστη", - "E-Mail" : "Ηλεκτρονική αλληλογραφία", - "Create" : "Δημιουργία", - "Admin Recovery Password" : "Κωδικός Επαναφοράς Διαχειριστή ", - "Enter the recovery password in order to recover the users files during password change" : "Εισάγετε το συνθηματικό ανάκτησης ώστε να ανακτήσετε τα αρχεία χρηστών κατά την αλλαγή συνθηματικού", - "Add Group" : "Προσθήκη Ομάδας", - "Group" : "Ομάδα", - "Everyone" : "Όλοι", - "Admins" : "Διαχειριστές", - "Default Quota" : "Προεπιλεγμένο Όριο", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Παρακαλώ εισάγετε επιτρεπόμενα μερίδια αποθηκευτικού χώρου (π.χ. \"512 MB\" ή \"12 GB\")", - "Other" : "Άλλο", - "Full Name" : "Πλήρες όνομα", - "Group Admin for" : "Διαχειριστής ομάδας για", - "Quota" : "Σύνολο Χώρου", - "Storage Location" : "Τοποθεσία αποθηκευτικού χώρου", - "User Backend" : "Χρήστης συστήματος υποστήριξης", - "Last Login" : "Τελευταία Σύνδεση", - "change full name" : "αλλαγή πλήρους ονόματος", - "set new password" : "επιλογή νέου κωδικού", - "change email address" : "αλλαγή διεύθυνσης ηλ. αλληλογραφίας", - "Default" : "Προκαθορισμένο" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/el.json b/settings/l10n/el.json deleted file mode 100644 index 0e2b9c41a18..00000000000 --- a/settings/l10n/el.json +++ /dev/null @@ -1,271 +0,0 @@ -{ "translations": { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Προειδοποιήσεις ασφάλειας & ρυθμίσεων", - "Sharing" : "Διαμοιρασμός", - "Server-side encryption" : "Κρυπτογράφηση από τον Διακομιστή", - "External Storage" : "Εξωτερικό Αποθηκευτικό Μέσο", - "Cron" : "Cron", - "Email server" : "Διακομιστής Email", - "Log" : "Καταγραφές", - "Tips & tricks" : "Συμβουλές & τεχνάσματα", - "Updates" : "Ενημερώσεις", - "Couldn't remove app." : "Αδυναμία αφαίρεσης εφαρμογής.", - "Language changed" : "Η γλώσσα άλλαξε", - "Invalid request" : "Μη έγκυρο αίτημα", - "Authentication error" : "Σφάλμα πιστοποίησης", - "Admins can't remove themself from the admin group" : "Οι διαχειριστές δεν μπορούν να αφαιρέσουν τους εαυτούς τους από την ομάδα των διαχειριστών", - "Unable to add user to group %s" : "Αδυναμία προσθήκη χρήστη στην ομάδα %s", - "Unable to remove user from group %s" : "Αδυναμία αφαίρεσης χρήστη από την ομάδα %s", - "Couldn't update app." : "Αδυναμία ενημέρωσης εφαρμογής", - "Wrong password" : "Εσφαλμένο συνθηματικό", - "No user supplied" : "Δεν εισήχθη χρήστης", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Παρακαλώ παρέχετε έναν κωδικό ανάκτησης διαχειριστή, διαφορετικά όλα τα δεδομένα χρήστη θα χαθούν", - "Wrong admin recovery password. Please check the password and try again." : "Λάθος κωδικός ανάκτησης διαχειριστή. Παρακαλώ ελέγξτε τον κωδικό και δοκιμάστε ξανά.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Το σύστημα δεν υποστηρίζει αλλαγή κωδικού, αλλά το κλειδί κρυπτογράφησης του χρήστη ενημερώθηκε επιτυχώς.", - "Unable to change password" : "Αδυναμία αλλαγής συνθηματικού", - "Enabled" : "Ενεργοποιημένο", - "Not enabled" : "Μη ενεργοποιημένο", - "installing and updating apps via the app store or Federated Cloud Sharing" : "εγκατάσταση και ενημέρωση εφαρμογών μέσω του καταστήματος εφαρμογών ή του ", - "Federated Cloud Sharing" : "Διαμοιρασμός σε ομόσπονδα σύννεφα ", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "Το cURL χρησιμοποιεί μια παρωχημένη %s έκδοση (%s). Παρακαλούμε αναβαθμίστε το λειτουργικό σας σύστημα αλλιώς δυνατότητες όπως %s δεν θα δουλέψουν αξιόπιστα.", - "A problem occurred, please check your log files (Error: %s)" : "Παρουσιάστηκε πρόβλημα, παρακαλώ ελέγξτε τα αρχεία καταγραφής σας (Σφάλμα: %s)", - "Migration Completed" : "Η μετάβαση ολοκληρώθηκε", - "Group already exists." : "Η ομάδα υπάρχει ήδη.", - "Unable to add group." : "Αδυναμία προσθήκης ομάδας.", - "Unable to delete group." : "Αδυναμία διαγραφής ομάδας.", - "log-level out of allowed range" : "Το επίπεδο καταγραφής είναι εκτός του επιτρεπόμενου πεδίου", - "Saved" : "Αποθηκεύτηκαν", - "test email settings" : "δοκιμή ρυθμίσεων email", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Παρουσιάστηκε σφάλμα κατά την αποστολή e-mail. Παρακαλώ ελέγξτε τις ρυθμίσεις σας.(Error: %s)", - "Email sent" : "Το Email απεστάλη ", - "You need to set your user email before being able to send test emails." : "Πρέπει να ορίσετε το email του χρήστη πριν να είστε σε θέση να στείλετε δοκιμαστικά emails.", - "Invalid mail address" : "Μη έγκυρη διεύθυνση ταχυδρομείου.", - "A user with that name already exists." : "Υπάρχει ήδη χρήστης με το ίδιο όνομα", - "Unable to create user." : "Αδυναμία δημιουργίας χρήστη.", - "Your %s account was created" : "Ο λογαριασμός %s δημιουργήθηκε", - "Unable to delete user." : "Αδυναμία διαγραφής χρήστη.", - "Forbidden" : "Δεν επιτρέπεται", - "Invalid user" : "Μη έγκυρος χρήστης", - "Unable to change mail address" : "Αδυναμία αλλαγής διεύθυνσης αλληλογραφίας", - "Email saved" : "Το email αποθηκεύτηκε ", - "Your full name has been changed." : "Το πλήρες όνομά σας άλλαξε.", - "Unable to change full name" : "Δεν ήταν δυνατή η αλλαγή του πλήρους ονόματός σας", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Είστε πραγματικά σίγουροι ότι θέλετε να προσθέσετε το \"{domain}\" σαν αξιόπιστη περιοχή;", - "Add trusted domain" : "Προσθέστε αξιόπιστη περιοχή", - "Migration in progress. Please wait until the migration is finished" : "Μετάβαση σε εξέλιξη. Παρακαλούμε περιμένετε μέχρι να ολοκληρωθεί η μετάβαση", - "Migration started …" : "Η μετάβαση ξεκίνησε ...", - "Sending..." : "Αποστέλεται...", - "Official" : "Επίσημο", - "Approved" : "Εγκεκριμένο", - "Experimental" : "Πειραματικό", - "All" : "Όλες", - "No apps found for your version" : "Δεν βρέθηκαν εφαρμογές για αυτή την έκδοση", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Οι επίσημες εφαρμογές αναπτύσσονται από την κοινότητα ownCloud. Προσφέρουν λειτουργικότητα κοντά στο ownCloud και είναι έτοιμες για χρήση.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Οι εγκεκριμένες εφαρμογές αναπτύχθηκαν από αξιόπιστους προγραμματιστές και έχουν περάσει έναν συνοπτικό έλεγχο ασφαλείας. Διατηρούνται ενεργά σε ένα αποθετήριο ανοιχτού κώδικα και οι συντηρητές θεωρούν οτι είναι σταθερές για κανονική χρήση.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Η εφαρμογή αυτή δεν ελέγχεται για θέματα ασφάλειας και είναι νέα ή είναι γνωστό ότι είναι ασταθής. Η εγκατάσταση γίνεται με δική σας ευθύνη.", - "Update to %s" : "Ενημέρωση σε %s", - "Please wait...." : "Παρακαλώ περιμένετε...", - "Error while disabling app" : "Σφάλμα κατά την απενεργοποίηση εισόδου", - "Disable" : "Απενεργοποίηση", - "Enable" : "Ενεργοποίηση", - "Error while enabling app" : "Σφάλμα κατά την ενεργοποίηση της εφαρμογής", - "Updating...." : "Ενημέρωση...", - "Error while updating app" : "Σφάλμα κατά την ενημέρωση της εφαρμογής", - "Updated" : "Ενημερώθηκε", - "Uninstalling ...." : "Απεγκατάσταση ....", - "Error while uninstalling app" : "Σφάλμα κατά την απεγκατάσταση της εφαρμογής", - "Uninstall" : "Απεγκατάσταση", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Η εφαρμογή έχει ενεργοποιηθεί αλλά χρειάζεται ενημέρωση. Θα μεταφερθείτε στη σελίδα ενημέρωσης σε 5 δευτερόλεπτα.", - "App update" : "Ενημέρωση εφαρμογής", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Προέκυψε σφάλμα. Παρακαλούμε μεταφορτώστε ένα πιστοποιητικό PEM κωδικοποιημένο κατά ASCII.", - "Valid until {date}" : "Έγκυρο έως {date}", - "Delete" : "Διαγραφή", - "An error occurred: {message}" : "Παρουσιάστηκε σφάλμα: {message}", - "Select a profile picture" : "Επιλογή εικόνας προφίλ", - "Very weak password" : "Πολύ αδύναμο συνθηματικό", - "Weak password" : "Αδύναμο συνθηματικό", - "So-so password" : "Μέτριο συνθηματικό", - "Good password" : "Καλό συνθηματικό", - "Strong password" : "Δυνατό συνθηματικό", - "Groups" : "Ομάδες", - "Unable to delete {objName}" : "Αδυναμία διαγραφής του {objName}", - "A valid group name must be provided" : "Πρέπει να δοθεί ένα έγκυρο όνομα ομάδας", - "deleted {groupName}" : "διαγραφή {groupName}", - "undo" : "αναίρεση", - "no group" : "καμια ομάδα", - "never" : "ποτέ", - "deleted {userName}" : "διαγραφή {userName}", - "add group" : "προσθήκη ομάδας", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Η αλλαγή του κωδικού πρόσβασης θα έχει ως αποτέλεσμα το χάσιμο δεδομένων, επειδή η ανάκτηση δεδομένων δεν είναι διαθέσιμη γι' αυτόν τον χρήστη", - "A valid username must be provided" : "Πρέπει να δοθεί έγκυρο όνομα χρήστη", - "A valid password must be provided" : "Πρέπει να δοθεί έγκυρο συνθηματικό", - "A valid email must be provided" : "Πρέπει να εισαχθεί ένα έγκυρο email", - "__language_name__" : "__όνομα_γλώσσας__", - "Unlimited" : "Απεριόριστο", - "Personal info" : "Προσωπικές Πληροφορίες", - "Sync clients" : "Συγχρονισμός πελατών", - "Everything (fatal issues, errors, warnings, info, debug)" : "Όλα (καίρια ζητήματα, σφάλματα, προειδοποιήσεις, πληροφορίες, αποσφαλμάτωση)", - "Info, warnings, errors and fatal issues" : "Πληροφορίες, προειδοποιήσεις, σφάλματα και καίρια ζητήματα", - "Warnings, errors and fatal issues" : "Προειδοποιήσεις, σφάλματα και καίρια ζητήματα", - "Errors and fatal issues" : "Σφάλματα και καίρια ζητήματα", - "Fatal issues only" : "Καίρια ζητήματα μόνο", - "None" : "Τίποτα", - "Login" : "Σύνδεση", - "Plain" : "Απλό", - "NT LAN Manager" : "Διαχειριστης NT LAN", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "Η php δεν φαίνεται να είναι σωστά ρυθμισμένη για ερωτήματα σε μεταβλητές περιβάλλοντος του συστήματος. Η δοκιμή με την εντολή getenv(\"PATH\") επιστρέφει κενή απάντηση.", - "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." : "Η ρύθμιση \"μόνο ανάγνωση\" έχει ενεργοποιηθεί. Αυτό εμποδίζει τον καθορισμό κάποιων ρυθμίσεων μέσω της διεπαφής web. Επιπλέον, το αρχείο πρέπει να γίνει χειροκίνητα εγγράψιμο πριν από κάθε διαδικασία ενημέρωσης.", - "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.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Ο διακομιστής σας τρέχει σε Microsoft Windows. Συστήνουμε ιδιαίτερα Linux για τη βέλτιστη εμπειρία του χρήστη.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Η PHP ενοτητα 'fileinfo' λειπει. Σας συνιστούμε να ενεργοποιήσετε αυτή την ενότητα για να έχετε καλύτερα αποτελέσματα με τον εντοπισμό τύπου MIME. ", - "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.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Αν η εγκατάστασή σας δεν έχει γίνει στο root του τομέα και χρησιμοποιείται το cron του συστήματος, μπορεί να υπάρξουν ζητήματα με τη δημιουργία URL. Για να αποφύγετε αυτά τα προβλήματα, παρακαλώ ρυθμίστε την επιλογή \"overwrite.cli.url\" στο αρχείο config.php που βρίσκεται στη διαδρομή webroot της εγκατάστασής σας (Suggested: \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Δεν ήταν δυνατή η εκτέλεση της cronjob μέσω τερματικού. Εμφανίστηκαν τα παρακάτω τεχνικά σφάλματα:", - "All checks passed." : "Όλοι οι έλεγχοι επιτυχείς.", - "Open documentation" : "Ανοιχτή τεκμηρίωση.", - "Allow apps to use the Share API" : "Επιτρέπει την χρήση του API διαμοιρασμού σε εφαρμογές ", - "Allow users to share via link" : "Να επιτρέπεται σε χρήστες ο διαμοιρασμός μέσω συνδέσμου", - "Enforce password protection" : "Επιβολή προστασίας με κωδικό", - "Allow public uploads" : "Επιτρέπεται το κοινόχρηστο ανέβασμα", - "Allow users to send mail notification for shared files" : "Επιτρέψτε στους χρήστες να στέλνουν ειδοποιήσεις μέσω ηλεκτρονικού ταχυδρομείου για κοινόχρηστα αρχεία", - "Set default expiration date" : "Ορισμός ερήμην ημερομηνίας λήξης", - "Expire after " : "Λήξη μετά από", - "days" : "ημέρες", - "Enforce expiration date" : "Επιβολή της ημερομηνίας λήξης", - "Allow resharing" : "Επιτρέπεται ο επαναδιαμοιρασμός", - "Restrict users to only share with users in their groups" : "Να επιτρέπεται σε χρήστες ο διαμοιρασμός μόνο με χρήστες που ανήκουν στις ομάδες τους", - "Allow users to send mail notification for shared files to other users" : "Να επιτρέπεται η αποστολή ειδοποιήσεων σε άλλους χρήστες, μέσω αλληλογραφίας για κοινόχρηστα αρχεία", - "Exclude groups from sharing" : "Εξαίρεση ομάδων από τον διαμοιρασμό", - "These groups will still be able to receive shares, but not to initiate them." : "Αυτές οι ομάδες θα συνεχίσουν να λαμβάνουν διαμοιρασμούς, αλλά δεν θα είναι δυνατό να τους δημιουργήσουν.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Να επιτρέπεται η χρήση αυτόματης συμπλήρωσης στο διάλογο διαμοιρασμού. Αν αυτό είναι απενεργοποιημένο θα πρέπει να εισαχθεί το πλήρες όνομα χρήστη.", - "Last cron job execution: %s." : "Τελευταία εκτέλεση cron job: %s.", - "Last cron job execution: %s. Something seems wrong." : "Τελευταία εκτέλεση cron job: %s. Κάτι πήγε στραβά.", - "Cron was not executed yet!" : "Η διεργασία cron δεν έχει εκτελεστεί ακόμα!", - "Execute one task with each page loaded" : "Εκτελεί μια διεργασία κάθε φορά που φορτώνεται μια σελίδα", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "Το cron.php είναι καταχωρημένο σε μια υπηρεσία webcron ώστε να καλεί το cron.php κάθε 15 λεπτά μέσω http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Χρησιμοποιήστε την cron υπηρεσία του συτήματος για να καλέσετε το cron.php αρχείο κάθε 15 λεπτά.", - "Enable server-side encryption" : "Ενεργοποίηση κρυπτογράφησης από το διακομιστή", - "Please read carefully before activating server-side encryption: " : "Παρακαλούμε διαβάστε προσεκτικά πριν ενεργοποιήσετε την κρυπτογράφηση στο διακομιστή:", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "Μόλις ενεργοποιηθεί η κρυπτογράφηση, όλα τα αρχεία που θα μεταφορτωθούν από αυτό το σημείο και μετά θα κρυπτογραφηθούν στο διακομιστή. Η κρυπτογράφηση είναι δυνατόν να απενεργοποιηθεί αργότερα μόνο αν το ενεργό άρθρωμα κρυπτογράφησης υποστηρίζει αυτή τη λειτουργία και εκπληρούνται όλες οι προϋποθέσεις (πχ ορισμός κλειδιού ανάκτησης).", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "Η κρυπτογράφηση από΄μ9ονη της δεν εγγυάται την την ασφάλεια του συστήματος. Παρακαλούμε δείτε την τεκμηρίωση του ownCloud για περισσότερες πληροφορίες σχετικά με το πως δουλεύει η εφαρμογή κρυπτογράφησης και τις υποστηριζόμενες περιπτώσεις χρήσης.", - "Be aware that encryption always increases the file size." : "Έχετε στο νου σας πως η κρυπτογράφηση πάντα αυξάνει το μέγεθος του αρχείου", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "Είναι πάντοτε καλό να δημιουργείτε τακτικά αντίγραφα ασφαλείας των δεδομένων σας, στην περίπτωση της κρυπτογράφησης βεβαιωθείτε ότι έχετε λάβει αντίγραφο ασφαλείας των κλειδιών κρυπτογράφησης παράλληλα με τα δεδομένα σας.", - "This is the final warning: Do you really want to enable encryption?" : "Αυτή είναι η τελευταία προειδοποίηση: Θέλετε πραγματικά να ενεργοποιήσετε την κρυπτογράφηση;", - "Enable encryption" : "Ενεργοποίηση κρυπτογράφησης", - "No encryption module loaded, please enable an encryption module in the app menu." : "Δεν έχει φορτωθεί μονάδα κρυπτογράφησης, παρακαλούμε φορτώστε μια μονάδα κρυπτογράφησης από το μενού εφαρμογών.", - "Select default encryption module:" : "Επιλογή προεπιλεγμένης μονάδας κρυπτογράφησης:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Πρέπει να μεταφέρετε τα κλειδιά κρυπτογράφησής σας από την παλιά κρυπτογράφηση (ownCloud <= 8.0) στην καινούρια. Παρακαλούμε ενεργοποιήστε την \"Προεπιλεγμένη Μονάδα Κρυπτογράφησης\" και εκτελέστε την εντολή 'occ encryption:migrate'", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Πρέπει να μεταφέρετε τα κλειδιά σας κρυπτογράφησης από την παλιά κρυπτογράφηση (ownCloud <= 8.0) στην καινούρια.", - "Start migration" : "Έναρξη μετάβασης", - "This is used for sending out notifications." : "Χρησιμοποιείται για αποστολή ειδοποιήσεων.", - "Send mode" : "Κατάσταση αποστολής", - "Encryption" : "Κρυπτογράφηση", - "From address" : "Από τη διεύθυνση", - "mail" : "ταχυδρομείο", - "Authentication method" : "Μέθοδος πιστοποίησης", - "Authentication required" : "Απαιτείται πιστοποίηση", - "Server address" : "Διεύθυνση διακομιστή", - "Port" : "Θύρα", - "Credentials" : "Πιστοποιητικά", - "SMTP Username" : "Όνομα χρήστη SMTP", - "SMTP Password" : "Συνθηματικό SMTP", - "Store credentials" : "Διαπιστευτήρια αποθήκευσης", - "Test email settings" : "Δοκιμή ρυθμίσεων email", - "Send email" : "Αποστολή email", - "Download logfile" : "Λήψη αρχείου ιστορικού", - "More" : "Περισσότερα", - "Less" : "Λιγότερα", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Το αρχείο ιστορικού είναι μεγαλύτερο από 100ΜΒ. Η λήψη του ίσως πάρει λίγη ώρα!", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "Ως βάση δεδομένων χρησιμοποιείται η SQLite. Για μεγαλύτερες εγκαταστάσεις συνιστούμε να επιλέξετε ένα διαφορετικό σύστημα υποστήριξης βάσης δεδομένων.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Ειδικά όταν χρησιμοποιείτε τον πελάτη για συγχρονισμό στον υπολογιστή σας, δεν συνίσταται η χρήση της SQLite.", - "How to do backups" : "Πώς να κάνετε αντίγραφα ασφαλείας", - "Advanced monitoring" : "Παρακολούθηση για προχωρημένους", - "Performance tuning" : "Ρύθμιση βελτίωσης της απόδοσης", - "Improving the config.php" : "Βελτίωση του config.php", - "Theming" : "Θέματα", - "Hardening and security guidance" : "Οδηγίες ασφάλειας και θωράκισης", - "Version" : "Έκδοση", - "Developer documentation" : "Τεκμηρίωση προγραμματιστή", - "Experimental applications ahead" : "Πειραματικές εφαρμογές", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Οι πειραματικές εφαρμογές δεν ελέγχονται για θέματα ασφάλειας, είναι ασταθείς και υπό συνεχή εξέλιξη. Η εγκατάσταση τους μπορεί να προκαλέσει απώλεια δεδομένων ή παραβιάσεις της ασφάλειας.", - "Documentation:" : "Τεκμηρίωση:", - "User documentation" : "Τεκμηρίωση Χρήστη", - "Admin documentation" : "Τεκμηρίωση Διαχειριστή", - "Show description …" : "Εμφάνιση περιγραφής", - "Hide description …" : "Απόκρυψη περιγραφής", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Αυτή η εφαρμογή δεν μπορεί να εγκατασταθεί διότι δεν εκπληρώνονται οι ακόλουθες εξαρτήσεις:", - "Enable only for specific groups" : "Ενεργοποίηση μόνο για καθορισμένες ομάδες", - "Uninstall App" : "Απεγκατάσταση Εφαρμογής", - "Enable experimental apps" : "Ενεργοποίηση πειραματικών εφαρμογών", - "Common Name" : "Κοινό Όνομα", - "Valid until" : "Έγκυρο έως", - "Issued By" : "Έκδόθηκε από", - "Valid until %s" : "Έγκυρο έως %s", - "Import root certificate" : "Εισαγωγή Πιστοποιητικού Root", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Χαίρεται,<br><br>απλά σας κάνουμε γνωστό ότι διαθέτετε έναν %s λογαριασμό.<br><br>Το όνομά σας είναι: %s<br>Έχετε πρόσβαση: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Χαιρετισμούς!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Χαίρεται, \nαπλά σας κάνουμε γνωστό ότι διαθέτετε έναν %s λογαριασμό.\nΤο όνομά σας είναι: %s\nΈχετε πρόσβαση: %s\n", - "Administrator documentation" : "Τεκμηρίωση Διαχειριστή", - "Online documentation" : "Τεκμηρίωση στο Διαδίκτυο", - "Forum" : "Φόρουμ", - "Issue tracker" : "Ιχνηλάτης ζητημάτων", - "Commercial support" : "Εμπορική Υποστήριξη", - "Profile picture" : "Φωτογραφία προφίλ", - "Upload new" : "Μεταφόρτωση νέου", - "Remove image" : "Αφαίρεση εικόνας", - "Cancel" : "Άκυρο", - "Full name" : "Πλήρες όνομα", - "No display name set" : "Δεν ορίστηκε όνομα", - "Email" : "Ηλεκτρονικό ταχυδρομείο", - "Your email address" : "Η διεύθυνση ηλ. ταχυδρομείου σας", - "No email address set" : "Δεν ορίστηκε διεύθυνση email", - "You are member of the following groups:" : "Είστε μέλος των ακόλουθων ομάδων:", - "Password" : "Συνθηματικό", - "Unable to change your password" : "Δεν ήταν δυνατή η αλλαγή του κωδικού πρόσβασης", - "Current password" : "Τρέχων συνθηματικό", - "New password" : "Νέο συνθηματικό", - "Change password" : "Αλλαγή συνθηματικού", - "Language" : "Γλώσσα", - "Help translate" : "Βοηθήστε στη μετάφραση", - "Get the apps to sync your files" : "Λήψη της εφαρμογής για συγχρονισμό των αρχείων σας", - "Desktop client" : "Πελάτης σταθερού υπολογιστή", - "Android app" : "Εφαρμογή Android", - "iOS app" : "Εφαρμογή iOS", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Εάν θέλετε να υποστηρίξετε το έργο\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">συμμετέχετε στην ανάπτυξη</a>\n\t\tή\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">διαδόστε το μήνυμα</a>!", - "Show First Run Wizard again" : "Προβολή Οδηγού Πρώτης Εκτέλεσης ξανά", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Αναπτύχθηκε από την {communityopen} κοινότητα του ownCloud {linkclose}, ο {githubopen} πηγαίος κώδικας {linkclose} έχει την άδεια της {licenseopen} <abbr title = \"Affero General Public License\"> AGPL </ abbr> {linkclose}.", - "Show storage location" : "Εμφάνιση τοποθεσίας αποθήκευσης", - "Show last log in" : "Εμφάνιση τελευταίας εισόδου", - "Show user backend" : "Εμφάνιση χρήστη συστήματος υποστήριξης", - "Send email to new user" : "Αποστολή μηνύματος στο νέο χρήστη", - "Show email address" : "Εμφάνιση διεύθυνσης ηλ. αλληλογραφίας", - "Username" : "Όνομα χρήστη", - "E-Mail" : "Ηλεκτρονική αλληλογραφία", - "Create" : "Δημιουργία", - "Admin Recovery Password" : "Κωδικός Επαναφοράς Διαχειριστή ", - "Enter the recovery password in order to recover the users files during password change" : "Εισάγετε το συνθηματικό ανάκτησης ώστε να ανακτήσετε τα αρχεία χρηστών κατά την αλλαγή συνθηματικού", - "Add Group" : "Προσθήκη Ομάδας", - "Group" : "Ομάδα", - "Everyone" : "Όλοι", - "Admins" : "Διαχειριστές", - "Default Quota" : "Προεπιλεγμένο Όριο", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Παρακαλώ εισάγετε επιτρεπόμενα μερίδια αποθηκευτικού χώρου (π.χ. \"512 MB\" ή \"12 GB\")", - "Other" : "Άλλο", - "Full Name" : "Πλήρες όνομα", - "Group Admin for" : "Διαχειριστής ομάδας για", - "Quota" : "Σύνολο Χώρου", - "Storage Location" : "Τοποθεσία αποθηκευτικού χώρου", - "User Backend" : "Χρήστης συστήματος υποστήριξης", - "Last Login" : "Τελευταία Σύνδεση", - "change full name" : "αλλαγή πλήρους ονόματος", - "set new password" : "επιλογή νέου κωδικού", - "change email address" : "αλλαγή διεύθυνσης ηλ. αλληλογραφίας", - "Default" : "Προκαθορισμένο" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/en@pirate.js b/settings/l10n/en@pirate.js deleted file mode 100644 index f9293f8094c..00000000000 --- a/settings/l10n/en@pirate.js +++ /dev/null @@ -1,6 +0,0 @@ -OC.L10N.register( - "settings", - { - "Password" : "Passcode" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/en@pirate.json b/settings/l10n/en@pirate.json deleted file mode 100644 index 6f74658eb82..00000000000 --- a/settings/l10n/en@pirate.json +++ /dev/null @@ -1,4 +0,0 @@ -{ "translations": { - "Password" : "Passcode" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/en_GB.js b/settings/l10n/en_GB.js deleted file mode 100644 index a34bca4a417..00000000000 --- a/settings/l10n/en_GB.js +++ /dev/null @@ -1,293 +0,0 @@ -OC.L10N.register( - "settings", - { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Security & setup warnings", - "Sharing" : "Sharing", - "Server-side encryption" : "Server-side encryption", - "External Storage" : "External Storage", - "Cron" : "Cron", - "Email server" : "Email server", - "Log" : "Log", - "Tips & tricks" : "Tips & tricks", - "Updates" : "Updates", - "Couldn't remove app." : "Couldn't remove app.", - "Language changed" : "Language changed", - "Invalid request" : "Invalid request", - "Authentication error" : "Authentication error", - "Admins can't remove themself from the admin group" : "Admins can't remove themselves from the admin group", - "Unable to add user to group %s" : "Unable to add user to group %s", - "Unable to remove user from group %s" : "Unable to remove user from group %s", - "Couldn't update app." : "Couldn't update app.", - "Wrong password" : "Incorrect password", - "No user supplied" : "No user supplied", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Please provide an admin recovery password, otherwise all user data will be lost", - "Wrong admin recovery password. Please check the password and try again." : "Incorrect admin recovery password. Please check the password and try again.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Backend doesn't support password change, but the user's encryption key was successfully updated.", - "Unable to change password" : "Unable to change password", - "Enabled" : "Enabled", - "Not enabled" : "Not enabled", - "installing and updating apps via the app store or Federated Cloud Sharing" : "installing and updating apps via the app store or Federated Cloud Sharing", - "Federated Cloud Sharing" : "Federated Cloud Sharing", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably.", - "A problem occurred, please check your log files (Error: %s)" : "A problem occurred, please check your log files (Error: %s)", - "Migration Completed" : "Migration Completed", - "Group already exists." : "Group already exists.", - "Unable to add group." : "Unable to add group.", - "Unable to delete group." : "Unable to delete group.", - "log-level out of allowed range" : "log-level out of allowed range", - "Saved" : "Saved", - "test email settings" : "test email settings", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "A problem occurred while sending the email. Please revise your settings. (Error: %s)", - "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.", - "Invalid mail address" : "Invalid mail address", - "A user with that name already exists." : "A user with that name already exists.", - "Unable to create user." : "Unable to create user.", - "Your %s account was created" : "Your %s account was created", - "Unable to delete user." : "Unable to delete user.", - "Forbidden" : "Forbidden", - "Invalid user" : "Invalid user", - "Unable to change mail address" : "Unable to change mail address", - "Email saved" : "Email saved", - "Your full name has been changed." : "Your full name has been changed.", - "Unable to change full name" : "Unable to change full name", - "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", - "Migration in progress. Please wait until the migration is finished" : "Migration in progress. Please wait until the migration is finished", - "Migration started …" : "Migration started …", - "Sending..." : "Sending...", - "Official" : "Official", - "Approved" : "Approved", - "Experimental" : "Experimental", - "All" : "All", - "No apps found for your version" : "No apps found for your version", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "This app is not checked for security issues and is new or known to be unstable. Install at your own risk.", - "Update to %s" : "Update to %s", - "_You have %n app update pending_::_You have %n app updates pending_" : ["You have %n app update pending","You have %n app updates pending"], - "Please wait...." : "Please wait....", - "Error while disabling app" : "Error whilst disabling app", - "Disable" : "Disable", - "Enable" : "Enable", - "Error while enabling app" : "Error whilst enabling app", - "Error: this app cannot be enabled because it makes the server unstable" : "Error: this app cannot be enabled because it makes the server unstable", - "Error: could not disable broken app" : "Error: could not disable broken app", - "Error while disabling broken app" : "Error whilst disabling broken app", - "Updating...." : "Updating....", - "Error while updating app" : "Error whilst updating app", - "Updated" : "Updated", - "Uninstalling ...." : "Uninstalling...", - "Error while uninstalling app" : "Error whilst uninstalling app", - "Uninstall" : "Uninstall", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds.", - "App update" : "App update", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "An error occurred. Please upload an ASCII-encoded PEM certificate.", - "Valid until {date}" : "Valid until {date}", - "Delete" : "Delete", - "An error occurred: {message}" : "An error occurred: {message}", - "Select a profile picture" : "Select a profile picture", - "Very weak password" : "Very weak password", - "Weak password" : "Weak password", - "So-so password" : "So-so password", - "Good password" : "Good password", - "Strong password" : "Strong password", - "Groups" : "Groups", - "Unable to delete {objName}" : "Unable to delete {objName}", - "Error creating group: {message}" : "Error creating group: {message}", - "A valid group name must be provided" : "A valid group name must be provided", - "deleted {groupName}" : "deleted {groupName}", - "undo" : "undo", - "no group" : "no group", - "never" : "never", - "deleted {userName}" : "deleted {userName}", - "add group" : "add group", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Changing the password will result in data loss, because data recovery is not available for this user", - "A valid username must be provided" : "A valid username must be provided", - "Error creating user: {message}" : "Error creating user: {message}", - "A valid password must be provided" : "A valid password must be provided", - "A valid email must be provided" : "A valid email must be provided", - "__language_name__" : "English (British English)", - "Unlimited" : "Unlimited", - "Personal info" : "Personal info", - "Sync clients" : "Sync clients", - "Everything (fatal issues, errors, warnings, info, debug)" : "Everything (fatal issues, errors, warnings, info, debug)", - "Info, warnings, errors and fatal issues" : "Info, warnings, errors and fatal issues", - "Warnings, errors and fatal issues" : "Warnings, errors and fatal issues", - "Errors and fatal issues" : "Errors and fatal issues", - "Fatal issues only" : "Fatal issues only", - "None" : "None", - "Login" : "Login", - "Plain" : "Plain", - "NT LAN Manager" : "NT LAN Manager", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response.", - "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.", - "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible.", - "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience.", - "%1$s below version %2$s is installed, for stability and performance reasons we recommend updating to a newer %1$s version." : "%1$s below version %2$s is installed, for stability and performance reasons we recommend updating to a newer %1$s version.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "The PHP module 'fileinfo' is missing. We strongly recommend enabling this module to get best results with mime-type detection.", - "System locale can not be set to a one which supports UTF-8." : "System locale can not be set to a one which supports UTF-8.", - "This means that there might be problems with certain characters in file names." : "This means that there might be problems with certain characters in file names.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "We strongly suggest installing the required packages on your system to support one of the following locales: %s.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:", - "All checks passed." : "All checks passed.", - "Open documentation" : "Open documentation", - "Allow apps to use the Share API" : "Allow apps to use the Share API", - "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 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.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered.", - "Last cron job execution: %s." : "Last cron job execution: %s.", - "Last cron job execution: %s. Something seems wrong." : "Last cron job execution: %s. Something seems wrong.", - "Cron was not executed yet!" : "Cron was not executed yet!", - "Execute one task with each page loaded" : "Execute one task with each page loaded", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php is registered at a webcron service to call cron.php every 15 minutes over http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Use system's cron service to call the cron.php file every 15 minutes.", - "Enable server-side encryption" : "Enable server-side encryption", - "Please read carefully before activating server-side encryption: " : "Please read carefully before activating server-side encryption: ", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met.", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases.", - "Be aware that encryption always increases the file size." : "Be aware that encryption always increases the file size.", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data.", - "This is the final warning: Do you really want to enable encryption?" : "This is the final warning: Do you really want to enable encryption?", - "Enable encryption" : "Enable encryption", - "No encryption module loaded, please enable an encryption module in the app menu." : "No encryption module loaded, please enable an encryption module in the app menu.", - "Select default encryption module:" : "Select default encryption module:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one.", - "Start migration" : "Start migration", - "This is used for sending out notifications." : "This is used for sending out notifications.", - "Send mode" : "Send mode", - "Encryption" : "Encryption", - "From address" : "From address", - "mail" : "mail", - "Authentication method" : "Authentication method", - "Authentication required" : "Authentication required", - "Server address" : "Server address", - "Port" : "Port", - "Credentials" : "Credentials", - "SMTP Username" : "SMTP Username", - "SMTP Password" : "SMTP Password", - "Store credentials" : "Store credentials", - "Test email settings" : "Test email settings", - "Send email" : "Send email", - "Download logfile" : "Download logfile", - "More" : "More", - "Less" : "Less", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "The logfile is larger than 100 MB. Downloading it may take some time!", - "What to log" : "What to log", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite is used as database. For larger installations, we recommend you switch to a different database backend.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Especially when using the desktop client for file syncing, the use of SQLite is discouraged.", - "How to do backups" : "How to do backups", - "Advanced monitoring" : "Advanced monitoring", - "Performance tuning" : "Performance tuning", - "Improving the config.php" : "Improving the config.php", - "Theming" : "Theming", - "Hardening and security guidance" : "Hardening and security guidance", - "Version" : "Version", - "Developer documentation" : "Developer documentation", - "Experimental applications ahead" : "Experimental applications ahead", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches.", - "by %s" : "by %s", - "%s-licensed" : "%s-licensed", - "Documentation:" : "Documentation:", - "User documentation" : "User documentation", - "Admin documentation" : "Admin documentation", - "Show description …" : "Show description …", - "Hide description …" : "Hide description …", - "This app has an update available." : "This app has an update available.", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later.", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "This app cannot be installed because the following dependencies are not fulfilled:", - "Enable only for specific groups" : "Enable only for specific groups", - "Uninstall App" : "Uninstall App", - "Enable experimental apps" : "Enable experimental apps", - "SSL Root Certificates" : "SSL Root Certificates", - "Common Name" : "Common Name", - "Valid until" : "Valid until", - "Issued By" : "Issued By", - "Valid until %s" : "Valid until %s", - "Import root certificate" : "Import root certificate", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Cheers!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n", - "Administrator documentation" : "Administrator documentation", - "Online documentation" : "Online documentation", - "Forum" : "Forum", - "Issue tracker" : "Issue tracker", - "Commercial support" : "Commercial support", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "You are using <strong>%s</strong> of <strong>%s</strong>", - "Profile picture" : "Profile picture", - "Upload new" : "Upload new", - "Select from Files" : "Select from Files", - "Remove image" : "Remove image", - "png or jpg, max. 20 MB" : "png or jpg, max. 20 MB", - "Picture provided by original account" : "Picture provided by original account", - "Cancel" : "Cancel", - "Choose as profile picture" : "Choose as profile picture", - "Full name" : "Full name", - "No display name set" : "No display name set", - "Email" : "Email", - "Your email address" : "Your email address", - "For password recovery and notifications" : "For password recovery and notifications", - "No email address set" : "No email address set", - "You are member of the following groups:" : "You are member of the following groups:", - "Password" : "Password", - "Unable to change your password" : "Unable to change your password", - "Current password" : "Current password", - "New password" : "New password", - "Change password" : "Change password", - "Language" : "Language", - "Help translate" : "Help translate", - "Get the apps to sync your files" : "Get the apps to sync your files", - "Desktop client" : "Desktop client", - "Android app" : "Android app", - "iOS app" : "iOS app", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!", - "Show First Run Wizard again" : "Show First Run Wizard again", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public Licence\">AGPL</abbr>{linkclose}.", - "Show storage location" : "Show storage location", - "Show last log in" : "Show last log in", - "Show user backend" : "Show user backend", - "Send email to new user" : "Send email to new user", - "Show email address" : "Show email address", - "Username" : "Username", - "E-Mail" : "E-Mail", - "Create" : "Create", - "Admin Recovery Password" : "Admin Recovery Password", - "Enter the recovery password in order to recover the users files during password change" : "Enter the recovery password in order to recover the user's files during password change", - "Add Group" : "Add Group", - "Group" : "Group", - "Everyone" : "Everyone", - "Admins" : "Admins", - "Default Quota" : "Default Quota", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Please enter storage quota (e.g. \"512 MB\" or \"12 GB\")", - "Other" : "Other", - "Full Name" : "Full Name", - "Group Admin for" : "Group Admin for", - "Quota" : "Quota", - "Storage Location" : "Storage Location", - "User Backend" : "User Backend", - "Last Login" : "Last Login", - "change full name" : "change full name", - "set new password" : "set new password", - "change email address" : "change email address", - "Default" : "Default" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/en_GB.json b/settings/l10n/en_GB.json deleted file mode 100644 index 8048816c62e..00000000000 --- a/settings/l10n/en_GB.json +++ /dev/null @@ -1,291 +0,0 @@ -{ "translations": { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Security & setup warnings", - "Sharing" : "Sharing", - "Server-side encryption" : "Server-side encryption", - "External Storage" : "External Storage", - "Cron" : "Cron", - "Email server" : "Email server", - "Log" : "Log", - "Tips & tricks" : "Tips & tricks", - "Updates" : "Updates", - "Couldn't remove app." : "Couldn't remove app.", - "Language changed" : "Language changed", - "Invalid request" : "Invalid request", - "Authentication error" : "Authentication error", - "Admins can't remove themself from the admin group" : "Admins can't remove themselves from the admin group", - "Unable to add user to group %s" : "Unable to add user to group %s", - "Unable to remove user from group %s" : "Unable to remove user from group %s", - "Couldn't update app." : "Couldn't update app.", - "Wrong password" : "Incorrect password", - "No user supplied" : "No user supplied", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Please provide an admin recovery password, otherwise all user data will be lost", - "Wrong admin recovery password. Please check the password and try again." : "Incorrect admin recovery password. Please check the password and try again.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Backend doesn't support password change, but the user's encryption key was successfully updated.", - "Unable to change password" : "Unable to change password", - "Enabled" : "Enabled", - "Not enabled" : "Not enabled", - "installing and updating apps via the app store or Federated Cloud Sharing" : "installing and updating apps via the app store or Federated Cloud Sharing", - "Federated Cloud Sharing" : "Federated Cloud Sharing", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably.", - "A problem occurred, please check your log files (Error: %s)" : "A problem occurred, please check your log files (Error: %s)", - "Migration Completed" : "Migration Completed", - "Group already exists." : "Group already exists.", - "Unable to add group." : "Unable to add group.", - "Unable to delete group." : "Unable to delete group.", - "log-level out of allowed range" : "log-level out of allowed range", - "Saved" : "Saved", - "test email settings" : "test email settings", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "A problem occurred while sending the email. Please revise your settings. (Error: %s)", - "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.", - "Invalid mail address" : "Invalid mail address", - "A user with that name already exists." : "A user with that name already exists.", - "Unable to create user." : "Unable to create user.", - "Your %s account was created" : "Your %s account was created", - "Unable to delete user." : "Unable to delete user.", - "Forbidden" : "Forbidden", - "Invalid user" : "Invalid user", - "Unable to change mail address" : "Unable to change mail address", - "Email saved" : "Email saved", - "Your full name has been changed." : "Your full name has been changed.", - "Unable to change full name" : "Unable to change full name", - "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", - "Migration in progress. Please wait until the migration is finished" : "Migration in progress. Please wait until the migration is finished", - "Migration started …" : "Migration started …", - "Sending..." : "Sending...", - "Official" : "Official", - "Approved" : "Approved", - "Experimental" : "Experimental", - "All" : "All", - "No apps found for your version" : "No apps found for your version", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "This app is not checked for security issues and is new or known to be unstable. Install at your own risk.", - "Update to %s" : "Update to %s", - "_You have %n app update pending_::_You have %n app updates pending_" : ["You have %n app update pending","You have %n app updates pending"], - "Please wait...." : "Please wait....", - "Error while disabling app" : "Error whilst disabling app", - "Disable" : "Disable", - "Enable" : "Enable", - "Error while enabling app" : "Error whilst enabling app", - "Error: this app cannot be enabled because it makes the server unstable" : "Error: this app cannot be enabled because it makes the server unstable", - "Error: could not disable broken app" : "Error: could not disable broken app", - "Error while disabling broken app" : "Error whilst disabling broken app", - "Updating...." : "Updating....", - "Error while updating app" : "Error whilst updating app", - "Updated" : "Updated", - "Uninstalling ...." : "Uninstalling...", - "Error while uninstalling app" : "Error whilst uninstalling app", - "Uninstall" : "Uninstall", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds.", - "App update" : "App update", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "An error occurred. Please upload an ASCII-encoded PEM certificate.", - "Valid until {date}" : "Valid until {date}", - "Delete" : "Delete", - "An error occurred: {message}" : "An error occurred: {message}", - "Select a profile picture" : "Select a profile picture", - "Very weak password" : "Very weak password", - "Weak password" : "Weak password", - "So-so password" : "So-so password", - "Good password" : "Good password", - "Strong password" : "Strong password", - "Groups" : "Groups", - "Unable to delete {objName}" : "Unable to delete {objName}", - "Error creating group: {message}" : "Error creating group: {message}", - "A valid group name must be provided" : "A valid group name must be provided", - "deleted {groupName}" : "deleted {groupName}", - "undo" : "undo", - "no group" : "no group", - "never" : "never", - "deleted {userName}" : "deleted {userName}", - "add group" : "add group", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Changing the password will result in data loss, because data recovery is not available for this user", - "A valid username must be provided" : "A valid username must be provided", - "Error creating user: {message}" : "Error creating user: {message}", - "A valid password must be provided" : "A valid password must be provided", - "A valid email must be provided" : "A valid email must be provided", - "__language_name__" : "English (British English)", - "Unlimited" : "Unlimited", - "Personal info" : "Personal info", - "Sync clients" : "Sync clients", - "Everything (fatal issues, errors, warnings, info, debug)" : "Everything (fatal issues, errors, warnings, info, debug)", - "Info, warnings, errors and fatal issues" : "Info, warnings, errors and fatal issues", - "Warnings, errors and fatal issues" : "Warnings, errors and fatal issues", - "Errors and fatal issues" : "Errors and fatal issues", - "Fatal issues only" : "Fatal issues only", - "None" : "None", - "Login" : "Login", - "Plain" : "Plain", - "NT LAN Manager" : "NT LAN Manager", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response.", - "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.", - "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible.", - "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience.", - "%1$s below version %2$s is installed, for stability and performance reasons we recommend updating to a newer %1$s version." : "%1$s below version %2$s is installed, for stability and performance reasons we recommend updating to a newer %1$s version.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "The PHP module 'fileinfo' is missing. We strongly recommend enabling this module to get best results with mime-type detection.", - "System locale can not be set to a one which supports UTF-8." : "System locale can not be set to a one which supports UTF-8.", - "This means that there might be problems with certain characters in file names." : "This means that there might be problems with certain characters in file names.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "We strongly suggest installing the required packages on your system to support one of the following locales: %s.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:", - "All checks passed." : "All checks passed.", - "Open documentation" : "Open documentation", - "Allow apps to use the Share API" : "Allow apps to use the Share API", - "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 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.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered.", - "Last cron job execution: %s." : "Last cron job execution: %s.", - "Last cron job execution: %s. Something seems wrong." : "Last cron job execution: %s. Something seems wrong.", - "Cron was not executed yet!" : "Cron was not executed yet!", - "Execute one task with each page loaded" : "Execute one task with each page loaded", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php is registered at a webcron service to call cron.php every 15 minutes over http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Use system's cron service to call the cron.php file every 15 minutes.", - "Enable server-side encryption" : "Enable server-side encryption", - "Please read carefully before activating server-side encryption: " : "Please read carefully before activating server-side encryption: ", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met.", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases.", - "Be aware that encryption always increases the file size." : "Be aware that encryption always increases the file size.", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data.", - "This is the final warning: Do you really want to enable encryption?" : "This is the final warning: Do you really want to enable encryption?", - "Enable encryption" : "Enable encryption", - "No encryption module loaded, please enable an encryption module in the app menu." : "No encryption module loaded, please enable an encryption module in the app menu.", - "Select default encryption module:" : "Select default encryption module:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one.", - "Start migration" : "Start migration", - "This is used for sending out notifications." : "This is used for sending out notifications.", - "Send mode" : "Send mode", - "Encryption" : "Encryption", - "From address" : "From address", - "mail" : "mail", - "Authentication method" : "Authentication method", - "Authentication required" : "Authentication required", - "Server address" : "Server address", - "Port" : "Port", - "Credentials" : "Credentials", - "SMTP Username" : "SMTP Username", - "SMTP Password" : "SMTP Password", - "Store credentials" : "Store credentials", - "Test email settings" : "Test email settings", - "Send email" : "Send email", - "Download logfile" : "Download logfile", - "More" : "More", - "Less" : "Less", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "The logfile is larger than 100 MB. Downloading it may take some time!", - "What to log" : "What to log", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite is used as database. For larger installations, we recommend you switch to a different database backend.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Especially when using the desktop client for file syncing, the use of SQLite is discouraged.", - "How to do backups" : "How to do backups", - "Advanced monitoring" : "Advanced monitoring", - "Performance tuning" : "Performance tuning", - "Improving the config.php" : "Improving the config.php", - "Theming" : "Theming", - "Hardening and security guidance" : "Hardening and security guidance", - "Version" : "Version", - "Developer documentation" : "Developer documentation", - "Experimental applications ahead" : "Experimental applications ahead", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches.", - "by %s" : "by %s", - "%s-licensed" : "%s-licensed", - "Documentation:" : "Documentation:", - "User documentation" : "User documentation", - "Admin documentation" : "Admin documentation", - "Show description …" : "Show description …", - "Hide description …" : "Hide description …", - "This app has an update available." : "This app has an update available.", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later.", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "This app cannot be installed because the following dependencies are not fulfilled:", - "Enable only for specific groups" : "Enable only for specific groups", - "Uninstall App" : "Uninstall App", - "Enable experimental apps" : "Enable experimental apps", - "SSL Root Certificates" : "SSL Root Certificates", - "Common Name" : "Common Name", - "Valid until" : "Valid until", - "Issued By" : "Issued By", - "Valid until %s" : "Valid until %s", - "Import root certificate" : "Import root certificate", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Cheers!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n", - "Administrator documentation" : "Administrator documentation", - "Online documentation" : "Online documentation", - "Forum" : "Forum", - "Issue tracker" : "Issue tracker", - "Commercial support" : "Commercial support", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "You are using <strong>%s</strong> of <strong>%s</strong>", - "Profile picture" : "Profile picture", - "Upload new" : "Upload new", - "Select from Files" : "Select from Files", - "Remove image" : "Remove image", - "png or jpg, max. 20 MB" : "png or jpg, max. 20 MB", - "Picture provided by original account" : "Picture provided by original account", - "Cancel" : "Cancel", - "Choose as profile picture" : "Choose as profile picture", - "Full name" : "Full name", - "No display name set" : "No display name set", - "Email" : "Email", - "Your email address" : "Your email address", - "For password recovery and notifications" : "For password recovery and notifications", - "No email address set" : "No email address set", - "You are member of the following groups:" : "You are member of the following groups:", - "Password" : "Password", - "Unable to change your password" : "Unable to change your password", - "Current password" : "Current password", - "New password" : "New password", - "Change password" : "Change password", - "Language" : "Language", - "Help translate" : "Help translate", - "Get the apps to sync your files" : "Get the apps to sync your files", - "Desktop client" : "Desktop client", - "Android app" : "Android app", - "iOS app" : "iOS app", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!", - "Show First Run Wizard again" : "Show First Run Wizard again", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public Licence\">AGPL</abbr>{linkclose}.", - "Show storage location" : "Show storage location", - "Show last log in" : "Show last log in", - "Show user backend" : "Show user backend", - "Send email to new user" : "Send email to new user", - "Show email address" : "Show email address", - "Username" : "Username", - "E-Mail" : "E-Mail", - "Create" : "Create", - "Admin Recovery Password" : "Admin Recovery Password", - "Enter the recovery password in order to recover the users files during password change" : "Enter the recovery password in order to recover the user's files during password change", - "Add Group" : "Add Group", - "Group" : "Group", - "Everyone" : "Everyone", - "Admins" : "Admins", - "Default Quota" : "Default Quota", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Please enter storage quota (e.g. \"512 MB\" or \"12 GB\")", - "Other" : "Other", - "Full Name" : "Full Name", - "Group Admin for" : "Group Admin for", - "Quota" : "Quota", - "Storage Location" : "Storage Location", - "User Backend" : "User Backend", - "Last Login" : "Last Login", - "change full name" : "change full name", - "set new password" : "set new password", - "change email address" : "change email address", - "Default" : "Default" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/eo.js b/settings/l10n/eo.js deleted file mode 100644 index b3319466ec3..00000000000 --- a/settings/l10n/eo.js +++ /dev/null @@ -1,152 +0,0 @@ -OC.L10N.register( - "settings", - { - "Sharing" : "Kunhavigo", - "External Storage" : "Malena memorilo", - "Cron" : "Cron", - "Email server" : "Retpoŝtoservilo", - "Log" : "Protokolo", - "Updates" : "Ĝisdatigoj", - "Language changed" : "La lingvo estas ŝanĝita", - "Invalid request" : "Nevalida peto", - "Authentication error" : "Aŭtentiga eraro", - "Admins can't remove themself from the admin group" : "Administrantoj ne povas forigi sin mem el la administra grupo.", - "Unable to add user to group %s" : "Ne eblis aldoni la uzanton al la grupo %s", - "Unable to remove user from group %s" : "Ne eblis forigi la uzantan el la grupo %s", - "Couldn't update app." : "Ne eblis ĝisdatigi la aplikaĵon.", - "Wrong password" : "Malĝusta pasvorto", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Motoro ne subtenas ŝanĝi pasvorton, sed la ĉifroŝlosilo de la uzanto sukcese ĝisdatiĝis.", - "Unable to change password" : "Ne eblis ŝanĝi la pasvorton", - "Enabled" : "Kapabligita", - "Federated Cloud Sharing" : "Federnuba kunhavado", - "Group already exists." : "Grupo jam ekzistas", - "Saved" : "Konservita", - "Email sent" : "La retpoŝtaĵo sendiĝis", - "Email saved" : "La retpoŝtadreso konserviĝis", - "Your full name has been changed." : "Via plena nomo ŝanĝitas.", - "Unable to change full name" : "Ne eblis ŝanĝi la plenan nomon", - "Sending..." : "Sendante...", - "All" : "Ĉio", - "Please wait...." : "Bonvolu atendi...", - "Error while disabling app" : "Eraris malkapabligo de aplikaĵo", - "Disable" : "Malkapabligi", - "Enable" : "Kapabligi", - "Error while enabling app" : "Eraris kapabligo de aplikaĵo", - "Updating...." : "Ĝisdatigata...", - "Error while updating app" : "Eraris ĝisdatigo de la aplikaĵo", - "Updated" : "Ĝisdatigita", - "Uninstalling ...." : "Malinstalante...", - "Error while uninstalling app" : "Eraris malinstalo de aplikaĵo", - "Uninstall" : "Malinstali", - "Delete" : "Forigi", - "Select a profile picture" : "Elekti profilan bildon", - "Very weak password" : "Tre malforta pasvorto", - "Weak password" : "Malforta pasvorto", - "So-so password" : "Mezaĉa pasvorto", - "Good password" : "Bona pasvorto", - "Strong password" : "Forta pasvorto", - "Groups" : "Grupoj", - "deleted {groupName}" : "{groupName} foriĝis", - "undo" : "malfari", - "never" : "neniam", - "deleted {userName}" : "{userName} foriĝis", - "add group" : "aldoni grupon", - "A valid username must be provided" : "Valida uzantonomo devas proviziĝi", - "A valid password must be provided" : "Valida pasvorto devas proviziĝi", - "__language_name__" : "Esperanto", - "Unlimited" : "Senlima", - "Personal info" : "Persona informo", - "Sync clients" : "Sinkronigi klientojn", - "Everything (fatal issues, errors, warnings, info, debug)" : "Ĉio (fatalaĵoj, eraroj, avertoj, informoj, sencimigaj mesaĝoj)", - "Info, warnings, errors and fatal issues" : "Informoj, avertoj, eraroj kaj fatalaĵoj", - "Warnings, errors and fatal issues" : "Avertoj, eraroj kaj fatalaĵoj", - "Errors and fatal issues" : "Eraroj kaj fatalaĵoj", - "Fatal issues only" : "Fatalaĵoj nur", - "None" : "Nenio", - "Login" : "Ensaluti", - "SSL" : "SSL", - "TLS" : "TLS", - "Open documentation" : "Malfermi la dokumentaron", - "Allow apps to use the Share API" : "Kapabligi aplikaĵojn uzi la API-on pri Kunhavigo", - "Allow users to share via link" : "Permesi uzantojn kunhavigi ligile", - "Allow public uploads" : "Permesi publikajn alŝutojn", - "Expire after " : "Eksvalidigi post", - "days" : "tagoj", - "Allow resharing" : "Kapabligi rekunhavigon", - "This is the final warning: Do you really want to enable encryption?" : "Jen la fina averto: ĉu vi certe volas kapabligi ĉifradon?", - "Enable encryption" : "Kapabligi ĉifradon", - "Send mode" : "Sendi pli", - "Encryption" : "Ĉifrado", - "From address" : "El adreso", - "mail" : "retpoŝto", - "Authentication method" : "Aŭtentiga metodo", - "Authentication required" : "Aŭtentiĝo nepras", - "Server address" : "Servila adreso", - "Port" : "Pordo", - "Credentials" : "Aŭtentigiloj", - "SMTP Username" : "SMTP-uzantonomo", - "SMTP Password" : "SMTP-pasvorto", - "Test email settings" : "Provi retpoŝtagordon", - "Send email" : "Sendi retpoŝton", - "Download logfile" : "Elŝuti protokoldosiero", - "More" : "Pli", - "Less" : "Malpli", - "What to log" : "Kion protokoli", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite uziĝas kiel datumbazo. Por pli grandaj instaloj ni rekomendas ŝanĝi ĝin per malsama datumbazomotoro.", - "Version" : "Eldono", - "by %s" : "de %s", - "%s-licensed" : "%s-permesila", - "Documentation:" : "Dokumentaro:", - "User documentation" : "Uzodokumentaro", - "Admin documentation" : "Administrodokumentaro", - "Show description …" : "Montri priskribon...", - "Hide description …" : "Malmontri priskribon...", - "Enable only for specific groups" : "Kapabligi nur por specifajn grupojn", - "Uninstall App" : "Malinstali aplikaĵon", - "Common Name" : "Komuna nomo", - "Valid until" : "Valida ĝis", - "Valid until %s" : "Valida ĝis %s", - "Administrator documentation" : "Administrodokumentaro", - "Forum" : "Forumo", - "Commercial support" : "Komerca subteno", - "Profile picture" : "Profila bildo", - "Upload new" : "Alŝuti novan", - "Select from Files" : "Elekti el Dosieroj", - "Remove image" : "Forigi bildon", - "Cancel" : "Nuligi", - "Full name" : "Plena nomo", - "Email" : "Retpoŝto", - "Your email address" : "Via retpoŝta adreso", - "Password" : "Pasvorto", - "Unable to change your password" : "Ne eblis ŝanĝi vian pasvorton", - "Current password" : "Nuna pasvorto", - "New password" : "Nova pasvorto", - "Change password" : "Ŝanĝi la pasvorton", - "Language" : "Lingvo", - "Help translate" : "Helpu traduki", - "Get the apps to sync your files" : "Ekhavu la aplikaĵojn por sinkronigi viajn dosierojn", - "Desktop client" : "Labortabla kliento", - "Android app" : "Android-aplikaĵo", - "iOS app" : "iOS-aplikaĵo", - "Show last log in" : "Montri lastan ensaluton", - "Show user backend" : "Montri uzantomotoron", - "Username" : "Uzantonomo", - "E-Mail" : "Retpoŝtadreso", - "Create" : "Krei", - "Add Group" : "Aldoni grupon", - "Group" : "Grupo", - "Everyone" : "Ĉiuj", - "Admins" : "Administrantoj", - "Default Quota" : "Defaŭlta kvoto", - "Other" : "Alia", - "Full Name" : "Plena nomo", - "Group Admin for" : "Grupadministranto en", - "Quota" : "Kvoto", - "User Backend" : "Uzantomotoro", - "Last Login" : "Lasta ensaluto", - "change full name" : "ŝanĝi plenan nomon", - "set new password" : "agordi novan pasvorton", - "change email address" : "ŝanĝi retpoŝtadreson", - "Default" : "Defaŭlta" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/eo.json b/settings/l10n/eo.json deleted file mode 100644 index 8d050d4a54b..00000000000 --- a/settings/l10n/eo.json +++ /dev/null @@ -1,150 +0,0 @@ -{ "translations": { - "Sharing" : "Kunhavigo", - "External Storage" : "Malena memorilo", - "Cron" : "Cron", - "Email server" : "Retpoŝtoservilo", - "Log" : "Protokolo", - "Updates" : "Ĝisdatigoj", - "Language changed" : "La lingvo estas ŝanĝita", - "Invalid request" : "Nevalida peto", - "Authentication error" : "Aŭtentiga eraro", - "Admins can't remove themself from the admin group" : "Administrantoj ne povas forigi sin mem el la administra grupo.", - "Unable to add user to group %s" : "Ne eblis aldoni la uzanton al la grupo %s", - "Unable to remove user from group %s" : "Ne eblis forigi la uzantan el la grupo %s", - "Couldn't update app." : "Ne eblis ĝisdatigi la aplikaĵon.", - "Wrong password" : "Malĝusta pasvorto", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Motoro ne subtenas ŝanĝi pasvorton, sed la ĉifroŝlosilo de la uzanto sukcese ĝisdatiĝis.", - "Unable to change password" : "Ne eblis ŝanĝi la pasvorton", - "Enabled" : "Kapabligita", - "Federated Cloud Sharing" : "Federnuba kunhavado", - "Group already exists." : "Grupo jam ekzistas", - "Saved" : "Konservita", - "Email sent" : "La retpoŝtaĵo sendiĝis", - "Email saved" : "La retpoŝtadreso konserviĝis", - "Your full name has been changed." : "Via plena nomo ŝanĝitas.", - "Unable to change full name" : "Ne eblis ŝanĝi la plenan nomon", - "Sending..." : "Sendante...", - "All" : "Ĉio", - "Please wait...." : "Bonvolu atendi...", - "Error while disabling app" : "Eraris malkapabligo de aplikaĵo", - "Disable" : "Malkapabligi", - "Enable" : "Kapabligi", - "Error while enabling app" : "Eraris kapabligo de aplikaĵo", - "Updating...." : "Ĝisdatigata...", - "Error while updating app" : "Eraris ĝisdatigo de la aplikaĵo", - "Updated" : "Ĝisdatigita", - "Uninstalling ...." : "Malinstalante...", - "Error while uninstalling app" : "Eraris malinstalo de aplikaĵo", - "Uninstall" : "Malinstali", - "Delete" : "Forigi", - "Select a profile picture" : "Elekti profilan bildon", - "Very weak password" : "Tre malforta pasvorto", - "Weak password" : "Malforta pasvorto", - "So-so password" : "Mezaĉa pasvorto", - "Good password" : "Bona pasvorto", - "Strong password" : "Forta pasvorto", - "Groups" : "Grupoj", - "deleted {groupName}" : "{groupName} foriĝis", - "undo" : "malfari", - "never" : "neniam", - "deleted {userName}" : "{userName} foriĝis", - "add group" : "aldoni grupon", - "A valid username must be provided" : "Valida uzantonomo devas proviziĝi", - "A valid password must be provided" : "Valida pasvorto devas proviziĝi", - "__language_name__" : "Esperanto", - "Unlimited" : "Senlima", - "Personal info" : "Persona informo", - "Sync clients" : "Sinkronigi klientojn", - "Everything (fatal issues, errors, warnings, info, debug)" : "Ĉio (fatalaĵoj, eraroj, avertoj, informoj, sencimigaj mesaĝoj)", - "Info, warnings, errors and fatal issues" : "Informoj, avertoj, eraroj kaj fatalaĵoj", - "Warnings, errors and fatal issues" : "Avertoj, eraroj kaj fatalaĵoj", - "Errors and fatal issues" : "Eraroj kaj fatalaĵoj", - "Fatal issues only" : "Fatalaĵoj nur", - "None" : "Nenio", - "Login" : "Ensaluti", - "SSL" : "SSL", - "TLS" : "TLS", - "Open documentation" : "Malfermi la dokumentaron", - "Allow apps to use the Share API" : "Kapabligi aplikaĵojn uzi la API-on pri Kunhavigo", - "Allow users to share via link" : "Permesi uzantojn kunhavigi ligile", - "Allow public uploads" : "Permesi publikajn alŝutojn", - "Expire after " : "Eksvalidigi post", - "days" : "tagoj", - "Allow resharing" : "Kapabligi rekunhavigon", - "This is the final warning: Do you really want to enable encryption?" : "Jen la fina averto: ĉu vi certe volas kapabligi ĉifradon?", - "Enable encryption" : "Kapabligi ĉifradon", - "Send mode" : "Sendi pli", - "Encryption" : "Ĉifrado", - "From address" : "El adreso", - "mail" : "retpoŝto", - "Authentication method" : "Aŭtentiga metodo", - "Authentication required" : "Aŭtentiĝo nepras", - "Server address" : "Servila adreso", - "Port" : "Pordo", - "Credentials" : "Aŭtentigiloj", - "SMTP Username" : "SMTP-uzantonomo", - "SMTP Password" : "SMTP-pasvorto", - "Test email settings" : "Provi retpoŝtagordon", - "Send email" : "Sendi retpoŝton", - "Download logfile" : "Elŝuti protokoldosiero", - "More" : "Pli", - "Less" : "Malpli", - "What to log" : "Kion protokoli", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite uziĝas kiel datumbazo. Por pli grandaj instaloj ni rekomendas ŝanĝi ĝin per malsama datumbazomotoro.", - "Version" : "Eldono", - "by %s" : "de %s", - "%s-licensed" : "%s-permesila", - "Documentation:" : "Dokumentaro:", - "User documentation" : "Uzodokumentaro", - "Admin documentation" : "Administrodokumentaro", - "Show description …" : "Montri priskribon...", - "Hide description …" : "Malmontri priskribon...", - "Enable only for specific groups" : "Kapabligi nur por specifajn grupojn", - "Uninstall App" : "Malinstali aplikaĵon", - "Common Name" : "Komuna nomo", - "Valid until" : "Valida ĝis", - "Valid until %s" : "Valida ĝis %s", - "Administrator documentation" : "Administrodokumentaro", - "Forum" : "Forumo", - "Commercial support" : "Komerca subteno", - "Profile picture" : "Profila bildo", - "Upload new" : "Alŝuti novan", - "Select from Files" : "Elekti el Dosieroj", - "Remove image" : "Forigi bildon", - "Cancel" : "Nuligi", - "Full name" : "Plena nomo", - "Email" : "Retpoŝto", - "Your email address" : "Via retpoŝta adreso", - "Password" : "Pasvorto", - "Unable to change your password" : "Ne eblis ŝanĝi vian pasvorton", - "Current password" : "Nuna pasvorto", - "New password" : "Nova pasvorto", - "Change password" : "Ŝanĝi la pasvorton", - "Language" : "Lingvo", - "Help translate" : "Helpu traduki", - "Get the apps to sync your files" : "Ekhavu la aplikaĵojn por sinkronigi viajn dosierojn", - "Desktop client" : "Labortabla kliento", - "Android app" : "Android-aplikaĵo", - "iOS app" : "iOS-aplikaĵo", - "Show last log in" : "Montri lastan ensaluton", - "Show user backend" : "Montri uzantomotoron", - "Username" : "Uzantonomo", - "E-Mail" : "Retpoŝtadreso", - "Create" : "Krei", - "Add Group" : "Aldoni grupon", - "Group" : "Grupo", - "Everyone" : "Ĉiuj", - "Admins" : "Administrantoj", - "Default Quota" : "Defaŭlta kvoto", - "Other" : "Alia", - "Full Name" : "Plena nomo", - "Group Admin for" : "Grupadministranto en", - "Quota" : "Kvoto", - "User Backend" : "Uzantomotoro", - "Last Login" : "Lasta ensaluto", - "change full name" : "ŝanĝi plenan nomon", - "set new password" : "agordi novan pasvorton", - "change email address" : "ŝanĝi retpoŝtadreson", - "Default" : "Defaŭlta" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/es.js b/settings/l10n/es.js deleted file mode 100644 index 1a9764228a4..00000000000 --- a/settings/l10n/es.js +++ /dev/null @@ -1,298 +0,0 @@ -OC.L10N.register( - "settings", - { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Avisos de seguidad y configuración", - "Sharing" : "Compartiendo", - "Server-side encryption" : "Cifrado en el servidor", - "External Storage" : "Almacenamiento externo", - "Cron" : "Cron", - "Email server" : "Servidor de correo electrónico", - "Log" : "Registro", - "Tips & tricks" : "Sugerencias y trucos", - "Updates" : "Actualizaciones", - "Couldn't remove app." : "No se pudo eliminar la aplicación.", - "Language changed" : "Idioma cambiado", - "Invalid request" : "Petición no válida", - "Authentication error" : "Error de autenticación", - "Admins can't remove themself from the admin group" : "Los administradores no se pueden eliminar a ellos mismos del grupo de administrador", - "Unable to add user to group %s" : "No se pudo añadir el usuario al grupo %s", - "Unable to remove user from group %s" : "No se pudo eliminar al usuario del grupo %s", - "Couldn't update app." : "No se pudo actualizar la aplicación.", - "Wrong password" : "Contraseña incorrecta", - "No user supplied" : "No se especificó un usuario", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Por favor facilite una contraseña de recuperación de administrador, sino podrían perderse todos los datos de usuario", - "Wrong admin recovery password. Please check the password and try again." : "Contraseña de recuperación de administrador incorrecta. Por favor compruebe la contraseña e inténtelo de nuevo.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "El backend no admite cambios de contraseña, pero la clave de cifrado del usuario ha sido actualizada satisfactoriamente.", - "Unable to change password" : "No se ha podido cambiar la contraseña", - "Enabled" : "Habilitado", - "Not enabled" : "No habilitado", - "installing and updating apps via the app store or Federated Cloud Sharing" : "instalando y actualizando aplicaciones via app store o Nube compartida Federada", - "Federated Cloud Sharing" : "Compartido en Cloud Federado", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está usando una versión desactualizada %s (%s). Por favor, actualice su sistema operativo o funciones tales como %s no funcionará de forma fiable.", - "A problem occurred, please check your log files (Error: %s)" : "Ocurrió un problema, por favor verifique los archivos de registro (Error: %s)", - "Migration Completed" : "Migración finalizada", - "Group already exists." : "El grupo ya existe.", - "Unable to add group." : "No se pudo agregar el grupo.", - "Unable to delete group." : "No se pudo eliminar el grupo.", - "log-level out of allowed range" : "Nivel de autenticación fuera del rango permitido", - "Saved" : "Guardado", - "test email settings" : "probar configuración de correo electrónico", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Ocurrió un problema al enviar el mensaje de correo electrónico. Revise su configuración. (Error: %s)", - "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.", - "Invalid mail address" : "Dirección de correo inválida", - "A user with that name already exists." : "Ya existe un usuario con ese nombre.", - "Unable to create user." : "No se pudo crear el usuario.", - "Your %s account was created" : "Se ha creado su cuenta de %s", - "Unable to delete user." : "No se pudo eliminar el usuario.", - "Forbidden" : "Prohibido", - "Invalid user" : "Usuario no válido", - "Unable to change mail address" : "No se pudo cambiar la dirección de correo electrónico", - "Email saved" : "Correo electrónico guardado", - "Your full name has been changed." : "Se ha cambiado su nombre completo.", - "Unable to change full name" : "No se puede cambiar el nombre completo", - "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", - "Migration in progress. Please wait until the migration is finished" : "Migración en curso. Por favor, espere hasta que la migración esté finalizada.", - "Migration started …" : "Migración iniciada...", - "Sending..." : "Enviando...", - "Official" : "Oficial", - "Approved" : "Aprobado", - "Experimental" : "Experimental", - "All" : "Todos", - "No apps found for your version" : "No se han encontrado aplicaciones para su versión", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Aplicaciones oficiales son desarrolladas por y dentro de la comunidad ownCloud. Estas ofrecen una funcionalidad central con ownCloud y están listas para su uso en producción. ", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Las aplicaciones aprobadas son desarrolladas por desarrolladores de confianza y han pasado un control de seguridad superficial. Estas se mantienen activamente en un repositorio de código abierto y sus mantenedores las consideran estables para un uso normal.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Esta aplicación no está verificada por problemas de seguridad además de ser reciente o conocida por ser inestable. Instálela bajo su propio riesgo.", - "Update to %s" : "Actualizar a %s", - "_You have %n app update pending_::_You have %n app updates pending_" : ["Tiene %n actualización de app pendiente","Tiene %n actualizaciones de app pendientes"], - "Please wait...." : "Espere, por favor....", - "Error while disabling app" : "Error mientras se desactivaba la aplicación", - "Disable" : "Desactivar", - "Enable" : "Activar", - "Error while enabling app" : "Error mientras se activaba la aplicación", - "Error: this app cannot be enabled because it makes the server unstable" : "Error: Esta App no puede habilitarse porque el servidor se volveria inestable.", - "Error: could not disable broken app" : "Error: No puedo deshabilitar la App dañada.", - "Error while disabling broken app" : "Error mientras deshabilitaba la App dañada", - "Updating...." : "Actualizando...", - "Error while updating app" : "Error mientras se actualizaba la aplicación", - "Updated" : "Actualizado", - "Uninstalling ...." : "Desinstalando...", - "Error while uninstalling app" : "Error al desinstalar la aplicación", - "Uninstall" : "Desinstalar", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "La aplicación ha sido activada pero necesita ser actualizada. Seras redirigido a la pagina de actualizariones en 5 segundos.", - "App update" : "Actualización de aplicación", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Ha ocurrido un error. Por favor, cargue un certificado PEM codificado en ASCII.", - "Valid until {date}" : "Válido hasta {date}", - "Delete" : "Eliminar", - "An error occurred: {message}" : "Ocurrió un error: {message}", - "Select a profile picture" : "Seleccionar una imagen de perfil", - "Very weak password" : "Contraseña muy débil", - "Weak password" : "Contraseña débil", - "So-so password" : "Contraseña pasable", - "Good password" : "Contraseña buena", - "Strong password" : "Contraseña muy buena", - "Groups" : "Grupos", - "Unable to delete {objName}" : "No es posible eliminar {objName}", - "Error creating group: {message}" : "Error creando el grupo: {message}", - "A valid group name must be provided" : "Se debe dar un nombre válido para el grupo ", - "deleted {groupName}" : "{groupName} eliminado", - "undo" : "deshacer", - "no group" : "sin grupo", - "never" : "nunca", - "deleted {userName}" : "borrado {userName}", - "add group" : "añadir grupo", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Cambiar la contraseña provocará pérdida de datos porque la recuperación de datos no está disponible para este usuario", - "A valid username must be provided" : "Se debe proporcionar un nombre de usuario válido", - "Error creating user: {message}" : "Error creando el usuario: {message}", - "A valid password must be provided" : "Se debe proporcionar una contraseña válida", - "A valid email must be provided" : "Se debe brindar una dirección de correo electrónico válida ", - "__language_name__" : "Castellano", - "Unlimited" : "Ilimitado", - "Personal info" : "Información personal", - "Sync clients" : "Sincronizar clientes", - "Everything (fatal issues, errors, warnings, info, debug)" : "Todo (Información, Avisos, Errores, debug y problemas fatales)", - "Info, warnings, errors and fatal issues" : "Información, Avisos, Errores y problemas fatales", - "Warnings, errors and fatal issues" : "Advertencias, errores y problemas fatales", - "Errors and fatal issues" : "Errores y problemas fatales", - "Fatal issues only" : "Problemas fatales solamente", - "None" : "Ninguno", - "Login" : "Iniciar sesión", - "Plain" : "Plano", - "NT LAN Manager" : "Gestor de NT LAN", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "php parece que no está configurado correctamente para solicitar las variables de entorno del sistema. La prueba con getenv(\"PATH\") sólo retorna una respuesta vacía.", - "Please check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation documentation ↗</a> for php configuration notes and the php configuration of your server, especially when using php-fpm." : "Por favor revisa la <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentación de instalación ↗</a> para notas de configuración PHP y la configuración PHP de tu servidor, especialmente cuando se está usando php-fpm", - "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 tener que ajustar algunas configuraciones a través de la interfaz web. Además, el archivo debe hacerse modificable manualmente para cada actualización.", - "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP está aparentemente configurado para eliminar bloques de documentos en línea. Esto hará que varias aplicaciones principales no estén accesibles.", - "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Probablemente esto venga a causa de la caché o un acelerador, tales como Zend OPcache o eAccelerator.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Su servidor está operando con Microsoft Windows. Le recomendamos GNU/Linux encarecidamente para disfrutar una experiencia óptima como usuario.", - "%1$s below version %2$s is installed, for stability and performance reasons we recommend updating to a newer %1$s version." : "%1$s una versión inferior %2$s está instalada, por razones de estabilidad y rendimiento, se recomienda actualizar a la versión %1$s más reciente .", - "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.", - "Transactional file locking is disabled, this might lead to issues with race conditions. Enable 'filelocking.enabled' in config.php to avoid these problems. See the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a> for more information." : "El bloqueo de archivos transaccional está desactivado, esto podría conducir a problemas con 'race conditions'. Activa 'filelocking.enabled' en 'config.php' para solucionar esos problemas. Mira la <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentación ↗</a> para más información.", - "System locale can not be set to a one which supports UTF-8." : "No se puede escoger una configuración regional que soporte UTF-8.", - "This means that there might be problems with certain characters in file names." : "Esto significa que puede haber problemas con ciertos caracteres en los nombres de los archivos.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Es muy recomendable instalar los paquetes necesarios para poder soportar una de las siguientes configuraciones regionales: %s. ", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Si su instalación no está ubicada en la raíz del dominio y usa el cron del sistema, puede haber problemas al generarse los URL. Para evitarlos, configure la opción \"overwrite.cli.url\" en su archivo config.php para que use la ruta de la raíz del sitio web de su instalación (sugerencia: \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "No fue posible ejecutar cronjob vía CLI. Han aparecido los siguientes errores técnicos:", - "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"#log-section\">log</a>." : "Por favor, compruebe de nuevo las <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">guías de instalación ↗</a>, y comprueba por cualquier error o advertencia en el <a href=\"#log-section\">Registro</a>", - "All checks passed." : "Ha pasado todos los controles", - "Open documentation" : "Documentación abierta", - "Allow apps to use the Share API" : "Permitir a las aplicaciones utilizar la API de Compartición", - "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 recompartición", - "Allow sharing with groups" : "Permitir compartir con grupos", - "Restrict users to only share with users in their groups" : "Restringe a los usuarios a compartir solo con otros usuarios en sus grupos", - "Allow users to send mail notification for shared files to other users" : "Permitir a los usuarios enviar notificaciones por correo electrónico de los archivos compartidos a otros usuarios", - "Exclude groups from sharing" : "Excluye grupos de compartir", - "These groups will still be able to receive shares, but not to initiate them." : "Estos grupos aún podrán recibir contenidos compartidos, pero no podrán, pero no podrán iniciarlos.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Permitir autocompletación del nombre de usuario en diálogos de compartición. Si está deshabilitado, se requiere introducir el nombre de usuario.", - "Last cron job execution: %s." : "Cron se ejecutó por última vez: %s", - "Last cron job execution: %s. Something seems wrong." : "Cron se ejecutó por última vez: %s. Algo va mal.", - "Cron was not executed yet!" : "¡Cron aún no ha sido ejecutado!", - "Execute one task with each page loaded" : "Ejecutar una tarea con cada página cargada", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php se registra en un servicio webcron para llamar a cron.php cada 15 minutos a través de HTTP.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Usar el servicio cron del sistema para llamar al archivo cron.php cada 15 minutos.", - "Enable server-side encryption" : "Habilitar cifrado en el servidor", - "Please read carefully before activating server-side encryption: " : "Por favor lea cuidadosamente antes de activar el cifrado del lado del servidor.", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "Una vez que el cifrado está habilitado, todos los archivos subidos al servidor desde ese punto en adelante se cifrarán en reposo en el servidor. Sólo será posible desactivar el cifrado en una fecha posterior si el módulo de cifrado activado soporta esa función, y todas las condiciones previas (por ejemplo, el establecimiento de una clave de recuperación) se cumplan.", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "El cifrado en sí solo no garantiza la seguridad del sistema. Por favor, consulte la documentación de ownCloud para obtener más información acerca de cómo funciona la aplicación de cifrado, y los casos de uso compatibles.", - "Be aware that encryption always increases the file size." : "Tenga presente que la encripción siempre incrementa el tamaño del archivo.", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "Es siempre bueno crear copias de seguridad de sus datos, en el caso del cifrado, asegúrese de tener una copia de seguridad de las claves de cifrado junto con sus datos.", - "This is the final warning: Do you really want to enable encryption?" : "Esta es la advertencia final. ¿Realmente quiere activar el cifrado?", - "Enable encryption" : "Habilitar cifrado", - "No encryption module loaded, please enable an encryption module in the app menu." : "No se ha cargado el modulo de cifrado. Por favor habilite un modulo de cifrado en el menú de aplicaciones.", - "Select default encryption module:" : "Seleccione el módulo de cifrado por defecto:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Necesita migrar sus claves de cifrado provenientes del antiguo sistema (ownCloud <= 8.0) al nuevo. Por favor habilite el \"Módulo de cifrado por defecto\" y ejecute 'occ encryption:migrate'", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Se necesita migrar las claves de cifrado del antiguo sistema (ownCloud <= 8.0) al nuevo sistema.", - "Start migration" : "Iniciar migración", - "This is used for sending out notifications." : "Esto se usa para enviar notificaciones.", - "Send mode" : "Modo de envío", - "Encryption" : "Cifrado", - "From address" : "Desde la dirección", - "mail" : "correo electrónico", - "Authentication method" : "Método de autenticación", - "Authentication required" : "Se necesita autenticación", - "Server address" : "Dirección del servidor", - "Port" : "Puerto", - "Credentials" : "Credenciales", - "SMTP Username" : "Nombre de usuario SMTP", - "SMTP Password" : "Contraseña SMTP", - "Store credentials" : "Almacenar credenciales", - "Test email settings" : "Probar configuración de correo electrónico", - "Send email" : "Enviar mensaje", - "Download logfile" : "Descargar archivo de registro", - "More" : "Más", - "Less" : "Menos", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "El archivo de registro es mayor de 100 MB. Descargarlo puede tardar.", - "What to log" : "Que registrar", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "Se utiliza SQLite como base de datos. Para instalaciones mas grandes se recomiende cambiar a otro sistema de base de datos. ", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "El uso de SQLite está desaconsejado especialmente cuando se usa el cliente de escritorio para sincronizar los ficheros.", - "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a>." : "Para migrar a otra base de datos usa la herramienta de línea de comandos 'occ db:convert-type' o mira la <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentación ↗</a>.", - "How to do backups" : "Cómo hacer copias de seguridad", - "Advanced monitoring" : "Monitorización avanzada", - "Performance tuning" : "Ajuste de rendimiento", - "Improving the config.php" : "Mejorar el config.php", - "Theming" : "Personalizar el tema", - "Hardening and security guidance" : "Guía de protección y seguridad", - "Version" : "Versión", - "Developer documentation" : "Documentación de desarrollador", - "Experimental applications ahead" : "Aplicaciones experimentales más adelante", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Las aplicaciones experimentales no están verificadas por problemas de seguridad, recientes o conocidas por ser inestables y/o bajo un fuerte desarrollo. Instalándolas pueden causar pérdida de datos o violación de seguridades.", - "by %s" : "por %s", - "%s-licensed" : "%s-licenciado", - "Documentation:" : "Documentación:", - "User documentation" : "Documentación de usuario", - "Admin documentation" : "Documentación de administrador", - "Show description …" : "Mostrar descripción…", - "Hide description …" : "Ocultar descripción…", - "This app has an update available." : "Está app tiene una actualización pendiente.", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Esta aplicación no tiene ninguna versión mínima de ownCloud asignada. Este será un error en ownCloud 11 y posteriores.", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Esta aplicación no tiene ninguna versión máxima de ownCloud asignada. Este será un error en ownCloud 11 y posteriores.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede instalarse porque las siguientes dependencias no están cumplimentadas:", - "Enable only for specific groups" : "Activar solamente para grupos específicos", - "Uninstall App" : "Desinstalar aplicación", - "Enable experimental apps" : "Habilitar aplicaciones experimentales", - "SSL Root Certificates" : "Raíz de certificados SSL ", - "Common Name" : "Nombre común", - "Valid until" : "Válido hasta", - "Issued By" : "Emitido por", - "Valid until %s" : "Válido hasta %s", - "Import root certificate" : "Importar certificado raíz", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "¿Qué tal?,<br><br>este mensaje es para hacerle saber que ahora tiene una %s cuenta.<br><br>Su nombre de usuario: %s<br>Acceda en: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "¡Saludos!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Hola, ¿qué tal?,\n\nEste mensaje es para hacerle saber que ahora tiene una cuenta %s.\n\nSu nombre de usuario: %s\nAcceda en: %s\n\n", - "Administrator documentation" : "Documentación del adminsitrador", - "Online documentation" : "Documentación en línea", - "Forum" : "Foro", - "Issue tracker" : "Seguidor de problemas:", - "Commercial support" : "Soporte Comercial", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "Estas usando <strong>%s</strong> de <strong>%s</strong> ", - "Profile picture" : "Foto de perfil", - "Upload new" : "Subir otra", - "Select from Files" : "Seleccionar desde Archivos", - "Remove image" : "Borrar imagen", - "png or jpg, max. 20 MB" : "png o jpg, max. 20 MB", - "Picture provided by original account" : "Imagen provista por cuenta original", - "Cancel" : "Cancelar", - "Choose as profile picture" : "Seleccionar como imagen de perfil", - "Full name" : "Nombre completo", - "No display name set" : "No se ha establecido ningún nombre para mostrar", - "Email" : "Correo electrónico", - "Your email address" : "Su dirección de correo", - "For password recovery and notifications" : "Para la recuperación de contraseña y notificaciones", - "No email address set" : "Ninguna dirección de correo establecida", - "You are member of the following groups:" : "Es miembro de los siguientes grupos:", - "Password" : "Contraseña", - "Unable to change your password" : "No se ha podido cambiar su contraseña", - "Current password" : "Contraseña actual", - "New password" : "Nueva contraseña", - "Change password" : "Cambiar contraseña", - "Language" : "Idioma", - "Help translate" : "Ayúdanos a traducir", - "Get the apps to sync your files" : "Obtener las aplicaciones para sincronizar sus archivos", - "Desktop client" : "Cliente de escritorio", - "Android app" : "Aplicación de Android", - "iOS app" : "La aplicación de iOS", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Si quiere colaborar con el proyecto\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">participe en el desarrollo</a>\n\t\to\n\t\t¡<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">difúndalo</a>!", - "Show First Run Wizard again" : "Mostrar nuevamente el Asistente de ejecución inicial", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Desarrollado por la {communityopen}comunidad Owncloud{linkclose}, el {githubopen}código fuente{linkclose} está licenciado bajo {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}.", - "Show storage location" : "Mostrar la ubicación del almacenamiento", - "Show last log in" : "Mostrar el último inicio de sesión", - "Show user backend" : "Mostrar motor de usuario", - "Send email to new user" : "Enviar correo al usuario nuevo", - "Show email address" : "Mostrar dirección de correo electrónico", - "Username" : "Nombre de usuario", - "E-Mail" : "Correo electrónico", - "Create" : "Crear", - "Admin Recovery Password" : "Recuperación de la contraseña de administración", - "Enter the recovery password in order to recover the users files during password change" : "Introduzca la contraseña de recuperación a fin de recuperar los archivos de los usuarios durante el cambio de contraseña.", - "Add Group" : "Agregar grupo", - "Group" : "Grupo", - "Everyone" : "Todos", - "Admins" : "Administradores", - "Default Quota" : "Cuota predeterminada", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor indique la cúota de almacenamiento (ej: \"512 MB\" o \"12 GB\")", - "Other" : "Otro", - "Full Name" : "Nombre completo", - "Group Admin for" : "Grupo administrador para", - "Quota" : "Cuota", - "Storage Location" : "Ubicación de almacenamiento", - "User Backend" : "Motor de usuario", - "Last Login" : "Último inicio de sesión", - "change full name" : "cambiar el nombre completo", - "set new password" : "establecer nueva contraseña", - "change email address" : "cambiar dirección de correo electrónico", - "Default" : "Predeterminado" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/es.json b/settings/l10n/es.json deleted file mode 100644 index 3396804b76b..00000000000 --- a/settings/l10n/es.json +++ /dev/null @@ -1,296 +0,0 @@ -{ "translations": { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Avisos de seguidad y configuración", - "Sharing" : "Compartiendo", - "Server-side encryption" : "Cifrado en el servidor", - "External Storage" : "Almacenamiento externo", - "Cron" : "Cron", - "Email server" : "Servidor de correo electrónico", - "Log" : "Registro", - "Tips & tricks" : "Sugerencias y trucos", - "Updates" : "Actualizaciones", - "Couldn't remove app." : "No se pudo eliminar la aplicación.", - "Language changed" : "Idioma cambiado", - "Invalid request" : "Petición no válida", - "Authentication error" : "Error de autenticación", - "Admins can't remove themself from the admin group" : "Los administradores no se pueden eliminar a ellos mismos del grupo de administrador", - "Unable to add user to group %s" : "No se pudo añadir el usuario al grupo %s", - "Unable to remove user from group %s" : "No se pudo eliminar al usuario del grupo %s", - "Couldn't update app." : "No se pudo actualizar la aplicación.", - "Wrong password" : "Contraseña incorrecta", - "No user supplied" : "No se especificó un usuario", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Por favor facilite una contraseña de recuperación de administrador, sino podrían perderse todos los datos de usuario", - "Wrong admin recovery password. Please check the password and try again." : "Contraseña de recuperación de administrador incorrecta. Por favor compruebe la contraseña e inténtelo de nuevo.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "El backend no admite cambios de contraseña, pero la clave de cifrado del usuario ha sido actualizada satisfactoriamente.", - "Unable to change password" : "No se ha podido cambiar la contraseña", - "Enabled" : "Habilitado", - "Not enabled" : "No habilitado", - "installing and updating apps via the app store or Federated Cloud Sharing" : "instalando y actualizando aplicaciones via app store o Nube compartida Federada", - "Federated Cloud Sharing" : "Compartido en Cloud Federado", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está usando una versión desactualizada %s (%s). Por favor, actualice su sistema operativo o funciones tales como %s no funcionará de forma fiable.", - "A problem occurred, please check your log files (Error: %s)" : "Ocurrió un problema, por favor verifique los archivos de registro (Error: %s)", - "Migration Completed" : "Migración finalizada", - "Group already exists." : "El grupo ya existe.", - "Unable to add group." : "No se pudo agregar el grupo.", - "Unable to delete group." : "No se pudo eliminar el grupo.", - "log-level out of allowed range" : "Nivel de autenticación fuera del rango permitido", - "Saved" : "Guardado", - "test email settings" : "probar configuración de correo electrónico", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Ocurrió un problema al enviar el mensaje de correo electrónico. Revise su configuración. (Error: %s)", - "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.", - "Invalid mail address" : "Dirección de correo inválida", - "A user with that name already exists." : "Ya existe un usuario con ese nombre.", - "Unable to create user." : "No se pudo crear el usuario.", - "Your %s account was created" : "Se ha creado su cuenta de %s", - "Unable to delete user." : "No se pudo eliminar el usuario.", - "Forbidden" : "Prohibido", - "Invalid user" : "Usuario no válido", - "Unable to change mail address" : "No se pudo cambiar la dirección de correo electrónico", - "Email saved" : "Correo electrónico guardado", - "Your full name has been changed." : "Se ha cambiado su nombre completo.", - "Unable to change full name" : "No se puede cambiar el nombre completo", - "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", - "Migration in progress. Please wait until the migration is finished" : "Migración en curso. Por favor, espere hasta que la migración esté finalizada.", - "Migration started …" : "Migración iniciada...", - "Sending..." : "Enviando...", - "Official" : "Oficial", - "Approved" : "Aprobado", - "Experimental" : "Experimental", - "All" : "Todos", - "No apps found for your version" : "No se han encontrado aplicaciones para su versión", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Aplicaciones oficiales son desarrolladas por y dentro de la comunidad ownCloud. Estas ofrecen una funcionalidad central con ownCloud y están listas para su uso en producción. ", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Las aplicaciones aprobadas son desarrolladas por desarrolladores de confianza y han pasado un control de seguridad superficial. Estas se mantienen activamente en un repositorio de código abierto y sus mantenedores las consideran estables para un uso normal.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Esta aplicación no está verificada por problemas de seguridad además de ser reciente o conocida por ser inestable. Instálela bajo su propio riesgo.", - "Update to %s" : "Actualizar a %s", - "_You have %n app update pending_::_You have %n app updates pending_" : ["Tiene %n actualización de app pendiente","Tiene %n actualizaciones de app pendientes"], - "Please wait...." : "Espere, por favor....", - "Error while disabling app" : "Error mientras se desactivaba la aplicación", - "Disable" : "Desactivar", - "Enable" : "Activar", - "Error while enabling app" : "Error mientras se activaba la aplicación", - "Error: this app cannot be enabled because it makes the server unstable" : "Error: Esta App no puede habilitarse porque el servidor se volveria inestable.", - "Error: could not disable broken app" : "Error: No puedo deshabilitar la App dañada.", - "Error while disabling broken app" : "Error mientras deshabilitaba la App dañada", - "Updating...." : "Actualizando...", - "Error while updating app" : "Error mientras se actualizaba la aplicación", - "Updated" : "Actualizado", - "Uninstalling ...." : "Desinstalando...", - "Error while uninstalling app" : "Error al desinstalar la aplicación", - "Uninstall" : "Desinstalar", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "La aplicación ha sido activada pero necesita ser actualizada. Seras redirigido a la pagina de actualizariones en 5 segundos.", - "App update" : "Actualización de aplicación", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Ha ocurrido un error. Por favor, cargue un certificado PEM codificado en ASCII.", - "Valid until {date}" : "Válido hasta {date}", - "Delete" : "Eliminar", - "An error occurred: {message}" : "Ocurrió un error: {message}", - "Select a profile picture" : "Seleccionar una imagen de perfil", - "Very weak password" : "Contraseña muy débil", - "Weak password" : "Contraseña débil", - "So-so password" : "Contraseña pasable", - "Good password" : "Contraseña buena", - "Strong password" : "Contraseña muy buena", - "Groups" : "Grupos", - "Unable to delete {objName}" : "No es posible eliminar {objName}", - "Error creating group: {message}" : "Error creando el grupo: {message}", - "A valid group name must be provided" : "Se debe dar un nombre válido para el grupo ", - "deleted {groupName}" : "{groupName} eliminado", - "undo" : "deshacer", - "no group" : "sin grupo", - "never" : "nunca", - "deleted {userName}" : "borrado {userName}", - "add group" : "añadir grupo", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Cambiar la contraseña provocará pérdida de datos porque la recuperación de datos no está disponible para este usuario", - "A valid username must be provided" : "Se debe proporcionar un nombre de usuario válido", - "Error creating user: {message}" : "Error creando el usuario: {message}", - "A valid password must be provided" : "Se debe proporcionar una contraseña válida", - "A valid email must be provided" : "Se debe brindar una dirección de correo electrónico válida ", - "__language_name__" : "Castellano", - "Unlimited" : "Ilimitado", - "Personal info" : "Información personal", - "Sync clients" : "Sincronizar clientes", - "Everything (fatal issues, errors, warnings, info, debug)" : "Todo (Información, Avisos, Errores, debug y problemas fatales)", - "Info, warnings, errors and fatal issues" : "Información, Avisos, Errores y problemas fatales", - "Warnings, errors and fatal issues" : "Advertencias, errores y problemas fatales", - "Errors and fatal issues" : "Errores y problemas fatales", - "Fatal issues only" : "Problemas fatales solamente", - "None" : "Ninguno", - "Login" : "Iniciar sesión", - "Plain" : "Plano", - "NT LAN Manager" : "Gestor de NT LAN", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "php parece que no está configurado correctamente para solicitar las variables de entorno del sistema. La prueba con getenv(\"PATH\") sólo retorna una respuesta vacía.", - "Please check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation documentation ↗</a> for php configuration notes and the php configuration of your server, especially when using php-fpm." : "Por favor revisa la <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentación de instalación ↗</a> para notas de configuración PHP y la configuración PHP de tu servidor, especialmente cuando se está usando php-fpm", - "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 tener que ajustar algunas configuraciones a través de la interfaz web. Además, el archivo debe hacerse modificable manualmente para cada actualización.", - "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP está aparentemente configurado para eliminar bloques de documentos en línea. Esto hará que varias aplicaciones principales no estén accesibles.", - "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Probablemente esto venga a causa de la caché o un acelerador, tales como Zend OPcache o eAccelerator.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Su servidor está operando con Microsoft Windows. Le recomendamos GNU/Linux encarecidamente para disfrutar una experiencia óptima como usuario.", - "%1$s below version %2$s is installed, for stability and performance reasons we recommend updating to a newer %1$s version." : "%1$s una versión inferior %2$s está instalada, por razones de estabilidad y rendimiento, se recomienda actualizar a la versión %1$s más reciente .", - "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.", - "Transactional file locking is disabled, this might lead to issues with race conditions. Enable 'filelocking.enabled' in config.php to avoid these problems. See the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a> for more information." : "El bloqueo de archivos transaccional está desactivado, esto podría conducir a problemas con 'race conditions'. Activa 'filelocking.enabled' en 'config.php' para solucionar esos problemas. Mira la <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentación ↗</a> para más información.", - "System locale can not be set to a one which supports UTF-8." : "No se puede escoger una configuración regional que soporte UTF-8.", - "This means that there might be problems with certain characters in file names." : "Esto significa que puede haber problemas con ciertos caracteres en los nombres de los archivos.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Es muy recomendable instalar los paquetes necesarios para poder soportar una de las siguientes configuraciones regionales: %s. ", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Si su instalación no está ubicada en la raíz del dominio y usa el cron del sistema, puede haber problemas al generarse los URL. Para evitarlos, configure la opción \"overwrite.cli.url\" en su archivo config.php para que use la ruta de la raíz del sitio web de su instalación (sugerencia: \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "No fue posible ejecutar cronjob vía CLI. Han aparecido los siguientes errores técnicos:", - "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"#log-section\">log</a>." : "Por favor, compruebe de nuevo las <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">guías de instalación ↗</a>, y comprueba por cualquier error o advertencia en el <a href=\"#log-section\">Registro</a>", - "All checks passed." : "Ha pasado todos los controles", - "Open documentation" : "Documentación abierta", - "Allow apps to use the Share API" : "Permitir a las aplicaciones utilizar la API de Compartición", - "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 recompartición", - "Allow sharing with groups" : "Permitir compartir con grupos", - "Restrict users to only share with users in their groups" : "Restringe a los usuarios a compartir solo con otros usuarios en sus grupos", - "Allow users to send mail notification for shared files to other users" : "Permitir a los usuarios enviar notificaciones por correo electrónico de los archivos compartidos a otros usuarios", - "Exclude groups from sharing" : "Excluye grupos de compartir", - "These groups will still be able to receive shares, but not to initiate them." : "Estos grupos aún podrán recibir contenidos compartidos, pero no podrán, pero no podrán iniciarlos.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Permitir autocompletación del nombre de usuario en diálogos de compartición. Si está deshabilitado, se requiere introducir el nombre de usuario.", - "Last cron job execution: %s." : "Cron se ejecutó por última vez: %s", - "Last cron job execution: %s. Something seems wrong." : "Cron se ejecutó por última vez: %s. Algo va mal.", - "Cron was not executed yet!" : "¡Cron aún no ha sido ejecutado!", - "Execute one task with each page loaded" : "Ejecutar una tarea con cada página cargada", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php se registra en un servicio webcron para llamar a cron.php cada 15 minutos a través de HTTP.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Usar el servicio cron del sistema para llamar al archivo cron.php cada 15 minutos.", - "Enable server-side encryption" : "Habilitar cifrado en el servidor", - "Please read carefully before activating server-side encryption: " : "Por favor lea cuidadosamente antes de activar el cifrado del lado del servidor.", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "Una vez que el cifrado está habilitado, todos los archivos subidos al servidor desde ese punto en adelante se cifrarán en reposo en el servidor. Sólo será posible desactivar el cifrado en una fecha posterior si el módulo de cifrado activado soporta esa función, y todas las condiciones previas (por ejemplo, el establecimiento de una clave de recuperación) se cumplan.", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "El cifrado en sí solo no garantiza la seguridad del sistema. Por favor, consulte la documentación de ownCloud para obtener más información acerca de cómo funciona la aplicación de cifrado, y los casos de uso compatibles.", - "Be aware that encryption always increases the file size." : "Tenga presente que la encripción siempre incrementa el tamaño del archivo.", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "Es siempre bueno crear copias de seguridad de sus datos, en el caso del cifrado, asegúrese de tener una copia de seguridad de las claves de cifrado junto con sus datos.", - "This is the final warning: Do you really want to enable encryption?" : "Esta es la advertencia final. ¿Realmente quiere activar el cifrado?", - "Enable encryption" : "Habilitar cifrado", - "No encryption module loaded, please enable an encryption module in the app menu." : "No se ha cargado el modulo de cifrado. Por favor habilite un modulo de cifrado en el menú de aplicaciones.", - "Select default encryption module:" : "Seleccione el módulo de cifrado por defecto:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Necesita migrar sus claves de cifrado provenientes del antiguo sistema (ownCloud <= 8.0) al nuevo. Por favor habilite el \"Módulo de cifrado por defecto\" y ejecute 'occ encryption:migrate'", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Se necesita migrar las claves de cifrado del antiguo sistema (ownCloud <= 8.0) al nuevo sistema.", - "Start migration" : "Iniciar migración", - "This is used for sending out notifications." : "Esto se usa para enviar notificaciones.", - "Send mode" : "Modo de envío", - "Encryption" : "Cifrado", - "From address" : "Desde la dirección", - "mail" : "correo electrónico", - "Authentication method" : "Método de autenticación", - "Authentication required" : "Se necesita autenticación", - "Server address" : "Dirección del servidor", - "Port" : "Puerto", - "Credentials" : "Credenciales", - "SMTP Username" : "Nombre de usuario SMTP", - "SMTP Password" : "Contraseña SMTP", - "Store credentials" : "Almacenar credenciales", - "Test email settings" : "Probar configuración de correo electrónico", - "Send email" : "Enviar mensaje", - "Download logfile" : "Descargar archivo de registro", - "More" : "Más", - "Less" : "Menos", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "El archivo de registro es mayor de 100 MB. Descargarlo puede tardar.", - "What to log" : "Que registrar", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "Se utiliza SQLite como base de datos. Para instalaciones mas grandes se recomiende cambiar a otro sistema de base de datos. ", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "El uso de SQLite está desaconsejado especialmente cuando se usa el cliente de escritorio para sincronizar los ficheros.", - "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a>." : "Para migrar a otra base de datos usa la herramienta de línea de comandos 'occ db:convert-type' o mira la <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentación ↗</a>.", - "How to do backups" : "Cómo hacer copias de seguridad", - "Advanced monitoring" : "Monitorización avanzada", - "Performance tuning" : "Ajuste de rendimiento", - "Improving the config.php" : "Mejorar el config.php", - "Theming" : "Personalizar el tema", - "Hardening and security guidance" : "Guía de protección y seguridad", - "Version" : "Versión", - "Developer documentation" : "Documentación de desarrollador", - "Experimental applications ahead" : "Aplicaciones experimentales más adelante", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Las aplicaciones experimentales no están verificadas por problemas de seguridad, recientes o conocidas por ser inestables y/o bajo un fuerte desarrollo. Instalándolas pueden causar pérdida de datos o violación de seguridades.", - "by %s" : "por %s", - "%s-licensed" : "%s-licenciado", - "Documentation:" : "Documentación:", - "User documentation" : "Documentación de usuario", - "Admin documentation" : "Documentación de administrador", - "Show description …" : "Mostrar descripción…", - "Hide description …" : "Ocultar descripción…", - "This app has an update available." : "Está app tiene una actualización pendiente.", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Esta aplicación no tiene ninguna versión mínima de ownCloud asignada. Este será un error en ownCloud 11 y posteriores.", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Esta aplicación no tiene ninguna versión máxima de ownCloud asignada. Este será un error en ownCloud 11 y posteriores.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede instalarse porque las siguientes dependencias no están cumplimentadas:", - "Enable only for specific groups" : "Activar solamente para grupos específicos", - "Uninstall App" : "Desinstalar aplicación", - "Enable experimental apps" : "Habilitar aplicaciones experimentales", - "SSL Root Certificates" : "Raíz de certificados SSL ", - "Common Name" : "Nombre común", - "Valid until" : "Válido hasta", - "Issued By" : "Emitido por", - "Valid until %s" : "Válido hasta %s", - "Import root certificate" : "Importar certificado raíz", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "¿Qué tal?,<br><br>este mensaje es para hacerle saber que ahora tiene una %s cuenta.<br><br>Su nombre de usuario: %s<br>Acceda en: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "¡Saludos!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Hola, ¿qué tal?,\n\nEste mensaje es para hacerle saber que ahora tiene una cuenta %s.\n\nSu nombre de usuario: %s\nAcceda en: %s\n\n", - "Administrator documentation" : "Documentación del adminsitrador", - "Online documentation" : "Documentación en línea", - "Forum" : "Foro", - "Issue tracker" : "Seguidor de problemas:", - "Commercial support" : "Soporte Comercial", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "Estas usando <strong>%s</strong> de <strong>%s</strong> ", - "Profile picture" : "Foto de perfil", - "Upload new" : "Subir otra", - "Select from Files" : "Seleccionar desde Archivos", - "Remove image" : "Borrar imagen", - "png or jpg, max. 20 MB" : "png o jpg, max. 20 MB", - "Picture provided by original account" : "Imagen provista por cuenta original", - "Cancel" : "Cancelar", - "Choose as profile picture" : "Seleccionar como imagen de perfil", - "Full name" : "Nombre completo", - "No display name set" : "No se ha establecido ningún nombre para mostrar", - "Email" : "Correo electrónico", - "Your email address" : "Su dirección de correo", - "For password recovery and notifications" : "Para la recuperación de contraseña y notificaciones", - "No email address set" : "Ninguna dirección de correo establecida", - "You are member of the following groups:" : "Es miembro de los siguientes grupos:", - "Password" : "Contraseña", - "Unable to change your password" : "No se ha podido cambiar su contraseña", - "Current password" : "Contraseña actual", - "New password" : "Nueva contraseña", - "Change password" : "Cambiar contraseña", - "Language" : "Idioma", - "Help translate" : "Ayúdanos a traducir", - "Get the apps to sync your files" : "Obtener las aplicaciones para sincronizar sus archivos", - "Desktop client" : "Cliente de escritorio", - "Android app" : "Aplicación de Android", - "iOS app" : "La aplicación de iOS", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Si quiere colaborar con el proyecto\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">participe en el desarrollo</a>\n\t\to\n\t\t¡<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">difúndalo</a>!", - "Show First Run Wizard again" : "Mostrar nuevamente el Asistente de ejecución inicial", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Desarrollado por la {communityopen}comunidad Owncloud{linkclose}, el {githubopen}código fuente{linkclose} está licenciado bajo {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}.", - "Show storage location" : "Mostrar la ubicación del almacenamiento", - "Show last log in" : "Mostrar el último inicio de sesión", - "Show user backend" : "Mostrar motor de usuario", - "Send email to new user" : "Enviar correo al usuario nuevo", - "Show email address" : "Mostrar dirección de correo electrónico", - "Username" : "Nombre de usuario", - "E-Mail" : "Correo electrónico", - "Create" : "Crear", - "Admin Recovery Password" : "Recuperación de la contraseña de administración", - "Enter the recovery password in order to recover the users files during password change" : "Introduzca la contraseña de recuperación a fin de recuperar los archivos de los usuarios durante el cambio de contraseña.", - "Add Group" : "Agregar grupo", - "Group" : "Grupo", - "Everyone" : "Todos", - "Admins" : "Administradores", - "Default Quota" : "Cuota predeterminada", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor indique la cúota de almacenamiento (ej: \"512 MB\" o \"12 GB\")", - "Other" : "Otro", - "Full Name" : "Nombre completo", - "Group Admin for" : "Grupo administrador para", - "Quota" : "Cuota", - "Storage Location" : "Ubicación de almacenamiento", - "User Backend" : "Motor de usuario", - "Last Login" : "Último inicio de sesión", - "change full name" : "cambiar el nombre completo", - "set new password" : "establecer nueva contraseña", - "change email address" : "cambiar dirección de correo electrónico", - "Default" : "Predeterminado" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/es_AR.js b/settings/l10n/es_AR.js deleted file mode 100644 index 01906e804c7..00000000000 --- a/settings/l10n/es_AR.js +++ /dev/null @@ -1,126 +0,0 @@ -OC.L10N.register( - "settings", - { - "APCu" : "APCu", - "Sharing" : "Compartiendo", - "External Storage" : "Almacenamiento externo", - "Cron" : "Cron", - "Log" : "Log", - "Updates" : "Actualizaciones", - "Language changed" : "Idioma cambiado", - "Invalid request" : "Pedido inválido", - "Authentication error" : "Error al autenticar", - "Admins can't remove themself from the admin group" : "Los administradores no se pueden quitar a si mismos del grupo administrador. ", - "Unable to add user to group %s" : "No fue posible agregar el usuario al grupo %s", - "Unable to remove user from group %s" : "No es posible borrar al usuario del grupo %s", - "Couldn't update app." : "No se pudo actualizar la App.", - "Wrong password" : "Clave incorrecta", - "No user supplied" : "No se ha indicado el usuario", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Por favor provea de una contraseña de recuperación administrativa, sino se perderá todos los datos del usuario", - "Wrong admin recovery password. Please check the password and try again." : "Contraseña de recuperación administrativa incorrecta. Por favor, chequee la clave e intente de nuevo", - "Unable to change password" : "Imposible cambiar la contraseña", - "Enabled" : "Habilitado", - "Saved" : "Guardado", - "test email settings" : "Configuración de correo de prueba.", - "Email sent" : "e-mail mandado", - "You need to set your user email before being able to send test emails." : "Necesita especificar el usuario de correo electrónico antes de poder enviar correos electrónicos de prueba.", - "Email saved" : "e-mail guardado", - "Your full name has been changed." : "Su nombre completo ha sido cambiado.", - "Unable to change full name" : "Imposible cambiar el nombre completo", - "Sending..." : "Enviando...", - "All" : "Todos", - "Please wait...." : "Por favor, esperá....", - "Error while disabling app" : "Se ha producido un error mientras se deshabilitaba la aplicación", - "Disable" : "Desactivar", - "Enable" : "Activar", - "Error while enabling app" : "Se ha producido un error mientras se habilitaba la aplicación", - "Updating...." : "Actualizando....", - "Error while updating app" : "Error al actualizar App", - "Updated" : "Actualizado", - "Delete" : "Borrar", - "Select a profile picture" : "Seleccionar una imágen de perfil", - "Very weak password" : "Contraseña muy débil.", - "Weak password" : "Contraseña débil.", - "So-so password" : "Contraseña de nivel medio. ", - "Good password" : "Buena contraseña. ", - "Strong password" : "Contraseña fuerte.", - "Groups" : "Grupos", - "undo" : "deshacer", - "never" : "nunca", - "add group" : "agregar grupo", - "A valid username must be provided" : "Debe ingresar un nombre de usuario válido", - "A valid password must be provided" : "Debe ingresar una contraseña válida", - "__language_name__" : "Castellano (Argentina)", - "Unlimited" : "Ilimitado", - "Everything (fatal issues, errors, warnings, info, debug)" : "Todo (notificaciones fatales, errores, advertencias, info, debug)", - "Info, warnings, errors and fatal issues" : "Info, advertencias, errores y notificaciones fatales", - "Warnings, errors and fatal issues" : "Advertencias, errores y notificaciones fatales", - "Errors and fatal issues" : "Errores y notificaciones fatales", - "Fatal issues only" : "Notificaciones fatales solamente", - "None" : "Ninguno", - "Login" : "Ingresar", - "Plain" : "Plano", - "NT LAN Manager" : "Administrador NT LAN", - "SSL" : "SSL", - "TLS" : "TLS", - "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", - "System locale can not be set to a one which supports UTF-8." : "La localización del sistema no puede cambiarse a una que soporta UTF-8", - "This means that there might be problems with certain characters in file names." : "Esto significa que puede haber problemas con ciertos caracteres en los nombres de archivos.", - "Allow apps to use the Share API" : "Permitir a las aplicaciones usar la Share API", - "Allow public uploads" : "Permitir subidas públicas", - "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", - "Execute one task with each page loaded" : "Ejecutá una tarea con cada pagina cargada.", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php está registrado en el servicio webcron para llamarlo cada 15 minutos usando http.", - "This is used for sending out notifications." : "Esto es usado para enviar notificaciones.", - "Send mode" : "Modo de envio", - "Encryption" : "Encriptación", - "From address" : "Dirección remitente", - "Authentication method" : "Método de autenticación", - "Authentication required" : "Autentificación requerida", - "Server address" : "Dirección del servidor", - "Port" : "Puerto", - "Credentials" : "Credenciales", - "SMTP Username" : "Nombre de usuario SMTP", - "SMTP Password" : "Contraseña SMTP", - "Test email settings" : "Configuracion de correo de prueba.", - "Send email" : "Enviar correo", - "More" : "Más", - "Less" : "Menos", - "Version" : "Versión", - "Documentation:" : "Documentación:", - "Cheers!" : "¡Saludos!", - "Forum" : "Foro", - "Profile picture" : "Imágen de perfil", - "Upload new" : "Subir nuevo", - "Remove image" : "Remover imagen", - "Cancel" : "Cancelar", - "Email" : "e-mail", - "Your email address" : "Tu dirección de e-mail", - "Password" : "Contraseña", - "Unable to change your password" : "No fue posible cambiar tu contraseña", - "Current password" : "Contraseña actual", - "New password" : "Nueva contraseña:", - "Change password" : "Cambiar contraseña", - "Language" : "Idioma", - "Help translate" : "Ayudanos a traducir", - "Get the apps to sync your files" : "Obtené Apps para sincronizar tus archivos", - "Desktop client" : "Cliente de escritorio", - "Android app" : "App para Android", - "iOS app" : "App para iOS", - "Show First Run Wizard again" : "Mostrar de nuevo el asistente de primera ejecución", - "Username" : "Nombre de usuario", - "Create" : "Crear", - "Admin Recovery Password" : "Recuperación de contraseña de administrador", - "Enter the recovery password in order to recover the users files during password change" : "Ingresá la contraseña de recuperación para recuperar los archivos de usuario al cambiar contraseña", - "Group" : "Grupo", - "Default Quota" : "Cuota predeterminada", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor ingrese la cuota de almacenamiento (ej.: \"512 MB\" o \"12 GB\")", - "Other" : "Otros", - "Full Name" : "Nombre completo", - "Quota" : "Cuota", - "change full name" : "Cambiar nombre completo", - "set new password" : "Configurar nueva contraseña", - "Default" : "Predeterminado" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/es_AR.json b/settings/l10n/es_AR.json deleted file mode 100644 index 4019cb74071..00000000000 --- a/settings/l10n/es_AR.json +++ /dev/null @@ -1,124 +0,0 @@ -{ "translations": { - "APCu" : "APCu", - "Sharing" : "Compartiendo", - "External Storage" : "Almacenamiento externo", - "Cron" : "Cron", - "Log" : "Log", - "Updates" : "Actualizaciones", - "Language changed" : "Idioma cambiado", - "Invalid request" : "Pedido inválido", - "Authentication error" : "Error al autenticar", - "Admins can't remove themself from the admin group" : "Los administradores no se pueden quitar a si mismos del grupo administrador. ", - "Unable to add user to group %s" : "No fue posible agregar el usuario al grupo %s", - "Unable to remove user from group %s" : "No es posible borrar al usuario del grupo %s", - "Couldn't update app." : "No se pudo actualizar la App.", - "Wrong password" : "Clave incorrecta", - "No user supplied" : "No se ha indicado el usuario", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Por favor provea de una contraseña de recuperación administrativa, sino se perderá todos los datos del usuario", - "Wrong admin recovery password. Please check the password and try again." : "Contraseña de recuperación administrativa incorrecta. Por favor, chequee la clave e intente de nuevo", - "Unable to change password" : "Imposible cambiar la contraseña", - "Enabled" : "Habilitado", - "Saved" : "Guardado", - "test email settings" : "Configuración de correo de prueba.", - "Email sent" : "e-mail mandado", - "You need to set your user email before being able to send test emails." : "Necesita especificar el usuario de correo electrónico antes de poder enviar correos electrónicos de prueba.", - "Email saved" : "e-mail guardado", - "Your full name has been changed." : "Su nombre completo ha sido cambiado.", - "Unable to change full name" : "Imposible cambiar el nombre completo", - "Sending..." : "Enviando...", - "All" : "Todos", - "Please wait...." : "Por favor, esperá....", - "Error while disabling app" : "Se ha producido un error mientras se deshabilitaba la aplicación", - "Disable" : "Desactivar", - "Enable" : "Activar", - "Error while enabling app" : "Se ha producido un error mientras se habilitaba la aplicación", - "Updating...." : "Actualizando....", - "Error while updating app" : "Error al actualizar App", - "Updated" : "Actualizado", - "Delete" : "Borrar", - "Select a profile picture" : "Seleccionar una imágen de perfil", - "Very weak password" : "Contraseña muy débil.", - "Weak password" : "Contraseña débil.", - "So-so password" : "Contraseña de nivel medio. ", - "Good password" : "Buena contraseña. ", - "Strong password" : "Contraseña fuerte.", - "Groups" : "Grupos", - "undo" : "deshacer", - "never" : "nunca", - "add group" : "agregar grupo", - "A valid username must be provided" : "Debe ingresar un nombre de usuario válido", - "A valid password must be provided" : "Debe ingresar una contraseña válida", - "__language_name__" : "Castellano (Argentina)", - "Unlimited" : "Ilimitado", - "Everything (fatal issues, errors, warnings, info, debug)" : "Todo (notificaciones fatales, errores, advertencias, info, debug)", - "Info, warnings, errors and fatal issues" : "Info, advertencias, errores y notificaciones fatales", - "Warnings, errors and fatal issues" : "Advertencias, errores y notificaciones fatales", - "Errors and fatal issues" : "Errores y notificaciones fatales", - "Fatal issues only" : "Notificaciones fatales solamente", - "None" : "Ninguno", - "Login" : "Ingresar", - "Plain" : "Plano", - "NT LAN Manager" : "Administrador NT LAN", - "SSL" : "SSL", - "TLS" : "TLS", - "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", - "System locale can not be set to a one which supports UTF-8." : "La localización del sistema no puede cambiarse a una que soporta UTF-8", - "This means that there might be problems with certain characters in file names." : "Esto significa que puede haber problemas con ciertos caracteres en los nombres de archivos.", - "Allow apps to use the Share API" : "Permitir a las aplicaciones usar la Share API", - "Allow public uploads" : "Permitir subidas públicas", - "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", - "Execute one task with each page loaded" : "Ejecutá una tarea con cada pagina cargada.", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php está registrado en el servicio webcron para llamarlo cada 15 minutos usando http.", - "This is used for sending out notifications." : "Esto es usado para enviar notificaciones.", - "Send mode" : "Modo de envio", - "Encryption" : "Encriptación", - "From address" : "Dirección remitente", - "Authentication method" : "Método de autenticación", - "Authentication required" : "Autentificación requerida", - "Server address" : "Dirección del servidor", - "Port" : "Puerto", - "Credentials" : "Credenciales", - "SMTP Username" : "Nombre de usuario SMTP", - "SMTP Password" : "Contraseña SMTP", - "Test email settings" : "Configuracion de correo de prueba.", - "Send email" : "Enviar correo", - "More" : "Más", - "Less" : "Menos", - "Version" : "Versión", - "Documentation:" : "Documentación:", - "Cheers!" : "¡Saludos!", - "Forum" : "Foro", - "Profile picture" : "Imágen de perfil", - "Upload new" : "Subir nuevo", - "Remove image" : "Remover imagen", - "Cancel" : "Cancelar", - "Email" : "e-mail", - "Your email address" : "Tu dirección de e-mail", - "Password" : "Contraseña", - "Unable to change your password" : "No fue posible cambiar tu contraseña", - "Current password" : "Contraseña actual", - "New password" : "Nueva contraseña:", - "Change password" : "Cambiar contraseña", - "Language" : "Idioma", - "Help translate" : "Ayudanos a traducir", - "Get the apps to sync your files" : "Obtené Apps para sincronizar tus archivos", - "Desktop client" : "Cliente de escritorio", - "Android app" : "App para Android", - "iOS app" : "App para iOS", - "Show First Run Wizard again" : "Mostrar de nuevo el asistente de primera ejecución", - "Username" : "Nombre de usuario", - "Create" : "Crear", - "Admin Recovery Password" : "Recuperación de contraseña de administrador", - "Enter the recovery password in order to recover the users files during password change" : "Ingresá la contraseña de recuperación para recuperar los archivos de usuario al cambiar contraseña", - "Group" : "Grupo", - "Default Quota" : "Cuota predeterminada", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor ingrese la cuota de almacenamiento (ej.: \"512 MB\" o \"12 GB\")", - "Other" : "Otros", - "Full Name" : "Nombre completo", - "Quota" : "Cuota", - "change full name" : "Cambiar nombre completo", - "set new password" : "Configurar nueva contraseña", - "Default" : "Predeterminado" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/es_CL.js b/settings/l10n/es_CL.js deleted file mode 100644 index 690d3e3dcd3..00000000000 --- a/settings/l10n/es_CL.js +++ /dev/null @@ -1,8 +0,0 @@ -OC.L10N.register( - "settings", - { - "Cancel" : "Cancelar", - "Password" : "Clave", - "Username" : "Usuario" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/es_CL.json b/settings/l10n/es_CL.json deleted file mode 100644 index 79f9fcc3236..00000000000 --- a/settings/l10n/es_CL.json +++ /dev/null @@ -1,6 +0,0 @@ -{ "translations": { - "Cancel" : "Cancelar", - "Password" : "Clave", - "Username" : "Usuario" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/es_MX.js b/settings/l10n/es_MX.js deleted file mode 100644 index 59b0e51d334..00000000000 --- a/settings/l10n/es_MX.js +++ /dev/null @@ -1,95 +0,0 @@ -OC.L10N.register( - "settings", - { - "Sharing" : "Compartiendo", - "External Storage" : "Almacenamiento externo", - "Cron" : "Cron", - "Log" : "Registro", - "Language changed" : "Idioma cambiado", - "Invalid request" : "Petición no válida", - "Authentication error" : "Error de autenticación", - "Admins can't remove themself from the admin group" : "Los administradores no se pueden eliminar a ellos mismos del grupo de administrador", - "Unable to add user to group %s" : "No se pudo añadir el usuario al grupo %s", - "Unable to remove user from group %s" : "No se pudo eliminar al usuario del grupo %s", - "Couldn't update app." : "No se pudo actualizar la aplicación.", - "Wrong password" : "Contraseña incorrecta", - "No user supplied" : "No se especificó un usuario", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Por favor facilite una contraseña de recuperación de administrador, sino podrían perderse todos los datos de usuario", - "Wrong admin recovery password. Please check the password and try again." : "Contraseña de recuperación de administrador incorrecta. Por favor compruebe la contraseña e inténtelo de nuevo.", - "Unable to change password" : "No se ha podido cambiar la contraseña", - "Enabled" : "Habilitar", - "Saved" : "Guardado", - "Email sent" : "Correo electrónico enviado", - "Email saved" : "Correo electrónico guardado", - "Your full name has been changed." : "Se ha cambiado su nombre completo.", - "Unable to change full name" : "No se puede cambiar el nombre completo", - "All" : "Todos", - "Please wait...." : "Espere, por favor....", - "Error while disabling app" : "Error mientras se desactivaba la aplicación", - "Disable" : "Desactivar", - "Enable" : "Activar", - "Error while enabling app" : "Error mientras se activaba la aplicación", - "Updating...." : "Actualizando....", - "Error while updating app" : "Error mientras se actualizaba la aplicación", - "Updated" : "Actualizado", - "Delete" : "Eliminar", - "Select a profile picture" : "Seleccionar una imagen de perfil", - "Groups" : "Grupos", - "undo" : "deshacer", - "never" : "nunca", - "add group" : "añadir Grupo", - "A valid username must be provided" : "Se debe proporcionar un nombre de usuario válido", - "A valid password must be provided" : "Se debe proporcionar una contraseña válida", - "__language_name__" : "Español (México)", - "Unlimited" : "Ilimitado", - "Everything (fatal issues, errors, warnings, info, debug)" : "Todo (Información, Avisos, Errores, debug y problemas fatales)", - "Info, warnings, errors and fatal issues" : "Información, Avisos, Errores y problemas fatales", - "Warnings, errors and fatal issues" : "Advertencias, errores y problemas fatales", - "Errors and fatal issues" : "Errores y problemas fatales", - "Fatal issues only" : "Problemas fatales solamente", - "None" : "Ninguno", - "Login" : "Iniciar sesión", - "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.", - "System locale can not be set to a one which supports UTF-8." : "No se puede escoger una configuración regional que soporte UTF-8.", - "This means that there might be problems with certain characters in file names." : "Esto significa que puede haber problemas con ciertos caracteres en los nombres de los archivos.", - "Allow apps to use the Share API" : "Permitir a las aplicaciones utilizar la API de Compartición", - "Allow public uploads" : "Permitir subidas públicas", - "days" : "días", - "Allow resharing" : "Permitir re-compartición", - "Execute one task with each page loaded" : "Ejecutar una tarea con cada página cargada", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php se registra en un servicio webcron para llamar a cron.php cada 15 minutos a través de HTTP.", - "Encryption" : "Cifrado", - "Server address" : "Dirección del servidor", - "Port" : "Puerto", - "More" : "Más", - "Less" : "Menos", - "Version" : "Versión", - "Cheers!" : "¡Saludos!", - "Forum" : "Foro", - "Profile picture" : "Foto de perfil", - "Upload new" : "Subir otra", - "Remove image" : "Borrar imagen", - "Cancel" : "Cancelar", - "Email" : "Correo electrónico", - "Your email address" : "Su dirección de correo", - "Password" : "Contraseña", - "Unable to change your password" : "No se ha podido cambiar su contraseña", - "Current password" : "Contraseña actual", - "New password" : "Nueva contraseña", - "Change password" : "Cambiar contraseña", - "Language" : "Idioma", - "Help translate" : "Ayúdanos a traducir", - "Get the apps to sync your files" : "Obtener las aplicaciones para sincronizar sus archivos", - "Show First Run Wizard again" : "Mostrar nuevamente el Asistente de ejecución inicial", - "Username" : "Nombre de usuario", - "Create" : "Crear", - "Admin Recovery Password" : "Recuperación de la contraseña de administración", - "Enter the recovery password in order to recover the users files during password change" : "Introduzca la contraseña de recuperación a fin de recuperar los archivos de los usuarios durante el cambio de contraseña.", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor indique la cúota de almacenamiento (ej: \"512 MB\" o \"12 GB\")", - "Other" : "Otro", - "Full Name" : "Nombre completo", - "change full name" : "cambiar el nombre completo", - "set new password" : "establecer nueva contraseña", - "Default" : "Predeterminado" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/es_MX.json b/settings/l10n/es_MX.json deleted file mode 100644 index aba4eaea427..00000000000 --- a/settings/l10n/es_MX.json +++ /dev/null @@ -1,93 +0,0 @@ -{ "translations": { - "Sharing" : "Compartiendo", - "External Storage" : "Almacenamiento externo", - "Cron" : "Cron", - "Log" : "Registro", - "Language changed" : "Idioma cambiado", - "Invalid request" : "Petición no válida", - "Authentication error" : "Error de autenticación", - "Admins can't remove themself from the admin group" : "Los administradores no se pueden eliminar a ellos mismos del grupo de administrador", - "Unable to add user to group %s" : "No se pudo añadir el usuario al grupo %s", - "Unable to remove user from group %s" : "No se pudo eliminar al usuario del grupo %s", - "Couldn't update app." : "No se pudo actualizar la aplicación.", - "Wrong password" : "Contraseña incorrecta", - "No user supplied" : "No se especificó un usuario", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Por favor facilite una contraseña de recuperación de administrador, sino podrían perderse todos los datos de usuario", - "Wrong admin recovery password. Please check the password and try again." : "Contraseña de recuperación de administrador incorrecta. Por favor compruebe la contraseña e inténtelo de nuevo.", - "Unable to change password" : "No se ha podido cambiar la contraseña", - "Enabled" : "Habilitar", - "Saved" : "Guardado", - "Email sent" : "Correo electrónico enviado", - "Email saved" : "Correo electrónico guardado", - "Your full name has been changed." : "Se ha cambiado su nombre completo.", - "Unable to change full name" : "No se puede cambiar el nombre completo", - "All" : "Todos", - "Please wait...." : "Espere, por favor....", - "Error while disabling app" : "Error mientras se desactivaba la aplicación", - "Disable" : "Desactivar", - "Enable" : "Activar", - "Error while enabling app" : "Error mientras se activaba la aplicación", - "Updating...." : "Actualizando....", - "Error while updating app" : "Error mientras se actualizaba la aplicación", - "Updated" : "Actualizado", - "Delete" : "Eliminar", - "Select a profile picture" : "Seleccionar una imagen de perfil", - "Groups" : "Grupos", - "undo" : "deshacer", - "never" : "nunca", - "add group" : "añadir Grupo", - "A valid username must be provided" : "Se debe proporcionar un nombre de usuario válido", - "A valid password must be provided" : "Se debe proporcionar una contraseña válida", - "__language_name__" : "Español (México)", - "Unlimited" : "Ilimitado", - "Everything (fatal issues, errors, warnings, info, debug)" : "Todo (Información, Avisos, Errores, debug y problemas fatales)", - "Info, warnings, errors and fatal issues" : "Información, Avisos, Errores y problemas fatales", - "Warnings, errors and fatal issues" : "Advertencias, errores y problemas fatales", - "Errors and fatal issues" : "Errores y problemas fatales", - "Fatal issues only" : "Problemas fatales solamente", - "None" : "Ninguno", - "Login" : "Iniciar sesión", - "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.", - "System locale can not be set to a one which supports UTF-8." : "No se puede escoger una configuración regional que soporte UTF-8.", - "This means that there might be problems with certain characters in file names." : "Esto significa que puede haber problemas con ciertos caracteres en los nombres de los archivos.", - "Allow apps to use the Share API" : "Permitir a las aplicaciones utilizar la API de Compartición", - "Allow public uploads" : "Permitir subidas públicas", - "days" : "días", - "Allow resharing" : "Permitir re-compartición", - "Execute one task with each page loaded" : "Ejecutar una tarea con cada página cargada", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php se registra en un servicio webcron para llamar a cron.php cada 15 minutos a través de HTTP.", - "Encryption" : "Cifrado", - "Server address" : "Dirección del servidor", - "Port" : "Puerto", - "More" : "Más", - "Less" : "Menos", - "Version" : "Versión", - "Cheers!" : "¡Saludos!", - "Forum" : "Foro", - "Profile picture" : "Foto de perfil", - "Upload new" : "Subir otra", - "Remove image" : "Borrar imagen", - "Cancel" : "Cancelar", - "Email" : "Correo electrónico", - "Your email address" : "Su dirección de correo", - "Password" : "Contraseña", - "Unable to change your password" : "No se ha podido cambiar su contraseña", - "Current password" : "Contraseña actual", - "New password" : "Nueva contraseña", - "Change password" : "Cambiar contraseña", - "Language" : "Idioma", - "Help translate" : "Ayúdanos a traducir", - "Get the apps to sync your files" : "Obtener las aplicaciones para sincronizar sus archivos", - "Show First Run Wizard again" : "Mostrar nuevamente el Asistente de ejecución inicial", - "Username" : "Nombre de usuario", - "Create" : "Crear", - "Admin Recovery Password" : "Recuperación de la contraseña de administración", - "Enter the recovery password in order to recover the users files during password change" : "Introduzca la contraseña de recuperación a fin de recuperar los archivos de los usuarios durante el cambio de contraseña.", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor indique la cúota de almacenamiento (ej: \"512 MB\" o \"12 GB\")", - "Other" : "Otro", - "Full Name" : "Nombre completo", - "change full name" : "cambiar el nombre completo", - "set new password" : "establecer nueva contraseña", - "Default" : "Predeterminado" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/et_EE.js b/settings/l10n/et_EE.js deleted file mode 100644 index a04cdb2c887..00000000000 --- a/settings/l10n/et_EE.js +++ /dev/null @@ -1,234 +0,0 @@ -OC.L10N.register( - "settings", - { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Turva- ja paigalduse hoiatused", - "Sharing" : "Jagamine", - "Server-side encryption" : "Serveripoolne krüpteerimine", - "External Storage" : "Väline salvestuskoht", - "Cron" : "Cron", - "Email server" : "E-kirjade server", - "Log" : "Logi", - "Tips & tricks" : "Nõuanded ja trikid", - "Updates" : "Uuendused", - "Couldn't remove app." : "Ei suutnud rakendit eemaldada.", - "Language changed" : "Keel on muudetud", - "Invalid request" : "Vigane päring", - "Authentication error" : "Autentimise viga", - "Admins can't remove themself from the admin group" : "Administraatorid ei saa ise end admin grupist eemaldada", - "Unable to add user to group %s" : "Kasutajat ei saa lisada gruppi %s", - "Unable to remove user from group %s" : "Kasutajat ei saa eemaldada grupist %s", - "Couldn't update app." : "Rakenduse uuendamine ebaõnnestus.", - "Wrong password" : "Vale parool", - "No user supplied" : "Kasutajat ei sisestatud", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Palun sisesta administraatori taasteparool, muidu kaotad kõik kasutajate andmed", - "Wrong admin recovery password. Please check the password and try again." : "Vale administraatori taasteparool. Palun kontrolli parooli ning proovi uuesti.", - "Unable to change password" : "Ei suuda parooli muuta", - "Enabled" : "Sisse lülitatud", - "Not enabled" : "Pole sisse lülitatud", - "Migration Completed" : "Kolimine on lõpetatud", - "Group already exists." : "Grupp on juba olemas.", - "Unable to add group." : "Gruppi lisamine ebaõnnestus.", - "Unable to delete group." : "Grupi kustutamineebaõnnestus.", - "Saved" : "Salvestatud", - "test email settings" : "testi e-posti seadeid", - "Email sent" : "E-kiri on saadetud", - "You need to set your user email before being able to send test emails." : "Pead seadistama oma e-postienne kui on võimalik saata test-kirju.", - "Invalid mail address" : "Vigane e-posti aadress", - "A user with that name already exists." : "Selle nimega kasutaja on juba olemas.", - "Unable to create user." : "Kasutaja loomine ebaõnnestus.", - "Your %s account was created" : "Sinu %s konto on loodud", - "Unable to delete user." : "Kasutaja kustutamine ebaõnnestus.", - "Forbidden" : "Keelatud", - "Invalid user" : "Vigane kasutaja", - "Unable to change mail address" : "E-posti aadressi muutmine ebaõnnestus", - "Email saved" : "Kiri on salvestatud", - "Your full name has been changed." : "Sinu täispikk nimi on muudetud.", - "Unable to change full name" : "Täispika nime muutmine ebaõnnestus", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Oled sa kindel, et soovid lisada domeeni \"{domain}\" usaldusväärseks domeeniks?", - "Add trusted domain" : "Lis ausaldusväärne domeen", - "Migration in progress. Please wait until the migration is finished" : "Kolimine on käimas. Palun oota, kuni see on lõpetatud", - "Migration started …" : "Kolimist on alustatud ...", - "Sending..." : "Saadan...", - "Official" : "Ametlik", - "Approved" : "Heaks kiidetud", - "Experimental" : "Katsetusjärgus", - "All" : "Kõik", - "No apps found for your version" : "Sinu versiooni jaoks ei leitud ühtegi rakendust", - "Update to %s" : "Uuenda versioonile %s", - "Please wait...." : "Palun oota...", - "Error while disabling app" : "Viga rakenduse keelamisel", - "Disable" : "Lülita välja", - "Enable" : "Lülita sisse", - "Error while enabling app" : "Viga rakenduse lubamisel", - "Updating...." : "Uuendamine...", - "Error while updating app" : "Viga rakenduse uuendamisel", - "Updated" : "Uuendatud", - "Uninstalling ...." : "Eemaldan...", - "Error while uninstalling app" : "Viga rakendi eemaldamisel", - "Uninstall" : "Eemalda", - "App update" : "Rakenduse uuendus", - "Valid until {date}" : "Kehtib kuni {date}", - "Delete" : "Kustuta", - "Select a profile picture" : "Vali profiili pilt", - "Very weak password" : "Väga nõrk parool", - "Weak password" : "Nõrk parool", - "So-so password" : "Enam-vähem sobiv parool", - "Good password" : "Hea parool", - "Strong password" : "Väga hea parool", - "Groups" : "Grupid", - "Unable to delete {objName}" : "Ei suuda kustutada {objName}", - "A valid group name must be provided" : "Sisesta nõuetele vastav grupi nimi", - "deleted {groupName}" : "kustutatud {groupName}", - "undo" : "tagasi", - "no group" : "grupp puudub", - "never" : "mitte kunagi", - "deleted {userName}" : "kustutatud {userName}", - "add group" : "lisa grupp", - "A valid username must be provided" : "Sisesta nõuetele vastav kasutajatunnus", - "A valid password must be provided" : "Sisesta nõuetele vastav parool", - "A valid email must be provided" : "Sisesta kehtiv e-posti aadress", - "__language_name__" : "Eesti", - "Unlimited" : "Piiramatult", - "Personal info" : "Isiklik info", - "Sync clients" : "Klientide sünkroniseerimine", - "Everything (fatal issues, errors, warnings, info, debug)" : "Kõik (tõsised probleemid, veateated, hoiatused, info, veatuvastus)", - "Info, warnings, errors and fatal issues" : "Info, hoiatused, veateted ja tõsised probleemid", - "Warnings, errors and fatal issues" : "Hoiatused, veateated ja tõsised probleemid", - "Errors and fatal issues" : "Veateated ja tõsised probleemid", - "Fatal issues only" : "Ainult tõsised probleemid", - "None" : "Pole", - "Login" : "Logi sisse", - "Plain" : "Tavatekst", - "NT LAN Manager" : "NT LAN Manager", - "SSL" : "SSL", - "TLS" : "TLS", - "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.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP moodul 'fileinfo' puudub. Soovitame tungivalt see lisada saavutamaks parimaid tulemusi failitüüpide tuvastamisel.", - "System locale can not be set to a one which supports UTF-8." : "Süsteemi lokaliseeringuks ei saa panna sellist, mis toetab UTF-8-t.", - "This means that there might be problems with certain characters in file names." : "See tähendab, et võib esineda probleeme failide nimedes mõnede sümbolitega.", - "All checks passed." : "Kõik kontrollid on läbitud.", - "Open documentation" : "Ava dokumentatsioon", - "Allow apps to use the Share API" : "Luba rakendustel kasutada Share API-t", - "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", - "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.", - "Last cron job execution: %s." : "Cron käivitati viimati %s.", - "Last cron job execution: %s. Something seems wrong." : "Cron käivitati viimati %s. Midagi tunduv valesti olevat.", - "Cron was not executed yet!" : "Cron pole kordagi käivitatud!", - "Execute one task with each page loaded" : "Käivita toiming igal lehe laadimisel", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php on registreeritud webcron teenuses, et käivitada fail cron.php iga 15 minuti tagant üle http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Kasuta süsteemi cron teenust, et käivitada fail cron.php iga 15 minuti järel.", - "Enable server-side encryption" : "Luba serveripoolne krüpteerimine", - "Enable encryption" : "Luba krüpteerimine", - "Select default encryption module:" : "Määra vaikimisi krüpteerimise moodul:", - "Start migration" : "Alusta kolimist", - "This is used for sending out notifications." : "Seda kasutatakse teadete välja saatmiseks.", - "Send mode" : "Saatmise viis", - "Encryption" : "Krüpteerimine", - "From address" : "Saatja aadress", - "mail" : "e-mail", - "Authentication method" : "Autentimise meetod", - "Authentication required" : "Autentimine on vajalik", - "Server address" : "Serveri aadress", - "Port" : "Port", - "Credentials" : "Kasutajatunnused", - "SMTP Username" : "SMTP kasutajatunnus", - "SMTP Password" : "SMTP parool", - "Store credentials" : "Säilita kasutajaandmed", - "Test email settings" : "Testi e-posti seadeid", - "Send email" : "Saada kiri", - "Download logfile" : "Laadi logifail alla", - "More" : "Rohkem", - "Less" : "Vähem", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Logifail on suurem kui 100 MB. Allalaadimine võib veidi aega võtta!", - "What to log" : "Mida logisse sisse kanda", - "How to do backups" : "Kuidas teha varukoopiaid", - "Advanced monitoring" : "Lisavalikutega jälgimine", - "Performance tuning" : "Kiiruse seadistamine", - "Improving the config.php" : "config.php faili täiendamine", - "Theming" : "Teemad", - "Version" : "Versioon", - "Developer documentation" : "Arendaja dokumentatsioon", - "Experimental applications ahead" : "Ees on katsetusjärgus rakendused", - "Documentation:" : "Dokumentatsioon:", - "User documentation" : "Kasutaja dokumentatsioon", - "Admin documentation" : "Administraatori dokumentatsioon", - "Show description …" : "Näita kirjeldist ...", - "Hide description …" : "Peida kirjeldus ...", - "Enable only for specific groups" : "Luba ainult kindlad grupid", - "Uninstall App" : "Eemada rakend", - "Enable experimental apps" : "Luba katsetusjärgus rakenduste kasutamine", - "SSL Root Certificates" : "SLL Juur sertifikaadid", - "Common Name" : "Üldnimetus", - "Valid until" : "Kehtib kuni", - "Issued By" : "isas", - "Valid until %s" : "Kehtib kuni %s", - "Import root certificate" : "Impordi root sertifikaat", - "Cheers!" : "Terekest!", - "Administrator documentation" : "Administraatori dokumentatsioon", - "Online documentation" : "Võrgus olev dokumentatsioon", - "Forum" : "Foorum", - "Issue tracker" : "Probleemide jälgija", - "Commercial support" : "Tasuline kasutajatugi", - "Profile picture" : "Profiili pilt", - "Upload new" : "Laadi uus üles", - "Remove image" : "Eemalda pilt", - "Cancel" : "Loobu", - "Full name" : "Täielik nimi", - "No display name set" : "Näidatavat nime pole veel määratud", - "Email" : "E-post", - "Your email address" : "Sinu e-posti aadress", - "No email address set" : "E-posti aadressi pole veel määratud", - "You are member of the following groups:" : "Sa oled nende gruppide liige:", - "Password" : "Parool", - "Unable to change your password" : "Sa ei saa oma parooli muuta", - "Current password" : "Praegune parool", - "New password" : "Uus parool", - "Change password" : "Muuda parooli", - "Language" : "Keel", - "Help translate" : "Aita tõlkida", - "Get the apps to sync your files" : "Hangi rakendusi failide sünkroniseerimiseks", - "Desktop client" : "Töölaua klient", - "Android app" : "Androidi rakendus", - "iOS app" : "iOS-i rakendus", - "Show First Run Wizard again" : "Näita veelkord Esmase Käivituse Juhendajat", - "Show storage location" : "Näita salvestusruumi asukohta", - "Show last log in" : "Viimane sisselogimine", - "Send email to new user" : "Saada uuele kasutajale e-kiri", - "Show email address" : "Näita e-posti aadressi", - "Username" : "Kasutajanimi", - "E-Mail" : "E-post", - "Create" : "Lisa", - "Admin Recovery Password" : "Admini parooli taastamine", - "Enter the recovery password in order to recover the users files during password change" : "Sisesta taasteparool kasutaja failide taastamiseks paroolivahetuse käigus", - "Add Group" : "Lisa grupp", - "Group" : "Grupp", - "Everyone" : "Igaüks", - "Admins" : "Haldurid", - "Default Quota" : "Vaikimisi kvoot", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Palun sisesta mahupiir (nt: \"512 MB\" või \"12 GB\")", - "Other" : "Muu", - "Full Name" : "Täispikk nimi", - "Group Admin for" : "Grupi admin", - "Quota" : "Mahupiir", - "Storage Location" : "Mahu asukoht", - "User Backend" : "Kasutaja taustarakendus", - "Last Login" : "Viimane sisselogimine", - "change full name" : "Muuda täispikka nime", - "set new password" : "määra uus parool", - "change email address" : "muuda e-posti aadressi", - "Default" : "Vaikeväärtus" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/et_EE.json b/settings/l10n/et_EE.json deleted file mode 100644 index 5a9e09da671..00000000000 --- a/settings/l10n/et_EE.json +++ /dev/null @@ -1,232 +0,0 @@ -{ "translations": { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Turva- ja paigalduse hoiatused", - "Sharing" : "Jagamine", - "Server-side encryption" : "Serveripoolne krüpteerimine", - "External Storage" : "Väline salvestuskoht", - "Cron" : "Cron", - "Email server" : "E-kirjade server", - "Log" : "Logi", - "Tips & tricks" : "Nõuanded ja trikid", - "Updates" : "Uuendused", - "Couldn't remove app." : "Ei suutnud rakendit eemaldada.", - "Language changed" : "Keel on muudetud", - "Invalid request" : "Vigane päring", - "Authentication error" : "Autentimise viga", - "Admins can't remove themself from the admin group" : "Administraatorid ei saa ise end admin grupist eemaldada", - "Unable to add user to group %s" : "Kasutajat ei saa lisada gruppi %s", - "Unable to remove user from group %s" : "Kasutajat ei saa eemaldada grupist %s", - "Couldn't update app." : "Rakenduse uuendamine ebaõnnestus.", - "Wrong password" : "Vale parool", - "No user supplied" : "Kasutajat ei sisestatud", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Palun sisesta administraatori taasteparool, muidu kaotad kõik kasutajate andmed", - "Wrong admin recovery password. Please check the password and try again." : "Vale administraatori taasteparool. Palun kontrolli parooli ning proovi uuesti.", - "Unable to change password" : "Ei suuda parooli muuta", - "Enabled" : "Sisse lülitatud", - "Not enabled" : "Pole sisse lülitatud", - "Migration Completed" : "Kolimine on lõpetatud", - "Group already exists." : "Grupp on juba olemas.", - "Unable to add group." : "Gruppi lisamine ebaõnnestus.", - "Unable to delete group." : "Grupi kustutamineebaõnnestus.", - "Saved" : "Salvestatud", - "test email settings" : "testi e-posti seadeid", - "Email sent" : "E-kiri on saadetud", - "You need to set your user email before being able to send test emails." : "Pead seadistama oma e-postienne kui on võimalik saata test-kirju.", - "Invalid mail address" : "Vigane e-posti aadress", - "A user with that name already exists." : "Selle nimega kasutaja on juba olemas.", - "Unable to create user." : "Kasutaja loomine ebaõnnestus.", - "Your %s account was created" : "Sinu %s konto on loodud", - "Unable to delete user." : "Kasutaja kustutamine ebaõnnestus.", - "Forbidden" : "Keelatud", - "Invalid user" : "Vigane kasutaja", - "Unable to change mail address" : "E-posti aadressi muutmine ebaõnnestus", - "Email saved" : "Kiri on salvestatud", - "Your full name has been changed." : "Sinu täispikk nimi on muudetud.", - "Unable to change full name" : "Täispika nime muutmine ebaõnnestus", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Oled sa kindel, et soovid lisada domeeni \"{domain}\" usaldusväärseks domeeniks?", - "Add trusted domain" : "Lis ausaldusväärne domeen", - "Migration in progress. Please wait until the migration is finished" : "Kolimine on käimas. Palun oota, kuni see on lõpetatud", - "Migration started …" : "Kolimist on alustatud ...", - "Sending..." : "Saadan...", - "Official" : "Ametlik", - "Approved" : "Heaks kiidetud", - "Experimental" : "Katsetusjärgus", - "All" : "Kõik", - "No apps found for your version" : "Sinu versiooni jaoks ei leitud ühtegi rakendust", - "Update to %s" : "Uuenda versioonile %s", - "Please wait...." : "Palun oota...", - "Error while disabling app" : "Viga rakenduse keelamisel", - "Disable" : "Lülita välja", - "Enable" : "Lülita sisse", - "Error while enabling app" : "Viga rakenduse lubamisel", - "Updating...." : "Uuendamine...", - "Error while updating app" : "Viga rakenduse uuendamisel", - "Updated" : "Uuendatud", - "Uninstalling ...." : "Eemaldan...", - "Error while uninstalling app" : "Viga rakendi eemaldamisel", - "Uninstall" : "Eemalda", - "App update" : "Rakenduse uuendus", - "Valid until {date}" : "Kehtib kuni {date}", - "Delete" : "Kustuta", - "Select a profile picture" : "Vali profiili pilt", - "Very weak password" : "Väga nõrk parool", - "Weak password" : "Nõrk parool", - "So-so password" : "Enam-vähem sobiv parool", - "Good password" : "Hea parool", - "Strong password" : "Väga hea parool", - "Groups" : "Grupid", - "Unable to delete {objName}" : "Ei suuda kustutada {objName}", - "A valid group name must be provided" : "Sisesta nõuetele vastav grupi nimi", - "deleted {groupName}" : "kustutatud {groupName}", - "undo" : "tagasi", - "no group" : "grupp puudub", - "never" : "mitte kunagi", - "deleted {userName}" : "kustutatud {userName}", - "add group" : "lisa grupp", - "A valid username must be provided" : "Sisesta nõuetele vastav kasutajatunnus", - "A valid password must be provided" : "Sisesta nõuetele vastav parool", - "A valid email must be provided" : "Sisesta kehtiv e-posti aadress", - "__language_name__" : "Eesti", - "Unlimited" : "Piiramatult", - "Personal info" : "Isiklik info", - "Sync clients" : "Klientide sünkroniseerimine", - "Everything (fatal issues, errors, warnings, info, debug)" : "Kõik (tõsised probleemid, veateated, hoiatused, info, veatuvastus)", - "Info, warnings, errors and fatal issues" : "Info, hoiatused, veateted ja tõsised probleemid", - "Warnings, errors and fatal issues" : "Hoiatused, veateated ja tõsised probleemid", - "Errors and fatal issues" : "Veateated ja tõsised probleemid", - "Fatal issues only" : "Ainult tõsised probleemid", - "None" : "Pole", - "Login" : "Logi sisse", - "Plain" : "Tavatekst", - "NT LAN Manager" : "NT LAN Manager", - "SSL" : "SSL", - "TLS" : "TLS", - "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.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP moodul 'fileinfo' puudub. Soovitame tungivalt see lisada saavutamaks parimaid tulemusi failitüüpide tuvastamisel.", - "System locale can not be set to a one which supports UTF-8." : "Süsteemi lokaliseeringuks ei saa panna sellist, mis toetab UTF-8-t.", - "This means that there might be problems with certain characters in file names." : "See tähendab, et võib esineda probleeme failide nimedes mõnede sümbolitega.", - "All checks passed." : "Kõik kontrollid on läbitud.", - "Open documentation" : "Ava dokumentatsioon", - "Allow apps to use the Share API" : "Luba rakendustel kasutada Share API-t", - "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", - "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.", - "Last cron job execution: %s." : "Cron käivitati viimati %s.", - "Last cron job execution: %s. Something seems wrong." : "Cron käivitati viimati %s. Midagi tunduv valesti olevat.", - "Cron was not executed yet!" : "Cron pole kordagi käivitatud!", - "Execute one task with each page loaded" : "Käivita toiming igal lehe laadimisel", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php on registreeritud webcron teenuses, et käivitada fail cron.php iga 15 minuti tagant üle http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Kasuta süsteemi cron teenust, et käivitada fail cron.php iga 15 minuti järel.", - "Enable server-side encryption" : "Luba serveripoolne krüpteerimine", - "Enable encryption" : "Luba krüpteerimine", - "Select default encryption module:" : "Määra vaikimisi krüpteerimise moodul:", - "Start migration" : "Alusta kolimist", - "This is used for sending out notifications." : "Seda kasutatakse teadete välja saatmiseks.", - "Send mode" : "Saatmise viis", - "Encryption" : "Krüpteerimine", - "From address" : "Saatja aadress", - "mail" : "e-mail", - "Authentication method" : "Autentimise meetod", - "Authentication required" : "Autentimine on vajalik", - "Server address" : "Serveri aadress", - "Port" : "Port", - "Credentials" : "Kasutajatunnused", - "SMTP Username" : "SMTP kasutajatunnus", - "SMTP Password" : "SMTP parool", - "Store credentials" : "Säilita kasutajaandmed", - "Test email settings" : "Testi e-posti seadeid", - "Send email" : "Saada kiri", - "Download logfile" : "Laadi logifail alla", - "More" : "Rohkem", - "Less" : "Vähem", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Logifail on suurem kui 100 MB. Allalaadimine võib veidi aega võtta!", - "What to log" : "Mida logisse sisse kanda", - "How to do backups" : "Kuidas teha varukoopiaid", - "Advanced monitoring" : "Lisavalikutega jälgimine", - "Performance tuning" : "Kiiruse seadistamine", - "Improving the config.php" : "config.php faili täiendamine", - "Theming" : "Teemad", - "Version" : "Versioon", - "Developer documentation" : "Arendaja dokumentatsioon", - "Experimental applications ahead" : "Ees on katsetusjärgus rakendused", - "Documentation:" : "Dokumentatsioon:", - "User documentation" : "Kasutaja dokumentatsioon", - "Admin documentation" : "Administraatori dokumentatsioon", - "Show description …" : "Näita kirjeldist ...", - "Hide description …" : "Peida kirjeldus ...", - "Enable only for specific groups" : "Luba ainult kindlad grupid", - "Uninstall App" : "Eemada rakend", - "Enable experimental apps" : "Luba katsetusjärgus rakenduste kasutamine", - "SSL Root Certificates" : "SLL Juur sertifikaadid", - "Common Name" : "Üldnimetus", - "Valid until" : "Kehtib kuni", - "Issued By" : "isas", - "Valid until %s" : "Kehtib kuni %s", - "Import root certificate" : "Impordi root sertifikaat", - "Cheers!" : "Terekest!", - "Administrator documentation" : "Administraatori dokumentatsioon", - "Online documentation" : "Võrgus olev dokumentatsioon", - "Forum" : "Foorum", - "Issue tracker" : "Probleemide jälgija", - "Commercial support" : "Tasuline kasutajatugi", - "Profile picture" : "Profiili pilt", - "Upload new" : "Laadi uus üles", - "Remove image" : "Eemalda pilt", - "Cancel" : "Loobu", - "Full name" : "Täielik nimi", - "No display name set" : "Näidatavat nime pole veel määratud", - "Email" : "E-post", - "Your email address" : "Sinu e-posti aadress", - "No email address set" : "E-posti aadressi pole veel määratud", - "You are member of the following groups:" : "Sa oled nende gruppide liige:", - "Password" : "Parool", - "Unable to change your password" : "Sa ei saa oma parooli muuta", - "Current password" : "Praegune parool", - "New password" : "Uus parool", - "Change password" : "Muuda parooli", - "Language" : "Keel", - "Help translate" : "Aita tõlkida", - "Get the apps to sync your files" : "Hangi rakendusi failide sünkroniseerimiseks", - "Desktop client" : "Töölaua klient", - "Android app" : "Androidi rakendus", - "iOS app" : "iOS-i rakendus", - "Show First Run Wizard again" : "Näita veelkord Esmase Käivituse Juhendajat", - "Show storage location" : "Näita salvestusruumi asukohta", - "Show last log in" : "Viimane sisselogimine", - "Send email to new user" : "Saada uuele kasutajale e-kiri", - "Show email address" : "Näita e-posti aadressi", - "Username" : "Kasutajanimi", - "E-Mail" : "E-post", - "Create" : "Lisa", - "Admin Recovery Password" : "Admini parooli taastamine", - "Enter the recovery password in order to recover the users files during password change" : "Sisesta taasteparool kasutaja failide taastamiseks paroolivahetuse käigus", - "Add Group" : "Lisa grupp", - "Group" : "Grupp", - "Everyone" : "Igaüks", - "Admins" : "Haldurid", - "Default Quota" : "Vaikimisi kvoot", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Palun sisesta mahupiir (nt: \"512 MB\" või \"12 GB\")", - "Other" : "Muu", - "Full Name" : "Täispikk nimi", - "Group Admin for" : "Grupi admin", - "Quota" : "Mahupiir", - "Storage Location" : "Mahu asukoht", - "User Backend" : "Kasutaja taustarakendus", - "Last Login" : "Viimane sisselogimine", - "change full name" : "Muuda täispikka nime", - "set new password" : "määra uus parool", - "change email address" : "muuda e-posti aadressi", - "Default" : "Vaikeväärtus" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/eu.js b/settings/l10n/eu.js deleted file mode 100644 index f14f76af4d9..00000000000 --- a/settings/l10n/eu.js +++ /dev/null @@ -1,199 +0,0 @@ -OC.L10N.register( - "settings", - { - "Sharing" : "Partekatzea", - "External Storage" : "Kanpoko biltegiratzea", - "Cron" : "Cron", - "Log" : "Log", - "Updates" : "Eguneraketak", - "Couldn't remove app." : "Ezin izan da aplikazioa ezabatu..", - "Language changed" : "Hizkuntza aldatuta", - "Invalid request" : "Baliogabeko eskaera", - "Authentication error" : "Autentifikazio errorea", - "Admins can't remove themself from the admin group" : "Kudeatzaileak ezin du bere burua kendu kudeatzaile taldetik", - "Unable to add user to group %s" : "Ezin izan da erabiltzailea %s taldera gehitu", - "Unable to remove user from group %s" : "Ezin izan da erabiltzailea %s taldetik ezabatu", - "Couldn't update app." : "Ezin izan da aplikazioa eguneratu.", - "Wrong password" : "Pasahitz okerra", - "No user supplied" : "Ez da erabiltzailerik zehaztu", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Mesedez eman berreskuratzeko administrazio pasahitza, bestela erabiltzaile datu guztiak galduko dira", - "Wrong admin recovery password. Please check the password and try again." : "Administratzailearen berreskuratze pasahitza ez egokia. Mesedez egiaztatu pasahitza eta saiatu berriz.", - "Unable to change password" : "Ezin izan da pasahitza aldatu", - "Enabled" : "Gaitua", - "Not enabled" : "Gaitu gabe", - "Federated Cloud Sharing" : "Federatutako Hodei Partekatzea", - "Group already exists." : "Taldea dagoeneko existitzen da", - "Unable to add group." : "Ezin izan da taldea gehitu.", - "Unable to delete group." : "Ezin izan da taldea ezabatu.", - "log-level out of allowed range" : "erregistro-maila baimendutako tartetik at", - "Saved" : "Gordeta", - "test email settings" : "probatu eposta ezarpenak", - "Email sent" : "Eposta bidalia", - "You need to set your user email before being able to send test emails." : "Epostaren erabiltzailea zehaztu behar duzu probako eposta bidali aurretik.", - "Invalid mail address" : "Posta helbide baliogabea", - "Unable to create user." : "Ezin izan da erabiltzailea sortu.", - "Your %s account was created" : "Zure %s kontua sortu da", - "Unable to delete user." : "Ezin izan da erabiltzailea ezabatu.", - "Forbidden" : "Debekatuta", - "Invalid user" : "Baliogabeko erabiiltzailea", - "Unable to change mail address" : "Ezin izan da posta helbidea aldatu", - "Email saved" : "Eposta gorde da", - "Your full name has been changed." : "Zure izena aldatu egin da.", - "Unable to change full name" : "Ezin izan da izena aldatu", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Ziur zaude gehitu nahi duzula \"{domain}\" domeinu fidagarri gisa?", - "Add trusted domain" : "Gehitu domeinu fidagarria", - "Sending..." : "Bidaltzen...", - "All" : "Denak", - "Update to %s" : "Eguneratu %sra", - "Please wait...." : "Itxoin mesedez...", - "Error while disabling app" : "Erroea izan da aplikazioa desgaitzerakoan", - "Disable" : "Ez-gaitu", - "Enable" : "Gaitu", - "Error while enabling app" : "Erroea izan da aplikazioa gaitzerakoan", - "Updating...." : "Eguneratzen...", - "Error while updating app" : "Errorea aplikazioa eguneratzen zen bitartean", - "Updated" : "Eguneratuta", - "Uninstalling ...." : "Desinstalatzen ...", - "Error while uninstalling app" : "Erroea izan da aplikazioa desinstalatzerakoan", - "Uninstall" : "Desinstalatu", - "Valid until {date}" : "{date} arte baliogarria", - "Delete" : "Ezabatu", - "Select a profile picture" : "Profilaren irudia aukeratu", - "Very weak password" : "Pasahitz oso ahula", - "Weak password" : "Pasahitz ahula", - "So-so password" : "Halamoduzko pasahitza", - "Good password" : "Pasahitz ona", - "Strong password" : "Pasahitz sendoa", - "Groups" : "Taldeak", - "Unable to delete {objName}" : "Ezin izan da {objName} ezabatu", - "A valid group name must be provided" : "Baliozko talde izena eman behar da", - "deleted {groupName}" : "{groupName} ezbatuta", - "undo" : "desegin", - "no group" : "talderik ez", - "never" : "inoiz", - "deleted {userName}" : "{userName} ezabatuta", - "add group" : "gehitu taldea", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Pasahitza aldatzeak datuen galera eragingo du, erabiltzaile honetarako datuen berreskuratzea eskuragarri ez dagoelako", - "A valid username must be provided" : "Baliozko erabiltzaile izena eman behar da", - "A valid password must be provided" : "Baliozko pasahitza eman behar da", - "A valid email must be provided" : "Baliozko posta elektronikoa eman behar da", - "__language_name__" : "Euskara", - "Unlimited" : "Mugarik gabe", - "Everything (fatal issues, errors, warnings, info, debug)" : "Dena (arazo larriak, erroreak, abisuak, informazioa, arazketa)", - "Info, warnings, errors and fatal issues" : "Informazioa, abisuak, erroreak eta arazo larriak.", - "Warnings, errors and fatal issues" : "Abisuak, erroreak eta arazo larriak", - "Errors and fatal issues" : "Erroreak eta arazo larriak", - "Fatal issues only" : "Bakarrik arazo larriak", - "None" : "Ezer", - "Login" : "Saio hasiera", - "Plain" : "Arrunta", - "NT LAN Manager" : "NT LAN Manager", - "SSL" : "SSL", - "TLS" : "TLS", - "The Read-Only config has been enabled. This prevents setting some configurations via the web-interface. Furthermore, the file needs to be made writable manually for every update." : "Bakarrik irakurtzeko konfigurazioa gaitu da. Honek web-interfazearen bidez konfigurazio batzuk aldatzea ekiditzen du. Are gehiago, fitxategia eskuz ezarri behar da idazteko moduan eguneraketa bakoitzerako.", - "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.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Zure zerbitzariak Microsoft Windows erabiltzen du. Guk biziki gomendatzen dugu Linux erabiltzaile esperientza optimo bat lortzeko.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP 'fileinfo' modulua falta da. Modulu hau gaitzea aholkatzen dizugu mime-type ezberdinak hobe detektatzeko.", - "System locale can not be set to a one which supports UTF-8." : "Eskualdeko ezarpena ezin da UTF-8 onartzen duen batera ezarri.", - "This means that there might be problems with certain characters in file names." : "Honek esan nahi du fitxategien izenetako karaktere batzuekin arazoak egon daitezkeela.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Biziki gomendatzen dizugu beharrezkoak diren paketea zure sisteman instalatzea honi euskarria eman ahal izateko: %s.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Zure instalazioa ez badago domeinuaren sustraian egina eta erabiltzen badu sistemaren cron-a, arazoak izan daitezke URL sorreran. Arazo horiek saihesteko ezarri \"overwrite.cli.url\" opzioa zure config.php fitxategian zure instalazioaren webroot bidera (Proposatua: \"%s\")", - "Allow apps to use the Share API" : "Baimendu aplikazioak partekatzeko APIa erabiltzeko", - "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 to other users" : "Baimendu erabiltzaileak beste erabiltzaileei epostako jakinarazpenak bidaltzen partekatutako fitxategientzat", - "Exclude groups from sharing" : "Baztertu taldeak partekatzean", - "These groups will still be able to receive shares, but not to initiate them." : "Talde hauek oraindik jaso ahal izango dute partekatzeak, baina ezingo dute partekatu", - "Cron was not executed yet!" : "Cron-a oraindik ez da exekutatu!", - "Execute one task with each page loaded" : "Exekutatu zeregin bat orri karga bakoitzean", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php webcron zerbitzu batean erregistratua dago cron.php 15 minuturo http bidez deitzeko.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Erabili sistemaren cron zerbitzua deitzeko cron.php fitxategia 15 minutuan behin.", - "This is used for sending out notifications." : "Hau jakinarazpenak bidaltzeko erabiltzen da.", - "Send mode" : "Bidaltzeko modua", - "Encryption" : "Enkriptazioa", - "From address" : "Helbidetik", - "mail" : "posta", - "Authentication method" : "Autentifikazio metodoa", - "Authentication required" : "Autentikazioa beharrezkoa", - "Server address" : "Zerbitzariaren helbidea", - "Port" : "Portua", - "Credentials" : "Kredentzialak", - "SMTP Username" : "SMTP erabiltzaile-izena", - "SMTP Password" : "SMTP pasahitza", - "Store credentials" : "Gorde kredentzialak", - "Test email settings" : "Probatu eposta ezarpenak", - "Send email" : "Bidali eposta", - "Download logfile" : "Deskargatu log fitxategia", - "More" : "Gehiago", - "Less" : "Gutxiago", - "Version" : "Bertsioa", - "Documentation:" : "Dokumentazioa:", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Aplikazioa ezin da instalatu hurrengo menpekotasunak betetzen ez direlako:", - "Enable only for specific groups" : "Baimendu bakarri talde espezifikoetarako", - "Uninstall App" : "Desinstalatu aplikazioa", - "Common Name" : "Izen arrunta", - "Valid until" : "Data hau arte baliogarria", - "Issued By" : "Honek bidalita", - "Valid until %s" : "%s arte baliogarria", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Kaixo,<br><br>orain %s kontu bat duzula esateko besterik ez.<br><br>Zure erabiltzailea: %s<br>Sar zaitez: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Ongi izan!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Kaixo,\n\norain %s kontu bat duzula esateko besterik ez.\n\nZure erabiltzailea: %s\nSar zaitez: %s\n\n", - "Forum" : "Foroa", - "Profile picture" : "Profilaren irudia", - "Upload new" : "Igo berria", - "Remove image" : "Irudia ezabatu", - "Cancel" : "Ezeztatu", - "No display name set" : "Ez da bistaratze izena ezarri", - "Email" : "E-posta", - "Your email address" : "Zure e-posta", - "No email address set" : "Ez da eposta helbidea ezarri", - "Password" : "Pasahitza", - "Unable to change your password" : "Ezin izan da zure pasahitza aldatu", - "Current password" : "Uneko pasahitza", - "New password" : "Pasahitz berria", - "Change password" : "Aldatu pasahitza", - "Language" : "Hizkuntza", - "Help translate" : "Lagundu itzultzen", - "Get the apps to sync your files" : "Lortu aplikazioak zure fitxategiak sinkronizatzeko", - "Desktop client" : "Mahaigaineko bezeroa", - "Android app" : "Android aplikazioa", - "iOS app" : "iOS aplikazioa", - "Show First Run Wizard again" : "Erakutsi berriz Lehenengo Aldiko Morroia", - "Show storage location" : "Erakutsi biltegiaren kokapena", - "Show last log in" : "Erakutsi azkeneko saio hasiera", - "Show user backend" : "Bistaratu erabiltzaile motorra", - "Send email to new user" : "Bidali eposta erabiltzaile berriari", - "Show email address" : "Bistaratu eposta helbidea", - "Username" : "Erabiltzaile izena", - "E-Mail" : "E-posta", - "Create" : "Sortu", - "Admin Recovery Password" : "Administratzailearen pasahitza berreskuratzea", - "Enter the recovery password in order to recover the users files during password change" : "Berreskuratze pasahitza idatzi pasahitz aldaketan erabiltzaileen fitxategiak berreskuratzeko", - "Add Group" : "Gehitu taldea", - "Group" : "Taldea", - "Everyone" : "Edonor", - "Admins" : "Administratzaileak", - "Default Quota" : "Kuota lehentsia", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Mesedez sartu biltegiratze kouta (adb: \"512 MB\" edo \"12 GB\")", - "Other" : "Bestelakoa", - "Full Name" : "Izena", - "Group Admin for" : "Talde administradorea honentzat", - "Quota" : "Kuota", - "Storage Location" : "Biltegiaren kokapena", - "User Backend" : "Erabiltzaile motorra", - "Last Login" : "Azken saio hasiera", - "change full name" : "aldatu izena", - "set new password" : "ezarri pasahitz berria", - "change email address" : "aldatu eposta helbidea", - "Default" : "Lehenetsia" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/eu.json b/settings/l10n/eu.json deleted file mode 100644 index 569a8453ff9..00000000000 --- a/settings/l10n/eu.json +++ /dev/null @@ -1,197 +0,0 @@ -{ "translations": { - "Sharing" : "Partekatzea", - "External Storage" : "Kanpoko biltegiratzea", - "Cron" : "Cron", - "Log" : "Log", - "Updates" : "Eguneraketak", - "Couldn't remove app." : "Ezin izan da aplikazioa ezabatu..", - "Language changed" : "Hizkuntza aldatuta", - "Invalid request" : "Baliogabeko eskaera", - "Authentication error" : "Autentifikazio errorea", - "Admins can't remove themself from the admin group" : "Kudeatzaileak ezin du bere burua kendu kudeatzaile taldetik", - "Unable to add user to group %s" : "Ezin izan da erabiltzailea %s taldera gehitu", - "Unable to remove user from group %s" : "Ezin izan da erabiltzailea %s taldetik ezabatu", - "Couldn't update app." : "Ezin izan da aplikazioa eguneratu.", - "Wrong password" : "Pasahitz okerra", - "No user supplied" : "Ez da erabiltzailerik zehaztu", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Mesedez eman berreskuratzeko administrazio pasahitza, bestela erabiltzaile datu guztiak galduko dira", - "Wrong admin recovery password. Please check the password and try again." : "Administratzailearen berreskuratze pasahitza ez egokia. Mesedez egiaztatu pasahitza eta saiatu berriz.", - "Unable to change password" : "Ezin izan da pasahitza aldatu", - "Enabled" : "Gaitua", - "Not enabled" : "Gaitu gabe", - "Federated Cloud Sharing" : "Federatutako Hodei Partekatzea", - "Group already exists." : "Taldea dagoeneko existitzen da", - "Unable to add group." : "Ezin izan da taldea gehitu.", - "Unable to delete group." : "Ezin izan da taldea ezabatu.", - "log-level out of allowed range" : "erregistro-maila baimendutako tartetik at", - "Saved" : "Gordeta", - "test email settings" : "probatu eposta ezarpenak", - "Email sent" : "Eposta bidalia", - "You need to set your user email before being able to send test emails." : "Epostaren erabiltzailea zehaztu behar duzu probako eposta bidali aurretik.", - "Invalid mail address" : "Posta helbide baliogabea", - "Unable to create user." : "Ezin izan da erabiltzailea sortu.", - "Your %s account was created" : "Zure %s kontua sortu da", - "Unable to delete user." : "Ezin izan da erabiltzailea ezabatu.", - "Forbidden" : "Debekatuta", - "Invalid user" : "Baliogabeko erabiiltzailea", - "Unable to change mail address" : "Ezin izan da posta helbidea aldatu", - "Email saved" : "Eposta gorde da", - "Your full name has been changed." : "Zure izena aldatu egin da.", - "Unable to change full name" : "Ezin izan da izena aldatu", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Ziur zaude gehitu nahi duzula \"{domain}\" domeinu fidagarri gisa?", - "Add trusted domain" : "Gehitu domeinu fidagarria", - "Sending..." : "Bidaltzen...", - "All" : "Denak", - "Update to %s" : "Eguneratu %sra", - "Please wait...." : "Itxoin mesedez...", - "Error while disabling app" : "Erroea izan da aplikazioa desgaitzerakoan", - "Disable" : "Ez-gaitu", - "Enable" : "Gaitu", - "Error while enabling app" : "Erroea izan da aplikazioa gaitzerakoan", - "Updating...." : "Eguneratzen...", - "Error while updating app" : "Errorea aplikazioa eguneratzen zen bitartean", - "Updated" : "Eguneratuta", - "Uninstalling ...." : "Desinstalatzen ...", - "Error while uninstalling app" : "Erroea izan da aplikazioa desinstalatzerakoan", - "Uninstall" : "Desinstalatu", - "Valid until {date}" : "{date} arte baliogarria", - "Delete" : "Ezabatu", - "Select a profile picture" : "Profilaren irudia aukeratu", - "Very weak password" : "Pasahitz oso ahula", - "Weak password" : "Pasahitz ahula", - "So-so password" : "Halamoduzko pasahitza", - "Good password" : "Pasahitz ona", - "Strong password" : "Pasahitz sendoa", - "Groups" : "Taldeak", - "Unable to delete {objName}" : "Ezin izan da {objName} ezabatu", - "A valid group name must be provided" : "Baliozko talde izena eman behar da", - "deleted {groupName}" : "{groupName} ezbatuta", - "undo" : "desegin", - "no group" : "talderik ez", - "never" : "inoiz", - "deleted {userName}" : "{userName} ezabatuta", - "add group" : "gehitu taldea", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Pasahitza aldatzeak datuen galera eragingo du, erabiltzaile honetarako datuen berreskuratzea eskuragarri ez dagoelako", - "A valid username must be provided" : "Baliozko erabiltzaile izena eman behar da", - "A valid password must be provided" : "Baliozko pasahitza eman behar da", - "A valid email must be provided" : "Baliozko posta elektronikoa eman behar da", - "__language_name__" : "Euskara", - "Unlimited" : "Mugarik gabe", - "Everything (fatal issues, errors, warnings, info, debug)" : "Dena (arazo larriak, erroreak, abisuak, informazioa, arazketa)", - "Info, warnings, errors and fatal issues" : "Informazioa, abisuak, erroreak eta arazo larriak.", - "Warnings, errors and fatal issues" : "Abisuak, erroreak eta arazo larriak", - "Errors and fatal issues" : "Erroreak eta arazo larriak", - "Fatal issues only" : "Bakarrik arazo larriak", - "None" : "Ezer", - "Login" : "Saio hasiera", - "Plain" : "Arrunta", - "NT LAN Manager" : "NT LAN Manager", - "SSL" : "SSL", - "TLS" : "TLS", - "The Read-Only config has been enabled. This prevents setting some configurations via the web-interface. Furthermore, the file needs to be made writable manually for every update." : "Bakarrik irakurtzeko konfigurazioa gaitu da. Honek web-interfazearen bidez konfigurazio batzuk aldatzea ekiditzen du. Are gehiago, fitxategia eskuz ezarri behar da idazteko moduan eguneraketa bakoitzerako.", - "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.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Zure zerbitzariak Microsoft Windows erabiltzen du. Guk biziki gomendatzen dugu Linux erabiltzaile esperientza optimo bat lortzeko.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP 'fileinfo' modulua falta da. Modulu hau gaitzea aholkatzen dizugu mime-type ezberdinak hobe detektatzeko.", - "System locale can not be set to a one which supports UTF-8." : "Eskualdeko ezarpena ezin da UTF-8 onartzen duen batera ezarri.", - "This means that there might be problems with certain characters in file names." : "Honek esan nahi du fitxategien izenetako karaktere batzuekin arazoak egon daitezkeela.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Biziki gomendatzen dizugu beharrezkoak diren paketea zure sisteman instalatzea honi euskarria eman ahal izateko: %s.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Zure instalazioa ez badago domeinuaren sustraian egina eta erabiltzen badu sistemaren cron-a, arazoak izan daitezke URL sorreran. Arazo horiek saihesteko ezarri \"overwrite.cli.url\" opzioa zure config.php fitxategian zure instalazioaren webroot bidera (Proposatua: \"%s\")", - "Allow apps to use the Share API" : "Baimendu aplikazioak partekatzeko APIa erabiltzeko", - "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 to other users" : "Baimendu erabiltzaileak beste erabiltzaileei epostako jakinarazpenak bidaltzen partekatutako fitxategientzat", - "Exclude groups from sharing" : "Baztertu taldeak partekatzean", - "These groups will still be able to receive shares, but not to initiate them." : "Talde hauek oraindik jaso ahal izango dute partekatzeak, baina ezingo dute partekatu", - "Cron was not executed yet!" : "Cron-a oraindik ez da exekutatu!", - "Execute one task with each page loaded" : "Exekutatu zeregin bat orri karga bakoitzean", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php webcron zerbitzu batean erregistratua dago cron.php 15 minuturo http bidez deitzeko.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Erabili sistemaren cron zerbitzua deitzeko cron.php fitxategia 15 minutuan behin.", - "This is used for sending out notifications." : "Hau jakinarazpenak bidaltzeko erabiltzen da.", - "Send mode" : "Bidaltzeko modua", - "Encryption" : "Enkriptazioa", - "From address" : "Helbidetik", - "mail" : "posta", - "Authentication method" : "Autentifikazio metodoa", - "Authentication required" : "Autentikazioa beharrezkoa", - "Server address" : "Zerbitzariaren helbidea", - "Port" : "Portua", - "Credentials" : "Kredentzialak", - "SMTP Username" : "SMTP erabiltzaile-izena", - "SMTP Password" : "SMTP pasahitza", - "Store credentials" : "Gorde kredentzialak", - "Test email settings" : "Probatu eposta ezarpenak", - "Send email" : "Bidali eposta", - "Download logfile" : "Deskargatu log fitxategia", - "More" : "Gehiago", - "Less" : "Gutxiago", - "Version" : "Bertsioa", - "Documentation:" : "Dokumentazioa:", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Aplikazioa ezin da instalatu hurrengo menpekotasunak betetzen ez direlako:", - "Enable only for specific groups" : "Baimendu bakarri talde espezifikoetarako", - "Uninstall App" : "Desinstalatu aplikazioa", - "Common Name" : "Izen arrunta", - "Valid until" : "Data hau arte baliogarria", - "Issued By" : "Honek bidalita", - "Valid until %s" : "%s arte baliogarria", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Kaixo,<br><br>orain %s kontu bat duzula esateko besterik ez.<br><br>Zure erabiltzailea: %s<br>Sar zaitez: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Ongi izan!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Kaixo,\n\norain %s kontu bat duzula esateko besterik ez.\n\nZure erabiltzailea: %s\nSar zaitez: %s\n\n", - "Forum" : "Foroa", - "Profile picture" : "Profilaren irudia", - "Upload new" : "Igo berria", - "Remove image" : "Irudia ezabatu", - "Cancel" : "Ezeztatu", - "No display name set" : "Ez da bistaratze izena ezarri", - "Email" : "E-posta", - "Your email address" : "Zure e-posta", - "No email address set" : "Ez da eposta helbidea ezarri", - "Password" : "Pasahitza", - "Unable to change your password" : "Ezin izan da zure pasahitza aldatu", - "Current password" : "Uneko pasahitza", - "New password" : "Pasahitz berria", - "Change password" : "Aldatu pasahitza", - "Language" : "Hizkuntza", - "Help translate" : "Lagundu itzultzen", - "Get the apps to sync your files" : "Lortu aplikazioak zure fitxategiak sinkronizatzeko", - "Desktop client" : "Mahaigaineko bezeroa", - "Android app" : "Android aplikazioa", - "iOS app" : "iOS aplikazioa", - "Show First Run Wizard again" : "Erakutsi berriz Lehenengo Aldiko Morroia", - "Show storage location" : "Erakutsi biltegiaren kokapena", - "Show last log in" : "Erakutsi azkeneko saio hasiera", - "Show user backend" : "Bistaratu erabiltzaile motorra", - "Send email to new user" : "Bidali eposta erabiltzaile berriari", - "Show email address" : "Bistaratu eposta helbidea", - "Username" : "Erabiltzaile izena", - "E-Mail" : "E-posta", - "Create" : "Sortu", - "Admin Recovery Password" : "Administratzailearen pasahitza berreskuratzea", - "Enter the recovery password in order to recover the users files during password change" : "Berreskuratze pasahitza idatzi pasahitz aldaketan erabiltzaileen fitxategiak berreskuratzeko", - "Add Group" : "Gehitu taldea", - "Group" : "Taldea", - "Everyone" : "Edonor", - "Admins" : "Administratzaileak", - "Default Quota" : "Kuota lehentsia", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Mesedez sartu biltegiratze kouta (adb: \"512 MB\" edo \"12 GB\")", - "Other" : "Bestelakoa", - "Full Name" : "Izena", - "Group Admin for" : "Talde administradorea honentzat", - "Quota" : "Kuota", - "Storage Location" : "Biltegiaren kokapena", - "User Backend" : "Erabiltzaile motorra", - "Last Login" : "Azken saio hasiera", - "change full name" : "aldatu izena", - "set new password" : "ezarri pasahitz berria", - "change email address" : "aldatu eposta helbidea", - "Default" : "Lehenetsia" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/fa.js b/settings/l10n/fa.js deleted file mode 100644 index d989f9c22c6..00000000000 --- a/settings/l10n/fa.js +++ /dev/null @@ -1,222 +0,0 @@ -OC.L10N.register( - "settings", - { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "اخطارهای نصب و امنیتی", - "Sharing" : "اشتراک گذاری", - "Server-side encryption" : "رمزگذاری سمت سرور", - "External Storage" : "حافظه خارجی", - "Cron" : "زمانبند", - "Email server" : "سرور ایمیل", - "Log" : "کارنامه", - "Tips & tricks" : "نکات و راهنماییها", - "Updates" : "به روز رسانی ها", - "Couldn't remove app." : "امکان حذف برنامه وجود ندارد.", - "Language changed" : "زبان تغییر کرد", - "Invalid request" : "درخواست نامعتبر", - "Authentication error" : "خطا در اعتبار سنجی", - "Admins can't remove themself from the admin group" : "مدیران نمی توانند خود را از گروه مدیریت حذف کنند", - "Unable to add user to group %s" : "امکان افزودن کاربر به گروه %s نیست", - "Unable to remove user from group %s" : "امکان حذف کاربر از گروه %s نیست", - "Couldn't update app." : "برنامه را نمی توان به هنگام ساخت.", - "Wrong password" : "رمز عبور اشتباه است", - "No user supplied" : "هیچ کاربری تعریف نشده است", - "Please provide an admin recovery password, otherwise all user data will be lost" : "لطفاً یک رمز مدیریتی برای بازیابی کردن تعریف نمایید. در غیر اینصورت اطلاعات تمامی کاربران از دست خواهند رفت.", - "Wrong admin recovery password. Please check the password and try again." : "رمز مدیریتی بازیابی غلط است. لطفاً رمز را کنترل کرده و دوباره امتحان نمایید.", - "Unable to change password" : "نمیتوان رمز را تغییر داد", - "Enabled" : "فعال شده", - "Not enabled" : "غیر فعال", - "Group already exists." : "گروه در حال حاضر موجود است", - "Unable to add group." : "افزودن گروه امکان پذیر نیست.", - "Unable to delete group." : "حذف گروه امکان پذیر نیست.", - "Saved" : "ذخیره شد", - "test email settings" : "تنظیمات ایمیل آزمایشی", - "Email sent" : "ایمیل ارسال شد", - "Invalid mail address" : "آدرس ایمیل نامعتبر است", - "A user with that name already exists." : "کاربری با همین نام در حال حاضر وجود دارد.", - "Unable to create user." : "ایجاد کاربر امکانپذیر نیست.", - "Your %s account was created" : "حساب کاربری شما %s ایجاد شد", - "Unable to delete user." : "حذف کاربر امکان پذیر نیست.", - "Forbidden" : "ممنوعه", - "Invalid user" : "کاربر نامعتبر", - "Unable to change mail address" : "تغییر آدرس ایمیل امکانپذیر نیست", - "Email saved" : "ایمیل ذخیره شد", - "Your full name has been changed." : "نام کامل شما تغییر یافت", - "Unable to change full name" : "امکان تغییر نام کامل وجود ندارد", - "Add trusted domain" : "افزودن دامنه مورد اعتماد", - "Migration in progress. Please wait until the migration is finished" : "مهاجرت در حال اجراست. لطفا تا اتمام مهاجرت صبر کنید", - "Migration started …" : "مهاجرت شروع شد...", - "Sending..." : "در حال ارسال...", - "Official" : "رسمی", - "Approved" : "تایید شده", - "Experimental" : "آزمایشی", - "All" : "همه", - "No apps found for your version" : "هیچ برنامهای برای نسخهی شما یافت نشد", - "Update to %s" : "بروزرسانی به %s", - "Please wait...." : "لطفا صبر کنید ...", - "Error while disabling app" : "خطا در هنگام غیر فعال سازی برنامه", - "Disable" : "غیرفعال", - "Enable" : "فعال", - "Error while enabling app" : "خطا در هنگام فعال سازی برنامه", - "Updating...." : "در حال بروز رسانی...", - "Error while updating app" : "خطا در هنگام بهنگام سازی برنامه", - "Updated" : "بروز رسانی انجام شد", - "Uninstalling ...." : "در حال حذف...", - "Error while uninstalling app" : "خطا در هنگام حذف برنامه....", - "Uninstall" : "حذف", - "App update" : "به روز رسانی برنامه", - "Valid until {date}" : "معتبر تا {date}", - "Delete" : "حذف", - "An error occurred: {message}" : "یک خطا رخداده است: {message}", - "Select a profile picture" : "انتخاب تصویر پروفایل", - "Very weak password" : "رمز عبور بسیار ضعیف", - "Weak password" : "رمز عبور ضعیف", - "So-so password" : "رمز عبور متوسط", - "Good password" : "رمز عبور خوب", - "Strong password" : "رمز عبور قوی", - "Groups" : "گروه ها", - "Unable to delete {objName}" : "امکان حذف {objName} وجود ندارد", - "A valid group name must be provided" : "نام کاربری معتبر می بایست وارد شود", - "deleted {groupName}" : "گروه {groupName} حذف شد", - "undo" : "بازگشت", - "no group" : "هیچ گروهی", - "never" : "هرگز", - "deleted {userName}" : "کاربر {userName} حذف شد", - "add group" : "افزودن گروه", - "Changing the password will result in data loss, because data recovery is not available for this user" : "با توجه به عدم دستیابی به بازگردانی اطلاعات برای کاربر، تغییر رمز عبور باعث از بین رفتن اطلاعات خواهد شد", - "A valid username must be provided" : "نام کاربری صحیح باید وارد شود", - "A valid password must be provided" : "رمز عبور صحیح باید وارد شود", - "A valid email must be provided" : "یک ایمیل معتبر باید وارد شود", - "__language_name__" : "__language_name__", - "Unlimited" : "نامحدود", - "Personal info" : "مشخصات شخصی", - "Sync clients" : "همگامسازی مشتریان", - "Everything (fatal issues, errors, warnings, info, debug)" : "همه موارد (مشکلات مهلک، خطاها، اخطارها، اطلاعات، خطایابی)", - "Info, warnings, errors and fatal issues" : "اطلاعات، اخطارها، خطاها، مشکلات اساسی", - "Warnings, errors and fatal issues" : "اخطارها، خطاها، مشکلات مهلک", - "Errors and fatal issues" : "خطاها و مشکلات اساسی", - "Fatal issues only" : "فقط مشکلات اساسی", - "None" : "هیچکدام", - "Login" : "ورود", - "Plain" : "ساده", - "NT LAN Manager" : "مدیر NT LAN", - "SSL" : "SSL", - "TLS" : "TLS", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "ماژول 'fileinfo' PHP از کار افتاده است.ما اکیدا توصیه می کنیم که این ماژول را فعال کنید تا نتایج بهتری به وسیله ی mime-type detection دریافت کنید.", - "All checks passed." : "تمامی موارد با موفقیت چک شدند.", - "Open documentation" : "بازکردن مستند", - "Allow apps to use the Share API" : "اجازه ی برنامه ها برای استفاده از API اشتراک گذاری", - "Allow users to share via link" : "اجازه دادن به کاربران برای اشتراک گذاری توسط پیوند", - "Enforce password protection" : "اجبار برای محافظت توسط رمز عبور", - "Allow public uploads" : "اجازه بارگذاری عمومی", - "Allow users to send mail notification for shared files" : "اجازه به کاربران برای ارسال ایمیل نوتیفیکیشن برای فایلهای به اشتراکگذاشته شده", - "Set default expiration date" : "اعمال تاریخ اتمام پیش فرض", - "Expire after " : "اتمام اعتبار بعد از", - "days" : "روز", - "Enforce expiration date" : "اعمال تاریخ اتمام اشتراک گذاری", - "Allow resharing" : "مجوز اشتراک گذاری مجدد", - "Restrict users to only share with users in their groups" : "محدود کردن کاربران برای اشتراکگذاری تنها میان کاربران گروه خود", - "Exclude groups from sharing" : "مستثنی شدن گروه ها از اشتراک گذاری", - "Cron was not executed yet!" : "کران هنوز اجرا نشده است!", - "Execute one task with each page loaded" : "اجرای یک وظیفه با هر بار بارگذاری صفحه", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php در یک سرویس webcron ثبت شده است که هر 15 دقیقه یک بار بر روی بستر http فراخوانی شود.", - "Enable server-side encryption" : "فعالسازی رمزگذاری سمت-سرور", - "Be aware that encryption always increases the file size." : "توجه داشته باشید که همواره رمزگذاری حجم فایل را افزایش خواهد داد.", - "This is the final warning: Do you really want to enable encryption?" : "این آخرین اخطار است: آیا میخواهید رمزگذاری را فعال کنید ؟", - "Enable encryption" : "فعال کردن رمزگذاری", - "No encryption module loaded, please enable an encryption module in the app menu." : "هیچ ماژول رمزگذاریای بارگذاری نشده است، لطفا ماژول رمزگذاری را در منو برنامه فعال کنید.", - "Select default encryption module:" : "انتخاب ماژول پیشفرض رمزگذاری:", - "Start migration" : "شروع مهاجرت", - "This is used for sending out notifications." : "این برای ارسال هشدار ها استفاده می شود", - "Send mode" : "حالت ارسال", - "Encryption" : "رمزگذاری", - "From address" : "آدرس فرستنده", - "mail" : "ایمیل", - "Authentication method" : "روش احراز هویت", - "Authentication required" : "احراز هویت مورد نیاز است", - "Server address" : "آدرس سرور", - "Port" : "درگاه", - "Credentials" : "اعتبارهای", - "SMTP Username" : "نام کاربری SMTP", - "SMTP Password" : "رمز عبور SMTP", - "Test email settings" : "تنظیمات ایمیل آزمایشی", - "Send email" : "ارسال ایمیل", - "Download logfile" : "دانلود فایل لاگ", - "More" : "بیشتر", - "Less" : "کمتر", - "Advanced monitoring" : "مانیتورینگ پیشرفته", - "Performance tuning" : "تنظیم کارایی", - "Improving the config.php" : "بهبود config.php", - "Theming" : "قالببندی", - "Hardening and security guidance" : "راهنمای امنسازی", - "Version" : "نسخه", - "Developer documentation" : "مستندات توسعهدهندگان", - "Documentation:" : "مستند سازی:", - "User documentation" : "مستندات کاربر", - "Admin documentation" : "مستندات مدیر", - "Show description …" : "نمایش توضیحات ...", - "Hide description …" : "عدم نمایش توضیحات...", - "This app cannot be installed because the following dependencies are not fulfilled:" : "امکان نصب این برنامه وجود ندارد، این پیشنیازها انجام نشدهاند:", - "Enable only for specific groups" : "فعال سازی تنها برای گروه های خاص", - "Uninstall App" : "حذف برنامه", - "Enable experimental apps" : "فعالسازی برنامههای آزمایشی", - "Common Name" : "نام مشترک", - "Valid until" : "متعبر تا", - "Issued By" : "صدور توسط", - "Valid until %s" : "متعبر تا %s", - "Import root certificate" : "وارد کردن گواهی اصلی", - "Cheers!" : "سلامتی!", - "Administrator documentation" : "مستندات مدیر", - "Online documentation" : "مستندات آنلاین", - "Forum" : "انجمن", - "Commercial support" : "پشتیبانی تجاری", - "Profile picture" : "تصویر پروفایل", - "Upload new" : "بارگذاری جدید", - "Remove image" : "تصویر پاک شود", - "Cancel" : "منصرف شدن", - "Full name" : "نام کامل", - "No display name set" : "هیچ نام نمایشی تعیین نشده است", - "Email" : "ایمیل", - "Your email address" : "پست الکترونیکی شما", - "No email address set" : "آدرسایمیلی تنظیم نشده است", - "You are member of the following groups:" : "شما عضو این گروهها هستید:", - "Password" : "گذرواژه", - "Unable to change your password" : "ناتوان در تغییر گذرواژه", - "Current password" : "گذرواژه کنونی", - "New password" : "گذرواژه جدید", - "Change password" : "تغییر گذر واژه", - "Language" : "زبان", - "Help translate" : "به ترجمه آن کمک کنید", - "Get the apps to sync your files" : "برنامه ها را دریافت کنید تا فایل هایتان را همگام سازید", - "Desktop client" : "نرم افزار دسکتاپ", - "Android app" : "اپ اندروید", - "iOS app" : "اپ iOS", - "Show First Run Wizard again" : "راهبری کمکی اجرای اول را دوباره نمایش بده", - "Show storage location" : "نمایش محل ذخیرهسازی", - "Show last log in" : "نمایش اخرین ورود", - "Send email to new user" : "ارسال ایمیل به کاربر جدید", - "Show email address" : "نمایش پست الکترونیکی", - "Username" : "نام کاربری", - "E-Mail" : "ایمیل", - "Create" : "ایجاد کردن", - "Admin Recovery Password" : "مدیریت بازیابی رمز عبور", - "Enter the recovery password in order to recover the users files during password change" : "در حین تغییر رمز عبور به منظور بازیابی فایل های کاربران، رمز عبور بازیابی را وارد کنید", - "Add Group" : "افزودن گروه", - "Group" : "گروه", - "Everyone" : "همه", - "Admins" : "مدیران", - "Default Quota" : "سهم پیش فرض", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "لطفا سهمیه ذخیره سازی را وارد کنید (به عنوان مثال: \" 512MB\" یا \"12GB\")", - "Other" : "دیگر", - "Full Name" : "نام کامل", - "Group Admin for" : "مدیر گروه برای", - "Quota" : "سهم", - "Storage Location" : "محل فضای ذخیره سازی", - "Last Login" : "اخرین ورود", - "change full name" : "تغییر نام کامل", - "set new password" : "تنظیم کلمه عبور جدید", - "change email address" : "تغییر آدرس ایمیل ", - "Default" : "پیش فرض" -}, -"nplurals=1; plural=0;"); diff --git a/settings/l10n/fa.json b/settings/l10n/fa.json deleted file mode 100644 index 1bdae86667c..00000000000 --- a/settings/l10n/fa.json +++ /dev/null @@ -1,220 +0,0 @@ -{ "translations": { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "اخطارهای نصب و امنیتی", - "Sharing" : "اشتراک گذاری", - "Server-side encryption" : "رمزگذاری سمت سرور", - "External Storage" : "حافظه خارجی", - "Cron" : "زمانبند", - "Email server" : "سرور ایمیل", - "Log" : "کارنامه", - "Tips & tricks" : "نکات و راهنماییها", - "Updates" : "به روز رسانی ها", - "Couldn't remove app." : "امکان حذف برنامه وجود ندارد.", - "Language changed" : "زبان تغییر کرد", - "Invalid request" : "درخواست نامعتبر", - "Authentication error" : "خطا در اعتبار سنجی", - "Admins can't remove themself from the admin group" : "مدیران نمی توانند خود را از گروه مدیریت حذف کنند", - "Unable to add user to group %s" : "امکان افزودن کاربر به گروه %s نیست", - "Unable to remove user from group %s" : "امکان حذف کاربر از گروه %s نیست", - "Couldn't update app." : "برنامه را نمی توان به هنگام ساخت.", - "Wrong password" : "رمز عبور اشتباه است", - "No user supplied" : "هیچ کاربری تعریف نشده است", - "Please provide an admin recovery password, otherwise all user data will be lost" : "لطفاً یک رمز مدیریتی برای بازیابی کردن تعریف نمایید. در غیر اینصورت اطلاعات تمامی کاربران از دست خواهند رفت.", - "Wrong admin recovery password. Please check the password and try again." : "رمز مدیریتی بازیابی غلط است. لطفاً رمز را کنترل کرده و دوباره امتحان نمایید.", - "Unable to change password" : "نمیتوان رمز را تغییر داد", - "Enabled" : "فعال شده", - "Not enabled" : "غیر فعال", - "Group already exists." : "گروه در حال حاضر موجود است", - "Unable to add group." : "افزودن گروه امکان پذیر نیست.", - "Unable to delete group." : "حذف گروه امکان پذیر نیست.", - "Saved" : "ذخیره شد", - "test email settings" : "تنظیمات ایمیل آزمایشی", - "Email sent" : "ایمیل ارسال شد", - "Invalid mail address" : "آدرس ایمیل نامعتبر است", - "A user with that name already exists." : "کاربری با همین نام در حال حاضر وجود دارد.", - "Unable to create user." : "ایجاد کاربر امکانپذیر نیست.", - "Your %s account was created" : "حساب کاربری شما %s ایجاد شد", - "Unable to delete user." : "حذف کاربر امکان پذیر نیست.", - "Forbidden" : "ممنوعه", - "Invalid user" : "کاربر نامعتبر", - "Unable to change mail address" : "تغییر آدرس ایمیل امکانپذیر نیست", - "Email saved" : "ایمیل ذخیره شد", - "Your full name has been changed." : "نام کامل شما تغییر یافت", - "Unable to change full name" : "امکان تغییر نام کامل وجود ندارد", - "Add trusted domain" : "افزودن دامنه مورد اعتماد", - "Migration in progress. Please wait until the migration is finished" : "مهاجرت در حال اجراست. لطفا تا اتمام مهاجرت صبر کنید", - "Migration started …" : "مهاجرت شروع شد...", - "Sending..." : "در حال ارسال...", - "Official" : "رسمی", - "Approved" : "تایید شده", - "Experimental" : "آزمایشی", - "All" : "همه", - "No apps found for your version" : "هیچ برنامهای برای نسخهی شما یافت نشد", - "Update to %s" : "بروزرسانی به %s", - "Please wait...." : "لطفا صبر کنید ...", - "Error while disabling app" : "خطا در هنگام غیر فعال سازی برنامه", - "Disable" : "غیرفعال", - "Enable" : "فعال", - "Error while enabling app" : "خطا در هنگام فعال سازی برنامه", - "Updating...." : "در حال بروز رسانی...", - "Error while updating app" : "خطا در هنگام بهنگام سازی برنامه", - "Updated" : "بروز رسانی انجام شد", - "Uninstalling ...." : "در حال حذف...", - "Error while uninstalling app" : "خطا در هنگام حذف برنامه....", - "Uninstall" : "حذف", - "App update" : "به روز رسانی برنامه", - "Valid until {date}" : "معتبر تا {date}", - "Delete" : "حذف", - "An error occurred: {message}" : "یک خطا رخداده است: {message}", - "Select a profile picture" : "انتخاب تصویر پروفایل", - "Very weak password" : "رمز عبور بسیار ضعیف", - "Weak password" : "رمز عبور ضعیف", - "So-so password" : "رمز عبور متوسط", - "Good password" : "رمز عبور خوب", - "Strong password" : "رمز عبور قوی", - "Groups" : "گروه ها", - "Unable to delete {objName}" : "امکان حذف {objName} وجود ندارد", - "A valid group name must be provided" : "نام کاربری معتبر می بایست وارد شود", - "deleted {groupName}" : "گروه {groupName} حذف شد", - "undo" : "بازگشت", - "no group" : "هیچ گروهی", - "never" : "هرگز", - "deleted {userName}" : "کاربر {userName} حذف شد", - "add group" : "افزودن گروه", - "Changing the password will result in data loss, because data recovery is not available for this user" : "با توجه به عدم دستیابی به بازگردانی اطلاعات برای کاربر، تغییر رمز عبور باعث از بین رفتن اطلاعات خواهد شد", - "A valid username must be provided" : "نام کاربری صحیح باید وارد شود", - "A valid password must be provided" : "رمز عبور صحیح باید وارد شود", - "A valid email must be provided" : "یک ایمیل معتبر باید وارد شود", - "__language_name__" : "__language_name__", - "Unlimited" : "نامحدود", - "Personal info" : "مشخصات شخصی", - "Sync clients" : "همگامسازی مشتریان", - "Everything (fatal issues, errors, warnings, info, debug)" : "همه موارد (مشکلات مهلک، خطاها، اخطارها، اطلاعات، خطایابی)", - "Info, warnings, errors and fatal issues" : "اطلاعات، اخطارها، خطاها، مشکلات اساسی", - "Warnings, errors and fatal issues" : "اخطارها، خطاها، مشکلات مهلک", - "Errors and fatal issues" : "خطاها و مشکلات اساسی", - "Fatal issues only" : "فقط مشکلات اساسی", - "None" : "هیچکدام", - "Login" : "ورود", - "Plain" : "ساده", - "NT LAN Manager" : "مدیر NT LAN", - "SSL" : "SSL", - "TLS" : "TLS", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "ماژول 'fileinfo' PHP از کار افتاده است.ما اکیدا توصیه می کنیم که این ماژول را فعال کنید تا نتایج بهتری به وسیله ی mime-type detection دریافت کنید.", - "All checks passed." : "تمامی موارد با موفقیت چک شدند.", - "Open documentation" : "بازکردن مستند", - "Allow apps to use the Share API" : "اجازه ی برنامه ها برای استفاده از API اشتراک گذاری", - "Allow users to share via link" : "اجازه دادن به کاربران برای اشتراک گذاری توسط پیوند", - "Enforce password protection" : "اجبار برای محافظت توسط رمز عبور", - "Allow public uploads" : "اجازه بارگذاری عمومی", - "Allow users to send mail notification for shared files" : "اجازه به کاربران برای ارسال ایمیل نوتیفیکیشن برای فایلهای به اشتراکگذاشته شده", - "Set default expiration date" : "اعمال تاریخ اتمام پیش فرض", - "Expire after " : "اتمام اعتبار بعد از", - "days" : "روز", - "Enforce expiration date" : "اعمال تاریخ اتمام اشتراک گذاری", - "Allow resharing" : "مجوز اشتراک گذاری مجدد", - "Restrict users to only share with users in their groups" : "محدود کردن کاربران برای اشتراکگذاری تنها میان کاربران گروه خود", - "Exclude groups from sharing" : "مستثنی شدن گروه ها از اشتراک گذاری", - "Cron was not executed yet!" : "کران هنوز اجرا نشده است!", - "Execute one task with each page loaded" : "اجرای یک وظیفه با هر بار بارگذاری صفحه", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php در یک سرویس webcron ثبت شده است که هر 15 دقیقه یک بار بر روی بستر http فراخوانی شود.", - "Enable server-side encryption" : "فعالسازی رمزگذاری سمت-سرور", - "Be aware that encryption always increases the file size." : "توجه داشته باشید که همواره رمزگذاری حجم فایل را افزایش خواهد داد.", - "This is the final warning: Do you really want to enable encryption?" : "این آخرین اخطار است: آیا میخواهید رمزگذاری را فعال کنید ؟", - "Enable encryption" : "فعال کردن رمزگذاری", - "No encryption module loaded, please enable an encryption module in the app menu." : "هیچ ماژول رمزگذاریای بارگذاری نشده است، لطفا ماژول رمزگذاری را در منو برنامه فعال کنید.", - "Select default encryption module:" : "انتخاب ماژول پیشفرض رمزگذاری:", - "Start migration" : "شروع مهاجرت", - "This is used for sending out notifications." : "این برای ارسال هشدار ها استفاده می شود", - "Send mode" : "حالت ارسال", - "Encryption" : "رمزگذاری", - "From address" : "آدرس فرستنده", - "mail" : "ایمیل", - "Authentication method" : "روش احراز هویت", - "Authentication required" : "احراز هویت مورد نیاز است", - "Server address" : "آدرس سرور", - "Port" : "درگاه", - "Credentials" : "اعتبارهای", - "SMTP Username" : "نام کاربری SMTP", - "SMTP Password" : "رمز عبور SMTP", - "Test email settings" : "تنظیمات ایمیل آزمایشی", - "Send email" : "ارسال ایمیل", - "Download logfile" : "دانلود فایل لاگ", - "More" : "بیشتر", - "Less" : "کمتر", - "Advanced monitoring" : "مانیتورینگ پیشرفته", - "Performance tuning" : "تنظیم کارایی", - "Improving the config.php" : "بهبود config.php", - "Theming" : "قالببندی", - "Hardening and security guidance" : "راهنمای امنسازی", - "Version" : "نسخه", - "Developer documentation" : "مستندات توسعهدهندگان", - "Documentation:" : "مستند سازی:", - "User documentation" : "مستندات کاربر", - "Admin documentation" : "مستندات مدیر", - "Show description …" : "نمایش توضیحات ...", - "Hide description …" : "عدم نمایش توضیحات...", - "This app cannot be installed because the following dependencies are not fulfilled:" : "امکان نصب این برنامه وجود ندارد، این پیشنیازها انجام نشدهاند:", - "Enable only for specific groups" : "فعال سازی تنها برای گروه های خاص", - "Uninstall App" : "حذف برنامه", - "Enable experimental apps" : "فعالسازی برنامههای آزمایشی", - "Common Name" : "نام مشترک", - "Valid until" : "متعبر تا", - "Issued By" : "صدور توسط", - "Valid until %s" : "متعبر تا %s", - "Import root certificate" : "وارد کردن گواهی اصلی", - "Cheers!" : "سلامتی!", - "Administrator documentation" : "مستندات مدیر", - "Online documentation" : "مستندات آنلاین", - "Forum" : "انجمن", - "Commercial support" : "پشتیبانی تجاری", - "Profile picture" : "تصویر پروفایل", - "Upload new" : "بارگذاری جدید", - "Remove image" : "تصویر پاک شود", - "Cancel" : "منصرف شدن", - "Full name" : "نام کامل", - "No display name set" : "هیچ نام نمایشی تعیین نشده است", - "Email" : "ایمیل", - "Your email address" : "پست الکترونیکی شما", - "No email address set" : "آدرسایمیلی تنظیم نشده است", - "You are member of the following groups:" : "شما عضو این گروهها هستید:", - "Password" : "گذرواژه", - "Unable to change your password" : "ناتوان در تغییر گذرواژه", - "Current password" : "گذرواژه کنونی", - "New password" : "گذرواژه جدید", - "Change password" : "تغییر گذر واژه", - "Language" : "زبان", - "Help translate" : "به ترجمه آن کمک کنید", - "Get the apps to sync your files" : "برنامه ها را دریافت کنید تا فایل هایتان را همگام سازید", - "Desktop client" : "نرم افزار دسکتاپ", - "Android app" : "اپ اندروید", - "iOS app" : "اپ iOS", - "Show First Run Wizard again" : "راهبری کمکی اجرای اول را دوباره نمایش بده", - "Show storage location" : "نمایش محل ذخیرهسازی", - "Show last log in" : "نمایش اخرین ورود", - "Send email to new user" : "ارسال ایمیل به کاربر جدید", - "Show email address" : "نمایش پست الکترونیکی", - "Username" : "نام کاربری", - "E-Mail" : "ایمیل", - "Create" : "ایجاد کردن", - "Admin Recovery Password" : "مدیریت بازیابی رمز عبور", - "Enter the recovery password in order to recover the users files during password change" : "در حین تغییر رمز عبور به منظور بازیابی فایل های کاربران، رمز عبور بازیابی را وارد کنید", - "Add Group" : "افزودن گروه", - "Group" : "گروه", - "Everyone" : "همه", - "Admins" : "مدیران", - "Default Quota" : "سهم پیش فرض", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "لطفا سهمیه ذخیره سازی را وارد کنید (به عنوان مثال: \" 512MB\" یا \"12GB\")", - "Other" : "دیگر", - "Full Name" : "نام کامل", - "Group Admin for" : "مدیر گروه برای", - "Quota" : "سهم", - "Storage Location" : "محل فضای ذخیره سازی", - "Last Login" : "اخرین ورود", - "change full name" : "تغییر نام کامل", - "set new password" : "تنظیم کلمه عبور جدید", - "change email address" : "تغییر آدرس ایمیل ", - "Default" : "پیش فرض" -},"pluralForm" :"nplurals=1; plural=0;" -}
\ No newline at end of file diff --git a/settings/l10n/fi_FI.js b/settings/l10n/fi_FI.js deleted file mode 100644 index 157ddab53cb..00000000000 --- a/settings/l10n/fi_FI.js +++ /dev/null @@ -1,288 +0,0 @@ -OC.L10N.register( - "settings", - { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Turvallisuus- ja asetusvaroitukset", - "Sharing" : "Jakaminen", - "Server-side encryption" : "Palvelinpään salaus", - "External Storage" : "Erillinen tallennusväline", - "Cron" : "Cron", - "Email server" : "Sähköpostipalvelin", - "Log" : "Loki", - "Tips & tricks" : "Vinkit", - "Updates" : "Päivitykset", - "Couldn't remove app." : "Sovelluksen poistaminen epäonnistui.", - "Language changed" : "Kieli on vaihdettu", - "Invalid request" : "Virheellinen pyyntö", - "Authentication error" : "Tunnistautumisvirhe", - "Admins can't remove themself from the admin group" : "Ylläpitäjät eivät poistaa omia tunnuksiaan ylläpitäjien ryhmästä", - "Unable to add user to group %s" : "Käyttäjän tai ryhmän %s lisääminen ei onnistu", - "Unable to remove user from group %s" : "Käyttäjän poistaminen ryhmästä %s ei onnistu", - "Couldn't update app." : "Sovelluksen päivitys epäonnistui.", - "Wrong password" : "Väärä salasana", - "No user supplied" : "Käyttäjää ei määritetty", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Anna ylläpitäjän palautussalasana, muuten kaikki käyttäjien data menetetään", - "Wrong admin recovery password. Please check the password and try again." : "Väärä ylläpitäjän salasana. Tarkista salasana ja yritä uudelleen.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Taustaosa ei tue salasanan vaihtoa, mutta käyttäjän salausavain päivitettiin onnistuneesti.", - "Unable to change password" : "Salasanan vaihto ei onnistunut", - "Enabled" : "Käytössä", - "Not enabled" : "Ei käytössä", - "Federated Cloud Sharing" : "Federoitu pilvijakaminen", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL käyttää vanhentunutta %s-versiota (%s). Päivitä käyttöjärjestelmäsi tai ominaisuudet kuten %s eivät toimi luotettavasti.", - "A problem occurred, please check your log files (Error: %s)" : "Tapahtui virhe, tarkista lokitiedostot (Virhe: %s)", - "Migration Completed" : "Migraatio valmistui", - "Group already exists." : "Ryhmä on jo olemassa.", - "Unable to add group." : "Ryhmän lisääminen ei onnistunut.", - "Unable to delete group." : "Ryhmän poistaminen ei onnistunut.", - "log-level out of allowed range" : "lokitaso ei sallittujen rajojen sisäpuolella", - "Saved" : "Tallennettu", - "test email settings" : "testaa sähköpostiasetukset", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Sähköpostia lähettäessä tapahtui virhe. Tarkista asetukset. (Virhe: %s)", - "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.", - "Invalid mail address" : "Virheellinen sähköpostiosoite", - "A user with that name already exists." : "Käyttäjä samalla nimellä on jo olemassa.", - "Unable to create user." : "Käyttäjän luominen ei onnistunut.", - "Your %s account was created" : "%s-tilisi luotiin", - "Unable to delete user." : "Käyttäjän poistaminen ei onnistunut.", - "Forbidden" : "Estetty", - "Invalid user" : "Virheellinen käyttäjä", - "Unable to change mail address" : "Sähköpostiosoitteen vaihtaminen ei onnistunut", - "Email saved" : "Sähköposti tallennettu", - "Your full name has been changed." : "Koko nimesi on muutettu.", - "Unable to change full name" : "Koko nimen muuttaminen epäonnistui", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Haluatko varmasti liittää kohteen \"{domain}\" luotetuksi toimialueeksi?", - "Add trusted domain" : "Lisää luotettu toimialue", - "Migration in progress. Please wait until the migration is finished" : "Migraatio on kesken. Odota kunnes migraatio valmistuu", - "Migration started …" : "Migraatio käynnistyi…", - "Sending..." : "Lähetetään...", - "Official" : "Virallinen", - "Approved" : "Hyväksytty", - "Experimental" : "Kokeellinen", - "All" : "Kaikki", - "No apps found for your version" : "Sovelluksia ei löytynyt versiollesi", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Viralliset sovellukset kehitetään ownCloud-yhteisön toimesta. Sovellukset tarjoavat lisäominaisuuksia ownCloudin keskeisiin toimintoihin liittyen ja ovat valmiita tuotantokäyttöön.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Hyväksytyt sovellukset on kehitetty luotettujen kehittäjien toimesta. Hyväksytyille sovelluksille on suoritettu pintapuolinen turvallisuustarkastus. Sovelluksia ylläpidetään avoimen koodin tietovarastoissa. Sovellusten kehittäjät mieltävät sovellukset vakaiksi ja valmiiksi tavalliseen käyttöön.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Tätä sovellusta ei ole tarkistettu tietoturvauhkien varalta. Sovellus on uusi ja mahdollisesti tiedostettu epävakaaksi. Asenna omalla vastuulla.", - "Update to %s" : "Päivitä versioon %s", - "_You have %n app update pending_::_You have %n app updates pending_" : ["%n sovelluspäivitys odottaa","%n sovelluspäivitystä odottaa"], - "Please wait...." : "Odota hetki...", - "Error while disabling app" : "Virhe poistaessa sovellusta käytöstä", - "Disable" : "Poista käytöstä", - "Enable" : "Käytä", - "Error while enabling app" : "Virhe ottaessa sovellusta käyttöön", - "Error: this app cannot be enabled because it makes the server unstable" : "Virhe: tätä sovellusta ei voi ottaa käyttöön, koska se tekee palvelimesta epävakaan", - "Error: could not disable broken app" : "Virhe: rikkinäisen sovelluksen poistaminen käytöstä ei onnistunut", - "Error while disabling broken app" : "Virhe rikkinäistä sovellusta käytöstä poistaessa", - "Updating...." : "Päivitetään...", - "Error while updating app" : "Virhe sovellusta päivittäessä", - "Updated" : "Päivitetty", - "Uninstalling ...." : "Poistetaan asennusta....", - "Error while uninstalling app" : "Virhe sovellusta poistaessa", - "Uninstall" : "Poista asennus", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Tämä sovellus on otettu käyttöön, mutta se vaatii päivityksen. Sinut ohjataan päivityssivulle viiden sekunnin kuluttua.", - "App update" : "Sovelluspäivitys", - "No apps found for {query}" : "Haulla {query} ei löytynyt sovelluksia", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Tapahtu virhe. Lähetä ASCII-koodattu PEM-varmenne.", - "Valid until {date}" : "Kelvollinen {date} asti", - "Delete" : "Poista", - "An error occurred: {message}" : "Tapahtui virhe: {message}", - "Select a profile picture" : "Valitse profiilikuva", - "Very weak password" : "Erittäin heikko salasana", - "Weak password" : "Heikko salasana", - "So-so password" : "Kohtalainen salasana", - "Good password" : "Hyvä salasana", - "Strong password" : "Vahva salasana", - "Groups" : "Ryhmät", - "Unable to delete {objName}" : "Kohteen {objName} poistaminen epäonnistui", - "Error creating group: {message}" : "Virhe ryhmää luotaessa: {message}", - "A valid group name must be provided" : "Anna kelvollinen ryhmän nimi", - "deleted {groupName}" : "poistettu {groupName}", - "undo" : "kumoa", - "no group" : "ei ryhmää", - "never" : "ei koskaan", - "deleted {userName}" : "poistettu {userName}", - "add group" : "lisää ryhmä", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Salasanan muuttaminen johtaa tietojen häviämiseen, koska tietojen palautusta ei ole käytettävissä tämän käyttäjän kohdalla", - "A valid username must be provided" : "Anna kelvollinen käyttäjätunnus", - "Error creating user: {message}" : "Virhe käyttäjää luotaessa: {message}", - "A valid password must be provided" : "Anna kelvollinen salasana", - "A valid email must be provided" : "Tarvitaan kelvollinen sähköpostiosoite", - "__language_name__" : "_kielen_nimi_", - "Unlimited" : "Rajoittamaton", - "Personal info" : "Henkilökohtaiset tiedot", - "Sync clients" : "Synkronointisovellukset", - "Everything (fatal issues, errors, warnings, info, debug)" : "Kaikki (vakavat ongelmat, virheet, varoitukset, tiedot, vianjäljitys)", - "Info, warnings, errors and fatal issues" : "Tiedot, varoitukset, virheet ja vakavat ongelmat", - "Warnings, errors and fatal issues" : "Varoitukset, virheet ja vakavat ongelmat", - "Errors and fatal issues" : "Virheet ja vakavat ongelmat", - "Fatal issues only" : "Vain vakavat ongelmat", - "None" : "Ei mitään", - "Login" : "Kirjaudu", - "NT LAN Manager" : "NT LAN Manager", - "SSL" : "SSL", - "TLS" : "TLS", - "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." : "Vain luku -asetukset on otettu käyttöön. Tämä estää joidenkin asetusten määrittämisen selainkäyttöliittymän kautta. Lisäksi kyseinen tiedostoon tulee asettaa kirjoitusoikeus käsin joka päivityksen yhteydessä.", - "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Tämä johtuu todennäköisesti välimuistista tai kiihdyttimestä kuten Zend OPcachesta tai eAcceleratorista.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Palvelimesi käyttöjärjestelmä on Microsoft Windows. Suosittelemme käyttämään parhaan mahdollisen käyttökokemuksen saavuttamiseksi Linuxia.", - "%1$s below version %2$s is installed, for stability and performance reasons we recommend updating to a newer %1$s version." : "%1$s alle version %2$s on asennettu. Vakauden ja suorituskyvyn vuoksi suosittelemme päivittämään uudempaan %1$s-versioon.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP-moduuli \"fileinfo\" puuttuu. Sen käyttö on erittäin suositeltavaa, jotta MIME-tyypin havaitseminen onnistuu parhaalla mahdollisella tavalla.", - "System locale can not be set to a one which supports UTF-8." : "Järjestelmän maa-asetusta ei voi asettaa UTF-8:aa tukevaksi.", - "This means that there might be problems with certain characters in file names." : "Tämä tarkoittaa, että tiettyjen merkkien kanssa tiedostojen nimissä saattaa olla ongelmia.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Suosittelemme asentamaan vaaditut paketit järjestelmään, jotta järjestelmässä on tuki yhdelle seuraavista maa-asetuksista: %s.", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Cron-työn suorittaminen komentorivin kautta ei onnistunut. Ilmeni seuraavia teknisiä virheitä:", - "All checks passed." : "Läpäistiin kaikki tarkistukset.", - "Open documentation" : "Avaa dokumentaatio", - "Allow apps to use the Share API" : "Salli sovellusten käyttää jakamisen ohjelmointirajapintaa", - "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", - "Allow sharing with groups" : "Salli jakaminen ryhmien kanssa", - "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 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.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Salli käyttäjätunnuksen automaattinen täydentäminen jakamisikkunnassa. Jos tämä asetus on pois käytöstä, tulee käyttäjätunnus kirjoittaa kokonaan itse.", - "Last cron job execution: %s." : "Viimeisin cron-työn suoritus: %s.", - "Last cron job execution: %s. Something seems wrong." : "Viimeisin cron-työn suoritus: %s. Jokin vaikuttaa menneen pieleen.", - "Cron was not executed yet!" : "Cronia ei suoritettu vielä!", - "Execute one task with each page loaded" : "Suorita yksi tehtävä jokaista ladattua sivua kohden", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php kutsuu webcron-palvelun kautta cron.php:ta 15 minuutin välein http:tä käyttäen.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Käytä järjestelmän cron-palvelua cron.php-tiedoston kutsumista varten 15 minuutin välein.", - "Enable server-side encryption" : "Käytä palvelinpään salausta", - "Please read carefully before activating server-side encryption: " : "Lue tarkasti, ennen kuin otat palvelinpään salauksen käyttöön:", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "Salaaminen pelkästään ei takaa järjestelmän tietoturvaa. Tutustu ownCloudin dokumentaation saadaksesi lisätietoja salaussovelluksen toiminnasta ja tuetuista käyttötapauksista.", - "Be aware that encryption always increases the file size." : "Ota huomioon, että salaus kasvattaa aina tiedostojen kokoa.", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "Säännöllisten varmuuskopioiden ottaminen on erittäin tärkeää. Jos olet ottanut salauksen käyttöön, huolehdi salausavainten varmuuskopioinnista.", - "This is the final warning: Do you really want to enable encryption?" : "Tämä on viimeinen varoitus: haluatko varmasti ottaa salauksen käyttöön?", - "Enable encryption" : "Käytä salausta", - "No encryption module loaded, please enable an encryption module in the app menu." : "Salausmoduulia ei ole käytössä. Ota salausmoduuli käyttöön sovellusvalikosta.", - "Select default encryption module:" : "Valitse oletuksena käytettävä salausmoduuli:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Sinun täytyy siirtää salausavaimet vanhasta salaustekniikasta (ownCloud <= 8.0) uuteen. Ota \"Default encryption module\" käyttöön ja suorita komento 'occ encryption:migrate'", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Sinun täytyy siirtää salausavaimet vanhasta salaustekniikasta (ownCloud <= 8.0) uuteen.", - "Start migration" : "Käynnistä migraatio", - "This is used for sending out notifications." : "Tätä käytetään ilmoitusten lähettämiseen.", - "Send mode" : "Lähetystila", - "Encryption" : "Salaus", - "From address" : "Lähettäjän osoite", - "Authentication method" : "Tunnistautumistapa", - "Authentication required" : "Tunnistautuminen vaaditaan", - "Server address" : "Palvelimen osoite", - "Port" : "Portti", - "Credentials" : "Tilitiedot", - "SMTP Username" : "SMTP-käyttäjätunnus", - "SMTP Password" : "SMTP-salasana", - "Store credentials" : "Säilytä tilitiedot", - "Test email settings" : "Testaa sähköpostiasetukset", - "Send email" : "Lähetä sähköpostiviesti", - "Download logfile" : "Lataa lokitiedosto", - "More" : "Enemmän", - "Less" : "Vähemmän", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Lokitiedosto on kooltaan yli 100 megatavua. Sen lataaminen saattaa kestää hetken.", - "What to log" : "Mitä kerätään lokiin", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLitea käytetään tietokantana. Suuria asennuksia varten on suositeltavaa vaihtaa muuhun tietokantaan.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Varsinkin työpöytäsovelluksen tiedostosynkronointia käyttäessä SQLiten käyttö ei ole suositeltavaa.", - "How to do backups" : "Kuinka tehdä varmuuskopioita", - "Advanced monitoring" : "Edistynyt valvonta", - "Performance tuning" : "Suorituskyvyn hienosäätö", - "Improving the config.php" : "Config.php-tiedoston parantaminen", - "Theming" : "Teemojen käyttö", - "Hardening and security guidance" : "Turvaamis- ja tietoturvaopas", - "Version" : "Versio", - "Developer documentation" : "Kehittäjädokumentaatio", - "Experimental applications ahead" : "Kokeellisia sovelluksia edessä", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Kokeellisia sovelluksia ei ole tarkistettu tietoturvauhkien varalta. Sovellukset ovat uusia, ne saattavat olla epävakaita ja ovat nopean kehityksen alaisia. Kokeellisten sovellusten asentaminen saattaa aiheuttaa tietojen katoamista tai tietoturvauhkia.", - "by %s" : "tekijä %s", - "%s-licensed" : "%s -lisensoitu", - "Documentation:" : "Ohjeistus:", - "User documentation" : "Käyttäjädokumentaatio", - "Admin documentation" : "Ylläpitäjän ohjeistus", - "Show description …" : "Näytä kuvaus…", - "Hide description …" : "Piilota kuvaus…", - "This app has an update available." : "Tähän sovellukseen on päivitys saatavilla.", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Tälle sovellukselle ei ole määritelty ownCloudin vähimmäisversiota. Tämä johtaa virheeseen ownCloud 11:stä alkaen.", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Tälle sovellukselle ei ole määritelty ownCloudin enimmäisversiota. Tämä johtaa virheeseen ownCloud 11:stä alkaen.", - "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:", - "Enable only for specific groups" : "Salli vain tietyille ryhmille", - "Uninstall App" : "Poista sovelluksen asennus", - "Enable experimental apps" : "Käytä kokeiluasteella olevia sovelluksia", - "SSL Root Certificates" : "SSL-juurivarmenteet", - "Common Name" : "Yleinen nimi", - "Valid until" : "Kelvollinen", - "Issued By" : " Myöntänyt", - "Valid until %s" : "Kelvollinen %s asti", - "Import root certificate" : "Tuo juurivarmenne", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Hei<br><br>Sinulla on nyt %s-tili.<br><br>Käyttäjätunnus: %s<br>Aloita käyttö: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Kippis!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Hei\n\nSinulla on nyt %s-tili.\n\nKäyttäjätunnuksesi: %s\nAloita käyttö: %s\n\n", - "Administrator documentation" : "Ylläpidon dokumentaatio", - "Online documentation" : "Verkkodokumentaatio", - "Forum" : "Keskustelupalsta", - "Issue tracker" : "Ongelmien seuranta", - "Commercial support" : "Kaupallinen tuki", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "Käytössäsi on <strong>%s</strong>/<strong>%s</strong>", - "Profile picture" : "Profiilikuva", - "Upload new" : "Lähetä uusi", - "Select from Files" : "Valitse tiedostosovelluksesta", - "Remove image" : "Poista kuva", - "png or jpg, max. 20 MB" : "png tai jpg, korkeintaan 20 Mt", - "Picture provided by original account" : "Kuvan tarjoaa alkuperäinen tili", - "Cancel" : "Peru", - "Choose as profile picture" : "Valitse profiilikuvaksi", - "Full name" : "Koko nimi", - "No display name set" : "Näyttönimeä ei ole asetettu", - "Email" : "Sähköpostiosoite", - "Your email address" : "Sähköpostiosoitteesi", - "For password recovery and notifications" : "Salasanan nollausta ja ilmoituksia varten", - "No email address set" : "Sähköpostiosoitetta ei ole asetettu", - "You are member of the following groups:" : "Olet jäsenenä seuraavissa ryhmissä:", - "Password" : "Salasana", - "Unable to change your password" : "Salasanaasi ei voitu vaihtaa", - "Current password" : "Nykyinen salasana", - "New password" : "Uusi salasana", - "Change password" : "Vaihda salasana", - "Language" : "Kieli", - "Help translate" : "Auta kääntämisessä", - "Get the apps to sync your files" : "Aseta sovellukset synkronoimaan tiedostosi", - "Desktop client" : "Työpöytäsovellus", - "Android app" : "Android-sovellus", - "iOS app" : "iOS-sovellus", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Jos haluat tukea projektia, \n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">auta sovelluskehityksessä</a>\n\t\ttai\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">levitä sanaa</a>!", - "Show First Run Wizard again" : "Näytä ensimmäisen käyttökerran avustaja uudelleen", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Kehityksestä on vastannut {communityopen}ownCloud-yhteisö{linkclose}, {githubopen}lähdekoodi{linkclose} on {licenseopen}<abbr title=\"Affero General Public License\">AGPL-lisensoitu</abbr>{linkclose}.", - "Show storage location" : "Näytä tallennustilan sijainti", - "Show last log in" : "Näytä viimeisin sisäänkirjautuminen", - "Show user backend" : "Näytä käyttäjätaustaosa", - "Send email to new user" : "Lähetä sähköpostia uudelle käyttäjälle", - "Show email address" : "Näytä sähköpostiosoite", - "Username" : "Käyttäjätunnus", - "E-Mail" : "Sähköposti", - "Create" : "Luo", - "Admin Recovery Password" : "Ylläpitäjän palautussalasana", - "Enter the recovery password in order to recover the users files during password change" : "Anna palautussalasana, jotta käyttäjien tiedostot on mahdollista palauttaa salasanan muuttamisen yhteydessä", - "Add Group" : "Lisää ryhmä", - "Group" : "Ryhmä", - "Everyone" : "Kaikki", - "Admins" : "Ylläpitäjät", - "Default Quota" : "Oletuskiintiö", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Määritä tallennustilan kiintiö (esim. \"512 MB\" tai \"12 GB\")", - "Other" : "Muu", - "Full Name" : "Koko nimi", - "Group Admin for" : "Ryhmäylläpitäjä kohteille", - "Quota" : "Kiintiö", - "Storage Location" : "Tallennustilan sijainti", - "User Backend" : "Käyttäjätaustaosa", - "Last Login" : "Viimeisin kirjautuminen", - "change full name" : "muuta koko nimi", - "set new password" : "aseta uusi salasana", - "change email address" : "vaihda sähköpostiosoite", - "Default" : "Oletus" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/fi_FI.json b/settings/l10n/fi_FI.json deleted file mode 100644 index 0a0c2c36740..00000000000 --- a/settings/l10n/fi_FI.json +++ /dev/null @@ -1,286 +0,0 @@ -{ "translations": { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Turvallisuus- ja asetusvaroitukset", - "Sharing" : "Jakaminen", - "Server-side encryption" : "Palvelinpään salaus", - "External Storage" : "Erillinen tallennusväline", - "Cron" : "Cron", - "Email server" : "Sähköpostipalvelin", - "Log" : "Loki", - "Tips & tricks" : "Vinkit", - "Updates" : "Päivitykset", - "Couldn't remove app." : "Sovelluksen poistaminen epäonnistui.", - "Language changed" : "Kieli on vaihdettu", - "Invalid request" : "Virheellinen pyyntö", - "Authentication error" : "Tunnistautumisvirhe", - "Admins can't remove themself from the admin group" : "Ylläpitäjät eivät poistaa omia tunnuksiaan ylläpitäjien ryhmästä", - "Unable to add user to group %s" : "Käyttäjän tai ryhmän %s lisääminen ei onnistu", - "Unable to remove user from group %s" : "Käyttäjän poistaminen ryhmästä %s ei onnistu", - "Couldn't update app." : "Sovelluksen päivitys epäonnistui.", - "Wrong password" : "Väärä salasana", - "No user supplied" : "Käyttäjää ei määritetty", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Anna ylläpitäjän palautussalasana, muuten kaikki käyttäjien data menetetään", - "Wrong admin recovery password. Please check the password and try again." : "Väärä ylläpitäjän salasana. Tarkista salasana ja yritä uudelleen.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Taustaosa ei tue salasanan vaihtoa, mutta käyttäjän salausavain päivitettiin onnistuneesti.", - "Unable to change password" : "Salasanan vaihto ei onnistunut", - "Enabled" : "Käytössä", - "Not enabled" : "Ei käytössä", - "Federated Cloud Sharing" : "Federoitu pilvijakaminen", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL käyttää vanhentunutta %s-versiota (%s). Päivitä käyttöjärjestelmäsi tai ominaisuudet kuten %s eivät toimi luotettavasti.", - "A problem occurred, please check your log files (Error: %s)" : "Tapahtui virhe, tarkista lokitiedostot (Virhe: %s)", - "Migration Completed" : "Migraatio valmistui", - "Group already exists." : "Ryhmä on jo olemassa.", - "Unable to add group." : "Ryhmän lisääminen ei onnistunut.", - "Unable to delete group." : "Ryhmän poistaminen ei onnistunut.", - "log-level out of allowed range" : "lokitaso ei sallittujen rajojen sisäpuolella", - "Saved" : "Tallennettu", - "test email settings" : "testaa sähköpostiasetukset", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Sähköpostia lähettäessä tapahtui virhe. Tarkista asetukset. (Virhe: %s)", - "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.", - "Invalid mail address" : "Virheellinen sähköpostiosoite", - "A user with that name already exists." : "Käyttäjä samalla nimellä on jo olemassa.", - "Unable to create user." : "Käyttäjän luominen ei onnistunut.", - "Your %s account was created" : "%s-tilisi luotiin", - "Unable to delete user." : "Käyttäjän poistaminen ei onnistunut.", - "Forbidden" : "Estetty", - "Invalid user" : "Virheellinen käyttäjä", - "Unable to change mail address" : "Sähköpostiosoitteen vaihtaminen ei onnistunut", - "Email saved" : "Sähköposti tallennettu", - "Your full name has been changed." : "Koko nimesi on muutettu.", - "Unable to change full name" : "Koko nimen muuttaminen epäonnistui", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Haluatko varmasti liittää kohteen \"{domain}\" luotetuksi toimialueeksi?", - "Add trusted domain" : "Lisää luotettu toimialue", - "Migration in progress. Please wait until the migration is finished" : "Migraatio on kesken. Odota kunnes migraatio valmistuu", - "Migration started …" : "Migraatio käynnistyi…", - "Sending..." : "Lähetetään...", - "Official" : "Virallinen", - "Approved" : "Hyväksytty", - "Experimental" : "Kokeellinen", - "All" : "Kaikki", - "No apps found for your version" : "Sovelluksia ei löytynyt versiollesi", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Viralliset sovellukset kehitetään ownCloud-yhteisön toimesta. Sovellukset tarjoavat lisäominaisuuksia ownCloudin keskeisiin toimintoihin liittyen ja ovat valmiita tuotantokäyttöön.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Hyväksytyt sovellukset on kehitetty luotettujen kehittäjien toimesta. Hyväksytyille sovelluksille on suoritettu pintapuolinen turvallisuustarkastus. Sovelluksia ylläpidetään avoimen koodin tietovarastoissa. Sovellusten kehittäjät mieltävät sovellukset vakaiksi ja valmiiksi tavalliseen käyttöön.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Tätä sovellusta ei ole tarkistettu tietoturvauhkien varalta. Sovellus on uusi ja mahdollisesti tiedostettu epävakaaksi. Asenna omalla vastuulla.", - "Update to %s" : "Päivitä versioon %s", - "_You have %n app update pending_::_You have %n app updates pending_" : ["%n sovelluspäivitys odottaa","%n sovelluspäivitystä odottaa"], - "Please wait...." : "Odota hetki...", - "Error while disabling app" : "Virhe poistaessa sovellusta käytöstä", - "Disable" : "Poista käytöstä", - "Enable" : "Käytä", - "Error while enabling app" : "Virhe ottaessa sovellusta käyttöön", - "Error: this app cannot be enabled because it makes the server unstable" : "Virhe: tätä sovellusta ei voi ottaa käyttöön, koska se tekee palvelimesta epävakaan", - "Error: could not disable broken app" : "Virhe: rikkinäisen sovelluksen poistaminen käytöstä ei onnistunut", - "Error while disabling broken app" : "Virhe rikkinäistä sovellusta käytöstä poistaessa", - "Updating...." : "Päivitetään...", - "Error while updating app" : "Virhe sovellusta päivittäessä", - "Updated" : "Päivitetty", - "Uninstalling ...." : "Poistetaan asennusta....", - "Error while uninstalling app" : "Virhe sovellusta poistaessa", - "Uninstall" : "Poista asennus", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Tämä sovellus on otettu käyttöön, mutta se vaatii päivityksen. Sinut ohjataan päivityssivulle viiden sekunnin kuluttua.", - "App update" : "Sovelluspäivitys", - "No apps found for {query}" : "Haulla {query} ei löytynyt sovelluksia", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Tapahtu virhe. Lähetä ASCII-koodattu PEM-varmenne.", - "Valid until {date}" : "Kelvollinen {date} asti", - "Delete" : "Poista", - "An error occurred: {message}" : "Tapahtui virhe: {message}", - "Select a profile picture" : "Valitse profiilikuva", - "Very weak password" : "Erittäin heikko salasana", - "Weak password" : "Heikko salasana", - "So-so password" : "Kohtalainen salasana", - "Good password" : "Hyvä salasana", - "Strong password" : "Vahva salasana", - "Groups" : "Ryhmät", - "Unable to delete {objName}" : "Kohteen {objName} poistaminen epäonnistui", - "Error creating group: {message}" : "Virhe ryhmää luotaessa: {message}", - "A valid group name must be provided" : "Anna kelvollinen ryhmän nimi", - "deleted {groupName}" : "poistettu {groupName}", - "undo" : "kumoa", - "no group" : "ei ryhmää", - "never" : "ei koskaan", - "deleted {userName}" : "poistettu {userName}", - "add group" : "lisää ryhmä", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Salasanan muuttaminen johtaa tietojen häviämiseen, koska tietojen palautusta ei ole käytettävissä tämän käyttäjän kohdalla", - "A valid username must be provided" : "Anna kelvollinen käyttäjätunnus", - "Error creating user: {message}" : "Virhe käyttäjää luotaessa: {message}", - "A valid password must be provided" : "Anna kelvollinen salasana", - "A valid email must be provided" : "Tarvitaan kelvollinen sähköpostiosoite", - "__language_name__" : "_kielen_nimi_", - "Unlimited" : "Rajoittamaton", - "Personal info" : "Henkilökohtaiset tiedot", - "Sync clients" : "Synkronointisovellukset", - "Everything (fatal issues, errors, warnings, info, debug)" : "Kaikki (vakavat ongelmat, virheet, varoitukset, tiedot, vianjäljitys)", - "Info, warnings, errors and fatal issues" : "Tiedot, varoitukset, virheet ja vakavat ongelmat", - "Warnings, errors and fatal issues" : "Varoitukset, virheet ja vakavat ongelmat", - "Errors and fatal issues" : "Virheet ja vakavat ongelmat", - "Fatal issues only" : "Vain vakavat ongelmat", - "None" : "Ei mitään", - "Login" : "Kirjaudu", - "NT LAN Manager" : "NT LAN Manager", - "SSL" : "SSL", - "TLS" : "TLS", - "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." : "Vain luku -asetukset on otettu käyttöön. Tämä estää joidenkin asetusten määrittämisen selainkäyttöliittymän kautta. Lisäksi kyseinen tiedostoon tulee asettaa kirjoitusoikeus käsin joka päivityksen yhteydessä.", - "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Tämä johtuu todennäköisesti välimuistista tai kiihdyttimestä kuten Zend OPcachesta tai eAcceleratorista.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Palvelimesi käyttöjärjestelmä on Microsoft Windows. Suosittelemme käyttämään parhaan mahdollisen käyttökokemuksen saavuttamiseksi Linuxia.", - "%1$s below version %2$s is installed, for stability and performance reasons we recommend updating to a newer %1$s version." : "%1$s alle version %2$s on asennettu. Vakauden ja suorituskyvyn vuoksi suosittelemme päivittämään uudempaan %1$s-versioon.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP-moduuli \"fileinfo\" puuttuu. Sen käyttö on erittäin suositeltavaa, jotta MIME-tyypin havaitseminen onnistuu parhaalla mahdollisella tavalla.", - "System locale can not be set to a one which supports UTF-8." : "Järjestelmän maa-asetusta ei voi asettaa UTF-8:aa tukevaksi.", - "This means that there might be problems with certain characters in file names." : "Tämä tarkoittaa, että tiettyjen merkkien kanssa tiedostojen nimissä saattaa olla ongelmia.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Suosittelemme asentamaan vaaditut paketit järjestelmään, jotta järjestelmässä on tuki yhdelle seuraavista maa-asetuksista: %s.", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Cron-työn suorittaminen komentorivin kautta ei onnistunut. Ilmeni seuraavia teknisiä virheitä:", - "All checks passed." : "Läpäistiin kaikki tarkistukset.", - "Open documentation" : "Avaa dokumentaatio", - "Allow apps to use the Share API" : "Salli sovellusten käyttää jakamisen ohjelmointirajapintaa", - "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", - "Allow sharing with groups" : "Salli jakaminen ryhmien kanssa", - "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 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.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Salli käyttäjätunnuksen automaattinen täydentäminen jakamisikkunnassa. Jos tämä asetus on pois käytöstä, tulee käyttäjätunnus kirjoittaa kokonaan itse.", - "Last cron job execution: %s." : "Viimeisin cron-työn suoritus: %s.", - "Last cron job execution: %s. Something seems wrong." : "Viimeisin cron-työn suoritus: %s. Jokin vaikuttaa menneen pieleen.", - "Cron was not executed yet!" : "Cronia ei suoritettu vielä!", - "Execute one task with each page loaded" : "Suorita yksi tehtävä jokaista ladattua sivua kohden", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php kutsuu webcron-palvelun kautta cron.php:ta 15 minuutin välein http:tä käyttäen.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Käytä järjestelmän cron-palvelua cron.php-tiedoston kutsumista varten 15 minuutin välein.", - "Enable server-side encryption" : "Käytä palvelinpään salausta", - "Please read carefully before activating server-side encryption: " : "Lue tarkasti, ennen kuin otat palvelinpään salauksen käyttöön:", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "Salaaminen pelkästään ei takaa järjestelmän tietoturvaa. Tutustu ownCloudin dokumentaation saadaksesi lisätietoja salaussovelluksen toiminnasta ja tuetuista käyttötapauksista.", - "Be aware that encryption always increases the file size." : "Ota huomioon, että salaus kasvattaa aina tiedostojen kokoa.", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "Säännöllisten varmuuskopioiden ottaminen on erittäin tärkeää. Jos olet ottanut salauksen käyttöön, huolehdi salausavainten varmuuskopioinnista.", - "This is the final warning: Do you really want to enable encryption?" : "Tämä on viimeinen varoitus: haluatko varmasti ottaa salauksen käyttöön?", - "Enable encryption" : "Käytä salausta", - "No encryption module loaded, please enable an encryption module in the app menu." : "Salausmoduulia ei ole käytössä. Ota salausmoduuli käyttöön sovellusvalikosta.", - "Select default encryption module:" : "Valitse oletuksena käytettävä salausmoduuli:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Sinun täytyy siirtää salausavaimet vanhasta salaustekniikasta (ownCloud <= 8.0) uuteen. Ota \"Default encryption module\" käyttöön ja suorita komento 'occ encryption:migrate'", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Sinun täytyy siirtää salausavaimet vanhasta salaustekniikasta (ownCloud <= 8.0) uuteen.", - "Start migration" : "Käynnistä migraatio", - "This is used for sending out notifications." : "Tätä käytetään ilmoitusten lähettämiseen.", - "Send mode" : "Lähetystila", - "Encryption" : "Salaus", - "From address" : "Lähettäjän osoite", - "Authentication method" : "Tunnistautumistapa", - "Authentication required" : "Tunnistautuminen vaaditaan", - "Server address" : "Palvelimen osoite", - "Port" : "Portti", - "Credentials" : "Tilitiedot", - "SMTP Username" : "SMTP-käyttäjätunnus", - "SMTP Password" : "SMTP-salasana", - "Store credentials" : "Säilytä tilitiedot", - "Test email settings" : "Testaa sähköpostiasetukset", - "Send email" : "Lähetä sähköpostiviesti", - "Download logfile" : "Lataa lokitiedosto", - "More" : "Enemmän", - "Less" : "Vähemmän", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Lokitiedosto on kooltaan yli 100 megatavua. Sen lataaminen saattaa kestää hetken.", - "What to log" : "Mitä kerätään lokiin", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLitea käytetään tietokantana. Suuria asennuksia varten on suositeltavaa vaihtaa muuhun tietokantaan.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Varsinkin työpöytäsovelluksen tiedostosynkronointia käyttäessä SQLiten käyttö ei ole suositeltavaa.", - "How to do backups" : "Kuinka tehdä varmuuskopioita", - "Advanced monitoring" : "Edistynyt valvonta", - "Performance tuning" : "Suorituskyvyn hienosäätö", - "Improving the config.php" : "Config.php-tiedoston parantaminen", - "Theming" : "Teemojen käyttö", - "Hardening and security guidance" : "Turvaamis- ja tietoturvaopas", - "Version" : "Versio", - "Developer documentation" : "Kehittäjädokumentaatio", - "Experimental applications ahead" : "Kokeellisia sovelluksia edessä", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Kokeellisia sovelluksia ei ole tarkistettu tietoturvauhkien varalta. Sovellukset ovat uusia, ne saattavat olla epävakaita ja ovat nopean kehityksen alaisia. Kokeellisten sovellusten asentaminen saattaa aiheuttaa tietojen katoamista tai tietoturvauhkia.", - "by %s" : "tekijä %s", - "%s-licensed" : "%s -lisensoitu", - "Documentation:" : "Ohjeistus:", - "User documentation" : "Käyttäjädokumentaatio", - "Admin documentation" : "Ylläpitäjän ohjeistus", - "Show description …" : "Näytä kuvaus…", - "Hide description …" : "Piilota kuvaus…", - "This app has an update available." : "Tähän sovellukseen on päivitys saatavilla.", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Tälle sovellukselle ei ole määritelty ownCloudin vähimmäisversiota. Tämä johtaa virheeseen ownCloud 11:stä alkaen.", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Tälle sovellukselle ei ole määritelty ownCloudin enimmäisversiota. Tämä johtaa virheeseen ownCloud 11:stä alkaen.", - "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:", - "Enable only for specific groups" : "Salli vain tietyille ryhmille", - "Uninstall App" : "Poista sovelluksen asennus", - "Enable experimental apps" : "Käytä kokeiluasteella olevia sovelluksia", - "SSL Root Certificates" : "SSL-juurivarmenteet", - "Common Name" : "Yleinen nimi", - "Valid until" : "Kelvollinen", - "Issued By" : " Myöntänyt", - "Valid until %s" : "Kelvollinen %s asti", - "Import root certificate" : "Tuo juurivarmenne", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Hei<br><br>Sinulla on nyt %s-tili.<br><br>Käyttäjätunnus: %s<br>Aloita käyttö: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Kippis!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Hei\n\nSinulla on nyt %s-tili.\n\nKäyttäjätunnuksesi: %s\nAloita käyttö: %s\n\n", - "Administrator documentation" : "Ylläpidon dokumentaatio", - "Online documentation" : "Verkkodokumentaatio", - "Forum" : "Keskustelupalsta", - "Issue tracker" : "Ongelmien seuranta", - "Commercial support" : "Kaupallinen tuki", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "Käytössäsi on <strong>%s</strong>/<strong>%s</strong>", - "Profile picture" : "Profiilikuva", - "Upload new" : "Lähetä uusi", - "Select from Files" : "Valitse tiedostosovelluksesta", - "Remove image" : "Poista kuva", - "png or jpg, max. 20 MB" : "png tai jpg, korkeintaan 20 Mt", - "Picture provided by original account" : "Kuvan tarjoaa alkuperäinen tili", - "Cancel" : "Peru", - "Choose as profile picture" : "Valitse profiilikuvaksi", - "Full name" : "Koko nimi", - "No display name set" : "Näyttönimeä ei ole asetettu", - "Email" : "Sähköpostiosoite", - "Your email address" : "Sähköpostiosoitteesi", - "For password recovery and notifications" : "Salasanan nollausta ja ilmoituksia varten", - "No email address set" : "Sähköpostiosoitetta ei ole asetettu", - "You are member of the following groups:" : "Olet jäsenenä seuraavissa ryhmissä:", - "Password" : "Salasana", - "Unable to change your password" : "Salasanaasi ei voitu vaihtaa", - "Current password" : "Nykyinen salasana", - "New password" : "Uusi salasana", - "Change password" : "Vaihda salasana", - "Language" : "Kieli", - "Help translate" : "Auta kääntämisessä", - "Get the apps to sync your files" : "Aseta sovellukset synkronoimaan tiedostosi", - "Desktop client" : "Työpöytäsovellus", - "Android app" : "Android-sovellus", - "iOS app" : "iOS-sovellus", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Jos haluat tukea projektia, \n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">auta sovelluskehityksessä</a>\n\t\ttai\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">levitä sanaa</a>!", - "Show First Run Wizard again" : "Näytä ensimmäisen käyttökerran avustaja uudelleen", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Kehityksestä on vastannut {communityopen}ownCloud-yhteisö{linkclose}, {githubopen}lähdekoodi{linkclose} on {licenseopen}<abbr title=\"Affero General Public License\">AGPL-lisensoitu</abbr>{linkclose}.", - "Show storage location" : "Näytä tallennustilan sijainti", - "Show last log in" : "Näytä viimeisin sisäänkirjautuminen", - "Show user backend" : "Näytä käyttäjätaustaosa", - "Send email to new user" : "Lähetä sähköpostia uudelle käyttäjälle", - "Show email address" : "Näytä sähköpostiosoite", - "Username" : "Käyttäjätunnus", - "E-Mail" : "Sähköposti", - "Create" : "Luo", - "Admin Recovery Password" : "Ylläpitäjän palautussalasana", - "Enter the recovery password in order to recover the users files during password change" : "Anna palautussalasana, jotta käyttäjien tiedostot on mahdollista palauttaa salasanan muuttamisen yhteydessä", - "Add Group" : "Lisää ryhmä", - "Group" : "Ryhmä", - "Everyone" : "Kaikki", - "Admins" : "Ylläpitäjät", - "Default Quota" : "Oletuskiintiö", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Määritä tallennustilan kiintiö (esim. \"512 MB\" tai \"12 GB\")", - "Other" : "Muu", - "Full Name" : "Koko nimi", - "Group Admin for" : "Ryhmäylläpitäjä kohteille", - "Quota" : "Kiintiö", - "Storage Location" : "Tallennustilan sijainti", - "User Backend" : "Käyttäjätaustaosa", - "Last Login" : "Viimeisin kirjautuminen", - "change full name" : "muuta koko nimi", - "set new password" : "aseta uusi salasana", - "change email address" : "vaihda sähköpostiosoite", - "Default" : "Oletus" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/fil.js b/settings/l10n/fil.js deleted file mode 100644 index ee89a47a5d3..00000000000 --- a/settings/l10n/fil.js +++ /dev/null @@ -1,9 +0,0 @@ -OC.L10N.register( - "settings", - { - "Cancel" : "I-cancel", - "Password" : "Password", - "Change password" : "Palitan ang password", - "Username" : "Username" -}, -"nplurals=2; plural=(n > 1);"); diff --git a/settings/l10n/fil.json b/settings/l10n/fil.json deleted file mode 100644 index 74208ffe336..00000000000 --- a/settings/l10n/fil.json +++ /dev/null @@ -1,7 +0,0 @@ -{ "translations": { - "Cancel" : "I-cancel", - "Password" : "Password", - "Change password" : "Palitan ang password", - "Username" : "Username" -},"pluralForm" :"nplurals=2; plural=(n > 1);" -}
\ No newline at end of file diff --git a/settings/l10n/fr.js b/settings/l10n/fr.js deleted file mode 100644 index 6486a686b98..00000000000 --- a/settings/l10n/fr.js +++ /dev/null @@ -1,299 +0,0 @@ -OC.L10N.register( - "settings", - { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Avertissements de sécurité & configuration", - "Sharing" : "Partage", - "Server-side encryption" : "Chiffrement côté serveur", - "External Storage" : "Stockage externe", - "Cron" : "Cron", - "Email server" : "Serveur e-mail", - "Log" : "Log", - "Tips & tricks" : "Trucs et astuces", - "Updates" : "Mises à jour", - "Couldn't remove app." : "Impossible de supprimer l'application.", - "Language changed" : "Langue changée", - "Invalid request" : "Requête non valide", - "Authentication error" : "Erreur d'authentification", - "Admins can't remove themself from the admin group" : "Les administrateurs ne peuvent pas se retirer eux-mêmes du groupe admin", - "Unable to add user to group %s" : "Impossible d'ajouter l'utilisateur au groupe %s", - "Unable to remove user from group %s" : "Impossible de supprimer l'utilisateur du groupe %s", - "Couldn't update app." : "Impossible de mettre à jour l'application", - "Wrong password" : "Mot de passe incorrect", - "No user supplied" : "Aucun utilisateur fourni", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Veuillez fournir un mot de passe administrateur de récupération de données, sinon toutes les données de l'utilisateur seront perdues", - "Wrong admin recovery password. Please check the password and try again." : "Mot de passe administrateur de récupération de données non valable. Veuillez vérifier le mot de passe et essayer à nouveau.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "L'infrastructure d'arrière-plan ne supporte pas la modification de mot de passe, mais la clef de chiffrement de l'utilisateur a été mise à jour avec succès.", - "Unable to change password" : "Impossible de modifier le mot de passe", - "Enabled" : "Activées", - "Not enabled" : "Désactivées", - "installing and updating apps via the app store or Federated Cloud Sharing" : "le partage Federated Cloud ou l'installation et la mise à jour d'applications par l'app store", - "Federated Cloud Sharing" : "Federated Cloud Sharing", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL utilise %s %s, qui est une version obsolète. Veuillez mettre à jour votre système d'exploitation, ou des fonctionnalités telles que %s ne fonctionneront pas correctement.", - "A problem occurred, please check your log files (Error: %s)" : "Une erreur est survenue, veuillez vérifier vos fichiers de log (Erreur: %s)", - "Migration Completed" : "Migration terminée", - "Group already exists." : "Ce groupe existe déjà.", - "Unable to add group." : "Impossible d'ajouter le groupe.", - "Unable to delete group." : "Impossible de supprimer le groupe.", - "log-level out of allowed range" : "niveau de journalisation hors borne", - "Saved" : "Sauvegardé", - "test email settings" : "Test des paramètres e-mail", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Une erreur est survenue lors de l'envoi de l'e-mail. Veuillez vérifier vos paramètres. (Erreur: %s)", - "Email sent" : "E-mail envoyé", - "You need to set your user email before being able to send test emails." : "Vous devez définir une adresse e-mail dans vos paramètres personnels avant de pouvoir envoyer des e-mails de test.", - "Invalid mail address" : "Adresse e-mail non valide", - "A user with that name already exists." : "Un utilisateur à ce nom existe déjà.", - "Unable to create user." : "Impossible de créer l'utilisateur.", - "Your %s account was created" : "Votre compte %s a été créé", - "Unable to delete user." : "Impossible de supprimer l'utilisateur.", - "Forbidden" : "interdit", - "Invalid user" : "Utilisateur non valable", - "Unable to change mail address" : "Impossible de modifier l'adresse e-mail", - "Email saved" : "E-mail sauvegardé", - "Your full name has been changed." : "Votre nom complet a été modifié.", - "Unable to change full name" : "Impossible de changer le nom complet", - "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", - "Migration in progress. Please wait until the migration is finished" : "Migration en cours. Veuillez attendre que celle-ci se termine", - "Migration started …" : "Migration démarrée...", - "Sending..." : "Envoi en cours...", - "Official" : "Officielle", - "Approved" : "Approuvée", - "Experimental" : "Expérimentale", - "All" : "Tous", - "No apps found for your version" : "Pas d'application trouvée pour votre version", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Les applications officielles sont développées par et avec la communauté ownCloud. Elles permettent à ownCloud d'offrir ses fonctionnalités principales et sont prêtes pour une utilisation en environnement de production. ", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Les applications approuvées sont créées par des développeurs de confiance et ont passé les tests de sécurité. Elles sont activement maintenues et leur code source est ouvert. Leurs développeurs les considèrent stables pour une utilisation normale.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Cette application est nouvelle ou instable, et sa sécurité n'a pas été vérifiée. Installez-la à vos risques et périls!", - "Update to %s" : "Mettre à niveau vers la version %s", - "_You have %n app update pending_::_You have %n app updates pending_" : ["Vous avez %n application qui attend ça mise a jour .","Vous avez %n applications qui attendent leurs mise a jour ."], - "Please wait...." : "Veuillez patienter…", - "Error while disabling app" : "Erreur lors de la désactivation de l'application", - "Disable" : "Désactiver", - "Enable" : "Activer", - "Error while enabling app" : "Erreur lors de l'activation de l'application", - "Error: this app cannot be enabled because it makes the server unstable" : "Erreur : Cette application ne peut pas être activer car cela le serveur instable .", - "Error: could not disable broken app" : "Erreur : Impossible de désactiver l’application cassé ", - "Error while disabling broken app" : "Erreur lors de la désactivation de l'application cassé .", - "Updating...." : "Mise à jour...", - "Error while updating app" : "Erreur lors de la mise à jour de l'application", - "Updated" : "Mise à jour effectuée", - "Uninstalling ...." : "Désinstallation...", - "Error while uninstalling app" : "Erreur lors de la désinstallation de l'application", - "Uninstall" : "Désinstaller", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "L'application a été activée mais doit être mise à jour. Vous allez être redirigé vers la page des mises à jour dans 5 secondes.", - "App update" : "Mise à jour", - "No apps found for {query}" : "Aucune application trouvée pour {query}", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Une erreur est survenue. Veuillez fournir un certificat PEM encodé au format ASCII.", - "Valid until {date}" : "Valide jusqu'au {date}", - "Delete" : "Supprimer", - "An error occurred: {message}" : "Une erreur est survenue : {message}", - "Select a profile picture" : "Selectionnez une photo de profil ", - "Very weak password" : "Mot de passe de très faible sécurité", - "Weak password" : "Mot de passe de faible sécurité", - "So-so password" : "Mot de passe de sécurité tout juste acceptable", - "Good password" : "Mot de passe de sécurité suffisante", - "Strong password" : "Mot de passe de forte sécurité", - "Groups" : "Groupes", - "Unable to delete {objName}" : "Impossible de supprimer {objName}", - "Error creating group: {message}" : "Erreur lors de la création du groupe : {message}", - "A valid group name must be provided" : "Vous devez spécifier un nom de groupe valide", - "deleted {groupName}" : "{groupName} supprimé", - "undo" : "annuler", - "no group" : "Aucun groupe", - "never" : "jamais", - "deleted {userName}" : "{userName} supprimé", - "add group" : "ajouter un groupe", - "Changing the password will result in data loss, because data recovery is not available for this user" : "La modification du mot de passe entrainera la perte des données car la restauration de données n'est pas disponible pour cet utilisateur", - "A valid username must be provided" : "Un nom d'utilisateur valide doit être saisi", - "Error creating user: {message}" : "Erreur a la création d'un utilisateur : {message}", - "A valid password must be provided" : "Un mot de passe valide doit être saisi", - "A valid email must be provided" : "Vous devez fournir une adresse e-mail valide", - "__language_name__" : "Français", - "Unlimited" : "Illimité", - "Personal info" : "Informations personnelles", - "Sync clients" : "Clients de synchronisation", - "Everything (fatal issues, errors, warnings, info, debug)" : "Tout (erreurs fatales, erreurs, avertissements, informations, debogage)", - "Info, warnings, errors and fatal issues" : "Informations, avertissements, erreurs et erreurs fatales", - "Warnings, errors and fatal issues" : "Avertissements, erreurs et erreurs fatales", - "Errors and fatal issues" : "Erreurs et erreurs fatales", - "Fatal issues only" : "Erreurs fatales uniquement", - "None" : "Aucun", - "Login" : "Login", - "Plain" : "En clair", - "NT LAN Manager" : "Gestionnaire du réseau NT", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "php ne semble pas être configuré de manière à récupérer les valeurs des variables d’environnement. Le test de la commande getenv(\"PATH\") retourne seulement une réponse vide. ", - "Please check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation documentation ↗</a> for php configuration notes and the php configuration of your server, especially when using php-fpm." : "Veuillez consulter <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">la documentation d'installation ↗</a> pour savoir comment configurer php sur votre serveur, en particulier en cas d'utilisation de php-fpm.", - "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 avant chaque mise à jour.", - "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.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Votre serveur fonctionne actuellement sur une plateforme Microsoft Windows. Nous vous recommandons fortement d'utiliser une plateforme Linux pour une expérience utilisateur optimale.", - "%1$s below version %2$s is installed, for stability and performance reasons we recommend updating to a newer %1$s version." : "Une version de %1$s plus ancienne que %2$s est installée. Pour améliorer la stabilité et les performances, nous recommandons de mettre %1$s à jour.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Le module PHP 'fileinfo' est manquant. Il est vivement recommandé de l'activer afin d'obtenir de meilleurs résultats de détection mime-type.", - "Transactional file locking is disabled, this might lead to issues with race conditions. Enable 'filelocking.enabled' in config.php to avoid these problems. See the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a> for more information." : "Le verrouillage transactionnel de fichiers est désactivé. Cela peut causer des conflits en cas d'accès concurrent. Configurez 'filelocking.enabled' dans config.php pour éviter ces problèmes. Consultez la <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a> pour plus d'informations.", - "System locale can not be set to a one which supports UTF-8." : "Les paramètres régionaux n'ont pu être configurés avec prise en charge d'UTF-8.", - "This means that there might be problems with certain characters in file names." : "Cela signifie qu'il pourrait y avoir des problèmes avec certains caractères dans les noms de fichier.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Nous vous recommandons d'installer sur votre système les paquets nécessaires à la prise en charge de l'un des paramètres régionaux suivants : %s", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Si votre installation n'a pas été effectuée à la racine du domaine et qu'elle utilise le cron du système, il peut y avoir des problèmes avec la génération d'URL. Pour les éviter, veuillez configurer l'option \"overwrite.cli.url\" de votre fichier config.php avec le chemin de la racine de votre installation (suggéré : \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "La tâche cron n'a pu s'exécuter via CLI. Ces erreurs techniques sont apparues :", - "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"#log-section\">log</a>." : "Consultez les <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">guides d'installation ↗</a>, et cherchez des erreurs ou avertissements dans <a href=\"#log-section\">les logs</a>.", - "All checks passed." : "Tous les tests ont réussi.", - "Open documentation" : "Voir la documentation", - "Allow apps to use the Share API" : "Autoriser les applications à utiliser l'API de partage", - "Allow users to share via link" : "Autoriser les utilisateurs à partager par lien", - "Enforce password protection" : "Imposer 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 de partage par e-mail", - "Set default expiration date" : "Spécifier une 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", - "Allow sharing with groups" : "Autoriser le partage avec les groupes", - "Restrict users to only share with users in their groups" : "N'autoriser les partages qu'entre membres de mêmes groupes", - "Allow users to send mail notification for shared files to other users" : "Autoriser les utilisateurs à envoyer des notifications de partage par e-mail", - "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. ", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Activer l'autocomplétion des noms d'utilisateurs dans la fenêtre de partage. Si cette option est désactivée, les noms complets doivent être indiqués.", - "Last cron job execution: %s." : "Dernière tâche cron exécutée : %s.", - "Last cron job execution: %s. Something seems wrong." : "Dernière tâche cron exécutée : %s. Quelque chose s'est mal passé.", - "Cron was not executed yet!" : "Le cron n'a pas encore été exécuté !", - "Execute one task with each page loaded" : "Exécute une tâche à chaque chargement de page", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "Utilisez un service webcron pour exécuter cron.php toutes les 15 minutes par HTTP", - "Use system's cron service to call the cron.php file every 15 minutes." : "Utilisez le service cron du système pour appeler le fichier cron.php toutes les 15 minutes.", - "Enable server-side encryption" : "Activer le chiffrement côté serveur", - "Please read carefully before activating server-side encryption: " : "Veuillez lire ceci avec attention avant d'activer le chiffrement :", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "Une fois le chiffrement activé, les fichiers téléversés sur le serveur à partir de ce moment seront stockés sous forme chiffrée. Il n'est possible de désactiver le chiffrement que si le module utilisé le permet spécifiquement, et que toutes les conditions préalables sont réunies pour ce faire (par exemple la création d'une clef de récupération).", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "Le chiffrement seul ne peut garantir la sécurité du système. Veuillez consulter la documentation ownCloud pour comprendre comment fonctionne l'application de chiffrement, et les cas d'utilisation pris en charge.", - "Be aware that encryption always increases the file size." : "Veuillez noter que le chiffrement augmente toujours la taille des fichiers.", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "Il est opportun de sauvegarder régulièrement vos données. Si ces données sont chiffrées, n'oubliez pas de sauvegarder aussi les clés de chiffrement.", - "This is the final warning: Do you really want to enable encryption?" : "Dernier avertissement : Voulez-vous vraiment activer le chiffrement ?", - "Enable encryption" : "Activer le chiffrement", - "No encryption module loaded, please enable an encryption module in the app menu." : "Aucun module de chiffrement n'est chargé. Merci d'activer un module de chiffrement dans le menu des applications.", - "Select default encryption module:" : "Sélectionnez le module de chiffrement par défaut :", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Vous devez migrer vos clés de chiffrement de l'ancienne version (ownCloud <= 8.0) vers la nouvelle. Veuillez activer l'application \"Default Encryption Module\" et exécuter 'occ encryption:migrate'", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Vous devez migrer vos clés de chiffrement de l'ancienne version (ownCloud <= 8.0) vers la nouvelle.", - "Start migration" : "Démarrer la migration", - "This is used for sending out notifications." : "Ceci est utilisé pour l'envoi des notifications.", - "Send mode" : "Mode d'envoi", - "Encryption" : "Chiffrement", - "From address" : "Adresse source", - "mail" : "e-mail", - "Authentication method" : "Méthode d'authentification", - "Authentication required" : "Authentification requise", - "Server address" : "Adresse du serveur", - "Port" : "Port", - "Credentials" : "Informations d'identification", - "SMTP Username" : "Nom d'utilisateur SMTP", - "SMTP Password" : "Mot de passe SMTP", - "Store credentials" : "Enregistrer les identifiants", - "Test email settings" : "Tester les paramètres e-mail", - "Send email" : "Envoyer un e-mail", - "Download logfile" : "Télécharger le fichier de journalisation", - "More" : "Plus", - "Less" : "Moins", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "La taille du fichier journal excède 100 Mo. Le télécharger peut prendre un certain temps!", - "What to log" : "Ce qu'il faut journaliser", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite est actuellement utilisé comme gestionnaire de base de données. Pour des installations plus volumineuses, nous vous conseillons d'utiliser un autre gestionnaire de base de données.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "L'utilisation de SQLite est particulièrement déconseillée si vous utilisez le client de bureau pour synchroniser vos données.", - "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a>." : "Pour migrer vers un autre type de base de données, utilisez la ligne de commande : 'occ db:convert-type' ou consultez la <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a>.", - "How to do backups" : "Comment faire des sauvegardes", - "Advanced monitoring" : "Surveillance avancée", - "Performance tuning" : "Ajustement des performances", - "Improving the config.php" : "Amélioration du config.php ", - "Theming" : "Personnalisation de l'apparence", - "Hardening and security guidance" : "Guide pour le renforcement et la sécurité", - "Version" : "Version", - "Developer documentation" : "Documentation pour développeurs", - "Experimental applications ahead" : "Attention! Applications expérimentales", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Les applications expérimentales n'ont pas fait l'objet de tests de sécurité, sont encore en développement et peuvent être instables. Les installer peut causer des pertes de données ou des failles de sécurité. ", - "by %s" : "par %s", - "%s-licensed" : "Sous licence %s", - "Documentation:" : "Documentation :", - "User documentation" : "Documentation utilisateur", - "Admin documentation" : "Documentation administrateur", - "Show description …" : "Afficher la description...", - "Hide description …" : "Masquer la description", - "This app has an update available." : "Cette application a une mise à jour disponible.", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Cette app ne spécifie pas de version d'ownCloud minimale requise. Cela provoquera une erreur dans ownCloud 11+", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Cette app ne spécifie pas de version d'ownCloud maximale requise. Cela provoquera une erreur dans ownCloud 11+", - "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 :", - "Enable only for specific groups" : "Activer uniquement pour certains groupes", - "Uninstall App" : "Désinstaller l'application", - "Enable experimental apps" : "Activer les applications expérimentales", - "SSL Root Certificates" : "Certificats Racines SSL", - "Common Name" : "Nom d'usage", - "Valid until" : "Valide jusqu'à", - "Issued By" : "Délivré par", - "Valid until %s" : "Valide jusqu'à %s", - "Import root certificate" : "Importer un certificat racine", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Bonjour,<br><br>Un compte %s a été créé pour vous.<br><br>Votre nom d'utilisateur est : %s<br>Visitez votre compte : <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "À bientôt !", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Bonjour,<br><br>Un compte %s a été créé pour vous.<br><br>Votre nom d'utilisateur est : %s<br>Visitez votre compte : %s<br><br>\n", - "Administrator documentation" : "Documentation administrateur", - "Online documentation" : "Documentation en ligne", - "Forum" : "Forum", - "Issue tracker" : "Suivi de problèmes", - "Commercial support" : "Support commercial", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "Vous utilisez <strong>%s</strong> des <strong>%s<strong> disponibles", - "Profile picture" : "Photo de profil", - "Upload new" : "Nouvelle depuis votre ordinateur", - "Select from Files" : "Sélectionner depuis les Fichiers", - "Remove image" : "Supprimer l'image", - "png or jpg, max. 20 MB" : "png ou jpg, max. 20 Mo", - "Picture provided by original account" : "Photo fournie par le compte original", - "Cancel" : "Annuler", - "Choose as profile picture" : "Définir comme image de profil", - "Full name" : "Nom complet", - "No display name set" : "Aucun nom d'affichage configuré", - "Email" : "Adresse e-mail", - "Your email address" : "Votre adresse e-mail", - "For password recovery and notifications" : "Pour la récupération de mot de passe et les notifications", - "No email address set" : "Aucune adresse e-mail configurée", - "You are member of the following groups:" : "Vous êtes membre des groupes suivants :", - "Password" : "Mot de passe", - "Unable to change your password" : "Impossible de changer votre mot de passe", - "Current password" : "Mot de passe actuel", - "New password" : "Nouveau mot de passe", - "Change password" : "Changer de mot de passe", - "Language" : "Langue", - "Help translate" : "Aidez à traduire", - "Get the apps to sync your files" : "Obtenez les applications de synchronisation de vos fichiers", - "Desktop client" : "Client de bureau", - "Android app" : "Application Android", - "iOS app" : "Application iOS", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Si vous souhaitez apporter votre support au projet\n <a href=\"https://owncloud.org/contribute\"\n target=\"_blank\" rel=\"noreferrer\">rejoignez le développement</a>\n ou\n <a href=\"https://owncloud.org/promote\"\n target=\"_blank\" rel=\"noreferrer\">faites passer le mot</a> !", - "Show First Run Wizard again" : "Revoir la fenêtre d'accueil affichée lors de votre première connexion", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Développé par la {communityopen}communauté ownCloud{linkclose}, le {githubopen}code source{linkclose} est sous licence {licenseopen}<abbr lang=\"en\" title=\"Affero General Public License\">AGPL</abbr>{linkclose}.", - "Show storage location" : "Afficher l'emplacement du stockage", - "Show last log in" : "Montrer la dernière connexion", - "Show user backend" : "Montrer la source de l'identifiant", - "Send email to new user" : "Envoyer un e-mail aux utilisateurs créés", - "Show email address" : "Afficher l'adresse e-mail", - "Username" : "Nom d'utilisateur", - "E-Mail" : "E-Mail", - "Create" : "Créer", - "Admin Recovery Password" : "Mot de passe Administrateur de récupération", - "Enter the recovery password in order to recover the users files during password change" : "Entrez le mot de passe de récupération pour récupérer les fichiers utilisateurs pendant le changement de mot de passe", - "Add Group" : "Ajouter un groupe", - "Group" : "Groupe", - "Everyone" : "Tout le monde", - "Admins" : "Administrateurs", - "Default Quota" : "Quota par défaut", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Veuillez entrer le quota de stockage (ex. \"512 MB\" ou \"12 GB\")", - "Other" : "Autre", - "Full Name" : "Nom complet", - "Group Admin for" : "Administrateur de groupe pour", - "Quota" : "Quota", - "Storage Location" : "Emplacement du Stockage", - "User Backend" : "Source", - "Last Login" : "Dernière Connexion", - "change full name" : "Modifier le nom complet", - "set new password" : "Changer le mot de passe", - "change email address" : "changer l'adresse e-mail", - "Default" : "Défaut" -}, -"nplurals=2; plural=(n > 1);"); diff --git a/settings/l10n/fr.json b/settings/l10n/fr.json deleted file mode 100644 index f9e2365489a..00000000000 --- a/settings/l10n/fr.json +++ /dev/null @@ -1,297 +0,0 @@ -{ "translations": { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Avertissements de sécurité & configuration", - "Sharing" : "Partage", - "Server-side encryption" : "Chiffrement côté serveur", - "External Storage" : "Stockage externe", - "Cron" : "Cron", - "Email server" : "Serveur e-mail", - "Log" : "Log", - "Tips & tricks" : "Trucs et astuces", - "Updates" : "Mises à jour", - "Couldn't remove app." : "Impossible de supprimer l'application.", - "Language changed" : "Langue changée", - "Invalid request" : "Requête non valide", - "Authentication error" : "Erreur d'authentification", - "Admins can't remove themself from the admin group" : "Les administrateurs ne peuvent pas se retirer eux-mêmes du groupe admin", - "Unable to add user to group %s" : "Impossible d'ajouter l'utilisateur au groupe %s", - "Unable to remove user from group %s" : "Impossible de supprimer l'utilisateur du groupe %s", - "Couldn't update app." : "Impossible de mettre à jour l'application", - "Wrong password" : "Mot de passe incorrect", - "No user supplied" : "Aucun utilisateur fourni", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Veuillez fournir un mot de passe administrateur de récupération de données, sinon toutes les données de l'utilisateur seront perdues", - "Wrong admin recovery password. Please check the password and try again." : "Mot de passe administrateur de récupération de données non valable. Veuillez vérifier le mot de passe et essayer à nouveau.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "L'infrastructure d'arrière-plan ne supporte pas la modification de mot de passe, mais la clef de chiffrement de l'utilisateur a été mise à jour avec succès.", - "Unable to change password" : "Impossible de modifier le mot de passe", - "Enabled" : "Activées", - "Not enabled" : "Désactivées", - "installing and updating apps via the app store or Federated Cloud Sharing" : "le partage Federated Cloud ou l'installation et la mise à jour d'applications par l'app store", - "Federated Cloud Sharing" : "Federated Cloud Sharing", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL utilise %s %s, qui est une version obsolète. Veuillez mettre à jour votre système d'exploitation, ou des fonctionnalités telles que %s ne fonctionneront pas correctement.", - "A problem occurred, please check your log files (Error: %s)" : "Une erreur est survenue, veuillez vérifier vos fichiers de log (Erreur: %s)", - "Migration Completed" : "Migration terminée", - "Group already exists." : "Ce groupe existe déjà.", - "Unable to add group." : "Impossible d'ajouter le groupe.", - "Unable to delete group." : "Impossible de supprimer le groupe.", - "log-level out of allowed range" : "niveau de journalisation hors borne", - "Saved" : "Sauvegardé", - "test email settings" : "Test des paramètres e-mail", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Une erreur est survenue lors de l'envoi de l'e-mail. Veuillez vérifier vos paramètres. (Erreur: %s)", - "Email sent" : "E-mail envoyé", - "You need to set your user email before being able to send test emails." : "Vous devez définir une adresse e-mail dans vos paramètres personnels avant de pouvoir envoyer des e-mails de test.", - "Invalid mail address" : "Adresse e-mail non valide", - "A user with that name already exists." : "Un utilisateur à ce nom existe déjà.", - "Unable to create user." : "Impossible de créer l'utilisateur.", - "Your %s account was created" : "Votre compte %s a été créé", - "Unable to delete user." : "Impossible de supprimer l'utilisateur.", - "Forbidden" : "interdit", - "Invalid user" : "Utilisateur non valable", - "Unable to change mail address" : "Impossible de modifier l'adresse e-mail", - "Email saved" : "E-mail sauvegardé", - "Your full name has been changed." : "Votre nom complet a été modifié.", - "Unable to change full name" : "Impossible de changer le nom complet", - "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", - "Migration in progress. Please wait until the migration is finished" : "Migration en cours. Veuillez attendre que celle-ci se termine", - "Migration started …" : "Migration démarrée...", - "Sending..." : "Envoi en cours...", - "Official" : "Officielle", - "Approved" : "Approuvée", - "Experimental" : "Expérimentale", - "All" : "Tous", - "No apps found for your version" : "Pas d'application trouvée pour votre version", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Les applications officielles sont développées par et avec la communauté ownCloud. Elles permettent à ownCloud d'offrir ses fonctionnalités principales et sont prêtes pour une utilisation en environnement de production. ", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Les applications approuvées sont créées par des développeurs de confiance et ont passé les tests de sécurité. Elles sont activement maintenues et leur code source est ouvert. Leurs développeurs les considèrent stables pour une utilisation normale.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Cette application est nouvelle ou instable, et sa sécurité n'a pas été vérifiée. Installez-la à vos risques et périls!", - "Update to %s" : "Mettre à niveau vers la version %s", - "_You have %n app update pending_::_You have %n app updates pending_" : ["Vous avez %n application qui attend ça mise a jour .","Vous avez %n applications qui attendent leurs mise a jour ."], - "Please wait...." : "Veuillez patienter…", - "Error while disabling app" : "Erreur lors de la désactivation de l'application", - "Disable" : "Désactiver", - "Enable" : "Activer", - "Error while enabling app" : "Erreur lors de l'activation de l'application", - "Error: this app cannot be enabled because it makes the server unstable" : "Erreur : Cette application ne peut pas être activer car cela le serveur instable .", - "Error: could not disable broken app" : "Erreur : Impossible de désactiver l’application cassé ", - "Error while disabling broken app" : "Erreur lors de la désactivation de l'application cassé .", - "Updating...." : "Mise à jour...", - "Error while updating app" : "Erreur lors de la mise à jour de l'application", - "Updated" : "Mise à jour effectuée", - "Uninstalling ...." : "Désinstallation...", - "Error while uninstalling app" : "Erreur lors de la désinstallation de l'application", - "Uninstall" : "Désinstaller", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "L'application a été activée mais doit être mise à jour. Vous allez être redirigé vers la page des mises à jour dans 5 secondes.", - "App update" : "Mise à jour", - "No apps found for {query}" : "Aucune application trouvée pour {query}", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Une erreur est survenue. Veuillez fournir un certificat PEM encodé au format ASCII.", - "Valid until {date}" : "Valide jusqu'au {date}", - "Delete" : "Supprimer", - "An error occurred: {message}" : "Une erreur est survenue : {message}", - "Select a profile picture" : "Selectionnez une photo de profil ", - "Very weak password" : "Mot de passe de très faible sécurité", - "Weak password" : "Mot de passe de faible sécurité", - "So-so password" : "Mot de passe de sécurité tout juste acceptable", - "Good password" : "Mot de passe de sécurité suffisante", - "Strong password" : "Mot de passe de forte sécurité", - "Groups" : "Groupes", - "Unable to delete {objName}" : "Impossible de supprimer {objName}", - "Error creating group: {message}" : "Erreur lors de la création du groupe : {message}", - "A valid group name must be provided" : "Vous devez spécifier un nom de groupe valide", - "deleted {groupName}" : "{groupName} supprimé", - "undo" : "annuler", - "no group" : "Aucun groupe", - "never" : "jamais", - "deleted {userName}" : "{userName} supprimé", - "add group" : "ajouter un groupe", - "Changing the password will result in data loss, because data recovery is not available for this user" : "La modification du mot de passe entrainera la perte des données car la restauration de données n'est pas disponible pour cet utilisateur", - "A valid username must be provided" : "Un nom d'utilisateur valide doit être saisi", - "Error creating user: {message}" : "Erreur a la création d'un utilisateur : {message}", - "A valid password must be provided" : "Un mot de passe valide doit être saisi", - "A valid email must be provided" : "Vous devez fournir une adresse e-mail valide", - "__language_name__" : "Français", - "Unlimited" : "Illimité", - "Personal info" : "Informations personnelles", - "Sync clients" : "Clients de synchronisation", - "Everything (fatal issues, errors, warnings, info, debug)" : "Tout (erreurs fatales, erreurs, avertissements, informations, debogage)", - "Info, warnings, errors and fatal issues" : "Informations, avertissements, erreurs et erreurs fatales", - "Warnings, errors and fatal issues" : "Avertissements, erreurs et erreurs fatales", - "Errors and fatal issues" : "Erreurs et erreurs fatales", - "Fatal issues only" : "Erreurs fatales uniquement", - "None" : "Aucun", - "Login" : "Login", - "Plain" : "En clair", - "NT LAN Manager" : "Gestionnaire du réseau NT", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "php ne semble pas être configuré de manière à récupérer les valeurs des variables d’environnement. Le test de la commande getenv(\"PATH\") retourne seulement une réponse vide. ", - "Please check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation documentation ↗</a> for php configuration notes and the php configuration of your server, especially when using php-fpm." : "Veuillez consulter <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">la documentation d'installation ↗</a> pour savoir comment configurer php sur votre serveur, en particulier en cas d'utilisation de php-fpm.", - "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 avant chaque mise à jour.", - "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.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Votre serveur fonctionne actuellement sur une plateforme Microsoft Windows. Nous vous recommandons fortement d'utiliser une plateforme Linux pour une expérience utilisateur optimale.", - "%1$s below version %2$s is installed, for stability and performance reasons we recommend updating to a newer %1$s version." : "Une version de %1$s plus ancienne que %2$s est installée. Pour améliorer la stabilité et les performances, nous recommandons de mettre %1$s à jour.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Le module PHP 'fileinfo' est manquant. Il est vivement recommandé de l'activer afin d'obtenir de meilleurs résultats de détection mime-type.", - "Transactional file locking is disabled, this might lead to issues with race conditions. Enable 'filelocking.enabled' in config.php to avoid these problems. See the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a> for more information." : "Le verrouillage transactionnel de fichiers est désactivé. Cela peut causer des conflits en cas d'accès concurrent. Configurez 'filelocking.enabled' dans config.php pour éviter ces problèmes. Consultez la <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a> pour plus d'informations.", - "System locale can not be set to a one which supports UTF-8." : "Les paramètres régionaux n'ont pu être configurés avec prise en charge d'UTF-8.", - "This means that there might be problems with certain characters in file names." : "Cela signifie qu'il pourrait y avoir des problèmes avec certains caractères dans les noms de fichier.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Nous vous recommandons d'installer sur votre système les paquets nécessaires à la prise en charge de l'un des paramètres régionaux suivants : %s", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Si votre installation n'a pas été effectuée à la racine du domaine et qu'elle utilise le cron du système, il peut y avoir des problèmes avec la génération d'URL. Pour les éviter, veuillez configurer l'option \"overwrite.cli.url\" de votre fichier config.php avec le chemin de la racine de votre installation (suggéré : \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "La tâche cron n'a pu s'exécuter via CLI. Ces erreurs techniques sont apparues :", - "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"#log-section\">log</a>." : "Consultez les <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">guides d'installation ↗</a>, et cherchez des erreurs ou avertissements dans <a href=\"#log-section\">les logs</a>.", - "All checks passed." : "Tous les tests ont réussi.", - "Open documentation" : "Voir la documentation", - "Allow apps to use the Share API" : "Autoriser les applications à utiliser l'API de partage", - "Allow users to share via link" : "Autoriser les utilisateurs à partager par lien", - "Enforce password protection" : "Imposer 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 de partage par e-mail", - "Set default expiration date" : "Spécifier une 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", - "Allow sharing with groups" : "Autoriser le partage avec les groupes", - "Restrict users to only share with users in their groups" : "N'autoriser les partages qu'entre membres de mêmes groupes", - "Allow users to send mail notification for shared files to other users" : "Autoriser les utilisateurs à envoyer des notifications de partage par e-mail", - "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. ", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Activer l'autocomplétion des noms d'utilisateurs dans la fenêtre de partage. Si cette option est désactivée, les noms complets doivent être indiqués.", - "Last cron job execution: %s." : "Dernière tâche cron exécutée : %s.", - "Last cron job execution: %s. Something seems wrong." : "Dernière tâche cron exécutée : %s. Quelque chose s'est mal passé.", - "Cron was not executed yet!" : "Le cron n'a pas encore été exécuté !", - "Execute one task with each page loaded" : "Exécute une tâche à chaque chargement de page", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "Utilisez un service webcron pour exécuter cron.php toutes les 15 minutes par HTTP", - "Use system's cron service to call the cron.php file every 15 minutes." : "Utilisez le service cron du système pour appeler le fichier cron.php toutes les 15 minutes.", - "Enable server-side encryption" : "Activer le chiffrement côté serveur", - "Please read carefully before activating server-side encryption: " : "Veuillez lire ceci avec attention avant d'activer le chiffrement :", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "Une fois le chiffrement activé, les fichiers téléversés sur le serveur à partir de ce moment seront stockés sous forme chiffrée. Il n'est possible de désactiver le chiffrement que si le module utilisé le permet spécifiquement, et que toutes les conditions préalables sont réunies pour ce faire (par exemple la création d'une clef de récupération).", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "Le chiffrement seul ne peut garantir la sécurité du système. Veuillez consulter la documentation ownCloud pour comprendre comment fonctionne l'application de chiffrement, et les cas d'utilisation pris en charge.", - "Be aware that encryption always increases the file size." : "Veuillez noter que le chiffrement augmente toujours la taille des fichiers.", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "Il est opportun de sauvegarder régulièrement vos données. Si ces données sont chiffrées, n'oubliez pas de sauvegarder aussi les clés de chiffrement.", - "This is the final warning: Do you really want to enable encryption?" : "Dernier avertissement : Voulez-vous vraiment activer le chiffrement ?", - "Enable encryption" : "Activer le chiffrement", - "No encryption module loaded, please enable an encryption module in the app menu." : "Aucun module de chiffrement n'est chargé. Merci d'activer un module de chiffrement dans le menu des applications.", - "Select default encryption module:" : "Sélectionnez le module de chiffrement par défaut :", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Vous devez migrer vos clés de chiffrement de l'ancienne version (ownCloud <= 8.0) vers la nouvelle. Veuillez activer l'application \"Default Encryption Module\" et exécuter 'occ encryption:migrate'", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Vous devez migrer vos clés de chiffrement de l'ancienne version (ownCloud <= 8.0) vers la nouvelle.", - "Start migration" : "Démarrer la migration", - "This is used for sending out notifications." : "Ceci est utilisé pour l'envoi des notifications.", - "Send mode" : "Mode d'envoi", - "Encryption" : "Chiffrement", - "From address" : "Adresse source", - "mail" : "e-mail", - "Authentication method" : "Méthode d'authentification", - "Authentication required" : "Authentification requise", - "Server address" : "Adresse du serveur", - "Port" : "Port", - "Credentials" : "Informations d'identification", - "SMTP Username" : "Nom d'utilisateur SMTP", - "SMTP Password" : "Mot de passe SMTP", - "Store credentials" : "Enregistrer les identifiants", - "Test email settings" : "Tester les paramètres e-mail", - "Send email" : "Envoyer un e-mail", - "Download logfile" : "Télécharger le fichier de journalisation", - "More" : "Plus", - "Less" : "Moins", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "La taille du fichier journal excède 100 Mo. Le télécharger peut prendre un certain temps!", - "What to log" : "Ce qu'il faut journaliser", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite est actuellement utilisé comme gestionnaire de base de données. Pour des installations plus volumineuses, nous vous conseillons d'utiliser un autre gestionnaire de base de données.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "L'utilisation de SQLite est particulièrement déconseillée si vous utilisez le client de bureau pour synchroniser vos données.", - "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a>." : "Pour migrer vers un autre type de base de données, utilisez la ligne de commande : 'occ db:convert-type' ou consultez la <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a>.", - "How to do backups" : "Comment faire des sauvegardes", - "Advanced monitoring" : "Surveillance avancée", - "Performance tuning" : "Ajustement des performances", - "Improving the config.php" : "Amélioration du config.php ", - "Theming" : "Personnalisation de l'apparence", - "Hardening and security guidance" : "Guide pour le renforcement et la sécurité", - "Version" : "Version", - "Developer documentation" : "Documentation pour développeurs", - "Experimental applications ahead" : "Attention! Applications expérimentales", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Les applications expérimentales n'ont pas fait l'objet de tests de sécurité, sont encore en développement et peuvent être instables. Les installer peut causer des pertes de données ou des failles de sécurité. ", - "by %s" : "par %s", - "%s-licensed" : "Sous licence %s", - "Documentation:" : "Documentation :", - "User documentation" : "Documentation utilisateur", - "Admin documentation" : "Documentation administrateur", - "Show description …" : "Afficher la description...", - "Hide description …" : "Masquer la description", - "This app has an update available." : "Cette application a une mise à jour disponible.", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Cette app ne spécifie pas de version d'ownCloud minimale requise. Cela provoquera une erreur dans ownCloud 11+", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Cette app ne spécifie pas de version d'ownCloud maximale requise. Cela provoquera une erreur dans ownCloud 11+", - "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 :", - "Enable only for specific groups" : "Activer uniquement pour certains groupes", - "Uninstall App" : "Désinstaller l'application", - "Enable experimental apps" : "Activer les applications expérimentales", - "SSL Root Certificates" : "Certificats Racines SSL", - "Common Name" : "Nom d'usage", - "Valid until" : "Valide jusqu'à", - "Issued By" : "Délivré par", - "Valid until %s" : "Valide jusqu'à %s", - "Import root certificate" : "Importer un certificat racine", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Bonjour,<br><br>Un compte %s a été créé pour vous.<br><br>Votre nom d'utilisateur est : %s<br>Visitez votre compte : <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "À bientôt !", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Bonjour,<br><br>Un compte %s a été créé pour vous.<br><br>Votre nom d'utilisateur est : %s<br>Visitez votre compte : %s<br><br>\n", - "Administrator documentation" : "Documentation administrateur", - "Online documentation" : "Documentation en ligne", - "Forum" : "Forum", - "Issue tracker" : "Suivi de problèmes", - "Commercial support" : "Support commercial", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "Vous utilisez <strong>%s</strong> des <strong>%s<strong> disponibles", - "Profile picture" : "Photo de profil", - "Upload new" : "Nouvelle depuis votre ordinateur", - "Select from Files" : "Sélectionner depuis les Fichiers", - "Remove image" : "Supprimer l'image", - "png or jpg, max. 20 MB" : "png ou jpg, max. 20 Mo", - "Picture provided by original account" : "Photo fournie par le compte original", - "Cancel" : "Annuler", - "Choose as profile picture" : "Définir comme image de profil", - "Full name" : "Nom complet", - "No display name set" : "Aucun nom d'affichage configuré", - "Email" : "Adresse e-mail", - "Your email address" : "Votre adresse e-mail", - "For password recovery and notifications" : "Pour la récupération de mot de passe et les notifications", - "No email address set" : "Aucune adresse e-mail configurée", - "You are member of the following groups:" : "Vous êtes membre des groupes suivants :", - "Password" : "Mot de passe", - "Unable to change your password" : "Impossible de changer votre mot de passe", - "Current password" : "Mot de passe actuel", - "New password" : "Nouveau mot de passe", - "Change password" : "Changer de mot de passe", - "Language" : "Langue", - "Help translate" : "Aidez à traduire", - "Get the apps to sync your files" : "Obtenez les applications de synchronisation de vos fichiers", - "Desktop client" : "Client de bureau", - "Android app" : "Application Android", - "iOS app" : "Application iOS", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Si vous souhaitez apporter votre support au projet\n <a href=\"https://owncloud.org/contribute\"\n target=\"_blank\" rel=\"noreferrer\">rejoignez le développement</a>\n ou\n <a href=\"https://owncloud.org/promote\"\n target=\"_blank\" rel=\"noreferrer\">faites passer le mot</a> !", - "Show First Run Wizard again" : "Revoir la fenêtre d'accueil affichée lors de votre première connexion", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Développé par la {communityopen}communauté ownCloud{linkclose}, le {githubopen}code source{linkclose} est sous licence {licenseopen}<abbr lang=\"en\" title=\"Affero General Public License\">AGPL</abbr>{linkclose}.", - "Show storage location" : "Afficher l'emplacement du stockage", - "Show last log in" : "Montrer la dernière connexion", - "Show user backend" : "Montrer la source de l'identifiant", - "Send email to new user" : "Envoyer un e-mail aux utilisateurs créés", - "Show email address" : "Afficher l'adresse e-mail", - "Username" : "Nom d'utilisateur", - "E-Mail" : "E-Mail", - "Create" : "Créer", - "Admin Recovery Password" : "Mot de passe Administrateur de récupération", - "Enter the recovery password in order to recover the users files during password change" : "Entrez le mot de passe de récupération pour récupérer les fichiers utilisateurs pendant le changement de mot de passe", - "Add Group" : "Ajouter un groupe", - "Group" : "Groupe", - "Everyone" : "Tout le monde", - "Admins" : "Administrateurs", - "Default Quota" : "Quota par défaut", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Veuillez entrer le quota de stockage (ex. \"512 MB\" ou \"12 GB\")", - "Other" : "Autre", - "Full Name" : "Nom complet", - "Group Admin for" : "Administrateur de groupe pour", - "Quota" : "Quota", - "Storage Location" : "Emplacement du Stockage", - "User Backend" : "Source", - "Last Login" : "Dernière Connexion", - "change full name" : "Modifier le nom complet", - "set new password" : "Changer le mot de passe", - "change email address" : "changer l'adresse e-mail", - "Default" : "Défaut" -},"pluralForm" :"nplurals=2; plural=(n > 1);" -}
\ No newline at end of file diff --git a/settings/l10n/gl.js b/settings/l10n/gl.js deleted file mode 100644 index 125a5cbb601..00000000000 --- a/settings/l10n/gl.js +++ /dev/null @@ -1,263 +0,0 @@ -OC.L10N.register( - "settings", - { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Avisos de seguridade e configuración", - "Sharing" : "Compartindo", - "Server-side encryption" : "Cifrado na parte do servidor", - "External Storage" : "Almacenamento externo", - "Cron" : "Cron", - "Email server" : "Servidor de correo", - "Log" : "Rexistro", - "Tips & tricks" : "Trucos e consellos", - "Updates" : "Actualizacións", - "Couldn't remove app." : "Non foi posíbel retirar a aplicación.", - "Language changed" : "O idioma cambiou", - "Invalid request" : "Petición incorrecta", - "Authentication error" : "Produciuse un erro de autenticación", - "Admins can't remove themself from the admin group" : "Os administradores non poden eliminarse a si mesmos do grupo admin", - "Unable to add user to group %s" : "Non é posíbel engadir o usuario ao grupo %s", - "Unable to remove user from group %s" : "Non é posíbel eliminar o usuario do grupo %s", - "Couldn't update app." : "Non foi posíbel actualizar a aplicación.", - "Wrong password" : "Contrasinal incorrecto", - "No user supplied" : "Non subministrado polo usuario", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Forneza un contrasinal de recuperación do administrador de recuperación, senón perderanse todos os datos do usuario", - "Wrong admin recovery password. Please check the password and try again." : "Contrasinal de recuperación do administrador incorrecto. Comprobe o contrasinal e ténteo de novo.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "A infraestrutura non admite o cambio de contrasinal, mais a chave de cifrado do usuario foi actualizada correctamente.", - "Unable to change password" : "Non é posíbel cambiar o contrasinal", - "Enabled" : "Activado", - "Not enabled" : "Non activado", - "installing and updating apps via the app store or Federated Cloud Sharing" : "instalando e actualizando aplicacións a través da tenda de aplicacións ou da nube federada compartida", - "Federated Cloud Sharing" : "Nube federada compartida", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está utilizando unha versión obsoleta %s (%s). Actualice o seu sistema operativo, caso contrario características como %s non funcionarán de xeito fiábel.", - "A problem occurred, please check your log files (Error: %s)" : "Ocorreu un problema revise os ficheiros de rexistro (Erro: %s)", - "Migration Completed" : "Completouse a migración", - "Group already exists." : "Xa existe o grupo.", - "Unable to add group." : "Non é posíbel engadir o grupo.", - "Unable to delete group." : "Non é posíbel eliminar o grupo.", - "log-level out of allowed range" : "o nivel do rexistro está fora do intervalo admitido", - "Saved" : "Gardado", - "test email settings" : "correo de proba dos axustes", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Ocorreu un problema ao enviar o correo. Revise a súa configuración. (Erro: %s)", - "Email sent" : "Correo enviado", - "You need to set your user email before being able to send test emails." : "É necesario configurar o correo do usuario antes de poder enviar mensaxes de correo de proba.", - "Invalid mail address" : "Enderezo de correo incorrecto", - "A user with that name already exists." : "Xa existe un usuario con ese nome.", - "Unable to create user." : "Non é posíbel crear o usuario.", - "Your %s account was created" : "Foi creada a conta %s", - "Unable to delete user." : "Non é posíbel eliminar o usuario.", - "Forbidden" : "Prohibido", - "Invalid user" : "Usuario incorrecto", - "Unable to change mail address" : "Non é posíbel cambiar o enderezo de correo.", - "Email saved" : "Correo gardado", - "Your full name has been changed." : "O seu nome completo foi cambiado", - "Unable to change full name" : "Non é posíbel cambiar o nome completo", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Confirma que quere engadir «{domain}» como dominio de confianza?", - "Add trusted domain" : "Engadir dominio de confianza", - "Migration in progress. Please wait until the migration is finished" : "A migración está en proceso. Agarde a que remate.", - "Migration started …" : "Iniciada a migración ...", - "Sending..." : "Enviando...", - "Official" : "Oficial", - "Approved" : "Aprobado", - "Experimental" : "Experimental", - "All" : "Todo", - "No apps found for your version" : "Non se atoparon aplicativos para esta versión", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "As aplicacións oficiais son desenvolvidas pola comunidade dentro de ownCloud. Ofrecen una funcionalidade central para ownCloud e están preparadas para o seu uso en produción.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "As aplicacións aprobadas son desenvolvidas por desenvolvedores de confianza e pasaron un control de seguridade superficial. Mantéñense activamente nun repositorio de código aberto e os seus mantedores consideran que son estábeis para uso casual normal.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "A esta aplicación non se lle fixeron comprobacións de seguridade, ademais é nova ou coñecida por ser inestábel. Instálea baixo a súa responsabilidade.", - "Update to %s" : "Actualizar a %s", - "Please wait...." : "Agarde...", - "Error while disabling app" : "Produciuse un erro ao desactivar a aplicación", - "Disable" : "Desactivar", - "Enable" : "Activar", - "Error while enabling app" : "Produciuse un erro ao activar a aplicación", - "Updating...." : "Actualizando...", - "Error while updating app" : "Produciuse un erro mentres actualizaba a aplicación", - "Updated" : "Actualizado", - "Uninstalling ...." : "Desinstalando ...", - "Error while uninstalling app" : "Produciuse un erro ao desinstalar o aplicatvo", - "Uninstall" : "Desinstalar", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Produciuse un erro. Envíe un certificado PEM codificado en ASCII.", - "Valid until {date}" : "Válido ata {date}", - "Delete" : "Eliminar", - "An error occurred: {message}" : "Produciuse un erro: {message}", - "Select a profile picture" : "Seleccione unha imaxe para o perfil", - "Very weak password" : "Contrasinal moi feble", - "Weak password" : "Contrasinal feble", - "So-so password" : "Contrasinal non moi aló", - "Good password" : "Bo contrasinal", - "Strong password" : "Contrasinal forte", - "Groups" : "Grupos", - "Unable to delete {objName}" : "Non é posíbel eliminar {objName}", - "A valid group name must be provided" : "Debe fornecer un nome de grupo", - "deleted {groupName}" : "{groupName} foi eliminado", - "undo" : "desfacer", - "no group" : "sen grupo", - "never" : "nunca", - "deleted {userName}" : "{userName} foi eliminado", - "add group" : "engadir un grupo", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Cambiar o contrasinal provocará unha perda de datos, xa que a recuperación de datos non está dispoñíbel para este usuario", - "A valid username must be provided" : "Debe fornecer un nome de usuario", - "A valid password must be provided" : "Debe fornecer un contrasinal", - "A valid email must be provided" : "Ten que fornecer un correo funcional", - "__language_name__" : "Galego", - "Unlimited" : "Sen límites", - "Personal info" : "Información persoal", - "Sync clients" : "Clientes de sincronización", - "Everything (fatal issues, errors, warnings, info, debug)" : "Todo (incidencias críticas, erros, avisos, información, depuración)", - "Info, warnings, errors and fatal issues" : "Información, avisos, erros e incidencias críticas", - "Warnings, errors and fatal issues" : "Avisos, erros e incidencias críticas", - "Errors and fatal issues" : "Erros e incidencias críticas", - "Fatal issues only" : "Só incidencias críticas", - "None" : "Ningún", - "Login" : "Acceso", - "Plain" : "Simple", - "NT LAN Manager" : "Xestor NT LAN", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "Semella que PHP non está configurado correctamente para consultar as variábeis de entorno do sistema. A proba con getenv(\"PATH\") só devolve unha resposta baleira.", - "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.", - "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "Parece que PHP foi configuración para substituír bloques de documentos en liña. Isto fará que varias aplicacións sexan inaccesíbeis.", - "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Isto probabelmente se debe unha caché/acelerador como Zend OPcache ou eAccelerator.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "O seu servidor funciona baixo Windows de Microsoft. Recomendámoslle encarecidamente que empregue Linux para obter unha perfecta experiencia de usuario.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Non se atopou o módulo de PHP «fileinfo». É recomendábel activar este módulo para obter os mellores resultados coa detección do tipo MIME.", - "System locale can not be set to a one which supports UTF-8." : "Non é posíbel estabelecer a configuración rexional do sistema a unha que admita UTF-8.", - "This means that there might be problems with certain characters in file names." : "Isto significa que pode haber problemas con certos caracteres en nomes de ficheiro.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Recomendámoslle que instale no sistema os paquetes necesarios para admitir unha das seguintes configuracións rexionais: %s.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Se a instalación no está feita na raíz do dominio e usa o sistema cron, pode haber incidencias coa xeración de URL. Para evitar estes problemas, axuste a opción «overwrite.cli.url» no seu ficheiro config.php á ruta webroot da instalación (suxestión: «%s»)", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Non foi posíbel executar a tarefa de cron programada desde a liña de ordes. Atopáronse os seguintes erros técnicos:", - "Open documentation" : "Abrir a documentación", - "Allow apps to use the Share API" : "Permitir que as aplicacións empreguen o API para compartir", - "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 to other users" : "Permitirlle aos usuarios enviar notificacións por correo a outros usuarios para notificarlles 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.", - "Last cron job execution: %s." : "Última execución da tarefa de cron: %s.", - "Last cron job execution: %s. Something seems wrong." : "Última execución da tarefa de cron: %s. Semella que algo vai mal", - "Cron was not executed yet!" : "«Cron» aínda non foi executado!", - "Execute one task with each page loaded" : "Executar unha tarefa con cada páxina cargada", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php está rexistrado nun servizo de WebCron para chamar a cron.php cada 15 minutos a través de HTTP.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Use o servizo «cron» do sistema para chamar ao ficheiro cron.php cada 15 minutos.", - "Enable server-side encryption" : "Activar o cifrado na parte do servidor", - "Enable encryption" : "Activar o cifrado", - "No encryption module loaded, please enable an encryption module in the app menu." : "Non hai cargado ningún módulo de cifrado, active un módulo de cifrado no menú de aplicacións.", - "Select default encryption module:" : "Seleccionar o módulo predeterminado de cifrado:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "É necesario migrar as súas chaves de cifrado do antigo cifrado (ownCloud <= 8,0) cara ao novo. Active o «Módulo predeterminado de cifrado» e execute «occ encryption:migrate»", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "É necesario migrar as chaves de cifrado do antigo cifrado (ownCloud <= 8,0) cara ao novo.", - "Start migration" : "Iniciar a migración", - "This is used for sending out notifications." : "Isto utilizase para o envío de notificacións.", - "Send mode" : "Modo de envío", - "Encryption" : "Cifrado", - "From address" : "Desde o enderezo", - "mail" : "correo", - "Authentication method" : "Método de autenticación", - "Authentication required" : "Requírese autenticación", - "Server address" : "Enderezo do servidor", - "Port" : "Porto", - "Credentials" : "Credenciais", - "SMTP Username" : "Nome de usuario SMTP", - "SMTP Password" : "Contrasinal SMTP", - "Store credentials" : "Gardar as credenciais", - "Test email settings" : "Correo de proba dos axustes", - "Send email" : "Enviar o correo", - "Download logfile" : "Descargar o ficheiro do rexistro", - "More" : "Máis", - "Less" : "Menos", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "O ficheiro de rexistro é maior de 100 MB. Pódelle levar un anaco descargalo!", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "Empregase SQLite como base de datos. Para instalacións grandes recomendámoslle que cambie a unha infraestrutura de base de datos diferente.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Concretamente, se emprega o cliente de escritorio para sincronización, desaconsellámoslle o uso de SQLite", - "How to do backups" : "Como facer copias de seguridade", - "Advanced monitoring" : "Supervisión avanzada", - "Performance tuning" : "Afinación do rendemento", - "Improving the config.php" : "Mellorando o config.php", - "Theming" : "Tematización", - "Hardening and security guidance" : "Orientacións sobre fortificación e seguridade", - "Version" : "Versión", - "Developer documentation" : "Documentación do desenvolvedor", - "Experimental applications ahead" : "Ante as aplicacións experimentais", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "As aplicacións experimentais, novas ou coñecidas por ser inestábeis e en forte desenvolvemento, non se lles fan comprobacións de seguridade. A súa instalación pode provocar a perda de datos o violacións de seguridade.", - "Documentation:" : "Documentación:", - "User documentation" : "Documentación do usuario", - "Admin documentation" : "Documentación do administrador", - "Show description …" : "Amosar a descrición ...", - "Hide description …" : "Agochar a descrición ...", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Non é posíbel instalar esta aplicación por mor de non cumprirse as dependencias:", - "Enable only for specific groups" : "Activar só para grupos específicos", - "Uninstall App" : "Desinstalar unha aplicación", - "Enable experimental apps" : "Activar as aplicacións experimentais", - "Common Name" : "Nome común", - "Valid until" : "Válido ata", - "Issued By" : "Fornecido por", - "Valid until %s" : "Válido ata %s", - "Import root certificate" : "Importar o certificado raíz", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Ola,<br><br>Só facerlle saber que dispón da conta %s.<br><br>O seu nome de usuario: %s<br>Para acceder a ela: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Saúdos!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Ola,\n\nSó facerlle saber que dispón da conta %s.\n\nO seu nome de usuario: %s\nPara acceder a ela: %s\n", - "Administrator documentation" : "Documentación do administrador", - "Online documentation" : "Documentación en liña", - "Forum" : "Foro", - "Issue tracker" : "Seguimento de incidencias", - "Commercial support" : "Asistencia comercial", - "Profile picture" : "Imaxe do perfil", - "Upload new" : "Novo envío", - "Remove image" : "Retirar a imaxe", - "Cancel" : "Cancelar", - "Full name" : "Nome completo", - "No display name set" : "Sen nome visíbel estabelecido", - "Email" : "Correo", - "Your email address" : "O seu enderezo de correo", - "No email address set" : "Non hai un enderezo de correo definido", - "You are member of the following groups:" : "Vostede é membro dos seguintes grupos:", - "Password" : "Contrasinal", - "Unable to change your password" : "Non é posíbel cambiar o seu contrasinal", - "Current password" : "Contrasinal actual", - "New password" : "Novo contrasinal", - "Change password" : "Cambiar o contrasinal", - "Language" : "Idioma", - "Help translate" : "Axude na tradución", - "Get the apps to sync your files" : "Obteña as aplicacións para sincronizar os seus ficheiros", - "Desktop client" : "Cliente de escritorio", - "Android app" : "Aplicación Android", - "iOS app" : "Aplicación iOS", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Se quere axudar ao proxecto\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">únase ao desenvolvemento</a>\n\t\tou\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">espalle a nova</a>!", - "Show First Run Wizard again" : "Amosar o axudante da primeira execución outra vez", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Desenvolvido pola {communityopen}comunidade ownCloud{linkclose}, o {githubopen}código fonte{linkclose} está licenciado baixo a {licenseopen}<abbr title=\"Licencia Pública Xeral Affero\">AGPL</abbr>{linkclose}.", - "Show storage location" : "Amosar a localización do almacenamento", - "Show last log in" : "Amosar a última conexión", - "Show user backend" : "Amosar a infraestrutura do usuario", - "Send email to new user" : "Enviar correo ao novo usuario", - "Show email address" : "Amosar o enderezo de correo", - "Username" : "Nome de usuario", - "E-Mail" : "Correo-e", - "Create" : "Crear", - "Admin Recovery Password" : "Contrasinal de recuperación do administrador", - "Enter the recovery password in order to recover the users files during password change" : "Introduza o contrasinal de recuperación para recuperar os ficheiros dos usuarios durante o cambio de contrasinal", - "Add Group" : "Engadir un grupo", - "Group" : "Grupo", - "Everyone" : "Todos", - "Admins" : "Administradores", - "Default Quota" : "Cota por omisión", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Introduza a cota de almacenamento (p.ex. «512 MB» ou «12 GB»)", - "Other" : "Outro", - "Full Name" : "Nome completo", - "Group Admin for" : "Grupo de Admin para", - "Quota" : "Cota", - "Storage Location" : "Localización do almacenamento", - "User Backend" : "Infraestrutura do usuario", - "Last Login" : "Último acceso", - "change full name" : "Cambiar o nome completo", - "set new password" : "estabelecer un novo contrasinal", - "change email address" : "cambiar o enderezo de correo", - "Default" : "Predeterminado" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/gl.json b/settings/l10n/gl.json deleted file mode 100644 index 8eb80bc7d9d..00000000000 --- a/settings/l10n/gl.json +++ /dev/null @@ -1,261 +0,0 @@ -{ "translations": { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Avisos de seguridade e configuración", - "Sharing" : "Compartindo", - "Server-side encryption" : "Cifrado na parte do servidor", - "External Storage" : "Almacenamento externo", - "Cron" : "Cron", - "Email server" : "Servidor de correo", - "Log" : "Rexistro", - "Tips & tricks" : "Trucos e consellos", - "Updates" : "Actualizacións", - "Couldn't remove app." : "Non foi posíbel retirar a aplicación.", - "Language changed" : "O idioma cambiou", - "Invalid request" : "Petición incorrecta", - "Authentication error" : "Produciuse un erro de autenticación", - "Admins can't remove themself from the admin group" : "Os administradores non poden eliminarse a si mesmos do grupo admin", - "Unable to add user to group %s" : "Non é posíbel engadir o usuario ao grupo %s", - "Unable to remove user from group %s" : "Non é posíbel eliminar o usuario do grupo %s", - "Couldn't update app." : "Non foi posíbel actualizar a aplicación.", - "Wrong password" : "Contrasinal incorrecto", - "No user supplied" : "Non subministrado polo usuario", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Forneza un contrasinal de recuperación do administrador de recuperación, senón perderanse todos os datos do usuario", - "Wrong admin recovery password. Please check the password and try again." : "Contrasinal de recuperación do administrador incorrecto. Comprobe o contrasinal e ténteo de novo.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "A infraestrutura non admite o cambio de contrasinal, mais a chave de cifrado do usuario foi actualizada correctamente.", - "Unable to change password" : "Non é posíbel cambiar o contrasinal", - "Enabled" : "Activado", - "Not enabled" : "Non activado", - "installing and updating apps via the app store or Federated Cloud Sharing" : "instalando e actualizando aplicacións a través da tenda de aplicacións ou da nube federada compartida", - "Federated Cloud Sharing" : "Nube federada compartida", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está utilizando unha versión obsoleta %s (%s). Actualice o seu sistema operativo, caso contrario características como %s non funcionarán de xeito fiábel.", - "A problem occurred, please check your log files (Error: %s)" : "Ocorreu un problema revise os ficheiros de rexistro (Erro: %s)", - "Migration Completed" : "Completouse a migración", - "Group already exists." : "Xa existe o grupo.", - "Unable to add group." : "Non é posíbel engadir o grupo.", - "Unable to delete group." : "Non é posíbel eliminar o grupo.", - "log-level out of allowed range" : "o nivel do rexistro está fora do intervalo admitido", - "Saved" : "Gardado", - "test email settings" : "correo de proba dos axustes", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Ocorreu un problema ao enviar o correo. Revise a súa configuración. (Erro: %s)", - "Email sent" : "Correo enviado", - "You need to set your user email before being able to send test emails." : "É necesario configurar o correo do usuario antes de poder enviar mensaxes de correo de proba.", - "Invalid mail address" : "Enderezo de correo incorrecto", - "A user with that name already exists." : "Xa existe un usuario con ese nome.", - "Unable to create user." : "Non é posíbel crear o usuario.", - "Your %s account was created" : "Foi creada a conta %s", - "Unable to delete user." : "Non é posíbel eliminar o usuario.", - "Forbidden" : "Prohibido", - "Invalid user" : "Usuario incorrecto", - "Unable to change mail address" : "Non é posíbel cambiar o enderezo de correo.", - "Email saved" : "Correo gardado", - "Your full name has been changed." : "O seu nome completo foi cambiado", - "Unable to change full name" : "Non é posíbel cambiar o nome completo", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Confirma que quere engadir «{domain}» como dominio de confianza?", - "Add trusted domain" : "Engadir dominio de confianza", - "Migration in progress. Please wait until the migration is finished" : "A migración está en proceso. Agarde a que remate.", - "Migration started …" : "Iniciada a migración ...", - "Sending..." : "Enviando...", - "Official" : "Oficial", - "Approved" : "Aprobado", - "Experimental" : "Experimental", - "All" : "Todo", - "No apps found for your version" : "Non se atoparon aplicativos para esta versión", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "As aplicacións oficiais son desenvolvidas pola comunidade dentro de ownCloud. Ofrecen una funcionalidade central para ownCloud e están preparadas para o seu uso en produción.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "As aplicacións aprobadas son desenvolvidas por desenvolvedores de confianza e pasaron un control de seguridade superficial. Mantéñense activamente nun repositorio de código aberto e os seus mantedores consideran que son estábeis para uso casual normal.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "A esta aplicación non se lle fixeron comprobacións de seguridade, ademais é nova ou coñecida por ser inestábel. Instálea baixo a súa responsabilidade.", - "Update to %s" : "Actualizar a %s", - "Please wait...." : "Agarde...", - "Error while disabling app" : "Produciuse un erro ao desactivar a aplicación", - "Disable" : "Desactivar", - "Enable" : "Activar", - "Error while enabling app" : "Produciuse un erro ao activar a aplicación", - "Updating...." : "Actualizando...", - "Error while updating app" : "Produciuse un erro mentres actualizaba a aplicación", - "Updated" : "Actualizado", - "Uninstalling ...." : "Desinstalando ...", - "Error while uninstalling app" : "Produciuse un erro ao desinstalar o aplicatvo", - "Uninstall" : "Desinstalar", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Produciuse un erro. Envíe un certificado PEM codificado en ASCII.", - "Valid until {date}" : "Válido ata {date}", - "Delete" : "Eliminar", - "An error occurred: {message}" : "Produciuse un erro: {message}", - "Select a profile picture" : "Seleccione unha imaxe para o perfil", - "Very weak password" : "Contrasinal moi feble", - "Weak password" : "Contrasinal feble", - "So-so password" : "Contrasinal non moi aló", - "Good password" : "Bo contrasinal", - "Strong password" : "Contrasinal forte", - "Groups" : "Grupos", - "Unable to delete {objName}" : "Non é posíbel eliminar {objName}", - "A valid group name must be provided" : "Debe fornecer un nome de grupo", - "deleted {groupName}" : "{groupName} foi eliminado", - "undo" : "desfacer", - "no group" : "sen grupo", - "never" : "nunca", - "deleted {userName}" : "{userName} foi eliminado", - "add group" : "engadir un grupo", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Cambiar o contrasinal provocará unha perda de datos, xa que a recuperación de datos non está dispoñíbel para este usuario", - "A valid username must be provided" : "Debe fornecer un nome de usuario", - "A valid password must be provided" : "Debe fornecer un contrasinal", - "A valid email must be provided" : "Ten que fornecer un correo funcional", - "__language_name__" : "Galego", - "Unlimited" : "Sen límites", - "Personal info" : "Información persoal", - "Sync clients" : "Clientes de sincronización", - "Everything (fatal issues, errors, warnings, info, debug)" : "Todo (incidencias críticas, erros, avisos, información, depuración)", - "Info, warnings, errors and fatal issues" : "Información, avisos, erros e incidencias críticas", - "Warnings, errors and fatal issues" : "Avisos, erros e incidencias críticas", - "Errors and fatal issues" : "Erros e incidencias críticas", - "Fatal issues only" : "Só incidencias críticas", - "None" : "Ningún", - "Login" : "Acceso", - "Plain" : "Simple", - "NT LAN Manager" : "Xestor NT LAN", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "Semella que PHP non está configurado correctamente para consultar as variábeis de entorno do sistema. A proba con getenv(\"PATH\") só devolve unha resposta baleira.", - "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.", - "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "Parece que PHP foi configuración para substituír bloques de documentos en liña. Isto fará que varias aplicacións sexan inaccesíbeis.", - "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Isto probabelmente se debe unha caché/acelerador como Zend OPcache ou eAccelerator.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "O seu servidor funciona baixo Windows de Microsoft. Recomendámoslle encarecidamente que empregue Linux para obter unha perfecta experiencia de usuario.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Non se atopou o módulo de PHP «fileinfo». É recomendábel activar este módulo para obter os mellores resultados coa detección do tipo MIME.", - "System locale can not be set to a one which supports UTF-8." : "Non é posíbel estabelecer a configuración rexional do sistema a unha que admita UTF-8.", - "This means that there might be problems with certain characters in file names." : "Isto significa que pode haber problemas con certos caracteres en nomes de ficheiro.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Recomendámoslle que instale no sistema os paquetes necesarios para admitir unha das seguintes configuracións rexionais: %s.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Se a instalación no está feita na raíz do dominio e usa o sistema cron, pode haber incidencias coa xeración de URL. Para evitar estes problemas, axuste a opción «overwrite.cli.url» no seu ficheiro config.php á ruta webroot da instalación (suxestión: «%s»)", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Non foi posíbel executar a tarefa de cron programada desde a liña de ordes. Atopáronse os seguintes erros técnicos:", - "Open documentation" : "Abrir a documentación", - "Allow apps to use the Share API" : "Permitir que as aplicacións empreguen o API para compartir", - "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 to other users" : "Permitirlle aos usuarios enviar notificacións por correo a outros usuarios para notificarlles 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.", - "Last cron job execution: %s." : "Última execución da tarefa de cron: %s.", - "Last cron job execution: %s. Something seems wrong." : "Última execución da tarefa de cron: %s. Semella que algo vai mal", - "Cron was not executed yet!" : "«Cron» aínda non foi executado!", - "Execute one task with each page loaded" : "Executar unha tarefa con cada páxina cargada", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php está rexistrado nun servizo de WebCron para chamar a cron.php cada 15 minutos a través de HTTP.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Use o servizo «cron» do sistema para chamar ao ficheiro cron.php cada 15 minutos.", - "Enable server-side encryption" : "Activar o cifrado na parte do servidor", - "Enable encryption" : "Activar o cifrado", - "No encryption module loaded, please enable an encryption module in the app menu." : "Non hai cargado ningún módulo de cifrado, active un módulo de cifrado no menú de aplicacións.", - "Select default encryption module:" : "Seleccionar o módulo predeterminado de cifrado:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "É necesario migrar as súas chaves de cifrado do antigo cifrado (ownCloud <= 8,0) cara ao novo. Active o «Módulo predeterminado de cifrado» e execute «occ encryption:migrate»", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "É necesario migrar as chaves de cifrado do antigo cifrado (ownCloud <= 8,0) cara ao novo.", - "Start migration" : "Iniciar a migración", - "This is used for sending out notifications." : "Isto utilizase para o envío de notificacións.", - "Send mode" : "Modo de envío", - "Encryption" : "Cifrado", - "From address" : "Desde o enderezo", - "mail" : "correo", - "Authentication method" : "Método de autenticación", - "Authentication required" : "Requírese autenticación", - "Server address" : "Enderezo do servidor", - "Port" : "Porto", - "Credentials" : "Credenciais", - "SMTP Username" : "Nome de usuario SMTP", - "SMTP Password" : "Contrasinal SMTP", - "Store credentials" : "Gardar as credenciais", - "Test email settings" : "Correo de proba dos axustes", - "Send email" : "Enviar o correo", - "Download logfile" : "Descargar o ficheiro do rexistro", - "More" : "Máis", - "Less" : "Menos", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "O ficheiro de rexistro é maior de 100 MB. Pódelle levar un anaco descargalo!", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "Empregase SQLite como base de datos. Para instalacións grandes recomendámoslle que cambie a unha infraestrutura de base de datos diferente.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Concretamente, se emprega o cliente de escritorio para sincronización, desaconsellámoslle o uso de SQLite", - "How to do backups" : "Como facer copias de seguridade", - "Advanced monitoring" : "Supervisión avanzada", - "Performance tuning" : "Afinación do rendemento", - "Improving the config.php" : "Mellorando o config.php", - "Theming" : "Tematización", - "Hardening and security guidance" : "Orientacións sobre fortificación e seguridade", - "Version" : "Versión", - "Developer documentation" : "Documentación do desenvolvedor", - "Experimental applications ahead" : "Ante as aplicacións experimentais", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "As aplicacións experimentais, novas ou coñecidas por ser inestábeis e en forte desenvolvemento, non se lles fan comprobacións de seguridade. A súa instalación pode provocar a perda de datos o violacións de seguridade.", - "Documentation:" : "Documentación:", - "User documentation" : "Documentación do usuario", - "Admin documentation" : "Documentación do administrador", - "Show description …" : "Amosar a descrición ...", - "Hide description …" : "Agochar a descrición ...", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Non é posíbel instalar esta aplicación por mor de non cumprirse as dependencias:", - "Enable only for specific groups" : "Activar só para grupos específicos", - "Uninstall App" : "Desinstalar unha aplicación", - "Enable experimental apps" : "Activar as aplicacións experimentais", - "Common Name" : "Nome común", - "Valid until" : "Válido ata", - "Issued By" : "Fornecido por", - "Valid until %s" : "Válido ata %s", - "Import root certificate" : "Importar o certificado raíz", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Ola,<br><br>Só facerlle saber que dispón da conta %s.<br><br>O seu nome de usuario: %s<br>Para acceder a ela: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Saúdos!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Ola,\n\nSó facerlle saber que dispón da conta %s.\n\nO seu nome de usuario: %s\nPara acceder a ela: %s\n", - "Administrator documentation" : "Documentación do administrador", - "Online documentation" : "Documentación en liña", - "Forum" : "Foro", - "Issue tracker" : "Seguimento de incidencias", - "Commercial support" : "Asistencia comercial", - "Profile picture" : "Imaxe do perfil", - "Upload new" : "Novo envío", - "Remove image" : "Retirar a imaxe", - "Cancel" : "Cancelar", - "Full name" : "Nome completo", - "No display name set" : "Sen nome visíbel estabelecido", - "Email" : "Correo", - "Your email address" : "O seu enderezo de correo", - "No email address set" : "Non hai un enderezo de correo definido", - "You are member of the following groups:" : "Vostede é membro dos seguintes grupos:", - "Password" : "Contrasinal", - "Unable to change your password" : "Non é posíbel cambiar o seu contrasinal", - "Current password" : "Contrasinal actual", - "New password" : "Novo contrasinal", - "Change password" : "Cambiar o contrasinal", - "Language" : "Idioma", - "Help translate" : "Axude na tradución", - "Get the apps to sync your files" : "Obteña as aplicacións para sincronizar os seus ficheiros", - "Desktop client" : "Cliente de escritorio", - "Android app" : "Aplicación Android", - "iOS app" : "Aplicación iOS", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Se quere axudar ao proxecto\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">únase ao desenvolvemento</a>\n\t\tou\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">espalle a nova</a>!", - "Show First Run Wizard again" : "Amosar o axudante da primeira execución outra vez", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Desenvolvido pola {communityopen}comunidade ownCloud{linkclose}, o {githubopen}código fonte{linkclose} está licenciado baixo a {licenseopen}<abbr title=\"Licencia Pública Xeral Affero\">AGPL</abbr>{linkclose}.", - "Show storage location" : "Amosar a localización do almacenamento", - "Show last log in" : "Amosar a última conexión", - "Show user backend" : "Amosar a infraestrutura do usuario", - "Send email to new user" : "Enviar correo ao novo usuario", - "Show email address" : "Amosar o enderezo de correo", - "Username" : "Nome de usuario", - "E-Mail" : "Correo-e", - "Create" : "Crear", - "Admin Recovery Password" : "Contrasinal de recuperación do administrador", - "Enter the recovery password in order to recover the users files during password change" : "Introduza o contrasinal de recuperación para recuperar os ficheiros dos usuarios durante o cambio de contrasinal", - "Add Group" : "Engadir un grupo", - "Group" : "Grupo", - "Everyone" : "Todos", - "Admins" : "Administradores", - "Default Quota" : "Cota por omisión", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Introduza a cota de almacenamento (p.ex. «512 MB» ou «12 GB»)", - "Other" : "Outro", - "Full Name" : "Nome completo", - "Group Admin for" : "Grupo de Admin para", - "Quota" : "Cota", - "Storage Location" : "Localización do almacenamento", - "User Backend" : "Infraestrutura do usuario", - "Last Login" : "Último acceso", - "change full name" : "Cambiar o nome completo", - "set new password" : "estabelecer un novo contrasinal", - "change email address" : "cambiar o enderezo de correo", - "Default" : "Predeterminado" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/he.js b/settings/l10n/he.js deleted file mode 100644 index c0aa6a02b3f..00000000000 --- a/settings/l10n/he.js +++ /dev/null @@ -1,298 +0,0 @@ -OC.L10N.register( - "settings", - { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "הזהרות אבטחה והתקנה", - "Sharing" : "שיתוף", - "Server-side encryption" : "הצפנת צד שרת", - "External Storage" : "אחסון חיצוני", - "Cron" : "Cron", - "Email server" : "שרת דואר אלקטרוני", - "Log" : "יומן", - "Tips & tricks" : "עצות ותחבולות", - "Updates" : "עדכונים", - "Couldn't remove app." : "לא ניתן להסיר את היישום.", - "Language changed" : "שפה השתנתה", - "Invalid request" : "בקשה לא חוקית", - "Authentication error" : "שגיאת הזדהות", - "Admins can't remove themself from the admin group" : "מנהלים לא יכולים להסיר את עצמם מקבוצת המנהלים", - "Unable to add user to group %s" : "לא ניתן להוסיף משתמש לקבוצה %s", - "Unable to remove user from group %s" : "לא ניתן להסיר משתמש מהקבוצה %s", - "Couldn't update app." : "לא ניתן לעדכן את היישום.", - "Wrong password" : "סיסמא שגוייה", - "No user supplied" : "לא סופק שם משתמש", - "Please provide an admin recovery password, otherwise all user data will be lost" : "יש לספק את סיסמת המנהל לשחזור, אחרת כל מידע המשתמש יאבד", - "Wrong admin recovery password. Please check the password and try again." : "סיסמת המנהל לשחזור שגוייה. יש לבדוק את הסיסמא ולנסות שוב.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "צד אחורי לא תומך בשינוי סיסמא, אך מפתח הצפנה של המשתמש עודכנה בהצלחה.", - "Unable to change password" : "לא ניתן לשנות את הסיסמא", - "Enabled" : "מופעל", - "Not enabled" : "לא מופעל", - "installing and updating apps via the app store or Federated Cloud Sharing" : "התקנה ועדכון היישום דרך חנות היישומים או ענן שיתוף מאוגד", - "Federated Cloud Sharing" : "ענן שיתוף מאוגד", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL משתמש בגרסה %s ישנה (%s). יש לעדכן את מערכת ההפעלה או שתכונות כדוגמת %s לא יעבדו באופן מהימן.", - "A problem occurred, please check your log files (Error: %s)" : "אירעה בעיה, יש לבדוק את לוג הקבצים (שגיאה: %s)", - "Migration Completed" : "המרה הושלמה", - "Group already exists." : "קבוצה כבר קיימת.", - "Unable to add group." : "לא ניתן להוסיף קבוצה.", - "Unable to delete group." : "לא ניתן למחוק קבוצה.", - "log-level out of allowed range" : "גודל הלוג מעבר לרמה המותרת", - "Saved" : "נשמר", - "test email settings" : "בדיקת הגדרות דואר אלקטרוני", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "בעיה אירעה בשליחת הדואר האלקטרוני. יש לשנות את ההגדרות שלך. (שגיאה: %s)", - "Email sent" : "הודעת הדואר האלקטרוני נשלחה", - "You need to set your user email before being able to send test emails." : "יש להגדיר כתובת דואר אלקטרוני לפני שניתן יהיה לשלוח דואר אלקטרוני לבדיקה.", - "Invalid mail address" : "כתובת דואר אלקטרוני לא חוקית", - "A user with that name already exists." : "משתמש בשם זה כבר קיים.", - "Unable to create user." : "לא ניתן ליצור משתמש.", - "Your %s account was created" : "חשבון %s שלך נוצר", - "Unable to delete user." : "לא ניתן למחוק משתמש.", - "Forbidden" : "חסום", - "Invalid user" : "שם משתמש לא חוקי", - "Unable to change mail address" : "לא ניתן לשנות כתובת דואר אלקטרוני", - "Email saved" : "הדואר האלקטרוני נשמר", - "Your full name has been changed." : "השם המלא שלך הוחלף", - "Unable to change full name" : "לא ניתן לשנות שם מלא", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "האם באמת להוסיף \"{domain}\" כשם מתחם מהימן?", - "Add trusted domain" : "הוספת שם מתחם מהימן", - "Migration in progress. Please wait until the migration is finished" : "המרה בביצוע. יש להמתין עד סיום ההמרה", - "Migration started …" : "המרה החלה...", - "Sending..." : "שולח...", - "Official" : "רישמי", - "Approved" : "מאושר", - "Experimental" : "ניסיוני", - "All" : "הכל", - "No apps found for your version" : "לא נמצאו יישומים לגרסה שלך", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "יישומים רישמיים מפותחים על ידי קהילת ownCloud. הם מציעים פונקיונאליות, התאמה ל- ownCloud ומוכנים לשימוש כבד.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "יישומים מאושרים מפותחים על ידי מפתחים מהימנים ועברו בדיקת הבטחה ראשונית. הם נשמרים באופן פעיל במאגר קוד פתוח והמתזקים שלהם מייעדים אותם לשימוש מזדמן ורגיל.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "יישום זה לא נבדק לבעיות אבטחה והוא חדש או ידוע כלא יציב. התקנת יישום זה הנה על אחריותך בלבד.", - "Update to %s" : "עדכון ל- %s", - "_You have %n app update pending_::_You have %n app updates pending_" : ["ממתין עבורך %n עדכון יישום","ממתינים עבורך %n עדכוני יישום"], - "Please wait...." : "נא להמתין…", - "Error while disabling app" : "אירעה שגיאה בעת נטרול היישום", - "Disable" : "ניטרול", - "Enable" : "הפעלה", - "Error while enabling app" : "שגיאה בעת הפעלת יישום", - "Error: this app cannot be enabled because it makes the server unstable" : "שגיאה: לא ניתן להפעיל יישום זה כיוון שהוא גורם לשרת להיות לא יציב. ", - "Error: could not disable broken app" : "שגיאה: לא ניתן לנטרל יישום פגום", - "Error while disabling broken app" : "שגיאה בזמן נטרול יישום פגום", - "Updating...." : "מתבצע עדכון…", - "Error while updating app" : "אירעה שגיאה בעת עדכון היישום", - "Updated" : "מעודכן", - "Uninstalling ...." : "מסיר התקנה...", - "Error while uninstalling app" : "אירעה שגיאה בעת הסרת היישום", - "Uninstall" : "הסרת התקנה", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "היישום הופעל אך יש לעדכן אותו. בעוד 5 שניות הדף ינותב לעמוד העדכון.", - "App update" : "עדכון יישום", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "אירעה שגיאה. יש להעלות תעודת ASCII-encoded PEM.", - "Valid until {date}" : "בתוקף עד ל- {date}", - "Delete" : "מחיקה", - "An error occurred: {message}" : "אירעה שגיאה: {message}", - "Select a profile picture" : "יש לבחור תמונת פרופיל", - "Very weak password" : "סיסמא מאוד חלשה", - "Weak password" : "סיסמא חלשה", - "So-so password" : "סיסמא ככה-ככה", - "Good password" : "סיסמא טובה", - "Strong password" : "סיסמא חזקה", - "Groups" : "קבוצות", - "Unable to delete {objName}" : "לא ניתן למחיקה {objName}", - "Error creating group: {message}" : "שגיאה ביצירת קבוצה: {message}", - "A valid group name must be provided" : "יש לספק שם קבוצה תקני", - "deleted {groupName}" : "נמחק {groupName}", - "undo" : "ביטול", - "no group" : "אין קבוצה", - "never" : "לעולם לא", - "deleted {userName}" : "נמחק {userName}", - "add group" : "הוספת קבוצה", - "Changing the password will result in data loss, because data recovery is not available for this user" : "שינוי הסיסמא יגרום איבוד מידע, וזאת בגלל ששחזור מידע אינו זמין למשתמש זה", - "A valid username must be provided" : "יש לספק שם משתמש תקני", - "Error creating user: {message}" : "שגיאה ביצירת משתמש: {message}", - "A valid password must be provided" : "יש לספק סיסמא תקנית", - "A valid email must be provided" : "יש לספק כתובת דואר אלקטרוני תקנית", - "__language_name__" : "עברית", - "Unlimited" : "ללא הגבלה", - "Personal info" : "מידע אישי", - "Sync clients" : "סנכרון לקוחות", - "Everything (fatal issues, errors, warnings, info, debug)" : "הכול (נושאים חמורים, שגיאות, אזהרות, מידע, ניפוי שגיאות)", - "Info, warnings, errors and fatal issues" : "מידע, אזהרות, שגיאות ונושאים חמורים", - "Warnings, errors and fatal issues" : "אזהרות, שגיאות ונושאים חמורים", - "Errors and fatal issues" : "שגיאות ונושאים חמורים", - "Fatal issues only" : "נושאים חמורים בלבד", - "None" : "כלום", - "Login" : "התחברות", - "Plain" : "רגיל", - "NT LAN Manager" : "מנהל רשת NT", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response.", - "Please check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation documentation ↗</a> for php configuration notes and the php configuration of your server, especially when using php-fpm." : "יש לבדוק את <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">הגדרות ההתקנה ↗</a> אחר הערות תצורת php ותצורת php של השרת שלך, בעיקר כשמשתמשים ב- php-fpm.", - "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." : "תצורת קריאה בלבד הופעלה. תצורה זו מונעת קביעת מספר הגדרות באמצעות ממשק האינטרנט. יתר על כן, יש צורך להגדיר ההרשאות כתיבה באופן ידני לכל עדכון.", - "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.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "השרת רץ על גבי חלונות של מיקוסופט. אנו ממליצים בחום על לינוקס לחווית משתמש מיטבית.", - "%1$s below version %2$s is installed, for stability and performance reasons we recommend updating to a newer %1$s version." : "%1$s מתחת לגרסה %2$s מותקנת, מסיבות יציבות וביצועים אנו ממליצים לעדכן לגרסה חדשה יותר גרסה %1$s.", - "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.", - "Transactional file locking is disabled, this might lead to issues with race conditions. Enable 'filelocking.enabled' in config.php to avoid these problems. See the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a> for more information." : "נעילת קבצים בפעולות מושבתת, זה עלול להוביל לבעיות גרסאות תזמון. יש לאפשר 'filelocking.enabled' בקובץ config.php למניעת בעיות אלו. ניתן לראות מידע נוסף ב- <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">תיעוד ↗</a>.", - "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.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "אם המערכת שלך לא מותקנת על נתיב הבסיס של שם התחום ומשתמשת במערכת cron, עלולות להיות בעיות עם יצירת כתובות האינטרנט. למניעת בעיות אלו, יש לקבוע את האופציה \"overwrite.cli.url\" בקובץ ה- config.php לנתיב הבסיסי של ההתקנה שלך (הציעו: \"%s \")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "לא ניתן היה להפעיל את cronjob דרך CLI. השגיאות הבאות נצפתו:", - "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"#log-section\">log</a>." : "יש לבדוק בשבע עיניים את <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">מדריכי ההתקנה ↗</a>, ויש לחפש אחר שגיאות או הזהרות ב- <a href=\"#log-section\">לוג</a>.", - "All checks passed." : "כל הבדיקות עברו", - "Open documentation" : "תיעוד פתוח", - "Allow apps to use the Share API" : "לאפשר ליישום להשתמש ב־API השיתוף", - "Allow users to share via link" : "אפשר למשתמשים לשתף באמצעות קישור", - "Enforce password protection" : "חייב הגנת סיסמא", - "Allow public uploads" : "אפשר העלאות ציבוריות", - "Allow users to send mail notification for shared files" : "אפשר למשתמשים לשלוח הודעות דואר אלקטרוני לשיתוף קבצים", - "Set default expiration date" : "הגדרת תאריך תפוגה ברירת מחדל", - "Expire after " : "פג אחרי", - "days" : "ימים", - "Enforce expiration date" : "חייב תאריך תפוגה", - "Allow resharing" : "לאפשר שיתוף מחדש", - "Allow sharing with groups" : "מאפשר שיתוף עם קבוצות", - "Restrict users to only share with users in their groups" : "הגבלת משתמשים לשתף רק עם משתמשים בקבוצה שלהם", - "Allow users to send mail notification for shared files to other users" : "אפשר למשתמשים לשלוח הודעות דואר אלקטרוני לשיתוף קבצים למשתמשים אחרים", - "Exclude groups from sharing" : "מניעת קבוצות משיתוף", - "These groups will still be able to receive shares, but not to initiate them." : "קבוצות אלו עדיין יוכלו לקבל שיתופים, אך לא לשתף בעצמם.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "אפשר השלמה אוטומטית של שמות משתמש בתפריט שיתוף. אם תכונה זו מנוטרלת יש להכניס שם משתמש מלא.", - "Last cron job execution: %s." : "פעילות cron job אחרונה: %s.", - "Last cron job execution: %s. Something seems wrong." : "פעילות cron job אחרונה: %s. משהו נראה שגוי.", - "Cron was not executed yet!" : "Cron עדיין לא בוצע!", - "Execute one task with each page loaded" : "יש להפעיל משימה אחת עם כל עמוד שנטען", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php רשום בשירות webcron לקרוא ל- cron.php בכל 15 דקות באמצעות http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "ניתן להשתמש בשירות cron לקרוא לקובץ cron.php בכל 15 דקות.", - "Enable server-side encryption" : "הפעלת הצפנה בצד שרת", - "Please read carefully before activating server-side encryption: " : "יש לקרוא בתשומת לב רבה לפני שמפעילים הצפנת צד שרת:", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "ברגע שהצפנה מופעלת, כל הקבצים שיועלו לשרת מרגע זה יהיו מוצפנים בשרת. ניתן יהיה לנטרל את ההצפנה בעתיד רק אם מודול ההצפנה תומך בפונקציה זו, וכל התנאים המוקדמים (דהיינו הגדרת מפתח השחזור) מתקיימים.", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "הצפנה בלבד אינה מבטיחה את אבטחת המערכת. יש לקרוא את מסמכי ה- ownCloud למידע נוסף איך יישום ההצפנה עובד, ואפשרויות השימוש הנתמכות.", - "Be aware that encryption always increases the file size." : "תשומת לב לכך שהצפנה בהכרח מגדילה את גודל הקובץ.", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "תמיד טוב ליצור גיבוי קבוע למידע , במקרה של הצפנה יש לוודא שגם מפתחות ההצפנה מגובים עם המידע שלך.", - "This is the final warning: Do you really want to enable encryption?" : "זו הזהרה אחרונה: האם באמת ברצונך להפעיל הצפנה?", - "Enable encryption" : "אפשר הצפנה", - "No encryption module loaded, please enable an encryption module in the app menu." : "לא נמצא מודול הצפנה, יש לאפשר מודול הצפנה בתפריט היישומים.", - "Select default encryption module:" : "יש לבחור מודול הצפנת ברירת מחדל:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "יש להמיר את מפתחות ההצפנה שלך בממערכת ההצפנה הישנה (ownCloud <= 8.0) למערכת החדשה. יש לאפשר את \"מודול הצפנה ברירת מחדש\" ולהריץ 'occ encryption:migrate'", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "יש להמיר את מפתחות ההצפנה שלך בממערכת ההצפנה הישנה (ownCloud <= 8.0) למערכת החדשה.", - "Start migration" : "התחלת המרה", - "This is used for sending out notifications." : "משתמשים בזה כדי לשלוח הודעות.", - "Send mode" : "מצב שליחה", - "Encryption" : "הצפנה", - "From address" : "מכתובת", - "mail" : "mail", - "Authentication method" : "שיטת אימות", - "Authentication required" : "נדרש אימות", - "Server address" : "כתובת שרת", - "Port" : "שער", - "Credentials" : "פרטי גישה", - "SMTP Username" : "שם משתמש SMTP ", - "SMTP Password" : "סיסמת SMTP", - "Store credentials" : "שמירת אישורים", - "Test email settings" : "בדיקת הגדרות דואר אלקטרוני", - "Send email" : "שליחת דואר אלקטרוני", - "Download logfile" : "הורדת קובץ לוג", - "More" : "יותר", - "Less" : "פחות", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "קובץ הלוג גדול מ- 100 מגה-בייט. הורדה עלולה לקחת זמן רב!", - "What to log" : "מה לנטר בלוג", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "המערכת משתמשת ב- SQLite כמסד נתונים. להתקנות גדולות אנו ממליצים לעבור למסדי נתונים צד אחורי אחרים.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "במיוחד כאשר משתמשים במחשב שולחני לסנכרון קבצים השימוש ב SQLite אינו מומלץ.", - "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a>." : "למעבר למסד נתונים אחר יש להשתמש בכלי שורת פקודה: 'occ db:convert-type', או לעיין ב- <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">תיעוד↗</a>.", - "How to do backups" : "איך לבצע גיבויים", - "Advanced monitoring" : "ניטור מתקדם", - "Performance tuning" : "כוונון ביצועים", - "Improving the config.php" : "שיפור קובץ config.php", - "Theming" : "ערכת נושא", - "Hardening and security guidance" : "הדרכת הקשחה ואבטחה", - "Version" : "גרסה", - "Developer documentation" : "תיעוד מפתח", - "Experimental applications ahead" : "ישומים ניסיוניים לפנים", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "יישומים ניסיוניים לא נבדקו לבעיות אבטחה, חדשים או ידועים כלא יציבים ותחת פיתוח כבד. התקנה שלהם עלולה להוביל לאיבוד מידע או לפרצות אבטחה.", - "by %s" : "על ידי %s", - "%s-licensed" : "%s-בעל רישיון", - "Documentation:" : "תיעוד", - "User documentation" : "תיעוד משתמש", - "Admin documentation" : "תיעוד מנהל", - "Show description …" : "הצגת תיאור ...", - "Hide description …" : "הסתרת תיאור ...", - "This app has an update available." : "ליישום זה קיים עדכון זמין.", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "ליישום זה לא הוקצתה גרסה מינמלית של ownCloud. מצב זה יהיה שגוי בגרסה 11 או מאוחרת יותר של ownCloud.", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "ליישום זה לא הוקצתה גרסה מקסימלית של ownCloud. מצב זה יהיה שגוי בגרסה 11 או מאוחרת יותר של ownCloud.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "לא ניתן להתקין את יישום זה כיוון שייחסי התלות הבאים לא התקיימו:", - "Enable only for specific groups" : "אפשר רק לקבוצות מסויימות", - "Uninstall App" : "הסרת יישום", - "Enable experimental apps" : "אפשר יישומים ניסיוניים", - "SSL Root Certificates" : "אישורי אבטחת SSL לנתיב יסוד", - "Common Name" : "שם משותף", - "Valid until" : "בתוקף עד", - "Issued By" : "הוצא על ידי", - "Valid until %s" : "בתוקף עד %s", - "Import root certificate" : "יבוא אישור אבטחה לנתיב יסוד", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "שלום,<br><br>רק רצינו להודיע שעכשיו יש לך %s חשבון.<br><br>Your שם משתמש: %s<br>כניסה: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "לחיים!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "שלום,\n\nרק רצינו להודיע שעכשיו יש לך %s חשבון.\n\nשם המשתמש שלך: %s\nכניסה: %s\n\n", - "Administrator documentation" : "תיעוד מנהל", - "Online documentation" : "תיעוד מקוון", - "Forum" : "פורום", - "Issue tracker" : "מעקב בעיות", - "Commercial support" : "תמיכה מסחרית", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "הנך משתמש ב- <strong>%s</strong> מתוך <strong>%s</strong>", - "Profile picture" : "תמונת פרופיל", - "Upload new" : "העלאת חדש", - "Select from Files" : "בחירה מתוך קבצים", - "Remove image" : "הסרת תמונה", - "png or jpg, max. 20 MB" : "png או jpg, מקסימום 20 מגה-בייט", - "Picture provided by original account" : "תמונה סופקה על ידי חשבון מקור", - "Cancel" : "ביטול", - "Choose as profile picture" : "יש לבחור כתמונת פרופיל", - "Full name" : "שם מלא", - "No display name set" : "לא נקבע שם תצוגה", - "Email" : "דואר אלקטרוני", - "Your email address" : "כתובת הדואר האלקטרוני שלך", - "For password recovery and notifications" : "לשחזור סיסמא והודעות", - "No email address set" : "לא נקבעה כתובת דואר אלקטרוני", - "You are member of the following groups:" : "הקבוצות הבאות כוללות אותך:", - "Password" : "סיסמא", - "Unable to change your password" : "לא ניתן לשנות את הסיסמא שלך", - "Current password" : "סיסמא נוכחית", - "New password" : "סיסמא חדשה", - "Change password" : "שינוי סיסמא", - "Language" : "שפה", - "Help translate" : "עזרה בתרגום", - "Get the apps to sync your files" : "קבלת היישומים לסנכרון הקבצים שלך", - "Desktop client" : "מחשב אישי", - "Android app" : "יישום אנדרואיד", - "iOS app" : "יישום אייפון", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "אם ברצונך לתמוך בפרויקט\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">ניתן להצטרך לפיתוח</a>\n\t\tאו\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">להפיץ את הבשורה</a>!", - "Show First Run Wizard again" : "הצגת אשף ההפעלה הראשונית שוב", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "פיתוח על ידי {open}קהילת ownCloud community{linkclose}, {githubopen}קוד המקור{linkclose} ברישיון תחת ה- {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}.", - "Show storage location" : "הצגת מיקום אחסון", - "Show last log in" : "הצגת כניסה אחרונה", - "Show user backend" : "הצגת צד אחורי למשתמש", - "Send email to new user" : "שליחת דואר אלקטרוני למשתמש חדש", - "Show email address" : "הצגת כתובת דואר אלקטרוני", - "Username" : "שם משתמש", - "E-Mail" : "דואר אלקטרוני", - "Create" : "יצירה", - "Admin Recovery Password" : "סיסמת השחזור של המנהל", - "Enter the recovery password in order to recover the users files during password change" : "יש להכניס את סיסמת השחזור לצורך שחזור של קבצי המשתמש במהלך החלפת סיסמא", - "Add Group" : "הוספת קבוצה", - "Group" : "קבוצה", - "Everyone" : "כולם", - "Admins" : "מנהלים", - "Default Quota" : "מכסת ברירת המחדל", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "יש להכניס מכסת אחסון (לדוגמא: \"512 MB\" or \"12 GB\")", - "Other" : "אחר", - "Full Name" : "שם מלא", - "Group Admin for" : "קבוצת ניהול עבור", - "Quota" : "מכסה", - "Storage Location" : "מיקום אחסון", - "User Backend" : "צד אחורי משתמש", - "Last Login" : "התחברות אחרונה", - "change full name" : "שינוי שם מלא", - "set new password" : "הגדרת סיסמא חדשה", - "change email address" : "שינוי כתובת דואר אלקטרוני", - "Default" : "ברירת מחדל" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/he.json b/settings/l10n/he.json deleted file mode 100644 index af790f3f4d7..00000000000 --- a/settings/l10n/he.json +++ /dev/null @@ -1,296 +0,0 @@ -{ "translations": { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "הזהרות אבטחה והתקנה", - "Sharing" : "שיתוף", - "Server-side encryption" : "הצפנת צד שרת", - "External Storage" : "אחסון חיצוני", - "Cron" : "Cron", - "Email server" : "שרת דואר אלקטרוני", - "Log" : "יומן", - "Tips & tricks" : "עצות ותחבולות", - "Updates" : "עדכונים", - "Couldn't remove app." : "לא ניתן להסיר את היישום.", - "Language changed" : "שפה השתנתה", - "Invalid request" : "בקשה לא חוקית", - "Authentication error" : "שגיאת הזדהות", - "Admins can't remove themself from the admin group" : "מנהלים לא יכולים להסיר את עצמם מקבוצת המנהלים", - "Unable to add user to group %s" : "לא ניתן להוסיף משתמש לקבוצה %s", - "Unable to remove user from group %s" : "לא ניתן להסיר משתמש מהקבוצה %s", - "Couldn't update app." : "לא ניתן לעדכן את היישום.", - "Wrong password" : "סיסמא שגוייה", - "No user supplied" : "לא סופק שם משתמש", - "Please provide an admin recovery password, otherwise all user data will be lost" : "יש לספק את סיסמת המנהל לשחזור, אחרת כל מידע המשתמש יאבד", - "Wrong admin recovery password. Please check the password and try again." : "סיסמת המנהל לשחזור שגוייה. יש לבדוק את הסיסמא ולנסות שוב.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "צד אחורי לא תומך בשינוי סיסמא, אך מפתח הצפנה של המשתמש עודכנה בהצלחה.", - "Unable to change password" : "לא ניתן לשנות את הסיסמא", - "Enabled" : "מופעל", - "Not enabled" : "לא מופעל", - "installing and updating apps via the app store or Federated Cloud Sharing" : "התקנה ועדכון היישום דרך חנות היישומים או ענן שיתוף מאוגד", - "Federated Cloud Sharing" : "ענן שיתוף מאוגד", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL משתמש בגרסה %s ישנה (%s). יש לעדכן את מערכת ההפעלה או שתכונות כדוגמת %s לא יעבדו באופן מהימן.", - "A problem occurred, please check your log files (Error: %s)" : "אירעה בעיה, יש לבדוק את לוג הקבצים (שגיאה: %s)", - "Migration Completed" : "המרה הושלמה", - "Group already exists." : "קבוצה כבר קיימת.", - "Unable to add group." : "לא ניתן להוסיף קבוצה.", - "Unable to delete group." : "לא ניתן למחוק קבוצה.", - "log-level out of allowed range" : "גודל הלוג מעבר לרמה המותרת", - "Saved" : "נשמר", - "test email settings" : "בדיקת הגדרות דואר אלקטרוני", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "בעיה אירעה בשליחת הדואר האלקטרוני. יש לשנות את ההגדרות שלך. (שגיאה: %s)", - "Email sent" : "הודעת הדואר האלקטרוני נשלחה", - "You need to set your user email before being able to send test emails." : "יש להגדיר כתובת דואר אלקטרוני לפני שניתן יהיה לשלוח דואר אלקטרוני לבדיקה.", - "Invalid mail address" : "כתובת דואר אלקטרוני לא חוקית", - "A user with that name already exists." : "משתמש בשם זה כבר קיים.", - "Unable to create user." : "לא ניתן ליצור משתמש.", - "Your %s account was created" : "חשבון %s שלך נוצר", - "Unable to delete user." : "לא ניתן למחוק משתמש.", - "Forbidden" : "חסום", - "Invalid user" : "שם משתמש לא חוקי", - "Unable to change mail address" : "לא ניתן לשנות כתובת דואר אלקטרוני", - "Email saved" : "הדואר האלקטרוני נשמר", - "Your full name has been changed." : "השם המלא שלך הוחלף", - "Unable to change full name" : "לא ניתן לשנות שם מלא", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "האם באמת להוסיף \"{domain}\" כשם מתחם מהימן?", - "Add trusted domain" : "הוספת שם מתחם מהימן", - "Migration in progress. Please wait until the migration is finished" : "המרה בביצוע. יש להמתין עד סיום ההמרה", - "Migration started …" : "המרה החלה...", - "Sending..." : "שולח...", - "Official" : "רישמי", - "Approved" : "מאושר", - "Experimental" : "ניסיוני", - "All" : "הכל", - "No apps found for your version" : "לא נמצאו יישומים לגרסה שלך", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "יישומים רישמיים מפותחים על ידי קהילת ownCloud. הם מציעים פונקיונאליות, התאמה ל- ownCloud ומוכנים לשימוש כבד.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "יישומים מאושרים מפותחים על ידי מפתחים מהימנים ועברו בדיקת הבטחה ראשונית. הם נשמרים באופן פעיל במאגר קוד פתוח והמתזקים שלהם מייעדים אותם לשימוש מזדמן ורגיל.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "יישום זה לא נבדק לבעיות אבטחה והוא חדש או ידוע כלא יציב. התקנת יישום זה הנה על אחריותך בלבד.", - "Update to %s" : "עדכון ל- %s", - "_You have %n app update pending_::_You have %n app updates pending_" : ["ממתין עבורך %n עדכון יישום","ממתינים עבורך %n עדכוני יישום"], - "Please wait...." : "נא להמתין…", - "Error while disabling app" : "אירעה שגיאה בעת נטרול היישום", - "Disable" : "ניטרול", - "Enable" : "הפעלה", - "Error while enabling app" : "שגיאה בעת הפעלת יישום", - "Error: this app cannot be enabled because it makes the server unstable" : "שגיאה: לא ניתן להפעיל יישום זה כיוון שהוא גורם לשרת להיות לא יציב. ", - "Error: could not disable broken app" : "שגיאה: לא ניתן לנטרל יישום פגום", - "Error while disabling broken app" : "שגיאה בזמן נטרול יישום פגום", - "Updating...." : "מתבצע עדכון…", - "Error while updating app" : "אירעה שגיאה בעת עדכון היישום", - "Updated" : "מעודכן", - "Uninstalling ...." : "מסיר התקנה...", - "Error while uninstalling app" : "אירעה שגיאה בעת הסרת היישום", - "Uninstall" : "הסרת התקנה", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "היישום הופעל אך יש לעדכן אותו. בעוד 5 שניות הדף ינותב לעמוד העדכון.", - "App update" : "עדכון יישום", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "אירעה שגיאה. יש להעלות תעודת ASCII-encoded PEM.", - "Valid until {date}" : "בתוקף עד ל- {date}", - "Delete" : "מחיקה", - "An error occurred: {message}" : "אירעה שגיאה: {message}", - "Select a profile picture" : "יש לבחור תמונת פרופיל", - "Very weak password" : "סיסמא מאוד חלשה", - "Weak password" : "סיסמא חלשה", - "So-so password" : "סיסמא ככה-ככה", - "Good password" : "סיסמא טובה", - "Strong password" : "סיסמא חזקה", - "Groups" : "קבוצות", - "Unable to delete {objName}" : "לא ניתן למחיקה {objName}", - "Error creating group: {message}" : "שגיאה ביצירת קבוצה: {message}", - "A valid group name must be provided" : "יש לספק שם קבוצה תקני", - "deleted {groupName}" : "נמחק {groupName}", - "undo" : "ביטול", - "no group" : "אין קבוצה", - "never" : "לעולם לא", - "deleted {userName}" : "נמחק {userName}", - "add group" : "הוספת קבוצה", - "Changing the password will result in data loss, because data recovery is not available for this user" : "שינוי הסיסמא יגרום איבוד מידע, וזאת בגלל ששחזור מידע אינו זמין למשתמש זה", - "A valid username must be provided" : "יש לספק שם משתמש תקני", - "Error creating user: {message}" : "שגיאה ביצירת משתמש: {message}", - "A valid password must be provided" : "יש לספק סיסמא תקנית", - "A valid email must be provided" : "יש לספק כתובת דואר אלקטרוני תקנית", - "__language_name__" : "עברית", - "Unlimited" : "ללא הגבלה", - "Personal info" : "מידע אישי", - "Sync clients" : "סנכרון לקוחות", - "Everything (fatal issues, errors, warnings, info, debug)" : "הכול (נושאים חמורים, שגיאות, אזהרות, מידע, ניפוי שגיאות)", - "Info, warnings, errors and fatal issues" : "מידע, אזהרות, שגיאות ונושאים חמורים", - "Warnings, errors and fatal issues" : "אזהרות, שגיאות ונושאים חמורים", - "Errors and fatal issues" : "שגיאות ונושאים חמורים", - "Fatal issues only" : "נושאים חמורים בלבד", - "None" : "כלום", - "Login" : "התחברות", - "Plain" : "רגיל", - "NT LAN Manager" : "מנהל רשת NT", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response.", - "Please check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation documentation ↗</a> for php configuration notes and the php configuration of your server, especially when using php-fpm." : "יש לבדוק את <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">הגדרות ההתקנה ↗</a> אחר הערות תצורת php ותצורת php של השרת שלך, בעיקר כשמשתמשים ב- php-fpm.", - "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." : "תצורת קריאה בלבד הופעלה. תצורה זו מונעת קביעת מספר הגדרות באמצעות ממשק האינטרנט. יתר על כן, יש צורך להגדיר ההרשאות כתיבה באופן ידני לכל עדכון.", - "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.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "השרת רץ על גבי חלונות של מיקוסופט. אנו ממליצים בחום על לינוקס לחווית משתמש מיטבית.", - "%1$s below version %2$s is installed, for stability and performance reasons we recommend updating to a newer %1$s version." : "%1$s מתחת לגרסה %2$s מותקנת, מסיבות יציבות וביצועים אנו ממליצים לעדכן לגרסה חדשה יותר גרסה %1$s.", - "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.", - "Transactional file locking is disabled, this might lead to issues with race conditions. Enable 'filelocking.enabled' in config.php to avoid these problems. See the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a> for more information." : "נעילת קבצים בפעולות מושבתת, זה עלול להוביל לבעיות גרסאות תזמון. יש לאפשר 'filelocking.enabled' בקובץ config.php למניעת בעיות אלו. ניתן לראות מידע נוסף ב- <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">תיעוד ↗</a>.", - "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.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "אם המערכת שלך לא מותקנת על נתיב הבסיס של שם התחום ומשתמשת במערכת cron, עלולות להיות בעיות עם יצירת כתובות האינטרנט. למניעת בעיות אלו, יש לקבוע את האופציה \"overwrite.cli.url\" בקובץ ה- config.php לנתיב הבסיסי של ההתקנה שלך (הציעו: \"%s \")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "לא ניתן היה להפעיל את cronjob דרך CLI. השגיאות הבאות נצפתו:", - "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"#log-section\">log</a>." : "יש לבדוק בשבע עיניים את <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">מדריכי ההתקנה ↗</a>, ויש לחפש אחר שגיאות או הזהרות ב- <a href=\"#log-section\">לוג</a>.", - "All checks passed." : "כל הבדיקות עברו", - "Open documentation" : "תיעוד פתוח", - "Allow apps to use the Share API" : "לאפשר ליישום להשתמש ב־API השיתוף", - "Allow users to share via link" : "אפשר למשתמשים לשתף באמצעות קישור", - "Enforce password protection" : "חייב הגנת סיסמא", - "Allow public uploads" : "אפשר העלאות ציבוריות", - "Allow users to send mail notification for shared files" : "אפשר למשתמשים לשלוח הודעות דואר אלקטרוני לשיתוף קבצים", - "Set default expiration date" : "הגדרת תאריך תפוגה ברירת מחדל", - "Expire after " : "פג אחרי", - "days" : "ימים", - "Enforce expiration date" : "חייב תאריך תפוגה", - "Allow resharing" : "לאפשר שיתוף מחדש", - "Allow sharing with groups" : "מאפשר שיתוף עם קבוצות", - "Restrict users to only share with users in their groups" : "הגבלת משתמשים לשתף רק עם משתמשים בקבוצה שלהם", - "Allow users to send mail notification for shared files to other users" : "אפשר למשתמשים לשלוח הודעות דואר אלקטרוני לשיתוף קבצים למשתמשים אחרים", - "Exclude groups from sharing" : "מניעת קבוצות משיתוף", - "These groups will still be able to receive shares, but not to initiate them." : "קבוצות אלו עדיין יוכלו לקבל שיתופים, אך לא לשתף בעצמם.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "אפשר השלמה אוטומטית של שמות משתמש בתפריט שיתוף. אם תכונה זו מנוטרלת יש להכניס שם משתמש מלא.", - "Last cron job execution: %s." : "פעילות cron job אחרונה: %s.", - "Last cron job execution: %s. Something seems wrong." : "פעילות cron job אחרונה: %s. משהו נראה שגוי.", - "Cron was not executed yet!" : "Cron עדיין לא בוצע!", - "Execute one task with each page loaded" : "יש להפעיל משימה אחת עם כל עמוד שנטען", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php רשום בשירות webcron לקרוא ל- cron.php בכל 15 דקות באמצעות http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "ניתן להשתמש בשירות cron לקרוא לקובץ cron.php בכל 15 דקות.", - "Enable server-side encryption" : "הפעלת הצפנה בצד שרת", - "Please read carefully before activating server-side encryption: " : "יש לקרוא בתשומת לב רבה לפני שמפעילים הצפנת צד שרת:", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "ברגע שהצפנה מופעלת, כל הקבצים שיועלו לשרת מרגע זה יהיו מוצפנים בשרת. ניתן יהיה לנטרל את ההצפנה בעתיד רק אם מודול ההצפנה תומך בפונקציה זו, וכל התנאים המוקדמים (דהיינו הגדרת מפתח השחזור) מתקיימים.", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "הצפנה בלבד אינה מבטיחה את אבטחת המערכת. יש לקרוא את מסמכי ה- ownCloud למידע נוסף איך יישום ההצפנה עובד, ואפשרויות השימוש הנתמכות.", - "Be aware that encryption always increases the file size." : "תשומת לב לכך שהצפנה בהכרח מגדילה את גודל הקובץ.", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "תמיד טוב ליצור גיבוי קבוע למידע , במקרה של הצפנה יש לוודא שגם מפתחות ההצפנה מגובים עם המידע שלך.", - "This is the final warning: Do you really want to enable encryption?" : "זו הזהרה אחרונה: האם באמת ברצונך להפעיל הצפנה?", - "Enable encryption" : "אפשר הצפנה", - "No encryption module loaded, please enable an encryption module in the app menu." : "לא נמצא מודול הצפנה, יש לאפשר מודול הצפנה בתפריט היישומים.", - "Select default encryption module:" : "יש לבחור מודול הצפנת ברירת מחדל:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "יש להמיר את מפתחות ההצפנה שלך בממערכת ההצפנה הישנה (ownCloud <= 8.0) למערכת החדשה. יש לאפשר את \"מודול הצפנה ברירת מחדש\" ולהריץ 'occ encryption:migrate'", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "יש להמיר את מפתחות ההצפנה שלך בממערכת ההצפנה הישנה (ownCloud <= 8.0) למערכת החדשה.", - "Start migration" : "התחלת המרה", - "This is used for sending out notifications." : "משתמשים בזה כדי לשלוח הודעות.", - "Send mode" : "מצב שליחה", - "Encryption" : "הצפנה", - "From address" : "מכתובת", - "mail" : "mail", - "Authentication method" : "שיטת אימות", - "Authentication required" : "נדרש אימות", - "Server address" : "כתובת שרת", - "Port" : "שער", - "Credentials" : "פרטי גישה", - "SMTP Username" : "שם משתמש SMTP ", - "SMTP Password" : "סיסמת SMTP", - "Store credentials" : "שמירת אישורים", - "Test email settings" : "בדיקת הגדרות דואר אלקטרוני", - "Send email" : "שליחת דואר אלקטרוני", - "Download logfile" : "הורדת קובץ לוג", - "More" : "יותר", - "Less" : "פחות", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "קובץ הלוג גדול מ- 100 מגה-בייט. הורדה עלולה לקחת זמן רב!", - "What to log" : "מה לנטר בלוג", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "המערכת משתמשת ב- SQLite כמסד נתונים. להתקנות גדולות אנו ממליצים לעבור למסדי נתונים צד אחורי אחרים.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "במיוחד כאשר משתמשים במחשב שולחני לסנכרון קבצים השימוש ב SQLite אינו מומלץ.", - "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a>." : "למעבר למסד נתונים אחר יש להשתמש בכלי שורת פקודה: 'occ db:convert-type', או לעיין ב- <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">תיעוד↗</a>.", - "How to do backups" : "איך לבצע גיבויים", - "Advanced monitoring" : "ניטור מתקדם", - "Performance tuning" : "כוונון ביצועים", - "Improving the config.php" : "שיפור קובץ config.php", - "Theming" : "ערכת נושא", - "Hardening and security guidance" : "הדרכת הקשחה ואבטחה", - "Version" : "גרסה", - "Developer documentation" : "תיעוד מפתח", - "Experimental applications ahead" : "ישומים ניסיוניים לפנים", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "יישומים ניסיוניים לא נבדקו לבעיות אבטחה, חדשים או ידועים כלא יציבים ותחת פיתוח כבד. התקנה שלהם עלולה להוביל לאיבוד מידע או לפרצות אבטחה.", - "by %s" : "על ידי %s", - "%s-licensed" : "%s-בעל רישיון", - "Documentation:" : "תיעוד", - "User documentation" : "תיעוד משתמש", - "Admin documentation" : "תיעוד מנהל", - "Show description …" : "הצגת תיאור ...", - "Hide description …" : "הסתרת תיאור ...", - "This app has an update available." : "ליישום זה קיים עדכון זמין.", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "ליישום זה לא הוקצתה גרסה מינמלית של ownCloud. מצב זה יהיה שגוי בגרסה 11 או מאוחרת יותר של ownCloud.", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "ליישום זה לא הוקצתה גרסה מקסימלית של ownCloud. מצב זה יהיה שגוי בגרסה 11 או מאוחרת יותר של ownCloud.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "לא ניתן להתקין את יישום זה כיוון שייחסי התלות הבאים לא התקיימו:", - "Enable only for specific groups" : "אפשר רק לקבוצות מסויימות", - "Uninstall App" : "הסרת יישום", - "Enable experimental apps" : "אפשר יישומים ניסיוניים", - "SSL Root Certificates" : "אישורי אבטחת SSL לנתיב יסוד", - "Common Name" : "שם משותף", - "Valid until" : "בתוקף עד", - "Issued By" : "הוצא על ידי", - "Valid until %s" : "בתוקף עד %s", - "Import root certificate" : "יבוא אישור אבטחה לנתיב יסוד", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "שלום,<br><br>רק רצינו להודיע שעכשיו יש לך %s חשבון.<br><br>Your שם משתמש: %s<br>כניסה: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "לחיים!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "שלום,\n\nרק רצינו להודיע שעכשיו יש לך %s חשבון.\n\nשם המשתמש שלך: %s\nכניסה: %s\n\n", - "Administrator documentation" : "תיעוד מנהל", - "Online documentation" : "תיעוד מקוון", - "Forum" : "פורום", - "Issue tracker" : "מעקב בעיות", - "Commercial support" : "תמיכה מסחרית", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "הנך משתמש ב- <strong>%s</strong> מתוך <strong>%s</strong>", - "Profile picture" : "תמונת פרופיל", - "Upload new" : "העלאת חדש", - "Select from Files" : "בחירה מתוך קבצים", - "Remove image" : "הסרת תמונה", - "png or jpg, max. 20 MB" : "png או jpg, מקסימום 20 מגה-בייט", - "Picture provided by original account" : "תמונה סופקה על ידי חשבון מקור", - "Cancel" : "ביטול", - "Choose as profile picture" : "יש לבחור כתמונת פרופיל", - "Full name" : "שם מלא", - "No display name set" : "לא נקבע שם תצוגה", - "Email" : "דואר אלקטרוני", - "Your email address" : "כתובת הדואר האלקטרוני שלך", - "For password recovery and notifications" : "לשחזור סיסמא והודעות", - "No email address set" : "לא נקבעה כתובת דואר אלקטרוני", - "You are member of the following groups:" : "הקבוצות הבאות כוללות אותך:", - "Password" : "סיסמא", - "Unable to change your password" : "לא ניתן לשנות את הסיסמא שלך", - "Current password" : "סיסמא נוכחית", - "New password" : "סיסמא חדשה", - "Change password" : "שינוי סיסמא", - "Language" : "שפה", - "Help translate" : "עזרה בתרגום", - "Get the apps to sync your files" : "קבלת היישומים לסנכרון הקבצים שלך", - "Desktop client" : "מחשב אישי", - "Android app" : "יישום אנדרואיד", - "iOS app" : "יישום אייפון", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "אם ברצונך לתמוך בפרויקט\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">ניתן להצטרך לפיתוח</a>\n\t\tאו\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">להפיץ את הבשורה</a>!", - "Show First Run Wizard again" : "הצגת אשף ההפעלה הראשונית שוב", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "פיתוח על ידי {open}קהילת ownCloud community{linkclose}, {githubopen}קוד המקור{linkclose} ברישיון תחת ה- {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}.", - "Show storage location" : "הצגת מיקום אחסון", - "Show last log in" : "הצגת כניסה אחרונה", - "Show user backend" : "הצגת צד אחורי למשתמש", - "Send email to new user" : "שליחת דואר אלקטרוני למשתמש חדש", - "Show email address" : "הצגת כתובת דואר אלקטרוני", - "Username" : "שם משתמש", - "E-Mail" : "דואר אלקטרוני", - "Create" : "יצירה", - "Admin Recovery Password" : "סיסמת השחזור של המנהל", - "Enter the recovery password in order to recover the users files during password change" : "יש להכניס את סיסמת השחזור לצורך שחזור של קבצי המשתמש במהלך החלפת סיסמא", - "Add Group" : "הוספת קבוצה", - "Group" : "קבוצה", - "Everyone" : "כולם", - "Admins" : "מנהלים", - "Default Quota" : "מכסת ברירת המחדל", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "יש להכניס מכסת אחסון (לדוגמא: \"512 MB\" or \"12 GB\")", - "Other" : "אחר", - "Full Name" : "שם מלא", - "Group Admin for" : "קבוצת ניהול עבור", - "Quota" : "מכסה", - "Storage Location" : "מיקום אחסון", - "User Backend" : "צד אחורי משתמש", - "Last Login" : "התחברות אחרונה", - "change full name" : "שינוי שם מלא", - "set new password" : "הגדרת סיסמא חדשה", - "change email address" : "שינוי כתובת דואר אלקטרוני", - "Default" : "ברירת מחדל" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/hi.js b/settings/l10n/hi.js deleted file mode 100644 index 715292b3dc8..00000000000 --- a/settings/l10n/hi.js +++ /dev/null @@ -1,11 +0,0 @@ -OC.L10N.register( - "settings", - { - "Email sent" : "ईमेल भेज दिया गया है ", - "More" : "और अधिक", - "Cancel" : "रद्द करें ", - "Password" : "पासवर्ड", - "New password" : "नया पासवर्ड", - "Username" : "प्रयोक्ता का नाम" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/hi.json b/settings/l10n/hi.json deleted file mode 100644 index c06462a29d9..00000000000 --- a/settings/l10n/hi.json +++ /dev/null @@ -1,9 +0,0 @@ -{ "translations": { - "Email sent" : "ईमेल भेज दिया गया है ", - "More" : "और अधिक", - "Cancel" : "रद्द करें ", - "Password" : "पासवर्ड", - "New password" : "नया पासवर्ड", - "Username" : "प्रयोक्ता का नाम" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/hr.js b/settings/l10n/hr.js deleted file mode 100644 index 762647556cf..00000000000 --- a/settings/l10n/hr.js +++ /dev/null @@ -1,160 +0,0 @@ -OC.L10N.register( - "settings", - { - "Sharing" : "Dijeljenje zajedničkih resursa", - "External Storage" : "Vanjsko spremište", - "Cron" : "Cron", - "Log" : "Zapisnik", - "Updates" : "nadogradnje", - "Couldn't remove app." : "Nije moguće ukloniti app.", - "Language changed" : "Promjena jezika", - "Invalid request" : "Zahtjev neispravan", - "Authentication error" : "Pogrešna autentikacija", - "Admins can't remove themself from the admin group" : "Administratori ne mogu sami sebe ukloniti iz admin grupe", - "Unable to add user to group %s" : "Dodavanje korisnika grupi %s nije moguće", - "Unable to remove user from group %s" : "Uklanjanje korisnika iz grupe %s nije moguće", - "Couldn't update app." : "Ažuriranje aplikacija nije moguće", - "Wrong password" : "Pogrešna lozinka", - "No user supplied" : "Nijedan korisnik nije dostavljen", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Molimo navedite admin lozinku za oporavak, u protivnom će svi korisnički podaci biti izgubljeni.", - "Wrong admin recovery password. Please check the password and try again." : "Pogrešna admin lozinka za oporavak. Molimo provjerite lozinku i pokušajte ponovno.", - "Unable to change password" : "Promjena lozinke nije moguća", - "Enabled" : "Aktivirano", - "Saved" : "Spremljeno", - "test email settings" : "Postavke za testiranje e-pošte", - "Email sent" : "E-pošta je poslana", - "You need to set your user email before being able to send test emails." : "Prije nego li ste u mogućnosti slati testnu e-poštu trebate postaviti svoj korisnički email.", - "Email saved" : "E-pošta spremljena", - "Your full name has been changed." : "Vaše puno ime je promijenjeno.", - "Unable to change full name" : "Puno ime nije moguće promijeniti.", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Jeste li doista sigurni da želite dodati \"{domain}\" kao pouzdanu domenu?", - "Add trusted domain" : "Dodajte pouzdanu domenu", - "Sending..." : "Slanje...", - "All" : "Sve", - "Please wait...." : "Molimo pričekajte...", - "Error while disabling app" : "Pogreška pri onemogućavanju app", - "Disable" : "Onemogućite", - "Enable" : "Omogućite", - "Error while enabling app" : "Pogreška pri omogućavanju app", - "Updating...." : "Ažuriranje...", - "Error while updating app" : "Pogreška pri ažuriranju app", - "Updated" : "Ažurirano", - "Uninstalling ...." : "Deinstaliranje....", - "Error while uninstalling app" : "Pogreška pri deinstaliranju app", - "Uninstall" : "Deinstalirajte", - "Valid until {date}" : "Valid until {date}", - "Delete" : "Izbrišite", - "Select a profile picture" : "Odaberite sliku profila", - "Very weak password" : "Lozinka vrlo slaba", - "Weak password" : "Lozinka slaba", - "So-so password" : "Lozinka tako-tako", - "Good password" : "Lozinka dobra", - "Strong password" : "Lozinka snažna", - "Groups" : "Grupe", - "Unable to delete {objName}" : "Nije moguće izbrisati {objName}", - "A valid group name must be provided" : "Nužno je navesti valjani naziv grupe", - "deleted {groupName}" : "izbrisana {groupName}", - "undo" : "poništite", - "never" : "nikad", - "deleted {userName}" : "izbrisano {userName}", - "add group" : "dodajte grupu", - "A valid username must be provided" : "Nužno je navesti valjano korisničko ime", - "A valid password must be provided" : "Nužno je navesti valjanu lozinku", - "__language_name__" : "__jezik_naziv___", - "Unlimited" : "Neograničeno", - "Everything (fatal issues, errors, warnings, info, debug)" : "Sve (kobni problemi, pogreške, upozorenja, ispravljanje pogrešaka)", - "Info, warnings, errors and fatal issues" : "Informacije, upozorenja, pogreške i kobni problemi", - "Warnings, errors and fatal issues" : "Upozorenja, pogreške i kobni problemi", - "Errors and fatal issues" : "Pogreške i kobni problemi", - "Fatal issues only" : "Samo kobni problemi", - "None" : "Ništa", - "Login" : "Prijava", - "Plain" : "Čisti tekst", - "NT LAN Manager" : "NT LAN Manager", - "SSL" : "SSL", - "TLS" : "TLS", - "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.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP modul 'fileinfo' nedostaje. Tolo vam preporučjemo da taj modul omogućitekako biste dobili najbolje rezultate u detekciji mime vrste.", - "System locale can not be set to a one which supports UTF-8." : "Regionalnu shemu sustava nemoguće je postaviti na neku koja podržava UTF-8.", - "This means that there might be problems with certain characters in file names." : "To znači da se mogu javiti problemi s određenim znakovima u datoteci.", - "Allow apps to use the Share API" : "Dopustite apps korištenje Share API", - "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", - "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", - "Cron was not executed yet!" : "Cron još nije izvršen!", - "Execute one task with each page loaded" : "Izvršite jedan zadatak sa svakom učitanom stranicom", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php je registriran na webcron usluzi da poziva cron.php svakih 15 minuta preko http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Koristite cron uslugu sustava za pozivanje cron.php datoteke svakih 15 minuta.", - "This is used for sending out notifications." : "Ovo se koristi za slanje notifikacija.", - "Send mode" : "Način rada za slanje", - "Encryption" : "Šifriranje", - "From address" : "S adrese", - "mail" : "pošta", - "Authentication method" : "Postupak autentikacije", - "Authentication required" : "Potrebna autentikacija", - "Server address" : "Adresa poslužitelja", - "Port" : "Priključak", - "Credentials" : "Vjerodajnice", - "SMTP Username" : "Korisničko ime SMTP", - "SMTP Password" : "Lozinka SMPT", - "Test email settings" : "Postavke za testnu e-poštu", - "Send email" : "Pošaljite e-poštu", - "More" : "Više", - "Less" : "Manje", - "Version" : "Verzija", - "Documentation:" : "Dokumentacija:", - "Enable only for specific groups" : "Omogućite samo za specifične grupe", - "Uninstall App" : "Deinstalirajte app", - "Common Name" : "Common Name", - "Valid until" : "Valid until", - "Issued By" : "Issued By", - "Valid until %s" : "Valid until %s", - "Cheers!" : "Cheers!", - "Forum" : "Forum", - "Profile picture" : "Slika profila", - "Upload new" : "Učitajte novu", - "Remove image" : "Uklonite sliku", - "Cancel" : "Odustanite", - "Email" : "E-pošta", - "Your email address" : "Vaša adresa e-pošte", - "Password" : "Lozinka", - "Unable to change your password" : "Vašu lozinku nije moguće promijeniti", - "Current password" : "Trenutna lozinka", - "New password" : "Nova lozinka", - "Change password" : "Promijenite lozinku", - "Language" : "Jezik", - "Help translate" : "Pomozite prevesti", - "Get the apps to sync your files" : "Koristite aplikacije za sinkronizaciju svojih datoteka", - "Show First Run Wizard again" : "Opet pokažite First Run Wizard", - "Show storage location" : "Prikaži mjesto pohrane", - "Show last log in" : "Prikaži zadnje spajanje", - "Username" : "Korisničko ime", - "Create" : "Kreirajte", - "Admin Recovery Password" : "Admin lozinka za oporavak", - "Enter the recovery password in order to recover the users files during password change" : "Unesite lozinku za oporavak da biste oporavili korisničke datoteke tijekom promjene lozinke", - "Add Group" : "Dodajte grupu", - "Group" : "Grupa", - "Everyone" : "Svi", - "Admins" : "Admins", - "Default Quota" : "Zadana kvota", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Molimo unesite kvotu za spremanje (npr: \"512 MB\" ili \"12 GB\")", - "Other" : "Ostalo", - "Full Name" : "Puno ime", - "Quota" : "Kvota", - "Storage Location" : "Mjesto za spremanje", - "Last Login" : "Zadnja prijava", - "change full name" : "promijenite puno ime", - "set new password" : "postavite novu lozinku", - "Default" : "Zadano" -}, -"nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;"); diff --git a/settings/l10n/hr.json b/settings/l10n/hr.json deleted file mode 100644 index 09fc5b25e1c..00000000000 --- a/settings/l10n/hr.json +++ /dev/null @@ -1,158 +0,0 @@ -{ "translations": { - "Sharing" : "Dijeljenje zajedničkih resursa", - "External Storage" : "Vanjsko spremište", - "Cron" : "Cron", - "Log" : "Zapisnik", - "Updates" : "nadogradnje", - "Couldn't remove app." : "Nije moguće ukloniti app.", - "Language changed" : "Promjena jezika", - "Invalid request" : "Zahtjev neispravan", - "Authentication error" : "Pogrešna autentikacija", - "Admins can't remove themself from the admin group" : "Administratori ne mogu sami sebe ukloniti iz admin grupe", - "Unable to add user to group %s" : "Dodavanje korisnika grupi %s nije moguće", - "Unable to remove user from group %s" : "Uklanjanje korisnika iz grupe %s nije moguće", - "Couldn't update app." : "Ažuriranje aplikacija nije moguće", - "Wrong password" : "Pogrešna lozinka", - "No user supplied" : "Nijedan korisnik nije dostavljen", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Molimo navedite admin lozinku za oporavak, u protivnom će svi korisnički podaci biti izgubljeni.", - "Wrong admin recovery password. Please check the password and try again." : "Pogrešna admin lozinka za oporavak. Molimo provjerite lozinku i pokušajte ponovno.", - "Unable to change password" : "Promjena lozinke nije moguća", - "Enabled" : "Aktivirano", - "Saved" : "Spremljeno", - "test email settings" : "Postavke za testiranje e-pošte", - "Email sent" : "E-pošta je poslana", - "You need to set your user email before being able to send test emails." : "Prije nego li ste u mogućnosti slati testnu e-poštu trebate postaviti svoj korisnički email.", - "Email saved" : "E-pošta spremljena", - "Your full name has been changed." : "Vaše puno ime je promijenjeno.", - "Unable to change full name" : "Puno ime nije moguće promijeniti.", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Jeste li doista sigurni da želite dodati \"{domain}\" kao pouzdanu domenu?", - "Add trusted domain" : "Dodajte pouzdanu domenu", - "Sending..." : "Slanje...", - "All" : "Sve", - "Please wait...." : "Molimo pričekajte...", - "Error while disabling app" : "Pogreška pri onemogućavanju app", - "Disable" : "Onemogućite", - "Enable" : "Omogućite", - "Error while enabling app" : "Pogreška pri omogućavanju app", - "Updating...." : "Ažuriranje...", - "Error while updating app" : "Pogreška pri ažuriranju app", - "Updated" : "Ažurirano", - "Uninstalling ...." : "Deinstaliranje....", - "Error while uninstalling app" : "Pogreška pri deinstaliranju app", - "Uninstall" : "Deinstalirajte", - "Valid until {date}" : "Valid until {date}", - "Delete" : "Izbrišite", - "Select a profile picture" : "Odaberite sliku profila", - "Very weak password" : "Lozinka vrlo slaba", - "Weak password" : "Lozinka slaba", - "So-so password" : "Lozinka tako-tako", - "Good password" : "Lozinka dobra", - "Strong password" : "Lozinka snažna", - "Groups" : "Grupe", - "Unable to delete {objName}" : "Nije moguće izbrisati {objName}", - "A valid group name must be provided" : "Nužno je navesti valjani naziv grupe", - "deleted {groupName}" : "izbrisana {groupName}", - "undo" : "poništite", - "never" : "nikad", - "deleted {userName}" : "izbrisano {userName}", - "add group" : "dodajte grupu", - "A valid username must be provided" : "Nužno je navesti valjano korisničko ime", - "A valid password must be provided" : "Nužno je navesti valjanu lozinku", - "__language_name__" : "__jezik_naziv___", - "Unlimited" : "Neograničeno", - "Everything (fatal issues, errors, warnings, info, debug)" : "Sve (kobni problemi, pogreške, upozorenja, ispravljanje pogrešaka)", - "Info, warnings, errors and fatal issues" : "Informacije, upozorenja, pogreške i kobni problemi", - "Warnings, errors and fatal issues" : "Upozorenja, pogreške i kobni problemi", - "Errors and fatal issues" : "Pogreške i kobni problemi", - "Fatal issues only" : "Samo kobni problemi", - "None" : "Ništa", - "Login" : "Prijava", - "Plain" : "Čisti tekst", - "NT LAN Manager" : "NT LAN Manager", - "SSL" : "SSL", - "TLS" : "TLS", - "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.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP modul 'fileinfo' nedostaje. Tolo vam preporučjemo da taj modul omogućitekako biste dobili najbolje rezultate u detekciji mime vrste.", - "System locale can not be set to a one which supports UTF-8." : "Regionalnu shemu sustava nemoguće je postaviti na neku koja podržava UTF-8.", - "This means that there might be problems with certain characters in file names." : "To znači da se mogu javiti problemi s određenim znakovima u datoteci.", - "Allow apps to use the Share API" : "Dopustite apps korištenje Share API", - "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", - "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", - "Cron was not executed yet!" : "Cron još nije izvršen!", - "Execute one task with each page loaded" : "Izvršite jedan zadatak sa svakom učitanom stranicom", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php je registriran na webcron usluzi da poziva cron.php svakih 15 minuta preko http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Koristite cron uslugu sustava za pozivanje cron.php datoteke svakih 15 minuta.", - "This is used for sending out notifications." : "Ovo se koristi za slanje notifikacija.", - "Send mode" : "Način rada za slanje", - "Encryption" : "Šifriranje", - "From address" : "S adrese", - "mail" : "pošta", - "Authentication method" : "Postupak autentikacije", - "Authentication required" : "Potrebna autentikacija", - "Server address" : "Adresa poslužitelja", - "Port" : "Priključak", - "Credentials" : "Vjerodajnice", - "SMTP Username" : "Korisničko ime SMTP", - "SMTP Password" : "Lozinka SMPT", - "Test email settings" : "Postavke za testnu e-poštu", - "Send email" : "Pošaljite e-poštu", - "More" : "Više", - "Less" : "Manje", - "Version" : "Verzija", - "Documentation:" : "Dokumentacija:", - "Enable only for specific groups" : "Omogućite samo za specifične grupe", - "Uninstall App" : "Deinstalirajte app", - "Common Name" : "Common Name", - "Valid until" : "Valid until", - "Issued By" : "Issued By", - "Valid until %s" : "Valid until %s", - "Cheers!" : "Cheers!", - "Forum" : "Forum", - "Profile picture" : "Slika profila", - "Upload new" : "Učitajte novu", - "Remove image" : "Uklonite sliku", - "Cancel" : "Odustanite", - "Email" : "E-pošta", - "Your email address" : "Vaša adresa e-pošte", - "Password" : "Lozinka", - "Unable to change your password" : "Vašu lozinku nije moguće promijeniti", - "Current password" : "Trenutna lozinka", - "New password" : "Nova lozinka", - "Change password" : "Promijenite lozinku", - "Language" : "Jezik", - "Help translate" : "Pomozite prevesti", - "Get the apps to sync your files" : "Koristite aplikacije za sinkronizaciju svojih datoteka", - "Show First Run Wizard again" : "Opet pokažite First Run Wizard", - "Show storage location" : "Prikaži mjesto pohrane", - "Show last log in" : "Prikaži zadnje spajanje", - "Username" : "Korisničko ime", - "Create" : "Kreirajte", - "Admin Recovery Password" : "Admin lozinka za oporavak", - "Enter the recovery password in order to recover the users files during password change" : "Unesite lozinku za oporavak da biste oporavili korisničke datoteke tijekom promjene lozinke", - "Add Group" : "Dodajte grupu", - "Group" : "Grupa", - "Everyone" : "Svi", - "Admins" : "Admins", - "Default Quota" : "Zadana kvota", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Molimo unesite kvotu za spremanje (npr: \"512 MB\" ili \"12 GB\")", - "Other" : "Ostalo", - "Full Name" : "Puno ime", - "Quota" : "Kvota", - "Storage Location" : "Mjesto za spremanje", - "Last Login" : "Zadnja prijava", - "change full name" : "promijenite puno ime", - "set new password" : "postavite novu lozinku", - "Default" : "Zadano" -},"pluralForm" :"nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;" -}
\ No newline at end of file diff --git a/settings/l10n/hu_HU.js b/settings/l10n/hu_HU.js deleted file mode 100644 index 95e547f3c5d..00000000000 --- a/settings/l10n/hu_HU.js +++ /dev/null @@ -1,273 +0,0 @@ -OC.L10N.register( - "settings", - { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Biztonsági és telepítési figyelmeztetések", - "Sharing" : "Megosztás", - "Server-side encryption" : "Szerveroldali titkosítás", - "External Storage" : "Külső tárolási szolgáltatások becsatolása", - "Cron" : "Ütemezett feladatok", - "Email server" : "E-mail szerver", - "Log" : "Naplózás", - "Tips & tricks" : "Tippek és trükkök", - "Updates" : "Frissítések", - "Couldn't remove app." : "Az alkalmazást nem sikerült eltávolítani.", - "Language changed" : "A nyelv megváltozott", - "Invalid request" : "Érvénytelen kérés", - "Authentication error" : "Azonosítási hiba", - "Admins can't remove themself from the admin group" : "Adminisztrátorok nem távolíthatják el magukat az admin csoportból.", - "Unable to add user to group %s" : "A felhasználó nem adható hozzá ehhez a csoporthoz: %s", - "Unable to remove user from group %s" : "A felhasználó nem távolítható el ebből a csoportból: %s", - "Couldn't update app." : "A program frissítése nem sikerült.", - "Wrong password" : "Hibás jelszó", - "No user supplied" : "Nincs megadva felhasználó", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Adja meg az admin helyreállítási jelszót, máskülönben az összes felhasználói adat elveszik!", - "Wrong admin recovery password. Please check the password and try again." : "Hibás admin helyreállítási jelszó. Ellenőrizze a jelszót és próbálja újra!", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "A háttér-alrendszer nem támogatja a jelszómódosítást, de felhasználó titkosítási kulcsát sikeresen frissítettük.", - "Unable to change password" : "Nem sikerült megváltoztatni a jelszót", - "Enabled" : "Engedélyezve", - "Not enabled" : "Tiltva", - "installing and updating apps via the app store or Federated Cloud Sharing" : "alkalmazások telepítése és frissítése az alkalmazás tárból vagy Szövetséges Felhő Megosztásból", - "Federated Cloud Sharing" : "Megosztás Egyesített Felhőben", - "A problem occurred, please check your log files (Error: %s)" : "Probléma történt, kérjük nézd meg a naplófájlokat (Hiba: %s).", - "Migration Completed" : "Migráció kész!", - "Group already exists." : "A csoport már létezik.", - "Unable to add group." : "Nem lehet létrehozni a csoportot.", - "Unable to delete group." : "Nem lehet törölni a csoportot.", - "log-level out of allowed range" : "A naplózási szint a megengedett terjedelmen kívül van.", - "Saved" : "Elmentve", - "test email settings" : "e-mail beállítások ellenőrzése", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Hiba történt az e-mail küldésekor. Kérjük ellenőrizd a beállításokat! (Hiba: %s)", - "Email sent" : "Az e-mail elküldve!", - "You need to set your user email before being able to send test emails." : "Előbb meg kell adnia az e-mail címét, mielőtt tesztelni tudná az e-mail küldést.", - "Invalid mail address" : "Érvénytelen e-mail cím", - "A user with that name already exists." : "Ilyen névvel már létezik felhasználó!", - "Unable to create user." : "Nem lehet létrehozni a felhasználót.", - "Your %s account was created" : "%s fiók létrehozva", - "Unable to delete user." : "Nem lehet törölni a felhasználót.", - "Forbidden" : "Tiltott", - "Invalid user" : "Érvénytelen felhasználó", - "Unable to change mail address" : "Nem lehet megváltoztatni az e-mail címet", - "Email saved" : "E-mail elmentve!", - "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", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Biztos abban, hogy hozzá akarja adni \"{domain}\"-t a megbízható tartományokhoz?", - "Add trusted domain" : "Megbízható tartomány hozzáadása", - "Migration in progress. Please wait until the migration is finished" : "Migráció folyamatban. Kérjük várj, míg a migráció befejeződik.", - "Migration started …" : "Migráció elindítva ...", - "Sending..." : "Küldés...", - "Official" : "Hivatalos", - "Approved" : "Jóváhagyott", - "Experimental" : "Kísérleti", - "All" : "Mind", - "No apps found for your version" : "Nem található alkalmazás a verziód számára", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "A hivatalos alkalmazásokat az ownCloud közösségen belül fejlesztik. \nAz általuk nyújtott központi ownCloud funkciók készen állnak a produktív használatra.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Ez az alkalmazás még nincs biztonságilag ellenőrizve és vagy új, vagy ismert instabil. Telepítés csak saját felelősségre!", - "Update to %s" : "Frissítés erre: %s", - "Please wait...." : "Kérjük várj...", - "Error while disabling app" : "Hiba az alkalmazás letiltása közben", - "Disable" : "Letiltás", - "Enable" : "Engedélyezés", - "Error while enabling app" : "Hiba az alkalmazás engedélyezése közben", - "Updating...." : "Frissítés folyamatban...", - "Error while updating app" : "Hiba történt az alkalmazás frissítése közben", - "Updated" : "Frissítve", - "Uninstalling ...." : "Eltávolítás ...", - "Error while uninstalling app" : "Hiba történt az alkalmazás eltávolítása közben", - "Uninstall" : "Eltávolítás", - "App update" : "Alkalmazás frissítése", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Hiba történt! Kérem töltsön fel egy, ASCII karakterekkel kódolt PEM tanusítványt!", - "Valid until {date}" : "Érvényes: {date}", - "Delete" : "Törlés", - "An error occurred: {message}" : "Hiba történt: {message}", - "Select a profile picture" : "Válasszon profilképet!", - "Very weak password" : "Nagyon gyenge jelszó", - "Weak password" : "Gyenge jelszó", - "So-so password" : "Nem túl jó jelszó", - "Good password" : "Jó jelszó", - "Strong password" : "Erős jelszó", - "Groups" : "Csoportok", - "Unable to delete {objName}" : "Ezt nem sikerült törölni: {objName}", - "A valid group name must be provided" : "Érvényes csoportnevet kell megadni", - "deleted {groupName}" : "törölve: {groupName}", - "undo" : "visszavonás", - "no group" : "nincs csoport", - "never" : "soha", - "deleted {userName}" : "törölve: {userName}", - "add group" : "csoport hozzáadása", - "Changing the password will result in data loss, because data recovery is not available for this user" : "A jelszó megváltoztatása adatvesztéssel jár, mert lehetséges az adatok visszaállítása ennek a felhasználónak", - "A valid username must be provided" : "Érvényes felhasználónevet kell megadnia", - "A valid password must be provided" : "Érvényes jelszót kell megadnia", - "A valid email must be provided" : "Érvényes e-mail címet kell megadni", - "__language_name__" : "__language_name__", - "Unlimited" : "Korlátlan", - "Personal info" : "Személyes információk", - "Sync clients" : "Szinkronizáló kliensek", - "Everything (fatal issues, errors, warnings, info, debug)" : "Minden (végzetes hibák, hibák, figyelmeztetések, információk, hibakeresési üzenetek)", - "Info, warnings, errors and fatal issues" : "Információk, figyelmeztetések, hibák és végzetes hibák", - "Warnings, errors and fatal issues" : "Figyelmeztetések, hibák és végzetes hibák", - "Errors and fatal issues" : "Hibák és végzetes hibák", - "Fatal issues only" : "Csak a végzetes hibák", - "None" : "Egyik sem", - "Login" : "Login", - "Plain" : "Plain", - "NT LAN Manager" : "NT LAN Manager", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "Úgy tűnik, hogy a PHP nem tudja olvasni a rendszer környezeti változóit. A getenv(\"PATH\") teszt visszatérési értéke üres.", - "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.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "A szervered Microsoft Windowson fut. A legjobb felhasználói élményért erősen javasoljuk, hogy Linuxot használj.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "A 'fileinfo' PHP modul hiányzik. Erősen javasolt ennek a modulnak a telepítése, mert ezzel lényegesen jobb a MIME-típusok felismerése.", - "System locale can not be set to a one which supports UTF-8." : "A rendszer lokalizációs állományai között nem sikerült olyat beállítani, ami támogatja az UTF-8-at.", - "This means that there might be problems with certain characters in file names." : "Ez azt jelenti, hogy probléma lehet bizonyos karakterekkel a fájlnevekben.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Feltétlenül javasoljuk, hogy telepítse a szükséges csomagokat ahhoz, hogy a rendszere támogassa a következő lokalizációk valamelyikét: %s", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Ha a telepítése nem a webkiszolgáló gyökerében van, és a rendszer cron szolgáltatását használja, akkor problémák lehetnek az URL-ek képzésével. Ezek elkerülése érdekében állítsa be a config.php-ban az \"overwrite.cli.url\" paramétert a telepítés által használt webútvonalra. (Javasolt beállítás: \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Az ütemezett feladat (cronjob) nem futott le parancssorból. A következő hibák tűntek fel:", - "All checks passed." : "Minden ellenőrzés sikeres.", - "Open documentation" : "Dokumentáció megnyitása", - "Allow apps to use the Share API" : "Lehetővé teszi, hogy a programmodulok is használhassák a megosztást", - "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 to other users" : "A felhasználók küldhessenek más felhasználóknak e-mail értesítést a megosztott fájlokró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.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Felhasználónév automatikus befejezése engedélyezése a megosztás ablakban. Ha le van tiltva, akkor a teljes felhasználónevet kell beírni.", - "Last cron job execution: %s." : "Az utolsó cron feladat ekkor futott le: %s.", - "Last cron job execution: %s. Something seems wrong." : "Az utolsó cron feladat ekkor futott le: %s. Valami nincs rendben.", - "Cron was not executed yet!" : "A cron feladat még nem futott le!", - "Execute one task with each page loaded" : "Egy-egy feladat végrehajtása minden alkalommal, amikor egy weboldalt letöltenek", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "A cron.php webcron szolgáltatásként van regisztrálva, hogy 15 percenként egyszer lefuttassa a cron.php-t.", - "Use system's cron service to call the cron.php file every 15 minutes." : "A rendszer cron szolgáltatását használjuk, mely a cron.php állományt futtatja le 15 percenként.", - "Enable server-side encryption" : "Szerveroldali titkosítás engedélyezése", - "Please read carefully before activating server-side encryption: " : "Kérjük, ezt olvasd el figyelmesen mielőtt engedélyezed a szerveroldali titkosítást:", - "Be aware that encryption always increases the file size." : "Ügyeljen arra, hogy a titkosítás mindig megnöveli a fájl méretét!", - "This is the final warning: Do you really want to enable encryption?" : "Ez az utolsó figyelmeztetés: Biztosan szeretnéd engedélyezni a titkosítást?", - "Enable encryption" : "Titkosítás engedélyezése", - "No encryption module loaded, please enable an encryption module in the app menu." : "Nincs titkosítási modul betöltve, kérjük engedélyezd a titkosítási modult az alkalmazások menüben.", - "Select default encryption module:" : "Alapértelmezett titkosítási modul:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Migrálni kell a titkosítási kulcsokat a régi titkosításból (ownCloud <= 8.0) egy újba. Kérjük, engedélyezd az „Alapértelmezett titkosítási modul”-t és futtasd ezt: occ encryption:migrate", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Migrálni kell a titkosítási kulcsokat a régi titkosításból (ownCloud <= 8.0) egy újba.", - "Start migration" : "Migrálás indítása", - "This is used for sending out notifications." : "Ezt használjuk a jelentések kiküldésére.", - "Send mode" : "Küldési mód", - "Encryption" : "Titkosítás", - "From address" : "A feladó címe", - "mail" : "mail", - "Authentication method" : "A felhasználóazonosítás módszere", - "Authentication required" : "Felhasználóazonosítás szükséges", - "Server address" : "A kiszolgáló címe", - "Port" : "Port", - "Credentials" : "Azonosítók", - "SMTP Username" : "SMTP felhasználónév", - "SMTP Password" : "SMTP jelszó", - "Store credentials" : "Azonosítók eltárolása", - "Test email settings" : "Az e-mail beállítások ellenőrzése", - "Send email" : "E-mail küldése", - "Download logfile" : "Naplófájl letöltése", - "More" : "Több", - "Less" : "Kevesebb", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "A naplófájl 100MB-nál nagyobb. A letöltése hosszabb időt vehet igénybe.", - "What to log" : "Mit naplózzon", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "Adatbázisként az SQLite-ot fogjuk használni. Nagyobb telepítések esetén javasoljuk, hogy váltson másik adatbázis háttérkiszolgálóra", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Amikor az asztali klienset használja fálj szinkronizációra, akkor az SQLite használata nem ajánlott.", - "How to do backups" : "Hogyan csináljunk biztonsági mentéseket", - "Advanced monitoring" : "Haladó monitorozás", - "Performance tuning" : "Teljesítményi hangolás", - "Improving the config.php" : "config.php javítása", - "Theming" : "Témázás", - "Hardening and security guidance" : "Erősítési és biztonsági útmutató", - "Version" : "Verzió", - "Developer documentation" : "Fejlesztői dokumentáció", - "Experimental applications ahead" : "Kísérleti alkalmazások előre", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "A kísérleti applikációk nincsenek biztonsági ellenőrizve, ismert vagy ismeretlen hibák lehetnek bennük és aktív fejlesztés alatt állnak. A telepítésük adatvesztéshez vezethet, vagy biztonsági kockázata lehet.", - "Documentation:" : "Dokumentációk:", - "User documentation" : "Felhasználói dokumentáció", - "Admin documentation" : "Adminisztrátori dokumentáció", - "Show description …" : "Leírás megjelenítése ...", - "Hide description …" : "Leírás elrejtése ...", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Ennek az alkalmazásnak nincs minimális ownCloud verzió megadva. Ez hibát okoz majd az ownCloud 11-es és későbbi verziókban.", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Ennek az alkalmazásnak nincs maximális ownCloud verzió megadva. Ez hibát okoz majd az ownCloud 11-es és későbbi verziókban.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Ezt az applikációt nem lehet telepíteni, mert a következő függőségek hiányoznak:", - "Enable only for specific groups" : "Csak bizonyos csoportok számára tegyük elérhetővé", - "Uninstall App" : "Alkalmazás eltávolítása", - "Enable experimental apps" : "Kísérleti alkalmazások engedélyezése", - "SSL Root Certificates" : "SSL Root tanusítványok", - "Common Name" : "Általános Név", - "Valid until" : "Érvényes", - "Issued By" : "Kiadta", - "Valid until %s" : "Érvényes: %s", - "Import root certificate" : "Gyökértanúsítvány importálása", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Üdv!<br><br>Értesítünk, hogy van egy %s fiókja.<br><br>Felhasználónév: %s<br>Hozzáférés: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Üdv.", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Üdv!\n\nÉrtesítünk, hogy van egy %s fiókja.\n\nFelhasználónév: %s\nHozzáférés: %s\n\n", - "Administrator documentation" : "Adminisztrátori dokumentáció", - "Online documentation" : "Online dokumentáció", - "Forum" : "Fórum", - "Issue tracker" : "Hibabejelentések", - "Commercial support" : "Kereskedelmi támogatás", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "Jelenleg használt: <strong>%s</strong>, maximálisan elérhető: <strong>%s</strong>", - "Profile picture" : "Profilkép", - "Upload new" : "Új feltöltése", - "Remove image" : "A kép eltávolítása", - "png or jpg, max. 20 MB" : "png vagy jpg, max. 20 MB", - "Cancel" : "Mégsem", - "Choose as profile picture" : "Kiválasztás profil képként", - "Full name" : "Teljes név", - "No display name set" : "Nincs megjelenítési név beállítva", - "Email" : "E-mail", - "Your email address" : "Az Ön e-mail címe", - "No email address set" : "Nincs e-mail cím beállítva", - "You are member of the following groups:" : "Tagja vagy a következő csoport(ok)nak:", - "Password" : "Jelszó", - "Unable to change your password" : "A jelszó nem változtatható meg", - "Current password" : "A jelenlegi jelszó", - "New password" : "Az új jelszó", - "Change password" : "A jelszó megváltoztatása", - "Language" : "Nyelv", - "Help translate" : "Segítsen a fordításban!", - "Get the apps to sync your files" : "Töltse le az állományok szinkronizációjához szükséges programokat!", - "Desktop client" : "Asztali kliens", - "Android app" : "Android applikáció", - "iOS app" : "IOS applikáció", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Ha segíteni szeretnéd a projektet\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">csatlakozz a fejlesztéshez</a>\n\t\tvagy\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">hirdesd az igét</a>!", - "Show First Run Wizard again" : "Nézzük meg újra az első bejelentkezéskori segítséget!", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "{communityopen}ownCloud közösség{linkclose} fejleszti, a {githubopen}forráskód{linkclose} {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose} licenc alatt licencelve.", - "Show storage location" : "Háttértároló helyének mutatása", - "Show last log in" : "Utolsó bejelentkezés megjelenítése", - "Show user backend" : "Felhasználói háttér mutatása", - "Send email to new user" : "E-mail küldése az új felhasználónak", - "Show email address" : "E-mail cím megjelenítése", - "Username" : "Felhasználónév", - "E-Mail" : "E-mail", - "Create" : "Létrehozás", - "Admin Recovery Password" : "Adminisztrátori jelszó az állományok visszanyerésére", - "Enter the recovery password in order to recover the users files during password change" : "Adja meg az adatok visszanyeréséhez szükséges jelszót arra az esetre, ha a felhasználók megváltoztatják a jelszavukat", - "Add Group" : "Csoport létrehozása", - "Group" : "Csoport", - "Everyone" : "Mindenki", - "Admins" : "Adminok", - "Default Quota" : "Alapértelmezett kvóta", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Kérjük adja meg a tárolási kvótát (pl. \"512 MB\" vagy \"12 GB\")", - "Other" : "Más", - "Full Name" : "Teljes név", - "Group Admin for" : "Csoport Adminisztrátor itt", - "Quota" : "Kvóta", - "Storage Location" : "A háttértár helye", - "User Backend" : "Felhasználói háttér", - "Last Login" : "Utolsó bejelentkezés", - "change full name" : "a teljes név megváltoztatása", - "set new password" : "új jelszó beállítása", - "change email address" : "e-mail cím megváltoztatása", - "Default" : "Alapértelmezett" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/hu_HU.json b/settings/l10n/hu_HU.json deleted file mode 100644 index fdf956e0b7a..00000000000 --- a/settings/l10n/hu_HU.json +++ /dev/null @@ -1,271 +0,0 @@ -{ "translations": { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Biztonsági és telepítési figyelmeztetések", - "Sharing" : "Megosztás", - "Server-side encryption" : "Szerveroldali titkosítás", - "External Storage" : "Külső tárolási szolgáltatások becsatolása", - "Cron" : "Ütemezett feladatok", - "Email server" : "E-mail szerver", - "Log" : "Naplózás", - "Tips & tricks" : "Tippek és trükkök", - "Updates" : "Frissítések", - "Couldn't remove app." : "Az alkalmazást nem sikerült eltávolítani.", - "Language changed" : "A nyelv megváltozott", - "Invalid request" : "Érvénytelen kérés", - "Authentication error" : "Azonosítási hiba", - "Admins can't remove themself from the admin group" : "Adminisztrátorok nem távolíthatják el magukat az admin csoportból.", - "Unable to add user to group %s" : "A felhasználó nem adható hozzá ehhez a csoporthoz: %s", - "Unable to remove user from group %s" : "A felhasználó nem távolítható el ebből a csoportból: %s", - "Couldn't update app." : "A program frissítése nem sikerült.", - "Wrong password" : "Hibás jelszó", - "No user supplied" : "Nincs megadva felhasználó", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Adja meg az admin helyreállítási jelszót, máskülönben az összes felhasználói adat elveszik!", - "Wrong admin recovery password. Please check the password and try again." : "Hibás admin helyreállítási jelszó. Ellenőrizze a jelszót és próbálja újra!", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "A háttér-alrendszer nem támogatja a jelszómódosítást, de felhasználó titkosítási kulcsát sikeresen frissítettük.", - "Unable to change password" : "Nem sikerült megváltoztatni a jelszót", - "Enabled" : "Engedélyezve", - "Not enabled" : "Tiltva", - "installing and updating apps via the app store or Federated Cloud Sharing" : "alkalmazások telepítése és frissítése az alkalmazás tárból vagy Szövetséges Felhő Megosztásból", - "Federated Cloud Sharing" : "Megosztás Egyesített Felhőben", - "A problem occurred, please check your log files (Error: %s)" : "Probléma történt, kérjük nézd meg a naplófájlokat (Hiba: %s).", - "Migration Completed" : "Migráció kész!", - "Group already exists." : "A csoport már létezik.", - "Unable to add group." : "Nem lehet létrehozni a csoportot.", - "Unable to delete group." : "Nem lehet törölni a csoportot.", - "log-level out of allowed range" : "A naplózási szint a megengedett terjedelmen kívül van.", - "Saved" : "Elmentve", - "test email settings" : "e-mail beállítások ellenőrzése", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Hiba történt az e-mail küldésekor. Kérjük ellenőrizd a beállításokat! (Hiba: %s)", - "Email sent" : "Az e-mail elküldve!", - "You need to set your user email before being able to send test emails." : "Előbb meg kell adnia az e-mail címét, mielőtt tesztelni tudná az e-mail küldést.", - "Invalid mail address" : "Érvénytelen e-mail cím", - "A user with that name already exists." : "Ilyen névvel már létezik felhasználó!", - "Unable to create user." : "Nem lehet létrehozni a felhasználót.", - "Your %s account was created" : "%s fiók létrehozva", - "Unable to delete user." : "Nem lehet törölni a felhasználót.", - "Forbidden" : "Tiltott", - "Invalid user" : "Érvénytelen felhasználó", - "Unable to change mail address" : "Nem lehet megváltoztatni az e-mail címet", - "Email saved" : "E-mail elmentve!", - "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", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Biztos abban, hogy hozzá akarja adni \"{domain}\"-t a megbízható tartományokhoz?", - "Add trusted domain" : "Megbízható tartomány hozzáadása", - "Migration in progress. Please wait until the migration is finished" : "Migráció folyamatban. Kérjük várj, míg a migráció befejeződik.", - "Migration started …" : "Migráció elindítva ...", - "Sending..." : "Küldés...", - "Official" : "Hivatalos", - "Approved" : "Jóváhagyott", - "Experimental" : "Kísérleti", - "All" : "Mind", - "No apps found for your version" : "Nem található alkalmazás a verziód számára", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "A hivatalos alkalmazásokat az ownCloud közösségen belül fejlesztik. \nAz általuk nyújtott központi ownCloud funkciók készen állnak a produktív használatra.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Ez az alkalmazás még nincs biztonságilag ellenőrizve és vagy új, vagy ismert instabil. Telepítés csak saját felelősségre!", - "Update to %s" : "Frissítés erre: %s", - "Please wait...." : "Kérjük várj...", - "Error while disabling app" : "Hiba az alkalmazás letiltása közben", - "Disable" : "Letiltás", - "Enable" : "Engedélyezés", - "Error while enabling app" : "Hiba az alkalmazás engedélyezése közben", - "Updating...." : "Frissítés folyamatban...", - "Error while updating app" : "Hiba történt az alkalmazás frissítése közben", - "Updated" : "Frissítve", - "Uninstalling ...." : "Eltávolítás ...", - "Error while uninstalling app" : "Hiba történt az alkalmazás eltávolítása közben", - "Uninstall" : "Eltávolítás", - "App update" : "Alkalmazás frissítése", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Hiba történt! Kérem töltsön fel egy, ASCII karakterekkel kódolt PEM tanusítványt!", - "Valid until {date}" : "Érvényes: {date}", - "Delete" : "Törlés", - "An error occurred: {message}" : "Hiba történt: {message}", - "Select a profile picture" : "Válasszon profilképet!", - "Very weak password" : "Nagyon gyenge jelszó", - "Weak password" : "Gyenge jelszó", - "So-so password" : "Nem túl jó jelszó", - "Good password" : "Jó jelszó", - "Strong password" : "Erős jelszó", - "Groups" : "Csoportok", - "Unable to delete {objName}" : "Ezt nem sikerült törölni: {objName}", - "A valid group name must be provided" : "Érvényes csoportnevet kell megadni", - "deleted {groupName}" : "törölve: {groupName}", - "undo" : "visszavonás", - "no group" : "nincs csoport", - "never" : "soha", - "deleted {userName}" : "törölve: {userName}", - "add group" : "csoport hozzáadása", - "Changing the password will result in data loss, because data recovery is not available for this user" : "A jelszó megváltoztatása adatvesztéssel jár, mert lehetséges az adatok visszaállítása ennek a felhasználónak", - "A valid username must be provided" : "Érvényes felhasználónevet kell megadnia", - "A valid password must be provided" : "Érvényes jelszót kell megadnia", - "A valid email must be provided" : "Érvényes e-mail címet kell megadni", - "__language_name__" : "__language_name__", - "Unlimited" : "Korlátlan", - "Personal info" : "Személyes információk", - "Sync clients" : "Szinkronizáló kliensek", - "Everything (fatal issues, errors, warnings, info, debug)" : "Minden (végzetes hibák, hibák, figyelmeztetések, információk, hibakeresési üzenetek)", - "Info, warnings, errors and fatal issues" : "Információk, figyelmeztetések, hibák és végzetes hibák", - "Warnings, errors and fatal issues" : "Figyelmeztetések, hibák és végzetes hibák", - "Errors and fatal issues" : "Hibák és végzetes hibák", - "Fatal issues only" : "Csak a végzetes hibák", - "None" : "Egyik sem", - "Login" : "Login", - "Plain" : "Plain", - "NT LAN Manager" : "NT LAN Manager", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "Úgy tűnik, hogy a PHP nem tudja olvasni a rendszer környezeti változóit. A getenv(\"PATH\") teszt visszatérési értéke üres.", - "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.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "A szervered Microsoft Windowson fut. A legjobb felhasználói élményért erősen javasoljuk, hogy Linuxot használj.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "A 'fileinfo' PHP modul hiányzik. Erősen javasolt ennek a modulnak a telepítése, mert ezzel lényegesen jobb a MIME-típusok felismerése.", - "System locale can not be set to a one which supports UTF-8." : "A rendszer lokalizációs állományai között nem sikerült olyat beállítani, ami támogatja az UTF-8-at.", - "This means that there might be problems with certain characters in file names." : "Ez azt jelenti, hogy probléma lehet bizonyos karakterekkel a fájlnevekben.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Feltétlenül javasoljuk, hogy telepítse a szükséges csomagokat ahhoz, hogy a rendszere támogassa a következő lokalizációk valamelyikét: %s", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Ha a telepítése nem a webkiszolgáló gyökerében van, és a rendszer cron szolgáltatását használja, akkor problémák lehetnek az URL-ek képzésével. Ezek elkerülése érdekében állítsa be a config.php-ban az \"overwrite.cli.url\" paramétert a telepítés által használt webútvonalra. (Javasolt beállítás: \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Az ütemezett feladat (cronjob) nem futott le parancssorból. A következő hibák tűntek fel:", - "All checks passed." : "Minden ellenőrzés sikeres.", - "Open documentation" : "Dokumentáció megnyitása", - "Allow apps to use the Share API" : "Lehetővé teszi, hogy a programmodulok is használhassák a megosztást", - "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 to other users" : "A felhasználók küldhessenek más felhasználóknak e-mail értesítést a megosztott fájlokró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.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Felhasználónév automatikus befejezése engedélyezése a megosztás ablakban. Ha le van tiltva, akkor a teljes felhasználónevet kell beírni.", - "Last cron job execution: %s." : "Az utolsó cron feladat ekkor futott le: %s.", - "Last cron job execution: %s. Something seems wrong." : "Az utolsó cron feladat ekkor futott le: %s. Valami nincs rendben.", - "Cron was not executed yet!" : "A cron feladat még nem futott le!", - "Execute one task with each page loaded" : "Egy-egy feladat végrehajtása minden alkalommal, amikor egy weboldalt letöltenek", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "A cron.php webcron szolgáltatásként van regisztrálva, hogy 15 percenként egyszer lefuttassa a cron.php-t.", - "Use system's cron service to call the cron.php file every 15 minutes." : "A rendszer cron szolgáltatását használjuk, mely a cron.php állományt futtatja le 15 percenként.", - "Enable server-side encryption" : "Szerveroldali titkosítás engedélyezése", - "Please read carefully before activating server-side encryption: " : "Kérjük, ezt olvasd el figyelmesen mielőtt engedélyezed a szerveroldali titkosítást:", - "Be aware that encryption always increases the file size." : "Ügyeljen arra, hogy a titkosítás mindig megnöveli a fájl méretét!", - "This is the final warning: Do you really want to enable encryption?" : "Ez az utolsó figyelmeztetés: Biztosan szeretnéd engedélyezni a titkosítást?", - "Enable encryption" : "Titkosítás engedélyezése", - "No encryption module loaded, please enable an encryption module in the app menu." : "Nincs titkosítási modul betöltve, kérjük engedélyezd a titkosítási modult az alkalmazások menüben.", - "Select default encryption module:" : "Alapértelmezett titkosítási modul:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Migrálni kell a titkosítási kulcsokat a régi titkosításból (ownCloud <= 8.0) egy újba. Kérjük, engedélyezd az „Alapértelmezett titkosítási modul”-t és futtasd ezt: occ encryption:migrate", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Migrálni kell a titkosítási kulcsokat a régi titkosításból (ownCloud <= 8.0) egy újba.", - "Start migration" : "Migrálás indítása", - "This is used for sending out notifications." : "Ezt használjuk a jelentések kiküldésére.", - "Send mode" : "Küldési mód", - "Encryption" : "Titkosítás", - "From address" : "A feladó címe", - "mail" : "mail", - "Authentication method" : "A felhasználóazonosítás módszere", - "Authentication required" : "Felhasználóazonosítás szükséges", - "Server address" : "A kiszolgáló címe", - "Port" : "Port", - "Credentials" : "Azonosítók", - "SMTP Username" : "SMTP felhasználónév", - "SMTP Password" : "SMTP jelszó", - "Store credentials" : "Azonosítók eltárolása", - "Test email settings" : "Az e-mail beállítások ellenőrzése", - "Send email" : "E-mail küldése", - "Download logfile" : "Naplófájl letöltése", - "More" : "Több", - "Less" : "Kevesebb", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "A naplófájl 100MB-nál nagyobb. A letöltése hosszabb időt vehet igénybe.", - "What to log" : "Mit naplózzon", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "Adatbázisként az SQLite-ot fogjuk használni. Nagyobb telepítések esetén javasoljuk, hogy váltson másik adatbázis háttérkiszolgálóra", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Amikor az asztali klienset használja fálj szinkronizációra, akkor az SQLite használata nem ajánlott.", - "How to do backups" : "Hogyan csináljunk biztonsági mentéseket", - "Advanced monitoring" : "Haladó monitorozás", - "Performance tuning" : "Teljesítményi hangolás", - "Improving the config.php" : "config.php javítása", - "Theming" : "Témázás", - "Hardening and security guidance" : "Erősítési és biztonsági útmutató", - "Version" : "Verzió", - "Developer documentation" : "Fejlesztői dokumentáció", - "Experimental applications ahead" : "Kísérleti alkalmazások előre", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "A kísérleti applikációk nincsenek biztonsági ellenőrizve, ismert vagy ismeretlen hibák lehetnek bennük és aktív fejlesztés alatt állnak. A telepítésük adatvesztéshez vezethet, vagy biztonsági kockázata lehet.", - "Documentation:" : "Dokumentációk:", - "User documentation" : "Felhasználói dokumentáció", - "Admin documentation" : "Adminisztrátori dokumentáció", - "Show description …" : "Leírás megjelenítése ...", - "Hide description …" : "Leírás elrejtése ...", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Ennek az alkalmazásnak nincs minimális ownCloud verzió megadva. Ez hibát okoz majd az ownCloud 11-es és későbbi verziókban.", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Ennek az alkalmazásnak nincs maximális ownCloud verzió megadva. Ez hibát okoz majd az ownCloud 11-es és későbbi verziókban.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Ezt az applikációt nem lehet telepíteni, mert a következő függőségek hiányoznak:", - "Enable only for specific groups" : "Csak bizonyos csoportok számára tegyük elérhetővé", - "Uninstall App" : "Alkalmazás eltávolítása", - "Enable experimental apps" : "Kísérleti alkalmazások engedélyezése", - "SSL Root Certificates" : "SSL Root tanusítványok", - "Common Name" : "Általános Név", - "Valid until" : "Érvényes", - "Issued By" : "Kiadta", - "Valid until %s" : "Érvényes: %s", - "Import root certificate" : "Gyökértanúsítvány importálása", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Üdv!<br><br>Értesítünk, hogy van egy %s fiókja.<br><br>Felhasználónév: %s<br>Hozzáférés: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Üdv.", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Üdv!\n\nÉrtesítünk, hogy van egy %s fiókja.\n\nFelhasználónév: %s\nHozzáférés: %s\n\n", - "Administrator documentation" : "Adminisztrátori dokumentáció", - "Online documentation" : "Online dokumentáció", - "Forum" : "Fórum", - "Issue tracker" : "Hibabejelentések", - "Commercial support" : "Kereskedelmi támogatás", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "Jelenleg használt: <strong>%s</strong>, maximálisan elérhető: <strong>%s</strong>", - "Profile picture" : "Profilkép", - "Upload new" : "Új feltöltése", - "Remove image" : "A kép eltávolítása", - "png or jpg, max. 20 MB" : "png vagy jpg, max. 20 MB", - "Cancel" : "Mégsem", - "Choose as profile picture" : "Kiválasztás profil képként", - "Full name" : "Teljes név", - "No display name set" : "Nincs megjelenítési név beállítva", - "Email" : "E-mail", - "Your email address" : "Az Ön e-mail címe", - "No email address set" : "Nincs e-mail cím beállítva", - "You are member of the following groups:" : "Tagja vagy a következő csoport(ok)nak:", - "Password" : "Jelszó", - "Unable to change your password" : "A jelszó nem változtatható meg", - "Current password" : "A jelenlegi jelszó", - "New password" : "Az új jelszó", - "Change password" : "A jelszó megváltoztatása", - "Language" : "Nyelv", - "Help translate" : "Segítsen a fordításban!", - "Get the apps to sync your files" : "Töltse le az állományok szinkronizációjához szükséges programokat!", - "Desktop client" : "Asztali kliens", - "Android app" : "Android applikáció", - "iOS app" : "IOS applikáció", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Ha segíteni szeretnéd a projektet\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">csatlakozz a fejlesztéshez</a>\n\t\tvagy\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">hirdesd az igét</a>!", - "Show First Run Wizard again" : "Nézzük meg újra az első bejelentkezéskori segítséget!", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "{communityopen}ownCloud közösség{linkclose} fejleszti, a {githubopen}forráskód{linkclose} {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose} licenc alatt licencelve.", - "Show storage location" : "Háttértároló helyének mutatása", - "Show last log in" : "Utolsó bejelentkezés megjelenítése", - "Show user backend" : "Felhasználói háttér mutatása", - "Send email to new user" : "E-mail küldése az új felhasználónak", - "Show email address" : "E-mail cím megjelenítése", - "Username" : "Felhasználónév", - "E-Mail" : "E-mail", - "Create" : "Létrehozás", - "Admin Recovery Password" : "Adminisztrátori jelszó az állományok visszanyerésére", - "Enter the recovery password in order to recover the users files during password change" : "Adja meg az adatok visszanyeréséhez szükséges jelszót arra az esetre, ha a felhasználók megváltoztatják a jelszavukat", - "Add Group" : "Csoport létrehozása", - "Group" : "Csoport", - "Everyone" : "Mindenki", - "Admins" : "Adminok", - "Default Quota" : "Alapértelmezett kvóta", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Kérjük adja meg a tárolási kvótát (pl. \"512 MB\" vagy \"12 GB\")", - "Other" : "Más", - "Full Name" : "Teljes név", - "Group Admin for" : "Csoport Adminisztrátor itt", - "Quota" : "Kvóta", - "Storage Location" : "A háttértár helye", - "User Backend" : "Felhasználói háttér", - "Last Login" : "Utolsó bejelentkezés", - "change full name" : "a teljes név megváltoztatása", - "set new password" : "új jelszó beállítása", - "change email address" : "e-mail cím megváltoztatása", - "Default" : "Alapértelmezett" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/hy.js b/settings/l10n/hy.js deleted file mode 100644 index 9fc368c176a..00000000000 --- a/settings/l10n/hy.js +++ /dev/null @@ -1,32 +0,0 @@ -OC.L10N.register( - "settings", - { - "Updates" : "Թարմացումներ", - "Language changed" : "Լեզուն փոխվեց", - "Wrong password" : "Սխալ գաղտնաբառ", - "Unable to change password" : "Չկարողացա փոխել գաղտնաբառը", - "Saved" : "Պահված", - "Delete" : "Ջնջել", - "Very weak password" : "Շատ թույլ գաղտնաբառ", - "Weak password" : "Թույլ գաղտնաբառ", - "So-so password" : "Միջինոտ գաղտնաբառ", - "Good password" : "Լավ գաղտնաբառ", - "Strong password" : "Ուժեղ գաղտնաբառ", - "Groups" : "Խմբեր", - "never" : "երբեք", - "add group" : "խումբ ավելացնել", - "SSL" : "SSL", - "TLS" : "TLS", - "days" : "օր", - "Cancel" : "Չեղարկել", - "Email" : "Էլ. հասցե", - "Password" : "Գաղտնաբառ", - "New password" : "Նոր գաղտնաբառ", - "Change password" : "Փոխել գաղտնաբառը", - "Language" : "Լեզու", - "Help translate" : "Օգնել թարգմանել", - "Username" : "Օգտանուն", - "Group" : "Խումբ", - "Other" : "Այլ" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/hy.json b/settings/l10n/hy.json deleted file mode 100644 index cf0fd4d1fd8..00000000000 --- a/settings/l10n/hy.json +++ /dev/null @@ -1,30 +0,0 @@ -{ "translations": { - "Updates" : "Թարմացումներ", - "Language changed" : "Լեզուն փոխվեց", - "Wrong password" : "Սխալ գաղտնաբառ", - "Unable to change password" : "Չկարողացա փոխել գաղտնաբառը", - "Saved" : "Պահված", - "Delete" : "Ջնջել", - "Very weak password" : "Շատ թույլ գաղտնաբառ", - "Weak password" : "Թույլ գաղտնաբառ", - "So-so password" : "Միջինոտ գաղտնաբառ", - "Good password" : "Լավ գաղտնաբառ", - "Strong password" : "Ուժեղ գաղտնաբառ", - "Groups" : "Խմբեր", - "never" : "երբեք", - "add group" : "խումբ ավելացնել", - "SSL" : "SSL", - "TLS" : "TLS", - "days" : "օր", - "Cancel" : "Չեղարկել", - "Email" : "Էլ. հասցե", - "Password" : "Գաղտնաբառ", - "New password" : "Նոր գաղտնաբառ", - "Change password" : "Փոխել գաղտնաբառը", - "Language" : "Լեզու", - "Help translate" : "Օգնել թարգմանել", - "Username" : "Օգտանուն", - "Group" : "Խումբ", - "Other" : "Այլ" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/ia.js b/settings/l10n/ia.js deleted file mode 100644 index a4d027b7b37..00000000000 --- a/settings/l10n/ia.js +++ /dev/null @@ -1,42 +0,0 @@ -OC.L10N.register( - "settings", - { - "Log" : "Registro", - "Updates" : "Actualisationes", - "Language changed" : "Linguage cambiate", - "Invalid request" : "Requesta invalide", - "Wrong password" : "Contrasigno errate", - "Saved" : "Salveguardate", - "Email sent" : "Message de e-posta inviate", - "All" : "Omne", - "Delete" : "Deler", - "Very weak password" : "Contrasigno multo debile", - "Weak password" : "Contrasigno debile", - "So-so password" : "Contrasigno passabile", - "Good password" : "Contrasigno bon", - "Strong password" : "Contrasigno forte", - "Groups" : "Gruppos", - "never" : "nunquam", - "__language_name__" : "Interlingua", - "More" : "Plus", - "Cheers!" : "Acclamationes!", - "Profile picture" : "Imagine de profilo", - "Cancel" : "Cancellar", - "Email" : "E-posta", - "Your email address" : "Tu adresse de e-posta", - "Password" : "Contrasigno", - "Unable to change your password" : "Non pote cambiar tu contrasigno", - "Current password" : "Contrasigno currente", - "New password" : "Nove contrasigno", - "Change password" : "Cambiar contrasigno", - "Language" : "Linguage", - "Help translate" : "Adjuta a traducer", - "Get the apps to sync your files" : "Obtene le apps (applicationes) pro synchronizar tu files", - "Username" : "Nomine de usator", - "Create" : "Crear", - "Group" : "Gruppo", - "Default Quota" : "Quota predeterminate", - "Other" : "Altere", - "Quota" : "Quota" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/ia.json b/settings/l10n/ia.json deleted file mode 100644 index 562106ffda5..00000000000 --- a/settings/l10n/ia.json +++ /dev/null @@ -1,40 +0,0 @@ -{ "translations": { - "Log" : "Registro", - "Updates" : "Actualisationes", - "Language changed" : "Linguage cambiate", - "Invalid request" : "Requesta invalide", - "Wrong password" : "Contrasigno errate", - "Saved" : "Salveguardate", - "Email sent" : "Message de e-posta inviate", - "All" : "Omne", - "Delete" : "Deler", - "Very weak password" : "Contrasigno multo debile", - "Weak password" : "Contrasigno debile", - "So-so password" : "Contrasigno passabile", - "Good password" : "Contrasigno bon", - "Strong password" : "Contrasigno forte", - "Groups" : "Gruppos", - "never" : "nunquam", - "__language_name__" : "Interlingua", - "More" : "Plus", - "Cheers!" : "Acclamationes!", - "Profile picture" : "Imagine de profilo", - "Cancel" : "Cancellar", - "Email" : "E-posta", - "Your email address" : "Tu adresse de e-posta", - "Password" : "Contrasigno", - "Unable to change your password" : "Non pote cambiar tu contrasigno", - "Current password" : "Contrasigno currente", - "New password" : "Nove contrasigno", - "Change password" : "Cambiar contrasigno", - "Language" : "Linguage", - "Help translate" : "Adjuta a traducer", - "Get the apps to sync your files" : "Obtene le apps (applicationes) pro synchronizar tu files", - "Username" : "Nomine de usator", - "Create" : "Crear", - "Group" : "Gruppo", - "Default Quota" : "Quota predeterminate", - "Other" : "Altere", - "Quota" : "Quota" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/id.js b/settings/l10n/id.js deleted file mode 100644 index a0b1dcaf004..00000000000 --- a/settings/l10n/id.js +++ /dev/null @@ -1,273 +0,0 @@ -OC.L10N.register( - "settings", - { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Peringatan Keamanan & Pengaturan", - "Sharing" : "Berbagi", - "Server-side encryption" : "Enkripsi sisi-server", - "External Storage" : "Penyimpanan Eksternal", - "Cron" : "Cron", - "Email server" : "Server email", - "Log" : "Log", - "Tips & tricks" : "Tips & trik", - "Updates" : "Pembaruan", - "Couldn't remove app." : "Tidak dapat menghapus aplikasi.", - "Language changed" : "Bahasa telah diubah", - "Invalid request" : "Permintaan tidak valid", - "Authentication error" : "Terjadi kesalahan saat otentikasi", - "Admins can't remove themself from the admin group" : "Admin tidak dapat menghapus dirinya sendiri dari grup admin", - "Unable to add user to group %s" : "Tidak dapat menambahkan pengguna ke grup %s", - "Unable to remove user from group %s" : "Tidak dapat menghapus pengguna dari grup %s", - "Couldn't update app." : "Tidak dapat memperbarui aplikasi.", - "Wrong password" : "Sandi salah", - "No user supplied" : "Tidak ada pengguna yang diberikan", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Mohon sediakan sandi pemulihan admin, jika tidak semua data pengguna akan terhapus", - "Wrong admin recovery password. Please check the password and try again." : "Sandi pemulihan admin salah. Periksa sandi dan ulangi kembali.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Backend tidak mendukung pengubahan sandi, tapi kunci enkripsi pengguna berhasil diperbarui.", - "Unable to change password" : "Tidak dapat mengubah sandi", - "Enabled" : "Diaktifkan", - "Not enabled" : "Tidak diaktifkan", - "installing and updating apps via the app store or Federated Cloud Sharing" : "memasang dan memperbarui aplikasi via toko aplikasi atau Federated Cloud Sharing", - "Federated Cloud Sharing" : "Federated Cloud Sharing", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL menggunakan versi lawas %s (%s). Silakan perbarui sistem operasi Anda atau fitur-fitur seperti %s tidak akan dapat bekerja dengan benar.", - "A problem occurred, please check your log files (Error: %s)" : "Terjadi masalah, mohon periksa berkas log Anda (Kesalahan: %s)", - "Migration Completed" : "Migrasi Selesai", - "Group already exists." : "Grup sudah ada.", - "Unable to add group." : "Tidak dapat menambah grup.", - "Unable to delete group." : "Tidak dapat menghapus grup.", - "log-level out of allowed range" : "level-log melebihi batas yang diizinkan", - "Saved" : "Disimpan", - "test email settings" : "pengaturan email percobaan", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Terjadi masalah saat mengirim email. Mohon periksa kembali pengaturan Anda. (Kesalahan: %s)", - "Email sent" : "Email terkirim", - "You need to set your user email before being able to send test emails." : "Anda perlu menetapkan email pengguna Anda sebelum dapat mengirim email percobaan.", - "Invalid mail address" : "Alamat email salah", - "A user with that name already exists." : "Pengguna dengan nama tersebut sudah ada.", - "Unable to create user." : "Tidak dapat membuat pengguna.", - "Your %s account was created" : "Akun %s Anda telah dibuat", - "Unable to delete user." : "Tidak dapat menghapus pengguna.", - "Forbidden" : "Terlarang", - "Invalid user" : "Pengguna salah", - "Unable to change mail address" : "Tidak dapat mengubah alamat email", - "Email saved" : "Email disimpan", - "Your full name has been changed." : "Nama lengkap Anda telah diubah", - "Unable to change full name" : "Tidak dapat mengubah nama lengkap", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Apakah Anda yakin ingin menambahkan \"{domain}\" sebagai domain terpercaya?", - "Add trusted domain" : "Tambah domain terpercaya", - "Migration in progress. Please wait until the migration is finished" : "Migrasi sedang dalam proses. Mohon tunggu sampai migrasi selesai.", - "Migration started …" : "Migrasi dimulai ...", - "Sending..." : "Mengirim", - "Official" : "Resmi", - "Approved" : "Disetujui", - "Experimental" : "Uji Coba", - "All" : "Semua", - "No apps found for your version" : "Aplikasi tidak ditemukan untuk versi ini.", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Aplikasi resmi dikembangkan oleh komunitas ownCloud. Mereka menawarkan fitur pusat bagi ownCloud dan siap digunakan untuk penggunaan produksi.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Aplikasi tersetujui dikembangkan oleh pengembang terpercaya dan telah lulus pemeriksaan keamanan. Mereka secara aktif dipelihara direpositori kode terbuka dan pemelihara sudah memastikan mereka stabil untuk penggunaan normal.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Apl ini belum diperiksa masalah keamanannya dan masih baru atau biasanya tidak stabil. Instal dengan resiko Anda sendiri.", - "Update to %s" : "Perbarui ke %s", - "Please wait...." : "Mohon tunggu....", - "Error while disabling app" : "Terjadi kesalahan saat menonaktifkan aplikasi", - "Disable" : "Nonaktifkan", - "Enable" : "Aktifkan", - "Error while enabling app" : "Terjadi kesalahan saat mengakifkan aplikasi", - "Updating...." : "Memperbarui....", - "Error while updating app" : "Terjadi kesalahan saat memperbarui aplikasi", - "Updated" : "Diperbarui", - "Uninstalling ...." : "Mencopot ...", - "Error while uninstalling app" : "Terjadi kesalahan saat mencopot aplikasi", - "Uninstall" : "Copot", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Aplikasi sudah diaktifkan tetapi perlu diperbarui. Anda akan dialihkan ke halaman pembaruan dalam 5 detik.", - "App update" : "Pembaruan Aplikasi", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Terjadi kesalahan. Mohon unggah sertifikat PEM terenkode-ASCII.", - "Valid until {date}" : "Berlaku sampai {date}", - "Delete" : "Hapus", - "An error occurred: {message}" : "Sebuah kesalahan yang muncul: {message}", - "Select a profile picture" : "Pilih foto profil", - "Very weak password" : "Sandi sangat lemah", - "Weak password" : "Sandi lemah", - "So-so password" : "Sandi lumayan", - "Good password" : "Sandi baik", - "Strong password" : "Sandi kuat", - "Groups" : "Grup", - "Unable to delete {objName}" : "Tidak dapat menghapus {objName}", - "A valid group name must be provided" : "Harus memberikan nama grup yang benar.", - "deleted {groupName}" : "menghapus {groupName}", - "undo" : "urungkan", - "no group" : "tanpa grup", - "never" : "tidak pernah", - "deleted {userName}" : "menghapus {userName}", - "add group" : "tambah grup", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Pengubahan kata sandi akan ditampilkan di data kehilangan, karena data pemulihan tidak tersedia bagi pengguna ini", - "A valid username must be provided" : "Harus memberikan nama pengguna yang benar", - "A valid password must be provided" : "Harus memberikan sandi yang benar", - "A valid email must be provided" : "Email yang benar harus diberikan", - "__language_name__" : "__language_name__", - "Unlimited" : "Tak terbatas", - "Personal info" : "Info pribadi", - "Sync clients" : "Klien sync", - "Everything (fatal issues, errors, warnings, info, debug)" : "Semuanya (Masalah fatal, kesalahan, peringatan, info, debug)", - "Info, warnings, errors and fatal issues" : "Info, peringatan, kesalahan dan masalah fatal", - "Warnings, errors and fatal issues" : "Peringatan, kesalahan dan masalah fatal", - "Errors and fatal issues" : "Kesalahan dan masalah fatal", - "Fatal issues only" : "Hanya masalah fatal", - "None" : "Tidak ada", - "Login" : "Masuk", - "Plain" : "Biasa", - "NT LAN Manager" : "Manajer NT LAN", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "kelihatannya php tidak diatur dengan benar untuk variabel lingkungan sistem kueri. Pemeriksaan dengan getenv(\"PATH\") hanya mengembalikan respon kosong.", - "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." : "Konfig Hanya-Baca telah diaktifkan. Ini akan mencegah setelan beberapa konfigurasi melalui antarmuka-web. Selanjutnya, berkas perlu dibuat dapat-dibaca secara manual untuk setiap pembaruan.", - "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP tampaknya disetel menjadi 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.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Server Anda dijalankan di Microsoft Windows. Kami sangat menyarankan Linux untuk mendapatkan pengalaman pengguna yang optimal.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Module 'fileinfo' pada PHP tidak ada. Kami sangat menyarankan untuk mengaktifkan modul ini untuk mendapatkan hasil terbaik pada proses pendeteksian mime-type.", - "System locale can not be set to a one which supports UTF-8." : "Sistem lokal tidak dapat diatur untuk satu yang mendukung UTF-8.", - "This means that there might be problems with certain characters in file names." : "Ini artinya mungkin ada masalah dengan karakter tertentu pada nama berkas.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Kamu sangat menyarankan untuk menginstal paket-paket yang dibutuhkan pada sistem agar mendukung lokal berikut: %s.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Jika instalasi Anda tidak di root domain dan menggunakan sistem cron, hal tersebut dapat menyebabkan masalah dengan pembuatan URL. Untuk mencegah masalah tersebut, mohon atur opsi \"overwrite.cli.url\" pada berkas config.php Anda ke jalur lokasi webroot instalasi Anda (Disarankan: \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Tidak mungkin untuk mengeksekusi cronjob via CLI. Kesalahan teknis berikut muncul:", - "All checks passed." : "Semua pemeriksaan lulus.", - "Open documentation" : "Buka dokumentasi", - "Allow apps to use the Share API" : "Izinkan aplikasi untuk menggunakan API Pembagian", - "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 to other users" : "Izinkan pengguna mengirim pemberitahuan email saat berbagi berkas kepada pengguna lainnya", - "Exclude groups from sharing" : "Tidak termasuk grup untuk berbagi", - "These groups will still be able to receive shares, but not to initiate them." : "Grup ini akan tetap dapat menerima berbagi, tatapi tidak dapat membagikan.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Izinkan penyelesai otomatis pada nama pengguna di jendela dialog berbagi. Jika ini dinonaktifkan, nama pengguna utuh perlu dimasukkan.", - "Last cron job execution: %s." : "Eksekusi penjadwalan cron terakhir: %s.", - "Last cron job execution: %s. Something seems wrong." : "Eksekusi penjadwalan cron terakhir: %s. Kelihatannya ada yang salah.", - "Cron was not executed yet!" : "Cron masih belum dieksekusi!", - "Execute one task with each page loaded" : "Jalankan tugas setiap kali halaman dimuat", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php didaftarkan pada layanan webcron untuk memanggil cron.php setiap 15 menit melalui http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Gunakan layanan cron sistem untuk memanggil berkas cron.php setiap 15 menit.", - "Enable server-side encryption" : "Aktifkan enkripsi sisi-server", - "Please read carefully before activating server-side encryption: " : "Mohon baca dengan teliti sebelum mengaktifkan enkripsi server-side:", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "Setelah enkripsi diaktifkan, semua berkas yang diunggah pada server mulai saat ini akan dienkripsi saat singgah pada server. Penonaktifan enkripsi hanya mungkin berhasil jika modul enkripsi yang aktif mendukung fungsi ini dan semua prasyarat (misalnya pengaturan kunci pemulihan) sudah terpenuhi.", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "Enkripsi saja tidak menjamin keamanan sistem. Silakan lihat dokumentasi ownCloud untuk informasi lebih lanjut tentang bagaimana aplikasi enkripsi bekerja, dan kasus penggunaan yang didukung.", - "Be aware that encryption always increases the file size." : "Ingat bahwa enkripsi selalu menambah ukuran berkas.", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "Alangkah baiknya untuk membuat cadangan data secara rutin, dalam kasus enkripsi, pastikan untuk mencadangkan kunci enkripsi bersama dengan data Anda.", - "This is the final warning: Do you really want to enable encryption?" : "Ini adalah peringatan terakhir: Apakah Anda yakin ingin mengaktifkan enkripsi?", - "Enable encryption" : "Aktifkan enkripsi", - "No encryption module loaded, please enable an encryption module in the app menu." : "Tidak ada modul enkripsi yang dimuat, mohon aktifkan modul enkripsi di menu aplikasi.", - "Select default encryption module:" : "Pilih modul enkripsi baku:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Anda perlu mengganti kunci enkrispi Anda dari enkripsi lama (ownCloud <= 8.0) ke yang baru. Mohon aktifkan \"Modul enkripsi standar\" dan jalankan 'occ encryption:migrate'", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Anda perlu untuk mengubah kunci enkripsi dari enkripsi lama (ownCloud <= 8.0) ke yang baru.", - "Start migration" : "Mulai migrasi", - "This is used for sending out notifications." : "Ini digunakan untuk mengirim notifikasi keluar.", - "Send mode" : "Modus kirim", - "Encryption" : "Enkripsi", - "From address" : "Dari alamat", - "mail" : "email", - "Authentication method" : "Metode otentikasi", - "Authentication required" : "Diperlukan otentikasi", - "Server address" : "Alamat server", - "Port" : "Port", - "Credentials" : "Kredensial", - "SMTP Username" : "Nama pengguna SMTP", - "SMTP Password" : "Sandi SMTP", - "Store credentials" : "Simpan kredensial", - "Test email settings" : "Pengaturan email percobaan", - "Send email" : "Kirim email", - "Download logfile" : "Unduh berkas log", - "More" : "Lainnya", - "Less" : "Ciutkan", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Berkas log lebih besar dari 100MB. Pengunduhan ini memerlukan beberapa saat!", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite digunakan sebagai basis data. Untuk instalasi yang lebih besar, kami menyarankan untuk beralih ke backend basis data yang berbeda.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Terutama saat menggunakan klien desktop untuk sinkronisasi berkas, penggunaan SQLite tidak disarankan.", - "How to do backups" : "Bagaimana cara membuat cadangan", - "Advanced monitoring" : "Pemantauan tingkat lanjut", - "Performance tuning" : "Pemeliharaan performa", - "Improving the config.php" : "Memperbaiki config.php", - "Theming" : "Tema", - "Hardening and security guidance" : "Panduan Keselamatan dan Keamanan", - "Version" : "Versi", - "Developer documentation" : "Dokumentasi pengembang", - "Experimental applications ahead" : "Aplikasi percobaan terdepan", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Aplikasi percobaan belum diperiksa untuk masalah keamanan, baru atau dikenal tidak stabil dan dalam proses pengembangan. Menginstalnya dapat menyebabkan kehilangan data atau penerobosan keamanan.", - "Documentation:" : "Dokumentasi:", - "User documentation" : "Dokumentasi pengguna.", - "Admin documentation" : "Dokumentasi admin", - "Show description …" : "Tampilkan deskripsi ...", - "Hide description …" : "Sembunyikan deskripsi ...", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Apl ini tidak dapat diinstal karena ketergantungan berikut belum terpenuhi:", - "Enable only for specific groups" : "Aktifkan hanya untuk grup tertentu", - "Uninstall App" : "Copot aplikasi", - "Enable experimental apps" : "Aktifkan aplikasi percobaan", - "Common Name" : "Nama umum", - "Valid until" : "Berlaku sampai", - "Issued By" : "Diterbitkan oleh", - "Valid until %s" : "Berlaku sampai %s", - "Import root certificate" : "Impor sertifikat root", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Hai,<br><br>sekedar memberi tahu bahwa Andaa sekarang memiliki akun %s.<br><br>Nama Pengguna Anda: %s<br>Akses di: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Horee!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Hai,\n\nsekedar memberi tahu bahwa Andaa sekarang memiliki akun %s.\n\nNama Pengguna Anda: %s\nAkses di: %s\n", - "Administrator documentation" : "Dokumentasi administrator", - "Online documentation" : "Dokumentasi online", - "Forum" : "Forum", - "Issue tracker" : "Pelacak masalah", - "Commercial support" : "Dukungan komersial", - "Profile picture" : "Foto profil", - "Upload new" : "Unggah baru", - "Remove image" : "Hapus gambar", - "Cancel" : "Batal", - "Full name" : "Nama lengkap", - "No display name set" : "Nama tampilan tidak diatur", - "Email" : "Email", - "Your email address" : "Alamat email Anda", - "No email address set" : "Alamat email tidak diatur", - "You are member of the following groups:" : "Anda adalah anggota dari grup berikut:", - "Password" : "Sandi", - "Unable to change your password" : "Gagal mengubah sandi Anda", - "Current password" : "Sandi saat ini", - "New password" : "Sandi baru", - "Change password" : "Ubah sandi", - "Language" : "Bahasa", - "Help translate" : "Bantu menerjemahkan", - "Get the apps to sync your files" : "Dapatkan aplikasi untuk sinkronisasi berkas Anda", - "Desktop client" : "Klien desktop", - "Android app" : "Aplikasi Android", - "iOS app" : "Aplikasi iOS", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Jika Anda ingin mendukung proyek ini\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">bergabunglah dalam pengembangan</a>\n\t\tatau\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">promosikan</a>!", - "Show First Run Wizard again" : "Tampilkan Penuntun Konfigurasi Awal", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Dikembangkan oleh {communityopen}komunitas ownCloud{linkclose}, {githubopen}kode sumber{linkclose} dilisensikan dibawah {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}.", - "Show storage location" : "Tampilkan kolasi penyimpanan", - "Show last log in" : "Tampilkan masuk terakhir", - "Show user backend" : "Tampilkan pengguna backend", - "Send email to new user" : "Kirim email kepada pengguna baru", - "Show email address" : "Tampilkan alamat email", - "Username" : "Nama pengguna", - "E-Mail" : "E-Mail", - "Create" : "Buat", - "Admin Recovery Password" : "Sandi pemulihan Admin", - "Enter the recovery password in order to recover the users files during password change" : "Masukkan sandi pemulihan untuk memulihkan berkas pengguna saat penggantian sandi", - "Add Group" : "Tambah Grup", - "Group" : "Grup", - "Everyone" : "Semua orang", - "Admins" : "Admin", - "Default Quota" : "Kuota default", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Silakan masukkan jumlah penyimpanan (contoh: \"512 MB\" atau \"12 GB\")", - "Other" : "Lainnya", - "Full Name" : "Nama Lengkap", - "Group Admin for" : "Grup Admin untuk", - "Quota" : "Kuota", - "Storage Location" : "Lokasi Penyimpanan", - "User Backend" : "Pengguna Backend", - "Last Login" : "Masuk Terakhir", - "change full name" : "ubah nama lengkap", - "set new password" : "setel sandi baru", - "change email address" : "ubah alamat email", - "Default" : "Default" -}, -"nplurals=1; plural=0;"); diff --git a/settings/l10n/id.json b/settings/l10n/id.json deleted file mode 100644 index 690ca0fbc36..00000000000 --- a/settings/l10n/id.json +++ /dev/null @@ -1,271 +0,0 @@ -{ "translations": { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Peringatan Keamanan & Pengaturan", - "Sharing" : "Berbagi", - "Server-side encryption" : "Enkripsi sisi-server", - "External Storage" : "Penyimpanan Eksternal", - "Cron" : "Cron", - "Email server" : "Server email", - "Log" : "Log", - "Tips & tricks" : "Tips & trik", - "Updates" : "Pembaruan", - "Couldn't remove app." : "Tidak dapat menghapus aplikasi.", - "Language changed" : "Bahasa telah diubah", - "Invalid request" : "Permintaan tidak valid", - "Authentication error" : "Terjadi kesalahan saat otentikasi", - "Admins can't remove themself from the admin group" : "Admin tidak dapat menghapus dirinya sendiri dari grup admin", - "Unable to add user to group %s" : "Tidak dapat menambahkan pengguna ke grup %s", - "Unable to remove user from group %s" : "Tidak dapat menghapus pengguna dari grup %s", - "Couldn't update app." : "Tidak dapat memperbarui aplikasi.", - "Wrong password" : "Sandi salah", - "No user supplied" : "Tidak ada pengguna yang diberikan", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Mohon sediakan sandi pemulihan admin, jika tidak semua data pengguna akan terhapus", - "Wrong admin recovery password. Please check the password and try again." : "Sandi pemulihan admin salah. Periksa sandi dan ulangi kembali.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Backend tidak mendukung pengubahan sandi, tapi kunci enkripsi pengguna berhasil diperbarui.", - "Unable to change password" : "Tidak dapat mengubah sandi", - "Enabled" : "Diaktifkan", - "Not enabled" : "Tidak diaktifkan", - "installing and updating apps via the app store or Federated Cloud Sharing" : "memasang dan memperbarui aplikasi via toko aplikasi atau Federated Cloud Sharing", - "Federated Cloud Sharing" : "Federated Cloud Sharing", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL menggunakan versi lawas %s (%s). Silakan perbarui sistem operasi Anda atau fitur-fitur seperti %s tidak akan dapat bekerja dengan benar.", - "A problem occurred, please check your log files (Error: %s)" : "Terjadi masalah, mohon periksa berkas log Anda (Kesalahan: %s)", - "Migration Completed" : "Migrasi Selesai", - "Group already exists." : "Grup sudah ada.", - "Unable to add group." : "Tidak dapat menambah grup.", - "Unable to delete group." : "Tidak dapat menghapus grup.", - "log-level out of allowed range" : "level-log melebihi batas yang diizinkan", - "Saved" : "Disimpan", - "test email settings" : "pengaturan email percobaan", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Terjadi masalah saat mengirim email. Mohon periksa kembali pengaturan Anda. (Kesalahan: %s)", - "Email sent" : "Email terkirim", - "You need to set your user email before being able to send test emails." : "Anda perlu menetapkan email pengguna Anda sebelum dapat mengirim email percobaan.", - "Invalid mail address" : "Alamat email salah", - "A user with that name already exists." : "Pengguna dengan nama tersebut sudah ada.", - "Unable to create user." : "Tidak dapat membuat pengguna.", - "Your %s account was created" : "Akun %s Anda telah dibuat", - "Unable to delete user." : "Tidak dapat menghapus pengguna.", - "Forbidden" : "Terlarang", - "Invalid user" : "Pengguna salah", - "Unable to change mail address" : "Tidak dapat mengubah alamat email", - "Email saved" : "Email disimpan", - "Your full name has been changed." : "Nama lengkap Anda telah diubah", - "Unable to change full name" : "Tidak dapat mengubah nama lengkap", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Apakah Anda yakin ingin menambahkan \"{domain}\" sebagai domain terpercaya?", - "Add trusted domain" : "Tambah domain terpercaya", - "Migration in progress. Please wait until the migration is finished" : "Migrasi sedang dalam proses. Mohon tunggu sampai migrasi selesai.", - "Migration started …" : "Migrasi dimulai ...", - "Sending..." : "Mengirim", - "Official" : "Resmi", - "Approved" : "Disetujui", - "Experimental" : "Uji Coba", - "All" : "Semua", - "No apps found for your version" : "Aplikasi tidak ditemukan untuk versi ini.", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Aplikasi resmi dikembangkan oleh komunitas ownCloud. Mereka menawarkan fitur pusat bagi ownCloud dan siap digunakan untuk penggunaan produksi.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Aplikasi tersetujui dikembangkan oleh pengembang terpercaya dan telah lulus pemeriksaan keamanan. Mereka secara aktif dipelihara direpositori kode terbuka dan pemelihara sudah memastikan mereka stabil untuk penggunaan normal.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Apl ini belum diperiksa masalah keamanannya dan masih baru atau biasanya tidak stabil. Instal dengan resiko Anda sendiri.", - "Update to %s" : "Perbarui ke %s", - "Please wait...." : "Mohon tunggu....", - "Error while disabling app" : "Terjadi kesalahan saat menonaktifkan aplikasi", - "Disable" : "Nonaktifkan", - "Enable" : "Aktifkan", - "Error while enabling app" : "Terjadi kesalahan saat mengakifkan aplikasi", - "Updating...." : "Memperbarui....", - "Error while updating app" : "Terjadi kesalahan saat memperbarui aplikasi", - "Updated" : "Diperbarui", - "Uninstalling ...." : "Mencopot ...", - "Error while uninstalling app" : "Terjadi kesalahan saat mencopot aplikasi", - "Uninstall" : "Copot", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Aplikasi sudah diaktifkan tetapi perlu diperbarui. Anda akan dialihkan ke halaman pembaruan dalam 5 detik.", - "App update" : "Pembaruan Aplikasi", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Terjadi kesalahan. Mohon unggah sertifikat PEM terenkode-ASCII.", - "Valid until {date}" : "Berlaku sampai {date}", - "Delete" : "Hapus", - "An error occurred: {message}" : "Sebuah kesalahan yang muncul: {message}", - "Select a profile picture" : "Pilih foto profil", - "Very weak password" : "Sandi sangat lemah", - "Weak password" : "Sandi lemah", - "So-so password" : "Sandi lumayan", - "Good password" : "Sandi baik", - "Strong password" : "Sandi kuat", - "Groups" : "Grup", - "Unable to delete {objName}" : "Tidak dapat menghapus {objName}", - "A valid group name must be provided" : "Harus memberikan nama grup yang benar.", - "deleted {groupName}" : "menghapus {groupName}", - "undo" : "urungkan", - "no group" : "tanpa grup", - "never" : "tidak pernah", - "deleted {userName}" : "menghapus {userName}", - "add group" : "tambah grup", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Pengubahan kata sandi akan ditampilkan di data kehilangan, karena data pemulihan tidak tersedia bagi pengguna ini", - "A valid username must be provided" : "Harus memberikan nama pengguna yang benar", - "A valid password must be provided" : "Harus memberikan sandi yang benar", - "A valid email must be provided" : "Email yang benar harus diberikan", - "__language_name__" : "__language_name__", - "Unlimited" : "Tak terbatas", - "Personal info" : "Info pribadi", - "Sync clients" : "Klien sync", - "Everything (fatal issues, errors, warnings, info, debug)" : "Semuanya (Masalah fatal, kesalahan, peringatan, info, debug)", - "Info, warnings, errors and fatal issues" : "Info, peringatan, kesalahan dan masalah fatal", - "Warnings, errors and fatal issues" : "Peringatan, kesalahan dan masalah fatal", - "Errors and fatal issues" : "Kesalahan dan masalah fatal", - "Fatal issues only" : "Hanya masalah fatal", - "None" : "Tidak ada", - "Login" : "Masuk", - "Plain" : "Biasa", - "NT LAN Manager" : "Manajer NT LAN", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "kelihatannya php tidak diatur dengan benar untuk variabel lingkungan sistem kueri. Pemeriksaan dengan getenv(\"PATH\") hanya mengembalikan respon kosong.", - "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." : "Konfig Hanya-Baca telah diaktifkan. Ini akan mencegah setelan beberapa konfigurasi melalui antarmuka-web. Selanjutnya, berkas perlu dibuat dapat-dibaca secara manual untuk setiap pembaruan.", - "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP tampaknya disetel menjadi 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.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Server Anda dijalankan di Microsoft Windows. Kami sangat menyarankan Linux untuk mendapatkan pengalaman pengguna yang optimal.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Module 'fileinfo' pada PHP tidak ada. Kami sangat menyarankan untuk mengaktifkan modul ini untuk mendapatkan hasil terbaik pada proses pendeteksian mime-type.", - "System locale can not be set to a one which supports UTF-8." : "Sistem lokal tidak dapat diatur untuk satu yang mendukung UTF-8.", - "This means that there might be problems with certain characters in file names." : "Ini artinya mungkin ada masalah dengan karakter tertentu pada nama berkas.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Kamu sangat menyarankan untuk menginstal paket-paket yang dibutuhkan pada sistem agar mendukung lokal berikut: %s.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Jika instalasi Anda tidak di root domain dan menggunakan sistem cron, hal tersebut dapat menyebabkan masalah dengan pembuatan URL. Untuk mencegah masalah tersebut, mohon atur opsi \"overwrite.cli.url\" pada berkas config.php Anda ke jalur lokasi webroot instalasi Anda (Disarankan: \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Tidak mungkin untuk mengeksekusi cronjob via CLI. Kesalahan teknis berikut muncul:", - "All checks passed." : "Semua pemeriksaan lulus.", - "Open documentation" : "Buka dokumentasi", - "Allow apps to use the Share API" : "Izinkan aplikasi untuk menggunakan API Pembagian", - "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 to other users" : "Izinkan pengguna mengirim pemberitahuan email saat berbagi berkas kepada pengguna lainnya", - "Exclude groups from sharing" : "Tidak termasuk grup untuk berbagi", - "These groups will still be able to receive shares, but not to initiate them." : "Grup ini akan tetap dapat menerima berbagi, tatapi tidak dapat membagikan.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Izinkan penyelesai otomatis pada nama pengguna di jendela dialog berbagi. Jika ini dinonaktifkan, nama pengguna utuh perlu dimasukkan.", - "Last cron job execution: %s." : "Eksekusi penjadwalan cron terakhir: %s.", - "Last cron job execution: %s. Something seems wrong." : "Eksekusi penjadwalan cron terakhir: %s. Kelihatannya ada yang salah.", - "Cron was not executed yet!" : "Cron masih belum dieksekusi!", - "Execute one task with each page loaded" : "Jalankan tugas setiap kali halaman dimuat", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php didaftarkan pada layanan webcron untuk memanggil cron.php setiap 15 menit melalui http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Gunakan layanan cron sistem untuk memanggil berkas cron.php setiap 15 menit.", - "Enable server-side encryption" : "Aktifkan enkripsi sisi-server", - "Please read carefully before activating server-side encryption: " : "Mohon baca dengan teliti sebelum mengaktifkan enkripsi server-side:", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "Setelah enkripsi diaktifkan, semua berkas yang diunggah pada server mulai saat ini akan dienkripsi saat singgah pada server. Penonaktifan enkripsi hanya mungkin berhasil jika modul enkripsi yang aktif mendukung fungsi ini dan semua prasyarat (misalnya pengaturan kunci pemulihan) sudah terpenuhi.", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "Enkripsi saja tidak menjamin keamanan sistem. Silakan lihat dokumentasi ownCloud untuk informasi lebih lanjut tentang bagaimana aplikasi enkripsi bekerja, dan kasus penggunaan yang didukung.", - "Be aware that encryption always increases the file size." : "Ingat bahwa enkripsi selalu menambah ukuran berkas.", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "Alangkah baiknya untuk membuat cadangan data secara rutin, dalam kasus enkripsi, pastikan untuk mencadangkan kunci enkripsi bersama dengan data Anda.", - "This is the final warning: Do you really want to enable encryption?" : "Ini adalah peringatan terakhir: Apakah Anda yakin ingin mengaktifkan enkripsi?", - "Enable encryption" : "Aktifkan enkripsi", - "No encryption module loaded, please enable an encryption module in the app menu." : "Tidak ada modul enkripsi yang dimuat, mohon aktifkan modul enkripsi di menu aplikasi.", - "Select default encryption module:" : "Pilih modul enkripsi baku:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Anda perlu mengganti kunci enkrispi Anda dari enkripsi lama (ownCloud <= 8.0) ke yang baru. Mohon aktifkan \"Modul enkripsi standar\" dan jalankan 'occ encryption:migrate'", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Anda perlu untuk mengubah kunci enkripsi dari enkripsi lama (ownCloud <= 8.0) ke yang baru.", - "Start migration" : "Mulai migrasi", - "This is used for sending out notifications." : "Ini digunakan untuk mengirim notifikasi keluar.", - "Send mode" : "Modus kirim", - "Encryption" : "Enkripsi", - "From address" : "Dari alamat", - "mail" : "email", - "Authentication method" : "Metode otentikasi", - "Authentication required" : "Diperlukan otentikasi", - "Server address" : "Alamat server", - "Port" : "Port", - "Credentials" : "Kredensial", - "SMTP Username" : "Nama pengguna SMTP", - "SMTP Password" : "Sandi SMTP", - "Store credentials" : "Simpan kredensial", - "Test email settings" : "Pengaturan email percobaan", - "Send email" : "Kirim email", - "Download logfile" : "Unduh berkas log", - "More" : "Lainnya", - "Less" : "Ciutkan", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Berkas log lebih besar dari 100MB. Pengunduhan ini memerlukan beberapa saat!", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite digunakan sebagai basis data. Untuk instalasi yang lebih besar, kami menyarankan untuk beralih ke backend basis data yang berbeda.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Terutama saat menggunakan klien desktop untuk sinkronisasi berkas, penggunaan SQLite tidak disarankan.", - "How to do backups" : "Bagaimana cara membuat cadangan", - "Advanced monitoring" : "Pemantauan tingkat lanjut", - "Performance tuning" : "Pemeliharaan performa", - "Improving the config.php" : "Memperbaiki config.php", - "Theming" : "Tema", - "Hardening and security guidance" : "Panduan Keselamatan dan Keamanan", - "Version" : "Versi", - "Developer documentation" : "Dokumentasi pengembang", - "Experimental applications ahead" : "Aplikasi percobaan terdepan", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Aplikasi percobaan belum diperiksa untuk masalah keamanan, baru atau dikenal tidak stabil dan dalam proses pengembangan. Menginstalnya dapat menyebabkan kehilangan data atau penerobosan keamanan.", - "Documentation:" : "Dokumentasi:", - "User documentation" : "Dokumentasi pengguna.", - "Admin documentation" : "Dokumentasi admin", - "Show description …" : "Tampilkan deskripsi ...", - "Hide description …" : "Sembunyikan deskripsi ...", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Apl ini tidak dapat diinstal karena ketergantungan berikut belum terpenuhi:", - "Enable only for specific groups" : "Aktifkan hanya untuk grup tertentu", - "Uninstall App" : "Copot aplikasi", - "Enable experimental apps" : "Aktifkan aplikasi percobaan", - "Common Name" : "Nama umum", - "Valid until" : "Berlaku sampai", - "Issued By" : "Diterbitkan oleh", - "Valid until %s" : "Berlaku sampai %s", - "Import root certificate" : "Impor sertifikat root", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Hai,<br><br>sekedar memberi tahu bahwa Andaa sekarang memiliki akun %s.<br><br>Nama Pengguna Anda: %s<br>Akses di: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Horee!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Hai,\n\nsekedar memberi tahu bahwa Andaa sekarang memiliki akun %s.\n\nNama Pengguna Anda: %s\nAkses di: %s\n", - "Administrator documentation" : "Dokumentasi administrator", - "Online documentation" : "Dokumentasi online", - "Forum" : "Forum", - "Issue tracker" : "Pelacak masalah", - "Commercial support" : "Dukungan komersial", - "Profile picture" : "Foto profil", - "Upload new" : "Unggah baru", - "Remove image" : "Hapus gambar", - "Cancel" : "Batal", - "Full name" : "Nama lengkap", - "No display name set" : "Nama tampilan tidak diatur", - "Email" : "Email", - "Your email address" : "Alamat email Anda", - "No email address set" : "Alamat email tidak diatur", - "You are member of the following groups:" : "Anda adalah anggota dari grup berikut:", - "Password" : "Sandi", - "Unable to change your password" : "Gagal mengubah sandi Anda", - "Current password" : "Sandi saat ini", - "New password" : "Sandi baru", - "Change password" : "Ubah sandi", - "Language" : "Bahasa", - "Help translate" : "Bantu menerjemahkan", - "Get the apps to sync your files" : "Dapatkan aplikasi untuk sinkronisasi berkas Anda", - "Desktop client" : "Klien desktop", - "Android app" : "Aplikasi Android", - "iOS app" : "Aplikasi iOS", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Jika Anda ingin mendukung proyek ini\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">bergabunglah dalam pengembangan</a>\n\t\tatau\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">promosikan</a>!", - "Show First Run Wizard again" : "Tampilkan Penuntun Konfigurasi Awal", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Dikembangkan oleh {communityopen}komunitas ownCloud{linkclose}, {githubopen}kode sumber{linkclose} dilisensikan dibawah {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}.", - "Show storage location" : "Tampilkan kolasi penyimpanan", - "Show last log in" : "Tampilkan masuk terakhir", - "Show user backend" : "Tampilkan pengguna backend", - "Send email to new user" : "Kirim email kepada pengguna baru", - "Show email address" : "Tampilkan alamat email", - "Username" : "Nama pengguna", - "E-Mail" : "E-Mail", - "Create" : "Buat", - "Admin Recovery Password" : "Sandi pemulihan Admin", - "Enter the recovery password in order to recover the users files during password change" : "Masukkan sandi pemulihan untuk memulihkan berkas pengguna saat penggantian sandi", - "Add Group" : "Tambah Grup", - "Group" : "Grup", - "Everyone" : "Semua orang", - "Admins" : "Admin", - "Default Quota" : "Kuota default", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Silakan masukkan jumlah penyimpanan (contoh: \"512 MB\" atau \"12 GB\")", - "Other" : "Lainnya", - "Full Name" : "Nama Lengkap", - "Group Admin for" : "Grup Admin untuk", - "Quota" : "Kuota", - "Storage Location" : "Lokasi Penyimpanan", - "User Backend" : "Pengguna Backend", - "Last Login" : "Masuk Terakhir", - "change full name" : "ubah nama lengkap", - "set new password" : "setel sandi baru", - "change email address" : "ubah alamat email", - "Default" : "Default" -},"pluralForm" :"nplurals=1; plural=0;" -}
\ No newline at end of file diff --git a/settings/l10n/is.js b/settings/l10n/is.js deleted file mode 100644 index 26e5866a27f..00000000000 --- a/settings/l10n/is.js +++ /dev/null @@ -1,283 +0,0 @@ -OC.L10N.register( - "settings", - { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Öryggi og aðvaranir vegna uppsetningar", - "Sharing" : "Deiling", - "Server-side encryption" : "Dulritun á þjóni", - "External Storage" : "Ytri gagnageymsla", - "Cron" : "CRON", - "Email server" : "Póstþjónn", - "Log" : "Annáll", - "Tips & tricks" : "Ábendingar og góð ráð", - "Updates" : "Uppfærslur", - "Couldn't remove app." : "Gat ekki fjarlægt forrit.", - "Language changed" : "Tungumáli breytt", - "Invalid request" : "Ógild fyrirspurn", - "Authentication error" : "Villa við auðkenningu", - "Admins can't remove themself from the admin group" : "Stjórnendur geta ekki fjarlægt sjálfa sig úr stjórnendahóp", - "Unable to add user to group %s" : "Ekki tókst að bæta notanda við hópinn %s", - "Unable to remove user from group %s" : "Ekki tókst að fjarlægja notanda úr hópnum %s", - "Couldn't update app." : "Gat ekki uppfært forrit.", - "Wrong password" : "Rangt lykilorð", - "No user supplied" : "Enginn notandi gefinn", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Settu inn endurheimtulykilorð kerfisstjóra, annars munu öll notandagögn tapast", - "Wrong admin recovery password. Please check the password and try again." : "Rangt endurheimtulykilorð kerfisstjóra, athugaðu lykilorðið og reyndu aftur.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Bakendi styður ekki breytingu á lykilorði, en það tókst að uppfæra dulritunarlykil notandans.", - "Unable to change password" : "Ekki tókst að breyta lykilorði", - "Enabled" : "Virkt", - "Not enabled" : "Óvirkt", - "installing and updating apps via the app store or Federated Cloud Sharing" : "uppsetning eða uppfærsla forrita úr forritabúð eða með skýjasambandi", - "Federated Cloud Sharing" : "Deiling með skýjasambandi", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL er að nota úrelda útgáfu af %s (%s). Uppfærðu stýrikerfið þitt, annars er hætt við að eiginleikar á borð við %s virki ekki sem skyldi.", - "A problem occurred, please check your log files (Error: %s)" : "Vandamál kom upp, skoðaðu yfir annálana þína (Villa: %s)", - "Migration Completed" : "Yfirfærslu lokið", - "Group already exists." : "Hópur er þegar til.", - "Unable to add group." : "Ekki tókst að bæta hóp við.", - "Unable to delete group." : "Get ekki eytt hópi.", - "log-level out of allowed range" : "annálsstig utan leyfðra marka", - "Saved" : "Vistað", - "test email settings" : "prófa tölvupóststillingar", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Vandamál kom upp við að senda tölvupóst. Farðu yfir stillingarnar þínar. (Villa: %s)", - "Email sent" : "Tölvupóstur sendur", - "You need to set your user email before being able to send test emails." : "Þú verður að gefa upp netfangið þitt svo að þú getir sent prófunarpósta.", - "Invalid mail address" : "Ógilt tölvupóstfang", - "A user with that name already exists." : "Nú þegar til notandi með þetta nafn.", - "Unable to create user." : "Gat ekki búið til notanda.", - "Your %s account was created" : "%s notandaaðgangurinn þinn var búinn til", - "Unable to delete user." : "Get ekki eytt notanda.", - "Forbidden" : "Bannað", - "Invalid user" : "Ógildur notandi", - "Unable to change mail address" : "Get ekki breytt tölvupóstfangi", - "Email saved" : "Tölvupóstfang vistað", - "Your full name has been changed." : "Fullu nafni þínu hefur verið breytt.", - "Unable to change full name" : "Get ekki breytt fullu nafni", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Ertu viss um að þú viljir bæta \"{domain}\" við sem treystu léni?", - "Add trusted domain" : "Bæta við treystu léni", - "Migration in progress. Please wait until the migration is finished" : "Yfirfærsla er í gangi. Dokaðu við þar til henni er lokið", - "Migration started …" : "Yfirfærsla hafin...", - "Sending..." : "Sendi...", - "Official" : "Opinbert", - "Approved" : "Samþykkt", - "Experimental" : "Á tilraunastigi", - "All" : "Allt", - "No apps found for your version" : "Engin forrit fundust fyrir útgáfuna þína", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Opinber forrit eru þróuð af og innan ownCloud samfélagsins. Þau virka með kjarnaeiginleikum ownCloud og eru tilbúin til notkunar í raunvinnslu.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Samþykkt forrit eru þróuð af treystum forriturum og hafa gengist undir lauslegar öryggisprófanir. Þau eru í virku viðhaldi í opnum hugbúnaðarsöfnum og umsjónarmenn þeirra dæma þau nógu stöðug til notkunar í allri venjulegri vinnslu.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Þetta forrit hefur ekki verið öryggisprófað, er nýtt erða þekkt fyrir ótöðugleika við vissar aðstæður. Uppsetning er á þína ábyrgð.", - "Update to %s" : "Uppfæra í %s", - "_You have %n app update pending_::_You have %n app updates pending_" : ["Það er %n forritsuppfærsla í bið","Það eru %n forritauppfærslur í bið"], - "Please wait...." : "Andartak....", - "Error while disabling app" : "Villa við að afvirkja forrit", - "Disable" : "Gera óvirkt", - "Enable" : "Virkja", - "Error while enabling app" : "Villa við að virkja forrit", - "Error: this app cannot be enabled because it makes the server unstable" : "Villa: ekki er hægt að virkja þetta forrit því það gerir þjóninn óstöðugan", - "Error: could not disable broken app" : "Villa: gat ekki gert bilaða forritið óvirkt", - "Error while disabling broken app" : "Villa við að gera bilaða forritið óvirkt", - "Updating...." : "Uppfæri...", - "Error while updating app" : "Villa við að uppfæra forrit", - "Updated" : "Uppfært", - "Uninstalling ...." : "Tek út uppsetningu ....", - "Error while uninstalling app" : "Villa við að fjarlægja forrit", - "Uninstall" : "Henda út", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Forritið hefur verið virkjað, en það þarf að uppfæra það. Þú verður áframsendur á uppfærslusíðuna eftir 5 sekúndur.", - "App update" : "Uppfærsla forrits", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Villa kom upp. Sendu inn ASCII-kóðað PEM-skilríki.", - "Valid until {date}" : "Gildir til {date}", - "Delete" : "Eyða", - "An error occurred: {message}" : "Villa kom upp: {message}", - "Select a profile picture" : "Veldu einkennismynd", - "Very weak password" : "Mjög veikt lykilorð", - "Weak password" : "Veikt lykilorð", - "So-so password" : "Svo-svo lykilorð", - "Good password" : "Gott lykilorð", - "Strong password" : "Sterkt lykilorð", - "Groups" : "Hópar", - "Unable to delete {objName}" : "Get ekki eytt {objName}", - "Error creating group: {message}" : "Villa við að búa til hóp: {message}", - "A valid group name must be provided" : "Skráðu inn gilt heiti á hópi", - "deleted {groupName}" : "eyddi {groupName}", - "undo" : "afturkalla", - "no group" : "enginn hópur", - "never" : "aldrei", - "deleted {userName}" : "eyddi {userName}", - "add group" : "bæta við hópi", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Breyting á þessu lykilorði mun valda gagnatapi, þar sem gagnaendurheimt er ekki tiltæk fyrir þennan notanda", - "A valid username must be provided" : "Skráðu inn gilt notandanafn", - "Error creating user: {message}" : "Villa við að búa til notanda: {message}", - "A valid password must be provided" : "Skráðu inn gilt lykilorð", - "A valid email must be provided" : "Skráðu inn gilt tölvupóstfang", - "__language_name__" : "Íslenska", - "Unlimited" : "Ótakmarkað", - "Personal info" : "Persónulegar upplýsingar", - "Sync clients" : "Samstilla biðlara", - "Everything (fatal issues, errors, warnings, info, debug)" : "Allt (aflúsun, upplýsingar, viðvaranir, villur og alvarlegar aðvaranir)", - "Info, warnings, errors and fatal issues" : "Upplýsingar, viðvaranir, villur og alvarlegar aðvaranir", - "Warnings, errors and fatal issues" : "Viðvaranir, villur og alvarlegar aðvaranir", - "Errors and fatal issues" : "Villur og alvarlegar aðvaranir", - "Fatal issues only" : "Einungis alvarlegar aðvaranir", - "None" : "Ekkert", - "Login" : "Innskráning", - "Plain" : "Einfalt", - "NT LAN Manager" : "NT LAN stjórnun", - "SSL" : "SSL", - "TLS" : "TLS", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Þjónninn þinn er keyrandi á Microsoft Windows. Við mælum sterklega með Linux til að njóta sem best allra eiginleika fyrir notendurna.", - "System locale can not be set to a one which supports UTF-8." : "Ekki var hægt að setja staðfærslu kerfisins á neina sem styður UTF-8.", - "All checks passed." : "Stóðst allar prófanir.", - "Open documentation" : "Opna hjálparskjöl", - "Allow apps to use the Share API" : "Leyfa forritum að nota Share API", - "Allow users to share via link" : "Leyfa notendum að deila með tengli", - "Enforce password protection" : "Krefjast verndunar með aðgangsorði", - "Allow public uploads" : "Leyfa opinberar innsendingar", - "Allow users to send mail notification for shared files" : "Leyfa notendum að senda tilkynningar í tölvupósti vegna deildra skráa", - "Set default expiration date" : "Setja sjálfgefinn gildistíma", - "Expire after " : "Rennur út eftir ", - "days" : "daga", - "Enforce expiration date" : "Krefjast dagsetningar á gildistíma", - "Allow resharing" : "Leyfa endurdeilingu", - "Allow sharing with groups" : "Leyfa deilingu með hópum", - "Restrict users to only share with users in their groups" : "Takmarka notendur við að deila með notendum í þeirra eigin hópum", - "Allow users to send mail notification for shared files to other users" : "Leyfa notendum að senda tilkynningar til annarra notenda í tölvupósti vegna deildra skráa", - "Exclude groups from sharing" : "Undanskilja hópa frá því að deila", - "These groups will still be able to receive shares, but not to initiate them." : "Þessir hópar munu samt geta tekið við deildum sameignum, en ekki geta útbúið þær.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Leyfa sjálfklárun notandanafns í deilingarglugga. Ef þetta er óvirkt þarf að setja inn fullt nafn notanda.", - "Last cron job execution: %s." : "Síðasta keyrsla cron-verks: %s.", - "Last cron job execution: %s. Something seems wrong." : "Síðasta keyrsla cron-verks: %s. Eitthvað er ekki eins og það á að sér að vera.", - "Cron was not executed yet!" : "Cron hefur ekki ennþá verið keyrt!", - "Execute one task with each page loaded" : "Framkvæma eitt verk með hverri innhlaðinni síðu", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php er skráð á webcron-þjónustu til að kalla á cron.php á 15 mínútna fresti yfir http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Nota cron-þjónustu kerfisins til að kalla á cron.php skrána á 15 mínútna fresti.", - "Enable server-side encryption" : "Virkja dulritun á þjóni", - "Please read carefully before activating server-side encryption: " : "Lestu eftirfarandi gaumgæfilega áður en þú virkjar dulritun á þjóni: ", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "Dulritun ein og sér tryggir ekki öryggi kerfisins. Endilega skoðaðu hjálparskjölownCloud um hvernig dulritunarforritið virkar, og dæmi um hvaða uppsetningar eru studdar.", - "Be aware that encryption always increases the file size." : "Hafðu í huga að dulritun eykur alltaf skráastærð.", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "Það er góður siður að taka regluleg öryggisafrit af gögnunum þínum; ef um dulrituð gögn er að ræða, gakktu úr skugga um að einnig sé tekið öryggisafrit af dulritunarlyklum ásamt gögnunum.", - "This is the final warning: Do you really want to enable encryption?" : "Þetta er lokaaðvörun: Viltu örugglega virkja dulritun?", - "Enable encryption" : "Virkja dulritun", - "No encryption module loaded, please enable an encryption module in the app menu." : "Engin dulritunareining hlaðin inn, virkjaðu dulritunareiningu í valmynd forritsins.", - "Select default encryption module:" : "Veldu sjálfgefna dulritunareiningu:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Þú verður að yfirfæra dulritunarlyklana þína úr gömlu dulrituninni (ownCloud <= 8.0) yfir í þá nýju. Virkjaðu \"Sjálfgefna dulritunareiningu\" og keyrðu 'occ encryption:migrate'", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Þú verður að yfirfæra dulritunarlyklana þína úr gömlu dulrituninni (ownCloud <= 8.0) yfir í þá nýju.", - "Start migration" : "Hefja yfirfærslu", - "This is used for sending out notifications." : "Þetta er notað til að senda út tilkynningar.", - "Send mode" : "Sendihamur", - "Encryption" : "Dulritun", - "From address" : "Frá vistfangi", - "mail" : "póstur", - "Authentication method" : "Auðkenningarmáti", - "Authentication required" : "Auðkenningar krafist", - "Server address" : "Host nafn netþjóns", - "Port" : "Gátt", - "Credentials" : "Auðkenni", - "SMTP Username" : "SMTP-notandanafn", - "SMTP Password" : "SMTP-lykilorð", - "Store credentials" : "Geyma auðkenni", - "Test email settings" : "Prófa tölvupóststillingar", - "Send email" : "Senda tölvupóst", - "Download logfile" : "Sækja annál", - "More" : "Meira", - "Less" : "Minna", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Annállinn er stærri en 100 MB.Þetta gæti tekið nokkra stund!", - "What to log" : "Hvað á að skrá í annál", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite er notað sem gagnagrunnur. Fyrir stærri uppsetningar mælum við með að velja annan gagnagrunnsbakenda.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Sérstaklega þegar tölvu forrit er notað til samræmingar þá er ekki mælt með notkunn SQLite.", - "How to do backups" : "Hvernig á að taka öryggisafrit", - "Advanced monitoring" : "Ítarleg vöktun", - "Performance tuning" : "Fínstilling afkasta", - "Improving the config.php" : "Bæting á config.php skránni", - "Theming" : "Þemu", - "Hardening and security guidance" : "Brynjun og öryggisleiðbeiningar", - "Version" : "Útgáfa", - "Developer documentation" : "Skjölun fyrir þróunaraðila", - "Experimental applications ahead" : "Forrit á tilraunastigi fyrst", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Tilraunaforrit eru ekki yfirfarin með tilliti til öryggisvandamála, þau eru þekkt fyrir að vera óstöðug og þróast hratt. Uppsetning þeirra getur valdið gagnatapi og öryggisbrestum.", - "by %s" : "frá %s", - "%s-licensed" : "%s-notkunarleyfi", - "Documentation:" : "Hjálparskjöl:", - "User documentation" : "Hjálparskjöl notenda", - "Admin documentation" : "Hjálparskjöl kerfisstjóra", - "Show description …" : "Birta lýsingu …", - "Hide description …" : "Fela lýsingu …", - "This app has an update available." : "Uppfærsla er tiltæk fyrir þetta forrit.", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Þetta vorrit er ekki með tiltekna neina lágmarksútgáfu ownCloud. Þetta mun gefa villu í ownCloud 11 og nýrri.", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Þetta vorrit er ekki með tiltekna neina hámarksútgáfu ownCloud. Þetta mun gefa villu í ownCloud 11 og nýrri.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Ekki var hægt að setja upp forritið þar sem eftirfarandi kerfiskröfur eru ekki uppfylltar:", - "Enable only for specific groups" : "Einungis fyrir sérstaka hópa", - "Uninstall App" : "Fjarlægja/Henda út forriti", - "Enable experimental apps" : "Virkja forrit á tilraunastigi", - "SSL Root Certificates" : "SSL-rótarskilríki", - "Common Name" : "Almennt heiti", - "Valid until" : "Gildir til", - "Issued By" : "Gefið út af", - "Valid until %s" : "Gildir til %s", - "Import root certificate" : "Flytja inn rótarskilríki", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Hæ þú,<br><br>bara að láta þig vita að þú átt núna %s aðgang.<br><br>Notandanafnið þitt: %s<br>Tengstu honum: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Til hamingju!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Hæ þú,\n\nbara að láta þig vita að þú átt núna %s aðgang.\n\nNotandanafnið þitt: %s\nTengstu honum: %s\n\n", - "Administrator documentation" : "Hjálparskjöl stjórnanda", - "Online documentation" : "Handbækur/skjölun á netinu", - "Forum" : "Vefspjall", - "Issue tracker" : "Skrásetjari (tracker)", - "Commercial support" : "Gjaldskyld tækniaðstoð", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "Þú notar <strong>%s</strong> frá <strong>%s</strong>", - "Profile picture" : "Einkennismynd", - "Upload new" : "Senda inn nýtt", - "Select from Files" : "Veldu skrár", - "Remove image" : "Fjarlægja mynd", - "png or jpg, max. 20 MB" : "png eða jpg, hám. 20 MB", - "Picture provided by original account" : "Mynd frá upprunalegum aðgangi", - "Cancel" : "Hætta við", - "Choose as profile picture" : "Veldu sem einkennismynd", - "Full name" : "Fullt nafn", - "No display name set" : "Ekkert birtingarnafn sett", - "Email" : "Netfang", - "Your email address" : "Netfangið þitt", - "For password recovery and notifications" : "Fyrir tilkynningar og endurheimtingu lykilorðs", - "No email address set" : "Ekkert tölvupóstfang sett", - "You are member of the following groups:" : "Þú ert meðlimur eftirfarandi hópa:", - "Password" : "Lykilorð", - "Unable to change your password" : "Ekki tókst að breyta lykilorðinu þínu", - "Current password" : "Núverandi lykilorð", - "New password" : "Nýtt lykilorð", - "Change password" : "Breyta lykilorði", - "Language" : "Tungumál", - "Help translate" : "Hjálpa við þýðingu", - "Get the apps to sync your files" : "Náðu í forrit til að samstilla skrárnar þínar", - "Desktop client" : "Skjáborðsforrit", - "Android app" : "Android-forrit", - "iOS app" : "iOS-forrit", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Ef þú vilt styðja við verkefnið\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">taktu þátt í þróuninni</a>\n\t\teða\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">láttu orð út ganga</a>!", - "Show First Run Wizard again" : "Birta Fyrsta-skiptis-leiðarvísinn aftur", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Þróað af {communityopen}ownCloud samfélaginu{linkclose}, {githubopen}grunnkóðinn{linkclose} er gefinn út með {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose} notkunarleyfinu.", - "Show storage location" : "Birta staðsetningu gagnageymslu", - "Show last log in" : "Birta síðustu innskráningu", - "Show user backend" : "Birta bakenda notanda", - "Send email to new user" : "Senda tölvupóst til nýs notanda", - "Show email address" : "Birta tölvupóstfang", - "Username" : "Notandanafn", - "E-Mail" : "Tölvupóstfang", - "Create" : "Búa til", - "Admin Recovery Password" : "Endurheimtulykilorð kerfisstjóra", - "Enter the recovery password in order to recover the users files during password change" : "Settu inn endurheimtulykilorð til að endurheimta skrár notandans við breytingu á lykilorði", - "Add Group" : "Bæta við hópi", - "Group" : "Hópur", - "Everyone" : "Allir", - "Admins" : "Kerfisstjórar", - "Default Quota" : "Sjálfgefinn kvóti", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Settu inn geymslukvóta (t.d.: \"512 MB\" eða \"12 GB\")", - "Other" : "Annað", - "Full Name" : "Fullt nafn", - "Group Admin for" : "Hópstjóri fyrir", - "Quota" : "Kvóti", - "Storage Location" : "Staðsetning gagnageymslu", - "User Backend" : "Bakendi notanda", - "Last Login" : "Síðasta innskráning", - "change full name" : "breyta fullu nafni", - "set new password" : "setja nýtt lykilorð", - "change email address" : "breyta tölvupóstfangi", - "Default" : "Sjálfgefið" -}, -"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);"); diff --git a/settings/l10n/is.json b/settings/l10n/is.json deleted file mode 100644 index 95157e1247e..00000000000 --- a/settings/l10n/is.json +++ /dev/null @@ -1,281 +0,0 @@ -{ "translations": { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Öryggi og aðvaranir vegna uppsetningar", - "Sharing" : "Deiling", - "Server-side encryption" : "Dulritun á þjóni", - "External Storage" : "Ytri gagnageymsla", - "Cron" : "CRON", - "Email server" : "Póstþjónn", - "Log" : "Annáll", - "Tips & tricks" : "Ábendingar og góð ráð", - "Updates" : "Uppfærslur", - "Couldn't remove app." : "Gat ekki fjarlægt forrit.", - "Language changed" : "Tungumáli breytt", - "Invalid request" : "Ógild fyrirspurn", - "Authentication error" : "Villa við auðkenningu", - "Admins can't remove themself from the admin group" : "Stjórnendur geta ekki fjarlægt sjálfa sig úr stjórnendahóp", - "Unable to add user to group %s" : "Ekki tókst að bæta notanda við hópinn %s", - "Unable to remove user from group %s" : "Ekki tókst að fjarlægja notanda úr hópnum %s", - "Couldn't update app." : "Gat ekki uppfært forrit.", - "Wrong password" : "Rangt lykilorð", - "No user supplied" : "Enginn notandi gefinn", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Settu inn endurheimtulykilorð kerfisstjóra, annars munu öll notandagögn tapast", - "Wrong admin recovery password. Please check the password and try again." : "Rangt endurheimtulykilorð kerfisstjóra, athugaðu lykilorðið og reyndu aftur.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Bakendi styður ekki breytingu á lykilorði, en það tókst að uppfæra dulritunarlykil notandans.", - "Unable to change password" : "Ekki tókst að breyta lykilorði", - "Enabled" : "Virkt", - "Not enabled" : "Óvirkt", - "installing and updating apps via the app store or Federated Cloud Sharing" : "uppsetning eða uppfærsla forrita úr forritabúð eða með skýjasambandi", - "Federated Cloud Sharing" : "Deiling með skýjasambandi", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL er að nota úrelda útgáfu af %s (%s). Uppfærðu stýrikerfið þitt, annars er hætt við að eiginleikar á borð við %s virki ekki sem skyldi.", - "A problem occurred, please check your log files (Error: %s)" : "Vandamál kom upp, skoðaðu yfir annálana þína (Villa: %s)", - "Migration Completed" : "Yfirfærslu lokið", - "Group already exists." : "Hópur er þegar til.", - "Unable to add group." : "Ekki tókst að bæta hóp við.", - "Unable to delete group." : "Get ekki eytt hópi.", - "log-level out of allowed range" : "annálsstig utan leyfðra marka", - "Saved" : "Vistað", - "test email settings" : "prófa tölvupóststillingar", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Vandamál kom upp við að senda tölvupóst. Farðu yfir stillingarnar þínar. (Villa: %s)", - "Email sent" : "Tölvupóstur sendur", - "You need to set your user email before being able to send test emails." : "Þú verður að gefa upp netfangið þitt svo að þú getir sent prófunarpósta.", - "Invalid mail address" : "Ógilt tölvupóstfang", - "A user with that name already exists." : "Nú þegar til notandi með þetta nafn.", - "Unable to create user." : "Gat ekki búið til notanda.", - "Your %s account was created" : "%s notandaaðgangurinn þinn var búinn til", - "Unable to delete user." : "Get ekki eytt notanda.", - "Forbidden" : "Bannað", - "Invalid user" : "Ógildur notandi", - "Unable to change mail address" : "Get ekki breytt tölvupóstfangi", - "Email saved" : "Tölvupóstfang vistað", - "Your full name has been changed." : "Fullu nafni þínu hefur verið breytt.", - "Unable to change full name" : "Get ekki breytt fullu nafni", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Ertu viss um að þú viljir bæta \"{domain}\" við sem treystu léni?", - "Add trusted domain" : "Bæta við treystu léni", - "Migration in progress. Please wait until the migration is finished" : "Yfirfærsla er í gangi. Dokaðu við þar til henni er lokið", - "Migration started …" : "Yfirfærsla hafin...", - "Sending..." : "Sendi...", - "Official" : "Opinbert", - "Approved" : "Samþykkt", - "Experimental" : "Á tilraunastigi", - "All" : "Allt", - "No apps found for your version" : "Engin forrit fundust fyrir útgáfuna þína", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Opinber forrit eru þróuð af og innan ownCloud samfélagsins. Þau virka með kjarnaeiginleikum ownCloud og eru tilbúin til notkunar í raunvinnslu.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Samþykkt forrit eru þróuð af treystum forriturum og hafa gengist undir lauslegar öryggisprófanir. Þau eru í virku viðhaldi í opnum hugbúnaðarsöfnum og umsjónarmenn þeirra dæma þau nógu stöðug til notkunar í allri venjulegri vinnslu.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Þetta forrit hefur ekki verið öryggisprófað, er nýtt erða þekkt fyrir ótöðugleika við vissar aðstæður. Uppsetning er á þína ábyrgð.", - "Update to %s" : "Uppfæra í %s", - "_You have %n app update pending_::_You have %n app updates pending_" : ["Það er %n forritsuppfærsla í bið","Það eru %n forritauppfærslur í bið"], - "Please wait...." : "Andartak....", - "Error while disabling app" : "Villa við að afvirkja forrit", - "Disable" : "Gera óvirkt", - "Enable" : "Virkja", - "Error while enabling app" : "Villa við að virkja forrit", - "Error: this app cannot be enabled because it makes the server unstable" : "Villa: ekki er hægt að virkja þetta forrit því það gerir þjóninn óstöðugan", - "Error: could not disable broken app" : "Villa: gat ekki gert bilaða forritið óvirkt", - "Error while disabling broken app" : "Villa við að gera bilaða forritið óvirkt", - "Updating...." : "Uppfæri...", - "Error while updating app" : "Villa við að uppfæra forrit", - "Updated" : "Uppfært", - "Uninstalling ...." : "Tek út uppsetningu ....", - "Error while uninstalling app" : "Villa við að fjarlægja forrit", - "Uninstall" : "Henda út", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Forritið hefur verið virkjað, en það þarf að uppfæra það. Þú verður áframsendur á uppfærslusíðuna eftir 5 sekúndur.", - "App update" : "Uppfærsla forrits", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Villa kom upp. Sendu inn ASCII-kóðað PEM-skilríki.", - "Valid until {date}" : "Gildir til {date}", - "Delete" : "Eyða", - "An error occurred: {message}" : "Villa kom upp: {message}", - "Select a profile picture" : "Veldu einkennismynd", - "Very weak password" : "Mjög veikt lykilorð", - "Weak password" : "Veikt lykilorð", - "So-so password" : "Svo-svo lykilorð", - "Good password" : "Gott lykilorð", - "Strong password" : "Sterkt lykilorð", - "Groups" : "Hópar", - "Unable to delete {objName}" : "Get ekki eytt {objName}", - "Error creating group: {message}" : "Villa við að búa til hóp: {message}", - "A valid group name must be provided" : "Skráðu inn gilt heiti á hópi", - "deleted {groupName}" : "eyddi {groupName}", - "undo" : "afturkalla", - "no group" : "enginn hópur", - "never" : "aldrei", - "deleted {userName}" : "eyddi {userName}", - "add group" : "bæta við hópi", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Breyting á þessu lykilorði mun valda gagnatapi, þar sem gagnaendurheimt er ekki tiltæk fyrir þennan notanda", - "A valid username must be provided" : "Skráðu inn gilt notandanafn", - "Error creating user: {message}" : "Villa við að búa til notanda: {message}", - "A valid password must be provided" : "Skráðu inn gilt lykilorð", - "A valid email must be provided" : "Skráðu inn gilt tölvupóstfang", - "__language_name__" : "Íslenska", - "Unlimited" : "Ótakmarkað", - "Personal info" : "Persónulegar upplýsingar", - "Sync clients" : "Samstilla biðlara", - "Everything (fatal issues, errors, warnings, info, debug)" : "Allt (aflúsun, upplýsingar, viðvaranir, villur og alvarlegar aðvaranir)", - "Info, warnings, errors and fatal issues" : "Upplýsingar, viðvaranir, villur og alvarlegar aðvaranir", - "Warnings, errors and fatal issues" : "Viðvaranir, villur og alvarlegar aðvaranir", - "Errors and fatal issues" : "Villur og alvarlegar aðvaranir", - "Fatal issues only" : "Einungis alvarlegar aðvaranir", - "None" : "Ekkert", - "Login" : "Innskráning", - "Plain" : "Einfalt", - "NT LAN Manager" : "NT LAN stjórnun", - "SSL" : "SSL", - "TLS" : "TLS", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Þjónninn þinn er keyrandi á Microsoft Windows. Við mælum sterklega með Linux til að njóta sem best allra eiginleika fyrir notendurna.", - "System locale can not be set to a one which supports UTF-8." : "Ekki var hægt að setja staðfærslu kerfisins á neina sem styður UTF-8.", - "All checks passed." : "Stóðst allar prófanir.", - "Open documentation" : "Opna hjálparskjöl", - "Allow apps to use the Share API" : "Leyfa forritum að nota Share API", - "Allow users to share via link" : "Leyfa notendum að deila með tengli", - "Enforce password protection" : "Krefjast verndunar með aðgangsorði", - "Allow public uploads" : "Leyfa opinberar innsendingar", - "Allow users to send mail notification for shared files" : "Leyfa notendum að senda tilkynningar í tölvupósti vegna deildra skráa", - "Set default expiration date" : "Setja sjálfgefinn gildistíma", - "Expire after " : "Rennur út eftir ", - "days" : "daga", - "Enforce expiration date" : "Krefjast dagsetningar á gildistíma", - "Allow resharing" : "Leyfa endurdeilingu", - "Allow sharing with groups" : "Leyfa deilingu með hópum", - "Restrict users to only share with users in their groups" : "Takmarka notendur við að deila með notendum í þeirra eigin hópum", - "Allow users to send mail notification for shared files to other users" : "Leyfa notendum að senda tilkynningar til annarra notenda í tölvupósti vegna deildra skráa", - "Exclude groups from sharing" : "Undanskilja hópa frá því að deila", - "These groups will still be able to receive shares, but not to initiate them." : "Þessir hópar munu samt geta tekið við deildum sameignum, en ekki geta útbúið þær.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Leyfa sjálfklárun notandanafns í deilingarglugga. Ef þetta er óvirkt þarf að setja inn fullt nafn notanda.", - "Last cron job execution: %s." : "Síðasta keyrsla cron-verks: %s.", - "Last cron job execution: %s. Something seems wrong." : "Síðasta keyrsla cron-verks: %s. Eitthvað er ekki eins og það á að sér að vera.", - "Cron was not executed yet!" : "Cron hefur ekki ennþá verið keyrt!", - "Execute one task with each page loaded" : "Framkvæma eitt verk með hverri innhlaðinni síðu", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php er skráð á webcron-þjónustu til að kalla á cron.php á 15 mínútna fresti yfir http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Nota cron-þjónustu kerfisins til að kalla á cron.php skrána á 15 mínútna fresti.", - "Enable server-side encryption" : "Virkja dulritun á þjóni", - "Please read carefully before activating server-side encryption: " : "Lestu eftirfarandi gaumgæfilega áður en þú virkjar dulritun á þjóni: ", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "Dulritun ein og sér tryggir ekki öryggi kerfisins. Endilega skoðaðu hjálparskjölownCloud um hvernig dulritunarforritið virkar, og dæmi um hvaða uppsetningar eru studdar.", - "Be aware that encryption always increases the file size." : "Hafðu í huga að dulritun eykur alltaf skráastærð.", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "Það er góður siður að taka regluleg öryggisafrit af gögnunum þínum; ef um dulrituð gögn er að ræða, gakktu úr skugga um að einnig sé tekið öryggisafrit af dulritunarlyklum ásamt gögnunum.", - "This is the final warning: Do you really want to enable encryption?" : "Þetta er lokaaðvörun: Viltu örugglega virkja dulritun?", - "Enable encryption" : "Virkja dulritun", - "No encryption module loaded, please enable an encryption module in the app menu." : "Engin dulritunareining hlaðin inn, virkjaðu dulritunareiningu í valmynd forritsins.", - "Select default encryption module:" : "Veldu sjálfgefna dulritunareiningu:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Þú verður að yfirfæra dulritunarlyklana þína úr gömlu dulrituninni (ownCloud <= 8.0) yfir í þá nýju. Virkjaðu \"Sjálfgefna dulritunareiningu\" og keyrðu 'occ encryption:migrate'", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Þú verður að yfirfæra dulritunarlyklana þína úr gömlu dulrituninni (ownCloud <= 8.0) yfir í þá nýju.", - "Start migration" : "Hefja yfirfærslu", - "This is used for sending out notifications." : "Þetta er notað til að senda út tilkynningar.", - "Send mode" : "Sendihamur", - "Encryption" : "Dulritun", - "From address" : "Frá vistfangi", - "mail" : "póstur", - "Authentication method" : "Auðkenningarmáti", - "Authentication required" : "Auðkenningar krafist", - "Server address" : "Host nafn netþjóns", - "Port" : "Gátt", - "Credentials" : "Auðkenni", - "SMTP Username" : "SMTP-notandanafn", - "SMTP Password" : "SMTP-lykilorð", - "Store credentials" : "Geyma auðkenni", - "Test email settings" : "Prófa tölvupóststillingar", - "Send email" : "Senda tölvupóst", - "Download logfile" : "Sækja annál", - "More" : "Meira", - "Less" : "Minna", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Annállinn er stærri en 100 MB.Þetta gæti tekið nokkra stund!", - "What to log" : "Hvað á að skrá í annál", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite er notað sem gagnagrunnur. Fyrir stærri uppsetningar mælum við með að velja annan gagnagrunnsbakenda.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Sérstaklega þegar tölvu forrit er notað til samræmingar þá er ekki mælt með notkunn SQLite.", - "How to do backups" : "Hvernig á að taka öryggisafrit", - "Advanced monitoring" : "Ítarleg vöktun", - "Performance tuning" : "Fínstilling afkasta", - "Improving the config.php" : "Bæting á config.php skránni", - "Theming" : "Þemu", - "Hardening and security guidance" : "Brynjun og öryggisleiðbeiningar", - "Version" : "Útgáfa", - "Developer documentation" : "Skjölun fyrir þróunaraðila", - "Experimental applications ahead" : "Forrit á tilraunastigi fyrst", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Tilraunaforrit eru ekki yfirfarin með tilliti til öryggisvandamála, þau eru þekkt fyrir að vera óstöðug og þróast hratt. Uppsetning þeirra getur valdið gagnatapi og öryggisbrestum.", - "by %s" : "frá %s", - "%s-licensed" : "%s-notkunarleyfi", - "Documentation:" : "Hjálparskjöl:", - "User documentation" : "Hjálparskjöl notenda", - "Admin documentation" : "Hjálparskjöl kerfisstjóra", - "Show description …" : "Birta lýsingu …", - "Hide description …" : "Fela lýsingu …", - "This app has an update available." : "Uppfærsla er tiltæk fyrir þetta forrit.", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Þetta vorrit er ekki með tiltekna neina lágmarksútgáfu ownCloud. Þetta mun gefa villu í ownCloud 11 og nýrri.", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Þetta vorrit er ekki með tiltekna neina hámarksútgáfu ownCloud. Þetta mun gefa villu í ownCloud 11 og nýrri.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Ekki var hægt að setja upp forritið þar sem eftirfarandi kerfiskröfur eru ekki uppfylltar:", - "Enable only for specific groups" : "Einungis fyrir sérstaka hópa", - "Uninstall App" : "Fjarlægja/Henda út forriti", - "Enable experimental apps" : "Virkja forrit á tilraunastigi", - "SSL Root Certificates" : "SSL-rótarskilríki", - "Common Name" : "Almennt heiti", - "Valid until" : "Gildir til", - "Issued By" : "Gefið út af", - "Valid until %s" : "Gildir til %s", - "Import root certificate" : "Flytja inn rótarskilríki", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Hæ þú,<br><br>bara að láta þig vita að þú átt núna %s aðgang.<br><br>Notandanafnið þitt: %s<br>Tengstu honum: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Til hamingju!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Hæ þú,\n\nbara að láta þig vita að þú átt núna %s aðgang.\n\nNotandanafnið þitt: %s\nTengstu honum: %s\n\n", - "Administrator documentation" : "Hjálparskjöl stjórnanda", - "Online documentation" : "Handbækur/skjölun á netinu", - "Forum" : "Vefspjall", - "Issue tracker" : "Skrásetjari (tracker)", - "Commercial support" : "Gjaldskyld tækniaðstoð", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "Þú notar <strong>%s</strong> frá <strong>%s</strong>", - "Profile picture" : "Einkennismynd", - "Upload new" : "Senda inn nýtt", - "Select from Files" : "Veldu skrár", - "Remove image" : "Fjarlægja mynd", - "png or jpg, max. 20 MB" : "png eða jpg, hám. 20 MB", - "Picture provided by original account" : "Mynd frá upprunalegum aðgangi", - "Cancel" : "Hætta við", - "Choose as profile picture" : "Veldu sem einkennismynd", - "Full name" : "Fullt nafn", - "No display name set" : "Ekkert birtingarnafn sett", - "Email" : "Netfang", - "Your email address" : "Netfangið þitt", - "For password recovery and notifications" : "Fyrir tilkynningar og endurheimtingu lykilorðs", - "No email address set" : "Ekkert tölvupóstfang sett", - "You are member of the following groups:" : "Þú ert meðlimur eftirfarandi hópa:", - "Password" : "Lykilorð", - "Unable to change your password" : "Ekki tókst að breyta lykilorðinu þínu", - "Current password" : "Núverandi lykilorð", - "New password" : "Nýtt lykilorð", - "Change password" : "Breyta lykilorði", - "Language" : "Tungumál", - "Help translate" : "Hjálpa við þýðingu", - "Get the apps to sync your files" : "Náðu í forrit til að samstilla skrárnar þínar", - "Desktop client" : "Skjáborðsforrit", - "Android app" : "Android-forrit", - "iOS app" : "iOS-forrit", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Ef þú vilt styðja við verkefnið\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">taktu þátt í þróuninni</a>\n\t\teða\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">láttu orð út ganga</a>!", - "Show First Run Wizard again" : "Birta Fyrsta-skiptis-leiðarvísinn aftur", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Þróað af {communityopen}ownCloud samfélaginu{linkclose}, {githubopen}grunnkóðinn{linkclose} er gefinn út með {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose} notkunarleyfinu.", - "Show storage location" : "Birta staðsetningu gagnageymslu", - "Show last log in" : "Birta síðustu innskráningu", - "Show user backend" : "Birta bakenda notanda", - "Send email to new user" : "Senda tölvupóst til nýs notanda", - "Show email address" : "Birta tölvupóstfang", - "Username" : "Notandanafn", - "E-Mail" : "Tölvupóstfang", - "Create" : "Búa til", - "Admin Recovery Password" : "Endurheimtulykilorð kerfisstjóra", - "Enter the recovery password in order to recover the users files during password change" : "Settu inn endurheimtulykilorð til að endurheimta skrár notandans við breytingu á lykilorði", - "Add Group" : "Bæta við hópi", - "Group" : "Hópur", - "Everyone" : "Allir", - "Admins" : "Kerfisstjórar", - "Default Quota" : "Sjálfgefinn kvóti", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Settu inn geymslukvóta (t.d.: \"512 MB\" eða \"12 GB\")", - "Other" : "Annað", - "Full Name" : "Fullt nafn", - "Group Admin for" : "Hópstjóri fyrir", - "Quota" : "Kvóti", - "Storage Location" : "Staðsetning gagnageymslu", - "User Backend" : "Bakendi notanda", - "Last Login" : "Síðasta innskráning", - "change full name" : "breyta fullu nafni", - "set new password" : "setja nýtt lykilorð", - "change email address" : "breyta tölvupóstfangi", - "Default" : "Sjálfgefið" -},"pluralForm" :"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);" -}
\ No newline at end of file diff --git a/settings/l10n/it.js b/settings/l10n/it.js deleted file mode 100644 index 5752bbc8282..00000000000 --- a/settings/l10n/it.js +++ /dev/null @@ -1,299 +0,0 @@ -OC.L10N.register( - "settings", - { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Avvisi di sicurezza e di configurazione", - "Sharing" : "Condivisione", - "Server-side encryption" : "Cifratura lato server", - "External Storage" : "Archiviazione esterna", - "Cron" : "Cron", - "Email server" : "Server di posta", - "Log" : "Log", - "Tips & tricks" : "Suggerimenti e trucchi", - "Updates" : "Aggiornamenti", - "Couldn't remove app." : "Impossibile rimuovere l'applicazione.", - "Language changed" : "Lingua modificata", - "Invalid request" : "Richiesta non valida", - "Authentication error" : "Errore di autenticazione", - "Admins can't remove themself from the admin group" : "Gli amministratori non possono rimuovere se stessi dal gruppo di amministrazione", - "Unable to add user to group %s" : "Impossibile aggiungere l'utente al gruppo %s", - "Unable to remove user from group %s" : "Impossibile rimuovere l'utente dal gruppo %s", - "Couldn't update app." : "Impossibile aggiornate l'applicazione.", - "Wrong password" : "Password errata", - "No user supplied" : "Non è stato fornito alcun utente", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Fornisci una password amministrativa di ripristino altrimenti tutti i dati degli utenti saranno persi.", - "Wrong admin recovery password. Please check the password and try again." : "Password amministrativa di ripristino errata. Controlla la password e prova ancora.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Il motore non supporta la modifica della password, ma la chiave di cifratura dell'utente è stata aggiornata correttamente.", - "Unable to change password" : "Impossibile cambiare la password", - "Enabled" : "Abilitata", - "Not enabled" : "Non abilitata", - "installing and updating apps via the app store or Federated Cloud Sharing" : "installazione e aggiornamento delle applicazioni tramite il negozio delle applicazioni o condivisione cloud federata", - "Federated Cloud Sharing" : "Condivisione cloud federata", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL utilizza una versione %s datata (%s). Aggiorna il tuo sistema operativo o funzionalità come %s non funzioneranno correttamente.", - "A problem occurred, please check your log files (Error: %s)" : "Si è verificato un problema, controlla i tuoi file di log (Errore: %s)", - "Migration Completed" : "Migrazione completata", - "Group already exists." : "Il gruppo esiste già.", - "Unable to add group." : "Impossibile aggiungere il gruppo.", - "Unable to delete group." : "Impossibile eliminare il gruppo.", - "log-level out of allowed range" : "livello di log fuori dall'intervallo consentito", - "Saved" : "Salvato", - "test email settings" : "prova impostazioni email", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Si è verificato un problema durante l'invio dell'email. Controlla le tue impostazioni. (Errore: %s)", - "Email sent" : "Email inviata", - "You need to set your user email before being able to send test emails." : "Devi impostare l'indirizzo del tuo utente prima di poter provare l'invio delle email.", - "Invalid mail address" : "Indirizzo email non valido", - "A user with that name already exists." : "Un utente con quel nome esiste già.", - "Unable to create user." : "Impossibile creare l'utente.", - "Your %s account was created" : "Il tuo account %s è stato creato", - "Unable to delete user." : "Impossibile eliminare l'utente.", - "Forbidden" : "Vietato", - "Invalid user" : "Utente non valido", - "Unable to change mail address" : "Impossibile cambiare l'indirizzo di posta", - "Email saved" : "Email salvata", - "Your full name has been changed." : "Il tuo nome completo è stato cambiato.", - "Unable to change full name" : "Impossibile cambiare il nome completo", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Sei sicuro di voler aggiungere \"{domain}\" come dominio attendibile?", - "Add trusted domain" : "Aggiungi dominio attendibile", - "Migration in progress. Please wait until the migration is finished" : "Migrazione in corso. Attendi fino al completamento della migrazione", - "Migration started …" : "Migrazione avviata...", - "Sending..." : "Invio in corso...", - "Official" : "Ufficiale", - "Approved" : "Approvata", - "Experimental" : "Sperimentale", - "All" : "Tutti", - "No apps found for your version" : "Nessuna applicazione trovata per la tua versione", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Le applicazioni ufficiali sono sviluppate da e con la comunità di ownCloud. Offrono le funzioni fondamentali di ownCloud e sono pronte per l'utilizzo in produzione.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Le applicazioni approvate sono sviluppate da sviluppatori affidabili e hanno passato un rapido controllo di sicurezza. Sono attivamente mantenute in un deposito aperto del codice e i loro responsabili le ritengono pronte sia per un utilizzo casuale che per un utilizzo continuativo.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Questa applicazione non è stata sottoposta a controlli di sicurezza, è nuova o notoriamente instabile. Installala a tuo rischio.", - "Update to %s" : "Aggiornato a %s", - "_You have %n app update pending_::_You have %n app updates pending_" : ["Hai %n aggiornamento di applicazione in corso","Hai %n aggiornamenti di applicazione in corso"], - "Please wait...." : "Attendere...", - "Error while disabling app" : "Errore durante la disattivazione", - "Disable" : "Disabilita", - "Enable" : "Abilita", - "Error while enabling app" : "Errore durante l'attivazione", - "Error: this app cannot be enabled because it makes the server unstable" : "Errore: questa applicazione non può essere abilitata perché rende il server instabile", - "Error: could not disable broken app" : "Errore: impossibile disabilitare l'applicazione danneggiata", - "Error while disabling broken app" : "Errore durante la disabilitazione dell'applicazione danneggiata", - "Updating...." : "Aggiornamento in corso...", - "Error while updating app" : "Errore durante l'aggiornamento", - "Updated" : "Aggiornato", - "Uninstalling ...." : "Disinstallazione...", - "Error while uninstalling app" : "Errore durante la disinstallazione dell'applicazione", - "Uninstall" : "Disinstalla", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "L'applicazione è stata abilitata, ma deve essere aggiornata. Sarai rediretto alla pagina di aggiornamento in 5 secondi.", - "App update" : "Aggiornamento applicazione", - "No apps found for {query}" : "Nessuna applicazione trovata per {query}", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Si è verificato un errore. Carica un certificato PEM codificato in ASCII.", - "Valid until {date}" : "Valido fino al {date}", - "Delete" : "Elimina", - "An error occurred: {message}" : "Si è verificato un errore: {message}", - "Select a profile picture" : "Seleziona un'immagine del profilo", - "Very weak password" : "Password molto debole", - "Weak password" : "Password debole", - "So-so password" : "Password così-così", - "Good password" : "Password buona", - "Strong password" : "Password forte", - "Groups" : "Gruppi", - "Unable to delete {objName}" : "Impossibile eliminare {objName}", - "Error creating group: {message}" : "Errore durante la creazione del gruppo: {message}", - "A valid group name must be provided" : "Deve essere fornito un nome valido per il gruppo", - "deleted {groupName}" : "{groupName} eliminato", - "undo" : "annulla", - "no group" : "nessun gruppo", - "never" : "mai", - "deleted {userName}" : "{userName} eliminato", - "add group" : "aggiungi gruppo", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Il cambiamento della password causerà una perdita di dati, poiché il ripristino dei dati non è disponibile per questo utente", - "A valid username must be provided" : "Deve essere fornito un nome utente valido", - "Error creating user: {message}" : "Errore durante la creazione dell'utente: {message}", - "A valid password must be provided" : "Deve essere fornita una password valida", - "A valid email must be provided" : "Deve essere fornito un indirizzo email valido", - "__language_name__" : "Italiano", - "Unlimited" : "Illimitata", - "Personal info" : "Informazioni personali", - "Sync clients" : "Client di sincronizzazione", - "Everything (fatal issues, errors, warnings, info, debug)" : "Tutto (problemi gravi, errori, avvisi, informazioni, debug)", - "Info, warnings, errors and fatal issues" : "Informazioni, avvisi, errori e problemi gravi", - "Warnings, errors and fatal issues" : "Avvisi, errori e problemi gravi", - "Errors and fatal issues" : "Errori e problemi gravi", - "Fatal issues only" : "Solo problemi gravi", - "None" : "Nessuno", - "Login" : "Accesso", - "Plain" : "Semplice", - "NT LAN Manager" : "Gestore NT LAN", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "php non sembra essere configurato correttamente per interrogare le variabili d'ambiente di sistema. Il test con getenv(\"PATH\") restituisce solo una risposta vuota.", - "Please check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation documentation ↗</a> for php configuration notes and the php configuration of your server, especially when using php-fpm." : "Controlla la <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentazione di installazione↗</a> per le note di configurazione di php e la configurazione del tuo server, in particolare quando utilizzi php-fpm.", - "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.", - "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.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Il tuo server è in esecuzione su Microsoft Windows. Consigliamo vivamente Linux per un'esperienza utente ottimale.", - "%1$s below version %2$s is installed, for stability and performance reasons we recommend updating to a newer %1$s version." : "La versione di %1$s installata è anteriore alla %2$s, per motivi di stabilità e prestazioni, consigliamo di aggiornare a una versione di %1$s più recente.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Il modulo PHP 'fileinfo' non è presente. Consigliamo vivamente di abilitare questo modulo per ottenere risultati migliori con il rilevamento dei tipi MIME.", - "Transactional file locking is disabled, this might lead to issues with race conditions. Enable 'filelocking.enabled' in config.php to avoid these problems. See the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a> for more information." : "Il blocco del file transazionale è disabilitato, ciò potrebbe comportare problemi di race condition. Abilita 'filelocking.enabled' nel config-php per evitare questi problemi. Vedi la <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentazione ↗</a> per ulteriori informazioni.", - "System locale can not be set to a one which supports UTF-8." : "La localizzazione di sistema non può essere impostata a una che supporta UTF-8.", - "This means that there might be problems with certain characters in file names." : "Ciò significa che potrebbero esserci problemi con alcuni caratteri nei nomi dei file.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Consigliamo vivamente di installare i pacchetti richiesti sul tuo sistema per supportare una delle localizzazioni seguenti: %s.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Se la tua installazione non si trova nella radice del dominio e utilizza il cron di sistema, potrebbero esserci problemi con la generazione degli URL. Per evitare questi problemi, imposta l'opzione \"overwrite.cli.url\" nel file config.php al percorso della radice del sito della tua installazione (Consigliato: \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Non è stato possibile eseguire il job di cron tramite CLI. Sono apparsi i seguenti errori tecnici:", - "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"#log-section\">log</a>." : "Leggi attentamente le <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">guide d'installazione ↗</a>, e controlla gli errori o gli avvisi nel <a href=\"#log-section\">log</a>.", - "All checks passed." : "Tutti i controlli passati.", - "Open documentation" : "Apri la documentazione", - "Allow apps to use the Share API" : "Consenti alle applicazioni di utilizzare le API di condivisione", - "Allow users to share via link" : "Consenti agli utenti di condividere 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", - "Allow sharing with groups" : "Consentì la condivisione con gruppi", - "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 to other users" : "Consenti agli utenti di inviare email di notifica per i file condivisi con altri utenti", - "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.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Consenti il completamento del nome utente nella finestra di condivisione. Se è disabilitata, è necessario digitare il nome utente completo.", - "Last cron job execution: %s." : "Ultima esecuzione di cron: %s.", - "Last cron job execution: %s. Something seems wrong." : "Ultima esecuzione di cron: %s. Potrebbe esserci un problema.", - "Cron was not executed yet!" : "Cron non è stato ancora eseguito!", - "Execute one task with each page loaded" : "Esegui un'operazione con ogni pagina caricata", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php è registrato su un servizio webcron per invocare cron.php ogni 15 minuti su http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Usa il servizio cron di sistema per invocare il file cron.php ogni 15 minuti.", - "Enable server-side encryption" : "Abilita cifratura lato server", - "Please read carefully before activating server-side encryption: " : "Leggi attentamente prima di attivare la cifratura lato server:", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "Quando la cifratura è abilitata, tutti i file caricati sul server da quel momento in poi saranno cifrati sul server. Sarà possibile solo disabilitare successivamente la cifratura se il modulo di cifratura attivo lo consente, e se tutti i prerequisiti (ad es. l'impostazione di una chiave di recupero) sono verificati.", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "La sola cifratura non garantisce la sicurezza del sistema. Vedi la documentazione di ownCloud per ulteriori informazioni su come funziona l'applicazione di cifratura, e per i casi d'uso supportati.", - "Be aware that encryption always increases the file size." : "Considera che la cifratura incrementa sempre la dimensione dei file.", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "Ti consigliamo di creare copie di sicurezza dei tuoi dati con regolarità, in caso di utilizzo della cifratura, assicurati di creare una copia delle chiavi di cifratura insieme ai tuoi dati.", - "This is the final warning: Do you really want to enable encryption?" : "Questo è l'ultimo avviso: vuoi davvero abilitare la cifratura?", - "Enable encryption" : "Abilita cifratura", - "No encryption module loaded, please enable an encryption module in the app menu." : "Nessun modulo di cifratura caricato, carica un modulo di cifratura nel menu delle applicazioni.", - "Select default encryption module:" : "Seleziona il modulo di cifratura predefinito:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Devi migrare le tue chiavi di cifratura dalla vecchia cifratura (ownCloud <= 8.0) alla nuova. Abilita il \"Modulo di cifratura predefinito\" ed esegui 'occ encryption:migrate'", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Devi migrare le tue chiavi di cifratura dalla vecchia cifratura (ownCloud <= 8.0) alla nuova.", - "Start migration" : "Avvia migrazione", - "This is used for sending out notifications." : "Viene utilizzato per inviare le notifiche.", - "Send mode" : "Modalità di invio", - "Encryption" : "Cifratura", - "From address" : "Indirizzo mittente", - "mail" : "posta", - "Authentication method" : "Metodo di autenticazione", - "Authentication required" : "Autenticazione richiesta", - "Server address" : "Indirizzo del server", - "Port" : "Porta", - "Credentials" : "Credenziali", - "SMTP Username" : "Nome utente SMTP", - "SMTP Password" : "Password SMTP", - "Store credentials" : "Memorizza le credenziali", - "Test email settings" : "Prova impostazioni email", - "Send email" : "Invia email", - "Download logfile" : "Scarica file di log", - "More" : "Altro", - "Less" : "Meno", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Il file di log è più grande di 100MB. Scaricarlo potrebbe richiedere del tempo!", - "What to log" : "Cosa registrare", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite è utilizzato come database. Per installazioni più grandi consigliamo di passare a un motore di database diverso.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "In particolar modo, quando si utilizza il client desktop per la sincronizzazione dei file, l'uso di SQLite è sconsigliato.", - "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a>." : "Per migrare a un altro database, usa lo strumento da riga di comando: 'occ db:convert-type', o leggi la <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentazione ↗</a>.", - "How to do backups" : "Come creare delle copie di sicurezza", - "Advanced monitoring" : "Monitoraggio avanzato", - "Performance tuning" : "Ottimizzazione delle prestazioni", - "Improving the config.php" : "Ottimizzare il config.php", - "Theming" : "Temi", - "Hardening and security guidance" : "Guida alla messa in sicurezza", - "Version" : "Versione", - "Developer documentation" : "Documentazione dello sviluppatore", - "Experimental applications ahead" : "Prima le applicazioni sperimentali", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Le applicazioni sperimentali non sono sottoposte a controlli di sicurezza, sono nuove o notoriamente instabili e sotto sviluppo intensivo. La loro installazione può causare perdite di dati o problemi di sicurezza.", - "by %s" : "di %s", - "%s-licensed" : "sotto licenza %s", - "Documentation:" : "Documentazione:", - "User documentation" : "Documentazione utente", - "Admin documentation" : "Documentazione di amministrazione", - "Show description …" : "Mostra descrizione...", - "Hide description …" : "Nascondi descrizione...", - "This app has an update available." : "Un aggiornamento di questa applicazione è disponibile.", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Questa applicazione non ha una versione minima di ownCloud assegnata. Ciò costituirà un errore in ownCloud 11 e successive.", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Questa applicazione non ha una versione massima di ownCloud assegnata. Ciò costituirà un errore in ownCloud 11 e successive.", - "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:", - "Enable only for specific groups" : "Abilita solo per gruppi specifici", - "Uninstall App" : "Disinstalla applicazione", - "Enable experimental apps" : "Abilita le applicazioni sperimentali", - "SSL Root Certificates" : "Certificati radice SSL", - "Common Name" : "Nome comune", - "Valid until" : "Valido fino al", - "Issued By" : "Emesso da", - "Valid until %s" : "Valido fino al %s", - "Import root certificate" : "Importa certificato radice", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Ciao,<br><br>volevo informarti che ora hai un account %s.<br><br>Il tuo nome utente: %s<br>Accedi: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Saluti!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Ciao,\n\nvolevo informarti che ora hai un account %s.\n\nIl tuo nome utente: %s\nAccedi: %s\n\n", - "Administrator documentation" : "Documentazione amministratore", - "Online documentation" : "Documentazione in linea", - "Forum" : "Forum", - "Issue tracker" : "Sistema di tracciamento dei problemi", - "Commercial support" : "Supporto commerciale", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "Stai utilizzando <strong>%s</strong> di <strong>%s</strong>", - "Profile picture" : "Immagine del profilo", - "Upload new" : "Carica nuova", - "Select from Files" : "Seleziona da file", - "Remove image" : "Rimuovi immagine", - "png or jpg, max. 20 MB" : "png o jpg, max. 20 MB", - "Picture provided by original account" : "Immagine fornita dall'account originale", - "Cancel" : "Annulla", - "Choose as profile picture" : "Scegli come immagine del profilo", - "Full name" : "Nome completo", - "No display name set" : "Nome visualizzato non impostato", - "Email" : "Posta elettronica", - "Your email address" : "Il tuo indirizzo email", - "For password recovery and notifications" : "Per il ripristino della password e per le notifiche", - "No email address set" : "Nessun indirizzo email impostato", - "You are member of the following groups:" : "Sei membro dei seguenti gruppi:", - "Password" : "Password", - "Unable to change your password" : "Modifica password non riuscita", - "Current password" : "Password attuale", - "New password" : "Nuova password", - "Change password" : "Modifica password", - "Language" : "Lingua", - "Help translate" : "Migliora la traduzione", - "Get the apps to sync your files" : "Scarica le applicazioni per sincronizzare i tuoi file", - "Desktop client" : "Client desktop", - "Android app" : "Applicazione Android", - "iOS app" : "Applicazione iOS", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Se vuoi supportare il progetto\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">diventa uno sviluppatore</a>\n\t\to\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">diffondi il verbo</a>!", - "Show First Run Wizard again" : "Mostra nuovamente la procedura di primo avvio", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Sviluppato dalla {communityopen}comunità di ownCloud{linkclose}, il {githubopen}codice sorgente{linkclose} è rilasciato nei termini della licenza {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}.", - "Show storage location" : "Mostra posizione di archiviazione", - "Show last log in" : "Mostra ultimo accesso", - "Show user backend" : "Mostra il motore utente", - "Send email to new user" : "Invia email al nuovo utente", - "Show email address" : "Mostra l'indirizzo email", - "Username" : "Nome utente", - "E-Mail" : "Posta elettronica", - "Create" : "Crea", - "Admin Recovery Password" : "Password di ripristino amministrativa", - "Enter the recovery password in order to recover the users files during password change" : "Digita la password di ripristino per recuperare i file degli utenti durante la modifica della password.", - "Add Group" : "Aggiungi gruppo", - "Group" : "Gruppo", - "Everyone" : "Chiunque", - "Admins" : "Amministratori", - "Default Quota" : "Quota predefinita", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Digita la quota di archiviazione (ad es.: \"512 MB\" or \"12 GB\")", - "Other" : "Altro", - "Full Name" : "Nome completo", - "Group Admin for" : "Gruppo di amministrazione per", - "Quota" : "Quote", - "Storage Location" : "Posizione di archiviazione", - "User Backend" : "Motore utente", - "Last Login" : "Ultimo accesso", - "change full name" : "modica nome completo", - "set new password" : "imposta una nuova password", - "change email address" : "cambia l'indirizzo email", - "Default" : "Predefinito" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/it.json b/settings/l10n/it.json deleted file mode 100644 index 8a96ae1dd9e..00000000000 --- a/settings/l10n/it.json +++ /dev/null @@ -1,297 +0,0 @@ -{ "translations": { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Avvisi di sicurezza e di configurazione", - "Sharing" : "Condivisione", - "Server-side encryption" : "Cifratura lato server", - "External Storage" : "Archiviazione esterna", - "Cron" : "Cron", - "Email server" : "Server di posta", - "Log" : "Log", - "Tips & tricks" : "Suggerimenti e trucchi", - "Updates" : "Aggiornamenti", - "Couldn't remove app." : "Impossibile rimuovere l'applicazione.", - "Language changed" : "Lingua modificata", - "Invalid request" : "Richiesta non valida", - "Authentication error" : "Errore di autenticazione", - "Admins can't remove themself from the admin group" : "Gli amministratori non possono rimuovere se stessi dal gruppo di amministrazione", - "Unable to add user to group %s" : "Impossibile aggiungere l'utente al gruppo %s", - "Unable to remove user from group %s" : "Impossibile rimuovere l'utente dal gruppo %s", - "Couldn't update app." : "Impossibile aggiornate l'applicazione.", - "Wrong password" : "Password errata", - "No user supplied" : "Non è stato fornito alcun utente", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Fornisci una password amministrativa di ripristino altrimenti tutti i dati degli utenti saranno persi.", - "Wrong admin recovery password. Please check the password and try again." : "Password amministrativa di ripristino errata. Controlla la password e prova ancora.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Il motore non supporta la modifica della password, ma la chiave di cifratura dell'utente è stata aggiornata correttamente.", - "Unable to change password" : "Impossibile cambiare la password", - "Enabled" : "Abilitata", - "Not enabled" : "Non abilitata", - "installing and updating apps via the app store or Federated Cloud Sharing" : "installazione e aggiornamento delle applicazioni tramite il negozio delle applicazioni o condivisione cloud federata", - "Federated Cloud Sharing" : "Condivisione cloud federata", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL utilizza una versione %s datata (%s). Aggiorna il tuo sistema operativo o funzionalità come %s non funzioneranno correttamente.", - "A problem occurred, please check your log files (Error: %s)" : "Si è verificato un problema, controlla i tuoi file di log (Errore: %s)", - "Migration Completed" : "Migrazione completata", - "Group already exists." : "Il gruppo esiste già.", - "Unable to add group." : "Impossibile aggiungere il gruppo.", - "Unable to delete group." : "Impossibile eliminare il gruppo.", - "log-level out of allowed range" : "livello di log fuori dall'intervallo consentito", - "Saved" : "Salvato", - "test email settings" : "prova impostazioni email", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Si è verificato un problema durante l'invio dell'email. Controlla le tue impostazioni. (Errore: %s)", - "Email sent" : "Email inviata", - "You need to set your user email before being able to send test emails." : "Devi impostare l'indirizzo del tuo utente prima di poter provare l'invio delle email.", - "Invalid mail address" : "Indirizzo email non valido", - "A user with that name already exists." : "Un utente con quel nome esiste già.", - "Unable to create user." : "Impossibile creare l'utente.", - "Your %s account was created" : "Il tuo account %s è stato creato", - "Unable to delete user." : "Impossibile eliminare l'utente.", - "Forbidden" : "Vietato", - "Invalid user" : "Utente non valido", - "Unable to change mail address" : "Impossibile cambiare l'indirizzo di posta", - "Email saved" : "Email salvata", - "Your full name has been changed." : "Il tuo nome completo è stato cambiato.", - "Unable to change full name" : "Impossibile cambiare il nome completo", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Sei sicuro di voler aggiungere \"{domain}\" come dominio attendibile?", - "Add trusted domain" : "Aggiungi dominio attendibile", - "Migration in progress. Please wait until the migration is finished" : "Migrazione in corso. Attendi fino al completamento della migrazione", - "Migration started …" : "Migrazione avviata...", - "Sending..." : "Invio in corso...", - "Official" : "Ufficiale", - "Approved" : "Approvata", - "Experimental" : "Sperimentale", - "All" : "Tutti", - "No apps found for your version" : "Nessuna applicazione trovata per la tua versione", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Le applicazioni ufficiali sono sviluppate da e con la comunità di ownCloud. Offrono le funzioni fondamentali di ownCloud e sono pronte per l'utilizzo in produzione.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Le applicazioni approvate sono sviluppate da sviluppatori affidabili e hanno passato un rapido controllo di sicurezza. Sono attivamente mantenute in un deposito aperto del codice e i loro responsabili le ritengono pronte sia per un utilizzo casuale che per un utilizzo continuativo.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Questa applicazione non è stata sottoposta a controlli di sicurezza, è nuova o notoriamente instabile. Installala a tuo rischio.", - "Update to %s" : "Aggiornato a %s", - "_You have %n app update pending_::_You have %n app updates pending_" : ["Hai %n aggiornamento di applicazione in corso","Hai %n aggiornamenti di applicazione in corso"], - "Please wait...." : "Attendere...", - "Error while disabling app" : "Errore durante la disattivazione", - "Disable" : "Disabilita", - "Enable" : "Abilita", - "Error while enabling app" : "Errore durante l'attivazione", - "Error: this app cannot be enabled because it makes the server unstable" : "Errore: questa applicazione non può essere abilitata perché rende il server instabile", - "Error: could not disable broken app" : "Errore: impossibile disabilitare l'applicazione danneggiata", - "Error while disabling broken app" : "Errore durante la disabilitazione dell'applicazione danneggiata", - "Updating...." : "Aggiornamento in corso...", - "Error while updating app" : "Errore durante l'aggiornamento", - "Updated" : "Aggiornato", - "Uninstalling ...." : "Disinstallazione...", - "Error while uninstalling app" : "Errore durante la disinstallazione dell'applicazione", - "Uninstall" : "Disinstalla", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "L'applicazione è stata abilitata, ma deve essere aggiornata. Sarai rediretto alla pagina di aggiornamento in 5 secondi.", - "App update" : "Aggiornamento applicazione", - "No apps found for {query}" : "Nessuna applicazione trovata per {query}", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Si è verificato un errore. Carica un certificato PEM codificato in ASCII.", - "Valid until {date}" : "Valido fino al {date}", - "Delete" : "Elimina", - "An error occurred: {message}" : "Si è verificato un errore: {message}", - "Select a profile picture" : "Seleziona un'immagine del profilo", - "Very weak password" : "Password molto debole", - "Weak password" : "Password debole", - "So-so password" : "Password così-così", - "Good password" : "Password buona", - "Strong password" : "Password forte", - "Groups" : "Gruppi", - "Unable to delete {objName}" : "Impossibile eliminare {objName}", - "Error creating group: {message}" : "Errore durante la creazione del gruppo: {message}", - "A valid group name must be provided" : "Deve essere fornito un nome valido per il gruppo", - "deleted {groupName}" : "{groupName} eliminato", - "undo" : "annulla", - "no group" : "nessun gruppo", - "never" : "mai", - "deleted {userName}" : "{userName} eliminato", - "add group" : "aggiungi gruppo", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Il cambiamento della password causerà una perdita di dati, poiché il ripristino dei dati non è disponibile per questo utente", - "A valid username must be provided" : "Deve essere fornito un nome utente valido", - "Error creating user: {message}" : "Errore durante la creazione dell'utente: {message}", - "A valid password must be provided" : "Deve essere fornita una password valida", - "A valid email must be provided" : "Deve essere fornito un indirizzo email valido", - "__language_name__" : "Italiano", - "Unlimited" : "Illimitata", - "Personal info" : "Informazioni personali", - "Sync clients" : "Client di sincronizzazione", - "Everything (fatal issues, errors, warnings, info, debug)" : "Tutto (problemi gravi, errori, avvisi, informazioni, debug)", - "Info, warnings, errors and fatal issues" : "Informazioni, avvisi, errori e problemi gravi", - "Warnings, errors and fatal issues" : "Avvisi, errori e problemi gravi", - "Errors and fatal issues" : "Errori e problemi gravi", - "Fatal issues only" : "Solo problemi gravi", - "None" : "Nessuno", - "Login" : "Accesso", - "Plain" : "Semplice", - "NT LAN Manager" : "Gestore NT LAN", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "php non sembra essere configurato correttamente per interrogare le variabili d'ambiente di sistema. Il test con getenv(\"PATH\") restituisce solo una risposta vuota.", - "Please check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation documentation ↗</a> for php configuration notes and the php configuration of your server, especially when using php-fpm." : "Controlla la <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentazione di installazione↗</a> per le note di configurazione di php e la configurazione del tuo server, in particolare quando utilizzi php-fpm.", - "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.", - "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.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Il tuo server è in esecuzione su Microsoft Windows. Consigliamo vivamente Linux per un'esperienza utente ottimale.", - "%1$s below version %2$s is installed, for stability and performance reasons we recommend updating to a newer %1$s version." : "La versione di %1$s installata è anteriore alla %2$s, per motivi di stabilità e prestazioni, consigliamo di aggiornare a una versione di %1$s più recente.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Il modulo PHP 'fileinfo' non è presente. Consigliamo vivamente di abilitare questo modulo per ottenere risultati migliori con il rilevamento dei tipi MIME.", - "Transactional file locking is disabled, this might lead to issues with race conditions. Enable 'filelocking.enabled' in config.php to avoid these problems. See the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a> for more information." : "Il blocco del file transazionale è disabilitato, ciò potrebbe comportare problemi di race condition. Abilita 'filelocking.enabled' nel config-php per evitare questi problemi. Vedi la <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentazione ↗</a> per ulteriori informazioni.", - "System locale can not be set to a one which supports UTF-8." : "La localizzazione di sistema non può essere impostata a una che supporta UTF-8.", - "This means that there might be problems with certain characters in file names." : "Ciò significa che potrebbero esserci problemi con alcuni caratteri nei nomi dei file.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Consigliamo vivamente di installare i pacchetti richiesti sul tuo sistema per supportare una delle localizzazioni seguenti: %s.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Se la tua installazione non si trova nella radice del dominio e utilizza il cron di sistema, potrebbero esserci problemi con la generazione degli URL. Per evitare questi problemi, imposta l'opzione \"overwrite.cli.url\" nel file config.php al percorso della radice del sito della tua installazione (Consigliato: \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Non è stato possibile eseguire il job di cron tramite CLI. Sono apparsi i seguenti errori tecnici:", - "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"#log-section\">log</a>." : "Leggi attentamente le <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">guide d'installazione ↗</a>, e controlla gli errori o gli avvisi nel <a href=\"#log-section\">log</a>.", - "All checks passed." : "Tutti i controlli passati.", - "Open documentation" : "Apri la documentazione", - "Allow apps to use the Share API" : "Consenti alle applicazioni di utilizzare le API di condivisione", - "Allow users to share via link" : "Consenti agli utenti di condividere 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", - "Allow sharing with groups" : "Consentì la condivisione con gruppi", - "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 to other users" : "Consenti agli utenti di inviare email di notifica per i file condivisi con altri utenti", - "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.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Consenti il completamento del nome utente nella finestra di condivisione. Se è disabilitata, è necessario digitare il nome utente completo.", - "Last cron job execution: %s." : "Ultima esecuzione di cron: %s.", - "Last cron job execution: %s. Something seems wrong." : "Ultima esecuzione di cron: %s. Potrebbe esserci un problema.", - "Cron was not executed yet!" : "Cron non è stato ancora eseguito!", - "Execute one task with each page loaded" : "Esegui un'operazione con ogni pagina caricata", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php è registrato su un servizio webcron per invocare cron.php ogni 15 minuti su http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Usa il servizio cron di sistema per invocare il file cron.php ogni 15 minuti.", - "Enable server-side encryption" : "Abilita cifratura lato server", - "Please read carefully before activating server-side encryption: " : "Leggi attentamente prima di attivare la cifratura lato server:", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "Quando la cifratura è abilitata, tutti i file caricati sul server da quel momento in poi saranno cifrati sul server. Sarà possibile solo disabilitare successivamente la cifratura se il modulo di cifratura attivo lo consente, e se tutti i prerequisiti (ad es. l'impostazione di una chiave di recupero) sono verificati.", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "La sola cifratura non garantisce la sicurezza del sistema. Vedi la documentazione di ownCloud per ulteriori informazioni su come funziona l'applicazione di cifratura, e per i casi d'uso supportati.", - "Be aware that encryption always increases the file size." : "Considera che la cifratura incrementa sempre la dimensione dei file.", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "Ti consigliamo di creare copie di sicurezza dei tuoi dati con regolarità, in caso di utilizzo della cifratura, assicurati di creare una copia delle chiavi di cifratura insieme ai tuoi dati.", - "This is the final warning: Do you really want to enable encryption?" : "Questo è l'ultimo avviso: vuoi davvero abilitare la cifratura?", - "Enable encryption" : "Abilita cifratura", - "No encryption module loaded, please enable an encryption module in the app menu." : "Nessun modulo di cifratura caricato, carica un modulo di cifratura nel menu delle applicazioni.", - "Select default encryption module:" : "Seleziona il modulo di cifratura predefinito:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Devi migrare le tue chiavi di cifratura dalla vecchia cifratura (ownCloud <= 8.0) alla nuova. Abilita il \"Modulo di cifratura predefinito\" ed esegui 'occ encryption:migrate'", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Devi migrare le tue chiavi di cifratura dalla vecchia cifratura (ownCloud <= 8.0) alla nuova.", - "Start migration" : "Avvia migrazione", - "This is used for sending out notifications." : "Viene utilizzato per inviare le notifiche.", - "Send mode" : "Modalità di invio", - "Encryption" : "Cifratura", - "From address" : "Indirizzo mittente", - "mail" : "posta", - "Authentication method" : "Metodo di autenticazione", - "Authentication required" : "Autenticazione richiesta", - "Server address" : "Indirizzo del server", - "Port" : "Porta", - "Credentials" : "Credenziali", - "SMTP Username" : "Nome utente SMTP", - "SMTP Password" : "Password SMTP", - "Store credentials" : "Memorizza le credenziali", - "Test email settings" : "Prova impostazioni email", - "Send email" : "Invia email", - "Download logfile" : "Scarica file di log", - "More" : "Altro", - "Less" : "Meno", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Il file di log è più grande di 100MB. Scaricarlo potrebbe richiedere del tempo!", - "What to log" : "Cosa registrare", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite è utilizzato come database. Per installazioni più grandi consigliamo di passare a un motore di database diverso.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "In particolar modo, quando si utilizza il client desktop per la sincronizzazione dei file, l'uso di SQLite è sconsigliato.", - "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a>." : "Per migrare a un altro database, usa lo strumento da riga di comando: 'occ db:convert-type', o leggi la <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentazione ↗</a>.", - "How to do backups" : "Come creare delle copie di sicurezza", - "Advanced monitoring" : "Monitoraggio avanzato", - "Performance tuning" : "Ottimizzazione delle prestazioni", - "Improving the config.php" : "Ottimizzare il config.php", - "Theming" : "Temi", - "Hardening and security guidance" : "Guida alla messa in sicurezza", - "Version" : "Versione", - "Developer documentation" : "Documentazione dello sviluppatore", - "Experimental applications ahead" : "Prima le applicazioni sperimentali", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Le applicazioni sperimentali non sono sottoposte a controlli di sicurezza, sono nuove o notoriamente instabili e sotto sviluppo intensivo. La loro installazione può causare perdite di dati o problemi di sicurezza.", - "by %s" : "di %s", - "%s-licensed" : "sotto licenza %s", - "Documentation:" : "Documentazione:", - "User documentation" : "Documentazione utente", - "Admin documentation" : "Documentazione di amministrazione", - "Show description …" : "Mostra descrizione...", - "Hide description …" : "Nascondi descrizione...", - "This app has an update available." : "Un aggiornamento di questa applicazione è disponibile.", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Questa applicazione non ha una versione minima di ownCloud assegnata. Ciò costituirà un errore in ownCloud 11 e successive.", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Questa applicazione non ha una versione massima di ownCloud assegnata. Ciò costituirà un errore in ownCloud 11 e successive.", - "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:", - "Enable only for specific groups" : "Abilita solo per gruppi specifici", - "Uninstall App" : "Disinstalla applicazione", - "Enable experimental apps" : "Abilita le applicazioni sperimentali", - "SSL Root Certificates" : "Certificati radice SSL", - "Common Name" : "Nome comune", - "Valid until" : "Valido fino al", - "Issued By" : "Emesso da", - "Valid until %s" : "Valido fino al %s", - "Import root certificate" : "Importa certificato radice", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Ciao,<br><br>volevo informarti che ora hai un account %s.<br><br>Il tuo nome utente: %s<br>Accedi: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Saluti!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Ciao,\n\nvolevo informarti che ora hai un account %s.\n\nIl tuo nome utente: %s\nAccedi: %s\n\n", - "Administrator documentation" : "Documentazione amministratore", - "Online documentation" : "Documentazione in linea", - "Forum" : "Forum", - "Issue tracker" : "Sistema di tracciamento dei problemi", - "Commercial support" : "Supporto commerciale", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "Stai utilizzando <strong>%s</strong> di <strong>%s</strong>", - "Profile picture" : "Immagine del profilo", - "Upload new" : "Carica nuova", - "Select from Files" : "Seleziona da file", - "Remove image" : "Rimuovi immagine", - "png or jpg, max. 20 MB" : "png o jpg, max. 20 MB", - "Picture provided by original account" : "Immagine fornita dall'account originale", - "Cancel" : "Annulla", - "Choose as profile picture" : "Scegli come immagine del profilo", - "Full name" : "Nome completo", - "No display name set" : "Nome visualizzato non impostato", - "Email" : "Posta elettronica", - "Your email address" : "Il tuo indirizzo email", - "For password recovery and notifications" : "Per il ripristino della password e per le notifiche", - "No email address set" : "Nessun indirizzo email impostato", - "You are member of the following groups:" : "Sei membro dei seguenti gruppi:", - "Password" : "Password", - "Unable to change your password" : "Modifica password non riuscita", - "Current password" : "Password attuale", - "New password" : "Nuova password", - "Change password" : "Modifica password", - "Language" : "Lingua", - "Help translate" : "Migliora la traduzione", - "Get the apps to sync your files" : "Scarica le applicazioni per sincronizzare i tuoi file", - "Desktop client" : "Client desktop", - "Android app" : "Applicazione Android", - "iOS app" : "Applicazione iOS", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Se vuoi supportare il progetto\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">diventa uno sviluppatore</a>\n\t\to\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">diffondi il verbo</a>!", - "Show First Run Wizard again" : "Mostra nuovamente la procedura di primo avvio", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Sviluppato dalla {communityopen}comunità di ownCloud{linkclose}, il {githubopen}codice sorgente{linkclose} è rilasciato nei termini della licenza {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}.", - "Show storage location" : "Mostra posizione di archiviazione", - "Show last log in" : "Mostra ultimo accesso", - "Show user backend" : "Mostra il motore utente", - "Send email to new user" : "Invia email al nuovo utente", - "Show email address" : "Mostra l'indirizzo email", - "Username" : "Nome utente", - "E-Mail" : "Posta elettronica", - "Create" : "Crea", - "Admin Recovery Password" : "Password di ripristino amministrativa", - "Enter the recovery password in order to recover the users files during password change" : "Digita la password di ripristino per recuperare i file degli utenti durante la modifica della password.", - "Add Group" : "Aggiungi gruppo", - "Group" : "Gruppo", - "Everyone" : "Chiunque", - "Admins" : "Amministratori", - "Default Quota" : "Quota predefinita", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Digita la quota di archiviazione (ad es.: \"512 MB\" or \"12 GB\")", - "Other" : "Altro", - "Full Name" : "Nome completo", - "Group Admin for" : "Gruppo di amministrazione per", - "Quota" : "Quote", - "Storage Location" : "Posizione di archiviazione", - "User Backend" : "Motore utente", - "Last Login" : "Ultimo accesso", - "change full name" : "modica nome completo", - "set new password" : "imposta una nuova password", - "change email address" : "cambia l'indirizzo email", - "Default" : "Predefinito" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/ja.js b/settings/l10n/ja.js deleted file mode 100644 index a559d922f7e..00000000000 --- a/settings/l10n/ja.js +++ /dev/null @@ -1,290 +0,0 @@ -OC.L10N.register( - "settings", - { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "セキュリティ&セットアップ警告", - "Sharing" : "共有", - "Server-side encryption" : "サーバーサイド暗号化", - "External Storage" : "外部ストレージ", - "Cron" : "Cron", - "Email server" : "メールサーバー", - "Log" : "ログ", - "Tips & tricks" : "ヒントとコツ", - "Updates" : "アップデート", - "Couldn't remove app." : "アプリが削除できませんでした。", - "Language changed" : "言語が変更されました", - "Invalid request" : "不正なリクエスト", - "Authentication error" : "認証エラー", - "Admins can't remove themself from the admin group" : "管理者は自身を管理者グループから削除できません。", - "Unable to add user to group %s" : "ユーザーをグループ %s に追加できません", - "Unable to remove user from group %s" : "ユーザーをグループ %s から削除できません", - "Couldn't update app." : "アプリをアップデートできませんでした。", - "Wrong password" : "パスワードが間違っています", - "No user supplied" : "ユーザーが指定されていません", - "Please provide an admin recovery password, otherwise all user data will be lost" : "リカバリ用の管理者パスワードを入力してください。そうでない場合は、全ユーザーのデータが失われます。", - "Wrong admin recovery password. Please check the password and try again." : "リカバリ用の管理者パスワードが間違っています。パスワードを確認して再度実行してください。", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "バックエンドはパスワードの変更をサポートしていませんが、ユーザーの暗号化キーは正常に更新されました。", - "Unable to change password" : "パスワードを変更できません", - "Enabled" : "有効なアプリ", - "Not enabled" : "無効なアプリ", - "installing and updating apps via the app store or Federated Cloud Sharing" : "アプリストア または クラウド連携共有からアプリをインストール もしくはアップデート", - "Federated Cloud Sharing" : "統合されたクラウド共有", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "%s バージョン (%s) の古い cURL を使っています。OSを更新するか、この機能 %s が正しく動くアプリに更新してください。", - "A problem occurred, please check your log files (Error: %s)" : "問題が発生しました。ログファイルを確認してください。(Error: %s)", - "Migration Completed" : "移行が完了しました", - "Group already exists." : "グループはすでに存在しています", - "Unable to add group." : "グループを追加できません", - "Unable to delete group." : "グループを削除できません", - "log-level out of allowed range" : "ログレベルが許可された範囲を超えています", - "Saved" : "保存されました", - "test email settings" : "メール設定のテスト", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "メールの送信中に問題が発生しました。設定を確認してください。 (Error: %s)", - "Email sent" : "メールを送信しました", - "You need to set your user email before being able to send test emails." : "ユーザーメールを設定して初めて、テストメールを送信することができるようになります。", - "Invalid mail address" : "無効なメールアドレスです", - "A user with that name already exists." : "そのユーザー名はすでに存在します。", - "Unable to create user." : "ユーザーを追加できません。", - "Your %s account was created" : "アカウント %s を作成しました", - "Unable to delete user." : "ユーザーを削除できません。", - "Forbidden" : "禁止", - "Invalid user" : "無効なユーザー", - "Unable to change mail address" : "メールアドレスを変更できません", - "Email saved" : "メールアドレスを保存しました", - "Your full name has been changed." : "名前を変更しました。", - "Unable to change full name" : "名前を変更できません", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "\"{domain}\" を信頼するドメインに追加してもよろしいでしょうか?", - "Add trusted domain" : "信頼するドメイン名に追加", - "Migration in progress. Please wait until the migration is finished" : "移行の処理中です。移行が完了するまでお待ちください。", - "Migration started …" : "移行を開始しました…", - "Sending..." : "送信中…", - "Official" : "公式", - "Approved" : "承認済み", - "Experimental" : "実験的", - "All" : "すべて", - "No apps found for your version" : "現在のバージョンに対応するアプリはありません", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "公式アプリは ownCloud コミュニティにより開発されています。コミュニティは ownCloud の中心機能を提供し、製品としての使用の準備ができています。", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "承認されたアプリは信頼された開発者により開発され、大まかなセキュリティチェックに合格しています。アプリは積極的にオープンソースコードレポジトリでメンテナンスされ、メンテナは通常の用途では安定していると考えます。", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "このアプリはセキュリティチェックされていません、新規アプリか安定性が確認されていないアプリです。自己責任でインストールしてください。", - "Update to %s" : "%sにアップデート", - "_You have %n app update pending_::_You have %n app updates pending_" : ["%n 個のアプリのアップデートを保留中"], - "Please wait...." : "しばらくお待ちください...", - "Error while disabling app" : "アプリ無効化中にエラーが発生", - "Disable" : "無効", - "Enable" : "有効にする", - "Error while enabling app" : "アプリを有効にする際にエラーが発生", - "Updating...." : "更新中....", - "Error while updating app" : "アプリの更新中にエラーが発生", - "Updated" : "アップデート済み", - "Uninstalling ...." : "アンインストール中 ....", - "Error while uninstalling app" : "アプリをアンインストール中にエラーが発生", - "Uninstall" : "アンインストール", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "アプリは有効ですが、更新が必要です。5秒後に更新ページにリダイレクトします。", - "App update" : "アプリのアップデート", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "エラーが発生しました。ASCIIコードのPEM証明書をアップロードしてください。", - "Valid until {date}" : "{date} まで有効", - "Delete" : "削除", - "An error occurred: {message}" : "エラーが発生しました: {message}", - "Select a profile picture" : "プロファイル画像を選択", - "Very weak password" : "非常に弱いパスワード", - "Weak password" : "弱いパスワード", - "So-so password" : "まずまずのパスワード", - "Good password" : "良好なパスワード", - "Strong password" : "強いパスワード", - "Groups" : "グループ", - "Unable to delete {objName}" : "{objName} を削除できません", - "Error creating group: {message}" : "グループの作成エラー: {message}", - "A valid group name must be provided" : "有効なグループ名を指定する必要があります", - "deleted {groupName}" : "{groupName} を削除しました", - "undo" : "元に戻す", - "no group" : "未グループ", - "never" : "なし", - "deleted {userName}" : "{userName} を削除しました", - "add group" : "グループを追加", - "Changing the password will result in data loss, because data recovery is not available for this user" : "このユーザーのデータ復旧が無効になっていますので、パスワードを変更するとユーザーはデータに二度とアクセスできません。", - "A valid username must be provided" : "有効なユーザー名を指定する必要があります", - "Error creating user: {message}" : "ユーザ作成エラー {message}", - "A valid password must be provided" : "有効なパスワードを指定する必要があります", - "A valid email must be provided" : "有効なメールアドレスを指定する必要があります", - "__language_name__" : "Japanese (日本語)", - "Unlimited" : "無制限", - "Personal info" : "個人情報", - "Sync clients" : "同期用クライアント", - "Everything (fatal issues, errors, warnings, info, debug)" : "すべて (致命的な問題、エラー、警告、情報、デバッグ)", - "Info, warnings, errors and fatal issues" : "情報、警告、エラー、致命的な問題", - "Warnings, errors and fatal issues" : "警告、エラー、致命的な問題", - "Errors and fatal issues" : "エラー、致命的な問題", - "Fatal issues only" : "致命的な問題のみ", - "None" : "なし", - "Login" : "ログイン", - "Plain" : "平文", - "NT LAN Manager" : "NT LAN マネージャー", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "PHPのシステム環境変数が正しく設定されていないようです。getenv(\"PATH\") コマンドでテストして何も値を返さないことを確認してください。", - "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\"ファイルを書き込み権限を与えることが必要", - "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 等のキャッシュ/アクセラレーターが原因かもしれません。", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "サーバーがMicrosoft Windowsで動いています。ユーザーに最適なサービスを提供するためには、Linuxを利用することを強くお勧めします。", - "%1$s below version %2$s is installed, for stability and performance reasons we recommend updating to a newer %1$s version." : "%2$s よりも古いバージョンの %1$s がインストールされています。安定した稼働とパフォーマンスの観点から、新しいバージョンの %1$s にアップデートすることをお勧めします。", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP のモジュール 'fileinfo' が見つかりません。mimeタイプの検出を精度良く行うために、このモジュールを有効にすることを強くお勧めします。", - "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。", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "URLがドメインのルート(/)で終わっていない場合で、システムのcronを利用している場合は、URLの生成に問題が発生します。その場合は、config.php ファイルの中の \"overwrite.cli.url\" オプションをインストールしたwebrootのパスに設定してください。(推奨: \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "CLI から cronジョブを実行することができませんでした。次の技術的なエラーが発生しています:", - "All checks passed." : "すべてのチェックに合格しました。", - "Open documentation" : "ドキュメントを開く", - "Allow apps to use the Share API" : "アプリからの共有APIの利用を許可する", - "Allow users to share via link" : "URLリンクでの共有を許可する", - "Enforce password protection" : "常にパスワード保護を有効にする", - "Allow public uploads" : "パブリックなアップロードを許可する", - "Allow users to send mail notification for shared files" : "共有ファイルに関するメール通知の送信をユーザーに許可する", - "Set default expiration date" : "有効期限のデフォルト値を設定する", - "Expire after " : "無効になるまで", - "days" : "日", - "Enforce expiration date" : "有効期限を反映させる", - "Allow resharing" : "再共有を許可する", - "Restrict users to only share with users in their groups" : "グループ内のユーザーでのみ共有するように制限する", - "Allow users to send mail notification for shared files to other users" : "他ユーザーへの共有ファイルに関するメール通知の送信をユーザーに許可する", - "Exclude groups from sharing" : "共有可能なグループから除外する", - "These groups will still be able to receive shares, but not to initiate them." : "このグループでは、フォルダー共有を開始することはできませんが、共有されたフォルダーを参照することはできます。", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "共有ダイアログでのユーザー名の自動補完を有効にする。このチェックを無効にした場合は、完全なユーザー名を入力する必要があります。", - "Last cron job execution: %s." : "最終cronジョブ実行: %s", - "Last cron job execution: %s. Something seems wrong." : "最終cronジョブ実行: %s 何らかの問題があります。", - "Cron was not executed yet!" : "cronはまだ実行されていません!", - "Execute one task with each page loaded" : "各ページの読み込み時にタスクを実行します。", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.phpは、HTTP経由で15分ごとにcron.phpを実行するようwebcronサービスに登録されます。", - "Use system's cron service to call the cron.php file every 15 minutes." : "システムのcronサービスを利用して、15分間隔でcron.phpファイルを実行します。", - "Enable server-side encryption" : "サーバーサイド暗号化を有効にする", - "Please read carefully before activating server-side encryption: " : "サーバーサイド暗号化を有効にする前によくお読みください:", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "暗号化を一度有効化すると、この時点からサーバーにアップロードされるファイルの全てが暗号化されサーバー上に入ります。有効化された暗号モジュールは復号化機能をサポートしますが、すべての前提条件が満たされている(例えば、回復キーが設定されている)場合にのみ、後日暗号化を無効にすることが可能です。", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "暗号化だけでは、システムのセキュリティを保証するものではありません。暗号化アプリがどのように動作するかの詳細について、およびサポートされているユースケースについてはownCloudのドキュメントを参照してください。", - "Be aware that encryption always increases the file size." : "暗号化は、常にファイルサイズが増加することに注意してください。", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "暗号化した場合には必ず、あなたのデータと共に暗号化キーをバックアップすることを確認し、定期的にデータをバックアップを作成することをお勧めします。", - "This is the final warning: Do you really want to enable encryption?" : "これが最後の警告です:本当に暗号化を有効にしますか?", - "Enable encryption" : "暗号化を有効に", - "No encryption module loaded, please enable an encryption module in the app menu." : "暗号化モジュールがロードされていません。アプリのメニューから暗号化モジュールを有効化してください。", - "Select default encryption module:" : "デフォルトの暗号化モジュールを選択:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "古い暗号化(ownCloud <= 8.0) から新しいものに暗号化キーを移行する必要があります。\"デフォルトの暗号化モジュール\" を有効にして 'occ encryption:migrate' を実行してください。", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "古い暗号化(ownCloud <= 8.0) から新しいものに暗号化キーを移行する必要があります。", - "Start migration" : "移行を開始", - "This is used for sending out notifications." : "通知を送信する際に使用します。", - "Send mode" : "送信モード", - "Encryption" : "暗号化", - "From address" : "送信元アドレス", - "mail" : "mail", - "Authentication method" : "認証方法", - "Authentication required" : "認証を必要とする", - "Server address" : "サーバーアドレス", - "Port" : "ポート", - "Credentials" : "資格情報", - "SMTP Username" : "SMTPユーザー名", - "SMTP Password" : "SMTP パスワード", - "Store credentials" : "資格情報を保存", - "Test email settings" : "メール設定のテスト", - "Send email" : "メールを送信", - "Download logfile" : "ログファイルのダウンロード", - "More" : "もっと見る", - "Less" : "閉じる", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "ログファイルが100MB以上あります。ダウンロードに時間がかかります!", - "What to log" : "ログ出力対象", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLiteがデータベースとして使用されています。大規模な運用では別のデータベースに切り替えることをお勧めします。", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "特にデスクトップクライアントをファイル同期に使用する場合,SQLiteは非推奨です.", - "How to do backups" : "バックアップ方法", - "Advanced monitoring" : "詳細モニタリング", - "Performance tuning" : "パフォーマンスチューニング", - "Improving the config.php" : "config.phpの改善", - "Theming" : "テーマ", - "Hardening and security guidance" : "堅牢化とセキュリティガイダンス", - "Version" : "バージョン", - "Developer documentation" : "開発者ドキュメント", - "Experimental applications ahead" : "実験的なアプリケーションを試す", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "実験的なアプリは、脆弱性についてチェックされていませんし、不安定であったり、激しく開発中です。それらをインストールすると、データの損失やセキュリティ侵害を引き起こす可能性があります。", - "by %s" : "%s による", - "%s-licensed" : "%s ライセンス", - "Documentation:" : "ドキュメント:", - "User documentation" : "ユーザードキュメント", - "Admin documentation" : "管理者ドキュメント", - "Show description …" : "説明を表示 ...", - "Hide description …" : "説明を隠す ...", - "This app has an update available." : "このアプリでアップデートが利用できます.", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "このアプリはownCloudの最小バージョンが指定されていません.ownCloud 11 以降でエラーが発生する可能性があります.", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "このアプリはownCloudの最大バージョンが指定されていません.ownCloud 11 以降でエラーが発生する可能性があります.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "次の依存関係が満たされないためこのアプリをインストールできません:", - "Enable only for specific groups" : "特定のグループのみ有効に", - "Uninstall App" : "アプリをアンインストール", - "Enable experimental apps" : "実験的なアプリを有効にする", - "SSL Root Certificates" : "SSLルート証明書", - "Common Name" : "コモンネーム", - "Valid until" : "有効期限", - "Issued By" : "発行元", - "Valid until %s" : "%s まで有効", - "Import root certificate" : "ルート証明書をインポート", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "こんにちは、<br><br>あなたのアカウント %s が利用可能になったことをお知らせします。<br><br>ユーザー名: %s<br>以下のURLからアクセス: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "それでは!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "こんにちは、\n\nあなたのアカウント %s が利用可能になったことをお知らせします。\n\nユーザー名: %s\n接続URL: %s\n\n", - "Administrator documentation" : "管理者ドキュメント", - "Online documentation" : "オンラインドキュメント", - "Forum" : "フォーラム", - "Issue tracker" : "イシュートラッカー", - "Commercial support" : "商用サポート", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "<strong>%s</strong> / <strong>%s</strong> が現在使用中です", - "Profile picture" : "プロフィール画像", - "Upload new" : "新たにアップロード", - "Select from Files" : "ファイルから選択", - "Remove image" : "画像を削除", - "png or jpg, max. 20 MB" : "png もしくは jpg, 最大.20MB", - "Picture provided by original account" : "オリジナルのアカウントで提供されている写真", - "Cancel" : "キャンセル", - "Choose as profile picture" : "プロファイル画像として選択", - "Full name" : "氏名", - "No display name set" : "表示名が未設定", - "Email" : "メール", - "Your email address" : "あなたのメールアドレス", - "For password recovery and notifications" : "パスワード回復と通知用", - "No email address set" : "メールアドレスが設定されていません", - "You are member of the following groups:" : "以下のグループのメンバーです:", - "Password" : "パスワード", - "Unable to change your password" : "パスワードを変更することができません", - "Current password" : "現在のパスワード", - "New password" : "新しいパスワード", - "Change password" : "パスワードを変更", - "Language" : "言語", - "Help translate" : "翻訳に協力する", - "Get the apps to sync your files" : "ファイルを同期するアプリを取得しましょう", - "Desktop client" : "デスクトップクライアント", - "Android app" : "Androidアプリ", - "iOS app" : "iOSアプリ", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "プロジェクトをサポートしていただける場合は、\n<a href=\"https://owncloud.org/contribute\"\ntarget=\"_blank\">開発に参加する</a>か、\n<a href=\"https://owncloud.org/promote\"\ntarget=\"_blank\">プロジェクトを広く伝えてください</a>!", - "Show First Run Wizard again" : "初回ウィザードを再表示する", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : " {communityopen}ownCloud community{linkclose} によって開発されています。{githubopen}ソースコード{linkclose} は {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose} によってライセンスされます。", - "Show storage location" : "データの保存場所を表示", - "Show last log in" : "最終ログインを表示", - "Show user backend" : "ユーザーバックエンドを表示", - "Send email to new user" : "新規ユーザーにメールを送信", - "Show email address" : "メールアドレスを表示", - "Username" : "ユーザーID", - "E-Mail" : "メール", - "Create" : "作成", - "Admin Recovery Password" : "管理者リカバリパスワード", - "Enter the recovery password in order to recover the users files during password change" : "パスワード変更時のユーザーのファイルを回復するため、リカバリパスワードを入力してください", - "Add Group" : "グループを追加", - "Group" : "グループ", - "Everyone" : "すべてのユーザー", - "Admins" : "管理者", - "Default Quota" : "デフォルトのクォータサイズ", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "ストレージのクォータを入力してください (例: \"512MB\" や \"12 GB\")", - "Other" : "その他", - "Full Name" : "名前", - "Group Admin for" : "グループ管理者", - "Quota" : "クオータ", - "Storage Location" : "データの保存場所", - "User Backend" : "ユーザーバックエンド", - "Last Login" : "最終ログイン", - "change full name" : "名前を変更", - "set new password" : "新しいパスワードを設定", - "change email address" : "メールアドレスを変更", - "Default" : "デフォルト" -}, -"nplurals=1; plural=0;"); diff --git a/settings/l10n/ja.json b/settings/l10n/ja.json deleted file mode 100644 index 260b76300b3..00000000000 --- a/settings/l10n/ja.json +++ /dev/null @@ -1,288 +0,0 @@ -{ "translations": { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "セキュリティ&セットアップ警告", - "Sharing" : "共有", - "Server-side encryption" : "サーバーサイド暗号化", - "External Storage" : "外部ストレージ", - "Cron" : "Cron", - "Email server" : "メールサーバー", - "Log" : "ログ", - "Tips & tricks" : "ヒントとコツ", - "Updates" : "アップデート", - "Couldn't remove app." : "アプリが削除できませんでした。", - "Language changed" : "言語が変更されました", - "Invalid request" : "不正なリクエスト", - "Authentication error" : "認証エラー", - "Admins can't remove themself from the admin group" : "管理者は自身を管理者グループから削除できません。", - "Unable to add user to group %s" : "ユーザーをグループ %s に追加できません", - "Unable to remove user from group %s" : "ユーザーをグループ %s から削除できません", - "Couldn't update app." : "アプリをアップデートできませんでした。", - "Wrong password" : "パスワードが間違っています", - "No user supplied" : "ユーザーが指定されていません", - "Please provide an admin recovery password, otherwise all user data will be lost" : "リカバリ用の管理者パスワードを入力してください。そうでない場合は、全ユーザーのデータが失われます。", - "Wrong admin recovery password. Please check the password and try again." : "リカバリ用の管理者パスワードが間違っています。パスワードを確認して再度実行してください。", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "バックエンドはパスワードの変更をサポートしていませんが、ユーザーの暗号化キーは正常に更新されました。", - "Unable to change password" : "パスワードを変更できません", - "Enabled" : "有効なアプリ", - "Not enabled" : "無効なアプリ", - "installing and updating apps via the app store or Federated Cloud Sharing" : "アプリストア または クラウド連携共有からアプリをインストール もしくはアップデート", - "Federated Cloud Sharing" : "統合されたクラウド共有", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "%s バージョン (%s) の古い cURL を使っています。OSを更新するか、この機能 %s が正しく動くアプリに更新してください。", - "A problem occurred, please check your log files (Error: %s)" : "問題が発生しました。ログファイルを確認してください。(Error: %s)", - "Migration Completed" : "移行が完了しました", - "Group already exists." : "グループはすでに存在しています", - "Unable to add group." : "グループを追加できません", - "Unable to delete group." : "グループを削除できません", - "log-level out of allowed range" : "ログレベルが許可された範囲を超えています", - "Saved" : "保存されました", - "test email settings" : "メール設定のテスト", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "メールの送信中に問題が発生しました。設定を確認してください。 (Error: %s)", - "Email sent" : "メールを送信しました", - "You need to set your user email before being able to send test emails." : "ユーザーメールを設定して初めて、テストメールを送信することができるようになります。", - "Invalid mail address" : "無効なメールアドレスです", - "A user with that name already exists." : "そのユーザー名はすでに存在します。", - "Unable to create user." : "ユーザーを追加できません。", - "Your %s account was created" : "アカウント %s を作成しました", - "Unable to delete user." : "ユーザーを削除できません。", - "Forbidden" : "禁止", - "Invalid user" : "無効なユーザー", - "Unable to change mail address" : "メールアドレスを変更できません", - "Email saved" : "メールアドレスを保存しました", - "Your full name has been changed." : "名前を変更しました。", - "Unable to change full name" : "名前を変更できません", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "\"{domain}\" を信頼するドメインに追加してもよろしいでしょうか?", - "Add trusted domain" : "信頼するドメイン名に追加", - "Migration in progress. Please wait until the migration is finished" : "移行の処理中です。移行が完了するまでお待ちください。", - "Migration started …" : "移行を開始しました…", - "Sending..." : "送信中…", - "Official" : "公式", - "Approved" : "承認済み", - "Experimental" : "実験的", - "All" : "すべて", - "No apps found for your version" : "現在のバージョンに対応するアプリはありません", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "公式アプリは ownCloud コミュニティにより開発されています。コミュニティは ownCloud の中心機能を提供し、製品としての使用の準備ができています。", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "承認されたアプリは信頼された開発者により開発され、大まかなセキュリティチェックに合格しています。アプリは積極的にオープンソースコードレポジトリでメンテナンスされ、メンテナは通常の用途では安定していると考えます。", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "このアプリはセキュリティチェックされていません、新規アプリか安定性が確認されていないアプリです。自己責任でインストールしてください。", - "Update to %s" : "%sにアップデート", - "_You have %n app update pending_::_You have %n app updates pending_" : ["%n 個のアプリのアップデートを保留中"], - "Please wait...." : "しばらくお待ちください...", - "Error while disabling app" : "アプリ無効化中にエラーが発生", - "Disable" : "無効", - "Enable" : "有効にする", - "Error while enabling app" : "アプリを有効にする際にエラーが発生", - "Updating...." : "更新中....", - "Error while updating app" : "アプリの更新中にエラーが発生", - "Updated" : "アップデート済み", - "Uninstalling ...." : "アンインストール中 ....", - "Error while uninstalling app" : "アプリをアンインストール中にエラーが発生", - "Uninstall" : "アンインストール", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "アプリは有効ですが、更新が必要です。5秒後に更新ページにリダイレクトします。", - "App update" : "アプリのアップデート", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "エラーが発生しました。ASCIIコードのPEM証明書をアップロードしてください。", - "Valid until {date}" : "{date} まで有効", - "Delete" : "削除", - "An error occurred: {message}" : "エラーが発生しました: {message}", - "Select a profile picture" : "プロファイル画像を選択", - "Very weak password" : "非常に弱いパスワード", - "Weak password" : "弱いパスワード", - "So-so password" : "まずまずのパスワード", - "Good password" : "良好なパスワード", - "Strong password" : "強いパスワード", - "Groups" : "グループ", - "Unable to delete {objName}" : "{objName} を削除できません", - "Error creating group: {message}" : "グループの作成エラー: {message}", - "A valid group name must be provided" : "有効なグループ名を指定する必要があります", - "deleted {groupName}" : "{groupName} を削除しました", - "undo" : "元に戻す", - "no group" : "未グループ", - "never" : "なし", - "deleted {userName}" : "{userName} を削除しました", - "add group" : "グループを追加", - "Changing the password will result in data loss, because data recovery is not available for this user" : "このユーザーのデータ復旧が無効になっていますので、パスワードを変更するとユーザーはデータに二度とアクセスできません。", - "A valid username must be provided" : "有効なユーザー名を指定する必要があります", - "Error creating user: {message}" : "ユーザ作成エラー {message}", - "A valid password must be provided" : "有効なパスワードを指定する必要があります", - "A valid email must be provided" : "有効なメールアドレスを指定する必要があります", - "__language_name__" : "Japanese (日本語)", - "Unlimited" : "無制限", - "Personal info" : "個人情報", - "Sync clients" : "同期用クライアント", - "Everything (fatal issues, errors, warnings, info, debug)" : "すべて (致命的な問題、エラー、警告、情報、デバッグ)", - "Info, warnings, errors and fatal issues" : "情報、警告、エラー、致命的な問題", - "Warnings, errors and fatal issues" : "警告、エラー、致命的な問題", - "Errors and fatal issues" : "エラー、致命的な問題", - "Fatal issues only" : "致命的な問題のみ", - "None" : "なし", - "Login" : "ログイン", - "Plain" : "平文", - "NT LAN Manager" : "NT LAN マネージャー", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "PHPのシステム環境変数が正しく設定されていないようです。getenv(\"PATH\") コマンドでテストして何も値を返さないことを確認してください。", - "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\"ファイルを書き込み権限を与えることが必要", - "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 等のキャッシュ/アクセラレーターが原因かもしれません。", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "サーバーがMicrosoft Windowsで動いています。ユーザーに最適なサービスを提供するためには、Linuxを利用することを強くお勧めします。", - "%1$s below version %2$s is installed, for stability and performance reasons we recommend updating to a newer %1$s version." : "%2$s よりも古いバージョンの %1$s がインストールされています。安定した稼働とパフォーマンスの観点から、新しいバージョンの %1$s にアップデートすることをお勧めします。", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP のモジュール 'fileinfo' が見つかりません。mimeタイプの検出を精度良く行うために、このモジュールを有効にすることを強くお勧めします。", - "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。", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "URLがドメインのルート(/)で終わっていない場合で、システムのcronを利用している場合は、URLの生成に問題が発生します。その場合は、config.php ファイルの中の \"overwrite.cli.url\" オプションをインストールしたwebrootのパスに設定してください。(推奨: \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "CLI から cronジョブを実行することができませんでした。次の技術的なエラーが発生しています:", - "All checks passed." : "すべてのチェックに合格しました。", - "Open documentation" : "ドキュメントを開く", - "Allow apps to use the Share API" : "アプリからの共有APIの利用を許可する", - "Allow users to share via link" : "URLリンクでの共有を許可する", - "Enforce password protection" : "常にパスワード保護を有効にする", - "Allow public uploads" : "パブリックなアップロードを許可する", - "Allow users to send mail notification for shared files" : "共有ファイルに関するメール通知の送信をユーザーに許可する", - "Set default expiration date" : "有効期限のデフォルト値を設定する", - "Expire after " : "無効になるまで", - "days" : "日", - "Enforce expiration date" : "有効期限を反映させる", - "Allow resharing" : "再共有を許可する", - "Restrict users to only share with users in their groups" : "グループ内のユーザーでのみ共有するように制限する", - "Allow users to send mail notification for shared files to other users" : "他ユーザーへの共有ファイルに関するメール通知の送信をユーザーに許可する", - "Exclude groups from sharing" : "共有可能なグループから除外する", - "These groups will still be able to receive shares, but not to initiate them." : "このグループでは、フォルダー共有を開始することはできませんが、共有されたフォルダーを参照することはできます。", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "共有ダイアログでのユーザー名の自動補完を有効にする。このチェックを無効にした場合は、完全なユーザー名を入力する必要があります。", - "Last cron job execution: %s." : "最終cronジョブ実行: %s", - "Last cron job execution: %s. Something seems wrong." : "最終cronジョブ実行: %s 何らかの問題があります。", - "Cron was not executed yet!" : "cronはまだ実行されていません!", - "Execute one task with each page loaded" : "各ページの読み込み時にタスクを実行します。", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.phpは、HTTP経由で15分ごとにcron.phpを実行するようwebcronサービスに登録されます。", - "Use system's cron service to call the cron.php file every 15 minutes." : "システムのcronサービスを利用して、15分間隔でcron.phpファイルを実行します。", - "Enable server-side encryption" : "サーバーサイド暗号化を有効にする", - "Please read carefully before activating server-side encryption: " : "サーバーサイド暗号化を有効にする前によくお読みください:", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "暗号化を一度有効化すると、この時点からサーバーにアップロードされるファイルの全てが暗号化されサーバー上に入ります。有効化された暗号モジュールは復号化機能をサポートしますが、すべての前提条件が満たされている(例えば、回復キーが設定されている)場合にのみ、後日暗号化を無効にすることが可能です。", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "暗号化だけでは、システムのセキュリティを保証するものではありません。暗号化アプリがどのように動作するかの詳細について、およびサポートされているユースケースについてはownCloudのドキュメントを参照してください。", - "Be aware that encryption always increases the file size." : "暗号化は、常にファイルサイズが増加することに注意してください。", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "暗号化した場合には必ず、あなたのデータと共に暗号化キーをバックアップすることを確認し、定期的にデータをバックアップを作成することをお勧めします。", - "This is the final warning: Do you really want to enable encryption?" : "これが最後の警告です:本当に暗号化を有効にしますか?", - "Enable encryption" : "暗号化を有効に", - "No encryption module loaded, please enable an encryption module in the app menu." : "暗号化モジュールがロードされていません。アプリのメニューから暗号化モジュールを有効化してください。", - "Select default encryption module:" : "デフォルトの暗号化モジュールを選択:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "古い暗号化(ownCloud <= 8.0) から新しいものに暗号化キーを移行する必要があります。\"デフォルトの暗号化モジュール\" を有効にして 'occ encryption:migrate' を実行してください。", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "古い暗号化(ownCloud <= 8.0) から新しいものに暗号化キーを移行する必要があります。", - "Start migration" : "移行を開始", - "This is used for sending out notifications." : "通知を送信する際に使用します。", - "Send mode" : "送信モード", - "Encryption" : "暗号化", - "From address" : "送信元アドレス", - "mail" : "mail", - "Authentication method" : "認証方法", - "Authentication required" : "認証を必要とする", - "Server address" : "サーバーアドレス", - "Port" : "ポート", - "Credentials" : "資格情報", - "SMTP Username" : "SMTPユーザー名", - "SMTP Password" : "SMTP パスワード", - "Store credentials" : "資格情報を保存", - "Test email settings" : "メール設定のテスト", - "Send email" : "メールを送信", - "Download logfile" : "ログファイルのダウンロード", - "More" : "もっと見る", - "Less" : "閉じる", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "ログファイルが100MB以上あります。ダウンロードに時間がかかります!", - "What to log" : "ログ出力対象", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLiteがデータベースとして使用されています。大規模な運用では別のデータベースに切り替えることをお勧めします。", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "特にデスクトップクライアントをファイル同期に使用する場合,SQLiteは非推奨です.", - "How to do backups" : "バックアップ方法", - "Advanced monitoring" : "詳細モニタリング", - "Performance tuning" : "パフォーマンスチューニング", - "Improving the config.php" : "config.phpの改善", - "Theming" : "テーマ", - "Hardening and security guidance" : "堅牢化とセキュリティガイダンス", - "Version" : "バージョン", - "Developer documentation" : "開発者ドキュメント", - "Experimental applications ahead" : "実験的なアプリケーションを試す", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "実験的なアプリは、脆弱性についてチェックされていませんし、不安定であったり、激しく開発中です。それらをインストールすると、データの損失やセキュリティ侵害を引き起こす可能性があります。", - "by %s" : "%s による", - "%s-licensed" : "%s ライセンス", - "Documentation:" : "ドキュメント:", - "User documentation" : "ユーザードキュメント", - "Admin documentation" : "管理者ドキュメント", - "Show description …" : "説明を表示 ...", - "Hide description …" : "説明を隠す ...", - "This app has an update available." : "このアプリでアップデートが利用できます.", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "このアプリはownCloudの最小バージョンが指定されていません.ownCloud 11 以降でエラーが発生する可能性があります.", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "このアプリはownCloudの最大バージョンが指定されていません.ownCloud 11 以降でエラーが発生する可能性があります.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "次の依存関係が満たされないためこのアプリをインストールできません:", - "Enable only for specific groups" : "特定のグループのみ有効に", - "Uninstall App" : "アプリをアンインストール", - "Enable experimental apps" : "実験的なアプリを有効にする", - "SSL Root Certificates" : "SSLルート証明書", - "Common Name" : "コモンネーム", - "Valid until" : "有効期限", - "Issued By" : "発行元", - "Valid until %s" : "%s まで有効", - "Import root certificate" : "ルート証明書をインポート", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "こんにちは、<br><br>あなたのアカウント %s が利用可能になったことをお知らせします。<br><br>ユーザー名: %s<br>以下のURLからアクセス: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "それでは!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "こんにちは、\n\nあなたのアカウント %s が利用可能になったことをお知らせします。\n\nユーザー名: %s\n接続URL: %s\n\n", - "Administrator documentation" : "管理者ドキュメント", - "Online documentation" : "オンラインドキュメント", - "Forum" : "フォーラム", - "Issue tracker" : "イシュートラッカー", - "Commercial support" : "商用サポート", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "<strong>%s</strong> / <strong>%s</strong> が現在使用中です", - "Profile picture" : "プロフィール画像", - "Upload new" : "新たにアップロード", - "Select from Files" : "ファイルから選択", - "Remove image" : "画像を削除", - "png or jpg, max. 20 MB" : "png もしくは jpg, 最大.20MB", - "Picture provided by original account" : "オリジナルのアカウントで提供されている写真", - "Cancel" : "キャンセル", - "Choose as profile picture" : "プロファイル画像として選択", - "Full name" : "氏名", - "No display name set" : "表示名が未設定", - "Email" : "メール", - "Your email address" : "あなたのメールアドレス", - "For password recovery and notifications" : "パスワード回復と通知用", - "No email address set" : "メールアドレスが設定されていません", - "You are member of the following groups:" : "以下のグループのメンバーです:", - "Password" : "パスワード", - "Unable to change your password" : "パスワードを変更することができません", - "Current password" : "現在のパスワード", - "New password" : "新しいパスワード", - "Change password" : "パスワードを変更", - "Language" : "言語", - "Help translate" : "翻訳に協力する", - "Get the apps to sync your files" : "ファイルを同期するアプリを取得しましょう", - "Desktop client" : "デスクトップクライアント", - "Android app" : "Androidアプリ", - "iOS app" : "iOSアプリ", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "プロジェクトをサポートしていただける場合は、\n<a href=\"https://owncloud.org/contribute\"\ntarget=\"_blank\">開発に参加する</a>か、\n<a href=\"https://owncloud.org/promote\"\ntarget=\"_blank\">プロジェクトを広く伝えてください</a>!", - "Show First Run Wizard again" : "初回ウィザードを再表示する", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : " {communityopen}ownCloud community{linkclose} によって開発されています。{githubopen}ソースコード{linkclose} は {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose} によってライセンスされます。", - "Show storage location" : "データの保存場所を表示", - "Show last log in" : "最終ログインを表示", - "Show user backend" : "ユーザーバックエンドを表示", - "Send email to new user" : "新規ユーザーにメールを送信", - "Show email address" : "メールアドレスを表示", - "Username" : "ユーザーID", - "E-Mail" : "メール", - "Create" : "作成", - "Admin Recovery Password" : "管理者リカバリパスワード", - "Enter the recovery password in order to recover the users files during password change" : "パスワード変更時のユーザーのファイルを回復するため、リカバリパスワードを入力してください", - "Add Group" : "グループを追加", - "Group" : "グループ", - "Everyone" : "すべてのユーザー", - "Admins" : "管理者", - "Default Quota" : "デフォルトのクォータサイズ", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "ストレージのクォータを入力してください (例: \"512MB\" や \"12 GB\")", - "Other" : "その他", - "Full Name" : "名前", - "Group Admin for" : "グループ管理者", - "Quota" : "クオータ", - "Storage Location" : "データの保存場所", - "User Backend" : "ユーザーバックエンド", - "Last Login" : "最終ログイン", - "change full name" : "名前を変更", - "set new password" : "新しいパスワードを設定", - "change email address" : "メールアドレスを変更", - "Default" : "デフォルト" -},"pluralForm" :"nplurals=1; plural=0;" -}
\ No newline at end of file diff --git a/settings/l10n/jv.js b/settings/l10n/jv.js deleted file mode 100644 index ac03f3c3a7e..00000000000 --- a/settings/l10n/jv.js +++ /dev/null @@ -1,6 +0,0 @@ -OC.L10N.register( - "settings", - { - "Invalid request" : "Panjalukan salah" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/jv.json b/settings/l10n/jv.json deleted file mode 100644 index ff13946849b..00000000000 --- a/settings/l10n/jv.json +++ /dev/null @@ -1,4 +0,0 @@ -{ "translations": { - "Invalid request" : "Panjalukan salah" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/ka_GE.js b/settings/l10n/ka_GE.js deleted file mode 100644 index 1b45a52cad8..00000000000 --- a/settings/l10n/ka_GE.js +++ /dev/null @@ -1,67 +0,0 @@ -OC.L10N.register( - "settings", - { - "Sharing" : "გაზიარება", - "External Storage" : "ექსტერნალ საცავი", - "Cron" : "Cron–ი", - "Log" : "ლოგი", - "Language changed" : "ენა შეცვლილია", - "Invalid request" : "არასწორი მოთხოვნა", - "Authentication error" : "ავთენტიფიკაციის შეცდომა", - "Admins can't remove themself from the admin group" : "ადმინისტრატორებს არ შეუძლიათ საკუთარი თავის წაშლა ადმინ ჯგუფიდან", - "Unable to add user to group %s" : "მომხმარებლის დამატება ვერ მოხეხდა ჯგუფში %s", - "Unable to remove user from group %s" : "მომხმარებლის წაშლა ვერ მოხეხდა ჯგუფიდან %s", - "Couldn't update app." : "ვერ მოხერხდა აპლიკაციის განახლება.", - "Email sent" : "იმეილი გაიგზავნა", - "Email saved" : "იმეილი შენახულია", - "All" : "ყველა", - "Please wait...." : "დაიცადეთ....", - "Disable" : "გამორთვა", - "Enable" : "ჩართვა", - "Updating...." : "მიმდინარეობს განახლება....", - "Error while updating app" : "შეცდომა აპლიკაციის განახლების დროს", - "Updated" : "განახლებულია", - "Delete" : "წაშლა", - "Groups" : "ჯგუფები", - "undo" : "დაბრუნება", - "never" : "არასდროს", - "add group" : "ჯგუფის დამატება", - "A valid username must be provided" : "უნდა მიუთითოთ არსებული მომხმარებლის სახელი", - "A valid password must be provided" : "უნდა მიუთითოთ არსებული პაროლი", - "__language_name__" : "__language_name__", - "Unlimited" : "ულიმიტო", - "None" : "არა", - "Login" : "ლოგინი", - "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–ს აღმოჩენისას.", - "Allow apps to use the Share API" : "დაუშვი აპლიკაციების უფლება Share API –ზე", - "Allow resharing" : "გადაზიარების დაშვება", - "Execute one task with each page loaded" : "გაუშვი თითო მოქმედება ყველა ჩატვირთულ გვერდზე", - "Encryption" : "ენკრიპცია", - "Server address" : "სერვერის მისამართი", - "Port" : "პორტი", - "Credentials" : "იუზერ/პაროლი", - "More" : "უფრო მეტი", - "Less" : "უფრო ნაკლები", - "Version" : "ვერსია", - "Forum" : "ფორუმი", - "Cancel" : "უარყოფა", - "Email" : "იმეილი", - "Your email address" : "თქვენი იმეილ მისამართი", - "Password" : "პაროლი", - "Unable to change your password" : "თქვენი პაროლი არ შეიცვალა", - "Current password" : "მიმდინარე პაროლი", - "New password" : "ახალი პაროლი", - "Change password" : "პაროლის შეცვლა", - "Language" : "ენა", - "Help translate" : "თარგმნის დახმარება", - "Get the apps to sync your files" : "აპლიკაცია ფაილების სინქრონიზაციისთვის", - "Show First Run Wizard again" : "მაჩვენე თავიდან გაშვებული ვიზარდი", - "Username" : "მომხმარებლის სახელი", - "Create" : "შექმნა", - "Default Quota" : "საწყისი ქვოტა", - "Other" : "სხვა", - "Quota" : "ქვოტა", - "set new password" : "დააყენეთ ახალი პაროლი", - "Default" : "საწყისი პარამეტრები" -}, -"nplurals=1; plural=0;"); diff --git a/settings/l10n/ka_GE.json b/settings/l10n/ka_GE.json deleted file mode 100644 index dc061b44295..00000000000 --- a/settings/l10n/ka_GE.json +++ /dev/null @@ -1,65 +0,0 @@ -{ "translations": { - "Sharing" : "გაზიარება", - "External Storage" : "ექსტერნალ საცავი", - "Cron" : "Cron–ი", - "Log" : "ლოგი", - "Language changed" : "ენა შეცვლილია", - "Invalid request" : "არასწორი მოთხოვნა", - "Authentication error" : "ავთენტიფიკაციის შეცდომა", - "Admins can't remove themself from the admin group" : "ადმინისტრატორებს არ შეუძლიათ საკუთარი თავის წაშლა ადმინ ჯგუფიდან", - "Unable to add user to group %s" : "მომხმარებლის დამატება ვერ მოხეხდა ჯგუფში %s", - "Unable to remove user from group %s" : "მომხმარებლის წაშლა ვერ მოხეხდა ჯგუფიდან %s", - "Couldn't update app." : "ვერ მოხერხდა აპლიკაციის განახლება.", - "Email sent" : "იმეილი გაიგზავნა", - "Email saved" : "იმეილი შენახულია", - "All" : "ყველა", - "Please wait...." : "დაიცადეთ....", - "Disable" : "გამორთვა", - "Enable" : "ჩართვა", - "Updating...." : "მიმდინარეობს განახლება....", - "Error while updating app" : "შეცდომა აპლიკაციის განახლების დროს", - "Updated" : "განახლებულია", - "Delete" : "წაშლა", - "Groups" : "ჯგუფები", - "undo" : "დაბრუნება", - "never" : "არასდროს", - "add group" : "ჯგუფის დამატება", - "A valid username must be provided" : "უნდა მიუთითოთ არსებული მომხმარებლის სახელი", - "A valid password must be provided" : "უნდა მიუთითოთ არსებული პაროლი", - "__language_name__" : "__language_name__", - "Unlimited" : "ულიმიტო", - "None" : "არა", - "Login" : "ლოგინი", - "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–ს აღმოჩენისას.", - "Allow apps to use the Share API" : "დაუშვი აპლიკაციების უფლება Share API –ზე", - "Allow resharing" : "გადაზიარების დაშვება", - "Execute one task with each page loaded" : "გაუშვი თითო მოქმედება ყველა ჩატვირთულ გვერდზე", - "Encryption" : "ენკრიპცია", - "Server address" : "სერვერის მისამართი", - "Port" : "პორტი", - "Credentials" : "იუზერ/პაროლი", - "More" : "უფრო მეტი", - "Less" : "უფრო ნაკლები", - "Version" : "ვერსია", - "Forum" : "ფორუმი", - "Cancel" : "უარყოფა", - "Email" : "იმეილი", - "Your email address" : "თქვენი იმეილ მისამართი", - "Password" : "პაროლი", - "Unable to change your password" : "თქვენი პაროლი არ შეიცვალა", - "Current password" : "მიმდინარე პაროლი", - "New password" : "ახალი პაროლი", - "Change password" : "პაროლის შეცვლა", - "Language" : "ენა", - "Help translate" : "თარგმნის დახმარება", - "Get the apps to sync your files" : "აპლიკაცია ფაილების სინქრონიზაციისთვის", - "Show First Run Wizard again" : "მაჩვენე თავიდან გაშვებული ვიზარდი", - "Username" : "მომხმარებლის სახელი", - "Create" : "შექმნა", - "Default Quota" : "საწყისი ქვოტა", - "Other" : "სხვა", - "Quota" : "ქვოტა", - "set new password" : "დააყენეთ ახალი პაროლი", - "Default" : "საწყისი პარამეტრები" -},"pluralForm" :"nplurals=1; plural=0;" -}
\ No newline at end of file diff --git a/settings/l10n/km.js b/settings/l10n/km.js deleted file mode 100644 index fe67c17c8cd..00000000000 --- a/settings/l10n/km.js +++ /dev/null @@ -1,85 +0,0 @@ -OC.L10N.register( - "settings", - { - "Sharing" : "ការចែករំលែក", - "External Storage" : "ឃ្លាំងផ្ទុកខាងក្រៅ", - "Cron" : "Cron", - "Log" : "Log", - "Language changed" : "បានប្ដូរភាសា", - "Invalid request" : "សំណើមិនត្រឹមត្រូវ", - "Authentication error" : "កំហុសការផ្ទៀងផ្ទាត់ភាពត្រឹមត្រូវ", - "Admins can't remove themself from the admin group" : "អ្នកគ្រប់គ្រងមិនអាចលុបខ្លួនឯងចេញពីក្រុមអ្នកគ្រប់គ្រងឡើយ", - "Unable to add user to group %s" : "មិនអាចបន្ថែមអ្នកប្រើទៅក្រុម %s", - "Unable to remove user from group %s" : "មិនអាចដកអ្នកប្រើចេញពីក្រុម %s", - "Couldn't update app." : "មិនអាចធ្វើបច្ចុប្បន្នភាពកម្មវិធី។", - "Wrong password" : "ខុសពាក្យសម្ងាត់", - "Enabled" : "បានបើក", - "Saved" : "បានរក្សាទុក", - "test email settings" : "សាកល្បងការកំណត់អ៊ីមែល", - "Email sent" : "បានផ្ញើអ៊ីមែល", - "You need to set your user email before being able to send test emails." : "អ្នកត្រូវតែកំណត់អ៊ីមែលរបស់អ្នកមុននឹងអាចផ្ញើអ៊ីមែលសាកល្បងបាន។", - "Email saved" : "បានរក្សាទុកអ៊ីមែល", - "Sending..." : "កំពុងផ្ញើ...", - "All" : "ទាំងអស់", - "Please wait...." : "សូមរង់ចាំ....", - "Error while disabling app" : "មានកំហុសពេលកំពុងបិទកម្មវិធី", - "Disable" : "បិទ", - "Enable" : "បើក", - "Updating...." : "កំពុងធ្វើបច្ចុប្បន្នភាព....", - "Error while updating app" : "មានកំហុសពេលធ្វើបច្ចុប្បន្នភាពកម្មវិធី", - "Updated" : "បានធ្វើបច្ចុប្បន្នភាព", - "Delete" : "លុប", - "Select a profile picture" : "ជ្រើសរូបភាពប្រវត្តិរូប", - "Very weak password" : "ពាក្យសម្ងាត់ខ្សោយណាស់", - "Weak password" : "ពាក្យសម្ងាត់ខ្សោយ", - "So-so password" : "ពាក្យសម្ងាត់ធម្មតា", - "Good password" : "ពាក្យសម្ងាត់ល្អ", - "Strong password" : "ពាក្យសម្ងាត់ខ្លាំង", - "Groups" : "ក្រុ", - "undo" : "មិនធ្វើវិញ", - "never" : "មិនដែរ", - "add group" : "បន្ថែមក្រុម", - "A valid username must be provided" : "ត្រូវផ្ដល់ឈ្មោះអ្នកប្រើឲ្យបានត្រឹមត្រូវ", - "A valid password must be provided" : "ត្រូវផ្ដល់ពាក្យសម្ងាត់ឲ្យបានត្រឹមត្រូវ", - "__language_name__" : "__language_name__", - "Unlimited" : "មិនកំណត់", - "None" : "គ្មាន", - "Login" : "ចូល", - "SSL" : "SSL", - "TLS" : "TLS", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "ខ្វះម៉ូឌុល 'fileinfo' ។ យើងសូមណែនាំឲ្យបើកម៉ូឌុលនេះ ដើម្បីទទួលបានលទ្ធផលល្អនៃការសម្គាល់ប្រភេទ mime ។", - "Allow apps to use the Share API" : "អនុញ្ញាតឲ្យកម្មវិធីប្រើ API ចែករំលែក", - "Allow public uploads" : "អនុញ្ញាតការផ្ទុកឡើងជាសាធារណៈ", - "Allow resharing" : "អនុញ្ញាតការចែករំលែកម្ដងទៀត", - "Encryption" : "កូដនីយកម្ម", - "From address" : "ពីអាសយដ្ឋាន", - "Server address" : "អាសយដ្ឋានម៉ាស៊ីនបម្រើ", - "Port" : "ច្រក", - "Send email" : "ផ្ញើអ៊ីមែល", - "More" : "ច្រើនទៀត", - "Less" : "តិច", - "Version" : "កំណែ", - "Forum" : "វេទិកាពិភាក្សា", - "Profile picture" : "រូបភាពប្រវត្តិរូប", - "Upload new" : "ផ្ទុកឡើងថ្មី", - "Remove image" : "ដករូបភាពចេញ", - "Cancel" : "លើកលែង", - "Email" : "អ៊ីមែល", - "Your email address" : "អ៊ីម៉ែលរបស់អ្នក", - "Password" : "ពាក្យសម្ងាត់", - "Unable to change your password" : "មិនអាចប្ដូរពាក្យសម្ងាត់របស់អ្នកបានទេ", - "Current password" : "ពាក្យសម្ងាត់បច្ចុប្បន្ន", - "New password" : "ពាក្យសម្ងាត់ថ្មី", - "Change password" : "ប្តូរពាក្យសម្ងាត់", - "Language" : "ភាសា", - "Help translate" : "ជួយបកប្រែ", - "Get the apps to sync your files" : "ដាក់អោយកម្មវិធីផ្សេងៗ ធ្វើសមកាលកម្មឯកសារអ្នក", - "Show First Run Wizard again" : "បង្ហាញ First Run Wizard ម្តងទៀត", - "Username" : "ឈ្មោះអ្នកប្រើ", - "Create" : "បង្កើត", - "Admin Recovery Password" : "ការស្វែងរកពាក្យសម្ងាត់របស់ប្រធានវេបសាយ", - "Other" : "ផ្សេងៗ", - "set new password" : "កំណត់ពាក្យសម្ងាត់ថ្មី", - "Default" : "លំនាំដើម" -}, -"nplurals=1; plural=0;"); diff --git a/settings/l10n/km.json b/settings/l10n/km.json deleted file mode 100644 index e4c68da54d2..00000000000 --- a/settings/l10n/km.json +++ /dev/null @@ -1,83 +0,0 @@ -{ "translations": { - "Sharing" : "ការចែករំលែក", - "External Storage" : "ឃ្លាំងផ្ទុកខាងក្រៅ", - "Cron" : "Cron", - "Log" : "Log", - "Language changed" : "បានប្ដូរភាសា", - "Invalid request" : "សំណើមិនត្រឹមត្រូវ", - "Authentication error" : "កំហុសការផ្ទៀងផ្ទាត់ភាពត្រឹមត្រូវ", - "Admins can't remove themself from the admin group" : "អ្នកគ្រប់គ្រងមិនអាចលុបខ្លួនឯងចេញពីក្រុមអ្នកគ្រប់គ្រងឡើយ", - "Unable to add user to group %s" : "មិនអាចបន្ថែមអ្នកប្រើទៅក្រុម %s", - "Unable to remove user from group %s" : "មិនអាចដកអ្នកប្រើចេញពីក្រុម %s", - "Couldn't update app." : "មិនអាចធ្វើបច្ចុប្បន្នភាពកម្មវិធី។", - "Wrong password" : "ខុសពាក្យសម្ងាត់", - "Enabled" : "បានបើក", - "Saved" : "បានរក្សាទុក", - "test email settings" : "សាកល្បងការកំណត់អ៊ីមែល", - "Email sent" : "បានផ្ញើអ៊ីមែល", - "You need to set your user email before being able to send test emails." : "អ្នកត្រូវតែកំណត់អ៊ីមែលរបស់អ្នកមុននឹងអាចផ្ញើអ៊ីមែលសាកល្បងបាន។", - "Email saved" : "បានរក្សាទុកអ៊ីមែល", - "Sending..." : "កំពុងផ្ញើ...", - "All" : "ទាំងអស់", - "Please wait...." : "សូមរង់ចាំ....", - "Error while disabling app" : "មានកំហុសពេលកំពុងបិទកម្មវិធី", - "Disable" : "បិទ", - "Enable" : "បើក", - "Updating...." : "កំពុងធ្វើបច្ចុប្បន្នភាព....", - "Error while updating app" : "មានកំហុសពេលធ្វើបច្ចុប្បន្នភាពកម្មវិធី", - "Updated" : "បានធ្វើបច្ចុប្បន្នភាព", - "Delete" : "លុប", - "Select a profile picture" : "ជ្រើសរូបភាពប្រវត្តិរូប", - "Very weak password" : "ពាក្យសម្ងាត់ខ្សោយណាស់", - "Weak password" : "ពាក្យសម្ងាត់ខ្សោយ", - "So-so password" : "ពាក្យសម្ងាត់ធម្មតា", - "Good password" : "ពាក្យសម្ងាត់ល្អ", - "Strong password" : "ពាក្យសម្ងាត់ខ្លាំង", - "Groups" : "ក្រុ", - "undo" : "មិនធ្វើវិញ", - "never" : "មិនដែរ", - "add group" : "បន្ថែមក្រុម", - "A valid username must be provided" : "ត្រូវផ្ដល់ឈ្មោះអ្នកប្រើឲ្យបានត្រឹមត្រូវ", - "A valid password must be provided" : "ត្រូវផ្ដល់ពាក្យសម្ងាត់ឲ្យបានត្រឹមត្រូវ", - "__language_name__" : "__language_name__", - "Unlimited" : "មិនកំណត់", - "None" : "គ្មាន", - "Login" : "ចូល", - "SSL" : "SSL", - "TLS" : "TLS", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "ខ្វះម៉ូឌុល 'fileinfo' ។ យើងសូមណែនាំឲ្យបើកម៉ូឌុលនេះ ដើម្បីទទួលបានលទ្ធផលល្អនៃការសម្គាល់ប្រភេទ mime ។", - "Allow apps to use the Share API" : "អនុញ្ញាតឲ្យកម្មវិធីប្រើ API ចែករំលែក", - "Allow public uploads" : "អនុញ្ញាតការផ្ទុកឡើងជាសាធារណៈ", - "Allow resharing" : "អនុញ្ញាតការចែករំលែកម្ដងទៀត", - "Encryption" : "កូដនីយកម្ម", - "From address" : "ពីអាសយដ្ឋាន", - "Server address" : "អាសយដ្ឋានម៉ាស៊ីនបម្រើ", - "Port" : "ច្រក", - "Send email" : "ផ្ញើអ៊ីមែល", - "More" : "ច្រើនទៀត", - "Less" : "តិច", - "Version" : "កំណែ", - "Forum" : "វេទិកាពិភាក្សា", - "Profile picture" : "រូបភាពប្រវត្តិរូប", - "Upload new" : "ផ្ទុកឡើងថ្មី", - "Remove image" : "ដករូបភាពចេញ", - "Cancel" : "លើកលែង", - "Email" : "អ៊ីមែល", - "Your email address" : "អ៊ីម៉ែលរបស់អ្នក", - "Password" : "ពាក្យសម្ងាត់", - "Unable to change your password" : "មិនអាចប្ដូរពាក្យសម្ងាត់របស់អ្នកបានទេ", - "Current password" : "ពាក្យសម្ងាត់បច្ចុប្បន្ន", - "New password" : "ពាក្យសម្ងាត់ថ្មី", - "Change password" : "ប្តូរពាក្យសម្ងាត់", - "Language" : "ភាសា", - "Help translate" : "ជួយបកប្រែ", - "Get the apps to sync your files" : "ដាក់អោយកម្មវិធីផ្សេងៗ ធ្វើសមកាលកម្មឯកសារអ្នក", - "Show First Run Wizard again" : "បង្ហាញ First Run Wizard ម្តងទៀត", - "Username" : "ឈ្មោះអ្នកប្រើ", - "Create" : "បង្កើត", - "Admin Recovery Password" : "ការស្វែងរកពាក្យសម្ងាត់របស់ប្រធានវេបសាយ", - "Other" : "ផ្សេងៗ", - "set new password" : "កំណត់ពាក្យសម្ងាត់ថ្មី", - "Default" : "លំនាំដើម" -},"pluralForm" :"nplurals=1; plural=0;" -}
\ No newline at end of file diff --git a/settings/l10n/kn.js b/settings/l10n/kn.js deleted file mode 100644 index a2869504ad1..00000000000 --- a/settings/l10n/kn.js +++ /dev/null @@ -1,128 +0,0 @@ -OC.L10N.register( - "settings", - { - "Sharing" : "ಹಂಚಿಕೆ", - "Log" : "ಹಿನ್ನೆಲೆಯ ದಾಖಲೆ", - "Couldn't remove app." : "ಅಳಿಸುವಾಗ ಏನೊ ಲೋಪವಾಗಿದೆ", - "Language changed" : "ಭಾಷೆಯನ್ನು ಬದಲಾಯಿಸಲಾಗಿದೆ", - "Invalid request" : "ಅಮಾನ್ಯ ಕೋರಿಕೆ", - "Authentication error" : "ದೃಢೀಕರಣ ದೋಷ", - "Admins can't remove themself from the admin group" : "ನಿರ್ವಾಹಕರು ನಿರ್ವಹಣೆ ಗುಂಪಿನಿಂದ ತಮ್ಮನ್ನೇ ತಾವು ತೆಗೆದುಹಾಕಿಕೊಳ್ಳಲು ಸಾಧ್ಯವಿಲ್ಲ", - "Unable to add user to group %s" : "%s ಗುಂಪಿಗೆ ಹೂಸ ಬಳಕೆದಾರನನ್ನು ಸೇರಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ", - "Unable to remove user from group %s" : "%s ಗುಂಪು ಬಳಕೆದಾರ ತೆಗೆದುಹಾಕಲು ಸಾಧ್ಯವಾಗುತ್ತಿಲ್ಲ", - "Couldn't update app." : " ಕಾಯಕ್ರಮವನ್ನು ನವೀಕರಿಸಲ ಸಾದ್ಯವಾಗುತ್ತಿಲ್ಲ.", - "Wrong password" : "ದುರ್ಬಲ ಗುಪ್ತಪದ", - "No user supplied" : "ಯಾವುದೇ ಬಳಕೆದಾರನ ಹೆಸರನ್ನು ನೀಡಿರುವುದಿಲ್ಲ", - "Unable to change password" : "ಗುಪ್ತಪದವನ್ನು ಬದಲಾಯಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ", - "Enabled" : "ಸಕ್ರಿಯಗೊಳಿಸಿದೆ", - "Not enabled" : "ಸಕ್ರಿಯಗೊಳಿಸಿಲ್ಲ", - "Group already exists." : "ಗುಂಪು ಈಗಾಗಲೇ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ.", - "Unable to add group." : "ಗುಂಪುನ್ನು ಸೇರಿಸಲು ಸಾಧ್ಯವಾಗುತ್ತಿಲ್ಲ.", - "Unable to delete group." : "ಗುಂಪುನ್ನು ಅಳಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ.", - "Saved" : "ಉಳಿಸಿದ", - "test email settings" : "ಪರೀರ್ಕ್ಷಾತ ಇ-ಅಂಚೆಯ ಆಯ್ಕೇ", - "Email sent" : "ಇ-ಅಂಚೆ ಕಳುಹಿಸಲಾಗಿದೆ", - "You need to set your user email before being able to send test emails." : "ನೀವು ಪರೀಕ್ಷಾ ಇ-ಅಂಚೆಯನ್ನು ಕಳುಹಿಸುವ ಮುನ್ನ ನಿಮ್ಮ ಬಳಕೆದಾರ ಇ-ಅಂಚೆಯನ್ನು ಹೊಂದಿಸಬೇಕಾಗುತ್ತದೆ.", - "Invalid mail address" : "ಅಮಾನ್ಯ ಇ-ಅಂಚೆ ವಿಳಾಸ", - "Unable to create user." : "ಬಳಕೆದಾರನ ಖಾತೆ ರಚಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ.", - "Your %s account was created" : "ನಿಮ್ಮ%s ಖಾತೆಯನ್ನು ಸ್ಥಾಪಿಸಲಾಗಿದೆ", - "Unable to delete user." : "ಬಳಕೆದಾರನ ಹೆಸರುನ್ನು ಅಳಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ.", - "Forbidden" : "ನಿರ್ಬಂಧಿಸಲಾಗಿದೆ", - "Invalid user" : "ಅಮಾನ್ಯ ಬಳಕೆದಾರ", - "Unable to change mail address" : "ಇ-ಅಂಚೆ ವಿಳಾಸ ಬದಲಾಯಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ", - "Email saved" : "ಇ-ಅಂಚೆಯನ್ನು ಉಳಿಸಿದೆ", - "Your full name has been changed." : "ನಿಮ್ಮ ಪೂರ್ಣ ಹೆಸರನ್ನು ಬದಲಾಯಿಸಲಾಗಿದೆ.", - "Unable to change full name" : "ಪೂರ್ಣ ಹೆಸರನ್ನು ಬದಲಾಯಿಸಲು ಸಾಧ್ಯವಾಗುತ್ತಿಲ್ಲ", - "Sending..." : "ಕಳುಹಿಸಲಾಗುತ್ತಿದೆ ...", - "All" : "ಎಲ್ಲಾ", - "Please wait...." : "ದಯವಿಟ್ಟು ನಿರೀಕ್ಷಿಸಿ ....", - "Error while disabling app" : "ಕಾರ್ಯಕ್ರಮವನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸುವಾಗ ಏನೊ ಲೋಪವಾಗಿದೆ", - "Disable" : "ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ", - "Enable" : "ಸಕ್ರಿಯಗೊಳಿಸು", - "Error while enabling app" : "ಕಾರ್ಯಕ್ರಮವನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿಸುವಾಗ ಏನೊ ಲೋಪವಾಗಿದೆ", - "Updating...." : "ಆಧುನೀಕರಿಸುಲಾಗುತ್ತಿದೇ ....", - "Error while updating app" : "ಕಾರ್ಯಕ್ರಮವನ್ನು ನವೀಕರಿಸುವಾಗ ಏನೊ ಲೋಪವಾಗಿದೆ", - "Updated" : "ಆಧುನೀಕರಿಸಲಾಗಿದೆ", - "Uninstalling ...." : "ಅಳಿಸಿಹಾಕುವುದು ...", - "Error while uninstalling app" : "ಅಳಿಸುವಾಗ ಏನೊ ಲೋಪವಾಗಿದೆ", - "Uninstall" : "ಅಳಿಸಿ", - "Valid until {date}" : "{date} ವರೆಗೆ ಚಾಲ್ತಿಯಲ್ಲಿರುತ್ತದೆ", - "Delete" : "ಅಳಿಸಿ", - "Select a profile picture" : "ಸಂಕ್ಷಿಪ್ತ ವ್ಯಕ್ತಿಚಿತ್ರ ಒಂದನ್ನು ಆಯ್ಕೆ ಮಾಡಿ", - "Very weak password" : "ಅತೀ ದುರ್ಬಲ ಗುಪ್ತಪದ", - "Weak password" : "ದುರ್ಬಲ ಗುಪ್ತಪದ", - "So-so password" : "ಊಹಿಸಬಹುದಾದ ಗುಪ್ತಪದ", - "Good password" : "ಉತ್ತಮ ಗುಪ್ತಪದ", - "Strong password" : "ಪ್ರಬಲ ಗುಪ್ತಪದ", - "Groups" : "ಗುಂಪುಗಳು", - "Unable to delete {objName}" : "{objName} ಅಳಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ ", - "A valid group name must be provided" : "ಮಾನ್ಯ ಗುಂಪಿನ ಹೆಸರನ್ನು ಒದಗಿಸಬೇಕಾಗುತ್ತದೆ", - "deleted {groupName}" : "ಅಳಿಸಲಾಗಿದೆ {groupName}", - "undo" : "ಹಿಂದಿರುಗಿಸು", - "no group" : "ಯಾವುದೇ ಗುಂಪಿನಲ್ಲಿಲ್ಲ", - "never" : "ಎಂದಿಗೂ", - "deleted {userName}" : "{userName} ಬಳಕೆಯ ಹೆಸರುನ್ನು ಅಳಿಸಲಾಗಿದೆ ", - "add group" : "ಗುಂಪುನ್ನು ಸೇರಿಸಿ", - "A valid username must be provided" : "ಮಾನ್ಯ ಬಳಕೆದಾರ ಹೆಸರು ಒದಗಿಸಬೇಕಾಗುತ್ತದೆ", - "A valid password must be provided" : "ಸರಿಯಾದ ಬಳಕೆದಾರ ಗುಪ್ತಪದ ಒದಗಿಸಬೇಕಾಗಿದೆ", - "A valid email must be provided" : "ಮಾನ್ಯ ಬಳಕೆದಾರ ಇ-ಅಂಚೆಯನ್ನು ಒದಗಿಸಬೇಕಾಗುತ್ತದೆ", - "__language_name__" : "ಕನ್ನಡ", - "Everything (fatal issues, errors, warnings, info, debug)" : "ಎಲ್ಲ ರೀತಿಗಳು (ವಿನಾಶಕ ಸಮಸ್ಯೆಗಳು, ದೋಷಗಳು, ಎಚ್ಚರಿಕೆಗಳನ್ನು, ಮಾಹಿತಿ, ಇತರೆ )", - "Info, warnings, errors and fatal issues" : "ಮಾಹಿತಿ, ಎಚ್ಚರಿಕೆ, ದೋಷಗಳು ಮತ್ತು ಮಾರಕ ಸಮಸ್ಯೆಗಳು", - "Warnings, errors and fatal issues" : "ಎಚ್ಚರಿಕೆ, ದೋಷಗಳು ಮತ್ತು ಮಾರಕ ಸಮಸ್ಯೆಗಳು", - "Errors and fatal issues" : "ದೋಷಗಳು ಮತ್ತು ಮಾರಕ ಸಮಸ್ಯೆಗಳು", - "Fatal issues only" : "ಮಾರಕ ಸಮಸ್ಯೆಗಳು ಮಾತ್ರ", - "None" : "ಯಾವುದೂ ಇಲ್ಲ", - "Login" : "ಖಾತೆ ಪ್ರವೇಶಿಸು", - "Plain" : "ಸರಳ", - "Expire after " : "ನಿಶ್ವಸಿಸುವ ಅವಧಿ", - "days" : "ದಿನಗಳು", - "Enforce expiration date" : "ಮುಕ್ತಾಯ ದಿನಾಂಕವನ್ನು ಬಲವ೦ತವಾಗಿ ಜಾರಿಗೆ ಮಾಡಿ", - "Send mode" : "ಕಳುಹಿಸುವ ಕ್ರಮ", - "Encryption" : "ರಹಸ್ಯ ಸಂಕೇತೀಕರಿಸು", - "mail" : "ಅಂಚೆ", - "Authentication method" : "ದೃಢೀಕರಣ ವಿಧಾನ", - "Authentication required" : "ದೃಢೀಕರಣ ಅಗತ್ಯವಿದೆ", - "Server address" : "ಪರಿಚಾರಕ ಗಣಕಯಂತ್ರದ ವಿಳಾಸ", - "Port" : "ರೇವು", - "Credentials" : "ರುಜುವಾತುಗಳು", - "SMTP Username" : "SMTP ಬಳಕೆದಾರ ಹೆಸರು", - "SMTP Password" : "SMTP ಗುಪ್ತ ಪದ", - "Test email settings" : "ಪರೀರ್ಕ್ಷಾತ ಇ-ಅಂಚೆಯ ಆಯ್ಕೇ", - "Send email" : "ಇ-ಅಂಚೆಯನ್ನು ಕಳುಹಿಸಿ", - "More" : "ಇನ್ನಷ್ಟು", - "Less" : "ಕಡಿಮೆ", - "Version" : "ಆವೃತ್ತಿ", - "Documentation:" : "ದಾಖಲೆ:", - "Enable only for specific groups" : "ಕೇವಲ ನಿರ್ದಿಷ್ಟ ಗುಂಪುಗಳಿಗೆ ಸಕ್ರಿಯಗೊಳಿಸಿ", - "Uninstall App" : "ಅಳಿಸಿ", - "Cheers!" : "ಆನಂದಿಸಿ !", - "Forum" : "ವೇದಿಕೆ", - "Cancel" : "ರದ್ದು", - "Email" : "ಇ-ಅಂಚೆ", - "Your email address" : "ನಿಮ್ಮ ಇ-ಅಂಚೆ ವಿಳಾಸ", - "Password" : "ಗುಪ್ತ ಪದ", - "Unable to change your password" : "ನಿನ್ನ ಗುಪ್ತಪದವನ್ನು ಬದಲಾಯಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ", - "Current password" : "ಪ್ರಸ್ತುತ ಗುಪ್ತಪದ", - "New password" : "ಹೊಸ ಗುಪ್ತಪದ", - "Change password" : "ಗುಪ್ತ ಪದವನ್ನು ಬದಲಾಯಿಸಿ", - "Language" : "ಭಾಷೆ", - "Help translate" : "ಭಾಷಾಂತರಿಸಲು ಸಹಾಯ ಮಾಡಿ", - "Username" : "ಬಳಕೆಯ ಹೆಸರು", - "E-Mail" : "ಇ-ಅಂಚೆ ವಿಳಾಸ", - "Create" : "ಸೃಷ್ಟಿಸಿ", - "Add Group" : "ಗುಂಪುನ್ನು ಸೇರಿಸಿ", - "Group" : "ಗುಂಪು", - "Everyone" : "ಪ್ರತಿಯೊಬ್ಬರೂ", - "Admins" : "ನಿರ್ವಾಹಕರು", - "Other" : "ಇತರೆ", - "Full Name" : "ಪೂರ್ಣ ಹೆಸರು", - "Quota" : "ಪಾಲು", - "Storage Location" : " ಸಂಗ್ರಹ ಸ್ಥಳ", - "Last Login" : "ಹಿಂದಿನ ಖಾತೆ ಪ್ರವೇಶ", - "change full name" : "ಪೂರ್ಣ ಹೆಸರು ಬದಲಾಯಿಸಬಹುದು", - "set new password" : "ಹೊಸ ಗುಪ್ತಪದವನ್ನು ಹೊಂದಿಸಿ", - "change email address" : "ಇ-ಅಂಚೆ ವಿಳಾಸ ಬದಲಾಯಿಸಿ", - "Default" : "ಆರಂಭದ ಪ್ರತಿ" -}, -"nplurals=1; plural=0;"); diff --git a/settings/l10n/kn.json b/settings/l10n/kn.json deleted file mode 100644 index 5b97cfa37af..00000000000 --- a/settings/l10n/kn.json +++ /dev/null @@ -1,126 +0,0 @@ -{ "translations": { - "Sharing" : "ಹಂಚಿಕೆ", - "Log" : "ಹಿನ್ನೆಲೆಯ ದಾಖಲೆ", - "Couldn't remove app." : "ಅಳಿಸುವಾಗ ಏನೊ ಲೋಪವಾಗಿದೆ", - "Language changed" : "ಭಾಷೆಯನ್ನು ಬದಲಾಯಿಸಲಾಗಿದೆ", - "Invalid request" : "ಅಮಾನ್ಯ ಕೋರಿಕೆ", - "Authentication error" : "ದೃಢೀಕರಣ ದೋಷ", - "Admins can't remove themself from the admin group" : "ನಿರ್ವಾಹಕರು ನಿರ್ವಹಣೆ ಗುಂಪಿನಿಂದ ತಮ್ಮನ್ನೇ ತಾವು ತೆಗೆದುಹಾಕಿಕೊಳ್ಳಲು ಸಾಧ್ಯವಿಲ್ಲ", - "Unable to add user to group %s" : "%s ಗುಂಪಿಗೆ ಹೂಸ ಬಳಕೆದಾರನನ್ನು ಸೇರಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ", - "Unable to remove user from group %s" : "%s ಗುಂಪು ಬಳಕೆದಾರ ತೆಗೆದುಹಾಕಲು ಸಾಧ್ಯವಾಗುತ್ತಿಲ್ಲ", - "Couldn't update app." : " ಕಾಯಕ್ರಮವನ್ನು ನವೀಕರಿಸಲ ಸಾದ್ಯವಾಗುತ್ತಿಲ್ಲ.", - "Wrong password" : "ದುರ್ಬಲ ಗುಪ್ತಪದ", - "No user supplied" : "ಯಾವುದೇ ಬಳಕೆದಾರನ ಹೆಸರನ್ನು ನೀಡಿರುವುದಿಲ್ಲ", - "Unable to change password" : "ಗುಪ್ತಪದವನ್ನು ಬದಲಾಯಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ", - "Enabled" : "ಸಕ್ರಿಯಗೊಳಿಸಿದೆ", - "Not enabled" : "ಸಕ್ರಿಯಗೊಳಿಸಿಲ್ಲ", - "Group already exists." : "ಗುಂಪು ಈಗಾಗಲೇ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ.", - "Unable to add group." : "ಗುಂಪುನ್ನು ಸೇರಿಸಲು ಸಾಧ್ಯವಾಗುತ್ತಿಲ್ಲ.", - "Unable to delete group." : "ಗುಂಪುನ್ನು ಅಳಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ.", - "Saved" : "ಉಳಿಸಿದ", - "test email settings" : "ಪರೀರ್ಕ್ಷಾತ ಇ-ಅಂಚೆಯ ಆಯ್ಕೇ", - "Email sent" : "ಇ-ಅಂಚೆ ಕಳುಹಿಸಲಾಗಿದೆ", - "You need to set your user email before being able to send test emails." : "ನೀವು ಪರೀಕ್ಷಾ ಇ-ಅಂಚೆಯನ್ನು ಕಳುಹಿಸುವ ಮುನ್ನ ನಿಮ್ಮ ಬಳಕೆದಾರ ಇ-ಅಂಚೆಯನ್ನು ಹೊಂದಿಸಬೇಕಾಗುತ್ತದೆ.", - "Invalid mail address" : "ಅಮಾನ್ಯ ಇ-ಅಂಚೆ ವಿಳಾಸ", - "Unable to create user." : "ಬಳಕೆದಾರನ ಖಾತೆ ರಚಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ.", - "Your %s account was created" : "ನಿಮ್ಮ%s ಖಾತೆಯನ್ನು ಸ್ಥಾಪಿಸಲಾಗಿದೆ", - "Unable to delete user." : "ಬಳಕೆದಾರನ ಹೆಸರುನ್ನು ಅಳಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ.", - "Forbidden" : "ನಿರ್ಬಂಧಿಸಲಾಗಿದೆ", - "Invalid user" : "ಅಮಾನ್ಯ ಬಳಕೆದಾರ", - "Unable to change mail address" : "ಇ-ಅಂಚೆ ವಿಳಾಸ ಬದಲಾಯಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ", - "Email saved" : "ಇ-ಅಂಚೆಯನ್ನು ಉಳಿಸಿದೆ", - "Your full name has been changed." : "ನಿಮ್ಮ ಪೂರ್ಣ ಹೆಸರನ್ನು ಬದಲಾಯಿಸಲಾಗಿದೆ.", - "Unable to change full name" : "ಪೂರ್ಣ ಹೆಸರನ್ನು ಬದಲಾಯಿಸಲು ಸಾಧ್ಯವಾಗುತ್ತಿಲ್ಲ", - "Sending..." : "ಕಳುಹಿಸಲಾಗುತ್ತಿದೆ ...", - "All" : "ಎಲ್ಲಾ", - "Please wait...." : "ದಯವಿಟ್ಟು ನಿರೀಕ್ಷಿಸಿ ....", - "Error while disabling app" : "ಕಾರ್ಯಕ್ರಮವನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸುವಾಗ ಏನೊ ಲೋಪವಾಗಿದೆ", - "Disable" : "ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ", - "Enable" : "ಸಕ್ರಿಯಗೊಳಿಸು", - "Error while enabling app" : "ಕಾರ್ಯಕ್ರಮವನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿಸುವಾಗ ಏನೊ ಲೋಪವಾಗಿದೆ", - "Updating...." : "ಆಧುನೀಕರಿಸುಲಾಗುತ್ತಿದೇ ....", - "Error while updating app" : "ಕಾರ್ಯಕ್ರಮವನ್ನು ನವೀಕರಿಸುವಾಗ ಏನೊ ಲೋಪವಾಗಿದೆ", - "Updated" : "ಆಧುನೀಕರಿಸಲಾಗಿದೆ", - "Uninstalling ...." : "ಅಳಿಸಿಹಾಕುವುದು ...", - "Error while uninstalling app" : "ಅಳಿಸುವಾಗ ಏನೊ ಲೋಪವಾಗಿದೆ", - "Uninstall" : "ಅಳಿಸಿ", - "Valid until {date}" : "{date} ವರೆಗೆ ಚಾಲ್ತಿಯಲ್ಲಿರುತ್ತದೆ", - "Delete" : "ಅಳಿಸಿ", - "Select a profile picture" : "ಸಂಕ್ಷಿಪ್ತ ವ್ಯಕ್ತಿಚಿತ್ರ ಒಂದನ್ನು ಆಯ್ಕೆ ಮಾಡಿ", - "Very weak password" : "ಅತೀ ದುರ್ಬಲ ಗುಪ್ತಪದ", - "Weak password" : "ದುರ್ಬಲ ಗುಪ್ತಪದ", - "So-so password" : "ಊಹಿಸಬಹುದಾದ ಗುಪ್ತಪದ", - "Good password" : "ಉತ್ತಮ ಗುಪ್ತಪದ", - "Strong password" : "ಪ್ರಬಲ ಗುಪ್ತಪದ", - "Groups" : "ಗುಂಪುಗಳು", - "Unable to delete {objName}" : "{objName} ಅಳಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ ", - "A valid group name must be provided" : "ಮಾನ್ಯ ಗುಂಪಿನ ಹೆಸರನ್ನು ಒದಗಿಸಬೇಕಾಗುತ್ತದೆ", - "deleted {groupName}" : "ಅಳಿಸಲಾಗಿದೆ {groupName}", - "undo" : "ಹಿಂದಿರುಗಿಸು", - "no group" : "ಯಾವುದೇ ಗುಂಪಿನಲ್ಲಿಲ್ಲ", - "never" : "ಎಂದಿಗೂ", - "deleted {userName}" : "{userName} ಬಳಕೆಯ ಹೆಸರುನ್ನು ಅಳಿಸಲಾಗಿದೆ ", - "add group" : "ಗುಂಪುನ್ನು ಸೇರಿಸಿ", - "A valid username must be provided" : "ಮಾನ್ಯ ಬಳಕೆದಾರ ಹೆಸರು ಒದಗಿಸಬೇಕಾಗುತ್ತದೆ", - "A valid password must be provided" : "ಸರಿಯಾದ ಬಳಕೆದಾರ ಗುಪ್ತಪದ ಒದಗಿಸಬೇಕಾಗಿದೆ", - "A valid email must be provided" : "ಮಾನ್ಯ ಬಳಕೆದಾರ ಇ-ಅಂಚೆಯನ್ನು ಒದಗಿಸಬೇಕಾಗುತ್ತದೆ", - "__language_name__" : "ಕನ್ನಡ", - "Everything (fatal issues, errors, warnings, info, debug)" : "ಎಲ್ಲ ರೀತಿಗಳು (ವಿನಾಶಕ ಸಮಸ್ಯೆಗಳು, ದೋಷಗಳು, ಎಚ್ಚರಿಕೆಗಳನ್ನು, ಮಾಹಿತಿ, ಇತರೆ )", - "Info, warnings, errors and fatal issues" : "ಮಾಹಿತಿ, ಎಚ್ಚರಿಕೆ, ದೋಷಗಳು ಮತ್ತು ಮಾರಕ ಸಮಸ್ಯೆಗಳು", - "Warnings, errors and fatal issues" : "ಎಚ್ಚರಿಕೆ, ದೋಷಗಳು ಮತ್ತು ಮಾರಕ ಸಮಸ್ಯೆಗಳು", - "Errors and fatal issues" : "ದೋಷಗಳು ಮತ್ತು ಮಾರಕ ಸಮಸ್ಯೆಗಳು", - "Fatal issues only" : "ಮಾರಕ ಸಮಸ್ಯೆಗಳು ಮಾತ್ರ", - "None" : "ಯಾವುದೂ ಇಲ್ಲ", - "Login" : "ಖಾತೆ ಪ್ರವೇಶಿಸು", - "Plain" : "ಸರಳ", - "Expire after " : "ನಿಶ್ವಸಿಸುವ ಅವಧಿ", - "days" : "ದಿನಗಳು", - "Enforce expiration date" : "ಮುಕ್ತಾಯ ದಿನಾಂಕವನ್ನು ಬಲವ೦ತವಾಗಿ ಜಾರಿಗೆ ಮಾಡಿ", - "Send mode" : "ಕಳುಹಿಸುವ ಕ್ರಮ", - "Encryption" : "ರಹಸ್ಯ ಸಂಕೇತೀಕರಿಸು", - "mail" : "ಅಂಚೆ", - "Authentication method" : "ದೃಢೀಕರಣ ವಿಧಾನ", - "Authentication required" : "ದೃಢೀಕರಣ ಅಗತ್ಯವಿದೆ", - "Server address" : "ಪರಿಚಾರಕ ಗಣಕಯಂತ್ರದ ವಿಳಾಸ", - "Port" : "ರೇವು", - "Credentials" : "ರುಜುವಾತುಗಳು", - "SMTP Username" : "SMTP ಬಳಕೆದಾರ ಹೆಸರು", - "SMTP Password" : "SMTP ಗುಪ್ತ ಪದ", - "Test email settings" : "ಪರೀರ್ಕ್ಷಾತ ಇ-ಅಂಚೆಯ ಆಯ್ಕೇ", - "Send email" : "ಇ-ಅಂಚೆಯನ್ನು ಕಳುಹಿಸಿ", - "More" : "ಇನ್ನಷ್ಟು", - "Less" : "ಕಡಿಮೆ", - "Version" : "ಆವೃತ್ತಿ", - "Documentation:" : "ದಾಖಲೆ:", - "Enable only for specific groups" : "ಕೇವಲ ನಿರ್ದಿಷ್ಟ ಗುಂಪುಗಳಿಗೆ ಸಕ್ರಿಯಗೊಳಿಸಿ", - "Uninstall App" : "ಅಳಿಸಿ", - "Cheers!" : "ಆನಂದಿಸಿ !", - "Forum" : "ವೇದಿಕೆ", - "Cancel" : "ರದ್ದು", - "Email" : "ಇ-ಅಂಚೆ", - "Your email address" : "ನಿಮ್ಮ ಇ-ಅಂಚೆ ವಿಳಾಸ", - "Password" : "ಗುಪ್ತ ಪದ", - "Unable to change your password" : "ನಿನ್ನ ಗುಪ್ತಪದವನ್ನು ಬದಲಾಯಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ", - "Current password" : "ಪ್ರಸ್ತುತ ಗುಪ್ತಪದ", - "New password" : "ಹೊಸ ಗುಪ್ತಪದ", - "Change password" : "ಗುಪ್ತ ಪದವನ್ನು ಬದಲಾಯಿಸಿ", - "Language" : "ಭಾಷೆ", - "Help translate" : "ಭಾಷಾಂತರಿಸಲು ಸಹಾಯ ಮಾಡಿ", - "Username" : "ಬಳಕೆಯ ಹೆಸರು", - "E-Mail" : "ಇ-ಅಂಚೆ ವಿಳಾಸ", - "Create" : "ಸೃಷ್ಟಿಸಿ", - "Add Group" : "ಗುಂಪುನ್ನು ಸೇರಿಸಿ", - "Group" : "ಗುಂಪು", - "Everyone" : "ಪ್ರತಿಯೊಬ್ಬರೂ", - "Admins" : "ನಿರ್ವಾಹಕರು", - "Other" : "ಇತರೆ", - "Full Name" : "ಪೂರ್ಣ ಹೆಸರು", - "Quota" : "ಪಾಲು", - "Storage Location" : " ಸಂಗ್ರಹ ಸ್ಥಳ", - "Last Login" : "ಹಿಂದಿನ ಖಾತೆ ಪ್ರವೇಶ", - "change full name" : "ಪೂರ್ಣ ಹೆಸರು ಬದಲಾಯಿಸಬಹುದು", - "set new password" : "ಹೊಸ ಗುಪ್ತಪದವನ್ನು ಹೊಂದಿಸಿ", - "change email address" : "ಇ-ಅಂಚೆ ವಿಳಾಸ ಬದಲಾಯಿಸಿ", - "Default" : "ಆರಂಭದ ಪ್ರತಿ" -},"pluralForm" :"nplurals=1; plural=0;" -}
\ No newline at end of file diff --git a/settings/l10n/ko.js b/settings/l10n/ko.js deleted file mode 100644 index 73fa8ca1603..00000000000 --- a/settings/l10n/ko.js +++ /dev/null @@ -1,290 +0,0 @@ -OC.L10N.register( - "settings", - { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "보안 및 설치 경고", - "Sharing" : "공유", - "Server-side encryption" : "서버 측 암호화", - "External Storage" : "외부 저장소", - "Cron" : "Cron", - "Email server" : "이메일 서버", - "Log" : "로그", - "Tips & tricks" : "팁과 추가 정보", - "Updates" : "업데이트", - "Couldn't remove app." : "앱을 삭제할 수 없습니다.", - "Language changed" : "언어가 변경됨", - "Invalid request" : "잘못된 요청", - "Authentication error" : "인증 오류", - "Admins can't remove themself from the admin group" : "관리자 자신을 관리자 그룹에서 삭제할 수 없음", - "Unable to add user to group %s" : "그룹 %s에 사용자를 추가할 수 없음", - "Unable to remove user from group %s" : "그룹 %s에서 사용자를 삭제할 수 없음", - "Couldn't update app." : "앱을 업데이트할 수 없습니다.", - "Wrong password" : "잘못된 암호", - "No user supplied" : "사용자가 지정되지 않음", - "Please provide an admin recovery password, otherwise all user data will be lost" : "관리자 복구 암호를 입력하지 않으면 모든 사용자 데이터가 삭제됩니다", - "Wrong admin recovery password. Please check the password and try again." : "관리자 복구 암호가 잘못되었습니다. 암호를 다시 확인하십시오.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "백엔드에서 암호 변경을 지원하지 않지만, 암호화 키는 갱신되었습니다.", - "Unable to change password" : "암호를 변경할 수 없음", - "Enabled" : "활성", - "Not enabled" : "비활성", - "installing and updating apps via the app store or Federated Cloud Sharing" : "앱 스토어 및 연합 클라우드 공유로 앱 설치 및 업데이트", - "Federated Cloud Sharing" : "클라우드 연합 공유", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL이 오래된 %s 버전을 사용하고 있습니다(%s). 운영 체제나 기능을 업데이트하지 않으면 %s 등을 안정적으로 사용할 수 없습니다.", - "A problem occurred, please check your log files (Error: %s)" : "문제가 발생했습니다. 로그 파일을 참조하십시오(오류: %s)", - "Migration Completed" : "이전 완료됨", - "Group already exists." : "그룹이 이미 존재합니다.", - "Unable to add group." : "그룹을 추가할 수 없습니다.", - "Unable to delete group." : "그룹을 삭제할 수 없습니다.", - "log-level out of allowed range" : "로그 단계가 허용 범위를 벗어남", - "Saved" : "저장됨", - "test email settings" : "이메일 설정 시험", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "이메일을 보내는 중 오류가 발생했습니다. 설정을 확인하십시오.(오류: %s)", - "Email sent" : "이메일 발송됨", - "You need to set your user email before being able to send test emails." : "테스트 이메일을 보내기 전 내 주소를 설정해야 합니다.", - "Invalid mail address" : "잘못된 이메일 주소", - "A user with that name already exists." : "같은 이름의 사용자가 이미 존재합니다.", - "Unable to create user." : "사용자를 만들 수 없습니다.", - "Your %s account was created" : "%s 계정을 등록했습니다", - "Unable to delete user." : "사용자를 삭제할 수 없습니다.", - "Forbidden" : "거부됨", - "Invalid user" : "잘못된 사용자", - "Unable to change mail address" : "이메일 주소를 변경할 수 없음", - "Email saved" : "이메일 저장됨", - "Your full name has been changed." : "전체 이름이 변경되었습니다.", - "Unable to change full name" : "전체 이름을 변경할 수 없음", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "신뢰할 수 있는 도메인 목록에 \"{domain}\"을(를) 추가하시겠습니까?", - "Add trusted domain" : "신뢰할 수 있는 도메인 추가", - "Migration in progress. Please wait until the migration is finished" : "이전 작업 중입니다. 작업이 완료될 때까지 기다려 주십시오", - "Migration started …" : "이전 시작됨...", - "Sending..." : "보내는 중...", - "Official" : "공식", - "Approved" : "승인됨", - "Experimental" : "실험적", - "All" : "모두", - "No apps found for your version" : "설치된 버전에 대한 앱 없음", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "공식 앱은 ownCloud 커뮤니티 내에서 개발됩니다. ownCloud의 주요 기능을 제공하며 상용 환경에서 사용 가능합니다.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "승인된 앱은 신뢰할 수 있는 개발자가 개발하며 보안 검사를 통과했습니다. 열린 코드 저장소에서 관리되며 일반적인 환경에서 사용할 수 있는 수준으로 관리됩니다.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "이 앱의 보안 문제가 점검되지 않았고, 출시된 지 얼마 지나지 않았거나 아직 불안정합니다. 본인 책임 하에 설치하십시오.", - "Update to %s" : "%s(으)로 업데이트", - "_You have %n app update pending_::_You have %n app updates pending_" : ["앱 %n개 업데이트 대기 중"], - "Please wait...." : "기다려 주십시오....", - "Error while disabling app" : "앱을 비활성화하는 중 오류 발생", - "Disable" : "사용 안함", - "Enable" : "사용함", - "Error while enabling app" : "앱을 활성화하는 중 오류 발생", - "Error: this app cannot be enabled because it makes the server unstable" : "오류: 이 앱은 서버를 불안정하게 만들 수 있어서 활성화할 수 없습니다", - "Error: could not disable broken app" : "오류: 망가진 앱을 비활성화할 수 없음", - "Error while disabling broken app" : "망가진 앱을 비활성화 하는 중 오류 발생", - "Updating...." : "업데이트 중....", - "Error while updating app" : "앱을 업데이트하는 중 오류 발생", - "Updated" : "업데이트됨", - "Uninstalling ...." : "제거 하는 중 ....", - "Error while uninstalling app" : "앱을 제거하는 중 오류 발생", - "Uninstall" : "제거", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "앱이 활성화되었지만, 앱을 업데이트해야 합니다. 5초 후 앱 업데이트 페이지로 넘어갑니다.", - "App update" : "앱 업데이트", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "오류가 발생했습니다. ASCII로 인코딩된 PEM 인증서를 업로드하십시오.", - "Valid until {date}" : "{date}까지 유효함", - "Delete" : "삭제", - "An error occurred: {message}" : "오류 발생: {message}", - "Select a profile picture" : "프로필 사진 선택", - "Very weak password" : "매우 약한 암호", - "Weak password" : "약한 암호", - "So-so password" : "그저 그런 암호", - "Good password" : "좋은 암호", - "Strong password" : "강력한 암호", - "Groups" : "그룹", - "Unable to delete {objName}" : "{objName}을(를) 삭제할 수 없음", - "Error creating group: {message}" : "그룹 생성 오류: {message}", - "A valid group name must be provided" : "올바른 그룹 이름을 입력해야 함", - "deleted {groupName}" : "{groupName} 삭제됨", - "undo" : "실행 취소", - "no group" : "그룹 없음", - "never" : "없음", - "deleted {userName}" : "{userName} 삭제됨", - "add group" : "그룹 추가", - "Changing the password will result in data loss, because data recovery is not available for this user" : "이 사용자에 대해 데이터 복구를 사용할 수 없기 때문에, 암호를 변경하면 데이터를 잃게 됩니다.", - "A valid username must be provided" : "올바른 사용자 이름을 입력해야 함", - "Error creating user: {message}" : "사용자 생성 오류: {message}", - "A valid password must be provided" : "올바른 암호를 입력해야 함", - "A valid email must be provided" : "올바른 이메일 주소를 입력해야 함", - "__language_name__" : "한국어", - "Unlimited" : "무제한", - "Personal info" : "개인 정보", - "Sync clients" : "동기화 클라이언트", - "Everything (fatal issues, errors, warnings, info, debug)" : "모두 (치명적 문제, 오류, 경고, 정보, 디버그)", - "Info, warnings, errors and fatal issues" : "정보, 경고, 오류, 치명적 문제", - "Warnings, errors and fatal issues" : "경고, 오류, 치명적 문제", - "Errors and fatal issues" : "오류, 치명적 문제", - "Fatal issues only" : "치명적 문제만", - "None" : "없음", - "Login" : "로그인", - "Plain" : "일반", - "NT LAN Manager" : "NT LAN 관리자", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "php가 시스템 환경 변수를 올바르게 조회할 수 있도록 설정되지 않았습니다. getenv(\"PATH\")의 값이 비어 있습니다.", - "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." : "읽기 전용 설정이 활성화되었습니다. 이 상태에서는 웹 인터페이스를 통하여 일부 설정을 변경할 수 없습니다. 또한 매 업데이트마다 파일을 쓸 수 있는 상태로 변경해야 합니다.", - "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 같은 캐시/가속기 문제일 수도 있습니다.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "서버가 Microsoft Windows 환경에서 동작하고 있습니다. 최적의 사용자 경험을 위해서는 리눅스를 사용할 것을 권장합니다.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP 모듈 'fileinfo'가 존재하지 않습니다. MIME 형식 감지 결과를 향상시키기 위하여 이 모듈을 활성화하는 것을 추천합니다.", - "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.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "도메인의 루트 디렉터리 아래에 설치되어 있지 않고 시스템 cron을 사용한다면 URL 생성에 문제가 발생할 수도 있습니다. 이 문제를 해결하려면 설치본의 웹 루트 경로에 있는 config.php 파일의 \"overwrite.cli.url\" 옵션을 변경하십시오(제안: \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "CLI로 cronjob을 실행할 수 없었습니다. 다음 기술적 오류가 발생했습니다:", - "All checks passed." : "모든 검사를 통과했습니다.", - "Open documentation" : "문서 열기", - "Allow apps to use the Share API" : "앱에서 공유 API를 사용할 수 있도록 허용", - "Allow users to share via link" : "사용자별 링크 공유 허용", - "Enforce password protection" : "암호 보호 강제", - "Allow public uploads" : "공개 업로드 허용", - "Allow users to send mail notification for shared files" : "공유 파일 이메일 알림 전송 허용", - "Set default expiration date" : "기본 만료 날짜 설정", - "Expire after " : "다음 날짜 후 만료", - "days" : "일", - "Enforce expiration date" : "만료 날짜 강제", - "Allow resharing" : "재공유 허용", - "Restrict users to only share with users in their groups" : "그룹 내 사용자끼리만 공유할 수 있도록 허용", - "Allow users to send mail notification for shared files to other users" : "다른 사용자에게 공유 파일 이메일 알림 전송 허용", - "Exclude groups from sharing" : "공유에서 그룹 제외", - "These groups will still be able to receive shares, but not to initiate them." : "이 그룹의 사용자들은 다른 사용자가 공유한 파일을 받을 수는 있지만, 자기 파일을 공유할 수는 없습니다.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "공유 대화 상자에서 사용자 이름 자동 완성을 사용합니다. 이 설정을 사용하지 않으면 전체 사용자 이름을 입력해야 합니다.", - "Last cron job execution: %s." : "마지막 cron 작업 실행: %s.", - "Last cron job execution: %s. Something seems wrong." : "마지막 cron 작업 실행: %s. 문제가 발생한 것 같습니다.", - "Cron was not executed yet!" : "Cron이 실행되지 않았습니다!", - "Execute one task with each page loaded" : "개별 페이지를 불러올 때마다 실행", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php는 webcron 서비스에 등록되어 HTTP로 15분마다 cron.php에 접근합니다.", - "Use system's cron service to call the cron.php file every 15 minutes." : "시스템의 cron 서비스를 통하여 15분마다 cron.php 파일을 실행합니다.", - "Enable server-side encryption" : "서버 측 암호화 사용", - "Please read carefully before activating server-side encryption: " : "서버 측 암호화를 활성화하기 전에 읽어 보십시오:", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "암호화를 사용하면, 사용하기 시작한 시간 이후에 서버에 업로드된 모든 파일이 암호화됩니다. 나중에 암호화를 사용하지 않으려면 사용하고 있는 암호화 모듈에서 비활성화를 지원해야 하고 모든 사전 조건(예: 복구 키 설정)을 만족해야 합니다.", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "암호화만 사용하여 시스템의 보안을 유지할 수는 없습니다. 암호화 앱 동작 방식과 지원하는 사용 예제를 보려면 ownCloud 문서를 참조하십시오.", - "Be aware that encryption always increases the file size." : "암호화된 파일의 크기는 항상 커집니다.", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "데이터를 주기적으로 백업하는 것을 추천하며, 암호화를 사용하고 있다면 데이터와 더불어 암호화 키도 백업하십시오.", - "This is the final warning: Do you really want to enable encryption?" : "마지막 경고입니다. 암호화를 활성화하시겠습니까?", - "Enable encryption" : "암호화 사용", - "No encryption module loaded, please enable an encryption module in the app menu." : "암호화 모듈을 불러오지 않았습니다. 앱 메뉴에서 암호화 모듈을 활성화하십시오.", - "Select default encryption module:" : "기본 암호화 모듈 선택:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "과거에 사용하였던(ownCloud <= 8.0) 암호화된 데이터에서 키를 이전해야 합니다. \"기본 암호화 모듈\"을 활성화한 다음 'occ encryption:migrate'를 실행하십시오", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "ownCloud 8.0 이하에서 사용한 이전 암호화 키를 새 키로 이전해야 합니다.", - "Start migration" : "이전 시작", - "This is used for sending out notifications." : "알림을 보낼 때 사용됩니다.", - "Send mode" : "보내기 모드", - "Encryption" : "암호화", - "From address" : "보낸 사람 주소", - "mail" : "메일", - "Authentication method" : "인증 방법", - "Authentication required" : "인증 필요함", - "Server address" : "서버 주소", - "Port" : "포트", - "Credentials" : "자격 정보", - "SMTP Username" : "SMTP 사용자 이름", - "SMTP Password" : "SMTP 암호", - "Store credentials" : "인증 정보 저장", - "Test email settings" : "이메일 설정 시험", - "Send email" : "이메일 보내기", - "Download logfile" : "로그 파일 다운로드", - "More" : "더 중요함", - "Less" : "덜 중요함", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "로그 파일이 100MB보다 큽니다. 다운로드하는 데 시간이 걸릴 수 있습니다!", - "What to log" : "남길 로그", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "데이터베이스로 SQLite를 사용하고 있습니다. 대규모의 파일을 관리하려고 한다면 다른 데이터베이스 백엔드로 전환할 것을 권장합니다.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "특히 파일 동기화를 위해 데스크톱 클라이언트를 사용할 예정이면, SQLite를 사용하지 않는 것이 좋습니다.", - "How to do backups" : "백업 방법", - "Advanced monitoring" : "고급 모니터링", - "Performance tuning" : "성능 튜닝", - "Improving the config.php" : "config.php 개선", - "Theming" : "테마 꾸미기", - "Hardening and security guidance" : "보안 강화 지침", - "Version" : "버전", - "Developer documentation" : "개발자 문서", - "Experimental applications ahead" : "실험적인 앱 사용 예정", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "실험적인 앱은 보안 문제 검사를 통과하지 않았으며, 아직 새롭거나, 불안정하거나, 개발 중일 수도 있습니다. 이러한 앱을 설치하면 데이터 손실 및 보안 문제가 발생할 수도 있습니다.", - "Documentation:" : "문서:", - "User documentation" : "사용자 문서", - "Admin documentation" : "관리 문서", - "Show description …" : "설명 보기...", - "Hide description …" : "설명 숨기기...", - "This app has an update available." : "이 앱을 업데이트할 수 있습니다.", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "이 앱 개발자가 최대 ownCloud 버전을 지정하지 않았습니다. ownCloud 11 이후 버전에서 오류가 발생할 것입니다.", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "이 앱 개발자가 최소 ownCloud 버전을 지정하지 않았습니다. ownCloud 11 이후 버전에서 오류가 발생할 것입니다.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "다음 의존성을 만족할 수 없기 때문에 이 앱을 설치할 수 없습니다:", - "Enable only for specific groups" : "특정 그룹에만 허용", - "Uninstall App" : "앱 제거", - "Enable experimental apps" : "실험적인 앱 사용", - "SSL Root Certificates" : "SSL 루트 인증서", - "Common Name" : "공통 이름", - "Valid until" : "만료 기간:", - "Issued By" : "발급자:", - "Valid until %s" : "%s까지 유효함", - "Import root certificate" : "루트 인증서 가져오기", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "안녕하세요.<br><br>%s 계정을 사용할 수 있음을 알려 드립니다.<br><br>사용자 이름: %s<br>접근 링크: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "감사합니다!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "안녕하세요.\n\n%s 계정을 사용할 수 있음을 알려 드립니다.\n\n사용자 이름: %s\n접근 링크: %s\n\n", - "Administrator documentation" : "관리자 문서", - "Online documentation" : "온라인 문서", - "Forum" : "포럼", - "Issue tracker" : "이슈 트래커", - "Commercial support" : "상용 지원", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "현재 <strong>%s</strong> / <strong>%s</strong>을(를) 사용중입니다.", - "Profile picture" : "프로필 사진", - "Upload new" : "새로 업로드", - "Select from Files" : "파일에서 선택", - "Remove image" : "그림 삭제", - "png or jpg, max. 20 MB" : "PNG, JPG, 최대 20MB", - "Picture provided by original account" : "원래 계정에서 제공하는 사진", - "Cancel" : "취소", - "Choose as profile picture" : "프로필 사진으로 선택", - "Full name" : "전체 이름", - "No display name set" : "표시 이름이 설정되지 않음", - "Email" : "이메일", - "Your email address" : "이메일 주소", - "For password recovery and notifications" : "암호 복구와 알림에 사용", - "No email address set" : "이메일 주소가 설정되지 않음", - "You are member of the following groups:" : "다음 그룹의 구성원입니다:", - "Password" : "암호", - "Unable to change your password" : "암호를 변경할 수 없음", - "Current password" : "현재 암호", - "New password" : "새 암호", - "Change password" : "암호 변경", - "Language" : "언어", - "Help translate" : "번역 돕기", - "Get the apps to sync your files" : "파일 동기화 앱 가져오기", - "Desktop client" : "데스크톱 클라이언트", - "Android app" : "Android 앱", - "iOS app" : "iOS 앱", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "프로젝트를 지원하려면\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">개발에 참여하거나</a>\n\t\t\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">널리 알려 주십시오</a>!", - "Show First Run Wizard again" : "첫 실행 마법사 다시 보이기", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "{communityopen}ownCloud 커뮤니티{linkclose}에서 개발함. {githubopen}원본 코드{linkclose}는 {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose} 라이선스로 배포됩니다.", - "Show storage location" : "저장소 위치 보이기", - "Show last log in" : "마지막 로그인 시간 보이기", - "Show user backend" : "사용자 백엔드 보이기", - "Send email to new user" : "새 사용자에게 이메일 보내기", - "Show email address" : "이메일 주소 보이기", - "Username" : "사용자 이름", - "E-Mail" : "이메일", - "Create" : "만들기", - "Admin Recovery Password" : "관리자 복구 암호", - "Enter the recovery password in order to recover the users files during password change" : "암호 변경 시 변경된 사용자 파일을 복구하려면 복구 암호를 입력하십시오", - "Add Group" : "그룹 추가", - "Group" : "그룹", - "Everyone" : "모두", - "Admins" : "관리자", - "Default Quota" : "기본 할당량", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "저장소 할당량을 입력하십시오 (예: \"512 MB\", \"12 GB\")", - "Other" : "기타", - "Full Name" : "전체 이름", - "Group Admin for" : "다음 그룹의 관리자:", - "Quota" : "할당량", - "Storage Location" : "저장소 위치", - "User Backend" : "사용자 백엔드", - "Last Login" : "마지막 로그인", - "change full name" : "전체 이름 변경", - "set new password" : "새 암호 설정", - "change email address" : "이메일 주소 변경", - "Default" : "기본값" -}, -"nplurals=1; plural=0;"); diff --git a/settings/l10n/ko.json b/settings/l10n/ko.json deleted file mode 100644 index 070aaa164b1..00000000000 --- a/settings/l10n/ko.json +++ /dev/null @@ -1,288 +0,0 @@ -{ "translations": { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "보안 및 설치 경고", - "Sharing" : "공유", - "Server-side encryption" : "서버 측 암호화", - "External Storage" : "외부 저장소", - "Cron" : "Cron", - "Email server" : "이메일 서버", - "Log" : "로그", - "Tips & tricks" : "팁과 추가 정보", - "Updates" : "업데이트", - "Couldn't remove app." : "앱을 삭제할 수 없습니다.", - "Language changed" : "언어가 변경됨", - "Invalid request" : "잘못된 요청", - "Authentication error" : "인증 오류", - "Admins can't remove themself from the admin group" : "관리자 자신을 관리자 그룹에서 삭제할 수 없음", - "Unable to add user to group %s" : "그룹 %s에 사용자를 추가할 수 없음", - "Unable to remove user from group %s" : "그룹 %s에서 사용자를 삭제할 수 없음", - "Couldn't update app." : "앱을 업데이트할 수 없습니다.", - "Wrong password" : "잘못된 암호", - "No user supplied" : "사용자가 지정되지 않음", - "Please provide an admin recovery password, otherwise all user data will be lost" : "관리자 복구 암호를 입력하지 않으면 모든 사용자 데이터가 삭제됩니다", - "Wrong admin recovery password. Please check the password and try again." : "관리자 복구 암호가 잘못되었습니다. 암호를 다시 확인하십시오.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "백엔드에서 암호 변경을 지원하지 않지만, 암호화 키는 갱신되었습니다.", - "Unable to change password" : "암호를 변경할 수 없음", - "Enabled" : "활성", - "Not enabled" : "비활성", - "installing and updating apps via the app store or Federated Cloud Sharing" : "앱 스토어 및 연합 클라우드 공유로 앱 설치 및 업데이트", - "Federated Cloud Sharing" : "클라우드 연합 공유", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL이 오래된 %s 버전을 사용하고 있습니다(%s). 운영 체제나 기능을 업데이트하지 않으면 %s 등을 안정적으로 사용할 수 없습니다.", - "A problem occurred, please check your log files (Error: %s)" : "문제가 발생했습니다. 로그 파일을 참조하십시오(오류: %s)", - "Migration Completed" : "이전 완료됨", - "Group already exists." : "그룹이 이미 존재합니다.", - "Unable to add group." : "그룹을 추가할 수 없습니다.", - "Unable to delete group." : "그룹을 삭제할 수 없습니다.", - "log-level out of allowed range" : "로그 단계가 허용 범위를 벗어남", - "Saved" : "저장됨", - "test email settings" : "이메일 설정 시험", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "이메일을 보내는 중 오류가 발생했습니다. 설정을 확인하십시오.(오류: %s)", - "Email sent" : "이메일 발송됨", - "You need to set your user email before being able to send test emails." : "테스트 이메일을 보내기 전 내 주소를 설정해야 합니다.", - "Invalid mail address" : "잘못된 이메일 주소", - "A user with that name already exists." : "같은 이름의 사용자가 이미 존재합니다.", - "Unable to create user." : "사용자를 만들 수 없습니다.", - "Your %s account was created" : "%s 계정을 등록했습니다", - "Unable to delete user." : "사용자를 삭제할 수 없습니다.", - "Forbidden" : "거부됨", - "Invalid user" : "잘못된 사용자", - "Unable to change mail address" : "이메일 주소를 변경할 수 없음", - "Email saved" : "이메일 저장됨", - "Your full name has been changed." : "전체 이름이 변경되었습니다.", - "Unable to change full name" : "전체 이름을 변경할 수 없음", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "신뢰할 수 있는 도메인 목록에 \"{domain}\"을(를) 추가하시겠습니까?", - "Add trusted domain" : "신뢰할 수 있는 도메인 추가", - "Migration in progress. Please wait until the migration is finished" : "이전 작업 중입니다. 작업이 완료될 때까지 기다려 주십시오", - "Migration started …" : "이전 시작됨...", - "Sending..." : "보내는 중...", - "Official" : "공식", - "Approved" : "승인됨", - "Experimental" : "실험적", - "All" : "모두", - "No apps found for your version" : "설치된 버전에 대한 앱 없음", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "공식 앱은 ownCloud 커뮤니티 내에서 개발됩니다. ownCloud의 주요 기능을 제공하며 상용 환경에서 사용 가능합니다.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "승인된 앱은 신뢰할 수 있는 개발자가 개발하며 보안 검사를 통과했습니다. 열린 코드 저장소에서 관리되며 일반적인 환경에서 사용할 수 있는 수준으로 관리됩니다.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "이 앱의 보안 문제가 점검되지 않았고, 출시된 지 얼마 지나지 않았거나 아직 불안정합니다. 본인 책임 하에 설치하십시오.", - "Update to %s" : "%s(으)로 업데이트", - "_You have %n app update pending_::_You have %n app updates pending_" : ["앱 %n개 업데이트 대기 중"], - "Please wait...." : "기다려 주십시오....", - "Error while disabling app" : "앱을 비활성화하는 중 오류 발생", - "Disable" : "사용 안함", - "Enable" : "사용함", - "Error while enabling app" : "앱을 활성화하는 중 오류 발생", - "Error: this app cannot be enabled because it makes the server unstable" : "오류: 이 앱은 서버를 불안정하게 만들 수 있어서 활성화할 수 없습니다", - "Error: could not disable broken app" : "오류: 망가진 앱을 비활성화할 수 없음", - "Error while disabling broken app" : "망가진 앱을 비활성화 하는 중 오류 발생", - "Updating...." : "업데이트 중....", - "Error while updating app" : "앱을 업데이트하는 중 오류 발생", - "Updated" : "업데이트됨", - "Uninstalling ...." : "제거 하는 중 ....", - "Error while uninstalling app" : "앱을 제거하는 중 오류 발생", - "Uninstall" : "제거", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "앱이 활성화되었지만, 앱을 업데이트해야 합니다. 5초 후 앱 업데이트 페이지로 넘어갑니다.", - "App update" : "앱 업데이트", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "오류가 발생했습니다. ASCII로 인코딩된 PEM 인증서를 업로드하십시오.", - "Valid until {date}" : "{date}까지 유효함", - "Delete" : "삭제", - "An error occurred: {message}" : "오류 발생: {message}", - "Select a profile picture" : "프로필 사진 선택", - "Very weak password" : "매우 약한 암호", - "Weak password" : "약한 암호", - "So-so password" : "그저 그런 암호", - "Good password" : "좋은 암호", - "Strong password" : "강력한 암호", - "Groups" : "그룹", - "Unable to delete {objName}" : "{objName}을(를) 삭제할 수 없음", - "Error creating group: {message}" : "그룹 생성 오류: {message}", - "A valid group name must be provided" : "올바른 그룹 이름을 입력해야 함", - "deleted {groupName}" : "{groupName} 삭제됨", - "undo" : "실행 취소", - "no group" : "그룹 없음", - "never" : "없음", - "deleted {userName}" : "{userName} 삭제됨", - "add group" : "그룹 추가", - "Changing the password will result in data loss, because data recovery is not available for this user" : "이 사용자에 대해 데이터 복구를 사용할 수 없기 때문에, 암호를 변경하면 데이터를 잃게 됩니다.", - "A valid username must be provided" : "올바른 사용자 이름을 입력해야 함", - "Error creating user: {message}" : "사용자 생성 오류: {message}", - "A valid password must be provided" : "올바른 암호를 입력해야 함", - "A valid email must be provided" : "올바른 이메일 주소를 입력해야 함", - "__language_name__" : "한국어", - "Unlimited" : "무제한", - "Personal info" : "개인 정보", - "Sync clients" : "동기화 클라이언트", - "Everything (fatal issues, errors, warnings, info, debug)" : "모두 (치명적 문제, 오류, 경고, 정보, 디버그)", - "Info, warnings, errors and fatal issues" : "정보, 경고, 오류, 치명적 문제", - "Warnings, errors and fatal issues" : "경고, 오류, 치명적 문제", - "Errors and fatal issues" : "오류, 치명적 문제", - "Fatal issues only" : "치명적 문제만", - "None" : "없음", - "Login" : "로그인", - "Plain" : "일반", - "NT LAN Manager" : "NT LAN 관리자", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "php가 시스템 환경 변수를 올바르게 조회할 수 있도록 설정되지 않았습니다. getenv(\"PATH\")의 값이 비어 있습니다.", - "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." : "읽기 전용 설정이 활성화되었습니다. 이 상태에서는 웹 인터페이스를 통하여 일부 설정을 변경할 수 없습니다. 또한 매 업데이트마다 파일을 쓸 수 있는 상태로 변경해야 합니다.", - "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 같은 캐시/가속기 문제일 수도 있습니다.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "서버가 Microsoft Windows 환경에서 동작하고 있습니다. 최적의 사용자 경험을 위해서는 리눅스를 사용할 것을 권장합니다.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP 모듈 'fileinfo'가 존재하지 않습니다. MIME 형식 감지 결과를 향상시키기 위하여 이 모듈을 활성화하는 것을 추천합니다.", - "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.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "도메인의 루트 디렉터리 아래에 설치되어 있지 않고 시스템 cron을 사용한다면 URL 생성에 문제가 발생할 수도 있습니다. 이 문제를 해결하려면 설치본의 웹 루트 경로에 있는 config.php 파일의 \"overwrite.cli.url\" 옵션을 변경하십시오(제안: \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "CLI로 cronjob을 실행할 수 없었습니다. 다음 기술적 오류가 발생했습니다:", - "All checks passed." : "모든 검사를 통과했습니다.", - "Open documentation" : "문서 열기", - "Allow apps to use the Share API" : "앱에서 공유 API를 사용할 수 있도록 허용", - "Allow users to share via link" : "사용자별 링크 공유 허용", - "Enforce password protection" : "암호 보호 강제", - "Allow public uploads" : "공개 업로드 허용", - "Allow users to send mail notification for shared files" : "공유 파일 이메일 알림 전송 허용", - "Set default expiration date" : "기본 만료 날짜 설정", - "Expire after " : "다음 날짜 후 만료", - "days" : "일", - "Enforce expiration date" : "만료 날짜 강제", - "Allow resharing" : "재공유 허용", - "Restrict users to only share with users in their groups" : "그룹 내 사용자끼리만 공유할 수 있도록 허용", - "Allow users to send mail notification for shared files to other users" : "다른 사용자에게 공유 파일 이메일 알림 전송 허용", - "Exclude groups from sharing" : "공유에서 그룹 제외", - "These groups will still be able to receive shares, but not to initiate them." : "이 그룹의 사용자들은 다른 사용자가 공유한 파일을 받을 수는 있지만, 자기 파일을 공유할 수는 없습니다.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "공유 대화 상자에서 사용자 이름 자동 완성을 사용합니다. 이 설정을 사용하지 않으면 전체 사용자 이름을 입력해야 합니다.", - "Last cron job execution: %s." : "마지막 cron 작업 실행: %s.", - "Last cron job execution: %s. Something seems wrong." : "마지막 cron 작업 실행: %s. 문제가 발생한 것 같습니다.", - "Cron was not executed yet!" : "Cron이 실행되지 않았습니다!", - "Execute one task with each page loaded" : "개별 페이지를 불러올 때마다 실행", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php는 webcron 서비스에 등록되어 HTTP로 15분마다 cron.php에 접근합니다.", - "Use system's cron service to call the cron.php file every 15 minutes." : "시스템의 cron 서비스를 통하여 15분마다 cron.php 파일을 실행합니다.", - "Enable server-side encryption" : "서버 측 암호화 사용", - "Please read carefully before activating server-side encryption: " : "서버 측 암호화를 활성화하기 전에 읽어 보십시오:", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "암호화를 사용하면, 사용하기 시작한 시간 이후에 서버에 업로드된 모든 파일이 암호화됩니다. 나중에 암호화를 사용하지 않으려면 사용하고 있는 암호화 모듈에서 비활성화를 지원해야 하고 모든 사전 조건(예: 복구 키 설정)을 만족해야 합니다.", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "암호화만 사용하여 시스템의 보안을 유지할 수는 없습니다. 암호화 앱 동작 방식과 지원하는 사용 예제를 보려면 ownCloud 문서를 참조하십시오.", - "Be aware that encryption always increases the file size." : "암호화된 파일의 크기는 항상 커집니다.", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "데이터를 주기적으로 백업하는 것을 추천하며, 암호화를 사용하고 있다면 데이터와 더불어 암호화 키도 백업하십시오.", - "This is the final warning: Do you really want to enable encryption?" : "마지막 경고입니다. 암호화를 활성화하시겠습니까?", - "Enable encryption" : "암호화 사용", - "No encryption module loaded, please enable an encryption module in the app menu." : "암호화 모듈을 불러오지 않았습니다. 앱 메뉴에서 암호화 모듈을 활성화하십시오.", - "Select default encryption module:" : "기본 암호화 모듈 선택:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "과거에 사용하였던(ownCloud <= 8.0) 암호화된 데이터에서 키를 이전해야 합니다. \"기본 암호화 모듈\"을 활성화한 다음 'occ encryption:migrate'를 실행하십시오", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "ownCloud 8.0 이하에서 사용한 이전 암호화 키를 새 키로 이전해야 합니다.", - "Start migration" : "이전 시작", - "This is used for sending out notifications." : "알림을 보낼 때 사용됩니다.", - "Send mode" : "보내기 모드", - "Encryption" : "암호화", - "From address" : "보낸 사람 주소", - "mail" : "메일", - "Authentication method" : "인증 방법", - "Authentication required" : "인증 필요함", - "Server address" : "서버 주소", - "Port" : "포트", - "Credentials" : "자격 정보", - "SMTP Username" : "SMTP 사용자 이름", - "SMTP Password" : "SMTP 암호", - "Store credentials" : "인증 정보 저장", - "Test email settings" : "이메일 설정 시험", - "Send email" : "이메일 보내기", - "Download logfile" : "로그 파일 다운로드", - "More" : "더 중요함", - "Less" : "덜 중요함", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "로그 파일이 100MB보다 큽니다. 다운로드하는 데 시간이 걸릴 수 있습니다!", - "What to log" : "남길 로그", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "데이터베이스로 SQLite를 사용하고 있습니다. 대규모의 파일을 관리하려고 한다면 다른 데이터베이스 백엔드로 전환할 것을 권장합니다.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "특히 파일 동기화를 위해 데스크톱 클라이언트를 사용할 예정이면, SQLite를 사용하지 않는 것이 좋습니다.", - "How to do backups" : "백업 방법", - "Advanced monitoring" : "고급 모니터링", - "Performance tuning" : "성능 튜닝", - "Improving the config.php" : "config.php 개선", - "Theming" : "테마 꾸미기", - "Hardening and security guidance" : "보안 강화 지침", - "Version" : "버전", - "Developer documentation" : "개발자 문서", - "Experimental applications ahead" : "실험적인 앱 사용 예정", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "실험적인 앱은 보안 문제 검사를 통과하지 않았으며, 아직 새롭거나, 불안정하거나, 개발 중일 수도 있습니다. 이러한 앱을 설치하면 데이터 손실 및 보안 문제가 발생할 수도 있습니다.", - "Documentation:" : "문서:", - "User documentation" : "사용자 문서", - "Admin documentation" : "관리 문서", - "Show description …" : "설명 보기...", - "Hide description …" : "설명 숨기기...", - "This app has an update available." : "이 앱을 업데이트할 수 있습니다.", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "이 앱 개발자가 최대 ownCloud 버전을 지정하지 않았습니다. ownCloud 11 이후 버전에서 오류가 발생할 것입니다.", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "이 앱 개발자가 최소 ownCloud 버전을 지정하지 않았습니다. ownCloud 11 이후 버전에서 오류가 발생할 것입니다.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "다음 의존성을 만족할 수 없기 때문에 이 앱을 설치할 수 없습니다:", - "Enable only for specific groups" : "특정 그룹에만 허용", - "Uninstall App" : "앱 제거", - "Enable experimental apps" : "실험적인 앱 사용", - "SSL Root Certificates" : "SSL 루트 인증서", - "Common Name" : "공통 이름", - "Valid until" : "만료 기간:", - "Issued By" : "발급자:", - "Valid until %s" : "%s까지 유효함", - "Import root certificate" : "루트 인증서 가져오기", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "안녕하세요.<br><br>%s 계정을 사용할 수 있음을 알려 드립니다.<br><br>사용자 이름: %s<br>접근 링크: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "감사합니다!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "안녕하세요.\n\n%s 계정을 사용할 수 있음을 알려 드립니다.\n\n사용자 이름: %s\n접근 링크: %s\n\n", - "Administrator documentation" : "관리자 문서", - "Online documentation" : "온라인 문서", - "Forum" : "포럼", - "Issue tracker" : "이슈 트래커", - "Commercial support" : "상용 지원", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "현재 <strong>%s</strong> / <strong>%s</strong>을(를) 사용중입니다.", - "Profile picture" : "프로필 사진", - "Upload new" : "새로 업로드", - "Select from Files" : "파일에서 선택", - "Remove image" : "그림 삭제", - "png or jpg, max. 20 MB" : "PNG, JPG, 최대 20MB", - "Picture provided by original account" : "원래 계정에서 제공하는 사진", - "Cancel" : "취소", - "Choose as profile picture" : "프로필 사진으로 선택", - "Full name" : "전체 이름", - "No display name set" : "표시 이름이 설정되지 않음", - "Email" : "이메일", - "Your email address" : "이메일 주소", - "For password recovery and notifications" : "암호 복구와 알림에 사용", - "No email address set" : "이메일 주소가 설정되지 않음", - "You are member of the following groups:" : "다음 그룹의 구성원입니다:", - "Password" : "암호", - "Unable to change your password" : "암호를 변경할 수 없음", - "Current password" : "현재 암호", - "New password" : "새 암호", - "Change password" : "암호 변경", - "Language" : "언어", - "Help translate" : "번역 돕기", - "Get the apps to sync your files" : "파일 동기화 앱 가져오기", - "Desktop client" : "데스크톱 클라이언트", - "Android app" : "Android 앱", - "iOS app" : "iOS 앱", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "프로젝트를 지원하려면\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">개발에 참여하거나</a>\n\t\t\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">널리 알려 주십시오</a>!", - "Show First Run Wizard again" : "첫 실행 마법사 다시 보이기", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "{communityopen}ownCloud 커뮤니티{linkclose}에서 개발함. {githubopen}원본 코드{linkclose}는 {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose} 라이선스로 배포됩니다.", - "Show storage location" : "저장소 위치 보이기", - "Show last log in" : "마지막 로그인 시간 보이기", - "Show user backend" : "사용자 백엔드 보이기", - "Send email to new user" : "새 사용자에게 이메일 보내기", - "Show email address" : "이메일 주소 보이기", - "Username" : "사용자 이름", - "E-Mail" : "이메일", - "Create" : "만들기", - "Admin Recovery Password" : "관리자 복구 암호", - "Enter the recovery password in order to recover the users files during password change" : "암호 변경 시 변경된 사용자 파일을 복구하려면 복구 암호를 입력하십시오", - "Add Group" : "그룹 추가", - "Group" : "그룹", - "Everyone" : "모두", - "Admins" : "관리자", - "Default Quota" : "기본 할당량", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "저장소 할당량을 입력하십시오 (예: \"512 MB\", \"12 GB\")", - "Other" : "기타", - "Full Name" : "전체 이름", - "Group Admin for" : "다음 그룹의 관리자:", - "Quota" : "할당량", - "Storage Location" : "저장소 위치", - "User Backend" : "사용자 백엔드", - "Last Login" : "마지막 로그인", - "change full name" : "전체 이름 변경", - "set new password" : "새 암호 설정", - "change email address" : "이메일 주소 변경", - "Default" : "기본값" -},"pluralForm" :"nplurals=1; plural=0;" -}
\ No newline at end of file diff --git a/settings/l10n/ku_IQ.js b/settings/l10n/ku_IQ.js deleted file mode 100644 index 1bdf686bf4d..00000000000 --- a/settings/l10n/ku_IQ.js +++ /dev/null @@ -1,17 +0,0 @@ -OC.L10N.register( - "settings", - { - "Invalid request" : "داواکارى نادروستە", - "All" : "هەمووی", - "Enable" : "چالاککردن", - "None" : "هیچ", - "Login" : "چوونەژوورەوە", - "Encryption" : "نهێنیکردن", - "Server address" : "ناونیشانی ڕاژه", - "Cancel" : "لابردن", - "Email" : "ئیمهیل", - "Password" : "وشەی تێپەربو", - "New password" : "وشەی نهێنی نوێ", - "Username" : "ناوی بهکارهێنهر" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/ku_IQ.json b/settings/l10n/ku_IQ.json deleted file mode 100644 index cfc9fc59e7c..00000000000 --- a/settings/l10n/ku_IQ.json +++ /dev/null @@ -1,15 +0,0 @@ -{ "translations": { - "Invalid request" : "داواکارى نادروستە", - "All" : "هەمووی", - "Enable" : "چالاککردن", - "None" : "هیچ", - "Login" : "چوونەژوورەوە", - "Encryption" : "نهێنیکردن", - "Server address" : "ناونیشانی ڕاژه", - "Cancel" : "لابردن", - "Email" : "ئیمهیل", - "Password" : "وشەی تێپەربو", - "New password" : "وشەی نهێنی نوێ", - "Username" : "ناوی بهکارهێنهر" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/lb.js b/settings/l10n/lb.js deleted file mode 100644 index 88117d9b016..00000000000 --- a/settings/l10n/lb.js +++ /dev/null @@ -1,56 +0,0 @@ -OC.L10N.register( - "settings", - { - "APCu" : "APCu", - "Redis" : "Redis", - "Cron" : "Cron", - "Log" : "Log", - "Language changed" : "Sprooch huet geännert", - "Invalid request" : "Ongülteg Requête", - "Authentication error" : "Authentifikatioun's Fehler", - "Admins can't remove themself from the admin group" : "Admins kennen sech selwer net aus enger Admin Group läschen.", - "Unable to add user to group %s" : "Onmeiglech User an Grupp ze sätzen %s", - "Wrong password" : "Falscht Passwuert", - "Enabled" : "Aktivéiert", - "Saved" : "Gespäichert", - "Email sent" : "Email geschéckt", - "Email saved" : "E-mail gespäichert", - "All" : "All", - "Disable" : "Ofschalten", - "Enable" : "Aschalten", - "Delete" : "Läschen", - "Groups" : "Gruppen", - "undo" : "réckgängeg man", - "never" : "ni", - "__language_name__" : "__language_name__", - "Login" : "Login", - "Open documentation" : "Dokumentatioun opmaachen", - "Allow apps to use the Share API" : "Erlab Apps d'Share API ze benotzen", - "Allow resharing" : "Resharing erlaben", - "Authentication required" : "Authentifizéierung néideg", - "Server address" : "Server Adress", - "Port" : "Port", - "More" : "Méi", - "Less" : "Manner", - "Cheers!" : "Prost!", - "Cancel" : "Ofbriechen", - "Email" : "Email", - "Your email address" : "Deng Email Adress", - "Password" : "Passwuert", - "Unable to change your password" : "Konnt däin Passwuert net änneren", - "Current password" : "Momentan 't Passwuert", - "New password" : "Neit Passwuert", - "Change password" : "Passwuert änneren", - "Language" : "Sprooch", - "Help translate" : "Hëllef iwwersetzen", - "Desktop client" : "Desktop-Programm", - "Android app" : "Android-App", - "iOS app" : "iOS-App", - "Username" : "Benotzernumm", - "Create" : "Erstellen", - "Group" : "Grupp", - "Default Quota" : "Standard Quota", - "Other" : "Aner", - "Quota" : "Quota" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/lb.json b/settings/l10n/lb.json deleted file mode 100644 index a686607e272..00000000000 --- a/settings/l10n/lb.json +++ /dev/null @@ -1,54 +0,0 @@ -{ "translations": { - "APCu" : "APCu", - "Redis" : "Redis", - "Cron" : "Cron", - "Log" : "Log", - "Language changed" : "Sprooch huet geännert", - "Invalid request" : "Ongülteg Requête", - "Authentication error" : "Authentifikatioun's Fehler", - "Admins can't remove themself from the admin group" : "Admins kennen sech selwer net aus enger Admin Group läschen.", - "Unable to add user to group %s" : "Onmeiglech User an Grupp ze sätzen %s", - "Wrong password" : "Falscht Passwuert", - "Enabled" : "Aktivéiert", - "Saved" : "Gespäichert", - "Email sent" : "Email geschéckt", - "Email saved" : "E-mail gespäichert", - "All" : "All", - "Disable" : "Ofschalten", - "Enable" : "Aschalten", - "Delete" : "Läschen", - "Groups" : "Gruppen", - "undo" : "réckgängeg man", - "never" : "ni", - "__language_name__" : "__language_name__", - "Login" : "Login", - "Open documentation" : "Dokumentatioun opmaachen", - "Allow apps to use the Share API" : "Erlab Apps d'Share API ze benotzen", - "Allow resharing" : "Resharing erlaben", - "Authentication required" : "Authentifizéierung néideg", - "Server address" : "Server Adress", - "Port" : "Port", - "More" : "Méi", - "Less" : "Manner", - "Cheers!" : "Prost!", - "Cancel" : "Ofbriechen", - "Email" : "Email", - "Your email address" : "Deng Email Adress", - "Password" : "Passwuert", - "Unable to change your password" : "Konnt däin Passwuert net änneren", - "Current password" : "Momentan 't Passwuert", - "New password" : "Neit Passwuert", - "Change password" : "Passwuert änneren", - "Language" : "Sprooch", - "Help translate" : "Hëllef iwwersetzen", - "Desktop client" : "Desktop-Programm", - "Android app" : "Android-App", - "iOS app" : "iOS-App", - "Username" : "Benotzernumm", - "Create" : "Erstellen", - "Group" : "Grupp", - "Default Quota" : "Standard Quota", - "Other" : "Aner", - "Quota" : "Quota" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/lo.js b/settings/l10n/lo.js deleted file mode 100644 index 43069818133..00000000000 --- a/settings/l10n/lo.js +++ /dev/null @@ -1,9 +0,0 @@ -OC.L10N.register( - "settings", - { - "Sharing" : "ການແບ່ງປັນ", - "Log" : "ບັນທຶກ", - "Couldn't remove app." : "ບໍ່ສາມາດລຶບແອັບຯອອກໄດ້", - "Unable to change full name" : "ບໍ່ສາມາດປ່ຽນຊື່ເຕັມໄດ້" -}, -"nplurals=1; plural=0;"); diff --git a/settings/l10n/lo.json b/settings/l10n/lo.json deleted file mode 100644 index 942e427821e..00000000000 --- a/settings/l10n/lo.json +++ /dev/null @@ -1,7 +0,0 @@ -{ "translations": { - "Sharing" : "ການແບ່ງປັນ", - "Log" : "ບັນທຶກ", - "Couldn't remove app." : "ບໍ່ສາມາດລຶບແອັບຯອອກໄດ້", - "Unable to change full name" : "ບໍ່ສາມາດປ່ຽນຊື່ເຕັມໄດ້" -},"pluralForm" :"nplurals=1; plural=0;" -}
\ No newline at end of file diff --git a/settings/l10n/lt_LT.js b/settings/l10n/lt_LT.js deleted file mode 100644 index 71da7c1620b..00000000000 --- a/settings/l10n/lt_LT.js +++ /dev/null @@ -1,115 +0,0 @@ -OC.L10N.register( - "settings", - { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Saugos ir diegimo perspėjimai", - "Sharing" : "Dalijimasis", - "Server-side encryption" : "Šifravimas serveryje", - "External Storage" : "Išorinės saugyklos", - "Cron" : "Cron", - "Email server" : "Pašto serveris", - "Log" : "Žurnalas", - "Tips & tricks" : "Patarimai ir gudrybės", - "Updates" : "Atnaujinimai", - "Couldn't remove app." : "Nepavyko pašalinti programėlės.", - "Language changed" : "Kalba pakeista", - "Invalid request" : "Klaidinga užklausa", - "Authentication error" : "Autentikacijos klaida", - "Admins can't remove themself from the admin group" : "Administratoriai negali pašalinti savęs iš administratorių grupės", - "Unable to add user to group %s" : "Nepavyko pridėti vartotojo prie grupės %s", - "Unable to remove user from group %s" : "Nepavyko ištrinti vartotojo iš grupės %s", - "Couldn't update app." : "Nepavyko atnaujinti programos.", - "Wrong password" : "Neteisingas slaptažodis", - "No user supplied" : "Nepateiktas naudotojas", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Prašome įvesti administratoriaus atkūrimo slaptažodį, kitaip visi naudotojo suomenys bus prarasti", - "Wrong admin recovery password. Please check the password and try again." : "Netinkamas administratoriau atkūrimo slaptažodis. Prašome pasitikrinti ir bandyti vėl.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Vartotojo slaptažodžio pakeitimas negalimas, bet šifravimo raktas atnaujintas sėkmingai.", - "Unable to change password" : "Nepavyksta pakeisti slaptažodžio", - "Enabled" : "Įjungta", - "Not enabled" : "Neįjungta", - "Federated Cloud Sharing" : "Viešas dalijimasis padebesiu", - "Saved" : "Išsaugoti", - "Email sent" : "Laiškas išsiųstas", - "Invalid mail address" : "Neteisingas pašto adresas", - "Your %s account was created" : "Tavo paskyra %s sukurta", - "Unable to delete user." : "Nepavyko ištrinti vartotojo.", - "Email saved" : "El. paštas išsaugotas", - "Your full name has been changed." : "Pilnas vardas pakeistas.", - "Unable to change full name" : "Nepavyko pakeisti pilno vardo", - "All" : "Viskas", - "Please wait...." : "Prašome palaukti...", - "Error while disabling app" : "Klaida išjungiant programą", - "Disable" : "Išjungti", - "Enable" : "Įjungti", - "Error while enabling app" : "Klaida įjungiant programą", - "Updating...." : "Atnaujinama...", - "Error while updating app" : "Įvyko klaida atnaujinant programą", - "Updated" : "Atnaujinta", - "Delete" : "Ištrinti", - "Select a profile picture" : "Pažymėkite profilio paveikslėlį", - "Very weak password" : "Labai silpnas slaptažodis", - "Weak password" : "Silpnas slaptažodis", - "So-so password" : "Neblogas slaptažodis", - "Good password" : "Geras slaptažodis", - "Strong password" : "Stiprus slaptažodis", - "Groups" : "Grupės", - "undo" : "anuliuoti", - "never" : "niekada", - "add group" : "pridėti grupę", - "A valid username must be provided" : "Vartotojo vardas turi būti tinkamas", - "A valid password must be provided" : "Slaptažodis turi būti tinkamas", - "__language_name__" : "Lietuvių", - "Unlimited" : "Neribota", - "Fatal issues only" : "Tik kritinės problemos", - "None" : "Nieko", - "Login" : "Prisijungti", - "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ą.", - "Open documentation" : "Atidaryti dokumentą", - "Allow apps to use the Share API" : "Leidžia programoms naudoti Share API", - "Allow public uploads" : "Leisti viešus įkėlimus", - "days" : "dienos", - "Allow resharing" : "Leisti dalintis", - "Execute one task with each page loaded" : "Įvykdyti vieną užduotį su kiekvieno puslapio įkėlimu", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php yra registruotas tinklapio suplanuotų užduočių paslaugose, kad iškviesti cron.php kas 15 minučių per http.", - "Encryption" : "Šifravimas", - "Authentication required" : "Reikalinga autentikacija", - "Server address" : "Serverio adresas", - "Port" : "Prievadas", - "More" : "Daugiau", - "Less" : "Mažiau", - "Version" : "Versija", - "Cheers!" : "Sveikinimai!", - "Forum" : "Forumas", - "Profile picture" : "Profilio paveikslėlis", - "Upload new" : "Įkelti naują", - "Remove image" : "Pašalinti paveikslėlį", - "Cancel" : "Atšaukti", - "Email" : "El. Paštas", - "Your email address" : "Jūsų el. pašto adresas", - "Password" : "Slaptažodis", - "Unable to change your password" : "Neįmanoma pakeisti slaptažodžio", - "Current password" : "Dabartinis slaptažodis", - "New password" : "Naujas slaptažodis", - "Change password" : "Pakeisti slaptažodį", - "Language" : "Kalba", - "Help translate" : "Padėkite išversti", - "Get the apps to sync your files" : "Atsisiųskite programėlių, kad sinchronizuotumėte savo failus", - "Desktop client" : "Darbastalio klientas", - "Android app" : "Android programa", - "iOS app" : "iOS programa", - "Show First Run Wizard again" : "Rodyti pirmo karto vedlį dar kartą", - "Username" : "Prisijungimo vardas", - "Create" : "Sukurti", - "Admin Recovery Password" : "Administracinis atkūrimo slaptažodis", - "Enter the recovery password in order to recover the users files during password change" : "Įveskite atkūrimo slaptažodį, kad atkurti naudotojo failus keičiant slaptažodį", - "Group" : "Grupė", - "Default Quota" : "Numatytoji kvota", - "Other" : "Kita", - "Full Name" : "Pilnas vardas", - "Quota" : "Limitas", - "change full name" : "keisti pilną vardą", - "set new password" : "nustatyti naują slaptažodį", - "Default" : "Numatytasis" -}, -"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);"); diff --git a/settings/l10n/lt_LT.json b/settings/l10n/lt_LT.json deleted file mode 100644 index 7b3e8640564..00000000000 --- a/settings/l10n/lt_LT.json +++ /dev/null @@ -1,113 +0,0 @@ -{ "translations": { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Saugos ir diegimo perspėjimai", - "Sharing" : "Dalijimasis", - "Server-side encryption" : "Šifravimas serveryje", - "External Storage" : "Išorinės saugyklos", - "Cron" : "Cron", - "Email server" : "Pašto serveris", - "Log" : "Žurnalas", - "Tips & tricks" : "Patarimai ir gudrybės", - "Updates" : "Atnaujinimai", - "Couldn't remove app." : "Nepavyko pašalinti programėlės.", - "Language changed" : "Kalba pakeista", - "Invalid request" : "Klaidinga užklausa", - "Authentication error" : "Autentikacijos klaida", - "Admins can't remove themself from the admin group" : "Administratoriai negali pašalinti savęs iš administratorių grupės", - "Unable to add user to group %s" : "Nepavyko pridėti vartotojo prie grupės %s", - "Unable to remove user from group %s" : "Nepavyko ištrinti vartotojo iš grupės %s", - "Couldn't update app." : "Nepavyko atnaujinti programos.", - "Wrong password" : "Neteisingas slaptažodis", - "No user supplied" : "Nepateiktas naudotojas", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Prašome įvesti administratoriaus atkūrimo slaptažodį, kitaip visi naudotojo suomenys bus prarasti", - "Wrong admin recovery password. Please check the password and try again." : "Netinkamas administratoriau atkūrimo slaptažodis. Prašome pasitikrinti ir bandyti vėl.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Vartotojo slaptažodžio pakeitimas negalimas, bet šifravimo raktas atnaujintas sėkmingai.", - "Unable to change password" : "Nepavyksta pakeisti slaptažodžio", - "Enabled" : "Įjungta", - "Not enabled" : "Neįjungta", - "Federated Cloud Sharing" : "Viešas dalijimasis padebesiu", - "Saved" : "Išsaugoti", - "Email sent" : "Laiškas išsiųstas", - "Invalid mail address" : "Neteisingas pašto adresas", - "Your %s account was created" : "Tavo paskyra %s sukurta", - "Unable to delete user." : "Nepavyko ištrinti vartotojo.", - "Email saved" : "El. paštas išsaugotas", - "Your full name has been changed." : "Pilnas vardas pakeistas.", - "Unable to change full name" : "Nepavyko pakeisti pilno vardo", - "All" : "Viskas", - "Please wait...." : "Prašome palaukti...", - "Error while disabling app" : "Klaida išjungiant programą", - "Disable" : "Išjungti", - "Enable" : "Įjungti", - "Error while enabling app" : "Klaida įjungiant programą", - "Updating...." : "Atnaujinama...", - "Error while updating app" : "Įvyko klaida atnaujinant programą", - "Updated" : "Atnaujinta", - "Delete" : "Ištrinti", - "Select a profile picture" : "Pažymėkite profilio paveikslėlį", - "Very weak password" : "Labai silpnas slaptažodis", - "Weak password" : "Silpnas slaptažodis", - "So-so password" : "Neblogas slaptažodis", - "Good password" : "Geras slaptažodis", - "Strong password" : "Stiprus slaptažodis", - "Groups" : "Grupės", - "undo" : "anuliuoti", - "never" : "niekada", - "add group" : "pridėti grupę", - "A valid username must be provided" : "Vartotojo vardas turi būti tinkamas", - "A valid password must be provided" : "Slaptažodis turi būti tinkamas", - "__language_name__" : "Lietuvių", - "Unlimited" : "Neribota", - "Fatal issues only" : "Tik kritinės problemos", - "None" : "Nieko", - "Login" : "Prisijungti", - "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ą.", - "Open documentation" : "Atidaryti dokumentą", - "Allow apps to use the Share API" : "Leidžia programoms naudoti Share API", - "Allow public uploads" : "Leisti viešus įkėlimus", - "days" : "dienos", - "Allow resharing" : "Leisti dalintis", - "Execute one task with each page loaded" : "Įvykdyti vieną užduotį su kiekvieno puslapio įkėlimu", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php yra registruotas tinklapio suplanuotų užduočių paslaugose, kad iškviesti cron.php kas 15 minučių per http.", - "Encryption" : "Šifravimas", - "Authentication required" : "Reikalinga autentikacija", - "Server address" : "Serverio adresas", - "Port" : "Prievadas", - "More" : "Daugiau", - "Less" : "Mažiau", - "Version" : "Versija", - "Cheers!" : "Sveikinimai!", - "Forum" : "Forumas", - "Profile picture" : "Profilio paveikslėlis", - "Upload new" : "Įkelti naują", - "Remove image" : "Pašalinti paveikslėlį", - "Cancel" : "Atšaukti", - "Email" : "El. Paštas", - "Your email address" : "Jūsų el. pašto adresas", - "Password" : "Slaptažodis", - "Unable to change your password" : "Neįmanoma pakeisti slaptažodžio", - "Current password" : "Dabartinis slaptažodis", - "New password" : "Naujas slaptažodis", - "Change password" : "Pakeisti slaptažodį", - "Language" : "Kalba", - "Help translate" : "Padėkite išversti", - "Get the apps to sync your files" : "Atsisiųskite programėlių, kad sinchronizuotumėte savo failus", - "Desktop client" : "Darbastalio klientas", - "Android app" : "Android programa", - "iOS app" : "iOS programa", - "Show First Run Wizard again" : "Rodyti pirmo karto vedlį dar kartą", - "Username" : "Prisijungimo vardas", - "Create" : "Sukurti", - "Admin Recovery Password" : "Administracinis atkūrimo slaptažodis", - "Enter the recovery password in order to recover the users files during password change" : "Įveskite atkūrimo slaptažodį, kad atkurti naudotojo failus keičiant slaptažodį", - "Group" : "Grupė", - "Default Quota" : "Numatytoji kvota", - "Other" : "Kita", - "Full Name" : "Pilnas vardas", - "Quota" : "Limitas", - "change full name" : "keisti pilną vardą", - "set new password" : "nustatyti naują slaptažodį", - "Default" : "Numatytasis" -},"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);" -}
\ No newline at end of file diff --git a/settings/l10n/lv.js b/settings/l10n/lv.js deleted file mode 100644 index f12cb72d221..00000000000 --- a/settings/l10n/lv.js +++ /dev/null @@ -1,157 +0,0 @@ -OC.L10N.register( - "settings", - { - "Sharing" : "Dalīšanās", - "External Storage" : "Ārējā krātuve", - "Cron" : "Cron", - "Log" : "Žurnāls", - "Updates" : "Atjauninājumi", - "Couldn't remove app." : "Nebija iespējams atslēgt lietoni.", - "Language changed" : "Valoda tika nomainīta", - "Invalid request" : "Nederīgs vaicājums", - "Authentication error" : "Autentifikācijas kļūda", - "Admins can't remove themself from the admin group" : "Administratori nevar izņemt paši sevi no administratoru grupas", - "Unable to add user to group %s" : "Nevar pievienot lietotāju grupai %s", - "Unable to remove user from group %s" : "Nevar izņemt lietotāju no grupas %s", - "Couldn't update app." : "Nevarēja atjaunināt lietotni.", - "Wrong password" : "Nepareiza parole", - "No user supplied" : "Nav norādīts lietotājs", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Lūdzu ievadiet administratora atjaunošanas paroli, citādi visi lietotāja dati tiks zaudēti", - "Wrong admin recovery password. Please check the password and try again." : "Nepareiza administratora atjaunošanas parole. Lūdzu pārbaudiet paroli un mēģiniet vēlreiz.", - "Unable to change password" : "Nav iespējams nomainīt paroli", - "Enabled" : "Pievienots", - "Not enabled" : "Nav pievienots", - "Federated Cloud Sharing" : "Federatīva mākoņkoplietošana", - "Group already exists." : "Grupa jau eksistē.", - "Unable to add group." : "Nevar pievienot grupu.", - "Unable to delete group." : "Nevar izdzēst grupu.", - "Saved" : "Saglabāts", - "test email settings" : "testēt e-pasta iestatījumus", - "Email sent" : "Vēstule nosūtīta", - "You need to set your user email before being able to send test emails." : "Nepieciešams norādīt sava lietotāja e-pasta adresi, lai nosūtīta testa e-pastus.", - "Invalid mail address" : "Nepareiza e-pasta adrese", - "A user with that name already exists." : "Jau pastāv lietotājs ar šo vārdu.", - "Unable to create user." : "Nevar izveidot lietotāju.", - "Your %s account was created" : "Konts %s ir izveidots", - "Unable to delete user." : "Nevar izdzēst lietotāju.", - "Forbidden" : "Pieeja liegta", - "Invalid user" : "Nepareizs lietotājs", - "Unable to change mail address" : "Nevar nomainīt e-pasta adresi", - "Email saved" : "E-pasts tika saglabāts", - "Your full name has been changed." : "Jūsu pilnais vārds tika mainīts.", - "Unable to change full name" : "Nav iespējams nomainīt jūsu pilno vārdu", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Vai esat pārliecināts, ka vēlaties pievienot \"{domain}\" kā uzticamu domēnu?", - "Add trusted domain" : "Pievienot uzticamu domēnu", - "Sending..." : "Sūta...", - "All" : "Visi", - "No apps found for your version" : "Neatrada aplikāciju jūsu versijai", - "Please wait...." : "Lūdzu, uzgaidiet....", - "Error while disabling app" : "Kļūda, atvienojot lietotni", - "Disable" : "Deaktivēt", - "Enable" : "Aktivēt", - "Error while enabling app" : "Kļūda, pievienojot lietotni", - "Updating...." : "Atjaunina....", - "Error while updating app" : "Kļūda, atjauninot lietotni", - "Updated" : "Atjaunināta", - "Uninstalling ...." : "Atinstalē ....", - "Error while uninstalling app" : "Kļūda, atinstalējot lietotni", - "Uninstall" : "Atinstalēt", - "Valid until {date}" : "Valīds līdz {date}", - "Delete" : "Dzēst", - "An error occurred: {message}" : "Notika kļūda: {message}", - "Select a profile picture" : "Izvēlieties profila attēlu", - "Very weak password" : "Ļoti vāja parole", - "Weak password" : "Vāja parole", - "So-so password" : "Normāla parole", - "Good password" : "Laba parole", - "Strong password" : "Lieliska parole", - "Groups" : "Grupas", - "Unable to delete {objName}" : "Nevar izdzēst {objName}", - "A valid group name must be provided" : "Jānorāda derīgs grupas nosaukums", - "deleted {groupName}" : "grupa {groupName} dzēsta", - "undo" : "atsaukt", - "no group" : "neviena grupa", - "never" : "nekad", - "deleted {userName}" : "lietotājs {userName} dzēsts", - "add group" : "pievienot grupu", - "A valid username must be provided" : "Jānorāda derīgs lietotājvārds", - "A valid password must be provided" : "Jānorāda derīga parole", - "A valid email must be provided" : "Jānorāda derīga e-pasta adrese", - "__language_name__" : "__valodas_nosaukums__", - "Unlimited" : "Neierobežota", - "Sync clients" : "Sinhronizācijas lietotnes", - "Everything (fatal issues, errors, warnings, info, debug)" : "Viss (letālas problēmas, kļūdas, brīdinājumi, informatīvas ziņas, atkļūdošanas paziņojumi)", - "Info, warnings, errors and fatal issues" : "Informatīvas ziņas, brīdinājumi, kļūdas un letālas problēmas", - "Warnings, errors and fatal issues" : "Brīdinājumi, kļūdas un letālas problēmas", - "Errors and fatal issues" : "Kļūdas un letālas problēmas", - "Fatal issues only" : "Tikai letālas problēmas", - "None" : "Nav", - "Login" : "Ierakstīties", - "Plain" : "vienkāršs teksts", - "NT LAN Manager" : "NT LAN Pārvaldnieks", - "SSL" : "SSL", - "TLS" : "TLS", - "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.", - "Open documentation" : "Atvērt dokumentāciju", - "Allow apps to use the Share API" : "Ļauj lietotnēm izmantot koplietošanas API", - "Allow users to share via link" : "Ļaut lietotājiem dalīties caur saitēm", - "Allow public uploads" : "Atļaut publisko augšupielādi", - "Expire after " : "Nederīga pēc", - "days" : "dienas", - "Allow resharing" : "Atļaut atkārtotu koplietošanu", - "Execute one task with each page loaded" : "Izpildīt vienu uzdevumu ar katru ielādēto lapu", - "Enable encryption" : "Ieslēgt šifrēšanu", - "Encryption" : "Šifrēšana", - "From address" : "No adreses", - "Server address" : "Servera adrese", - "Port" : "Ports", - "Credentials" : "Akreditācijas dati", - "SMTP Username" : "SMTP lietotājvārds", - "SMTP Password" : "SMTP parole", - "Test email settings" : "Izmēģināt e-pasta iestatījumus", - "Send email" : "Sūtīt e-pastu", - "More" : "Vairāk", - "Less" : "Mazāk", - "Version" : "Versija", - "Documentation:" : "Dokumentācija:", - "User documentation" : "Lietotāja dokumentācija", - "Admin documentation" : "Administratora dokumentācija", - "Show description …" : "Rādīt aprakstu …", - "Hide description …" : "Slēpt aprakstu …", - "Online documentation" : "Tiešsaistes dokumentācija", - "Forum" : "Forums", - "Profile picture" : "Profila attēls", - "Upload new" : "Ielādēt jaunu", - "Remove image" : "Novākt attēlu", - "Cancel" : "Atcelt", - "Email" : "E-pasts", - "Your email address" : "Jūsu e-pasta adrese", - "Password" : "Parole", - "Unable to change your password" : "Nevar nomainīt jūsu paroli", - "Current password" : "Pašreizējā parole", - "New password" : "Jauna parole", - "Change password" : "Mainīt paroli", - "Language" : "Valoda", - "Help translate" : "Palīdzi tulkot", - "Get the apps to sync your files" : "Saņem lietotnes, lai sinhronizētu savas datnes", - "Desktop client" : "Darbvirsmas klients", - "Android app" : "Android lietotne", - "iOS app" : "iOS lietotne", - "Show First Run Wizard again" : "Vēlreiz rādīt pirmās palaišanas vedni", - "Send email to new user" : "Sūtīt e-pastu jaunajam lietotājam", - "Show email address" : "Rādīt e-pasta adreses", - "Username" : "Lietotājvārds", - "E-Mail" : "E-pasts", - "Create" : "Izveidot", - "Admin Recovery Password" : "Administratora atgūšanas parole", - "Enter the recovery password in order to recover the users files during password change" : "Ievadiet atgūšanas paroli, lai varētu atgūt lietotāja failus paroles maiņas laikā.", - "Add Group" : "Pievienot grupu", - "Group" : "Grupa", - "Default Quota" : "Apjoms pēc noklusējuma", - "Other" : "Cits", - "Full Name" : "Pilns vārds", - "Quota" : "Apjoms", - "set new password" : "iestatīt jaunu paroli", - "Default" : "Noklusējuma" -}, -"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"); diff --git a/settings/l10n/lv.json b/settings/l10n/lv.json deleted file mode 100644 index 5f7c68c0e8e..00000000000 --- a/settings/l10n/lv.json +++ /dev/null @@ -1,155 +0,0 @@ -{ "translations": { - "Sharing" : "Dalīšanās", - "External Storage" : "Ārējā krātuve", - "Cron" : "Cron", - "Log" : "Žurnāls", - "Updates" : "Atjauninājumi", - "Couldn't remove app." : "Nebija iespējams atslēgt lietoni.", - "Language changed" : "Valoda tika nomainīta", - "Invalid request" : "Nederīgs vaicājums", - "Authentication error" : "Autentifikācijas kļūda", - "Admins can't remove themself from the admin group" : "Administratori nevar izņemt paši sevi no administratoru grupas", - "Unable to add user to group %s" : "Nevar pievienot lietotāju grupai %s", - "Unable to remove user from group %s" : "Nevar izņemt lietotāju no grupas %s", - "Couldn't update app." : "Nevarēja atjaunināt lietotni.", - "Wrong password" : "Nepareiza parole", - "No user supplied" : "Nav norādīts lietotājs", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Lūdzu ievadiet administratora atjaunošanas paroli, citādi visi lietotāja dati tiks zaudēti", - "Wrong admin recovery password. Please check the password and try again." : "Nepareiza administratora atjaunošanas parole. Lūdzu pārbaudiet paroli un mēģiniet vēlreiz.", - "Unable to change password" : "Nav iespējams nomainīt paroli", - "Enabled" : "Pievienots", - "Not enabled" : "Nav pievienots", - "Federated Cloud Sharing" : "Federatīva mākoņkoplietošana", - "Group already exists." : "Grupa jau eksistē.", - "Unable to add group." : "Nevar pievienot grupu.", - "Unable to delete group." : "Nevar izdzēst grupu.", - "Saved" : "Saglabāts", - "test email settings" : "testēt e-pasta iestatījumus", - "Email sent" : "Vēstule nosūtīta", - "You need to set your user email before being able to send test emails." : "Nepieciešams norādīt sava lietotāja e-pasta adresi, lai nosūtīta testa e-pastus.", - "Invalid mail address" : "Nepareiza e-pasta adrese", - "A user with that name already exists." : "Jau pastāv lietotājs ar šo vārdu.", - "Unable to create user." : "Nevar izveidot lietotāju.", - "Your %s account was created" : "Konts %s ir izveidots", - "Unable to delete user." : "Nevar izdzēst lietotāju.", - "Forbidden" : "Pieeja liegta", - "Invalid user" : "Nepareizs lietotājs", - "Unable to change mail address" : "Nevar nomainīt e-pasta adresi", - "Email saved" : "E-pasts tika saglabāts", - "Your full name has been changed." : "Jūsu pilnais vārds tika mainīts.", - "Unable to change full name" : "Nav iespējams nomainīt jūsu pilno vārdu", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Vai esat pārliecināts, ka vēlaties pievienot \"{domain}\" kā uzticamu domēnu?", - "Add trusted domain" : "Pievienot uzticamu domēnu", - "Sending..." : "Sūta...", - "All" : "Visi", - "No apps found for your version" : "Neatrada aplikāciju jūsu versijai", - "Please wait...." : "Lūdzu, uzgaidiet....", - "Error while disabling app" : "Kļūda, atvienojot lietotni", - "Disable" : "Deaktivēt", - "Enable" : "Aktivēt", - "Error while enabling app" : "Kļūda, pievienojot lietotni", - "Updating...." : "Atjaunina....", - "Error while updating app" : "Kļūda, atjauninot lietotni", - "Updated" : "Atjaunināta", - "Uninstalling ...." : "Atinstalē ....", - "Error while uninstalling app" : "Kļūda, atinstalējot lietotni", - "Uninstall" : "Atinstalēt", - "Valid until {date}" : "Valīds līdz {date}", - "Delete" : "Dzēst", - "An error occurred: {message}" : "Notika kļūda: {message}", - "Select a profile picture" : "Izvēlieties profila attēlu", - "Very weak password" : "Ļoti vāja parole", - "Weak password" : "Vāja parole", - "So-so password" : "Normāla parole", - "Good password" : "Laba parole", - "Strong password" : "Lieliska parole", - "Groups" : "Grupas", - "Unable to delete {objName}" : "Nevar izdzēst {objName}", - "A valid group name must be provided" : "Jānorāda derīgs grupas nosaukums", - "deleted {groupName}" : "grupa {groupName} dzēsta", - "undo" : "atsaukt", - "no group" : "neviena grupa", - "never" : "nekad", - "deleted {userName}" : "lietotājs {userName} dzēsts", - "add group" : "pievienot grupu", - "A valid username must be provided" : "Jānorāda derīgs lietotājvārds", - "A valid password must be provided" : "Jānorāda derīga parole", - "A valid email must be provided" : "Jānorāda derīga e-pasta adrese", - "__language_name__" : "__valodas_nosaukums__", - "Unlimited" : "Neierobežota", - "Sync clients" : "Sinhronizācijas lietotnes", - "Everything (fatal issues, errors, warnings, info, debug)" : "Viss (letālas problēmas, kļūdas, brīdinājumi, informatīvas ziņas, atkļūdošanas paziņojumi)", - "Info, warnings, errors and fatal issues" : "Informatīvas ziņas, brīdinājumi, kļūdas un letālas problēmas", - "Warnings, errors and fatal issues" : "Brīdinājumi, kļūdas un letālas problēmas", - "Errors and fatal issues" : "Kļūdas un letālas problēmas", - "Fatal issues only" : "Tikai letālas problēmas", - "None" : "Nav", - "Login" : "Ierakstīties", - "Plain" : "vienkāršs teksts", - "NT LAN Manager" : "NT LAN Pārvaldnieks", - "SSL" : "SSL", - "TLS" : "TLS", - "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.", - "Open documentation" : "Atvērt dokumentāciju", - "Allow apps to use the Share API" : "Ļauj lietotnēm izmantot koplietošanas API", - "Allow users to share via link" : "Ļaut lietotājiem dalīties caur saitēm", - "Allow public uploads" : "Atļaut publisko augšupielādi", - "Expire after " : "Nederīga pēc", - "days" : "dienas", - "Allow resharing" : "Atļaut atkārtotu koplietošanu", - "Execute one task with each page loaded" : "Izpildīt vienu uzdevumu ar katru ielādēto lapu", - "Enable encryption" : "Ieslēgt šifrēšanu", - "Encryption" : "Šifrēšana", - "From address" : "No adreses", - "Server address" : "Servera adrese", - "Port" : "Ports", - "Credentials" : "Akreditācijas dati", - "SMTP Username" : "SMTP lietotājvārds", - "SMTP Password" : "SMTP parole", - "Test email settings" : "Izmēģināt e-pasta iestatījumus", - "Send email" : "Sūtīt e-pastu", - "More" : "Vairāk", - "Less" : "Mazāk", - "Version" : "Versija", - "Documentation:" : "Dokumentācija:", - "User documentation" : "Lietotāja dokumentācija", - "Admin documentation" : "Administratora dokumentācija", - "Show description …" : "Rādīt aprakstu …", - "Hide description …" : "Slēpt aprakstu …", - "Online documentation" : "Tiešsaistes dokumentācija", - "Forum" : "Forums", - "Profile picture" : "Profila attēls", - "Upload new" : "Ielādēt jaunu", - "Remove image" : "Novākt attēlu", - "Cancel" : "Atcelt", - "Email" : "E-pasts", - "Your email address" : "Jūsu e-pasta adrese", - "Password" : "Parole", - "Unable to change your password" : "Nevar nomainīt jūsu paroli", - "Current password" : "Pašreizējā parole", - "New password" : "Jauna parole", - "Change password" : "Mainīt paroli", - "Language" : "Valoda", - "Help translate" : "Palīdzi tulkot", - "Get the apps to sync your files" : "Saņem lietotnes, lai sinhronizētu savas datnes", - "Desktop client" : "Darbvirsmas klients", - "Android app" : "Android lietotne", - "iOS app" : "iOS lietotne", - "Show First Run Wizard again" : "Vēlreiz rādīt pirmās palaišanas vedni", - "Send email to new user" : "Sūtīt e-pastu jaunajam lietotājam", - "Show email address" : "Rādīt e-pasta adreses", - "Username" : "Lietotājvārds", - "E-Mail" : "E-pasts", - "Create" : "Izveidot", - "Admin Recovery Password" : "Administratora atgūšanas parole", - "Enter the recovery password in order to recover the users files during password change" : "Ievadiet atgūšanas paroli, lai varētu atgūt lietotāja failus paroles maiņas laikā.", - "Add Group" : "Pievienot grupu", - "Group" : "Grupa", - "Default Quota" : "Apjoms pēc noklusējuma", - "Other" : "Cits", - "Full Name" : "Pilns vārds", - "Quota" : "Apjoms", - "set new password" : "iestatīt jaunu paroli", - "Default" : "Noklusējuma" -},"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);" -}
\ No newline at end of file diff --git a/settings/l10n/mk.js b/settings/l10n/mk.js deleted file mode 100644 index 7c49081c5b0..00000000000 --- a/settings/l10n/mk.js +++ /dev/null @@ -1,190 +0,0 @@ -OC.L10N.register( - "settings", - { - "Security & setup warnings" : "Предупредувања за сигурност и подесувања", - "Sharing" : "Споделување", - "Server-side encryption" : "Енкрипција на страна на серверот", - "External Storage" : "Надворешно складиште", - "Cron" : "Крон", - "Email server" : "Сервер за е-пошта", - "Log" : "Записник", - "Tips & tricks" : "Совети и трикови", - "Updates" : "Ажурирања", - "Couldn't remove app." : "Не можам да ја отстранам апликацијата.", - "Language changed" : "Јазикот е сменет", - "Invalid request" : "Неправилно барање", - "Authentication error" : "Грешка во автентикација", - "Admins can't remove themself from the admin group" : "Администраторите неможе да се избришат себеси од админ групата", - "Unable to add user to group %s" : "Неможе да додадам корисник во група %s", - "Unable to remove user from group %s" : "Неможе да избришам корисник од група %s", - "Couldn't update app." : "Не можам да ја надградам апликацијата.", - "Wrong password" : "Погрешна лозинка", - "No user supplied" : "Нема корисничко име", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Ве молам дадете лозинка за поврат на администраторот, или сите кориснички податоци ќе бидат изгубени", - "Wrong admin recovery password. Please check the password and try again." : "Погрешна лозинка за поврат на администраторот. Ве молам проверете ја лозинката и пробајте повторно.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Позадината не подржува промена на лозинката, но корисничкиот клуч за енкрипција беше успешно ажуриран.", - "Unable to change password" : "Вашата лозинка неможе да се смени", - "Enabled" : "Овозможен", - "Not enabled" : "Не е овозможено", - "Federated Cloud Sharing" : "Федерирано клауд споделување", - "A problem occurred, please check your log files (Error: %s)" : "Се случи грешка, ве молам проверете ги вашите датотеки за логови (Грешка: %s)", - "Migration Completed" : "Миграцијата заврши", - "Group already exists." : "Групата веќе постои.", - "Unable to add group." : "Не можам да додадам група.", - "Unable to delete group." : "Не можам да избришам група.", - "log-level out of allowed range" : "нивото на логирање е надвор од дозволениот опсег", - "Saved" : "Снимено", - "test email settings" : "провери ги нагодувањата за електронска пошта", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Се случи грешка при праќање на порака. Ве молам проверете ги вашите подесувања. (Error: %s)", - "Email sent" : "Е-порака пратена", - "Invalid mail address" : "Неправилна електронска адреса/пошта", - "A user with that name already exists." : "Корисник со ова име веќе постои.", - "Unable to create user." : "Неможе да додадам корисник.", - "Your %s account was created" : "Вашата %s сметка е креирана", - "Unable to delete user." : "Неможам да избришам корисник", - "Forbidden" : "Забрането", - "Invalid user" : "Неправилен корисник", - "Unable to change mail address" : "Не можам да ја променам електронската адреса/пошта", - "Email saved" : "Електронската пошта е снимена", - "Your full name has been changed." : "Вашето целосно име е променето.", - "Unable to change full name" : "Не можам да го променам целото име", - "Add trusted domain" : "Додади доверлив домејн", - "Migration started …" : "Миграцијата е започнаа ...", - "Sending..." : "Испраќам...", - "Official" : "Официјален", - "Approved" : "Одобрен", - "Experimental" : "Експериментален", - "All" : "Сите", - "No apps found for your version" : "За вашата верзија не се пронајдени апликации", - "Update to %s" : "Надгради на %s", - "Please wait...." : "Ве молам почекајте ...", - "Error while disabling app" : "Грешка при исклучувањето на апликацијата", - "Disable" : "Оневозможи", - "Enable" : "Овозможи", - "Error while enabling app" : "Грешка при вклучувањето на апликацијата", - "Updating...." : "Надградувам ...", - "Error while updating app" : "Грешка додека ја надградувам апликацијата", - "Updated" : "Надграден", - "Uninstalling ...." : "Деинсталирам ...", - "Error while uninstalling app" : "Грешка при деинсталација на апликацијата", - "Uninstall" : "Деинсталирај", - "App update" : "Надградба на апликацијата", - "Valid until {date}" : "Валидно до {date}", - "Delete" : "Избриши", - "An error occurred: {message}" : "Се случи грешка: {message}", - "Select a profile picture" : "Одбери фотографија за профилот", - "Very weak password" : "Многу слаба лозинка", - "Weak password" : "Слаба лозинка", - "So-so password" : "Така така лозинка", - "Good password" : "Добра лозинка", - "Strong password" : "Јака лозинка", - "Groups" : "Групи", - "Unable to delete {objName}" : "Не можам да избришам {objName}", - "Error creating group: {message}" : "Грешка при креирање на група: {message}", - "A valid group name must be provided" : "Мора да се обезбеди валидно име на група", - "deleted {groupName}" : "избришано {groupName}", - "undo" : "врати", - "no group" : "нема група", - "never" : "никогаш", - "deleted {userName}" : "избришан {userName}", - "add group" : "додади група", - "A valid username must be provided" : "Мора да се обезбеди валидно корисничко име ", - "Error creating user: {message}" : "Грешка при креирање на корисник: {message}", - "A valid password must be provided" : "Мора да се обезбеди валидна лозинка", - "A valid email must be provided" : "Мора да се обезбеди валидна електронска пошта", - "__language_name__" : "__language_name__", - "Unlimited" : "Неограничено", - "Personal info" : "Лични податоци", - "Sync clients" : "Клиенти за синхронизација", - "Info, warnings, errors and fatal issues" : "Информации, предупредувања, грешки и фатални работи", - "Warnings, errors and fatal issues" : "Предупредувања, грешки и фатални работи", - "Errors and fatal issues" : "Грешки и фатални работи", - "Fatal issues only" : "Само фатални работи", - "None" : "Ништо", - "Login" : "Најава", - "Plain" : "Чиста", - "NT LAN Manager" : "NT LAN Менаџер", - "SSL" : "SSL", - "TLS" : "TLS", - "All checks passed." : "Сите проверки се поминати.", - "Open documentation" : "Отвори ја документацијата", - "Allow apps to use the Share API" : "Дозволете апликациите да го користат API-то за споделување", - "Allow users to share via link" : "Допушти корисниците да споделуваат со линкови", - "Enforce password protection" : "Наметни заштита на лозинка", - "Allow public uploads" : "Дозволи јавен аплоуд", - "Set default expiration date" : "Постави основен датум на истекување", - "Expire after " : "Истекува по", - "days" : "денови", - "Enforce expiration date" : "Наметни датум на траење", - "Allow resharing" : "Овозможи повторно споделување", - "Allow sharing with groups" : "Овозможи споделување со групи", - "Restrict users to only share with users in their groups" : "Ограничи корисниците да споделуваат со корисници во своите групи", - "Exclude groups from sharing" : "Исклучи групи од споделување", - "Execute one task with each page loaded" : "Изврши по една задача со секоја вчитана страница", - "Enable server-side encryption" : "Овозможи енкрипција на страна на серверот", - "Enable encryption" : "Овозможи енкрипција", - "Start migration" : "Започни ја миграцијата", - "This is used for sending out notifications." : "Ова се користи за испраќање на известувања.", - "Send mode" : "Мод на испраќање", - "Encryption" : "Енкрипција", - "From address" : "Од адреса", - "mail" : "Електронска пошта", - "Authentication method" : "Метод на автентификација", - "Authentication required" : "Потребна е автентификација", - "Server address" : "Адреса на сервер", - "Port" : "Порта", - "Credentials" : "Акредитиви", - "SMTP Username" : "SMTP корисничко име", - "SMTP Password" : "SMTP лозинка", - "Test email settings" : "Провери ги нагодувањаа за електронска пошта", - "Send email" : "Испрати пошта", - "Download logfile" : "Преземи ја датотеката со логови", - "More" : "Повеќе", - "Less" : "Помалку", - "What to log" : "Што да логирам", - "How to do backups" : "Како да правам резервни копии", - "Advanced monitoring" : "Напредно мониторирање", - "Performance tuning" : "Нагодување на перформансите", - "Improving the config.php" : "Подобруваер на config.php", - "Theming" : "Поставување на тема", - "Hardening and security guidance" : "Заштита и насоки за безбедност", - "Version" : "Верзија", - "Developer documentation" : "Документација за програмери", - "Documentation:" : "Документација:", - "Enable only for specific groups" : "Овозможи само на специфицирани групи", - "Cheers!" : "Поздрав!", - "Forum" : "Форум", - "Profile picture" : "Фотографија за профил", - "Upload new" : "Префрли нова", - "Remove image" : "Отстрани ја фотографијата", - "Cancel" : "Откажи", - "Email" : "Е-пошта", - "Your email address" : "Вашата адреса за е-пошта", - "Password" : "Лозинка", - "Unable to change your password" : "Вашата лозинка неможе да се смени", - "Current password" : "Моментална лозинка", - "New password" : "Нова лозинка", - "Change password" : "Смени лозинка", - "Language" : "Јазик", - "Help translate" : "Помогни во преводот", - "Get the apps to sync your files" : "Преземете апликации за синхронизирање на вашите датотеки", - "Show First Run Wizard again" : "Прикажи го повторно волшебникот при првото стартување", - "Username" : "Корисничко име", - "Create" : "Создај", - "Admin Recovery Password" : "Обновување на Admin лозинката", - "Add Group" : "Додади група", - "Group" : "Група", - "Everyone" : "Секој", - "Admins" : "Администратори", - "Default Quota" : "Предефинирана квота", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Ве молам внесете квота за просторот (нпр: \"512 MB\" или \"12 GB\")", - "Other" : "Останато", - "Full Name" : "Цело име", - "Quota" : "Квота", - "Storage Location" : "Локација на сториџот", - "Last Login" : "Последна најава", - "change full name" : "промена на целото име", - "set new password" : "постави нова лозинка", - "Default" : "Предефиниран" -}, -"nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"); diff --git a/settings/l10n/mk.json b/settings/l10n/mk.json deleted file mode 100644 index 7dd4902c284..00000000000 --- a/settings/l10n/mk.json +++ /dev/null @@ -1,188 +0,0 @@ -{ "translations": { - "Security & setup warnings" : "Предупредувања за сигурност и подесувања", - "Sharing" : "Споделување", - "Server-side encryption" : "Енкрипција на страна на серверот", - "External Storage" : "Надворешно складиште", - "Cron" : "Крон", - "Email server" : "Сервер за е-пошта", - "Log" : "Записник", - "Tips & tricks" : "Совети и трикови", - "Updates" : "Ажурирања", - "Couldn't remove app." : "Не можам да ја отстранам апликацијата.", - "Language changed" : "Јазикот е сменет", - "Invalid request" : "Неправилно барање", - "Authentication error" : "Грешка во автентикација", - "Admins can't remove themself from the admin group" : "Администраторите неможе да се избришат себеси од админ групата", - "Unable to add user to group %s" : "Неможе да додадам корисник во група %s", - "Unable to remove user from group %s" : "Неможе да избришам корисник од група %s", - "Couldn't update app." : "Не можам да ја надградам апликацијата.", - "Wrong password" : "Погрешна лозинка", - "No user supplied" : "Нема корисничко име", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Ве молам дадете лозинка за поврат на администраторот, или сите кориснички податоци ќе бидат изгубени", - "Wrong admin recovery password. Please check the password and try again." : "Погрешна лозинка за поврат на администраторот. Ве молам проверете ја лозинката и пробајте повторно.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Позадината не подржува промена на лозинката, но корисничкиот клуч за енкрипција беше успешно ажуриран.", - "Unable to change password" : "Вашата лозинка неможе да се смени", - "Enabled" : "Овозможен", - "Not enabled" : "Не е овозможено", - "Federated Cloud Sharing" : "Федерирано клауд споделување", - "A problem occurred, please check your log files (Error: %s)" : "Се случи грешка, ве молам проверете ги вашите датотеки за логови (Грешка: %s)", - "Migration Completed" : "Миграцијата заврши", - "Group already exists." : "Групата веќе постои.", - "Unable to add group." : "Не можам да додадам група.", - "Unable to delete group." : "Не можам да избришам група.", - "log-level out of allowed range" : "нивото на логирање е надвор од дозволениот опсег", - "Saved" : "Снимено", - "test email settings" : "провери ги нагодувањата за електронска пошта", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Се случи грешка при праќање на порака. Ве молам проверете ги вашите подесувања. (Error: %s)", - "Email sent" : "Е-порака пратена", - "Invalid mail address" : "Неправилна електронска адреса/пошта", - "A user with that name already exists." : "Корисник со ова име веќе постои.", - "Unable to create user." : "Неможе да додадам корисник.", - "Your %s account was created" : "Вашата %s сметка е креирана", - "Unable to delete user." : "Неможам да избришам корисник", - "Forbidden" : "Забрането", - "Invalid user" : "Неправилен корисник", - "Unable to change mail address" : "Не можам да ја променам електронската адреса/пошта", - "Email saved" : "Електронската пошта е снимена", - "Your full name has been changed." : "Вашето целосно име е променето.", - "Unable to change full name" : "Не можам да го променам целото име", - "Add trusted domain" : "Додади доверлив домејн", - "Migration started …" : "Миграцијата е започнаа ...", - "Sending..." : "Испраќам...", - "Official" : "Официјален", - "Approved" : "Одобрен", - "Experimental" : "Експериментален", - "All" : "Сите", - "No apps found for your version" : "За вашата верзија не се пронајдени апликации", - "Update to %s" : "Надгради на %s", - "Please wait...." : "Ве молам почекајте ...", - "Error while disabling app" : "Грешка при исклучувањето на апликацијата", - "Disable" : "Оневозможи", - "Enable" : "Овозможи", - "Error while enabling app" : "Грешка при вклучувањето на апликацијата", - "Updating...." : "Надградувам ...", - "Error while updating app" : "Грешка додека ја надградувам апликацијата", - "Updated" : "Надграден", - "Uninstalling ...." : "Деинсталирам ...", - "Error while uninstalling app" : "Грешка при деинсталација на апликацијата", - "Uninstall" : "Деинсталирај", - "App update" : "Надградба на апликацијата", - "Valid until {date}" : "Валидно до {date}", - "Delete" : "Избриши", - "An error occurred: {message}" : "Се случи грешка: {message}", - "Select a profile picture" : "Одбери фотографија за профилот", - "Very weak password" : "Многу слаба лозинка", - "Weak password" : "Слаба лозинка", - "So-so password" : "Така така лозинка", - "Good password" : "Добра лозинка", - "Strong password" : "Јака лозинка", - "Groups" : "Групи", - "Unable to delete {objName}" : "Не можам да избришам {objName}", - "Error creating group: {message}" : "Грешка при креирање на група: {message}", - "A valid group name must be provided" : "Мора да се обезбеди валидно име на група", - "deleted {groupName}" : "избришано {groupName}", - "undo" : "врати", - "no group" : "нема група", - "never" : "никогаш", - "deleted {userName}" : "избришан {userName}", - "add group" : "додади група", - "A valid username must be provided" : "Мора да се обезбеди валидно корисничко име ", - "Error creating user: {message}" : "Грешка при креирање на корисник: {message}", - "A valid password must be provided" : "Мора да се обезбеди валидна лозинка", - "A valid email must be provided" : "Мора да се обезбеди валидна електронска пошта", - "__language_name__" : "__language_name__", - "Unlimited" : "Неограничено", - "Personal info" : "Лични податоци", - "Sync clients" : "Клиенти за синхронизација", - "Info, warnings, errors and fatal issues" : "Информации, предупредувања, грешки и фатални работи", - "Warnings, errors and fatal issues" : "Предупредувања, грешки и фатални работи", - "Errors and fatal issues" : "Грешки и фатални работи", - "Fatal issues only" : "Само фатални работи", - "None" : "Ништо", - "Login" : "Најава", - "Plain" : "Чиста", - "NT LAN Manager" : "NT LAN Менаџер", - "SSL" : "SSL", - "TLS" : "TLS", - "All checks passed." : "Сите проверки се поминати.", - "Open documentation" : "Отвори ја документацијата", - "Allow apps to use the Share API" : "Дозволете апликациите да го користат API-то за споделување", - "Allow users to share via link" : "Допушти корисниците да споделуваат со линкови", - "Enforce password protection" : "Наметни заштита на лозинка", - "Allow public uploads" : "Дозволи јавен аплоуд", - "Set default expiration date" : "Постави основен датум на истекување", - "Expire after " : "Истекува по", - "days" : "денови", - "Enforce expiration date" : "Наметни датум на траење", - "Allow resharing" : "Овозможи повторно споделување", - "Allow sharing with groups" : "Овозможи споделување со групи", - "Restrict users to only share with users in their groups" : "Ограничи корисниците да споделуваат со корисници во своите групи", - "Exclude groups from sharing" : "Исклучи групи од споделување", - "Execute one task with each page loaded" : "Изврши по една задача со секоја вчитана страница", - "Enable server-side encryption" : "Овозможи енкрипција на страна на серверот", - "Enable encryption" : "Овозможи енкрипција", - "Start migration" : "Започни ја миграцијата", - "This is used for sending out notifications." : "Ова се користи за испраќање на известувања.", - "Send mode" : "Мод на испраќање", - "Encryption" : "Енкрипција", - "From address" : "Од адреса", - "mail" : "Електронска пошта", - "Authentication method" : "Метод на автентификација", - "Authentication required" : "Потребна е автентификација", - "Server address" : "Адреса на сервер", - "Port" : "Порта", - "Credentials" : "Акредитиви", - "SMTP Username" : "SMTP корисничко име", - "SMTP Password" : "SMTP лозинка", - "Test email settings" : "Провери ги нагодувањаа за електронска пошта", - "Send email" : "Испрати пошта", - "Download logfile" : "Преземи ја датотеката со логови", - "More" : "Повеќе", - "Less" : "Помалку", - "What to log" : "Што да логирам", - "How to do backups" : "Како да правам резервни копии", - "Advanced monitoring" : "Напредно мониторирање", - "Performance tuning" : "Нагодување на перформансите", - "Improving the config.php" : "Подобруваер на config.php", - "Theming" : "Поставување на тема", - "Hardening and security guidance" : "Заштита и насоки за безбедност", - "Version" : "Верзија", - "Developer documentation" : "Документација за програмери", - "Documentation:" : "Документација:", - "Enable only for specific groups" : "Овозможи само на специфицирани групи", - "Cheers!" : "Поздрав!", - "Forum" : "Форум", - "Profile picture" : "Фотографија за профил", - "Upload new" : "Префрли нова", - "Remove image" : "Отстрани ја фотографијата", - "Cancel" : "Откажи", - "Email" : "Е-пошта", - "Your email address" : "Вашата адреса за е-пошта", - "Password" : "Лозинка", - "Unable to change your password" : "Вашата лозинка неможе да се смени", - "Current password" : "Моментална лозинка", - "New password" : "Нова лозинка", - "Change password" : "Смени лозинка", - "Language" : "Јазик", - "Help translate" : "Помогни во преводот", - "Get the apps to sync your files" : "Преземете апликации за синхронизирање на вашите датотеки", - "Show First Run Wizard again" : "Прикажи го повторно волшебникот при првото стартување", - "Username" : "Корисничко име", - "Create" : "Создај", - "Admin Recovery Password" : "Обновување на Admin лозинката", - "Add Group" : "Додади група", - "Group" : "Група", - "Everyone" : "Секој", - "Admins" : "Администратори", - "Default Quota" : "Предефинирана квота", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Ве молам внесете квота за просторот (нпр: \"512 MB\" или \"12 GB\")", - "Other" : "Останато", - "Full Name" : "Цело име", - "Quota" : "Квота", - "Storage Location" : "Локација на сториџот", - "Last Login" : "Последна најава", - "change full name" : "промена на целото име", - "set new password" : "постави нова лозинка", - "Default" : "Предефиниран" -},"pluralForm" :"nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;" -}
\ No newline at end of file diff --git a/settings/l10n/mn.js b/settings/l10n/mn.js deleted file mode 100644 index 75ca2475868..00000000000 --- a/settings/l10n/mn.js +++ /dev/null @@ -1,20 +0,0 @@ -OC.L10N.register( - "settings", - { - "Sharing" : "Түгээлт", - "Cron" : "Крон", - "Log" : "Лог бичилт", - "Couldn't remove app." : "Апп-ыг устгаж чадсангүй", - "Language changed" : "Хэл солигдлоо", - "Invalid request" : "Буруу хүсэлт", - "Authentication error" : "Нотолгооны алдаа", - "Admins can't remove themself from the admin group" : "Админууд өөрсдийгөө Админ бүлгээс хасаж чадахгүй", - "Wrong password" : "Нууц үг буруу", - "Your full name has been changed." : "Таны бүтэн нэр солигдлоо.", - "Unable to change full name" : "Бүтэн нэр солих боломжгүй байна", - "All" : "Бүгд", - "Email" : "И-мэйл", - "Password" : "Нууц үг", - "Username" : "Хэрэглэгчийн нэр" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/mn.json b/settings/l10n/mn.json deleted file mode 100644 index a98fbc86a0e..00000000000 --- a/settings/l10n/mn.json +++ /dev/null @@ -1,18 +0,0 @@ -{ "translations": { - "Sharing" : "Түгээлт", - "Cron" : "Крон", - "Log" : "Лог бичилт", - "Couldn't remove app." : "Апп-ыг устгаж чадсангүй", - "Language changed" : "Хэл солигдлоо", - "Invalid request" : "Буруу хүсэлт", - "Authentication error" : "Нотолгооны алдаа", - "Admins can't remove themself from the admin group" : "Админууд өөрсдийгөө Админ бүлгээс хасаж чадахгүй", - "Wrong password" : "Нууц үг буруу", - "Your full name has been changed." : "Таны бүтэн нэр солигдлоо.", - "Unable to change full name" : "Бүтэн нэр солих боломжгүй байна", - "All" : "Бүгд", - "Email" : "И-мэйл", - "Password" : "Нууц үг", - "Username" : "Хэрэглэгчийн нэр" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/ms_MY.js b/settings/l10n/ms_MY.js deleted file mode 100644 index 30ff133bd42..00000000000 --- a/settings/l10n/ms_MY.js +++ /dev/null @@ -1,35 +0,0 @@ -OC.L10N.register( - "settings", - { - "Log" : "Log", - "Language changed" : "Bahasa diubah", - "Invalid request" : "Permintaan tidak sah", - "Authentication error" : "Ralat pengesahan", - "Email saved" : "Emel disimpan", - "Disable" : "Nyahaktif", - "Enable" : "Aktif", - "Delete" : "Padam", - "Groups" : "Kumpulan", - "never" : "jangan", - "__language_name__" : "_nama_bahasa_", - "Login" : "Log masuk", - "Server address" : "Alamat pelayan", - "More" : "Lanjutan", - "Profile picture" : "Gambar profil", - "Cancel" : "Batal", - "Email" : "Email", - "Your email address" : "Alamat emel anda", - "Password" : "Kata laluan", - "Unable to change your password" : "Gagal mengubah kata laluan anda ", - "Current password" : "Kata laluan semasa", - "New password" : "Kata laluan baru", - "Change password" : "Ubah kata laluan", - "Language" : "Bahasa", - "Help translate" : "Bantu terjemah", - "Username" : "Nama pengguna", - "Create" : "Buat", - "Default Quota" : "Kuota Lalai", - "Other" : "Lain", - "Quota" : "Kuota" -}, -"nplurals=1; plural=0;"); diff --git a/settings/l10n/ms_MY.json b/settings/l10n/ms_MY.json deleted file mode 100644 index 19504cee599..00000000000 --- a/settings/l10n/ms_MY.json +++ /dev/null @@ -1,33 +0,0 @@ -{ "translations": { - "Log" : "Log", - "Language changed" : "Bahasa diubah", - "Invalid request" : "Permintaan tidak sah", - "Authentication error" : "Ralat pengesahan", - "Email saved" : "Emel disimpan", - "Disable" : "Nyahaktif", - "Enable" : "Aktif", - "Delete" : "Padam", - "Groups" : "Kumpulan", - "never" : "jangan", - "__language_name__" : "_nama_bahasa_", - "Login" : "Log masuk", - "Server address" : "Alamat pelayan", - "More" : "Lanjutan", - "Profile picture" : "Gambar profil", - "Cancel" : "Batal", - "Email" : "Email", - "Your email address" : "Alamat emel anda", - "Password" : "Kata laluan", - "Unable to change your password" : "Gagal mengubah kata laluan anda ", - "Current password" : "Kata laluan semasa", - "New password" : "Kata laluan baru", - "Change password" : "Ubah kata laluan", - "Language" : "Bahasa", - "Help translate" : "Bantu terjemah", - "Username" : "Nama pengguna", - "Create" : "Buat", - "Default Quota" : "Kuota Lalai", - "Other" : "Lain", - "Quota" : "Kuota" -},"pluralForm" :"nplurals=1; plural=0;" -}
\ No newline at end of file diff --git a/settings/l10n/my_MM.js b/settings/l10n/my_MM.js deleted file mode 100644 index 99814ff2418..00000000000 --- a/settings/l10n/my_MM.js +++ /dev/null @@ -1,11 +0,0 @@ -OC.L10N.register( - "settings", - { - "Invalid request" : "တောင်းဆိုချက်မမှန်ကန်ပါ", - "Authentication error" : "ခွင့်ပြုချက်မအောင်မြင်", - "Cancel" : "ပယ်ဖျက်မည်", - "Password" : "စကားဝှက်", - "New password" : "စကားဝှက်အသစ်", - "Username" : "သုံးစွဲသူအမည်" -}, -"nplurals=1; plural=0;"); diff --git a/settings/l10n/my_MM.json b/settings/l10n/my_MM.json deleted file mode 100644 index 08dcf1722c8..00000000000 --- a/settings/l10n/my_MM.json +++ /dev/null @@ -1,9 +0,0 @@ -{ "translations": { - "Invalid request" : "တောင်းဆိုချက်မမှန်ကန်ပါ", - "Authentication error" : "ခွင့်ပြုချက်မအောင်မြင်", - "Cancel" : "ပယ်ဖျက်မည်", - "Password" : "စကားဝှက်", - "New password" : "စကားဝှက်အသစ်", - "Username" : "သုံးစွဲသူအမည်" -},"pluralForm" :"nplurals=1; plural=0;" -}
\ No newline at end of file diff --git a/settings/l10n/nb_NO.js b/settings/l10n/nb_NO.js deleted file mode 100644 index e115c20de04..00000000000 --- a/settings/l10n/nb_NO.js +++ /dev/null @@ -1,293 +0,0 @@ -OC.L10N.register( - "settings", - { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Advarsler om sikkerhet og oppsett", - "Sharing" : "Deling", - "Server-side encryption" : "Serverkryptering", - "External Storage" : "Ekstern lagring", - "Cron" : "Cron", - "Email server" : "E-postserver", - "Log" : "Logg", - "Tips & tricks" : "Tips og triks", - "Updates" : "Oppdateringer", - "Couldn't remove app." : "Klarte ikke å fjerne app.", - "Language changed" : "Språk endret", - "Invalid request" : "Ugyldig forespørsel", - "Authentication error" : "Autentiseringsfeil", - "Admins can't remove themself from the admin group" : "Admin kan ikke flytte seg selv fra admingruppen", - "Unable to add user to group %s" : "Kan ikke legge bruker til gruppen %s", - "Unable to remove user from group %s" : "Kan ikke slette bruker fra gruppen %s", - "Couldn't update app." : "Kunne ikke oppdatere app.", - "Wrong password" : "Feil passord", - "No user supplied" : "Ingen bruker angitt", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Vennligst oppgi et administrativt gjenopprettingspassord. Ellers vil alle brukerdata gå tapt", - "Wrong admin recovery password. Please check the password and try again." : "Feil administrativt gjenopprettingspassord. Sjekk passordet og prøv igjen.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Serveren støtter ikke endring av passord, men oppdatering av brukerens krypteringsnøkkel var vellykket.", - "Unable to change password" : "Kunne ikke endre passord", - "Enabled" : "Aktiv", - "Not enabled" : "Ikke aktivert", - "installing and updating apps via the app store or Federated Cloud Sharing" : "installering og oppdatering av apper via app-butikken eller ved deling i Sammenknyttet sky", - "Federated Cloud Sharing" : "Sammenknyttet sky-deling", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL bruker en utdatert %s-versjon (%s). Vennligst oppdater operativsystemet ditt; ellers vil ikke funksjoner som %s virke korrekt.", - "A problem occurred, please check your log files (Error: %s)" : "Det oppstod et problem. Sjekk loggfilene (Feil: %s)", - "Migration Completed" : "Migrering ferdig", - "Group already exists." : "Gruppe finnes allerede.", - "Unable to add group." : "Kan ikke legge til gruppe.", - "Unable to delete group." : "Kan ikke slette gruppe.", - "log-level out of allowed range" : "Loggnivå utenfor tillatt område", - "Saved" : "Lagret", - "test email settings" : "Test av innstillinger for e-post", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Et problem oppstod med sending av e-post. Sjekk innstillingene. (Feil: %s)", - "Email sent" : "E-post sendt", - "You need to set your user email before being able to send test emails." : "Du må sette e-postadressen for brukeren din før du kan teste sending av e-post.", - "Invalid mail address" : "Ugyldig e-postadresse", - "A user with that name already exists." : "Det finnes allerede en bruker med det navnet.", - "Unable to create user." : "Kan ikke opprette bruker.", - "Your %s account was created" : "%s-kontoen din ble opprettet", - "Unable to delete user." : "Kan ikke slette bruker.", - "Forbidden" : "Forbudt", - "Invalid user" : "Ugyldig bruker", - "Unable to change mail address" : "Kan ikke endre epost-adresse", - "Email saved" : "Epost lagret", - "Your full name has been changed." : "Ditt fulle navn er blitt endret.", - "Unable to change full name" : "Klarte ikke å endre fullt navn", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Ønsker du virkelig å legge til \"{domain}\" som klarert domene?", - "Add trusted domain" : "Legg til et klarert domene", - "Migration in progress. Please wait until the migration is finished" : "Migrering utføres. Vent til migreringen er ferdig.", - "Migration started …" : "Migrering startet ..", - "Sending..." : "Sender...", - "Official" : "Offisiell", - "Approved" : "Godkjent", - "Experimental" : "Eksperimentell", - "All" : "Alle", - "No apps found for your version" : "Ingen apper funnet for din versjon", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Offisielle apper utvikles av og innenfor ownCloud-fellesskapet. De tilbyr funksjonalitet som er sentral for ownCloud og er forberedt for produksjonsbruk.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Godkjente apper er utviklet av tiltrodde utviklere og har gjennomgått en rask sikkerhetssjekk. De vedlikeholdes aktivt i et åpent kode-depot og utviklerne anser dem for å være stabile for tidvis eller normal bruk.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Denne appen er ikke sjekket for sikkerhetsproblemer og er ny eller ansett for å være ustabil. Installer på egen risiko.", - "Update to %s" : "Oppdater til %s", - "_You have %n app update pending_::_You have %n app updates pending_" : ["Du har %n app-oppdatering som venter","Du har %n app-oppdateringer som venter"], - "Please wait...." : "Vennligst vent...", - "Error while disabling app" : "Deaktivering av app feilet", - "Disable" : "Deaktiver ", - "Enable" : "Aktiver", - "Error while enabling app" : "Aktivering av app feilet", - "Error: this app cannot be enabled because it makes the server unstable" : "Feil: Denne appen kan ikke aktiveres fordi den gjør serveren ustabil", - "Error: could not disable broken app" : "Feil: Kunne ikke deaktivere ustabil app", - "Error while disabling broken app" : "Feil ved deaktivering av ustabil app", - "Updating...." : "Oppdaterer...", - "Error while updating app" : "Feil ved oppdatering av app", - "Updated" : "Oppdatert", - "Uninstalling ...." : "Avinstallerer ....", - "Error while uninstalling app" : "Feil ved avinstallering av app", - "Uninstall" : "Avinstaller", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Appen er aktivert men må oppdateres. Du vil bli omdirigert til oppdateringssiden om 5 sekunder.", - "App update" : "Oppdatering av applikasjon", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Det oppstod en feil. Vennligst last opp et ASCII-kodet PEM-sertifikat.", - "Valid until {date}" : "Gyldig til {date}", - "Delete" : "Slett", - "An error occurred: {message}" : "Det oppstod en feil: {message}", - "Select a profile picture" : "Velg et profilbilde", - "Very weak password" : "Veldig svakt passord", - "Weak password" : "Svakt passord", - "So-so password" : "So-so-passord", - "Good password" : "Bra passord", - "Strong password" : "Sterkt passord", - "Groups" : "Grupper", - "Unable to delete {objName}" : "Kan ikke slette {objName}", - "Error creating group: {message}" : "Feil ved oppretting av gruppe: {message}", - "A valid group name must be provided" : "Et gyldig gruppenavn må oppgis", - "deleted {groupName}" : "slettet {groupName}", - "undo" : "angre", - "no group" : "ingen gruppe", - "never" : "aldri", - "deleted {userName}" : "slettet {userName}", - "add group" : "legg til gruppe", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Forandring av passordet vil føre til tap av data, fordi datagjennoppretting er utilgjengelig for denne brukeren", - "A valid username must be provided" : "Oppgi et gyldig brukernavn", - "Error creating user: {message}" : "Feil ved oppretting av bruker: {message}", - "A valid password must be provided" : "Oppgi et gyldig passord", - "A valid email must be provided" : "En gyldig e-postadresse må oppgis", - "__language_name__" : "__language_name__", - "Unlimited" : "Ubegrenset", - "Personal info" : "Personlig informasjon", - "Sync clients" : "Synkroniseringsklienter", - "Everything (fatal issues, errors, warnings, info, debug)" : "Alt (fatale problemer, feil, advarsler, info, debug)", - "Info, warnings, errors and fatal issues" : "Info, advarsler, feil og fatale problemer", - "Warnings, errors and fatal issues" : "Advarsler, feil og fatale problemer", - "Errors and fatal issues" : "Feil og fatale problemer", - "Fatal issues only" : "Kun fatale problemer", - "None" : "Ingen", - "Login" : "Logg inn", - "Plain" : "Enkel", - "NT LAN Manager" : "NT LAN Manager", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "PHP ser ikke ut til å være satt opp riktig for å lese systemets miljøvariabler. Testen med getenv(\"PATH\") returnerer bare et tomt svar.", - "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 konfigurasjonen er blitt aktivert. Dette forhindrer setting av visse konfigureringer via web-grensesnittet. Videre må config-filen gjøres skrivbar manuelt for hver oppdatering.", - "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.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Serveren din kjører på Microsoft Windows. Vi anbefaler strekt Linux for en optimal brukeropplevelse.", - "%1$s below version %2$s is installed, for stability and performance reasons we recommend updating to a newer %1$s version." : "%1$s lavere enn versjon %2$s er installert. Vi anbefaler å oppgradere til en nyere %1$s-versjon for å få bedre stabilitet og ytelse.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP modulen 'fileinfo' mangler. Vi anbefaler at du aktiverer denne modulen for å kunne detektere mime-typen korrekt.", - "System locale can not be set to a one which supports UTF-8." : "Kan ikke sette systemets nasjonale innstillinger til en som støtter UTF-8.", - "This means that there might be problems with certain characters in file names." : "Dette betyr at det kan forekomme problemer med visse tegn i filnavn.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Vi anbefaler sterkt å installere de påkrevde pakkene på systemet ditt for å støtte en av følgende nasjonale innstillinger: %s.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Hvis installasjonen din ikke er installert i roten av domenet og bruker systemets cron, kan det bli problemer med URL-genereringen. For å unngå disse problemene, sett \"overwrite.cli.url\" i filen config.php til web-roten for installasjonen din (Foreslått: \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Det var ikke mulig å kjøre cron-jobben vi CLI. Følgende tekniske feil oppstod:", - "All checks passed." : "Alle sjekker bestått.", - "Open documentation" : "Åpne dokumentasjonen", - "Allow apps to use the Share API" : "Tillat apper å bruke API for Deling", - "Allow users to share via link" : "Tillat brukere å dele via lenke", - "Enforce password protection" : "Krev passordbeskyttelse", - "Allow public uploads" : "Tillat offentlig opplasting", - "Allow users to send mail notification for shared files" : "Tlllat at brukere sender e-postvarsler for delte filer", - "Set default expiration date" : "Sett standard utløpsdato", - "Expire after " : "Utløper etter", - "days" : "dager", - "Enforce expiration date" : "Krev utløpsdato", - "Allow resharing" : "TIllat videre deling", - "Restrict users to only share with users in their groups" : "Begrens brukere til kun å dele med brukere i deres grupper", - "Allow users to send mail notification for shared files to other users" : "Tillat at brukere sender varsler om delte filer på e-post til andre brukere", - "Exclude groups from sharing" : "Utelukk grupper fra deling", - "These groups will still be able to receive shares, but not to initiate them." : "Disse gruppene vil fremdeles kunne motta delinger men ikke lage dem.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Tillat automatisk fullføring av brukernavn i delingsdialogen. Uten dette valget må hele brukernavnet oppgis.", - "Last cron job execution: %s." : "Siste kjøring av cron-jobb: %s.", - "Last cron job execution: %s. Something seems wrong." : "Siste kjøring av cron-jobb: %s. Noe ser ut til å være galt.", - "Cron was not executed yet!" : "Cron er ikke utført ennå!", - "Execute one task with each page loaded" : "Utfør en oppgave med hver side som blir lastet", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php er registrert i en webcron-tjeneste for å kalle cron.php hvert 15. minutt over http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Bruk systemets cron-tjeneste til å kalle cron.php hvert 15. minutt.", - "Enable server-side encryption" : "Aktiver serverkryptering", - "Please read carefully before activating server-side encryption: " : "Vennligst les dette nøye før du aktiverer serverkrykptering:", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "Når kryptering er blitt aktivert, vil alle filer som lastes opp til serveren fra det tidspunktet av bli lagret kryptert på serveren. Det vil kun være mulig å deaktivere kryptering senere dersom den aktive krypteringsmodulen støtter det og alle forutsetninger (f.eks. å sette en gjenopprettingsnøkkel) er til stede.", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "Kryptering alene garanterer ikke sikkerheten i systemet. Se ownCloud-dokumentasjonen for mer informasjon om hvordan krypterings-appen virker og hvilke brukstilfeller som støttes.", - "Be aware that encryption always increases the file size." : "Vær oppmerksom på at kryptering alltid øker filstørrelsen.", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "Det er alltid bra å ta regelmessig sikkerhetskopi av dataene dine. Pass på å ta kopi av krypteringsnøklene sammen med dataene når kryptering er i bruk.", - "This is the final warning: Do you really want to enable encryption?" : "Dette er siste advarsel: Vil du virkelig aktivere kryptering?", - "Enable encryption" : "Aktiver kryptering", - "No encryption module loaded, please enable an encryption module in the app menu." : "Ingen krypteringsmodul er lastet. Aktiver en krypteringsmodul i app-menyen.", - "Select default encryption module:" : "Velg standard krypteringsmodul:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Du må migrere krypteringsnøklene din fra den gamle krypteringen (ownCloud <= 8.0) til den nye. Vennligst aktiver \"Standard krypteringsmodul\" og kjør 'occ encryption:migrate'", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Du må migrere krypteringsnøklene din fra den gamle krypteringen (ownCloud <= 8.0) til den nye.", - "Start migration" : "Start migrering", - "This is used for sending out notifications." : "Dette brukes for utsending av varsler.", - "Send mode" : "Sendemåte", - "Encryption" : "Kryptering", - "From address" : "Fra adresse", - "mail" : "e-post", - "Authentication method" : "Autentiseringsmetode", - "Authentication required" : "Autentisering kreves", - "Server address" : "Server-adresse", - "Port" : "Port", - "Credentials" : "Påloggingsdetaljer", - "SMTP Username" : "SMTP-brukernavn", - "SMTP Password" : "SMTP-passord", - "Store credentials" : "Lagre påloggingsdetaljer", - "Test email settings" : "Test innstillinger for e-post", - "Send email" : "Send e-post", - "Download logfile" : "Last ned loggfil", - "More" : "Mer", - "Less" : "Mindre", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Loggfilen er over 100 MB, nedlastingen kan ta en stund!", - "What to log" : "Hva som skal logges", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite brukes som database. For større installasjoner anbefaler vi å bytte til en annen database-server.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "SQLite er spesielt frarådet om man bruker desktopklienten til filsynkronisering", - "How to do backups" : "Hvordan ta sikkerhetskopier", - "Advanced monitoring" : "Avansert overvåking", - "Performance tuning" : "Forbedre ytelsen", - "Improving the config.php" : "Tilpasninger i config.php", - "Theming" : "Temaer", - "Hardening and security guidance" : "Herding og sikkerhetsveiledning", - "Version" : "Versjon", - "Developer documentation" : "Utviklerdokumentasjon", - "Experimental applications ahead" : "Eksperimentelle applikasjoner forut", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Eksperimentelle apper er ikke sjekket for sikkerhetsproblemer. De er nye eller de anses som ustabile og under stadig utvikling. Å installere slike apper kan forårsake tap av data eller brudd på sikkerheten.", - "by %s" : "av %s", - "%s-licensed" : "%s-lisensiert", - "Documentation:" : "Dokumentasjon:", - "User documentation" : "Brukerdokumentasjon", - "Admin documentation" : "Admin-dokumentasjon", - "Show description …" : "Vis beskrivelse …", - "Hide description …" : "Skjul beskrivelse …", - "This app has an update available." : "En oppdatering er tilgjengelig for denne appen.", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Denne appen har ingen minimumsversjon av ownCloud. Dette vil være en feil i ownCloud 11 og senere.", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Denne appen har ingen maksimumsversjon av ownCloud. Dette vil være en feil i ownCloud 11 og senere.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Denne appen kan ikke installeres fordi følgende avhengigheter ikke er tilfredsstilt:", - "Enable only for specific groups" : "Aktiver kun for visse grupper", - "Uninstall App" : "Avinstaller app", - "Enable experimental apps" : "Aktiver eksperimentelle apper", - "SSL Root Certificates" : "SSL rotsertifikater", - "Common Name" : "Vanlig navn", - "Valid until" : "Gyldig til", - "Issued By" : "Utstedt av", - "Valid until %s" : "Gyldig til %s", - "Import root certificate" : "Importer rotsertifikat", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Hei,<br><br>vil bare informere om at du nå har en %s-konto.<br><br>Brukernavnet ditt: %s<br>Gå dit: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Ha det!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Hei,\n\nVil bare informere om at du nå har en %s-konto.\n\nBrukernavnet ditt: %s\nGå dit: %s\n\n", - "Administrator documentation" : "Administratordokumentasjon", - "Online documentation" : "Elektronisk dokumentasjon", - "Forum" : "Forum", - "Issue tracker" : "Problemsporing", - "Commercial support" : "Forretningsstøtte", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "Du bruker <strong>%s</strong> av <strong>%s</strong>", - "Profile picture" : "Profilbilde", - "Upload new" : "Last opp nytt", - "Select from Files" : "Velg fra Filer", - "Remove image" : "Fjern bilde", - "png or jpg, max. 20 MB" : "png eller jpg, maks. 20 MB", - "Picture provided by original account" : "Bilde kommer fra opprinnelig konto", - "Cancel" : "Avbryt", - "Choose as profile picture" : "Velg som profilbilde", - "Full name" : "Fullt navn", - "No display name set" : "Visningsnavn ikke satt", - "Email" : "Epost", - "Your email address" : "Din e-postadresse", - "For password recovery and notifications" : "For passord-gjenoppretting og varsler", - "No email address set" : "E-postadresse ikke satt", - "You are member of the following groups:" : "Du er medlem av følgende grupper:", - "Password" : "Passord", - "Unable to change your password" : "Kunne ikke endre passordet ditt", - "Current password" : "Nåværende passord", - "New password" : "Nytt passord", - "Change password" : "Endre passord", - "Language" : "Språk", - "Help translate" : "Bidra til oversettelsen", - "Get the apps to sync your files" : "Hent apper som synkroniserer filene dine", - "Desktop client" : "Skrivebordsklient", - "Android app" : "Android-app", - "iOS app" : "iOS-app", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Hvis du vil støtte prosjektet kan du\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">delta i utviklingen</a>\n\t\teller\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spre budskapet</a>!", - "Show First Run Wizard again" : "Vis \"Førstegangs veiviser\" på nytt", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Utviklet av {communityopen}ownCloud-fellesskapet{linkclose}. {githubopen}Kildekoden{linkclose} er lisensiert under {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}.", - "Show storage location" : "Vis lagringssted", - "Show last log in" : "Vis site innlogging", - "Show user backend" : "Vis bruker-server", - "Send email to new user" : "Send e-post til ny bruker", - "Show email address" : "Vis e-postadresse", - "Username" : "Brukernavn", - "E-Mail" : "E-post", - "Create" : "Opprett", - "Admin Recovery Password" : "Administrativt gjenopprettingspassord", - "Enter the recovery password in order to recover the users files during password change" : "Legg inn gjenopprettingspassordet for å gjenopprette brukerfilene når passordet endres", - "Add Group" : "Legg til gruppe", - "Group" : "Gruppe", - "Everyone" : "Alle", - "Admins" : "Administratorer", - "Default Quota" : "Standard kvote", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Legg inn lagringskvote (f.eks. \"512 MB\" eller \"12 GB\")", - "Other" : "Annet", - "Full Name" : "Fullt navn", - "Group Admin for" : "Gruppeadministrator for", - "Quota" : "Kvote", - "Storage Location" : "Lagringsplassering", - "User Backend" : "Bruker-server", - "Last Login" : "Siste innlogging", - "change full name" : "endre fullt navn", - "set new password" : "sett nytt passord", - "change email address" : "endre e-postadresse", - "Default" : "Standard" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/nb_NO.json b/settings/l10n/nb_NO.json deleted file mode 100644 index 752f57c50a6..00000000000 --- a/settings/l10n/nb_NO.json +++ /dev/null @@ -1,291 +0,0 @@ -{ "translations": { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Advarsler om sikkerhet og oppsett", - "Sharing" : "Deling", - "Server-side encryption" : "Serverkryptering", - "External Storage" : "Ekstern lagring", - "Cron" : "Cron", - "Email server" : "E-postserver", - "Log" : "Logg", - "Tips & tricks" : "Tips og triks", - "Updates" : "Oppdateringer", - "Couldn't remove app." : "Klarte ikke å fjerne app.", - "Language changed" : "Språk endret", - "Invalid request" : "Ugyldig forespørsel", - "Authentication error" : "Autentiseringsfeil", - "Admins can't remove themself from the admin group" : "Admin kan ikke flytte seg selv fra admingruppen", - "Unable to add user to group %s" : "Kan ikke legge bruker til gruppen %s", - "Unable to remove user from group %s" : "Kan ikke slette bruker fra gruppen %s", - "Couldn't update app." : "Kunne ikke oppdatere app.", - "Wrong password" : "Feil passord", - "No user supplied" : "Ingen bruker angitt", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Vennligst oppgi et administrativt gjenopprettingspassord. Ellers vil alle brukerdata gå tapt", - "Wrong admin recovery password. Please check the password and try again." : "Feil administrativt gjenopprettingspassord. Sjekk passordet og prøv igjen.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Serveren støtter ikke endring av passord, men oppdatering av brukerens krypteringsnøkkel var vellykket.", - "Unable to change password" : "Kunne ikke endre passord", - "Enabled" : "Aktiv", - "Not enabled" : "Ikke aktivert", - "installing and updating apps via the app store or Federated Cloud Sharing" : "installering og oppdatering av apper via app-butikken eller ved deling i Sammenknyttet sky", - "Federated Cloud Sharing" : "Sammenknyttet sky-deling", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL bruker en utdatert %s-versjon (%s). Vennligst oppdater operativsystemet ditt; ellers vil ikke funksjoner som %s virke korrekt.", - "A problem occurred, please check your log files (Error: %s)" : "Det oppstod et problem. Sjekk loggfilene (Feil: %s)", - "Migration Completed" : "Migrering ferdig", - "Group already exists." : "Gruppe finnes allerede.", - "Unable to add group." : "Kan ikke legge til gruppe.", - "Unable to delete group." : "Kan ikke slette gruppe.", - "log-level out of allowed range" : "Loggnivå utenfor tillatt område", - "Saved" : "Lagret", - "test email settings" : "Test av innstillinger for e-post", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Et problem oppstod med sending av e-post. Sjekk innstillingene. (Feil: %s)", - "Email sent" : "E-post sendt", - "You need to set your user email before being able to send test emails." : "Du må sette e-postadressen for brukeren din før du kan teste sending av e-post.", - "Invalid mail address" : "Ugyldig e-postadresse", - "A user with that name already exists." : "Det finnes allerede en bruker med det navnet.", - "Unable to create user." : "Kan ikke opprette bruker.", - "Your %s account was created" : "%s-kontoen din ble opprettet", - "Unable to delete user." : "Kan ikke slette bruker.", - "Forbidden" : "Forbudt", - "Invalid user" : "Ugyldig bruker", - "Unable to change mail address" : "Kan ikke endre epost-adresse", - "Email saved" : "Epost lagret", - "Your full name has been changed." : "Ditt fulle navn er blitt endret.", - "Unable to change full name" : "Klarte ikke å endre fullt navn", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Ønsker du virkelig å legge til \"{domain}\" som klarert domene?", - "Add trusted domain" : "Legg til et klarert domene", - "Migration in progress. Please wait until the migration is finished" : "Migrering utføres. Vent til migreringen er ferdig.", - "Migration started …" : "Migrering startet ..", - "Sending..." : "Sender...", - "Official" : "Offisiell", - "Approved" : "Godkjent", - "Experimental" : "Eksperimentell", - "All" : "Alle", - "No apps found for your version" : "Ingen apper funnet for din versjon", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Offisielle apper utvikles av og innenfor ownCloud-fellesskapet. De tilbyr funksjonalitet som er sentral for ownCloud og er forberedt for produksjonsbruk.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Godkjente apper er utviklet av tiltrodde utviklere og har gjennomgått en rask sikkerhetssjekk. De vedlikeholdes aktivt i et åpent kode-depot og utviklerne anser dem for å være stabile for tidvis eller normal bruk.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Denne appen er ikke sjekket for sikkerhetsproblemer og er ny eller ansett for å være ustabil. Installer på egen risiko.", - "Update to %s" : "Oppdater til %s", - "_You have %n app update pending_::_You have %n app updates pending_" : ["Du har %n app-oppdatering som venter","Du har %n app-oppdateringer som venter"], - "Please wait...." : "Vennligst vent...", - "Error while disabling app" : "Deaktivering av app feilet", - "Disable" : "Deaktiver ", - "Enable" : "Aktiver", - "Error while enabling app" : "Aktivering av app feilet", - "Error: this app cannot be enabled because it makes the server unstable" : "Feil: Denne appen kan ikke aktiveres fordi den gjør serveren ustabil", - "Error: could not disable broken app" : "Feil: Kunne ikke deaktivere ustabil app", - "Error while disabling broken app" : "Feil ved deaktivering av ustabil app", - "Updating...." : "Oppdaterer...", - "Error while updating app" : "Feil ved oppdatering av app", - "Updated" : "Oppdatert", - "Uninstalling ...." : "Avinstallerer ....", - "Error while uninstalling app" : "Feil ved avinstallering av app", - "Uninstall" : "Avinstaller", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Appen er aktivert men må oppdateres. Du vil bli omdirigert til oppdateringssiden om 5 sekunder.", - "App update" : "Oppdatering av applikasjon", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Det oppstod en feil. Vennligst last opp et ASCII-kodet PEM-sertifikat.", - "Valid until {date}" : "Gyldig til {date}", - "Delete" : "Slett", - "An error occurred: {message}" : "Det oppstod en feil: {message}", - "Select a profile picture" : "Velg et profilbilde", - "Very weak password" : "Veldig svakt passord", - "Weak password" : "Svakt passord", - "So-so password" : "So-so-passord", - "Good password" : "Bra passord", - "Strong password" : "Sterkt passord", - "Groups" : "Grupper", - "Unable to delete {objName}" : "Kan ikke slette {objName}", - "Error creating group: {message}" : "Feil ved oppretting av gruppe: {message}", - "A valid group name must be provided" : "Et gyldig gruppenavn må oppgis", - "deleted {groupName}" : "slettet {groupName}", - "undo" : "angre", - "no group" : "ingen gruppe", - "never" : "aldri", - "deleted {userName}" : "slettet {userName}", - "add group" : "legg til gruppe", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Forandring av passordet vil føre til tap av data, fordi datagjennoppretting er utilgjengelig for denne brukeren", - "A valid username must be provided" : "Oppgi et gyldig brukernavn", - "Error creating user: {message}" : "Feil ved oppretting av bruker: {message}", - "A valid password must be provided" : "Oppgi et gyldig passord", - "A valid email must be provided" : "En gyldig e-postadresse må oppgis", - "__language_name__" : "__language_name__", - "Unlimited" : "Ubegrenset", - "Personal info" : "Personlig informasjon", - "Sync clients" : "Synkroniseringsklienter", - "Everything (fatal issues, errors, warnings, info, debug)" : "Alt (fatale problemer, feil, advarsler, info, debug)", - "Info, warnings, errors and fatal issues" : "Info, advarsler, feil og fatale problemer", - "Warnings, errors and fatal issues" : "Advarsler, feil og fatale problemer", - "Errors and fatal issues" : "Feil og fatale problemer", - "Fatal issues only" : "Kun fatale problemer", - "None" : "Ingen", - "Login" : "Logg inn", - "Plain" : "Enkel", - "NT LAN Manager" : "NT LAN Manager", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "PHP ser ikke ut til å være satt opp riktig for å lese systemets miljøvariabler. Testen med getenv(\"PATH\") returnerer bare et tomt svar.", - "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 konfigurasjonen er blitt aktivert. Dette forhindrer setting av visse konfigureringer via web-grensesnittet. Videre må config-filen gjøres skrivbar manuelt for hver oppdatering.", - "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.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Serveren din kjører på Microsoft Windows. Vi anbefaler strekt Linux for en optimal brukeropplevelse.", - "%1$s below version %2$s is installed, for stability and performance reasons we recommend updating to a newer %1$s version." : "%1$s lavere enn versjon %2$s er installert. Vi anbefaler å oppgradere til en nyere %1$s-versjon for å få bedre stabilitet og ytelse.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP modulen 'fileinfo' mangler. Vi anbefaler at du aktiverer denne modulen for å kunne detektere mime-typen korrekt.", - "System locale can not be set to a one which supports UTF-8." : "Kan ikke sette systemets nasjonale innstillinger til en som støtter UTF-8.", - "This means that there might be problems with certain characters in file names." : "Dette betyr at det kan forekomme problemer med visse tegn i filnavn.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Vi anbefaler sterkt å installere de påkrevde pakkene på systemet ditt for å støtte en av følgende nasjonale innstillinger: %s.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Hvis installasjonen din ikke er installert i roten av domenet og bruker systemets cron, kan det bli problemer med URL-genereringen. For å unngå disse problemene, sett \"overwrite.cli.url\" i filen config.php til web-roten for installasjonen din (Foreslått: \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Det var ikke mulig å kjøre cron-jobben vi CLI. Følgende tekniske feil oppstod:", - "All checks passed." : "Alle sjekker bestått.", - "Open documentation" : "Åpne dokumentasjonen", - "Allow apps to use the Share API" : "Tillat apper å bruke API for Deling", - "Allow users to share via link" : "Tillat brukere å dele via lenke", - "Enforce password protection" : "Krev passordbeskyttelse", - "Allow public uploads" : "Tillat offentlig opplasting", - "Allow users to send mail notification for shared files" : "Tlllat at brukere sender e-postvarsler for delte filer", - "Set default expiration date" : "Sett standard utløpsdato", - "Expire after " : "Utløper etter", - "days" : "dager", - "Enforce expiration date" : "Krev utløpsdato", - "Allow resharing" : "TIllat videre deling", - "Restrict users to only share with users in their groups" : "Begrens brukere til kun å dele med brukere i deres grupper", - "Allow users to send mail notification for shared files to other users" : "Tillat at brukere sender varsler om delte filer på e-post til andre brukere", - "Exclude groups from sharing" : "Utelukk grupper fra deling", - "These groups will still be able to receive shares, but not to initiate them." : "Disse gruppene vil fremdeles kunne motta delinger men ikke lage dem.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Tillat automatisk fullføring av brukernavn i delingsdialogen. Uten dette valget må hele brukernavnet oppgis.", - "Last cron job execution: %s." : "Siste kjøring av cron-jobb: %s.", - "Last cron job execution: %s. Something seems wrong." : "Siste kjøring av cron-jobb: %s. Noe ser ut til å være galt.", - "Cron was not executed yet!" : "Cron er ikke utført ennå!", - "Execute one task with each page loaded" : "Utfør en oppgave med hver side som blir lastet", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php er registrert i en webcron-tjeneste for å kalle cron.php hvert 15. minutt over http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Bruk systemets cron-tjeneste til å kalle cron.php hvert 15. minutt.", - "Enable server-side encryption" : "Aktiver serverkryptering", - "Please read carefully before activating server-side encryption: " : "Vennligst les dette nøye før du aktiverer serverkrykptering:", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "Når kryptering er blitt aktivert, vil alle filer som lastes opp til serveren fra det tidspunktet av bli lagret kryptert på serveren. Det vil kun være mulig å deaktivere kryptering senere dersom den aktive krypteringsmodulen støtter det og alle forutsetninger (f.eks. å sette en gjenopprettingsnøkkel) er til stede.", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "Kryptering alene garanterer ikke sikkerheten i systemet. Se ownCloud-dokumentasjonen for mer informasjon om hvordan krypterings-appen virker og hvilke brukstilfeller som støttes.", - "Be aware that encryption always increases the file size." : "Vær oppmerksom på at kryptering alltid øker filstørrelsen.", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "Det er alltid bra å ta regelmessig sikkerhetskopi av dataene dine. Pass på å ta kopi av krypteringsnøklene sammen med dataene når kryptering er i bruk.", - "This is the final warning: Do you really want to enable encryption?" : "Dette er siste advarsel: Vil du virkelig aktivere kryptering?", - "Enable encryption" : "Aktiver kryptering", - "No encryption module loaded, please enable an encryption module in the app menu." : "Ingen krypteringsmodul er lastet. Aktiver en krypteringsmodul i app-menyen.", - "Select default encryption module:" : "Velg standard krypteringsmodul:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Du må migrere krypteringsnøklene din fra den gamle krypteringen (ownCloud <= 8.0) til den nye. Vennligst aktiver \"Standard krypteringsmodul\" og kjør 'occ encryption:migrate'", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Du må migrere krypteringsnøklene din fra den gamle krypteringen (ownCloud <= 8.0) til den nye.", - "Start migration" : "Start migrering", - "This is used for sending out notifications." : "Dette brukes for utsending av varsler.", - "Send mode" : "Sendemåte", - "Encryption" : "Kryptering", - "From address" : "Fra adresse", - "mail" : "e-post", - "Authentication method" : "Autentiseringsmetode", - "Authentication required" : "Autentisering kreves", - "Server address" : "Server-adresse", - "Port" : "Port", - "Credentials" : "Påloggingsdetaljer", - "SMTP Username" : "SMTP-brukernavn", - "SMTP Password" : "SMTP-passord", - "Store credentials" : "Lagre påloggingsdetaljer", - "Test email settings" : "Test innstillinger for e-post", - "Send email" : "Send e-post", - "Download logfile" : "Last ned loggfil", - "More" : "Mer", - "Less" : "Mindre", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Loggfilen er over 100 MB, nedlastingen kan ta en stund!", - "What to log" : "Hva som skal logges", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite brukes som database. For større installasjoner anbefaler vi å bytte til en annen database-server.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "SQLite er spesielt frarådet om man bruker desktopklienten til filsynkronisering", - "How to do backups" : "Hvordan ta sikkerhetskopier", - "Advanced monitoring" : "Avansert overvåking", - "Performance tuning" : "Forbedre ytelsen", - "Improving the config.php" : "Tilpasninger i config.php", - "Theming" : "Temaer", - "Hardening and security guidance" : "Herding og sikkerhetsveiledning", - "Version" : "Versjon", - "Developer documentation" : "Utviklerdokumentasjon", - "Experimental applications ahead" : "Eksperimentelle applikasjoner forut", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Eksperimentelle apper er ikke sjekket for sikkerhetsproblemer. De er nye eller de anses som ustabile og under stadig utvikling. Å installere slike apper kan forårsake tap av data eller brudd på sikkerheten.", - "by %s" : "av %s", - "%s-licensed" : "%s-lisensiert", - "Documentation:" : "Dokumentasjon:", - "User documentation" : "Brukerdokumentasjon", - "Admin documentation" : "Admin-dokumentasjon", - "Show description …" : "Vis beskrivelse …", - "Hide description …" : "Skjul beskrivelse …", - "This app has an update available." : "En oppdatering er tilgjengelig for denne appen.", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Denne appen har ingen minimumsversjon av ownCloud. Dette vil være en feil i ownCloud 11 og senere.", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Denne appen har ingen maksimumsversjon av ownCloud. Dette vil være en feil i ownCloud 11 og senere.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Denne appen kan ikke installeres fordi følgende avhengigheter ikke er tilfredsstilt:", - "Enable only for specific groups" : "Aktiver kun for visse grupper", - "Uninstall App" : "Avinstaller app", - "Enable experimental apps" : "Aktiver eksperimentelle apper", - "SSL Root Certificates" : "SSL rotsertifikater", - "Common Name" : "Vanlig navn", - "Valid until" : "Gyldig til", - "Issued By" : "Utstedt av", - "Valid until %s" : "Gyldig til %s", - "Import root certificate" : "Importer rotsertifikat", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Hei,<br><br>vil bare informere om at du nå har en %s-konto.<br><br>Brukernavnet ditt: %s<br>Gå dit: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Ha det!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Hei,\n\nVil bare informere om at du nå har en %s-konto.\n\nBrukernavnet ditt: %s\nGå dit: %s\n\n", - "Administrator documentation" : "Administratordokumentasjon", - "Online documentation" : "Elektronisk dokumentasjon", - "Forum" : "Forum", - "Issue tracker" : "Problemsporing", - "Commercial support" : "Forretningsstøtte", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "Du bruker <strong>%s</strong> av <strong>%s</strong>", - "Profile picture" : "Profilbilde", - "Upload new" : "Last opp nytt", - "Select from Files" : "Velg fra Filer", - "Remove image" : "Fjern bilde", - "png or jpg, max. 20 MB" : "png eller jpg, maks. 20 MB", - "Picture provided by original account" : "Bilde kommer fra opprinnelig konto", - "Cancel" : "Avbryt", - "Choose as profile picture" : "Velg som profilbilde", - "Full name" : "Fullt navn", - "No display name set" : "Visningsnavn ikke satt", - "Email" : "Epost", - "Your email address" : "Din e-postadresse", - "For password recovery and notifications" : "For passord-gjenoppretting og varsler", - "No email address set" : "E-postadresse ikke satt", - "You are member of the following groups:" : "Du er medlem av følgende grupper:", - "Password" : "Passord", - "Unable to change your password" : "Kunne ikke endre passordet ditt", - "Current password" : "Nåværende passord", - "New password" : "Nytt passord", - "Change password" : "Endre passord", - "Language" : "Språk", - "Help translate" : "Bidra til oversettelsen", - "Get the apps to sync your files" : "Hent apper som synkroniserer filene dine", - "Desktop client" : "Skrivebordsklient", - "Android app" : "Android-app", - "iOS app" : "iOS-app", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Hvis du vil støtte prosjektet kan du\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">delta i utviklingen</a>\n\t\teller\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spre budskapet</a>!", - "Show First Run Wizard again" : "Vis \"Førstegangs veiviser\" på nytt", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Utviklet av {communityopen}ownCloud-fellesskapet{linkclose}. {githubopen}Kildekoden{linkclose} er lisensiert under {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}.", - "Show storage location" : "Vis lagringssted", - "Show last log in" : "Vis site innlogging", - "Show user backend" : "Vis bruker-server", - "Send email to new user" : "Send e-post til ny bruker", - "Show email address" : "Vis e-postadresse", - "Username" : "Brukernavn", - "E-Mail" : "E-post", - "Create" : "Opprett", - "Admin Recovery Password" : "Administrativt gjenopprettingspassord", - "Enter the recovery password in order to recover the users files during password change" : "Legg inn gjenopprettingspassordet for å gjenopprette brukerfilene når passordet endres", - "Add Group" : "Legg til gruppe", - "Group" : "Gruppe", - "Everyone" : "Alle", - "Admins" : "Administratorer", - "Default Quota" : "Standard kvote", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Legg inn lagringskvote (f.eks. \"512 MB\" eller \"12 GB\")", - "Other" : "Annet", - "Full Name" : "Fullt navn", - "Group Admin for" : "Gruppeadministrator for", - "Quota" : "Kvote", - "Storage Location" : "Lagringsplassering", - "User Backend" : "Bruker-server", - "Last Login" : "Siste innlogging", - "change full name" : "endre fullt navn", - "set new password" : "sett nytt passord", - "change email address" : "endre e-postadresse", - "Default" : "Standard" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/nds.js b/settings/l10n/nds.js deleted file mode 100644 index a8c440f6e0b..00000000000 --- a/settings/l10n/nds.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "settings", - { - "External Storage" : "Externer Speicher", - "Saved" : "Gespeichert", - "Delete" : "Löschen", - "Very weak password" : "Sehr schwaches Passwort", - "Weak password" : "Schwaches Passwort", - "So-so password" : "Mittelstarkes Passwort", - "Good password" : "Gutes Passwort", - "Strong password" : "Starkes Passwort", - "None" : "Keine(r)", - "Enable encryption" : "Verschlüsselung aktivieren", - "Port" : "Port", - "Cancel" : "Abbrechen", - "Password" : "Passwort", - "Username" : "Benutzername" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/nds.json b/settings/l10n/nds.json deleted file mode 100644 index a8b5ae43a75..00000000000 --- a/settings/l10n/nds.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "External Storage" : "Externer Speicher", - "Saved" : "Gespeichert", - "Delete" : "Löschen", - "Very weak password" : "Sehr schwaches Passwort", - "Weak password" : "Schwaches Passwort", - "So-so password" : "Mittelstarkes Passwort", - "Good password" : "Gutes Passwort", - "Strong password" : "Starkes Passwort", - "None" : "Keine(r)", - "Enable encryption" : "Verschlüsselung aktivieren", - "Port" : "Port", - "Cancel" : "Abbrechen", - "Password" : "Passwort", - "Username" : "Benutzername" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/nl.js b/settings/l10n/nl.js deleted file mode 100644 index c069b98e203..00000000000 --- a/settings/l10n/nl.js +++ /dev/null @@ -1,298 +0,0 @@ -OC.L10N.register( - "settings", - { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Beveiligings- en instellingswaarschuwingen", - "Sharing" : "Delen", - "Server-side encryption" : "Server-side versleuteling", - "External Storage" : "Externe opslag", - "Cron" : "Cron", - "Email server" : "E-mailserver", - "Log" : "Log", - "Tips & tricks" : "Tips & trucs", - "Updates" : "Updates", - "Couldn't remove app." : "Kon app niet verwijderen.", - "Language changed" : "Taal aangepast", - "Invalid request" : "Ongeldige aanvraag", - "Authentication error" : "Authenticatie fout", - "Admins can't remove themself from the admin group" : "Admins kunnen zichzelf niet uit de admin groep verwijderen", - "Unable to add user to group %s" : "Niet in staat om gebruiker toe te voegen aan groep %s", - "Unable to remove user from group %s" : "Niet in staat om gebruiker te verwijderen uit groep %s", - "Couldn't update app." : "Kon de app niet bijwerken.", - "Wrong password" : "Onjuist wachtwoord", - "No user supplied" : "Geen gebruiker opgegeven", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Voer een beheerdersherstelwachtwoord in, anders zullen alle gebruikersgegevens verloren gaan", - "Wrong admin recovery password. Please check the password and try again." : "Onjuist beheerdersherstelwachtwoord. Controleer het wachtwoord en probeer het opnieuw.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "De Back-end ondersteunt geen wachtwoordwijzigingen, maar de cryptosleutel van de gebruiker is succesvol bijgewerkt.", - "Unable to change password" : "Kan wachtwoord niet wijzigen", - "Enabled" : "Geactiveerd", - "Not enabled" : "Niet ingeschakeld", - "installing and updating apps via the app store or Federated Cloud Sharing" : "installeren en bijwerken applicaties via de app store of Federated Cloud Sharing", - "Federated Cloud Sharing" : "Federated Cloud Sharing", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cUrl gebruikt een verouderde %s versie (%s). Werk het besturingssysteem bij of functies als %s zullen niet betrouwbaar werken.", - "A problem occurred, please check your log files (Error: %s)" : "Er trad een een probleem op, controleer uw logbestanden (Fout: %s).", - "Migration Completed" : "Migratie gereed", - "Group already exists." : "Groep bestaat al.", - "Unable to add group." : "Kan groep niet toevoegen.", - "Unable to delete group." : "Kan groep niet verwijderen.", - "log-level out of allowed range" : "loggingniveau buiten toegestane bereik", - "Saved" : "Bewaard", - "test email settings" : "test e-mailinstellingen", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Er ontstond een probleem bij het versturen van de e-mail. Controleer uw instellingen. (Fout: %s)", - "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.", - "Invalid mail address" : "Ongeldig e-mailadres", - "A user with that name already exists." : "Er bestaat al een gebruiker met die naam.", - "Unable to create user." : "Kan gebruiker niet aanmaken.", - "Your %s account was created" : "Uw %s account is aangemaakt", - "Unable to delete user." : "Kan gebruiker niet verwijderen.", - "Forbidden" : "Verboden", - "Invalid user" : "Ongeldige gebruiker", - "Unable to change mail address" : "Kan e-mailadres niet wijzigen", - "Email saved" : "E-mail bewaard", - "Your full name has been changed." : "Uw volledige naam is gewijzigd.", - "Unable to change full name" : "Kan de volledige naam niet wijzigen", - "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", - "Migration in progress. Please wait until the migration is finished" : "Migratie bezig. Wacht tot het proces klaar is.", - "Migration started …" : "Migratie gestart...", - "Sending..." : "Versturen...", - "Official" : "Officieel", - "Approved" : "Goedgekeurd", - "Experimental" : "Experimenteel", - "All" : "Alle", - "No apps found for your version" : "Geen apps gevonden voor uw versie", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Officiële apps zijn ontwikkeld door en binnen de ownCloud community. Ze bieden functionaliteit binnen ownCloud en zijn klaar voor gebruik in een productie omgeving.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Goedgekeurde apps zijn ontwikkeld door vertrouwde ontwikkelaars en hebben een beveiligingscontrole ondergaan. Ze worden actief onderhouden in een open code repository en hun ontwikkelaars vinden ze stabiel genoeg voor informeel of normaal gebruik.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Deze app is niet gecontroleerd op beveiligingsproblemen en is nieuw is is bekend als onstabiel. Installeren op eigen risico.", - "Update to %s" : "Bijgewerkt naar %s", - "_You have %n app update pending_::_You have %n app updates pending_" : ["Er is een update voor een applicatie","Er zijn %n applicaties die geupdate kunnen worden"], - "Please wait...." : "Even geduld a.u.b.", - "Error while disabling app" : "Fout tijdens het uitzetten van de app", - "Disable" : "Uitschakelen", - "Enable" : "Activeer", - "Error while enabling app" : "Fout tijdens het aanzetten van het programma", - "Error: this app cannot be enabled because it makes the server unstable" : "Fout: deze app kan niet geïnstalleerd worden, omdat het de server onstabiel maakt", - "Error: could not disable broken app" : "Fout: kan kapotte app niet uitschakelen", - "Error while disabling broken app" : "Fout bij het uitzetten van de niet werkende app", - "Updating...." : "Bijwerken....", - "Error while updating app" : "Fout bij bijwerken app", - "Updated" : "Bijgewerkt", - "Uninstalling ...." : "De-installeren ...", - "Error while uninstalling app" : "Fout bij de-installeren app", - "Uninstall" : "De-installeren", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "De app is geactiveerd maar moet worden bijgewerkt. U wordt over 5 seconden doorgeleid naar de bijwerkpagina.", - "App update" : "App update", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Er trad een fout op. Upload als een ASCII-gecodeerd PEM certificaat.", - "Valid until {date}" : "Geldig tot {date}", - "Delete" : "Verwijder", - "An error occurred: {message}" : "Er heeft zich een fout voorgedaan: {message}", - "Select a profile picture" : "Kies een profielafbeelding", - "Very weak password" : "Zeer zwak wachtwoord", - "Weak password" : "Zwak wachtwoord", - "So-so password" : "Matig wachtwoord", - "Good password" : "Goed wachtwoord", - "Strong password" : "Sterk wachtwoord", - "Groups" : "Groepen", - "Unable to delete {objName}" : "Kan {objName} niet verwijderen", - "Error creating group: {message}" : "Fout bij aanmaken groep: {message}", - "A valid group name must be provided" : "Er moet een geldige groepsnaam worden opgegeven", - "deleted {groupName}" : "verwijderd {groupName}", - "undo" : "ongedaan maken", - "no group" : "geen groep", - "never" : "geen", - "deleted {userName}" : "verwijderd {userName}", - "add group" : "Nieuwe groep", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Wijzigen van het wachtwoord leidt tot gegevensverlies, omdat gegevensherstel voor deze gebruiker niet beschikbaar is", - "A valid username must be provided" : "Er moet een geldige gebruikersnaam worden opgegeven", - "Error creating user: {message}" : "Fout bij aanmaken gebruiker: {message}", - "A valid password must be provided" : "Er moet een geldig wachtwoord worden opgegeven", - "A valid email must be provided" : "Er moet een geldig e-mailadres worden opgegeven", - "__language_name__" : "Nederlands", - "Unlimited" : "Ongelimiteerd", - "Personal info" : "Persoonlijke info", - "Sync clients" : "Sync clients", - "Everything (fatal issues, errors, warnings, info, debug)" : "Alles (fatale problemen, fouten, waarschuwingen, info, debug)", - "Info, warnings, errors and fatal issues" : "Info, waarschuwingen, fouten en fatale problemen", - "Warnings, errors and fatal issues" : "Waarschuwingen, fouten en fatale problemen", - "Errors and fatal issues" : "Fouten en fatale problemen", - "Fatal issues only" : "Alleen fatale problemen", - "None" : "Geen", - "Login" : "Login", - "Plain" : "Gewoon", - "NT LAN Manager" : "NT LAN Manager", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "php lijkt niet goed te zijn ingesteld om systeemomgevingsvariabelen te bevragen. De test met getenv(\"PATH\") gaf een leeg resultaat.", - "Please check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation documentation ↗</a> for php configuration notes and the php configuration of your server, especially when using php-fpm." : "Verifieer de <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installatiedocumentatie ↗</a> voor php configuratie notities en de php configuratie van uw server, zeker als php-fpm wordt gebruikt.", - "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.", - "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP is blijkbaar zo ingesteld dat inline doc blokken worden gestript. Hierdoor worden verschillende kernmodules onbruikbaar.", - "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Dit wordt vermoedelijk veroorzaakt door een cache/accelerator, zoals Zend OPcache of eAccelerator.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Uw server draait op Microsoft Windows. We adviseren om een linux server te gebruiken voor een optimale gebruikerservaring.", - "%1$s below version %2$s is installed, for stability and performance reasons we recommend updating to a newer %1$s version." : "%1$s lager dan versie %2$s geïnstalleerd, voor betere stabiliteit en prestaties adviseren wij om %1$s te upgraden naar een nieuwere versie.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "De PHP module 'fileinfo' ontbreekt. We adviseren met klem om deze module te activeren om de beste resultaten te bereiken voor mime-type detectie.", - "Transactional file locking is disabled, this might lead to issues with race conditions. Enable 'filelocking.enabled' in config.php to avoid these problems. See the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a> for more information." : "Transactionele bestandlocking is gedeactiveerd, dat zou kunnen leiden tot versiebeheerproblemen. Schakel 'filelocking enabled' in config.php in om deze problemen te voorkomen. Zie de <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentatie ↗</a> voor meer informatie.", - "System locale can not be set to a one which supports UTF-8." : "De systeemtaal kan niet worden ingesteld op een taal die UTF-8 ondersteunt.", - "This means that there might be problems with certain characters in file names." : "Dat betekent dat er problemen kunnen optreden met bepaalde tekens in bestandsnamen.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "We adviseren met klem om de noodzakelijke pakketten op uw systeem te installeren om een van de volgende talen te ondersteunen: %s.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Als uw installatie niet in de hoofddirectory van het domein staat, maar wel cron gebruikt, dan kunnen er problemen ontstaan bij het genereren van URL's. Om deze problemen te voorkomen zou u de \"overwrite.cli.url\" optie in config.php moeten instellen op het webroot pad van uw ownCloud (aanbevolen: \"%s\") ", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "het was niet mogelijk om de cronjob via CLI uit te voeren. De volgende technische problemen traden op:", - "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"#log-section\">log</a>." : "Lees de <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installatie handleiding</a> goed door en controleer op fouten en waarschuwingen in de <a href=\"#log-section\">logging</a>.", - "All checks passed." : "Alle checks geslaagd", - "Open documentation" : "Open documentatie", - "Allow apps to use the Share API" : "Apps toestaan de Share API te gebruiken", - "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", - "Allow sharing with groups" : "Sta delen met groepen toe", - "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 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.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Sta auto-aanvullen van gebruikersnaam toe in de Delen-dialoog. Als dit is uitgeschakeld, moet de gebruikersnaam volledig worden ingevuld.", - "Last cron job execution: %s." : "Laatst uitgevoerde cronjob: %s.", - "Last cron job execution: %s. Something seems wrong." : "Laatst uitgevoerde cronjob: %s. Er lijkt iets fout gegaan.", - "Cron was not executed yet!" : "Cron is nog niet uitgevoerd!", - "Execute one task with each page loaded" : "Bij laden van elke pagina één taak uitvoeren", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php is geregisteerd bij een webcron service om elke 15 minuten cron.php over http aan te roepen.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Gebruik de systeem cron service om cron.php elke 15 minuten aan te roepen.", - "Enable server-side encryption" : "Server-side versleuteling inschakelen", - "Please read carefully before activating server-side encryption: " : "Lees dit goed, voordat u de serverside versleuteling activeert:", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "Als versleuteling is ingeschakeld, worden alle geüploade bestanden vanaf dat moment versleuteld opgeslagen op de server. Het is alleen mogelijk om de versleuteling later uit te schakelen als de actieve versleutelingsmodule dit ondersteunt en aan alle pré-condities (mn de ingestelde herstelsleutel) wordt voldaan.", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "Alleen maar versleutelen is geen garantie voor veiligheid van het systeem. Lees de ownCloud documentatie voor meer informatie over de versleutelingsapp en de ondersteunde use cases.", - "Be aware that encryption always increases the file size." : "Let erop dat versleuteling de bestandsomvang altijd laat toenemen.", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "Het is altijd verstandig om regelmatig backups van uw bestanden te maken. Zorg ervoor dat u in geval van versleuteling ook de cryptosleutel met uw gegevens backupt.", - "This is the final warning: Do you really want to enable encryption?" : "Dit is de laatste waarschuwing: Wilt u versleuteling echt inschakelen?", - "Enable encryption" : "Versleuteling inschakelen", - "No encryption module loaded, please enable an encryption module in the app menu." : "Er is geen cryptomodule geladen, activeer een cryptomodule in het appmenu", - "Select default encryption module:" : "Selecteer de standaard cryptomodule:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "U moet uw cryptosleutels van de oude versleuteling (ownCloud <= 8.0) migreren naar de nieuwe. Activeer de \"Standaard cryptomodule\" en start 'occ encryption:migrate'", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "U moet uw cryptosleutels van de oude versleuteling (ownCloud <= 8.0) migreren naar de nieuwe.", - "Start migration" : "Start migratie", - "This is used for sending out notifications." : "Dit wordt gebruikt voor het verzenden van meldingen.", - "Send mode" : "Verstuurmodus", - "Encryption" : "Versleuteling", - "From address" : "Afzenderadres", - "mail" : "e-mail", - "Authentication method" : "Authenticatiemethode", - "Authentication required" : "Authenticatie vereist", - "Server address" : "Server adres", - "Port" : "Poort", - "Credentials" : "Inloggegevens", - "SMTP Username" : "SMTP gebruikersnaam", - "SMTP Password" : "SMTP wachtwoord", - "Store credentials" : "Opslaan inloggegevens", - "Test email settings" : "Test e-mailinstellingen", - "Send email" : "Versturen e-mail", - "Download logfile" : "Download logbestand", - "More" : "Meer", - "Less" : "Minder", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Het logbestand is groter dan 100MB. Downloaden kost even tijd!", - "What to log" : "Wat loggen", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite wordt gebruikt als database. Voor grotere installaties adviseren we om te schakelen naar een andere database engine.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Vooral wanneer de desktop client wordt gebruik voor bestandssynchronisatie wordt gebruik van sqlite afgeraden.", - "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a>." : "Om te migreren naar een andere database moet u de commandoregel tool gebruiken: 'occ db:convert-type', lees de <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentatie ↗</a>.", - "How to do backups" : "Hoe maak je back-ups", - "Advanced monitoring" : "Geavanceerde monitoring", - "Performance tuning" : "Prestatie afstelling", - "Improving the config.php" : "config.php verbeteren", - "Theming" : "Thema's", - "Hardening and security guidance" : "Hardening en security advies", - "Version" : "Versie", - "Developer documentation" : "Ontwikkelaarsdocumentatie", - "Experimental applications ahead" : "Experimentele applicaties vooraan", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Experimentele apps zijn niet gecontroleerd op beveiligingsproblemen, zijn nieuw of staan bekend als instabiel en worden volop ontwikkeld. Installatie kan leiden tot gegevensverlies of beveiligingsincidenten.", - "by %s" : "op %s", - "%s-licensed" : "%s-licensed", - "Documentation:" : "Documentatie:", - "User documentation" : "Gebruikersdocumentatie", - "Admin documentation" : "Beheerdocumentatie", - "Show description …" : "Toon beschrijving ...", - "Hide description …" : "Verberg beschrijving ...", - "This app has an update available." : "Er is een update beschikbaar voor deze applicatie.", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Deze app heeft geen minimum ownCloud versienummer toegewezen gekregen. Dit wordt een fout in ownCloud 11 en later.", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Deze app heeft geen maximum ownCloud versienummer toegewezen gekregen. Dit wordt een fout in ownCloud 11 en later.", - "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:", - "Enable only for specific groups" : "Alleen voor bepaalde groepen activeren", - "Uninstall App" : "De-installeren app", - "Enable experimental apps" : "Inschakelen experimentele apps", - "SSL Root Certificates" : "SSL Root Certificaten", - "Common Name" : "Common Name", - "Valid until" : "Geldig tot", - "Issued By" : "Uitgegeven door", - "Valid until %s" : "Geldig tot %s", - "Import root certificate" : "Importeren root certificaat", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Hallo daar,<br><br>we willen u laten weten dat u nu een %s account hebt.<br><br>Uw gebruikersnaam: %s<br>Ga naar: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Proficiat!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Hallo,\n\nwe willen u laten weten dat u nu een %s account hebt.\n\nUw gebruikersnaam: %s\nGa naar: %s\n\n", - "Administrator documentation" : "Beheerdersdocumentatie", - "Online documentation" : "Online documentatie", - "Forum" : "Forum", - "Issue tracker" : "Issue tracker", - "Commercial support" : "Commerciële ondersteuning", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "U gebruikt <strong>%s</strong> van <strong>%s</strong>", - "Profile picture" : "Profielafbeelding", - "Upload new" : "Upload een nieuwe", - "Select from Files" : "Kies uit bestanden", - "Remove image" : "Afbeelding verwijderen", - "png or jpg, max. 20 MB" : "png of jpg, max. 20 MB", - "Picture provided by original account" : "Afbeelding is verstrekt door originele account.", - "Cancel" : "Annuleer", - "Choose as profile picture" : "Kies als profielafbeelding", - "Full name" : "Volledige naam", - "No display name set" : "Nog geen weergavenaam ingesteld", - "Email" : "E-mailadres", - "Your email address" : "Uw e-mailadres", - "For password recovery and notifications" : "Voor wachtwoordherstel en meldingen", - "No email address set" : "Geen e-mailadres opgegeven", - "You are member of the following groups:" : "U bent lid van de volgende groepen:", - "Password" : "Wachtwoord", - "Unable to change your password" : "Niet in staat om uw wachtwoord te wijzigen", - "Current password" : "Huidig wachtwoord", - "New password" : "Nieuw", - "Change password" : "Wijzig wachtwoord", - "Language" : "Taal", - "Help translate" : "Help met vertalen", - "Get the apps to sync your files" : "Download de apps om bestanden te synchroniseren", - "Desktop client" : "Desktop client", - "Android app" : "Android app", - "iOS app" : "iOS app", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Als u het project wilt ondersteunen\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">ontwikkel mee</a>\n\t\tof\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">verkondig het nieuws</a>!", - "Show First Run Wizard again" : "Toon de Eerste start Wizard opnieuw", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Ontwikkeld door de {communityopen}ownCloud gemeenschap{linkclose}, de {githubopen}source code{linkclose} is gelicenseerd onder de {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}.", - "Show storage location" : "Toon opslaglocatie", - "Show last log in" : "Toon laatste inlog", - "Show user backend" : "Toon backend gebruiker", - "Send email to new user" : "Verstuur e-mail aan nieuwe gebruiker", - "Show email address" : "Toon e-mailadres", - "Username" : "Gebruikersnaam", - "E-Mail" : "E-mail", - "Create" : "Aanmaken", - "Admin Recovery Password" : "Beheer herstel wachtwoord", - "Enter the recovery password in order to recover the users files during password change" : "Voer het herstel wachtwoord in om de gebruikersbestanden terug te halen bij wachtwoordwijziging", - "Add Group" : "Toevoegen groep", - "Group" : "Groep", - "Everyone" : "Iedereen", - "Admins" : "Beheerders", - "Default Quota" : "Standaard limiet", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Geef de opslagquotering op (bijv. \"512 MB\" of \"12 GB\")", - "Other" : "Anders", - "Full Name" : "Volledige naam", - "Group Admin for" : "Groepsbeheerder voor", - "Quota" : "Limieten", - "Storage Location" : "Opslaglocatie", - "User Backend" : "Backend gebruiker", - "Last Login" : "Laatste inlog", - "change full name" : "wijzigen volledige naam", - "set new password" : "Instellen nieuw wachtwoord", - "change email address" : "wijzig e-mailadres", - "Default" : "Standaard" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/nl.json b/settings/l10n/nl.json deleted file mode 100644 index 09ed6852d31..00000000000 --- a/settings/l10n/nl.json +++ /dev/null @@ -1,296 +0,0 @@ -{ "translations": { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Beveiligings- en instellingswaarschuwingen", - "Sharing" : "Delen", - "Server-side encryption" : "Server-side versleuteling", - "External Storage" : "Externe opslag", - "Cron" : "Cron", - "Email server" : "E-mailserver", - "Log" : "Log", - "Tips & tricks" : "Tips & trucs", - "Updates" : "Updates", - "Couldn't remove app." : "Kon app niet verwijderen.", - "Language changed" : "Taal aangepast", - "Invalid request" : "Ongeldige aanvraag", - "Authentication error" : "Authenticatie fout", - "Admins can't remove themself from the admin group" : "Admins kunnen zichzelf niet uit de admin groep verwijderen", - "Unable to add user to group %s" : "Niet in staat om gebruiker toe te voegen aan groep %s", - "Unable to remove user from group %s" : "Niet in staat om gebruiker te verwijderen uit groep %s", - "Couldn't update app." : "Kon de app niet bijwerken.", - "Wrong password" : "Onjuist wachtwoord", - "No user supplied" : "Geen gebruiker opgegeven", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Voer een beheerdersherstelwachtwoord in, anders zullen alle gebruikersgegevens verloren gaan", - "Wrong admin recovery password. Please check the password and try again." : "Onjuist beheerdersherstelwachtwoord. Controleer het wachtwoord en probeer het opnieuw.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "De Back-end ondersteunt geen wachtwoordwijzigingen, maar de cryptosleutel van de gebruiker is succesvol bijgewerkt.", - "Unable to change password" : "Kan wachtwoord niet wijzigen", - "Enabled" : "Geactiveerd", - "Not enabled" : "Niet ingeschakeld", - "installing and updating apps via the app store or Federated Cloud Sharing" : "installeren en bijwerken applicaties via de app store of Federated Cloud Sharing", - "Federated Cloud Sharing" : "Federated Cloud Sharing", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cUrl gebruikt een verouderde %s versie (%s). Werk het besturingssysteem bij of functies als %s zullen niet betrouwbaar werken.", - "A problem occurred, please check your log files (Error: %s)" : "Er trad een een probleem op, controleer uw logbestanden (Fout: %s).", - "Migration Completed" : "Migratie gereed", - "Group already exists." : "Groep bestaat al.", - "Unable to add group." : "Kan groep niet toevoegen.", - "Unable to delete group." : "Kan groep niet verwijderen.", - "log-level out of allowed range" : "loggingniveau buiten toegestane bereik", - "Saved" : "Bewaard", - "test email settings" : "test e-mailinstellingen", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Er ontstond een probleem bij het versturen van de e-mail. Controleer uw instellingen. (Fout: %s)", - "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.", - "Invalid mail address" : "Ongeldig e-mailadres", - "A user with that name already exists." : "Er bestaat al een gebruiker met die naam.", - "Unable to create user." : "Kan gebruiker niet aanmaken.", - "Your %s account was created" : "Uw %s account is aangemaakt", - "Unable to delete user." : "Kan gebruiker niet verwijderen.", - "Forbidden" : "Verboden", - "Invalid user" : "Ongeldige gebruiker", - "Unable to change mail address" : "Kan e-mailadres niet wijzigen", - "Email saved" : "E-mail bewaard", - "Your full name has been changed." : "Uw volledige naam is gewijzigd.", - "Unable to change full name" : "Kan de volledige naam niet wijzigen", - "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", - "Migration in progress. Please wait until the migration is finished" : "Migratie bezig. Wacht tot het proces klaar is.", - "Migration started …" : "Migratie gestart...", - "Sending..." : "Versturen...", - "Official" : "Officieel", - "Approved" : "Goedgekeurd", - "Experimental" : "Experimenteel", - "All" : "Alle", - "No apps found for your version" : "Geen apps gevonden voor uw versie", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Officiële apps zijn ontwikkeld door en binnen de ownCloud community. Ze bieden functionaliteit binnen ownCloud en zijn klaar voor gebruik in een productie omgeving.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Goedgekeurde apps zijn ontwikkeld door vertrouwde ontwikkelaars en hebben een beveiligingscontrole ondergaan. Ze worden actief onderhouden in een open code repository en hun ontwikkelaars vinden ze stabiel genoeg voor informeel of normaal gebruik.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Deze app is niet gecontroleerd op beveiligingsproblemen en is nieuw is is bekend als onstabiel. Installeren op eigen risico.", - "Update to %s" : "Bijgewerkt naar %s", - "_You have %n app update pending_::_You have %n app updates pending_" : ["Er is een update voor een applicatie","Er zijn %n applicaties die geupdate kunnen worden"], - "Please wait...." : "Even geduld a.u.b.", - "Error while disabling app" : "Fout tijdens het uitzetten van de app", - "Disable" : "Uitschakelen", - "Enable" : "Activeer", - "Error while enabling app" : "Fout tijdens het aanzetten van het programma", - "Error: this app cannot be enabled because it makes the server unstable" : "Fout: deze app kan niet geïnstalleerd worden, omdat het de server onstabiel maakt", - "Error: could not disable broken app" : "Fout: kan kapotte app niet uitschakelen", - "Error while disabling broken app" : "Fout bij het uitzetten van de niet werkende app", - "Updating...." : "Bijwerken....", - "Error while updating app" : "Fout bij bijwerken app", - "Updated" : "Bijgewerkt", - "Uninstalling ...." : "De-installeren ...", - "Error while uninstalling app" : "Fout bij de-installeren app", - "Uninstall" : "De-installeren", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "De app is geactiveerd maar moet worden bijgewerkt. U wordt over 5 seconden doorgeleid naar de bijwerkpagina.", - "App update" : "App update", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Er trad een fout op. Upload als een ASCII-gecodeerd PEM certificaat.", - "Valid until {date}" : "Geldig tot {date}", - "Delete" : "Verwijder", - "An error occurred: {message}" : "Er heeft zich een fout voorgedaan: {message}", - "Select a profile picture" : "Kies een profielafbeelding", - "Very weak password" : "Zeer zwak wachtwoord", - "Weak password" : "Zwak wachtwoord", - "So-so password" : "Matig wachtwoord", - "Good password" : "Goed wachtwoord", - "Strong password" : "Sterk wachtwoord", - "Groups" : "Groepen", - "Unable to delete {objName}" : "Kan {objName} niet verwijderen", - "Error creating group: {message}" : "Fout bij aanmaken groep: {message}", - "A valid group name must be provided" : "Er moet een geldige groepsnaam worden opgegeven", - "deleted {groupName}" : "verwijderd {groupName}", - "undo" : "ongedaan maken", - "no group" : "geen groep", - "never" : "geen", - "deleted {userName}" : "verwijderd {userName}", - "add group" : "Nieuwe groep", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Wijzigen van het wachtwoord leidt tot gegevensverlies, omdat gegevensherstel voor deze gebruiker niet beschikbaar is", - "A valid username must be provided" : "Er moet een geldige gebruikersnaam worden opgegeven", - "Error creating user: {message}" : "Fout bij aanmaken gebruiker: {message}", - "A valid password must be provided" : "Er moet een geldig wachtwoord worden opgegeven", - "A valid email must be provided" : "Er moet een geldig e-mailadres worden opgegeven", - "__language_name__" : "Nederlands", - "Unlimited" : "Ongelimiteerd", - "Personal info" : "Persoonlijke info", - "Sync clients" : "Sync clients", - "Everything (fatal issues, errors, warnings, info, debug)" : "Alles (fatale problemen, fouten, waarschuwingen, info, debug)", - "Info, warnings, errors and fatal issues" : "Info, waarschuwingen, fouten en fatale problemen", - "Warnings, errors and fatal issues" : "Waarschuwingen, fouten en fatale problemen", - "Errors and fatal issues" : "Fouten en fatale problemen", - "Fatal issues only" : "Alleen fatale problemen", - "None" : "Geen", - "Login" : "Login", - "Plain" : "Gewoon", - "NT LAN Manager" : "NT LAN Manager", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "php lijkt niet goed te zijn ingesteld om systeemomgevingsvariabelen te bevragen. De test met getenv(\"PATH\") gaf een leeg resultaat.", - "Please check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation documentation ↗</a> for php configuration notes and the php configuration of your server, especially when using php-fpm." : "Verifieer de <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installatiedocumentatie ↗</a> voor php configuratie notities en de php configuratie van uw server, zeker als php-fpm wordt gebruikt.", - "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.", - "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP is blijkbaar zo ingesteld dat inline doc blokken worden gestript. Hierdoor worden verschillende kernmodules onbruikbaar.", - "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Dit wordt vermoedelijk veroorzaakt door een cache/accelerator, zoals Zend OPcache of eAccelerator.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Uw server draait op Microsoft Windows. We adviseren om een linux server te gebruiken voor een optimale gebruikerservaring.", - "%1$s below version %2$s is installed, for stability and performance reasons we recommend updating to a newer %1$s version." : "%1$s lager dan versie %2$s geïnstalleerd, voor betere stabiliteit en prestaties adviseren wij om %1$s te upgraden naar een nieuwere versie.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "De PHP module 'fileinfo' ontbreekt. We adviseren met klem om deze module te activeren om de beste resultaten te bereiken voor mime-type detectie.", - "Transactional file locking is disabled, this might lead to issues with race conditions. Enable 'filelocking.enabled' in config.php to avoid these problems. See the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a> for more information." : "Transactionele bestandlocking is gedeactiveerd, dat zou kunnen leiden tot versiebeheerproblemen. Schakel 'filelocking enabled' in config.php in om deze problemen te voorkomen. Zie de <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentatie ↗</a> voor meer informatie.", - "System locale can not be set to a one which supports UTF-8." : "De systeemtaal kan niet worden ingesteld op een taal die UTF-8 ondersteunt.", - "This means that there might be problems with certain characters in file names." : "Dat betekent dat er problemen kunnen optreden met bepaalde tekens in bestandsnamen.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "We adviseren met klem om de noodzakelijke pakketten op uw systeem te installeren om een van de volgende talen te ondersteunen: %s.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Als uw installatie niet in de hoofddirectory van het domein staat, maar wel cron gebruikt, dan kunnen er problemen ontstaan bij het genereren van URL's. Om deze problemen te voorkomen zou u de \"overwrite.cli.url\" optie in config.php moeten instellen op het webroot pad van uw ownCloud (aanbevolen: \"%s\") ", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "het was niet mogelijk om de cronjob via CLI uit te voeren. De volgende technische problemen traden op:", - "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"#log-section\">log</a>." : "Lees de <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installatie handleiding</a> goed door en controleer op fouten en waarschuwingen in de <a href=\"#log-section\">logging</a>.", - "All checks passed." : "Alle checks geslaagd", - "Open documentation" : "Open documentatie", - "Allow apps to use the Share API" : "Apps toestaan de Share API te gebruiken", - "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", - "Allow sharing with groups" : "Sta delen met groepen toe", - "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 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.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Sta auto-aanvullen van gebruikersnaam toe in de Delen-dialoog. Als dit is uitgeschakeld, moet de gebruikersnaam volledig worden ingevuld.", - "Last cron job execution: %s." : "Laatst uitgevoerde cronjob: %s.", - "Last cron job execution: %s. Something seems wrong." : "Laatst uitgevoerde cronjob: %s. Er lijkt iets fout gegaan.", - "Cron was not executed yet!" : "Cron is nog niet uitgevoerd!", - "Execute one task with each page loaded" : "Bij laden van elke pagina één taak uitvoeren", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php is geregisteerd bij een webcron service om elke 15 minuten cron.php over http aan te roepen.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Gebruik de systeem cron service om cron.php elke 15 minuten aan te roepen.", - "Enable server-side encryption" : "Server-side versleuteling inschakelen", - "Please read carefully before activating server-side encryption: " : "Lees dit goed, voordat u de serverside versleuteling activeert:", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "Als versleuteling is ingeschakeld, worden alle geüploade bestanden vanaf dat moment versleuteld opgeslagen op de server. Het is alleen mogelijk om de versleuteling later uit te schakelen als de actieve versleutelingsmodule dit ondersteunt en aan alle pré-condities (mn de ingestelde herstelsleutel) wordt voldaan.", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "Alleen maar versleutelen is geen garantie voor veiligheid van het systeem. Lees de ownCloud documentatie voor meer informatie over de versleutelingsapp en de ondersteunde use cases.", - "Be aware that encryption always increases the file size." : "Let erop dat versleuteling de bestandsomvang altijd laat toenemen.", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "Het is altijd verstandig om regelmatig backups van uw bestanden te maken. Zorg ervoor dat u in geval van versleuteling ook de cryptosleutel met uw gegevens backupt.", - "This is the final warning: Do you really want to enable encryption?" : "Dit is de laatste waarschuwing: Wilt u versleuteling echt inschakelen?", - "Enable encryption" : "Versleuteling inschakelen", - "No encryption module loaded, please enable an encryption module in the app menu." : "Er is geen cryptomodule geladen, activeer een cryptomodule in het appmenu", - "Select default encryption module:" : "Selecteer de standaard cryptomodule:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "U moet uw cryptosleutels van de oude versleuteling (ownCloud <= 8.0) migreren naar de nieuwe. Activeer de \"Standaard cryptomodule\" en start 'occ encryption:migrate'", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "U moet uw cryptosleutels van de oude versleuteling (ownCloud <= 8.0) migreren naar de nieuwe.", - "Start migration" : "Start migratie", - "This is used for sending out notifications." : "Dit wordt gebruikt voor het verzenden van meldingen.", - "Send mode" : "Verstuurmodus", - "Encryption" : "Versleuteling", - "From address" : "Afzenderadres", - "mail" : "e-mail", - "Authentication method" : "Authenticatiemethode", - "Authentication required" : "Authenticatie vereist", - "Server address" : "Server adres", - "Port" : "Poort", - "Credentials" : "Inloggegevens", - "SMTP Username" : "SMTP gebruikersnaam", - "SMTP Password" : "SMTP wachtwoord", - "Store credentials" : "Opslaan inloggegevens", - "Test email settings" : "Test e-mailinstellingen", - "Send email" : "Versturen e-mail", - "Download logfile" : "Download logbestand", - "More" : "Meer", - "Less" : "Minder", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Het logbestand is groter dan 100MB. Downloaden kost even tijd!", - "What to log" : "Wat loggen", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite wordt gebruikt als database. Voor grotere installaties adviseren we om te schakelen naar een andere database engine.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Vooral wanneer de desktop client wordt gebruik voor bestandssynchronisatie wordt gebruik van sqlite afgeraden.", - "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a>." : "Om te migreren naar een andere database moet u de commandoregel tool gebruiken: 'occ db:convert-type', lees de <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentatie ↗</a>.", - "How to do backups" : "Hoe maak je back-ups", - "Advanced monitoring" : "Geavanceerde monitoring", - "Performance tuning" : "Prestatie afstelling", - "Improving the config.php" : "config.php verbeteren", - "Theming" : "Thema's", - "Hardening and security guidance" : "Hardening en security advies", - "Version" : "Versie", - "Developer documentation" : "Ontwikkelaarsdocumentatie", - "Experimental applications ahead" : "Experimentele applicaties vooraan", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Experimentele apps zijn niet gecontroleerd op beveiligingsproblemen, zijn nieuw of staan bekend als instabiel en worden volop ontwikkeld. Installatie kan leiden tot gegevensverlies of beveiligingsincidenten.", - "by %s" : "op %s", - "%s-licensed" : "%s-licensed", - "Documentation:" : "Documentatie:", - "User documentation" : "Gebruikersdocumentatie", - "Admin documentation" : "Beheerdocumentatie", - "Show description …" : "Toon beschrijving ...", - "Hide description …" : "Verberg beschrijving ...", - "This app has an update available." : "Er is een update beschikbaar voor deze applicatie.", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Deze app heeft geen minimum ownCloud versienummer toegewezen gekregen. Dit wordt een fout in ownCloud 11 en later.", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Deze app heeft geen maximum ownCloud versienummer toegewezen gekregen. Dit wordt een fout in ownCloud 11 en later.", - "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:", - "Enable only for specific groups" : "Alleen voor bepaalde groepen activeren", - "Uninstall App" : "De-installeren app", - "Enable experimental apps" : "Inschakelen experimentele apps", - "SSL Root Certificates" : "SSL Root Certificaten", - "Common Name" : "Common Name", - "Valid until" : "Geldig tot", - "Issued By" : "Uitgegeven door", - "Valid until %s" : "Geldig tot %s", - "Import root certificate" : "Importeren root certificaat", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Hallo daar,<br><br>we willen u laten weten dat u nu een %s account hebt.<br><br>Uw gebruikersnaam: %s<br>Ga naar: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Proficiat!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Hallo,\n\nwe willen u laten weten dat u nu een %s account hebt.\n\nUw gebruikersnaam: %s\nGa naar: %s\n\n", - "Administrator documentation" : "Beheerdersdocumentatie", - "Online documentation" : "Online documentatie", - "Forum" : "Forum", - "Issue tracker" : "Issue tracker", - "Commercial support" : "Commerciële ondersteuning", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "U gebruikt <strong>%s</strong> van <strong>%s</strong>", - "Profile picture" : "Profielafbeelding", - "Upload new" : "Upload een nieuwe", - "Select from Files" : "Kies uit bestanden", - "Remove image" : "Afbeelding verwijderen", - "png or jpg, max. 20 MB" : "png of jpg, max. 20 MB", - "Picture provided by original account" : "Afbeelding is verstrekt door originele account.", - "Cancel" : "Annuleer", - "Choose as profile picture" : "Kies als profielafbeelding", - "Full name" : "Volledige naam", - "No display name set" : "Nog geen weergavenaam ingesteld", - "Email" : "E-mailadres", - "Your email address" : "Uw e-mailadres", - "For password recovery and notifications" : "Voor wachtwoordherstel en meldingen", - "No email address set" : "Geen e-mailadres opgegeven", - "You are member of the following groups:" : "U bent lid van de volgende groepen:", - "Password" : "Wachtwoord", - "Unable to change your password" : "Niet in staat om uw wachtwoord te wijzigen", - "Current password" : "Huidig wachtwoord", - "New password" : "Nieuw", - "Change password" : "Wijzig wachtwoord", - "Language" : "Taal", - "Help translate" : "Help met vertalen", - "Get the apps to sync your files" : "Download de apps om bestanden te synchroniseren", - "Desktop client" : "Desktop client", - "Android app" : "Android app", - "iOS app" : "iOS app", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Als u het project wilt ondersteunen\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">ontwikkel mee</a>\n\t\tof\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">verkondig het nieuws</a>!", - "Show First Run Wizard again" : "Toon de Eerste start Wizard opnieuw", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Ontwikkeld door de {communityopen}ownCloud gemeenschap{linkclose}, de {githubopen}source code{linkclose} is gelicenseerd onder de {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}.", - "Show storage location" : "Toon opslaglocatie", - "Show last log in" : "Toon laatste inlog", - "Show user backend" : "Toon backend gebruiker", - "Send email to new user" : "Verstuur e-mail aan nieuwe gebruiker", - "Show email address" : "Toon e-mailadres", - "Username" : "Gebruikersnaam", - "E-Mail" : "E-mail", - "Create" : "Aanmaken", - "Admin Recovery Password" : "Beheer herstel wachtwoord", - "Enter the recovery password in order to recover the users files during password change" : "Voer het herstel wachtwoord in om de gebruikersbestanden terug te halen bij wachtwoordwijziging", - "Add Group" : "Toevoegen groep", - "Group" : "Groep", - "Everyone" : "Iedereen", - "Admins" : "Beheerders", - "Default Quota" : "Standaard limiet", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Geef de opslagquotering op (bijv. \"512 MB\" of \"12 GB\")", - "Other" : "Anders", - "Full Name" : "Volledige naam", - "Group Admin for" : "Groepsbeheerder voor", - "Quota" : "Limieten", - "Storage Location" : "Opslaglocatie", - "User Backend" : "Backend gebruiker", - "Last Login" : "Laatste inlog", - "change full name" : "wijzigen volledige naam", - "set new password" : "Instellen nieuw wachtwoord", - "change email address" : "wijzig e-mailadres", - "Default" : "Standaard" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/nn_NO.js b/settings/l10n/nn_NO.js deleted file mode 100644 index 766334b4c7c..00000000000 --- a/settings/l10n/nn_NO.js +++ /dev/null @@ -1,79 +0,0 @@ -OC.L10N.register( - "settings", - { - "Sharing" : "Deling", - "Cron" : "Cron", - "Log" : "Logg", - "Language changed" : "Språk endra", - "Invalid request" : "Ugyldig førespurnad", - "Authentication error" : "Autentiseringsfeil", - "Admins can't remove themself from the admin group" : "Administratorar kan ikkje fjerna seg sjølve frå admin-gruppa", - "Unable to add user to group %s" : "Klarte ikkje leggja til brukaren til gruppa %s", - "Unable to remove user from group %s" : "Klarte ikkje fjerna brukaren frå gruppa %s", - "Couldn't update app." : "Klarte ikkje oppdatera programmet.", - "Wrong password" : "Feil passord", - "No user supplied" : "Ingen brukar gjeve", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Ver venleg og gje eit admingjenopprettingspassord, elles vil all brukardata gå tapt.", - "Wrong admin recovery password. Please check the password and try again." : "Feil admingjenopprettingspassord. Ver venleg og sjekk passordet og prøv igjen.", - "Unable to change password" : "Klarte ikkje å endra passordet", - "Email sent" : "E-post sendt", - "Email saved" : "E-postadresse lagra", - "All" : "Alle", - "Please wait...." : "Ver venleg og vent …", - "Error while disabling app" : "Klarte ikkje å skru av programmet", - "Disable" : "Slå av", - "Enable" : "Slå på", - "Error while enabling app" : "Klarte ikkje å skru på programmet", - "Updating...." : "Oppdaterer …", - "Error while updating app" : "Feil ved oppdatering av app", - "Updated" : "Oppdatert", - "Delete" : "Slett", - "Select a profile picture" : "Vel eit profilbilete", - "Very weak password" : "Veldig svakt passord", - "Weak password" : "Svakt passord", - "Groups" : "Grupper", - "undo" : "angra", - "never" : "aldri", - "add group" : "legg til gruppe", - "A valid username must be provided" : "Du må oppgje eit gyldig brukarnamn", - "A valid password must be provided" : "Du må oppgje eit gyldig passord", - "__language_name__" : "Nynorsk", - "Unlimited" : "Ubegrensa", - "Login" : "Logg inn", - "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.", - "Allow apps to use the Share API" : "La app-ar bruka API-et til deling", - "Allow public uploads" : "Tillat offentlege opplastingar", - "Allow resharing" : "Tillat vidaredeling", - "Execute one task with each page loaded" : "Utfør éi oppgåve for kvar sidelasting", - "Encryption" : "Kryptering", - "Server address" : "Tenaradresse", - "More" : "Meir", - "Less" : "Mindre", - "Version" : "Utgåve", - "Forum" : "Forum", - "Profile picture" : "Profilbilete", - "Upload new" : "Last opp ny", - "Remove image" : "Fjern bilete", - "Cancel" : "Avbryt", - "Email" : "E-post", - "Your email address" : "Di epost-adresse", - "Password" : "Passord", - "Unable to change your password" : "Klarte ikkje endra passordet", - "Current password" : "Passord", - "New password" : "Nytt passord", - "Change password" : "Endra passord", - "Language" : "Språk", - "Help translate" : "Hjelp oss å omsetja", - "Get the apps to sync your files" : "Få app-ar som kan synkronisera filene dine", - "Show First Run Wizard again" : "Vis Oppstartvegvisaren igjen", - "Username" : "Brukarnamn", - "Create" : "Lag", - "Admin Recovery Password" : "Gjenopprettingspassord for administrator", - "Enter the recovery password in order to recover the users files during password change" : "Skriv inn gjenopprettingspassordet brukt for å gjenoppretta brukarfilene ved passordendring", - "Group" : "Gruppe", - "Other" : "Anna", - "Quota" : "Kvote", - "set new password" : "lag nytt passord", - "Default" : "Standard" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/nn_NO.json b/settings/l10n/nn_NO.json deleted file mode 100644 index 75d45647ac5..00000000000 --- a/settings/l10n/nn_NO.json +++ /dev/null @@ -1,77 +0,0 @@ -{ "translations": { - "Sharing" : "Deling", - "Cron" : "Cron", - "Log" : "Logg", - "Language changed" : "Språk endra", - "Invalid request" : "Ugyldig førespurnad", - "Authentication error" : "Autentiseringsfeil", - "Admins can't remove themself from the admin group" : "Administratorar kan ikkje fjerna seg sjølve frå admin-gruppa", - "Unable to add user to group %s" : "Klarte ikkje leggja til brukaren til gruppa %s", - "Unable to remove user from group %s" : "Klarte ikkje fjerna brukaren frå gruppa %s", - "Couldn't update app." : "Klarte ikkje oppdatera programmet.", - "Wrong password" : "Feil passord", - "No user supplied" : "Ingen brukar gjeve", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Ver venleg og gje eit admingjenopprettingspassord, elles vil all brukardata gå tapt.", - "Wrong admin recovery password. Please check the password and try again." : "Feil admingjenopprettingspassord. Ver venleg og sjekk passordet og prøv igjen.", - "Unable to change password" : "Klarte ikkje å endra passordet", - "Email sent" : "E-post sendt", - "Email saved" : "E-postadresse lagra", - "All" : "Alle", - "Please wait...." : "Ver venleg og vent …", - "Error while disabling app" : "Klarte ikkje å skru av programmet", - "Disable" : "Slå av", - "Enable" : "Slå på", - "Error while enabling app" : "Klarte ikkje å skru på programmet", - "Updating...." : "Oppdaterer …", - "Error while updating app" : "Feil ved oppdatering av app", - "Updated" : "Oppdatert", - "Delete" : "Slett", - "Select a profile picture" : "Vel eit profilbilete", - "Very weak password" : "Veldig svakt passord", - "Weak password" : "Svakt passord", - "Groups" : "Grupper", - "undo" : "angra", - "never" : "aldri", - "add group" : "legg til gruppe", - "A valid username must be provided" : "Du må oppgje eit gyldig brukarnamn", - "A valid password must be provided" : "Du må oppgje eit gyldig passord", - "__language_name__" : "Nynorsk", - "Unlimited" : "Ubegrensa", - "Login" : "Logg inn", - "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.", - "Allow apps to use the Share API" : "La app-ar bruka API-et til deling", - "Allow public uploads" : "Tillat offentlege opplastingar", - "Allow resharing" : "Tillat vidaredeling", - "Execute one task with each page loaded" : "Utfør éi oppgåve for kvar sidelasting", - "Encryption" : "Kryptering", - "Server address" : "Tenaradresse", - "More" : "Meir", - "Less" : "Mindre", - "Version" : "Utgåve", - "Forum" : "Forum", - "Profile picture" : "Profilbilete", - "Upload new" : "Last opp ny", - "Remove image" : "Fjern bilete", - "Cancel" : "Avbryt", - "Email" : "E-post", - "Your email address" : "Di epost-adresse", - "Password" : "Passord", - "Unable to change your password" : "Klarte ikkje endra passordet", - "Current password" : "Passord", - "New password" : "Nytt passord", - "Change password" : "Endra passord", - "Language" : "Språk", - "Help translate" : "Hjelp oss å omsetja", - "Get the apps to sync your files" : "Få app-ar som kan synkronisera filene dine", - "Show First Run Wizard again" : "Vis Oppstartvegvisaren igjen", - "Username" : "Brukarnamn", - "Create" : "Lag", - "Admin Recovery Password" : "Gjenopprettingspassord for administrator", - "Enter the recovery password in order to recover the users files during password change" : "Skriv inn gjenopprettingspassordet brukt for å gjenoppretta brukarfilene ved passordendring", - "Group" : "Gruppe", - "Other" : "Anna", - "Quota" : "Kvote", - "set new password" : "lag nytt passord", - "Default" : "Standard" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/oc.js b/settings/l10n/oc.js deleted file mode 100644 index 06b939725b5..00000000000 --- a/settings/l10n/oc.js +++ /dev/null @@ -1,273 +0,0 @@ -OC.L10N.register( - "settings", - { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Avertiments de seguretat & configuracion", - "Sharing" : "Partiment", - "Server-side encryption" : "Chiframent costat servidor", - "External Storage" : "Emmagazinatge extèrne", - "Cron" : "Cron", - "Email server" : "Servidor mail", - "Log" : "Log", - "Tips & tricks" : "Estècs e astúcias", - "Updates" : "Mesas a jorn", - "Couldn't remove app." : "Impossible de suprimir l'aplicacion.", - "Language changed" : "Lenga cambiada", - "Invalid request" : "Requèsta invalida", - "Authentication error" : "Error d'autentificacion", - "Admins can't remove themself from the admin group" : "Los administrators se pòdon pas levar eles-meteisses del grop admin", - "Unable to add user to group %s" : "Impossible d'apondre l'utilizaire al grop %s", - "Unable to remove user from group %s" : "Impossible de suprimir l'utilizaire del grop %s", - "Couldn't update app." : "Impossible de metre a jorn l'aplicacion", - "Wrong password" : "Senhal incorrècte", - "No user supplied" : "Cap d'utilizaire pas provesit", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Provesissètz un senhal administrator de recuperacion de donadas, siquenon totas las donadas de l'utilizaire seràn perdudas", - "Wrong admin recovery password. Please check the password and try again." : "Senhal administrator de recuperacion de donadas pas valable. Verificatz lo senhal e ensajar tornamai.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "L'infrastructura de rèire plan supòrta pas la modification de senhal, mas la clau de chiframent de l'utilizaire es estada mesa a jorn amb succès.", - "Unable to change password" : "Impossible de modificar lo senhal", - "Enabled" : "Activadas", - "Not enabled" : "Desactivadas", - "installing and updating apps via the app store or Federated Cloud Sharing" : "lo partiment Federated Cloud o l'installacion e la mesa a jorn d'aplicacions per l'app store", - "Federated Cloud Sharing" : "Federated Cloud Sharing", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL utiliza %s version (%s), qu'es una version obsolèta. Metètz a jorn vòstre sistèma operatiu, o de foncionalitats talas coma %s foncionaràn pas corrèctament.", - "A problem occurred, please check your log files (Error: %s)" : "Una error s'es produsida, verificatz vòstres fichièrs de log (Error: %s)", - "Migration Completed" : "Migracion acabada", - "Group already exists." : "Aqueste grop existís ja.", - "Unable to add group." : "Impossible d'apondre lo grop.", - "Unable to delete group." : "Impossible de suprimir lo grop.", - "log-level out of allowed range" : "nivèl de jornalizacion fòra bòrna", - "Saved" : "Salvat", - "test email settings" : "testar los paramètres d'e-mail", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Una error s'es produsida al moment del mandadís de l'e-mail. Verificatz vòstres paramètres. (Error: %s)", - "Email sent" : "Email mandat", - "You need to set your user email before being able to send test emails." : "Vos cal especificar vòstra adreça email dins los paramètres personals abans de poder mandar d'emails de tèst.", - "Invalid mail address" : "Adreça email invalida", - "A user with that name already exists." : "Un utilizaire amb aqueste nom existís ja.", - "Unable to create user." : "Impossible de crear l'utilizaire.", - "Your %s account was created" : "Vòstre compte %s es estat creat.", - "Unable to delete user." : "Impossible de suprimir l'utilizaire.", - "Forbidden" : "Interdich", - "Invalid user" : "Utilizaire invalid", - "Unable to change mail address" : "Impossible de modificar l'adreça de corrièl", - "Email saved" : "Email salvat", - "Your full name has been changed." : "Vòstre nom complet es estat modificat.", - "Unable to change full name" : "Impossible de cambiar lo nom complet", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Sètz segur que volètz apondre \"{domain}\" coma domeni de fisança ?", - "Add trusted domain" : "Apondre un domeni de fisança", - "Migration in progress. Please wait until the migration is finished" : "Migracion en cors. Esperatz qu'aquela s'acabe", - "Migration started …" : "Migracion aviada...", - "Sending..." : "Mandadís en cors...", - "Official" : "Oficial", - "Approved" : "Aprovat", - "Experimental" : "Experimental", - "All" : "Totes", - "No apps found for your version" : "Pas d'aplicacion trobada per vòstra version", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Las aplicacions oficialas son desvolopadas per e amb la comunautat ownCloud. Ofrisson sas foncionalitats principalas a ownCloud e son prèstas per una utilizacion en produccion. ", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Las aplicacions aprovadas son creadas per de desvolopaires de fisança e an passat los tèst de seguretat. Son activament mantengudas dins un depaus dobèrt e lors desvolopaires pensan que son establas per una utilizacion normala.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Aquesta aplicacion es novèla o instabla, e sa seguretat es pas estada verificada. Installatz-la a vòstras riscas e perilhs !", - "Update to %s" : "Metre a nivèl cap a la version %s", - "Please wait...." : "Pacientatz…", - "Error while disabling app" : "Error al moment de la desactivacion de l'aplicacion", - "Disable" : "Desactivar", - "Enable" : "Activar", - "Error while enabling app" : "Error al moment de l'activacion de l'aplicacion", - "Updating...." : "Mesa a jorn...", - "Error while updating app" : "Error al moment de la mesa a jorn de l'aplicacion", - "Updated" : "Mesa a jorn efectuada", - "Uninstalling ...." : "Desinstallacion...", - "Error while uninstalling app" : "Error al moment de la desinstallacion de l'aplicacion", - "Uninstall" : "Desinstallar", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "L'aplicacion es estada activada mas deu èsser mesa a jorn. Seretz redirigit cap a la pagina de las mesas a jorn dins 5 segondas.", - "App update" : "Mesa a jorn", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Una error s'es produsida. Provesissètz un certificat PEM encodat al format ASCII.", - "Valid until {date}" : "Valid fins al {date}", - "Delete" : "Suprimir", - "An error occurred: {message}" : "Una error s'es produsida : {message}", - "Select a profile picture" : "Seleccionar una fòto de perfil ", - "Very weak password" : "Senhal de fòrt febla seguretat", - "Weak password" : "Senhal de febla seguretat", - "So-so password" : "Senhal de seguretat tot bèl juste acceptable", - "Good password" : "Senhal de seguretat sufisenta", - "Strong password" : "Senhal de fòrta seguretat", - "Groups" : "Gropes", - "Unable to delete {objName}" : "Impossible de suprimir {objName}", - "A valid group name must be provided" : "Vos cal especificar un nom de grop valid", - "deleted {groupName}" : "{groupName} suprimit", - "undo" : "anullar", - "no group" : "Pas cap de grop", - "never" : "pas jamai", - "deleted {userName}" : "{userName} suprimit", - "add group" : "apondre un grop", - "Changing the password will result in data loss, because data recovery is not available for this user" : "La modificacion del senhal entraïnarà la pèrta de las donadas perque lo restabliment de donadas es pas disponible per aqueste utilizaire", - "A valid username must be provided" : "Un nom d'utilizaire valid deu èsser picat", - "A valid password must be provided" : "Un senhal valid deu èsser picat", - "A valid email must be provided" : "Vos cal provesir una adreça de corrièl valida", - "__language_name__" : "Occitan-lengadocian", - "Unlimited" : "Illimitat", - "Personal info" : "Informacions personalas", - "Sync clients" : "Clients de sincronizacion", - "Everything (fatal issues, errors, warnings, info, debug)" : "Tot (errors fatalas, errors, avertiments, informacions, desbugatge)", - "Info, warnings, errors and fatal issues" : "Informacions, avertiments, errors e errors fatalas", - "Warnings, errors and fatal issues" : "Avertiments, errors e errors fatalas", - "Errors and fatal issues" : "Errors e errors fatalas", - "Fatal issues only" : "Errors fatalas unicament", - "None" : "Pas cap", - "Login" : "Login", - "Plain" : "En clar", - "NT LAN Manager" : "Gestionari de la ret NT", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "sembla que php es pas configurat de manièra a recuperar las valors de las variablas d’environament. Lo test de la comanda getenv(\"PATH\") torna solament una responsa voida. ", - "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 configuracion es en mòde lectura sola. Aquò empacha la modificacion de certanas configuracions via l'interfàcia web. Amai, lo fichièr deu èsser passat manualament en lectura-escritura per cada mesa a jorn.", - "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP es aparentament configurat per suprimir los blòts de documentacion intèrnes. Aquò rendrà mantuna aplicacion de basa inaccessiblas.", - "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "La rason es probablament l'utilizacion d'un escondedor / accelerador tal coma Zend OPcache o eAccelerator.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Vòstre servidor fonciona actualament sus una plataforma Microsoft Windows. Vos recomandam fòrtament d'utilizar una plataforma Linux per una experiéncia utilizaire optimala.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Lo modul PHP 'fileinfo' es mancant. Es bravament recomandat de l'activar per fin d'obténer de melhors resultats de deteccion mime-type.", - "System locale can not be set to a one which supports UTF-8." : "Los paramètres regionals pòdon pas èsser configurats amb presa en carga d'UTF-8.", - "This means that there might be problems with certain characters in file names." : "Aquò significa qu'i poiriá aver de problèmas amb certans caractèrs dins los noms de fichièr.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Vos recomandam d'installar sus vòstre sistèma los paquets requesits a la presa en carga d'un dels paramètres regionals seguents : %s", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Se vòstra installacion es pas estada efectuada a la raiç del domeni e qu'utiliza lo cron del sistèma, i pòt aver de problèmas amb la generacion d'URL. Per los evitar, configuratz l'opcion \"overwrite.cli.url\" de vòstre fichièr config.php amb lo camin de la raiç de vòstra installacion (suggerit : \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Lo prètzfach cron a pas pogut s'executar via CLI. Aquelas errors tecnicas son aparegudas :", - "All checks passed." : "Totes los tèsts an capitat.", - "Open documentation" : "Veire la documentacion", - "Allow apps to use the Share API" : "Autorizar las aplicacions a utilizar l'API de partiment", - "Allow users to share via link" : "Autorizar los utilizaires a partejar per ligam", - "Enforce password protection" : "Obligar la proteccion per senhal", - "Allow public uploads" : "Autorizar los mandadisses publics", - "Allow users to send mail notification for shared files" : "Autorizar los utilizaires a mandar de notificacions per corrièl a prepaus dels partiments", - "Set default expiration date" : "Especificar la data d'expiracion per defaut", - "Expire after " : "Expiracion aprèp ", - "days" : "jorns", - "Enforce expiration date" : "Impausar la data d'expiracion", - "Allow resharing" : "Autorizar lo re-partiment", - "Restrict users to only share with users in their groups" : "Autorizar pas los partiments qu'entre membres de meteisses gropes", - "Allow users to send mail notification for shared files to other users" : "Autorizar los utilizaires a mandar una notificacion per corrièl a prepaus dels fichièrs partejats", - "Exclude groups from sharing" : "Empachar certans gropes de partejar", - "These groups will still be able to receive shares, but not to initiate them." : "Aqueles gropes poiràn pas mai iniciar cap de partiment, mas poiràn totjorn rejónher los partiments faches per d'autres. ", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Lo verrolhatge transaccional de fichièrs utiliza la banca de donadas. Per obténer de performàncias melhoras, es recomandat d'utilizar puslèu memcache. Consultatz la <a target=\"_blank\" href=\"%s\">documentacion ↗</a> per mai d'informacions.", - "Last cron job execution: %s." : "Darrièr prètzfach cron d'executat : %s.", - "Last cron job execution: %s. Something seems wrong." : "Darrièr prètzfach cron d'executat : %s. Quicòm a trucat.", - "Cron was not executed yet!" : "Lo cron es pas encara estat executat !", - "Execute one task with each page loaded" : "Executa un prètzfach a cada cargament de pagina", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php es enregistrat alprèp d'un servici webcron que l'executarà a cada 15 minutas via http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Utilizatz lo servici cron del sistèma per apelar lo fichièr cron.php a cada 15 minutas.", - "Enable server-side encryption" : "Activar lo chiframent costat servidor", - "Please read carefully before activating server-side encryption: " : "Legissètz aquò amb atencion abans d'activar lo chiframent :", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "Un còp lo chiframent activat, los fichièrs mandats sul servidor a partir d'aqueste moment seràn emmagazinats jos forma chifrada. Es pas possible de desactivar lo chiframent que se lo modul utilizat o permet especificament, e que totas las condicions prealablas son reünidas per aquò far (per exemple la creacion d'una clau de recuperacion).", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "Lo chiframent sol pòt pas garantir la seguretat del sistèma. Consultatz la documentacion ownCloud per comprene cossí fonciona l'aplicacion de chiframent, e los cases d'utilizacion preses en carga.", - "Be aware that encryption always increases the file size." : "Notatz que lo chiframent aumenta totjorn la talha dels fichièrs.", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "Es oportun de salvar regularament vòstras donadas. Se aquestas donadas son chifradas, doblidetz pas de salvar tanben las claus de chiframent.", - "This is the final warning: Do you really want to enable encryption?" : "Darrièr avertiment : Sètz segur que volètz activar lo chiframent ?", - "Enable encryption" : "Activar lo chiframent", - "No encryption module loaded, please enable an encryption module in the app menu." : "Cap de modul de chiframent es pas cargat. Mercé d'activar un modul de chiframent dins lo menú de las aplicacions.", - "Select default encryption module:" : "Seleccionatz lo modul de chiframent per defaut :", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Vos cal migrar vòstras claus de chiframent de l'anciana version (ownCloud <= 8.0) cap a la novèla. Activatz \"ownCloud Default Encryption Modul\" e executatz 'occ encryption:migrate'", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Vos cal migrar vòstras claus de chiframent de l'anciana version (ownCloud <= 8.0) cap a la novèla.", - "Start migration" : "Aviar la migracion", - "This is used for sending out notifications." : "Aquò es utilizat pel mandadís de las notificacions.", - "Send mode" : "Mòde de mandadís", - "Encryption" : "Chiframent", - "From address" : "Adreça font", - "mail" : "mail", - "Authentication method" : "Metòde d'autentificacion", - "Authentication required" : "Autentificacion requesida", - "Server address" : "Adreça del servidor", - "Port" : "Pòrt", - "Credentials" : "Informacions d'identificacion", - "SMTP Username" : "Nom d'utilizaire SMTP", - "SMTP Password" : "Senhal SMTP", - "Store credentials" : "Enregistrar los identificants", - "Test email settings" : "Testar los paramètres e-mail", - "Send email" : "Mandar un mail", - "Download logfile" : "Telecargar lo fichièr de jornalizacion", - "More" : "Mai", - "Less" : "Mens", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "La talha del fichièr jornal excedís 100 Mo. Lo telecargar pòt prene un certan temps!", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite es actualament utilizat coma gestionari de banca de donadas. Per d'installacions mai voluminosas, vos conselham d'utilizar un autre gestionari de banca de donadas.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "L'utilizacion de SQLite es particularament desconselhada se utilizatz lo client de burèu per sincronizar vòstras donadas.", - "How to do backups" : "Cossí far de salvaments", - "Advanced monitoring" : "Susvelhança avançada", - "Performance tuning" : "Ajustament de las performàncias", - "Improving the config.php" : "Melhorament del config.php ", - "Theming" : "Personalizacion de l'aparéncia", - "Hardening and security guidance" : "Guida pel renforçament e la seguretat", - "Version" : "Version", - "Developer documentation" : "Documentacion pels desvolopaires", - "Experimental applications ahead" : "Atencion! Aplicacions experimentalas", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Las aplicacions experimentalas son pas estadas testadas pels problèmas de seguretat, son novèlas o conegudasper èsser instablas e son encara en desvolopament. Las installar pòt causar de pèrdas de donadas o de falhas de seguretat. ", - "Documentation:" : "Documentacion :", - "User documentation" : "Documentacion utilizaire", - "Admin documentation" : "Documentacion administrator", - "Show description …" : "Afichar la descripcion...", - "Hide description …" : "Amagar la descripcion...", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Aquesta aplicacion pòt pas èsser installada a causa d'aquelas dependéncias pas satisfachas :", - "Enable only for specific groups" : "Activar unicament per certans gropes", - "Uninstall App" : "Desinstallar l'aplicacion", - "Enable experimental apps" : "Activar las aplicacions experimentalas", - "Common Name" : "Nom d'usatge", - "Valid until" : "Valid fins a", - "Issued By" : "Desliurat per", - "Valid until %s" : "Valid fins a %s", - "Import root certificate" : "Importar un certificat raiç", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Bonjorn,<br><br>Un compte %s es estat creat per vos.<br><br>Vòstre nom d'utilizaire es : %s<br>Visitatz vòstre compte : <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "A lèu !", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Bonjorn,<br><br>Un compte %s es estat creat per vos.<br><br>Vòstre nom d'utilizaire es : %s<br>Visitatz vòstre compte : %s<br><br>\n", - "Administrator documentation" : "Documentacion administrator", - "Online documentation" : "Documentacion en linha", - "Forum" : "Forum", - "Issue tracker" : "Seguiment de problèmas", - "Commercial support" : "Supòrt comercial", - "Profile picture" : "Fòto de perfil", - "Upload new" : "Novèla dempuèi vòstre ordenador", - "Remove image" : "Suprimir l'imatge", - "Cancel" : "Anullar", - "Full name" : "Nom complet", - "No display name set" : "Cap de nom d'afichatge pas configurat", - "Email" : "Adreça mail", - "Your email address" : "Vòstra adreça mail", - "No email address set" : "Cap d'adreça e-mail pas configurada", - "You are member of the following groups:" : "Sètz membre dels gropes seguents :", - "Password" : "Senhal", - "Unable to change your password" : "Impossible de cambiar vòstre senhal", - "Current password" : "Senhal actual", - "New password" : "Senhal novèl", - "Change password" : "Cambiar de senhal", - "Language" : "Lenga", - "Help translate" : "Ajudatz a tradusir", - "Get the apps to sync your files" : "Obtenètz las aplicacions de sincronizacion de vòstres fichièrs", - "Desktop client" : "Client de burèu", - "Android app" : "Aplicacion Android", - "iOS app" : "Aplicacion iOS", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Se volètz aportar vòstre supòrt al projècte\n <a href=\"https://owncloud.org/contribute\"\n target=\"_blank\" rel=\"noreferrer\">rejonhètz lo desvolopament</a>\n o\n <a href=\"https://owncloud.org/promote\"\n target=\"_blank\" rel=\"noreferrer\">fasètz passar l'informacion</a> !", - "Show First Run Wizard again" : "Reveire la fenèstra d'acuèlh afichada al moment de vòstra primièra connexion", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Desvolopat per la {communityopen}comunautat ownCloud{linkclose}, lo {githubopen}code font{linkclose} es jos licéncia {licenseopen}<abbr lang=\"en\" title=\"Affero General Public License\">AGPL</abbr>{linkclose}.", - "Show storage location" : "Afichar l'emplaçament de l'emmagazinatge", - "Show last log in" : "Far veire la darrièra connexion", - "Show user backend" : "Far veire la font de l'identificant", - "Send email to new user" : "Mandar un corrièl als utilizaires creats", - "Show email address" : "Afichar l'adreça email", - "Username" : "Nom d'utilizaire", - "E-Mail" : "Corrièl", - "Create" : "Crear", - "Admin Recovery Password" : "Recuperacion del senhal administrator", - "Enter the recovery password in order to recover the users files during password change" : "Entratz lo senhal de recuperacion per recuperar los fichièrs utilizaires pendent lo cambiament de senhal", - "Add Group" : "Apondre un grop", - "Group" : "Grop", - "Everyone" : "Tot lo monde", - "Admins" : "Administrators", - "Default Quota" : "Quòta per defaut", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Entratz lo quòta d'emmagazinatge (ex. \"512 MB\" o \"12 GB\")", - "Other" : "Autre", - "Full Name" : "Nom complet", - "Group Admin for" : "Administrator de grop per", - "Quota" : "Quòta", - "Storage Location" : "Emplaçament de l'Emmagazinatge", - "User Backend" : "Font", - "Last Login" : "Darrièra Connexion", - "change full name" : "Modificar lo nom complet", - "set new password" : "Cambiar lo senhal", - "change email address" : "cambiar l'adreça email", - "Default" : "Defaut" -}, -"nplurals=2; plural=(n > 1);"); diff --git a/settings/l10n/oc.json b/settings/l10n/oc.json deleted file mode 100644 index 08894868bf6..00000000000 --- a/settings/l10n/oc.json +++ /dev/null @@ -1,271 +0,0 @@ -{ "translations": { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Avertiments de seguretat & configuracion", - "Sharing" : "Partiment", - "Server-side encryption" : "Chiframent costat servidor", - "External Storage" : "Emmagazinatge extèrne", - "Cron" : "Cron", - "Email server" : "Servidor mail", - "Log" : "Log", - "Tips & tricks" : "Estècs e astúcias", - "Updates" : "Mesas a jorn", - "Couldn't remove app." : "Impossible de suprimir l'aplicacion.", - "Language changed" : "Lenga cambiada", - "Invalid request" : "Requèsta invalida", - "Authentication error" : "Error d'autentificacion", - "Admins can't remove themself from the admin group" : "Los administrators se pòdon pas levar eles-meteisses del grop admin", - "Unable to add user to group %s" : "Impossible d'apondre l'utilizaire al grop %s", - "Unable to remove user from group %s" : "Impossible de suprimir l'utilizaire del grop %s", - "Couldn't update app." : "Impossible de metre a jorn l'aplicacion", - "Wrong password" : "Senhal incorrècte", - "No user supplied" : "Cap d'utilizaire pas provesit", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Provesissètz un senhal administrator de recuperacion de donadas, siquenon totas las donadas de l'utilizaire seràn perdudas", - "Wrong admin recovery password. Please check the password and try again." : "Senhal administrator de recuperacion de donadas pas valable. Verificatz lo senhal e ensajar tornamai.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "L'infrastructura de rèire plan supòrta pas la modification de senhal, mas la clau de chiframent de l'utilizaire es estada mesa a jorn amb succès.", - "Unable to change password" : "Impossible de modificar lo senhal", - "Enabled" : "Activadas", - "Not enabled" : "Desactivadas", - "installing and updating apps via the app store or Federated Cloud Sharing" : "lo partiment Federated Cloud o l'installacion e la mesa a jorn d'aplicacions per l'app store", - "Federated Cloud Sharing" : "Federated Cloud Sharing", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL utiliza %s version (%s), qu'es una version obsolèta. Metètz a jorn vòstre sistèma operatiu, o de foncionalitats talas coma %s foncionaràn pas corrèctament.", - "A problem occurred, please check your log files (Error: %s)" : "Una error s'es produsida, verificatz vòstres fichièrs de log (Error: %s)", - "Migration Completed" : "Migracion acabada", - "Group already exists." : "Aqueste grop existís ja.", - "Unable to add group." : "Impossible d'apondre lo grop.", - "Unable to delete group." : "Impossible de suprimir lo grop.", - "log-level out of allowed range" : "nivèl de jornalizacion fòra bòrna", - "Saved" : "Salvat", - "test email settings" : "testar los paramètres d'e-mail", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Una error s'es produsida al moment del mandadís de l'e-mail. Verificatz vòstres paramètres. (Error: %s)", - "Email sent" : "Email mandat", - "You need to set your user email before being able to send test emails." : "Vos cal especificar vòstra adreça email dins los paramètres personals abans de poder mandar d'emails de tèst.", - "Invalid mail address" : "Adreça email invalida", - "A user with that name already exists." : "Un utilizaire amb aqueste nom existís ja.", - "Unable to create user." : "Impossible de crear l'utilizaire.", - "Your %s account was created" : "Vòstre compte %s es estat creat.", - "Unable to delete user." : "Impossible de suprimir l'utilizaire.", - "Forbidden" : "Interdich", - "Invalid user" : "Utilizaire invalid", - "Unable to change mail address" : "Impossible de modificar l'adreça de corrièl", - "Email saved" : "Email salvat", - "Your full name has been changed." : "Vòstre nom complet es estat modificat.", - "Unable to change full name" : "Impossible de cambiar lo nom complet", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Sètz segur que volètz apondre \"{domain}\" coma domeni de fisança ?", - "Add trusted domain" : "Apondre un domeni de fisança", - "Migration in progress. Please wait until the migration is finished" : "Migracion en cors. Esperatz qu'aquela s'acabe", - "Migration started …" : "Migracion aviada...", - "Sending..." : "Mandadís en cors...", - "Official" : "Oficial", - "Approved" : "Aprovat", - "Experimental" : "Experimental", - "All" : "Totes", - "No apps found for your version" : "Pas d'aplicacion trobada per vòstra version", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Las aplicacions oficialas son desvolopadas per e amb la comunautat ownCloud. Ofrisson sas foncionalitats principalas a ownCloud e son prèstas per una utilizacion en produccion. ", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Las aplicacions aprovadas son creadas per de desvolopaires de fisança e an passat los tèst de seguretat. Son activament mantengudas dins un depaus dobèrt e lors desvolopaires pensan que son establas per una utilizacion normala.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Aquesta aplicacion es novèla o instabla, e sa seguretat es pas estada verificada. Installatz-la a vòstras riscas e perilhs !", - "Update to %s" : "Metre a nivèl cap a la version %s", - "Please wait...." : "Pacientatz…", - "Error while disabling app" : "Error al moment de la desactivacion de l'aplicacion", - "Disable" : "Desactivar", - "Enable" : "Activar", - "Error while enabling app" : "Error al moment de l'activacion de l'aplicacion", - "Updating...." : "Mesa a jorn...", - "Error while updating app" : "Error al moment de la mesa a jorn de l'aplicacion", - "Updated" : "Mesa a jorn efectuada", - "Uninstalling ...." : "Desinstallacion...", - "Error while uninstalling app" : "Error al moment de la desinstallacion de l'aplicacion", - "Uninstall" : "Desinstallar", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "L'aplicacion es estada activada mas deu èsser mesa a jorn. Seretz redirigit cap a la pagina de las mesas a jorn dins 5 segondas.", - "App update" : "Mesa a jorn", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Una error s'es produsida. Provesissètz un certificat PEM encodat al format ASCII.", - "Valid until {date}" : "Valid fins al {date}", - "Delete" : "Suprimir", - "An error occurred: {message}" : "Una error s'es produsida : {message}", - "Select a profile picture" : "Seleccionar una fòto de perfil ", - "Very weak password" : "Senhal de fòrt febla seguretat", - "Weak password" : "Senhal de febla seguretat", - "So-so password" : "Senhal de seguretat tot bèl juste acceptable", - "Good password" : "Senhal de seguretat sufisenta", - "Strong password" : "Senhal de fòrta seguretat", - "Groups" : "Gropes", - "Unable to delete {objName}" : "Impossible de suprimir {objName}", - "A valid group name must be provided" : "Vos cal especificar un nom de grop valid", - "deleted {groupName}" : "{groupName} suprimit", - "undo" : "anullar", - "no group" : "Pas cap de grop", - "never" : "pas jamai", - "deleted {userName}" : "{userName} suprimit", - "add group" : "apondre un grop", - "Changing the password will result in data loss, because data recovery is not available for this user" : "La modificacion del senhal entraïnarà la pèrta de las donadas perque lo restabliment de donadas es pas disponible per aqueste utilizaire", - "A valid username must be provided" : "Un nom d'utilizaire valid deu èsser picat", - "A valid password must be provided" : "Un senhal valid deu èsser picat", - "A valid email must be provided" : "Vos cal provesir una adreça de corrièl valida", - "__language_name__" : "Occitan-lengadocian", - "Unlimited" : "Illimitat", - "Personal info" : "Informacions personalas", - "Sync clients" : "Clients de sincronizacion", - "Everything (fatal issues, errors, warnings, info, debug)" : "Tot (errors fatalas, errors, avertiments, informacions, desbugatge)", - "Info, warnings, errors and fatal issues" : "Informacions, avertiments, errors e errors fatalas", - "Warnings, errors and fatal issues" : "Avertiments, errors e errors fatalas", - "Errors and fatal issues" : "Errors e errors fatalas", - "Fatal issues only" : "Errors fatalas unicament", - "None" : "Pas cap", - "Login" : "Login", - "Plain" : "En clar", - "NT LAN Manager" : "Gestionari de la ret NT", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "sembla que php es pas configurat de manièra a recuperar las valors de las variablas d’environament. Lo test de la comanda getenv(\"PATH\") torna solament una responsa voida. ", - "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 configuracion es en mòde lectura sola. Aquò empacha la modificacion de certanas configuracions via l'interfàcia web. Amai, lo fichièr deu èsser passat manualament en lectura-escritura per cada mesa a jorn.", - "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP es aparentament configurat per suprimir los blòts de documentacion intèrnes. Aquò rendrà mantuna aplicacion de basa inaccessiblas.", - "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "La rason es probablament l'utilizacion d'un escondedor / accelerador tal coma Zend OPcache o eAccelerator.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Vòstre servidor fonciona actualament sus una plataforma Microsoft Windows. Vos recomandam fòrtament d'utilizar una plataforma Linux per una experiéncia utilizaire optimala.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Lo modul PHP 'fileinfo' es mancant. Es bravament recomandat de l'activar per fin d'obténer de melhors resultats de deteccion mime-type.", - "System locale can not be set to a one which supports UTF-8." : "Los paramètres regionals pòdon pas èsser configurats amb presa en carga d'UTF-8.", - "This means that there might be problems with certain characters in file names." : "Aquò significa qu'i poiriá aver de problèmas amb certans caractèrs dins los noms de fichièr.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Vos recomandam d'installar sus vòstre sistèma los paquets requesits a la presa en carga d'un dels paramètres regionals seguents : %s", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Se vòstra installacion es pas estada efectuada a la raiç del domeni e qu'utiliza lo cron del sistèma, i pòt aver de problèmas amb la generacion d'URL. Per los evitar, configuratz l'opcion \"overwrite.cli.url\" de vòstre fichièr config.php amb lo camin de la raiç de vòstra installacion (suggerit : \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Lo prètzfach cron a pas pogut s'executar via CLI. Aquelas errors tecnicas son aparegudas :", - "All checks passed." : "Totes los tèsts an capitat.", - "Open documentation" : "Veire la documentacion", - "Allow apps to use the Share API" : "Autorizar las aplicacions a utilizar l'API de partiment", - "Allow users to share via link" : "Autorizar los utilizaires a partejar per ligam", - "Enforce password protection" : "Obligar la proteccion per senhal", - "Allow public uploads" : "Autorizar los mandadisses publics", - "Allow users to send mail notification for shared files" : "Autorizar los utilizaires a mandar de notificacions per corrièl a prepaus dels partiments", - "Set default expiration date" : "Especificar la data d'expiracion per defaut", - "Expire after " : "Expiracion aprèp ", - "days" : "jorns", - "Enforce expiration date" : "Impausar la data d'expiracion", - "Allow resharing" : "Autorizar lo re-partiment", - "Restrict users to only share with users in their groups" : "Autorizar pas los partiments qu'entre membres de meteisses gropes", - "Allow users to send mail notification for shared files to other users" : "Autorizar los utilizaires a mandar una notificacion per corrièl a prepaus dels fichièrs partejats", - "Exclude groups from sharing" : "Empachar certans gropes de partejar", - "These groups will still be able to receive shares, but not to initiate them." : "Aqueles gropes poiràn pas mai iniciar cap de partiment, mas poiràn totjorn rejónher los partiments faches per d'autres. ", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Lo verrolhatge transaccional de fichièrs utiliza la banca de donadas. Per obténer de performàncias melhoras, es recomandat d'utilizar puslèu memcache. Consultatz la <a target=\"_blank\" href=\"%s\">documentacion ↗</a> per mai d'informacions.", - "Last cron job execution: %s." : "Darrièr prètzfach cron d'executat : %s.", - "Last cron job execution: %s. Something seems wrong." : "Darrièr prètzfach cron d'executat : %s. Quicòm a trucat.", - "Cron was not executed yet!" : "Lo cron es pas encara estat executat !", - "Execute one task with each page loaded" : "Executa un prètzfach a cada cargament de pagina", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php es enregistrat alprèp d'un servici webcron que l'executarà a cada 15 minutas via http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Utilizatz lo servici cron del sistèma per apelar lo fichièr cron.php a cada 15 minutas.", - "Enable server-side encryption" : "Activar lo chiframent costat servidor", - "Please read carefully before activating server-side encryption: " : "Legissètz aquò amb atencion abans d'activar lo chiframent :", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "Un còp lo chiframent activat, los fichièrs mandats sul servidor a partir d'aqueste moment seràn emmagazinats jos forma chifrada. Es pas possible de desactivar lo chiframent que se lo modul utilizat o permet especificament, e que totas las condicions prealablas son reünidas per aquò far (per exemple la creacion d'una clau de recuperacion).", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "Lo chiframent sol pòt pas garantir la seguretat del sistèma. Consultatz la documentacion ownCloud per comprene cossí fonciona l'aplicacion de chiframent, e los cases d'utilizacion preses en carga.", - "Be aware that encryption always increases the file size." : "Notatz que lo chiframent aumenta totjorn la talha dels fichièrs.", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "Es oportun de salvar regularament vòstras donadas. Se aquestas donadas son chifradas, doblidetz pas de salvar tanben las claus de chiframent.", - "This is the final warning: Do you really want to enable encryption?" : "Darrièr avertiment : Sètz segur que volètz activar lo chiframent ?", - "Enable encryption" : "Activar lo chiframent", - "No encryption module loaded, please enable an encryption module in the app menu." : "Cap de modul de chiframent es pas cargat. Mercé d'activar un modul de chiframent dins lo menú de las aplicacions.", - "Select default encryption module:" : "Seleccionatz lo modul de chiframent per defaut :", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Vos cal migrar vòstras claus de chiframent de l'anciana version (ownCloud <= 8.0) cap a la novèla. Activatz \"ownCloud Default Encryption Modul\" e executatz 'occ encryption:migrate'", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Vos cal migrar vòstras claus de chiframent de l'anciana version (ownCloud <= 8.0) cap a la novèla.", - "Start migration" : "Aviar la migracion", - "This is used for sending out notifications." : "Aquò es utilizat pel mandadís de las notificacions.", - "Send mode" : "Mòde de mandadís", - "Encryption" : "Chiframent", - "From address" : "Adreça font", - "mail" : "mail", - "Authentication method" : "Metòde d'autentificacion", - "Authentication required" : "Autentificacion requesida", - "Server address" : "Adreça del servidor", - "Port" : "Pòrt", - "Credentials" : "Informacions d'identificacion", - "SMTP Username" : "Nom d'utilizaire SMTP", - "SMTP Password" : "Senhal SMTP", - "Store credentials" : "Enregistrar los identificants", - "Test email settings" : "Testar los paramètres e-mail", - "Send email" : "Mandar un mail", - "Download logfile" : "Telecargar lo fichièr de jornalizacion", - "More" : "Mai", - "Less" : "Mens", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "La talha del fichièr jornal excedís 100 Mo. Lo telecargar pòt prene un certan temps!", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite es actualament utilizat coma gestionari de banca de donadas. Per d'installacions mai voluminosas, vos conselham d'utilizar un autre gestionari de banca de donadas.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "L'utilizacion de SQLite es particularament desconselhada se utilizatz lo client de burèu per sincronizar vòstras donadas.", - "How to do backups" : "Cossí far de salvaments", - "Advanced monitoring" : "Susvelhança avançada", - "Performance tuning" : "Ajustament de las performàncias", - "Improving the config.php" : "Melhorament del config.php ", - "Theming" : "Personalizacion de l'aparéncia", - "Hardening and security guidance" : "Guida pel renforçament e la seguretat", - "Version" : "Version", - "Developer documentation" : "Documentacion pels desvolopaires", - "Experimental applications ahead" : "Atencion! Aplicacions experimentalas", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Las aplicacions experimentalas son pas estadas testadas pels problèmas de seguretat, son novèlas o conegudasper èsser instablas e son encara en desvolopament. Las installar pòt causar de pèrdas de donadas o de falhas de seguretat. ", - "Documentation:" : "Documentacion :", - "User documentation" : "Documentacion utilizaire", - "Admin documentation" : "Documentacion administrator", - "Show description …" : "Afichar la descripcion...", - "Hide description …" : "Amagar la descripcion...", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Aquesta aplicacion pòt pas èsser installada a causa d'aquelas dependéncias pas satisfachas :", - "Enable only for specific groups" : "Activar unicament per certans gropes", - "Uninstall App" : "Desinstallar l'aplicacion", - "Enable experimental apps" : "Activar las aplicacions experimentalas", - "Common Name" : "Nom d'usatge", - "Valid until" : "Valid fins a", - "Issued By" : "Desliurat per", - "Valid until %s" : "Valid fins a %s", - "Import root certificate" : "Importar un certificat raiç", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Bonjorn,<br><br>Un compte %s es estat creat per vos.<br><br>Vòstre nom d'utilizaire es : %s<br>Visitatz vòstre compte : <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "A lèu !", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Bonjorn,<br><br>Un compte %s es estat creat per vos.<br><br>Vòstre nom d'utilizaire es : %s<br>Visitatz vòstre compte : %s<br><br>\n", - "Administrator documentation" : "Documentacion administrator", - "Online documentation" : "Documentacion en linha", - "Forum" : "Forum", - "Issue tracker" : "Seguiment de problèmas", - "Commercial support" : "Supòrt comercial", - "Profile picture" : "Fòto de perfil", - "Upload new" : "Novèla dempuèi vòstre ordenador", - "Remove image" : "Suprimir l'imatge", - "Cancel" : "Anullar", - "Full name" : "Nom complet", - "No display name set" : "Cap de nom d'afichatge pas configurat", - "Email" : "Adreça mail", - "Your email address" : "Vòstra adreça mail", - "No email address set" : "Cap d'adreça e-mail pas configurada", - "You are member of the following groups:" : "Sètz membre dels gropes seguents :", - "Password" : "Senhal", - "Unable to change your password" : "Impossible de cambiar vòstre senhal", - "Current password" : "Senhal actual", - "New password" : "Senhal novèl", - "Change password" : "Cambiar de senhal", - "Language" : "Lenga", - "Help translate" : "Ajudatz a tradusir", - "Get the apps to sync your files" : "Obtenètz las aplicacions de sincronizacion de vòstres fichièrs", - "Desktop client" : "Client de burèu", - "Android app" : "Aplicacion Android", - "iOS app" : "Aplicacion iOS", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Se volètz aportar vòstre supòrt al projècte\n <a href=\"https://owncloud.org/contribute\"\n target=\"_blank\" rel=\"noreferrer\">rejonhètz lo desvolopament</a>\n o\n <a href=\"https://owncloud.org/promote\"\n target=\"_blank\" rel=\"noreferrer\">fasètz passar l'informacion</a> !", - "Show First Run Wizard again" : "Reveire la fenèstra d'acuèlh afichada al moment de vòstra primièra connexion", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Desvolopat per la {communityopen}comunautat ownCloud{linkclose}, lo {githubopen}code font{linkclose} es jos licéncia {licenseopen}<abbr lang=\"en\" title=\"Affero General Public License\">AGPL</abbr>{linkclose}.", - "Show storage location" : "Afichar l'emplaçament de l'emmagazinatge", - "Show last log in" : "Far veire la darrièra connexion", - "Show user backend" : "Far veire la font de l'identificant", - "Send email to new user" : "Mandar un corrièl als utilizaires creats", - "Show email address" : "Afichar l'adreça email", - "Username" : "Nom d'utilizaire", - "E-Mail" : "Corrièl", - "Create" : "Crear", - "Admin Recovery Password" : "Recuperacion del senhal administrator", - "Enter the recovery password in order to recover the users files during password change" : "Entratz lo senhal de recuperacion per recuperar los fichièrs utilizaires pendent lo cambiament de senhal", - "Add Group" : "Apondre un grop", - "Group" : "Grop", - "Everyone" : "Tot lo monde", - "Admins" : "Administrators", - "Default Quota" : "Quòta per defaut", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Entratz lo quòta d'emmagazinatge (ex. \"512 MB\" o \"12 GB\")", - "Other" : "Autre", - "Full Name" : "Nom complet", - "Group Admin for" : "Administrator de grop per", - "Quota" : "Quòta", - "Storage Location" : "Emplaçament de l'Emmagazinatge", - "User Backend" : "Font", - "Last Login" : "Darrièra Connexion", - "change full name" : "Modificar lo nom complet", - "set new password" : "Cambiar lo senhal", - "change email address" : "cambiar l'adreça email", - "Default" : "Defaut" -},"pluralForm" :"nplurals=2; plural=(n > 1);" -}
\ No newline at end of file diff --git a/settings/l10n/pa.js b/settings/l10n/pa.js deleted file mode 100644 index 15cdb279dda..00000000000 --- a/settings/l10n/pa.js +++ /dev/null @@ -1,22 +0,0 @@ -OC.L10N.register( - "settings", - { - "Language changed" : "ਭਾਸ਼ਾ ਬਦਲੀ", - "Please wait...." : "...ਉਡੀਕੋ ਜੀ", - "Disable" : "ਬੰਦ", - "Enable" : "ਚਾਲੂ", - "Updating...." : "...ਅੱਪਡੇਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ", - "Updated" : "ਅੱਪਡੇਟ ਕੀਤਾ", - "Delete" : "ਹਟਾਓ", - "Groups" : "ਗਰੁੱਪ", - "undo" : "ਵਾਪਸ", - "add group" : "ਗਰੁੱਪ ਸ਼ਾਮਲ", - "__language_name__" : "__ਭਾਸ਼ਾ_ਨਾਂ__", - "Login" : "ਲਾਗਇਨ", - "Server address" : "ਸਰਵਰ ਐਡਰੈਸ", - "Cancel" : "ਰੱਦ ਕਰੋ", - "Password" : "ਪਾਸਵਰ", - "Change password" : "ਪਾਸਵਰਡ ਬਦਲੋ", - "Username" : "ਯੂਜ਼ਰ-ਨਾਂ" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/pa.json b/settings/l10n/pa.json deleted file mode 100644 index b400a8510de..00000000000 --- a/settings/l10n/pa.json +++ /dev/null @@ -1,20 +0,0 @@ -{ "translations": { - "Language changed" : "ਭਾਸ਼ਾ ਬਦਲੀ", - "Please wait...." : "...ਉਡੀਕੋ ਜੀ", - "Disable" : "ਬੰਦ", - "Enable" : "ਚਾਲੂ", - "Updating...." : "...ਅੱਪਡੇਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ", - "Updated" : "ਅੱਪਡੇਟ ਕੀਤਾ", - "Delete" : "ਹਟਾਓ", - "Groups" : "ਗਰੁੱਪ", - "undo" : "ਵਾਪਸ", - "add group" : "ਗਰੁੱਪ ਸ਼ਾਮਲ", - "__language_name__" : "__ਭਾਸ਼ਾ_ਨਾਂ__", - "Login" : "ਲਾਗਇਨ", - "Server address" : "ਸਰਵਰ ਐਡਰੈਸ", - "Cancel" : "ਰੱਦ ਕਰੋ", - "Password" : "ਪਾਸਵਰ", - "Change password" : "ਪਾਸਵਰਡ ਬਦਲੋ", - "Username" : "ਯੂਜ਼ਰ-ਨਾਂ" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/pl.js b/settings/l10n/pl.js deleted file mode 100644 index 97fbe047c95..00000000000 --- a/settings/l10n/pl.js +++ /dev/null @@ -1,209 +0,0 @@ -OC.L10N.register( - "settings", - { - "Security & setup warnings" : "Ostrzeżenia bezpieczeństwa i konfiguracji", - "Sharing" : "Udostępnianie", - "External Storage" : "Zewnętrzna zasoby dyskowe", - "Cron" : "Cron", - "Log" : "Logi", - "Updates" : "Aktualizacje", - "Couldn't remove app." : "Nie można usunąć aplikacji.", - "Language changed" : "Zmieniono język", - "Invalid request" : "Nieprawidłowe żądanie", - "Authentication error" : "Błąd uwierzytelniania", - "Admins can't remove themself from the admin group" : "Administratorzy nie mogą usunąć siebie samych z grupy administratorów", - "Unable to add user to group %s" : "Nie można dodać użytkownika do grupy %s", - "Unable to remove user from group %s" : "Nie można usunąć użytkownika z grupy %s", - "Couldn't update app." : "Nie można uaktualnić aplikacji.", - "Wrong password" : "Złe hasło", - "No user supplied" : "Niedostarczony użytkownik", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Podaj hasło odzyskiwania administratora, w przeciwnym razie wszystkie dane użytkownika zostaną utracone", - "Wrong admin recovery password. Please check the password and try again." : "Błędne hasło odzyskiwania. Sprawdź hasło i spróbuj ponownie.", - "Unable to change password" : "Nie można zmienić hasła", - "Enabled" : "Włączone", - "Not enabled" : "Nie włączone", - "Group already exists." : "Grupa już istnieje.", - "Unable to add group." : "Nie można dodać grupy.", - "Unable to delete group." : "Nie można usunąć grupy.", - "log-level out of allowed range" : "wartość log-level spoza dozwolonego zakresu", - "Saved" : "Zapisano", - "test email settings" : "przetestuj ustawienia email", - "Email sent" : "E-mail wysłany", - "You need to set your user email before being able to send test emails." : "Musisz najpierw ustawić użytkownika e-mail, aby móc wysyłać wiadomości testowe.", - "Invalid mail address" : "Nieprawidłowy adres email", - "Unable to create user." : "Nie można utworzyć użytkownika.", - "Your %s account was created" : "Twoje konto %s zostało stworzone", - "Unable to delete user." : "Nie można usunąć użytkownika.", - "Forbidden" : "Zabronione", - "Invalid user" : "Nieprawidłowy użytkownik", - "Unable to change mail address" : "Nie można zmienić adresu email", - "Email saved" : "E-mail zapisany", - "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", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Czy jesteś pewien/pewna że chcesz dodać \"{domain}\" jako zaufaną domenę?", - "Add trusted domain" : "Dodaj zaufaną domenę", - "Sending..." : "Wysyłam...", - "All" : "Wszystkie", - "No apps found for your version" : "Nie znaleziono aplikacji dla twojej wersji", - "Update to %s" : "Uaktualnij do %s", - "Please wait...." : "Proszę czekać...", - "Error while disabling app" : "Błąd podczas wyłączania aplikacji", - "Disable" : "Wyłącz", - "Enable" : "Włącz", - "Error while enabling app" : "Błąd podczas włączania aplikacji", - "Updating...." : "Aktualizacja w toku...", - "Error while updating app" : "Błąd podczas aktualizacji aplikacji", - "Updated" : "Zaktualizowano", - "Uninstalling ...." : "Odinstalowywanie....", - "Error while uninstalling app" : "Błąd przy odinstalowywaniu aplikacji", - "Uninstall" : "Odinstaluj", - "Valid until {date}" : "Ważny do {date}", - "Delete" : "Usuń", - "Select a profile picture" : "Wybierz zdjęcie profilu", - "Very weak password" : "Bardzo słabe hasło", - "Weak password" : "Słabe hasło", - "So-so password" : "Mało skomplikowane hasło", - "Good password" : "Dobre hasło", - "Strong password" : "Mocne hasło", - "Groups" : "Grupy", - "Unable to delete {objName}" : "Nie można usunąć {objName}", - "A valid group name must be provided" : "Należy podać prawidłową nazwę grupy", - "deleted {groupName}" : "usunięto {groupName}", - "undo" : "cofnij", - "no group" : "brak grupy", - "never" : "nigdy", - "deleted {userName}" : "usunięto {userName}", - "add group" : "dodaj grupę", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Zmiana hasła spowoduje utratę danych, ponieważ odzyskiwanie danych nie jest włączone dla tego użytkownika", - "A valid username must be provided" : "Należy podać prawidłową nazwę użytkownika", - "A valid password must be provided" : "Należy podać prawidłowe hasło", - "A valid email must be provided" : "Podaj poprawny adres email", - "__language_name__" : "polski", - "Unlimited" : "Bez limitu", - "Everything (fatal issues, errors, warnings, info, debug)" : "Wszystko (Informacje, ostrzeżenia, błędy i poważne problemy, debug)", - "Info, warnings, errors and fatal issues" : "Informacje, ostrzeżenia, błędy i poważne problemy", - "Warnings, errors and fatal issues" : "Ostrzeżenia, błędy i poważne problemy", - "Errors and fatal issues" : "Błędy i poważne problemy", - "Fatal issues only" : "Tylko poważne problemy", - "None" : "Nic", - "Login" : "Login", - "Plain" : "Czysty tekst", - "NT LAN Manager" : "NT LAN Manager", - "SSL" : "SSL", - "TLS" : "TLS", - "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.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Twój serwer działa na platformie Windows. Zalecamy Linuxa dla optymalnych doświadczeń użytkownika.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Brak modułu PHP „fileinfo”. Zalecamy włączenie tego modułu, aby uzyskać najlepsze wyniki podczas wykrywania typów MIME.", - "System locale can not be set to a one which supports UTF-8." : "Ustawienia regionalne systemu nie można ustawić na jeden, który obsługuje UTF-8.", - "This means that there might be problems with certain characters in file names." : "Oznacza to, że mogą być problemy z niektórymi znakami w nazwach plików.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Zalecamy instalację na Twoim systemie komponentów wymaganych do obsługi języków: %s", - "Open documentation" : "Otwórz dokumentację", - "Allow apps to use the Share API" : "Zezwalaj aplikacjom na korzystanie z API udostępniania", - "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", - "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.", - "Cron was not executed yet!" : "Cron nie został jeszcze uruchomiony!", - "Execute one task with each page loaded" : "Wykonuj jedno zadanie wraz z każdą wczytaną stroną", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php jest zarejestrowany w serwisie webcron do uruchamiania cron.php raz na 15 minut przez http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Użyj systemowej usługi cron do wywoływania cron.php co 15 minut.", - "Enable encryption" : "Włącz szyfrowanie", - "This is used for sending out notifications." : "To jest używane do wysyłania powiadomień", - "Send mode" : "Tryb wysyłki", - "Encryption" : "Szyfrowanie", - "From address" : "Z adresu", - "mail" : "mail", - "Authentication method" : "Metoda autentykacji", - "Authentication required" : "Wymagana autoryzacja", - "Server address" : "Adres Serwera", - "Port" : "Port", - "Credentials" : "Poświadczenia", - "SMTP Username" : "Użytkownik SMTP", - "SMTP Password" : "Hasło SMTP", - "Store credentials" : "Zapisz poświadczenia", - "Test email settings" : "Ustawienia testowej wiadomości", - "Send email" : "Wyślij email", - "Download logfile" : "Pobierz plik log", - "More" : "Więcej", - "Less" : "Mniej", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Plik log jest większy niż 100MB. Ściąganie może trochę potrwać!", - "Version" : "Wersja", - "Developer documentation" : "Dokumentacja dewelopera", - "Documentation:" : "Dokumentacja:", - "User documentation" : "Dokumentacja użytkownika", - "Show description …" : "Pokaż opis ...", - "Hide description …" : "Ukryj opis ...", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Ta aplikacja nie może być zainstalowana, ponieważ nie są spełnione następujące zależności:", - "Enable only for specific groups" : "Włącz tylko dla określonych grup", - "Uninstall App" : "Odinstaluj aplikację", - "Enable experimental apps" : "Włącz eksperymentalne aplikacje", - "Common Name" : "Nazwa CN", - "Valid until" : "Ważny do", - "Issued By" : "Wydany przez", - "Valid until %s" : "Ważny do %s", - "Import root certificate" : "Importuj główny certyfikat", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Witaj,<br><br>informujemy, że teraz masz konto na %s .<br><br>Twoja nazwa użytkownika: %s<br>Dostęp pod adresem: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Pozdrawiam!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Witaj,\n\ninformujemy, że teraz masz konto na %s .\n\nTwoja nazwa użytkownika:: %s\nDostęp pod adresem: %s\n\n", - "Administrator documentation" : "Dokumentacja Administratora", - "Online documentation" : "Dokumentacja Online", - "Forum" : "Forum", - "Commercial support" : "Wsparcie komercyjne", - "Profile picture" : "Zdjęcie profilu", - "Upload new" : "Wczytaj nowe", - "Remove image" : "Usuń zdjęcie", - "Cancel" : "Anuluj", - "Full name" : "Pełna nazwa", - "No display name set" : "Brak nazwa wyświetlanej", - "Email" : "Email", - "Your email address" : "Twój adres e-mail", - "No email address set" : "Brak adresu email", - "Password" : "Hasło", - "Unable to change your password" : "Nie można zmienić hasła", - "Current password" : "Bieżące hasło", - "New password" : "Nowe hasło", - "Change password" : "Zmień hasło", - "Language" : "Język", - "Help translate" : "Pomóż w tłumaczeniu", - "Get the apps to sync your files" : "Pobierz aplikacje żeby synchronizować swoje pliki", - "Desktop client" : "Klient na komputer", - "Android app" : "Aplikacja Android", - "iOS app" : "Aplikacja iOS", - "Show First Run Wizard again" : "Uruchom ponownie kreatora pierwszego uruchomienia", - "Show storage location" : "Pokaż miejsce przechowywania", - "Show last log in" : "Pokaż ostatni login", - "Show user backend" : "Pokaż moduł użytkownika", - "Send email to new user" : "Wyślij email do nowego użytkownika", - "Show email address" : "Pokaż adres email", - "Username" : "Nazwa użytkownika", - "E-Mail" : "E-mail", - "Create" : "Utwórz", - "Admin Recovery Password" : "Odzyskiwanie hasła administratora", - "Enter the recovery password in order to recover the users files during password change" : "Wpisz hasło odzyskiwania, aby odzyskać pliki użytkowników podczas zmiany hasła", - "Add Group" : "Dodaj grupę", - "Group" : "Grupa", - "Everyone" : "Wszyscy", - "Admins" : "Administratorzy", - "Default Quota" : "Domyślny udział", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Proszę ustawić ograniczenie zasobów (np. \"512 MB\" albo \"12 GB)", - "Other" : "Inne", - "Full Name" : "Pełna nazwa", - "Group Admin for" : "Grupa Admin dla", - "Quota" : "Udział", - "Storage Location" : "Lokalizacja magazynu", - "Last Login" : "Ostatnio zalogowany", - "change full name" : "Zmień pełna nazwę", - "set new password" : "ustaw nowe hasło", - "change email address" : "zmień adres email", - "Default" : "Domyślny" -}, -"nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"); diff --git a/settings/l10n/pl.json b/settings/l10n/pl.json deleted file mode 100644 index b313393dfc1..00000000000 --- a/settings/l10n/pl.json +++ /dev/null @@ -1,207 +0,0 @@ -{ "translations": { - "Security & setup warnings" : "Ostrzeżenia bezpieczeństwa i konfiguracji", - "Sharing" : "Udostępnianie", - "External Storage" : "Zewnętrzna zasoby dyskowe", - "Cron" : "Cron", - "Log" : "Logi", - "Updates" : "Aktualizacje", - "Couldn't remove app." : "Nie można usunąć aplikacji.", - "Language changed" : "Zmieniono język", - "Invalid request" : "Nieprawidłowe żądanie", - "Authentication error" : "Błąd uwierzytelniania", - "Admins can't remove themself from the admin group" : "Administratorzy nie mogą usunąć siebie samych z grupy administratorów", - "Unable to add user to group %s" : "Nie można dodać użytkownika do grupy %s", - "Unable to remove user from group %s" : "Nie można usunąć użytkownika z grupy %s", - "Couldn't update app." : "Nie można uaktualnić aplikacji.", - "Wrong password" : "Złe hasło", - "No user supplied" : "Niedostarczony użytkownik", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Podaj hasło odzyskiwania administratora, w przeciwnym razie wszystkie dane użytkownika zostaną utracone", - "Wrong admin recovery password. Please check the password and try again." : "Błędne hasło odzyskiwania. Sprawdź hasło i spróbuj ponownie.", - "Unable to change password" : "Nie można zmienić hasła", - "Enabled" : "Włączone", - "Not enabled" : "Nie włączone", - "Group already exists." : "Grupa już istnieje.", - "Unable to add group." : "Nie można dodać grupy.", - "Unable to delete group." : "Nie można usunąć grupy.", - "log-level out of allowed range" : "wartość log-level spoza dozwolonego zakresu", - "Saved" : "Zapisano", - "test email settings" : "przetestuj ustawienia email", - "Email sent" : "E-mail wysłany", - "You need to set your user email before being able to send test emails." : "Musisz najpierw ustawić użytkownika e-mail, aby móc wysyłać wiadomości testowe.", - "Invalid mail address" : "Nieprawidłowy adres email", - "Unable to create user." : "Nie można utworzyć użytkownika.", - "Your %s account was created" : "Twoje konto %s zostało stworzone", - "Unable to delete user." : "Nie można usunąć użytkownika.", - "Forbidden" : "Zabronione", - "Invalid user" : "Nieprawidłowy użytkownik", - "Unable to change mail address" : "Nie można zmienić adresu email", - "Email saved" : "E-mail zapisany", - "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", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Czy jesteś pewien/pewna że chcesz dodać \"{domain}\" jako zaufaną domenę?", - "Add trusted domain" : "Dodaj zaufaną domenę", - "Sending..." : "Wysyłam...", - "All" : "Wszystkie", - "No apps found for your version" : "Nie znaleziono aplikacji dla twojej wersji", - "Update to %s" : "Uaktualnij do %s", - "Please wait...." : "Proszę czekać...", - "Error while disabling app" : "Błąd podczas wyłączania aplikacji", - "Disable" : "Wyłącz", - "Enable" : "Włącz", - "Error while enabling app" : "Błąd podczas włączania aplikacji", - "Updating...." : "Aktualizacja w toku...", - "Error while updating app" : "Błąd podczas aktualizacji aplikacji", - "Updated" : "Zaktualizowano", - "Uninstalling ...." : "Odinstalowywanie....", - "Error while uninstalling app" : "Błąd przy odinstalowywaniu aplikacji", - "Uninstall" : "Odinstaluj", - "Valid until {date}" : "Ważny do {date}", - "Delete" : "Usuń", - "Select a profile picture" : "Wybierz zdjęcie profilu", - "Very weak password" : "Bardzo słabe hasło", - "Weak password" : "Słabe hasło", - "So-so password" : "Mało skomplikowane hasło", - "Good password" : "Dobre hasło", - "Strong password" : "Mocne hasło", - "Groups" : "Grupy", - "Unable to delete {objName}" : "Nie można usunąć {objName}", - "A valid group name must be provided" : "Należy podać prawidłową nazwę grupy", - "deleted {groupName}" : "usunięto {groupName}", - "undo" : "cofnij", - "no group" : "brak grupy", - "never" : "nigdy", - "deleted {userName}" : "usunięto {userName}", - "add group" : "dodaj grupę", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Zmiana hasła spowoduje utratę danych, ponieważ odzyskiwanie danych nie jest włączone dla tego użytkownika", - "A valid username must be provided" : "Należy podać prawidłową nazwę użytkownika", - "A valid password must be provided" : "Należy podać prawidłowe hasło", - "A valid email must be provided" : "Podaj poprawny adres email", - "__language_name__" : "polski", - "Unlimited" : "Bez limitu", - "Everything (fatal issues, errors, warnings, info, debug)" : "Wszystko (Informacje, ostrzeżenia, błędy i poważne problemy, debug)", - "Info, warnings, errors and fatal issues" : "Informacje, ostrzeżenia, błędy i poważne problemy", - "Warnings, errors and fatal issues" : "Ostrzeżenia, błędy i poważne problemy", - "Errors and fatal issues" : "Błędy i poważne problemy", - "Fatal issues only" : "Tylko poważne problemy", - "None" : "Nic", - "Login" : "Login", - "Plain" : "Czysty tekst", - "NT LAN Manager" : "NT LAN Manager", - "SSL" : "SSL", - "TLS" : "TLS", - "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.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Twój serwer działa na platformie Windows. Zalecamy Linuxa dla optymalnych doświadczeń użytkownika.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Brak modułu PHP „fileinfo”. Zalecamy włączenie tego modułu, aby uzyskać najlepsze wyniki podczas wykrywania typów MIME.", - "System locale can not be set to a one which supports UTF-8." : "Ustawienia regionalne systemu nie można ustawić na jeden, który obsługuje UTF-8.", - "This means that there might be problems with certain characters in file names." : "Oznacza to, że mogą być problemy z niektórymi znakami w nazwach plików.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Zalecamy instalację na Twoim systemie komponentów wymaganych do obsługi języków: %s", - "Open documentation" : "Otwórz dokumentację", - "Allow apps to use the Share API" : "Zezwalaj aplikacjom na korzystanie z API udostępniania", - "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", - "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.", - "Cron was not executed yet!" : "Cron nie został jeszcze uruchomiony!", - "Execute one task with each page loaded" : "Wykonuj jedno zadanie wraz z każdą wczytaną stroną", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php jest zarejestrowany w serwisie webcron do uruchamiania cron.php raz na 15 minut przez http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Użyj systemowej usługi cron do wywoływania cron.php co 15 minut.", - "Enable encryption" : "Włącz szyfrowanie", - "This is used for sending out notifications." : "To jest używane do wysyłania powiadomień", - "Send mode" : "Tryb wysyłki", - "Encryption" : "Szyfrowanie", - "From address" : "Z adresu", - "mail" : "mail", - "Authentication method" : "Metoda autentykacji", - "Authentication required" : "Wymagana autoryzacja", - "Server address" : "Adres Serwera", - "Port" : "Port", - "Credentials" : "Poświadczenia", - "SMTP Username" : "Użytkownik SMTP", - "SMTP Password" : "Hasło SMTP", - "Store credentials" : "Zapisz poświadczenia", - "Test email settings" : "Ustawienia testowej wiadomości", - "Send email" : "Wyślij email", - "Download logfile" : "Pobierz plik log", - "More" : "Więcej", - "Less" : "Mniej", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Plik log jest większy niż 100MB. Ściąganie może trochę potrwać!", - "Version" : "Wersja", - "Developer documentation" : "Dokumentacja dewelopera", - "Documentation:" : "Dokumentacja:", - "User documentation" : "Dokumentacja użytkownika", - "Show description …" : "Pokaż opis ...", - "Hide description …" : "Ukryj opis ...", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Ta aplikacja nie może być zainstalowana, ponieważ nie są spełnione następujące zależności:", - "Enable only for specific groups" : "Włącz tylko dla określonych grup", - "Uninstall App" : "Odinstaluj aplikację", - "Enable experimental apps" : "Włącz eksperymentalne aplikacje", - "Common Name" : "Nazwa CN", - "Valid until" : "Ważny do", - "Issued By" : "Wydany przez", - "Valid until %s" : "Ważny do %s", - "Import root certificate" : "Importuj główny certyfikat", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Witaj,<br><br>informujemy, że teraz masz konto na %s .<br><br>Twoja nazwa użytkownika: %s<br>Dostęp pod adresem: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Pozdrawiam!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Witaj,\n\ninformujemy, że teraz masz konto na %s .\n\nTwoja nazwa użytkownika:: %s\nDostęp pod adresem: %s\n\n", - "Administrator documentation" : "Dokumentacja Administratora", - "Online documentation" : "Dokumentacja Online", - "Forum" : "Forum", - "Commercial support" : "Wsparcie komercyjne", - "Profile picture" : "Zdjęcie profilu", - "Upload new" : "Wczytaj nowe", - "Remove image" : "Usuń zdjęcie", - "Cancel" : "Anuluj", - "Full name" : "Pełna nazwa", - "No display name set" : "Brak nazwa wyświetlanej", - "Email" : "Email", - "Your email address" : "Twój adres e-mail", - "No email address set" : "Brak adresu email", - "Password" : "Hasło", - "Unable to change your password" : "Nie można zmienić hasła", - "Current password" : "Bieżące hasło", - "New password" : "Nowe hasło", - "Change password" : "Zmień hasło", - "Language" : "Język", - "Help translate" : "Pomóż w tłumaczeniu", - "Get the apps to sync your files" : "Pobierz aplikacje żeby synchronizować swoje pliki", - "Desktop client" : "Klient na komputer", - "Android app" : "Aplikacja Android", - "iOS app" : "Aplikacja iOS", - "Show First Run Wizard again" : "Uruchom ponownie kreatora pierwszego uruchomienia", - "Show storage location" : "Pokaż miejsce przechowywania", - "Show last log in" : "Pokaż ostatni login", - "Show user backend" : "Pokaż moduł użytkownika", - "Send email to new user" : "Wyślij email do nowego użytkownika", - "Show email address" : "Pokaż adres email", - "Username" : "Nazwa użytkownika", - "E-Mail" : "E-mail", - "Create" : "Utwórz", - "Admin Recovery Password" : "Odzyskiwanie hasła administratora", - "Enter the recovery password in order to recover the users files during password change" : "Wpisz hasło odzyskiwania, aby odzyskać pliki użytkowników podczas zmiany hasła", - "Add Group" : "Dodaj grupę", - "Group" : "Grupa", - "Everyone" : "Wszyscy", - "Admins" : "Administratorzy", - "Default Quota" : "Domyślny udział", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Proszę ustawić ograniczenie zasobów (np. \"512 MB\" albo \"12 GB)", - "Other" : "Inne", - "Full Name" : "Pełna nazwa", - "Group Admin for" : "Grupa Admin dla", - "Quota" : "Udział", - "Storage Location" : "Lokalizacja magazynu", - "Last Login" : "Ostatnio zalogowany", - "change full name" : "Zmień pełna nazwę", - "set new password" : "ustaw nowe hasło", - "change email address" : "zmień adres email", - "Default" : "Domyślny" -},"pluralForm" :"nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);" -}
\ No newline at end of file diff --git a/settings/l10n/pt_BR.js b/settings/l10n/pt_BR.js deleted file mode 100644 index 43dbec597f3..00000000000 --- a/settings/l10n/pt_BR.js +++ /dev/null @@ -1,299 +0,0 @@ -OC.L10N.register( - "settings", - { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Segurança & avisos de configuração", - "Sharing" : "Compartilhamento", - "Server-side encryption" : "Criptografia do lado do servidor", - "External Storage" : "Armazenamento Externo", - "Cron" : "Cron", - "Email server" : "Servidor de Email", - "Log" : "Registro", - "Tips & tricks" : "Dicas & Truques", - "Updates" : "Atualizações", - "Couldn't remove app." : "Não foi possível remover aplicativos.", - "Language changed" : "Idioma alterado", - "Invalid request" : "Pedido inválido", - "Authentication error" : "Erro de autenticação", - "Admins can't remove themself from the admin group" : "Administradores não pode remover a si mesmos do grupo de administração", - "Unable to add user to group %s" : "Não foi possível adicionar usuário ao grupo %s", - "Unable to remove user from group %s" : "Não foi possível remover usuário do grupo %s", - "Couldn't update app." : "Não foi possível atualizar a app.", - "Wrong password" : "Senha errada", - "No user supplied" : "Nenhum usuário fornecido", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Por favor, forneça uma senha de recuperação admin, caso contrário todos os dados do usuário serão perdidos", - "Wrong admin recovery password. Please check the password and try again." : "Senha de recuperação do administrador errada. Por favor verifique a senha e tente novamente.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Back-end não suporta alteração de senha, mas a chave de criptografia de usuários foi atualizado com sucesso....", - "Unable to change password" : "Impossível modificar senha", - "Enabled" : "Habilitado", - "Not enabled" : "Desabilitado", - "installing and updating apps via the app store or Federated Cloud Sharing" : "instalando e atualizando aplicativos via app store ou Núvem Compartilhada Federada", - "Federated Cloud Sharing" : "Compartilhamento de Nuvem Conglomerada", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está usando um desatualizado %s versão (%s). Por favor, atualize seu sistema operacional ou recursos como %s não vai funcionar de forma confiável.", - "A problem occurred, please check your log files (Error: %s)" : "Ocorreu um problema enquanto verificava seus arquivos de log (Erro: %s)", - "Migration Completed" : "Migração Concluida", - "Group already exists." : "O Grupo já existe.", - "Unable to add group." : "Não é possível adicionar grupo.", - "Unable to delete group." : "Não é possível excluir grupo.", - "log-level out of allowed range" : "log-nível acima do permitido", - "Saved" : "Salvo", - "test email settings" : "testar configurações de email", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Ocorreu um problema ao enviar o e-mail. Por favor, revise suas configurações. (Erro: %s)", - "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.", - "Invalid mail address" : "Endereço de e-mail inválido", - "A user with that name already exists." : "Um usuário com esse nome já existe.", - "Unable to create user." : "Não é possível criar usuário.", - "Your %s account was created" : "Sua conta %s foi criada", - "Unable to delete user." : "Não é possível excluir usuário.", - "Forbidden" : "Proibido", - "Invalid user" : "Usuário inválido", - "Unable to change mail address" : "Não é possível trocar o endereço de email", - "Email saved" : "E-mail salvo", - "Your full name has been changed." : "Seu nome completo foi alterado.", - "Unable to change full name" : "Não é possível alterar o nome completo", - "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", - "Migration in progress. Please wait until the migration is finished" : "Migração em progresso. Por favor aguarde até que a migração seja finalizada", - "Migration started …" : "Migração iniciada ...", - "Sending..." : "Enviando...", - "Official" : "Oficial", - "Approved" : "Aprovado", - "Experimental" : "Experimental", - "All" : "Todos", - "No apps found for your version" : "Nenhum aplicativo encontrados para a sua versão", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Aplicativos oficiais são desenvolvidos por e dentro da comunidade ownCloud. Eles oferecem funcionalidade central para ownCloud e estão prontos para uso em produção.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Aplicativos aprovados são desenvolvidos pelos desenvolvedores confiáveis e passaram por uma verificação de segurança superficial. Eles são ativamente mantidos em um repositório de código aberto e seus mantenedores consideram que eles para sejam estáveis para um casual uso normal.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Este aplicativo não foi verificado para as questões de segurança e é novo ou conhecido por ser instável. Instale por seu próprio risco.", - "Update to %s" : "Atualizado para %s", - "_You have %n app update pending_::_You have %n app updates pending_" : ["Você tem %n atualização pendente","Você tem %n atualizações pendentes"], - "Please wait...." : "Por favor, aguarde...", - "Error while disabling app" : "Erro enquanto desabilitava o aplicativo", - "Disable" : "Desabilitar", - "Enable" : "Habilitar", - "Error while enabling app" : "Erro enquanto habilitava o aplicativo", - "Error: this app cannot be enabled because it makes the server unstable" : "Erro: este aplicativo não pode ser habilitado porque faz com que o servidor fique instável", - "Error: could not disable broken app" : "Erro: Não foi possível desativar o aplicativo quebrado", - "Error while disabling broken app" : "Erro ao desativar aplicativo quebrado", - "Updating...." : "Atualizando...", - "Error while updating app" : "Erro ao atualizar aplicativo", - "Updated" : "Atualizado", - "Uninstalling ...." : "Desinstalando ...", - "Error while uninstalling app" : "Erro enquanto desinstalava aplicativo", - "Uninstall" : "Desinstalar", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "O aplicativo foi habilitado, mas precisa ser atualizado. Você será redirecionado para a página de atualização em 5 segundos.", - "App update" : "Atualização de aplicativo", - "No apps found for {query}" : "Nenhum aplicativo encontrados para {query}", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Ocorreu um erro. Por favor envie um certificado ASCII-encoded PEM", - "Valid until {date}" : "Vádido até {date}", - "Delete" : "Excluir", - "An error occurred: {message}" : "Ocorreu um erro: {message}", - "Select a profile picture" : "Selecione uma imagem para o perfil", - "Very weak password" : "Senha muito fraca", - "Weak password" : "Senha fraca", - "So-so password" : "Senha mais ou menos", - "Good password" : "Boa senha", - "Strong password" : "Senha forte", - "Groups" : "Grupos", - "Unable to delete {objName}" : "Não é possível excluir {objName}", - "Error creating group: {message}" : "Erro criando o grupo: {message}", - "A valid group name must be provided" : "Um nome de grupo válido deve ser fornecido", - "deleted {groupName}" : "eliminado {groupName}", - "undo" : "desfazer", - "no group" : "nenhum grupo", - "never" : "nunca", - "deleted {userName}" : "eliminado {userName}", - "add group" : "adicionar grupo", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Trocar a senha irá resultar em perda de dados, porque recuperação de dados não está disponível para este usuário", - "A valid username must be provided" : "Forneça um nome de usuário válido", - "Error creating user: {message}" : "Erro criando o usuário: {message}", - "A valid password must be provided" : "Forneça uma senha válida", - "A valid email must be provided" : "Deve ser informado um e-mail válido", - "__language_name__" : "__language_name__", - "Unlimited" : "Ilimitado", - "Personal info" : "Informação pessoal", - "Sync clients" : "Clientes de Sincronização", - "Everything (fatal issues, errors, warnings, info, debug)" : "Tudo (questões fatais, erros, avisos, informações, depuração)", - "Info, warnings, errors and fatal issues" : "Informações, avisos, erros e problemas fatais", - "Warnings, errors and fatal issues" : "Avisos, erros e problemas fatais", - "Errors and fatal issues" : "Erros e problemas fatais", - "Fatal issues only" : "Somente questões fatais", - "None" : "Nada", - "Login" : "Login", - "Plain" : "Plano", - "NT LAN Manager" : "Gerenciador NT LAN", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "O PHP não parecem esta configurado corretamente para consultar as variáveis de ambiente do sistema. O teste com getenv(\"PATH\") só retorna uma resposta vazia.", - "Please check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation documentation ↗</a> for php configuration notes and the php configuration of your server, especially when using php-fpm." : "Por favor verifique a <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentação de instalação ↗</a> para notas configuração do PHP e a configuração do PHP do seu servidor, especialmente quando se utiliza php-fpm.", - "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.", - "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP é, aparentemente, a configuração para retirar blocos doc inline. Isso fará com que vários aplicativos do núcleo fiquem inacessíveis.", - "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Isso provavelmente é causado por uma cache/acelerador, como Zend OPcache ou eAccelerator.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "O servidor está em execução no Microsoft Windows. Recomendamos Linux para uma excelente experiência para o usuário.", - "%1$s below version %2$s is installed, for stability and performance reasons we recommend updating to a newer %1$s version." : "%1$s abaixo da versão %2$s está instalado, por razões de estabilidade e desempenho recomendamos a atualização para uma nova versão %1$s.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "O módulo PHP 'fileinfo' está faltando. Recomendamos que ative este módulo para obter uma melhor detecção do tipo de mídia (mime-type).", - "Transactional file locking is disabled, this might lead to issues with race conditions. Enable 'filelocking.enabled' in config.php to avoid these problems. See the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a> for more information." : "Bloqueio de arquivo transacional está desativado, isso pode levar a problemas com as condições de corrida. Ativar 'filelocking.enabled' em config.php para evitar esses problemas. Veja a <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentação ↗</a> para mais informações.", - "System locale can not be set to a one which supports UTF-8." : "Localidade do sistema não pode ser definido como um que suporta UTF-8.", - "This means that there might be problems with certain characters in file names." : "Isso significa que pode haver problemas com certos caracteres nos nomes de arquivo.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Nós sugerimos a instalação dos pacotes necessários em seu sistema para suportar um dos seguintes locais: %s.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Se a sua instalação não estiver instalada na raiz do domínio e usa cron do sistema, pode haver problemas com a geração de URL. Para evitar esses problemas, por favor, defina a opção \"overwrite.cli.url\" em seu arquivo config.php para o caminho webroot de sua instalação (Sugestão: \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Não foi possível executar o cron via CLI. Os seguintes erros técnicos têm aparecido:", - "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"#log-section\">log</a>." : "Por favor, verifique o <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">guias de instalação ↗</a>, e verificar se há erros ou avisos no <a href=\"#log-section\">log</a>.", - "All checks passed." : "Todas as verificações passaram.", - "Open documentation" : "Abrir documentação", - "Allow apps to use the Share API" : "Permitir que aplicativos usem a API de Compartilhamento", - "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", - "Allow sharing with groups" : "Permitir o compartilhamento com grupos", - "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 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.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Permitir autocompletar nome de usuário no diálogo de compartilhamento. Se isto estiver desativado o nome de usuário completo precisa ser inserido.", - "Last cron job execution: %s." : "Última execução do trabalho cron: %s.", - "Last cron job execution: %s. Something seems wrong." : "Última execução do trabalho cron: %s. Algo parece errado.", - "Cron was not executed yet!" : "Cron não foi executado ainda!", - "Execute one task with each page loaded" : "Execute uma tarefa com cada página carregada", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php está registrado no serviço webcron para chamar cron.php a cada 15 minutos sobre http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Usar o serviço cron do sistema para chamar o arquivo cron.php cada 15 minutos.", - "Enable server-side encryption" : "Habilitar a Criptografia do Lado do Servidor", - "Please read carefully before activating server-side encryption: " : "Por favor, leia com atenção antes de ativar a criptografia do lado do servidor:", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "Uma vez que a criptografia é ativada, todos os arquivos carregados para o servidor a partir desse ponto em diante serão criptografados e estarão disponíveis no servidor. Só será possível desativar a criptografia em uma data posterior, se o módulo de criptografia ativo suporta essa função, e todas as pré-condições sejam cumpridas(por exemplo, definindo uma chave de recuperação).", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "Criptografia por si só não garante a segurança do sistema. Por favor, consulte a documentação ownCloud para obter mais informações sobre como o aplicativo de criptografia funciona, e os casos de uso suportados.", - "Be aware that encryption always increases the file size." : "Esteja ciente de que a criptografia sempre aumenta o tamanho do arquivo.", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "É sempre bom criar backups regulares dos seus dados, em caso de criptografia certifique-se de fazer backup das chaves de criptografia, juntamente com os seus dados.", - "This is the final warning: Do you really want to enable encryption?" : "Este é o aviso final: Você realmente quer ativar a criptografia?", - "Enable encryption" : "Ativar criptografia", - "No encryption module loaded, please enable an encryption module in the app menu." : "Nenhum módulo de criptografia carregado, por favor, ative um módulo de criptografia no menu de aplicativos.", - "Select default encryption module:" : "Selecione o módulo de criptografia padrão:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Você precisa migrar suas chaves de criptografia a partir da antiga criptografia (ownCloud <= 8,0) para a nova. Ative o \"módulo de criptografia padrão\" e execute 'occ encryption:migrate'", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Você precisa migrar suas chaves de criptografia a partir da antiga criptografia (ownCloud <= 8,0) para a nova.", - "Start migration" : "Iniciar migração", - "This is used for sending out notifications." : "Isto é usado para o envio de notificações.", - "Send mode" : "Modo enviar", - "Encryption" : "Criptografia", - "From address" : "Do Endereço", - "mail" : "email", - "Authentication method" : "Método de autenticação", - "Authentication required" : "Autenticação é requerida", - "Server address" : "Endereço do servidor", - "Port" : "Porta", - "Credentials" : "Credenciais", - "SMTP Username" : "Nome do Usuário SMTP", - "SMTP Password" : "Senha SMTP", - "Store credentials" : "Armazenar credenciais", - "Test email settings" : "Configurações de e-mail de teste", - "Send email" : "Enviar email", - "Download logfile" : "Baixar o arquivo de log", - "More" : "Mais", - "Less" : "Menos", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "O arquivo de log é maior que 100 MB. Baixar esse arquivo requer algum tempo!", - "What to log" : "O que colocar no log", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite é usada como base de dados. Para instalações maiores recomendamos mudar para um backend de banco de dados diferente.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Especialmente quando se utiliza o cliente de desktop para sincronização de arquivos o uso de SQLite é desencorajado.", - "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a>." : "Para migrar para outro banco de dados usar a ferramenta de linha de comando: 'occ db:convert-type', ou consulte a <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentação ↗</a>.", - "How to do backups" : "Como fazer backups", - "Advanced monitoring" : "Monitoramento avançado", - "Performance tuning" : "Aprimorando performance", - "Improving the config.php" : "Melhorando o config.php", - "Theming" : "Elaborar um tema", - "Hardening and security guidance" : "Orientações de proteção e segurança", - "Version" : "Versão", - "Developer documentation" : "Documentação do desenvolvedor", - "Experimental applications ahead" : "Aplicações experimentais à frente", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Aplicativos experimentais não são marcados por questões de segurança, por serem novos ou conhecidos como instáveis e sob forte desenvolvimento. Instalá-los pode causar perda de dados ou falhas de segurança.", - "by %s" : "por %s", - "%s-licensed" : "%s-licenciado", - "Documentation:" : "Documentação:", - "User documentation" : "Documentação do usuário", - "Admin documentation" : "Documentação para Administração", - "Show description …" : "Mostrar descrição ...", - "Hide description …" : "Esconder descrição ...", - "This app has an update available." : "Este aplicativo tem uma atualização disponível.", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Este aplicativo não tem atribuída nenhuma versão ownCloud mínima. Isto será um erro no ownCloud 11 e posterior.", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Este aplicativo não tem atribuída nenhuma versão ownCloud máxima. Isto será um erro no ownCloud 11 e posterior.", - "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:", - "Enable only for specific groups" : "Ativar apenas para grupos específicos", - "Uninstall App" : "Desinstalar Aplicativo", - "Enable experimental apps" : "Habilitar aplicativos experimentais", - "SSL Root Certificates" : "Certificados Raiz SSL", - "Common Name" : "Nome", - "Valid until" : "Válido até", - "Issued By" : "Emitido Por", - "Valid until %s" : "Válido até %s", - "Import root certificate" : "Importar certificado raiz", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Olá,<br><br>somente para lembrar que agora você tem uma conta %s.<br><br>Seu nome de usuário é: %s<br>Acesse em: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Saudações!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Olá,\n\nsomente para lembrar que agora você tem uma conta %s.\n\nSeu nome de usuário é: %s\nAcesse em: %s\n\n", - "Administrator documentation" : "Documentação do administrador", - "Online documentation" : "Documentação online", - "Forum" : "Fórum", - "Issue tracker" : "Rastreador de tópicos", - "Commercial support" : "Suporte comercial", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "Você está usando <strong>%s</strong> de <strong>%s</strong>", - "Profile picture" : "Imagem para o perfil", - "Upload new" : "Enviar nova foto", - "Select from Files" : "Selecionar de Arquivos", - "Remove image" : "Remover imagem", - "png or jpg, max. 20 MB" : "png ou jpg, max. 20 MB", - "Picture provided by original account" : "Imagem fornecida por conta original", - "Cancel" : "Cancelar", - "Choose as profile picture" : "Escolha como imagem de perfil", - "Full name" : "Nome completo", - "No display name set" : "Nenhuma exibição de nome de configuração", - "Email" : "E-mail", - "Your email address" : "Seu endereço de e-mail", - "For password recovery and notifications" : "Para recuperação de senha e notificações", - "No email address set" : "Nenhum endereço de email foi configurado", - "You are member of the following groups:" : "Você é membro dos seguintes grupos:", - "Password" : "Senha", - "Unable to change your password" : "Não é possivel alterar a sua senha", - "Current password" : "Senha atual", - "New password" : "Nova senha", - "Change password" : "Alterar senha", - "Language" : "Idioma", - "Help translate" : "Ajude a traduzir", - "Get the apps to sync your files" : "Obtenha apps para sincronizar seus arquivos", - "Desktop client" : "Cliente Desktop", - "Android app" : "App Android", - "iOS app" : "App iOS", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Se você quiser suportar o projeto, \n⇥⇥<a href=\"https://owncloud.org/contribute\"\n⇥⇥⇥target=\"_blank\" rel=\"noreferrer\">ajude com o desenvolvimento</a>\n⇥⇥ou\n⇥⇥<a href=\"https://owncloud.org/promote\"\n⇥⇥⇥target=\"_blank\" rel=\"noreferrer\">ajude a divulgá-lo</a>!", - "Show First Run Wizard again" : "Mostrar Assistente de Primeira Execução novamente", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Desenvolvido {communityopen}pela comunidade ownCloud{linkclose}, o {githubopen}código fonte{linkclose} está licenciado sob a {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}.", - "Show storage location" : "Mostrar localização de armazenamento", - "Show last log in" : "Mostrar o último acesso", - "Show user backend" : "Mostrar administrador do usuário", - "Send email to new user" : "Enviar um email para o novo usuário", - "Show email address" : "Mostrar o endereço de email", - "Username" : "Nome de Usuário", - "E-Mail" : "E-Mail", - "Create" : "Criar", - "Admin Recovery Password" : "Recuperação da Senha do Administrador", - "Enter the recovery password in order to recover the users files during password change" : "Digite a senha de recuperação para recuperar os arquivos dos usuários durante a mudança de senha.", - "Add Group" : "Adicionar Grupo", - "Group" : "Grupo", - "Everyone" : "Para todos", - "Admins" : "Administradores", - "Default Quota" : "Quota Padrão", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor insira cota de armazenamento (ex: \"512\" ou \"12 GB\")", - "Other" : "Outro", - "Full Name" : "Nome Completo", - "Group Admin for" : "Grupo Admin para", - "Quota" : "Cota", - "Storage Location" : "Local de Armazenamento", - "User Backend" : "Administrador do Usuário", - "Last Login" : "Último Login", - "change full name" : "alterar nome completo", - "set new password" : "definir nova senha", - "change email address" : "Trocar o endereço de email", - "Default" : "Padrão" -}, -"nplurals=2; plural=(n > 1);"); diff --git a/settings/l10n/pt_BR.json b/settings/l10n/pt_BR.json deleted file mode 100644 index 6c9071b1b4e..00000000000 --- a/settings/l10n/pt_BR.json +++ /dev/null @@ -1,297 +0,0 @@ -{ "translations": { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Segurança & avisos de configuração", - "Sharing" : "Compartilhamento", - "Server-side encryption" : "Criptografia do lado do servidor", - "External Storage" : "Armazenamento Externo", - "Cron" : "Cron", - "Email server" : "Servidor de Email", - "Log" : "Registro", - "Tips & tricks" : "Dicas & Truques", - "Updates" : "Atualizações", - "Couldn't remove app." : "Não foi possível remover aplicativos.", - "Language changed" : "Idioma alterado", - "Invalid request" : "Pedido inválido", - "Authentication error" : "Erro de autenticação", - "Admins can't remove themself from the admin group" : "Administradores não pode remover a si mesmos do grupo de administração", - "Unable to add user to group %s" : "Não foi possível adicionar usuário ao grupo %s", - "Unable to remove user from group %s" : "Não foi possível remover usuário do grupo %s", - "Couldn't update app." : "Não foi possível atualizar a app.", - "Wrong password" : "Senha errada", - "No user supplied" : "Nenhum usuário fornecido", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Por favor, forneça uma senha de recuperação admin, caso contrário todos os dados do usuário serão perdidos", - "Wrong admin recovery password. Please check the password and try again." : "Senha de recuperação do administrador errada. Por favor verifique a senha e tente novamente.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Back-end não suporta alteração de senha, mas a chave de criptografia de usuários foi atualizado com sucesso....", - "Unable to change password" : "Impossível modificar senha", - "Enabled" : "Habilitado", - "Not enabled" : "Desabilitado", - "installing and updating apps via the app store or Federated Cloud Sharing" : "instalando e atualizando aplicativos via app store ou Núvem Compartilhada Federada", - "Federated Cloud Sharing" : "Compartilhamento de Nuvem Conglomerada", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está usando um desatualizado %s versão (%s). Por favor, atualize seu sistema operacional ou recursos como %s não vai funcionar de forma confiável.", - "A problem occurred, please check your log files (Error: %s)" : "Ocorreu um problema enquanto verificava seus arquivos de log (Erro: %s)", - "Migration Completed" : "Migração Concluida", - "Group already exists." : "O Grupo já existe.", - "Unable to add group." : "Não é possível adicionar grupo.", - "Unable to delete group." : "Não é possível excluir grupo.", - "log-level out of allowed range" : "log-nível acima do permitido", - "Saved" : "Salvo", - "test email settings" : "testar configurações de email", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Ocorreu um problema ao enviar o e-mail. Por favor, revise suas configurações. (Erro: %s)", - "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.", - "Invalid mail address" : "Endereço de e-mail inválido", - "A user with that name already exists." : "Um usuário com esse nome já existe.", - "Unable to create user." : "Não é possível criar usuário.", - "Your %s account was created" : "Sua conta %s foi criada", - "Unable to delete user." : "Não é possível excluir usuário.", - "Forbidden" : "Proibido", - "Invalid user" : "Usuário inválido", - "Unable to change mail address" : "Não é possível trocar o endereço de email", - "Email saved" : "E-mail salvo", - "Your full name has been changed." : "Seu nome completo foi alterado.", - "Unable to change full name" : "Não é possível alterar o nome completo", - "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", - "Migration in progress. Please wait until the migration is finished" : "Migração em progresso. Por favor aguarde até que a migração seja finalizada", - "Migration started …" : "Migração iniciada ...", - "Sending..." : "Enviando...", - "Official" : "Oficial", - "Approved" : "Aprovado", - "Experimental" : "Experimental", - "All" : "Todos", - "No apps found for your version" : "Nenhum aplicativo encontrados para a sua versão", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Aplicativos oficiais são desenvolvidos por e dentro da comunidade ownCloud. Eles oferecem funcionalidade central para ownCloud e estão prontos para uso em produção.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Aplicativos aprovados são desenvolvidos pelos desenvolvedores confiáveis e passaram por uma verificação de segurança superficial. Eles são ativamente mantidos em um repositório de código aberto e seus mantenedores consideram que eles para sejam estáveis para um casual uso normal.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Este aplicativo não foi verificado para as questões de segurança e é novo ou conhecido por ser instável. Instale por seu próprio risco.", - "Update to %s" : "Atualizado para %s", - "_You have %n app update pending_::_You have %n app updates pending_" : ["Você tem %n atualização pendente","Você tem %n atualizações pendentes"], - "Please wait...." : "Por favor, aguarde...", - "Error while disabling app" : "Erro enquanto desabilitava o aplicativo", - "Disable" : "Desabilitar", - "Enable" : "Habilitar", - "Error while enabling app" : "Erro enquanto habilitava o aplicativo", - "Error: this app cannot be enabled because it makes the server unstable" : "Erro: este aplicativo não pode ser habilitado porque faz com que o servidor fique instável", - "Error: could not disable broken app" : "Erro: Não foi possível desativar o aplicativo quebrado", - "Error while disabling broken app" : "Erro ao desativar aplicativo quebrado", - "Updating...." : "Atualizando...", - "Error while updating app" : "Erro ao atualizar aplicativo", - "Updated" : "Atualizado", - "Uninstalling ...." : "Desinstalando ...", - "Error while uninstalling app" : "Erro enquanto desinstalava aplicativo", - "Uninstall" : "Desinstalar", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "O aplicativo foi habilitado, mas precisa ser atualizado. Você será redirecionado para a página de atualização em 5 segundos.", - "App update" : "Atualização de aplicativo", - "No apps found for {query}" : "Nenhum aplicativo encontrados para {query}", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Ocorreu um erro. Por favor envie um certificado ASCII-encoded PEM", - "Valid until {date}" : "Vádido até {date}", - "Delete" : "Excluir", - "An error occurred: {message}" : "Ocorreu um erro: {message}", - "Select a profile picture" : "Selecione uma imagem para o perfil", - "Very weak password" : "Senha muito fraca", - "Weak password" : "Senha fraca", - "So-so password" : "Senha mais ou menos", - "Good password" : "Boa senha", - "Strong password" : "Senha forte", - "Groups" : "Grupos", - "Unable to delete {objName}" : "Não é possível excluir {objName}", - "Error creating group: {message}" : "Erro criando o grupo: {message}", - "A valid group name must be provided" : "Um nome de grupo válido deve ser fornecido", - "deleted {groupName}" : "eliminado {groupName}", - "undo" : "desfazer", - "no group" : "nenhum grupo", - "never" : "nunca", - "deleted {userName}" : "eliminado {userName}", - "add group" : "adicionar grupo", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Trocar a senha irá resultar em perda de dados, porque recuperação de dados não está disponível para este usuário", - "A valid username must be provided" : "Forneça um nome de usuário válido", - "Error creating user: {message}" : "Erro criando o usuário: {message}", - "A valid password must be provided" : "Forneça uma senha válida", - "A valid email must be provided" : "Deve ser informado um e-mail válido", - "__language_name__" : "__language_name__", - "Unlimited" : "Ilimitado", - "Personal info" : "Informação pessoal", - "Sync clients" : "Clientes de Sincronização", - "Everything (fatal issues, errors, warnings, info, debug)" : "Tudo (questões fatais, erros, avisos, informações, depuração)", - "Info, warnings, errors and fatal issues" : "Informações, avisos, erros e problemas fatais", - "Warnings, errors and fatal issues" : "Avisos, erros e problemas fatais", - "Errors and fatal issues" : "Erros e problemas fatais", - "Fatal issues only" : "Somente questões fatais", - "None" : "Nada", - "Login" : "Login", - "Plain" : "Plano", - "NT LAN Manager" : "Gerenciador NT LAN", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "O PHP não parecem esta configurado corretamente para consultar as variáveis de ambiente do sistema. O teste com getenv(\"PATH\") só retorna uma resposta vazia.", - "Please check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation documentation ↗</a> for php configuration notes and the php configuration of your server, especially when using php-fpm." : "Por favor verifique a <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentação de instalação ↗</a> para notas configuração do PHP e a configuração do PHP do seu servidor, especialmente quando se utiliza php-fpm.", - "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.", - "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP é, aparentemente, a configuração para retirar blocos doc inline. Isso fará com que vários aplicativos do núcleo fiquem inacessíveis.", - "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Isso provavelmente é causado por uma cache/acelerador, como Zend OPcache ou eAccelerator.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "O servidor está em execução no Microsoft Windows. Recomendamos Linux para uma excelente experiência para o usuário.", - "%1$s below version %2$s is installed, for stability and performance reasons we recommend updating to a newer %1$s version." : "%1$s abaixo da versão %2$s está instalado, por razões de estabilidade e desempenho recomendamos a atualização para uma nova versão %1$s.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "O módulo PHP 'fileinfo' está faltando. Recomendamos que ative este módulo para obter uma melhor detecção do tipo de mídia (mime-type).", - "Transactional file locking is disabled, this might lead to issues with race conditions. Enable 'filelocking.enabled' in config.php to avoid these problems. See the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a> for more information." : "Bloqueio de arquivo transacional está desativado, isso pode levar a problemas com as condições de corrida. Ativar 'filelocking.enabled' em config.php para evitar esses problemas. Veja a <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentação ↗</a> para mais informações.", - "System locale can not be set to a one which supports UTF-8." : "Localidade do sistema não pode ser definido como um que suporta UTF-8.", - "This means that there might be problems with certain characters in file names." : "Isso significa que pode haver problemas com certos caracteres nos nomes de arquivo.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Nós sugerimos a instalação dos pacotes necessários em seu sistema para suportar um dos seguintes locais: %s.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Se a sua instalação não estiver instalada na raiz do domínio e usa cron do sistema, pode haver problemas com a geração de URL. Para evitar esses problemas, por favor, defina a opção \"overwrite.cli.url\" em seu arquivo config.php para o caminho webroot de sua instalação (Sugestão: \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Não foi possível executar o cron via CLI. Os seguintes erros técnicos têm aparecido:", - "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"#log-section\">log</a>." : "Por favor, verifique o <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">guias de instalação ↗</a>, e verificar se há erros ou avisos no <a href=\"#log-section\">log</a>.", - "All checks passed." : "Todas as verificações passaram.", - "Open documentation" : "Abrir documentação", - "Allow apps to use the Share API" : "Permitir que aplicativos usem a API de Compartilhamento", - "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", - "Allow sharing with groups" : "Permitir o compartilhamento com grupos", - "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 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.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Permitir autocompletar nome de usuário no diálogo de compartilhamento. Se isto estiver desativado o nome de usuário completo precisa ser inserido.", - "Last cron job execution: %s." : "Última execução do trabalho cron: %s.", - "Last cron job execution: %s. Something seems wrong." : "Última execução do trabalho cron: %s. Algo parece errado.", - "Cron was not executed yet!" : "Cron não foi executado ainda!", - "Execute one task with each page loaded" : "Execute uma tarefa com cada página carregada", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php está registrado no serviço webcron para chamar cron.php a cada 15 minutos sobre http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Usar o serviço cron do sistema para chamar o arquivo cron.php cada 15 minutos.", - "Enable server-side encryption" : "Habilitar a Criptografia do Lado do Servidor", - "Please read carefully before activating server-side encryption: " : "Por favor, leia com atenção antes de ativar a criptografia do lado do servidor:", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "Uma vez que a criptografia é ativada, todos os arquivos carregados para o servidor a partir desse ponto em diante serão criptografados e estarão disponíveis no servidor. Só será possível desativar a criptografia em uma data posterior, se o módulo de criptografia ativo suporta essa função, e todas as pré-condições sejam cumpridas(por exemplo, definindo uma chave de recuperação).", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "Criptografia por si só não garante a segurança do sistema. Por favor, consulte a documentação ownCloud para obter mais informações sobre como o aplicativo de criptografia funciona, e os casos de uso suportados.", - "Be aware that encryption always increases the file size." : "Esteja ciente de que a criptografia sempre aumenta o tamanho do arquivo.", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "É sempre bom criar backups regulares dos seus dados, em caso de criptografia certifique-se de fazer backup das chaves de criptografia, juntamente com os seus dados.", - "This is the final warning: Do you really want to enable encryption?" : "Este é o aviso final: Você realmente quer ativar a criptografia?", - "Enable encryption" : "Ativar criptografia", - "No encryption module loaded, please enable an encryption module in the app menu." : "Nenhum módulo de criptografia carregado, por favor, ative um módulo de criptografia no menu de aplicativos.", - "Select default encryption module:" : "Selecione o módulo de criptografia padrão:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Você precisa migrar suas chaves de criptografia a partir da antiga criptografia (ownCloud <= 8,0) para a nova. Ative o \"módulo de criptografia padrão\" e execute 'occ encryption:migrate'", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Você precisa migrar suas chaves de criptografia a partir da antiga criptografia (ownCloud <= 8,0) para a nova.", - "Start migration" : "Iniciar migração", - "This is used for sending out notifications." : "Isto é usado para o envio de notificações.", - "Send mode" : "Modo enviar", - "Encryption" : "Criptografia", - "From address" : "Do Endereço", - "mail" : "email", - "Authentication method" : "Método de autenticação", - "Authentication required" : "Autenticação é requerida", - "Server address" : "Endereço do servidor", - "Port" : "Porta", - "Credentials" : "Credenciais", - "SMTP Username" : "Nome do Usuário SMTP", - "SMTP Password" : "Senha SMTP", - "Store credentials" : "Armazenar credenciais", - "Test email settings" : "Configurações de e-mail de teste", - "Send email" : "Enviar email", - "Download logfile" : "Baixar o arquivo de log", - "More" : "Mais", - "Less" : "Menos", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "O arquivo de log é maior que 100 MB. Baixar esse arquivo requer algum tempo!", - "What to log" : "O que colocar no log", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite é usada como base de dados. Para instalações maiores recomendamos mudar para um backend de banco de dados diferente.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Especialmente quando se utiliza o cliente de desktop para sincronização de arquivos o uso de SQLite é desencorajado.", - "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a>." : "Para migrar para outro banco de dados usar a ferramenta de linha de comando: 'occ db:convert-type', ou consulte a <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentação ↗</a>.", - "How to do backups" : "Como fazer backups", - "Advanced monitoring" : "Monitoramento avançado", - "Performance tuning" : "Aprimorando performance", - "Improving the config.php" : "Melhorando o config.php", - "Theming" : "Elaborar um tema", - "Hardening and security guidance" : "Orientações de proteção e segurança", - "Version" : "Versão", - "Developer documentation" : "Documentação do desenvolvedor", - "Experimental applications ahead" : "Aplicações experimentais à frente", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Aplicativos experimentais não são marcados por questões de segurança, por serem novos ou conhecidos como instáveis e sob forte desenvolvimento. Instalá-los pode causar perda de dados ou falhas de segurança.", - "by %s" : "por %s", - "%s-licensed" : "%s-licenciado", - "Documentation:" : "Documentação:", - "User documentation" : "Documentação do usuário", - "Admin documentation" : "Documentação para Administração", - "Show description …" : "Mostrar descrição ...", - "Hide description …" : "Esconder descrição ...", - "This app has an update available." : "Este aplicativo tem uma atualização disponível.", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Este aplicativo não tem atribuída nenhuma versão ownCloud mínima. Isto será um erro no ownCloud 11 e posterior.", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Este aplicativo não tem atribuída nenhuma versão ownCloud máxima. Isto será um erro no ownCloud 11 e posterior.", - "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:", - "Enable only for specific groups" : "Ativar apenas para grupos específicos", - "Uninstall App" : "Desinstalar Aplicativo", - "Enable experimental apps" : "Habilitar aplicativos experimentais", - "SSL Root Certificates" : "Certificados Raiz SSL", - "Common Name" : "Nome", - "Valid until" : "Válido até", - "Issued By" : "Emitido Por", - "Valid until %s" : "Válido até %s", - "Import root certificate" : "Importar certificado raiz", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Olá,<br><br>somente para lembrar que agora você tem uma conta %s.<br><br>Seu nome de usuário é: %s<br>Acesse em: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Saudações!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Olá,\n\nsomente para lembrar que agora você tem uma conta %s.\n\nSeu nome de usuário é: %s\nAcesse em: %s\n\n", - "Administrator documentation" : "Documentação do administrador", - "Online documentation" : "Documentação online", - "Forum" : "Fórum", - "Issue tracker" : "Rastreador de tópicos", - "Commercial support" : "Suporte comercial", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "Você está usando <strong>%s</strong> de <strong>%s</strong>", - "Profile picture" : "Imagem para o perfil", - "Upload new" : "Enviar nova foto", - "Select from Files" : "Selecionar de Arquivos", - "Remove image" : "Remover imagem", - "png or jpg, max. 20 MB" : "png ou jpg, max. 20 MB", - "Picture provided by original account" : "Imagem fornecida por conta original", - "Cancel" : "Cancelar", - "Choose as profile picture" : "Escolha como imagem de perfil", - "Full name" : "Nome completo", - "No display name set" : "Nenhuma exibição de nome de configuração", - "Email" : "E-mail", - "Your email address" : "Seu endereço de e-mail", - "For password recovery and notifications" : "Para recuperação de senha e notificações", - "No email address set" : "Nenhum endereço de email foi configurado", - "You are member of the following groups:" : "Você é membro dos seguintes grupos:", - "Password" : "Senha", - "Unable to change your password" : "Não é possivel alterar a sua senha", - "Current password" : "Senha atual", - "New password" : "Nova senha", - "Change password" : "Alterar senha", - "Language" : "Idioma", - "Help translate" : "Ajude a traduzir", - "Get the apps to sync your files" : "Obtenha apps para sincronizar seus arquivos", - "Desktop client" : "Cliente Desktop", - "Android app" : "App Android", - "iOS app" : "App iOS", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Se você quiser suportar o projeto, \n⇥⇥<a href=\"https://owncloud.org/contribute\"\n⇥⇥⇥target=\"_blank\" rel=\"noreferrer\">ajude com o desenvolvimento</a>\n⇥⇥ou\n⇥⇥<a href=\"https://owncloud.org/promote\"\n⇥⇥⇥target=\"_blank\" rel=\"noreferrer\">ajude a divulgá-lo</a>!", - "Show First Run Wizard again" : "Mostrar Assistente de Primeira Execução novamente", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Desenvolvido {communityopen}pela comunidade ownCloud{linkclose}, o {githubopen}código fonte{linkclose} está licenciado sob a {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}.", - "Show storage location" : "Mostrar localização de armazenamento", - "Show last log in" : "Mostrar o último acesso", - "Show user backend" : "Mostrar administrador do usuário", - "Send email to new user" : "Enviar um email para o novo usuário", - "Show email address" : "Mostrar o endereço de email", - "Username" : "Nome de Usuário", - "E-Mail" : "E-Mail", - "Create" : "Criar", - "Admin Recovery Password" : "Recuperação da Senha do Administrador", - "Enter the recovery password in order to recover the users files during password change" : "Digite a senha de recuperação para recuperar os arquivos dos usuários durante a mudança de senha.", - "Add Group" : "Adicionar Grupo", - "Group" : "Grupo", - "Everyone" : "Para todos", - "Admins" : "Administradores", - "Default Quota" : "Quota Padrão", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor insira cota de armazenamento (ex: \"512\" ou \"12 GB\")", - "Other" : "Outro", - "Full Name" : "Nome Completo", - "Group Admin for" : "Grupo Admin para", - "Quota" : "Cota", - "Storage Location" : "Local de Armazenamento", - "User Backend" : "Administrador do Usuário", - "Last Login" : "Último Login", - "change full name" : "alterar nome completo", - "set new password" : "definir nova senha", - "change email address" : "Trocar o endereço de email", - "Default" : "Padrão" -},"pluralForm" :"nplurals=2; plural=(n > 1);" -}
\ No newline at end of file diff --git a/settings/l10n/pt_PT.js b/settings/l10n/pt_PT.js deleted file mode 100644 index 70c74762477..00000000000 --- a/settings/l10n/pt_PT.js +++ /dev/null @@ -1,298 +0,0 @@ -OC.L10N.register( - "settings", - { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Avisos de configuração e segurança", - "Sharing" : "Partilha", - "Server-side encryption" : "Atualizar App", - "External Storage" : "Armazenamento Externo", - "Cron" : "Cron", - "Email server" : "Servidor de Correio Eletrónico", - "Log" : "Registo", - "Tips & tricks" : "Dicas e truques", - "Updates" : "Atualizações", - "Couldn't remove app." : "Não foi possível remover a aplicação.", - "Language changed" : "Idioma alterado", - "Invalid request" : "Pedido Inválido", - "Authentication error" : "Erro na autenticação", - "Admins can't remove themself from the admin group" : "Os administradores não se podem remover a eles próprios do grupo 'admin'.", - "Unable to add user to group %s" : "Não é possível adicionar o utilizador ao grupo %s", - "Unable to remove user from group %s" : "Não é possível remover o utilizador do grupo %s", - "Couldn't update app." : "Não foi possível atualizar a app.", - "Wrong password" : "Palavra-passe errada", - "No user supplied" : "Nenhum utilizador especificado", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Por favor, forneça uma palavra-passe de recuperação de administrador, caso contrário seráo perdidos todos os dados", - "Wrong admin recovery password. Please check the password and try again." : "Palavra-passe de recuperação de administrador errada. Por favor, verifique a palavra-passe e tente novamente.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "A interface não suporta a alteração da palavra-passe, mas a chave de encriptação foi atualizada com sucesso.", - "Unable to change password" : "Não foi possível alterar a sua palavra-passe ", - "Enabled" : "Ativada", - "Not enabled" : "Desativada", - "installing and updating apps via the app store or Federated Cloud Sharing" : "instalando e atualizando aplicações via loja de aplicações ou Partilha de Nuvem Federada", - "Federated Cloud Sharing" : "Partilha de Cloud Federada", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está a usar uma versão %s desatualizada (%s). Por favor, atualize o seu sistema operativo ou algumas funcionalidades como %s não funcionarão corretamente.", - "A problem occurred, please check your log files (Error: %s)" : "Ocorreu um problema, por favor, verifique os ficheiros de registo (Erro: %s)", - "Migration Completed" : "Migração Concluída", - "Group already exists." : "O grupo já existe.", - "Unable to add group." : "Impossível acrescentar o grupo.", - "Unable to delete group." : "Impossível apagar grupo.", - "log-level out of allowed range" : "log-level fora do alcance permitido", - "Saved" : "Guardado", - "test email settings" : "testar as definições de e-mail", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Um problema ocorreu ao enviar o email. Por favor verifique as suas definições. (Erro: %s)", - "Email sent" : "Mensagem enviada", - "You need to set your user email before being able to send test emails." : "Você precisa de configurar o seu e-mail de usuário antes de ser capaz de enviar e-mails de teste", - "Invalid mail address" : "Endereço de correio eletrónico inválido", - "A user with that name already exists." : "Já existe um utilizador com esse nome.", - "Unable to create user." : "Impossível criar o utilizador.", - "Your %s account was created" : "A tua conta %s foi criada", - "Unable to delete user." : "Impossível apagar o utilizador.", - "Forbidden" : "Proibido", - "Invalid user" : "Utilizador inválido", - "Unable to change mail address" : "Não foi possível alterar o teu endereço de email", - "Email saved" : "E-mail guardado", - "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", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Você tem certeza que quer adicionar \"{domain}\" como domínio confiável?", - "Add trusted domain" : "Adicionar domínio confiável ", - "Migration in progress. Please wait until the migration is finished" : "Migração em progresso. Por favor, aguarde até que a mesma esteja concluída..", - "Migration started …" : "Migração iniciada...", - "Sending..." : "A enviar...", - "Official" : "Oficial", - "Approved" : "Aprovado", - "Experimental" : "Experimental", - "All" : "Todos", - "No apps found for your version" : "Nenhuma aplicação encontrada para a sua versão", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "As apps oficiais são desenvolvidas por e na comunidade da ownCloud. Elas oferecem funcionalidade central para a ownCloud e está pronta para uma utilização na produção.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "As aplicações aprovadas são desenvolvidas por developers de confiança e passaram numa verificação de segurança. São mantidas ativamente num repositório de código aberto e quem as mantém considera-as estáveis para uso casual a normal.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Esta aplicação não foi verificada por problemas de segurança e é nova ou conhecida por ser instável. Instale-a por sua conta e risco.", - "Update to %s" : "Actualizar para %s", - "_You have %n app update pending_::_You have %n app updates pending_" : ["Você tem %n atualização de aplicação pendente","Você tem %n atualizações de aplicações pendentes"], - "Please wait...." : "Por favor, aguarde...", - "Error while disabling app" : "Ocorreu um erro enquanto desativava a app", - "Disable" : "Desativar", - "Enable" : "Ativar", - "Error while enabling app" : "Ocorreu um erro enquanto ativava a app", - "Error: this app cannot be enabled because it makes the server unstable" : "Erro: esta app não pode ser activada porque torna o servidor instável", - "Error: could not disable broken app" : "Erro: não foi possível desactivar app estragada", - "Error while disabling broken app" : "Erro ao desactivar app estragada", - "Updating...." : "A atualizar...", - "Error while updating app" : "Ocorreu um erro enquanto atualizava a app", - "Updated" : "Atualizada", - "Uninstalling ...." : "A desinstalar....", - "Error while uninstalling app" : "Ocorreu um erro durante a desinstalação da app", - "Uninstall" : "Desinstalar", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "A aplicação foi ativada, mas precisa de ser atualizada. Você será redirecionado para a página de atualização em 5 segundos.", - "App update" : "Atualizar App", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Ocorreu um erro. Por favor, envie um certificado PEM codificado em ASCII.", - "Valid until {date}" : "Válida até {date}", - "Delete" : "Apagar", - "An error occurred: {message}" : "Ocorreu um erro: {message}", - "Select a profile picture" : "Selecione uma fotografia de perfil", - "Very weak password" : "Palavra-passe muito fraca", - "Weak password" : "Palavra-passe fraca", - "So-so password" : "Palavra-passe aceitável", - "Good password" : "Palavra-passe boa", - "Strong password" : "Palavra-passe forte", - "Groups" : "Grupos", - "Unable to delete {objName}" : "Não é possível apagar {objNome}", - "Error creating group: {message}" : "Erro ao criar grupo: {message}", - "A valid group name must be provided" : "Deve ser indicado um nome de grupo válido", - "deleted {groupName}" : "{groupName} apagado", - "undo" : "Anular", - "no group" : "sem grupo", - "never" : "nunca", - "deleted {userName}" : "{userName} apagado", - "add group" : "Adicionar grupo", - "Changing the password will result in data loss, because data recovery is not available for this user" : "A alteração da palavra-passe resultará na perda de dados, porque a recuperação de dados não está disponível para este utilizador", - "A valid username must be provided" : "Deve ser indicado um nome de utilizador válido", - "Error creating user: {message}" : "Erro ao criar utilizador: {message}", - "A valid password must be provided" : "Deve ser indicada uma palavra-passe válida", - "A valid email must be provided" : "Deve ser fornecido um email válido", - "__language_name__" : "__language_name__", - "Unlimited" : "Ilimitado", - "Personal info" : "Informação pessoal", - "Sync clients" : "Clientes de sync", - "Everything (fatal issues, errors, warnings, info, debug)" : "Tudo (problemas fatais, erros, avisos, informação, depuração)", - "Info, warnings, errors and fatal issues" : "Informação, avisos, erros e problemas fatais", - "Warnings, errors and fatal issues" : "Avisos, erros e problemas fatais", - "Errors and fatal issues" : "Erros e problemas fatais", - "Fatal issues only" : "Apenas problemas fatais", - "None" : "Nenhum", - "Login" : "Iniciar Sessão", - "Plain" : "Plano", - "NT LAN Manager" : "Gestor de REDE NT", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "php não parece estar bem instalado para consultar variáveis de ambiente do sistema. O teste com getenv(\"PATH\") apenas devolveu uma resposta em branco.", - "Please check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation documentation ↗</a> for php configuration notes and the php configuration of your server, especially when using php-fpm." : "Por favor, verifique a <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentação de instalação ↗</a> para notas de configuração do php e configuração php do seu servidor, especialmente quando utiliza php-fpm.", - "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.", - "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "O PHP está aparentemente configurado para remover blocos doc em linha. Isto vai tornar inacessíveis várias aplicações básicas.", - "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Isto é provavelmente causado por uma cache/acelerador como o Zend OPcache or eAcelerador.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "O seu servidor está a correr Microsoft Windows. Nós recomendamos Linux para uma experiência de utilizador optimizada.", - "%1$s below version %2$s is installed, for stability and performance reasons we recommend updating to a newer %1$s version." : "%1$s abaixo da versão %2$s está instalado. Por motivos de estabilidade e desempenho, recomendamos que atualize para a nova versão %1$s.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "O Módulo PHP 'fileinfo' não se encontra instalado/activado. É fortemente recomendado que active este módulo para obter os melhores resultado com a detecção dos tipos de mime.", - "Transactional file locking is disabled, this might lead to issues with race conditions. Enable 'filelocking.enabled' in config.php to avoid these problems. See the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a> for more information." : "Bloqueio de arquivos transacionais está desativado, isto poderá levar a problemas com condições de corrida. Ative 'filelocking.enabled' no config.php para evitar estes problemas. Consulte a <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentação ↗</a> para mais informação.", - "System locale can not be set to a one which supports UTF-8." : "Não é possível definir a internacionalização do sistema para um que suporte o UTF-8.", - "This means that there might be problems with certain characters in file names." : "Isto significa que podem haver problemas com alguns caracteres nos nomes dos ficheiros.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Nós recomendamos fortemente que instale no seu sistema os pacotes necessários para suportar uma das seguintes locallidades: %s.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Se a sua instalação não 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 \"overwrite.cli.url\" no ficheiro config.php para o caminho webroot da sua instalação (Sugestão: \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Não foi possível executar o cronjob via CLI. Os seguintes erros técnicos apareceram:", - "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"#log-section\">log</a>." : "Por favor, verifique os <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">guias de instalação ↗</a>, e verifique se existe algum erro ou aviso no <a href=\"#log-section\">log</a>.", - "All checks passed." : "Todas as verificações passaram.", - "Open documentation" : "Abrir documentação", - "Allow apps to use the Share API" : "Permitir que os utilizadores usem a API de partilha", - "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", - "Allow sharing with groups" : "Permitir partilha com grupos.", - "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 to other users" : "Autorizar utilizadores a enviarem notificações de email acerca de ficheiros partilhados a outros utilizadores", - "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.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Permitir o auto-completar de nome de utilizador no diálogo da partilha. Se isto for desativado, será necessário preencher o nome de utilizador completo.", - "Last cron job execution: %s." : "Última execução de cron job: %s.", - "Last cron job execution: %s. Something seems wrong." : "Última execução de cron job: %s. Algo está errado.", - "Cron was not executed yet!" : "Cron ainda não foi executado!", - "Execute one task with each page loaded" : "Executar uma tarefa com cada página carregada", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php está registado num serviço webcron para chamar a página cron.php por http a cada 15 minutos.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Usar o serviço sistema cron para ligar o ficheiro cron.php a cada 15 minutos.", - "Enable server-side encryption" : "Ativar encriptação do lado do servidor", - "Please read carefully before activating server-side encryption: " : "Por favor, leia cuidadosamente antes de ativar a encriptação do lado do servidor:", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "Uma vez ativada a encriptação, todos os ficheiros carregados para o servidor a partir deste ponto serão encriptados pelo servidor. Só será possível desativar a encriptação numa data mais tarde se o módulo de encriptação ativo suportar essa função, assim como todas as pré-condições (e.g. definir chave de recuperação) sejam cumpridas.", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "A encriptação por si só não garante a segurança do sistema. Por favor, consulte a documentação ownCloud para mais informação acerca de como funciona a aplicação de encriptação, assim como os casos de uso suportados.", - "Be aware that encryption always increases the file size." : "Tenha em conta que a encriptação aumenta sempre o tamanho do ficheiro.", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "É sempre bom criar cópias de segurança regulares dos seus dados, em caso de encriptação tenha a certeza de que faz cópia das chaves de encriptação em conjunto com os seus dados.", - "This is the final warning: Do you really want to enable encryption?" : "Este é o aviso final: quer mesmo ativar a encriptação?", - "Enable encryption" : "Ative a encriptação", - "No encryption module loaded, please enable an encryption module in the app menu." : "Nenhum módulo de encriptação carregador, por favor ative um módulo de encriptação no menu das aplicações.", - "Select default encryption module:" : "Selecionar o módulo de encriptação predefinido:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Precisa de migrar as suas chaves de encriptação da encriptação antiga (ownCloud <= 8.0) para a nova. Por favor, ative o \"Módulo de encriptação padrão\" e execute 'occ encryption:migrate'", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Precisa de migrar as suas chaves de encriptação da encriptação antiga (ownCloud <= 8.0) para a nova.", - "Start migration" : "Iniciar migração", - "This is used for sending out notifications." : "Isto é utilizado para enviar notificações", - "Send mode" : "Modo de Envio", - "Encryption" : "Encriptação", - "From address" : "Do endereço", - "mail" : "Correio", - "Authentication method" : "Método de Autenticação", - "Authentication required" : "Autenticação necessária", - "Server address" : "Endereço do Servidor", - "Port" : "Porta", - "Credentials" : "Credenciais", - "SMTP Username" : "Nome de utilizador SMTP", - "SMTP Password" : "Palavra-passe SMTP", - "Store credentials" : "Armazenar credenciais", - "Test email settings" : "Testar definições de e-mail", - "Send email" : "Enviar email", - "Download logfile" : "Descarregar logfile", - "More" : "Mais", - "Less" : "Menos", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "O logfile é maior que 100MB. O download do mesmo poderá demorar algum tempo!", - "What to log" : "Fazer log do quê?", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite é utilizado como uma base de dados. Para instalações maiores nós recomendamos que mude para uma interface de base de dados diferente.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "O uso de SQLite é desencorajado especialmente se estiver a pensar em dar uso ao cliente desktop para sincronizar os seus ficheiros no seu computador.", - "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a>." : "Para migrar para outro tipo de base de dados, use a ferramenta de comando de linha: 'occ db:convert-type', ou veja a <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentação↗</a>.", - "How to do backups" : "Como fazer cópias de segurança", - "Advanced monitoring" : "Monitorização avançada", - "Performance tuning" : "Ajuste de desempenho", - "Improving the config.php" : "Melhorar o config.php", - "Theming" : "Temas", - "Hardening and security guidance" : "Orientações de proteção e segurança", - "Version" : "Versão", - "Developer documentation" : "Documentação de Programador", - "Experimental applications ahead" : "Aplicações experimentais de futuro", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "As apps experimentais não estão selecionadas para problemas de segurança, nova ou conhecida como instável e em forte desenvolvimento. Ao instalá-las pode causar a perda de dados ou quebra de segurança.", - "by %s" : "por %s", - "%s-licensed" : "%s-autorizado", - "Documentation:" : "Documentação:", - "User documentation" : "Documentação de Utilizador", - "Admin documentation" : "Documentação do Administrador", - "Show description …" : "Mostrar descrição ...", - "Hide description …" : "Esconder descrição ...", - "This app has an update available." : "Esta aplicação tem uma atualização disponível.", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Esta aplicação não tem uma versão mínima de ownCloud atribuída. Isto será um erro no ownCloud 11 e seguintes.", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Esta aplicação não tem uma versão máxima de ownCloud atribuída. Isto será um erro no ownCloud 11 e seguintes.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicação não pode ser instalada porque as seguintes dependências não podem ser realizadas:", - "Enable only for specific groups" : "Activar só para grupos específicos", - "Uninstall App" : "Desinstalar aplicação", - "Enable experimental apps" : "Ativar apps experimentais", - "SSL Root Certificates" : "Certificados SSL Root", - "Common Name" : "Nome Comum", - "Valid until" : "Válido até", - "Issued By" : "Emitido Por", - "Valid until %s" : "Válido até %s", - "Import root certificate" : "Importar certificado root", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Olá,<br><br>apenas para informar que você tem uma conta %s.<br><br>O seu nome de utilizador: %s<br>Acesse à sua conta: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Parabéns!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Olá,\n\napenas para informar que você tem uma conta %s.\n\nO seu nome de utilizador: %s\nAcesse à sua conta: %s\n\n", - "Administrator documentation" : "Documentação de Administrador.", - "Online documentation" : "Documentação Online", - "Forum" : "Fórum", - "Issue tracker" : "Pesquisador de problemad", - "Commercial support" : "Suporte Comercial", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "Está a usar <strong>%s</strong> de <strong>%s</strong>", - "Profile picture" : "Foto do perfil", - "Upload new" : "Carregar novo", - "Select from Files" : "Seleccione dos Ficheiros", - "Remove image" : "Remover imagem", - "png or jpg, max. 20 MB" : "png ou jpg, máx. 20 MB", - "Picture provided by original account" : "Imagem fornecida pela conta original", - "Cancel" : "Cancelar", - "Choose as profile picture" : "Escolher como fotografia de perfil", - "Full name" : "Nome completo", - "No display name set" : "Nenhum nome display estabelecido", - "Email" : "Email", - "Your email address" : "O seu endereço de email", - "For password recovery and notifications" : "Para recuperação da palavra-passe e notificações", - "No email address set" : "Nenhum endereço de email estabelecido", - "You are member of the following groups:" : "Você é membro dos seguintes grupos:", - "Password" : "Palavra-passe", - "Unable to change your password" : "Não foi possível alterar a sua palavra-passe", - "Current password" : "Palavra-passe atual", - "New password" : "Nova palavra-passe", - "Change password" : "Alterar palavra-passe", - "Language" : "Idioma", - "Help translate" : "Ajude a traduzir", - "Get the apps to sync your files" : "Obtenha as aplicações para sincronizar os seus ficheiros", - "Desktop client" : "Cliente Desktop", - "Android app" : "Aplicação Android", - "iOS app" : "Aplicação iOS", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Se quer apoiar o projecto\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">junte-se ao desenvolvimento</a>\n\t\tou\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">espalhe a palavra</a>!", - "Show First Run Wizard again" : "Mostrar novamente Wizard de Arranque Inicial", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Desenvolvido pela {communityopen}comunidade ownCloud{linkclose}, o {githubopen}código-fonte{linkclose} está licenciado sob a {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}.", - "Show storage location" : "Mostrar a localização do armazenamento", - "Show last log in" : "Mostrar ultimo acesso de entrada", - "Show user backend" : "Mostrar interface do utilizador", - "Send email to new user" : "Enviar email ao novo utilizador", - "Show email address" : "Mostrar endereço de email", - "Username" : "Nome de utilizador", - "E-Mail" : "Correio Eletrónico", - "Create" : "Criar", - "Admin Recovery Password" : "Recuperação da Palavra-passe de Administrador", - "Enter the recovery password in order to recover the users files during password change" : "Digite a senha de recuperação, a fim de recuperar os ficheiros dos utilizadores durante a mudança da palavra-passe", - "Add Group" : "Adicionar grupo", - "Group" : "Grupo", - "Everyone" : "Para todos", - "Admins" : "Administrador", - "Default Quota" : "Quota por padrão", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Insira a quota de armazenamento (ex: \"512 MB\" ou \"12 GB\")", - "Other" : "Outro", - "Full Name" : "Nome completo", - "Group Admin for" : "Administrador de Grupo para", - "Quota" : "Quota", - "Storage Location" : "Localização do Armazenamento", - "User Backend" : "Interface do Utilizador", - "Last Login" : "Ultimo acesso", - "change full name" : "alterar nome completo", - "set new password" : "definir nova palavra-passe", - "change email address" : "alterar endereço do correio eletrónico", - "Default" : "Padrão" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/pt_PT.json b/settings/l10n/pt_PT.json deleted file mode 100644 index 5fc36b71bcd..00000000000 --- a/settings/l10n/pt_PT.json +++ /dev/null @@ -1,296 +0,0 @@ -{ "translations": { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Avisos de configuração e segurança", - "Sharing" : "Partilha", - "Server-side encryption" : "Atualizar App", - "External Storage" : "Armazenamento Externo", - "Cron" : "Cron", - "Email server" : "Servidor de Correio Eletrónico", - "Log" : "Registo", - "Tips & tricks" : "Dicas e truques", - "Updates" : "Atualizações", - "Couldn't remove app." : "Não foi possível remover a aplicação.", - "Language changed" : "Idioma alterado", - "Invalid request" : "Pedido Inválido", - "Authentication error" : "Erro na autenticação", - "Admins can't remove themself from the admin group" : "Os administradores não se podem remover a eles próprios do grupo 'admin'.", - "Unable to add user to group %s" : "Não é possível adicionar o utilizador ao grupo %s", - "Unable to remove user from group %s" : "Não é possível remover o utilizador do grupo %s", - "Couldn't update app." : "Não foi possível atualizar a app.", - "Wrong password" : "Palavra-passe errada", - "No user supplied" : "Nenhum utilizador especificado", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Por favor, forneça uma palavra-passe de recuperação de administrador, caso contrário seráo perdidos todos os dados", - "Wrong admin recovery password. Please check the password and try again." : "Palavra-passe de recuperação de administrador errada. Por favor, verifique a palavra-passe e tente novamente.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "A interface não suporta a alteração da palavra-passe, mas a chave de encriptação foi atualizada com sucesso.", - "Unable to change password" : "Não foi possível alterar a sua palavra-passe ", - "Enabled" : "Ativada", - "Not enabled" : "Desativada", - "installing and updating apps via the app store or Federated Cloud Sharing" : "instalando e atualizando aplicações via loja de aplicações ou Partilha de Nuvem Federada", - "Federated Cloud Sharing" : "Partilha de Cloud Federada", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está a usar uma versão %s desatualizada (%s). Por favor, atualize o seu sistema operativo ou algumas funcionalidades como %s não funcionarão corretamente.", - "A problem occurred, please check your log files (Error: %s)" : "Ocorreu um problema, por favor, verifique os ficheiros de registo (Erro: %s)", - "Migration Completed" : "Migração Concluída", - "Group already exists." : "O grupo já existe.", - "Unable to add group." : "Impossível acrescentar o grupo.", - "Unable to delete group." : "Impossível apagar grupo.", - "log-level out of allowed range" : "log-level fora do alcance permitido", - "Saved" : "Guardado", - "test email settings" : "testar as definições de e-mail", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Um problema ocorreu ao enviar o email. Por favor verifique as suas definições. (Erro: %s)", - "Email sent" : "Mensagem enviada", - "You need to set your user email before being able to send test emails." : "Você precisa de configurar o seu e-mail de usuário antes de ser capaz de enviar e-mails de teste", - "Invalid mail address" : "Endereço de correio eletrónico inválido", - "A user with that name already exists." : "Já existe um utilizador com esse nome.", - "Unable to create user." : "Impossível criar o utilizador.", - "Your %s account was created" : "A tua conta %s foi criada", - "Unable to delete user." : "Impossível apagar o utilizador.", - "Forbidden" : "Proibido", - "Invalid user" : "Utilizador inválido", - "Unable to change mail address" : "Não foi possível alterar o teu endereço de email", - "Email saved" : "E-mail guardado", - "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", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Você tem certeza que quer adicionar \"{domain}\" como domínio confiável?", - "Add trusted domain" : "Adicionar domínio confiável ", - "Migration in progress. Please wait until the migration is finished" : "Migração em progresso. Por favor, aguarde até que a mesma esteja concluída..", - "Migration started …" : "Migração iniciada...", - "Sending..." : "A enviar...", - "Official" : "Oficial", - "Approved" : "Aprovado", - "Experimental" : "Experimental", - "All" : "Todos", - "No apps found for your version" : "Nenhuma aplicação encontrada para a sua versão", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "As apps oficiais são desenvolvidas por e na comunidade da ownCloud. Elas oferecem funcionalidade central para a ownCloud e está pronta para uma utilização na produção.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "As aplicações aprovadas são desenvolvidas por developers de confiança e passaram numa verificação de segurança. São mantidas ativamente num repositório de código aberto e quem as mantém considera-as estáveis para uso casual a normal.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Esta aplicação não foi verificada por problemas de segurança e é nova ou conhecida por ser instável. Instale-a por sua conta e risco.", - "Update to %s" : "Actualizar para %s", - "_You have %n app update pending_::_You have %n app updates pending_" : ["Você tem %n atualização de aplicação pendente","Você tem %n atualizações de aplicações pendentes"], - "Please wait...." : "Por favor, aguarde...", - "Error while disabling app" : "Ocorreu um erro enquanto desativava a app", - "Disable" : "Desativar", - "Enable" : "Ativar", - "Error while enabling app" : "Ocorreu um erro enquanto ativava a app", - "Error: this app cannot be enabled because it makes the server unstable" : "Erro: esta app não pode ser activada porque torna o servidor instável", - "Error: could not disable broken app" : "Erro: não foi possível desactivar app estragada", - "Error while disabling broken app" : "Erro ao desactivar app estragada", - "Updating...." : "A atualizar...", - "Error while updating app" : "Ocorreu um erro enquanto atualizava a app", - "Updated" : "Atualizada", - "Uninstalling ...." : "A desinstalar....", - "Error while uninstalling app" : "Ocorreu um erro durante a desinstalação da app", - "Uninstall" : "Desinstalar", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "A aplicação foi ativada, mas precisa de ser atualizada. Você será redirecionado para a página de atualização em 5 segundos.", - "App update" : "Atualizar App", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Ocorreu um erro. Por favor, envie um certificado PEM codificado em ASCII.", - "Valid until {date}" : "Válida até {date}", - "Delete" : "Apagar", - "An error occurred: {message}" : "Ocorreu um erro: {message}", - "Select a profile picture" : "Selecione uma fotografia de perfil", - "Very weak password" : "Palavra-passe muito fraca", - "Weak password" : "Palavra-passe fraca", - "So-so password" : "Palavra-passe aceitável", - "Good password" : "Palavra-passe boa", - "Strong password" : "Palavra-passe forte", - "Groups" : "Grupos", - "Unable to delete {objName}" : "Não é possível apagar {objNome}", - "Error creating group: {message}" : "Erro ao criar grupo: {message}", - "A valid group name must be provided" : "Deve ser indicado um nome de grupo válido", - "deleted {groupName}" : "{groupName} apagado", - "undo" : "Anular", - "no group" : "sem grupo", - "never" : "nunca", - "deleted {userName}" : "{userName} apagado", - "add group" : "Adicionar grupo", - "Changing the password will result in data loss, because data recovery is not available for this user" : "A alteração da palavra-passe resultará na perda de dados, porque a recuperação de dados não está disponível para este utilizador", - "A valid username must be provided" : "Deve ser indicado um nome de utilizador válido", - "Error creating user: {message}" : "Erro ao criar utilizador: {message}", - "A valid password must be provided" : "Deve ser indicada uma palavra-passe válida", - "A valid email must be provided" : "Deve ser fornecido um email válido", - "__language_name__" : "__language_name__", - "Unlimited" : "Ilimitado", - "Personal info" : "Informação pessoal", - "Sync clients" : "Clientes de sync", - "Everything (fatal issues, errors, warnings, info, debug)" : "Tudo (problemas fatais, erros, avisos, informação, depuração)", - "Info, warnings, errors and fatal issues" : "Informação, avisos, erros e problemas fatais", - "Warnings, errors and fatal issues" : "Avisos, erros e problemas fatais", - "Errors and fatal issues" : "Erros e problemas fatais", - "Fatal issues only" : "Apenas problemas fatais", - "None" : "Nenhum", - "Login" : "Iniciar Sessão", - "Plain" : "Plano", - "NT LAN Manager" : "Gestor de REDE NT", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "php não parece estar bem instalado para consultar variáveis de ambiente do sistema. O teste com getenv(\"PATH\") apenas devolveu uma resposta em branco.", - "Please check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation documentation ↗</a> for php configuration notes and the php configuration of your server, especially when using php-fpm." : "Por favor, verifique a <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentação de instalação ↗</a> para notas de configuração do php e configuração php do seu servidor, especialmente quando utiliza php-fpm.", - "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.", - "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "O PHP está aparentemente configurado para remover blocos doc em linha. Isto vai tornar inacessíveis várias aplicações básicas.", - "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Isto é provavelmente causado por uma cache/acelerador como o Zend OPcache or eAcelerador.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "O seu servidor está a correr Microsoft Windows. Nós recomendamos Linux para uma experiência de utilizador optimizada.", - "%1$s below version %2$s is installed, for stability and performance reasons we recommend updating to a newer %1$s version." : "%1$s abaixo da versão %2$s está instalado. Por motivos de estabilidade e desempenho, recomendamos que atualize para a nova versão %1$s.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "O Módulo PHP 'fileinfo' não se encontra instalado/activado. É fortemente recomendado que active este módulo para obter os melhores resultado com a detecção dos tipos de mime.", - "Transactional file locking is disabled, this might lead to issues with race conditions. Enable 'filelocking.enabled' in config.php to avoid these problems. See the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a> for more information." : "Bloqueio de arquivos transacionais está desativado, isto poderá levar a problemas com condições de corrida. Ative 'filelocking.enabled' no config.php para evitar estes problemas. Consulte a <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentação ↗</a> para mais informação.", - "System locale can not be set to a one which supports UTF-8." : "Não é possível definir a internacionalização do sistema para um que suporte o UTF-8.", - "This means that there might be problems with certain characters in file names." : "Isto significa que podem haver problemas com alguns caracteres nos nomes dos ficheiros.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Nós recomendamos fortemente que instale no seu sistema os pacotes necessários para suportar uma das seguintes locallidades: %s.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Se a sua instalação não 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 \"overwrite.cli.url\" no ficheiro config.php para o caminho webroot da sua instalação (Sugestão: \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Não foi possível executar o cronjob via CLI. Os seguintes erros técnicos apareceram:", - "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"#log-section\">log</a>." : "Por favor, verifique os <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">guias de instalação ↗</a>, e verifique se existe algum erro ou aviso no <a href=\"#log-section\">log</a>.", - "All checks passed." : "Todas as verificações passaram.", - "Open documentation" : "Abrir documentação", - "Allow apps to use the Share API" : "Permitir que os utilizadores usem a API de partilha", - "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", - "Allow sharing with groups" : "Permitir partilha com grupos.", - "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 to other users" : "Autorizar utilizadores a enviarem notificações de email acerca de ficheiros partilhados a outros utilizadores", - "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.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Permitir o auto-completar de nome de utilizador no diálogo da partilha. Se isto for desativado, será necessário preencher o nome de utilizador completo.", - "Last cron job execution: %s." : "Última execução de cron job: %s.", - "Last cron job execution: %s. Something seems wrong." : "Última execução de cron job: %s. Algo está errado.", - "Cron was not executed yet!" : "Cron ainda não foi executado!", - "Execute one task with each page loaded" : "Executar uma tarefa com cada página carregada", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php está registado num serviço webcron para chamar a página cron.php por http a cada 15 minutos.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Usar o serviço sistema cron para ligar o ficheiro cron.php a cada 15 minutos.", - "Enable server-side encryption" : "Ativar encriptação do lado do servidor", - "Please read carefully before activating server-side encryption: " : "Por favor, leia cuidadosamente antes de ativar a encriptação do lado do servidor:", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "Uma vez ativada a encriptação, todos os ficheiros carregados para o servidor a partir deste ponto serão encriptados pelo servidor. Só será possível desativar a encriptação numa data mais tarde se o módulo de encriptação ativo suportar essa função, assim como todas as pré-condições (e.g. definir chave de recuperação) sejam cumpridas.", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "A encriptação por si só não garante a segurança do sistema. Por favor, consulte a documentação ownCloud para mais informação acerca de como funciona a aplicação de encriptação, assim como os casos de uso suportados.", - "Be aware that encryption always increases the file size." : "Tenha em conta que a encriptação aumenta sempre o tamanho do ficheiro.", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "É sempre bom criar cópias de segurança regulares dos seus dados, em caso de encriptação tenha a certeza de que faz cópia das chaves de encriptação em conjunto com os seus dados.", - "This is the final warning: Do you really want to enable encryption?" : "Este é o aviso final: quer mesmo ativar a encriptação?", - "Enable encryption" : "Ative a encriptação", - "No encryption module loaded, please enable an encryption module in the app menu." : "Nenhum módulo de encriptação carregador, por favor ative um módulo de encriptação no menu das aplicações.", - "Select default encryption module:" : "Selecionar o módulo de encriptação predefinido:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Precisa de migrar as suas chaves de encriptação da encriptação antiga (ownCloud <= 8.0) para a nova. Por favor, ative o \"Módulo de encriptação padrão\" e execute 'occ encryption:migrate'", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Precisa de migrar as suas chaves de encriptação da encriptação antiga (ownCloud <= 8.0) para a nova.", - "Start migration" : "Iniciar migração", - "This is used for sending out notifications." : "Isto é utilizado para enviar notificações", - "Send mode" : "Modo de Envio", - "Encryption" : "Encriptação", - "From address" : "Do endereço", - "mail" : "Correio", - "Authentication method" : "Método de Autenticação", - "Authentication required" : "Autenticação necessária", - "Server address" : "Endereço do Servidor", - "Port" : "Porta", - "Credentials" : "Credenciais", - "SMTP Username" : "Nome de utilizador SMTP", - "SMTP Password" : "Palavra-passe SMTP", - "Store credentials" : "Armazenar credenciais", - "Test email settings" : "Testar definições de e-mail", - "Send email" : "Enviar email", - "Download logfile" : "Descarregar logfile", - "More" : "Mais", - "Less" : "Menos", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "O logfile é maior que 100MB. O download do mesmo poderá demorar algum tempo!", - "What to log" : "Fazer log do quê?", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite é utilizado como uma base de dados. Para instalações maiores nós recomendamos que mude para uma interface de base de dados diferente.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "O uso de SQLite é desencorajado especialmente se estiver a pensar em dar uso ao cliente desktop para sincronizar os seus ficheiros no seu computador.", - "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a>." : "Para migrar para outro tipo de base de dados, use a ferramenta de comando de linha: 'occ db:convert-type', ou veja a <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentação↗</a>.", - "How to do backups" : "Como fazer cópias de segurança", - "Advanced monitoring" : "Monitorização avançada", - "Performance tuning" : "Ajuste de desempenho", - "Improving the config.php" : "Melhorar o config.php", - "Theming" : "Temas", - "Hardening and security guidance" : "Orientações de proteção e segurança", - "Version" : "Versão", - "Developer documentation" : "Documentação de Programador", - "Experimental applications ahead" : "Aplicações experimentais de futuro", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "As apps experimentais não estão selecionadas para problemas de segurança, nova ou conhecida como instável e em forte desenvolvimento. Ao instalá-las pode causar a perda de dados ou quebra de segurança.", - "by %s" : "por %s", - "%s-licensed" : "%s-autorizado", - "Documentation:" : "Documentação:", - "User documentation" : "Documentação de Utilizador", - "Admin documentation" : "Documentação do Administrador", - "Show description …" : "Mostrar descrição ...", - "Hide description …" : "Esconder descrição ...", - "This app has an update available." : "Esta aplicação tem uma atualização disponível.", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Esta aplicação não tem uma versão mínima de ownCloud atribuída. Isto será um erro no ownCloud 11 e seguintes.", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Esta aplicação não tem uma versão máxima de ownCloud atribuída. Isto será um erro no ownCloud 11 e seguintes.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicação não pode ser instalada porque as seguintes dependências não podem ser realizadas:", - "Enable only for specific groups" : "Activar só para grupos específicos", - "Uninstall App" : "Desinstalar aplicação", - "Enable experimental apps" : "Ativar apps experimentais", - "SSL Root Certificates" : "Certificados SSL Root", - "Common Name" : "Nome Comum", - "Valid until" : "Válido até", - "Issued By" : "Emitido Por", - "Valid until %s" : "Válido até %s", - "Import root certificate" : "Importar certificado root", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Olá,<br><br>apenas para informar que você tem uma conta %s.<br><br>O seu nome de utilizador: %s<br>Acesse à sua conta: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Parabéns!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Olá,\n\napenas para informar que você tem uma conta %s.\n\nO seu nome de utilizador: %s\nAcesse à sua conta: %s\n\n", - "Administrator documentation" : "Documentação de Administrador.", - "Online documentation" : "Documentação Online", - "Forum" : "Fórum", - "Issue tracker" : "Pesquisador de problemad", - "Commercial support" : "Suporte Comercial", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "Está a usar <strong>%s</strong> de <strong>%s</strong>", - "Profile picture" : "Foto do perfil", - "Upload new" : "Carregar novo", - "Select from Files" : "Seleccione dos Ficheiros", - "Remove image" : "Remover imagem", - "png or jpg, max. 20 MB" : "png ou jpg, máx. 20 MB", - "Picture provided by original account" : "Imagem fornecida pela conta original", - "Cancel" : "Cancelar", - "Choose as profile picture" : "Escolher como fotografia de perfil", - "Full name" : "Nome completo", - "No display name set" : "Nenhum nome display estabelecido", - "Email" : "Email", - "Your email address" : "O seu endereço de email", - "For password recovery and notifications" : "Para recuperação da palavra-passe e notificações", - "No email address set" : "Nenhum endereço de email estabelecido", - "You are member of the following groups:" : "Você é membro dos seguintes grupos:", - "Password" : "Palavra-passe", - "Unable to change your password" : "Não foi possível alterar a sua palavra-passe", - "Current password" : "Palavra-passe atual", - "New password" : "Nova palavra-passe", - "Change password" : "Alterar palavra-passe", - "Language" : "Idioma", - "Help translate" : "Ajude a traduzir", - "Get the apps to sync your files" : "Obtenha as aplicações para sincronizar os seus ficheiros", - "Desktop client" : "Cliente Desktop", - "Android app" : "Aplicação Android", - "iOS app" : "Aplicação iOS", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Se quer apoiar o projecto\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">junte-se ao desenvolvimento</a>\n\t\tou\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">espalhe a palavra</a>!", - "Show First Run Wizard again" : "Mostrar novamente Wizard de Arranque Inicial", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Desenvolvido pela {communityopen}comunidade ownCloud{linkclose}, o {githubopen}código-fonte{linkclose} está licenciado sob a {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}.", - "Show storage location" : "Mostrar a localização do armazenamento", - "Show last log in" : "Mostrar ultimo acesso de entrada", - "Show user backend" : "Mostrar interface do utilizador", - "Send email to new user" : "Enviar email ao novo utilizador", - "Show email address" : "Mostrar endereço de email", - "Username" : "Nome de utilizador", - "E-Mail" : "Correio Eletrónico", - "Create" : "Criar", - "Admin Recovery Password" : "Recuperação da Palavra-passe de Administrador", - "Enter the recovery password in order to recover the users files during password change" : "Digite a senha de recuperação, a fim de recuperar os ficheiros dos utilizadores durante a mudança da palavra-passe", - "Add Group" : "Adicionar grupo", - "Group" : "Grupo", - "Everyone" : "Para todos", - "Admins" : "Administrador", - "Default Quota" : "Quota por padrão", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Insira a quota de armazenamento (ex: \"512 MB\" ou \"12 GB\")", - "Other" : "Outro", - "Full Name" : "Nome completo", - "Group Admin for" : "Administrador de Grupo para", - "Quota" : "Quota", - "Storage Location" : "Localização do Armazenamento", - "User Backend" : "Interface do Utilizador", - "Last Login" : "Ultimo acesso", - "change full name" : "alterar nome completo", - "set new password" : "definir nova palavra-passe", - "change email address" : "alterar endereço do correio eletrónico", - "Default" : "Padrão" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/ro.js b/settings/l10n/ro.js deleted file mode 100644 index 55344561a7d..00000000000 --- a/settings/l10n/ro.js +++ /dev/null @@ -1,118 +0,0 @@ -OC.L10N.register( - "settings", - { - "Security & setup warnings" : "Alerte de securitate & configurare", - "Sharing" : "Partajare", - "External Storage" : "Stocare externă", - "Cron" : "Cron", - "Log" : "Jurnal de activitate", - "Tips & tricks" : "Tips & tricks", - "Updates" : "Actualizări", - "Language changed" : "Limba a fost schimbată", - "Invalid request" : "Cerere eronată", - "Authentication error" : "Eroare la autentificare", - "Admins can't remove themself from the admin group" : "Administratorii nu se pot șterge singuri din grupul admin", - "Unable to add user to group %s" : "Nu s-a putut adăuga utilizatorul la grupul %s", - "Unable to remove user from group %s" : "Nu s-a putut elimina utilizatorul din grupul %s", - "Couldn't update app." : "Aplicaţia nu s-a putut actualiza.", - "Wrong password" : "Parolă greșită", - "No user supplied" : "Nici un utilizator furnizat", - "Unable to change password" : "Imposibil de schimbat parola", - "Enabled" : "Activat", - "Group already exists." : "Grupul deja exista.", - "Unable to add group." : "Nu se poate adăuga grupul.", - "Unable to delete group." : "Nu se poate sterge grupul.", - "Saved" : "Salvat", - "test email settings" : "verifică setările de e-mail", - "Email sent" : "Mesajul a fost expediat", - "Invalid mail address" : "Adresa mail invalidă", - "Unable to create user." : "Imposibil de creat utilizatorul", - "Your %s account was created" : "Contul tău %s a fost creat", - "Unable to delete user." : "Imposibil de șters utilizatorul.", - "Forbidden" : "Interzis", - "Invalid user" : "Utilizator nevalid", - "Email saved" : "E-mail salvat", - "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", - "Sending..." : "Se expediază...", - "All" : "Toate ", - "Please wait...." : "Aşteptaţi vă rog....", - "Error while disabling app" : "Eroare în timpul dezactivării aplicației", - "Disable" : "Dezactivați", - "Enable" : "Activare", - "Error while enabling app" : "Eroare în timpul activării applicației", - "Updating...." : "Actualizare în curs....", - "Error while updating app" : "Eroare în timpul actualizării aplicaţiei", - "Updated" : "Actualizat", - "Uninstalling ...." : "Dezinstalaza ....", - "Uninstall" : "Dezinstalați", - "Delete" : "Șterge", - "Select a profile picture" : "Selectează o imagine de profil", - "Very weak password" : "Parolă foarte slabă", - "Weak password" : "Parolă slabă", - "Good password" : "Parolă bună", - "Strong password" : "Parolă puternică", - "Groups" : "Grupuri", - "undo" : "Anulează ultima acțiune", - "never" : "niciodată", - "add group" : "adăugaţi grupul", - "A valid username must be provided" : "Trebuie să furnizaţi un nume de utilizator valid", - "A valid password must be provided" : "Trebuie să furnizaţi o parolă validă", - "__language_name__" : "_language_name_", - "Unlimited" : "Nelimitată", - "None" : "Niciuna", - "Login" : "Autentificare", - "SSL" : "SSL", - "TLS" : "TLS", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Modulul PHP \"Fileinfo\" lipsește. Va recomandam sa activaţi acest modul pentru a obține cele mai bune rezultate cu detectarea mime-type.", - "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 users to send mail notification for shared files" : "Permite utilizatorilor sa expedieze notificări prin e-mail pentru dosarele comune", - "days" : "zile", - "Allow resharing" : "Permite repartajarea", - "Execute one task with each page loaded" : "Execută o sarcină la fiecare pagină încărcată", - "Send mode" : "Modul de expediere", - "Encryption" : "Încriptare", - "Authentication method" : "Modul de autentificare", - "Authentication required" : "Autentificare necesară", - "Server address" : "Adresa server-ului", - "Port" : "Portul", - "SMTP Username" : "Nume utilizator SMTP", - "SMTP Password" : "Parolă SMTP", - "Test email settings" : "Verifică setările de e-mail", - "Send email" : "Expediază mesajul", - "More" : "Mai mult", - "Less" : "Mai puțin", - "Version" : "Versiunea", - "Forum" : "Forum", - "Profile picture" : "Imagine de profil", - "Upload new" : "Încarcă una nouă", - "Remove image" : "Înlătură imagine", - "Cancel" : "Anulare", - "Email" : "Email", - "Your email address" : "Adresa ta de email", - "Password" : "Parolă", - "Unable to change your password" : "Imposibil de-ați schimbat parola", - "Current password" : "Parola curentă", - "New password" : "Noua parolă", - "Change password" : "Schimbă parola", - "Language" : "Limba", - "Help translate" : "Ajută la traducere", - "Get the apps to sync your files" : "Ia acum aplicatia pentru sincronizarea fisierelor ", - "Desktop client" : "Client Desktop", - "Android app" : "Aplicatie Android", - "iOS app" : "Aplicație iOS", - "Username" : "Nume utilizator", - "Create" : "Crează", - "Admin Recovery Password" : "Parolă de recuperare a Administratorului", - "Enter the recovery password in order to recover the users files during password change" : "Introdu parola de recuperare pentru a recupera fișierele utilizatorilor în timpul schimbării parolei", - "Group" : "Grup", - "Default Quota" : "Cotă implicită", - "Other" : "Altele", - "Full Name" : "Nume complet", - "Quota" : "Cotă", - "change full name" : "schimbă numele complet", - "set new password" : "setează parolă nouă", - "Default" : "Implicită" -}, -"nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"); diff --git a/settings/l10n/ro.json b/settings/l10n/ro.json deleted file mode 100644 index 2b9aa033b6a..00000000000 --- a/settings/l10n/ro.json +++ /dev/null @@ -1,116 +0,0 @@ -{ "translations": { - "Security & setup warnings" : "Alerte de securitate & configurare", - "Sharing" : "Partajare", - "External Storage" : "Stocare externă", - "Cron" : "Cron", - "Log" : "Jurnal de activitate", - "Tips & tricks" : "Tips & tricks", - "Updates" : "Actualizări", - "Language changed" : "Limba a fost schimbată", - "Invalid request" : "Cerere eronată", - "Authentication error" : "Eroare la autentificare", - "Admins can't remove themself from the admin group" : "Administratorii nu se pot șterge singuri din grupul admin", - "Unable to add user to group %s" : "Nu s-a putut adăuga utilizatorul la grupul %s", - "Unable to remove user from group %s" : "Nu s-a putut elimina utilizatorul din grupul %s", - "Couldn't update app." : "Aplicaţia nu s-a putut actualiza.", - "Wrong password" : "Parolă greșită", - "No user supplied" : "Nici un utilizator furnizat", - "Unable to change password" : "Imposibil de schimbat parola", - "Enabled" : "Activat", - "Group already exists." : "Grupul deja exista.", - "Unable to add group." : "Nu se poate adăuga grupul.", - "Unable to delete group." : "Nu se poate sterge grupul.", - "Saved" : "Salvat", - "test email settings" : "verifică setările de e-mail", - "Email sent" : "Mesajul a fost expediat", - "Invalid mail address" : "Adresa mail invalidă", - "Unable to create user." : "Imposibil de creat utilizatorul", - "Your %s account was created" : "Contul tău %s a fost creat", - "Unable to delete user." : "Imposibil de șters utilizatorul.", - "Forbidden" : "Interzis", - "Invalid user" : "Utilizator nevalid", - "Email saved" : "E-mail salvat", - "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", - "Sending..." : "Se expediază...", - "All" : "Toate ", - "Please wait...." : "Aşteptaţi vă rog....", - "Error while disabling app" : "Eroare în timpul dezactivării aplicației", - "Disable" : "Dezactivați", - "Enable" : "Activare", - "Error while enabling app" : "Eroare în timpul activării applicației", - "Updating...." : "Actualizare în curs....", - "Error while updating app" : "Eroare în timpul actualizării aplicaţiei", - "Updated" : "Actualizat", - "Uninstalling ...." : "Dezinstalaza ....", - "Uninstall" : "Dezinstalați", - "Delete" : "Șterge", - "Select a profile picture" : "Selectează o imagine de profil", - "Very weak password" : "Parolă foarte slabă", - "Weak password" : "Parolă slabă", - "Good password" : "Parolă bună", - "Strong password" : "Parolă puternică", - "Groups" : "Grupuri", - "undo" : "Anulează ultima acțiune", - "never" : "niciodată", - "add group" : "adăugaţi grupul", - "A valid username must be provided" : "Trebuie să furnizaţi un nume de utilizator valid", - "A valid password must be provided" : "Trebuie să furnizaţi o parolă validă", - "__language_name__" : "_language_name_", - "Unlimited" : "Nelimitată", - "None" : "Niciuna", - "Login" : "Autentificare", - "SSL" : "SSL", - "TLS" : "TLS", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Modulul PHP \"Fileinfo\" lipsește. Va recomandam sa activaţi acest modul pentru a obține cele mai bune rezultate cu detectarea mime-type.", - "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 users to send mail notification for shared files" : "Permite utilizatorilor sa expedieze notificări prin e-mail pentru dosarele comune", - "days" : "zile", - "Allow resharing" : "Permite repartajarea", - "Execute one task with each page loaded" : "Execută o sarcină la fiecare pagină încărcată", - "Send mode" : "Modul de expediere", - "Encryption" : "Încriptare", - "Authentication method" : "Modul de autentificare", - "Authentication required" : "Autentificare necesară", - "Server address" : "Adresa server-ului", - "Port" : "Portul", - "SMTP Username" : "Nume utilizator SMTP", - "SMTP Password" : "Parolă SMTP", - "Test email settings" : "Verifică setările de e-mail", - "Send email" : "Expediază mesajul", - "More" : "Mai mult", - "Less" : "Mai puțin", - "Version" : "Versiunea", - "Forum" : "Forum", - "Profile picture" : "Imagine de profil", - "Upload new" : "Încarcă una nouă", - "Remove image" : "Înlătură imagine", - "Cancel" : "Anulare", - "Email" : "Email", - "Your email address" : "Adresa ta de email", - "Password" : "Parolă", - "Unable to change your password" : "Imposibil de-ați schimbat parola", - "Current password" : "Parola curentă", - "New password" : "Noua parolă", - "Change password" : "Schimbă parola", - "Language" : "Limba", - "Help translate" : "Ajută la traducere", - "Get the apps to sync your files" : "Ia acum aplicatia pentru sincronizarea fisierelor ", - "Desktop client" : "Client Desktop", - "Android app" : "Aplicatie Android", - "iOS app" : "Aplicație iOS", - "Username" : "Nume utilizator", - "Create" : "Crează", - "Admin Recovery Password" : "Parolă de recuperare a Administratorului", - "Enter the recovery password in order to recover the users files during password change" : "Introdu parola de recuperare pentru a recupera fișierele utilizatorilor în timpul schimbării parolei", - "Group" : "Grup", - "Default Quota" : "Cotă implicită", - "Other" : "Altele", - "Full Name" : "Nume complet", - "Quota" : "Cotă", - "change full name" : "schimbă numele complet", - "set new password" : "setează parolă nouă", - "Default" : "Implicită" -},"pluralForm" :"nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));" -}
\ No newline at end of file diff --git a/settings/l10n/ru.js b/settings/l10n/ru.js deleted file mode 100644 index b372180d745..00000000000 --- a/settings/l10n/ru.js +++ /dev/null @@ -1,298 +0,0 @@ -OC.L10N.register( - "settings", - { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Предупреждения безопасности и установки", - "Sharing" : "Общий доступ", - "Server-side encryption" : "Шифрование на стороне сервера", - "External Storage" : "Внешнее хранилище", - "Cron" : "Cron (планировщик задач)", - "Email server" : "Почтовый сервер", - "Log" : "Журнал", - "Tips & tricks" : "Советы и трюки", - "Updates" : "Обновления", - "Couldn't remove app." : "Невозможно удалить приложение.", - "Language changed" : "Язык изменён", - "Invalid request" : "Неправильный запрос", - "Authentication error" : "Ошибка аутентификации", - "Admins can't remove themself from the admin group" : "Администратор не может удалить сам себя из группы администраторов", - "Unable to add user to group %s" : "Невозможно добавить пользователя в группу %s", - "Unable to remove user from group %s" : "Невозможно удалить пользователя из группы %s", - "Couldn't update app." : "Невозможно обновить приложение", - "Wrong password" : "Неправильный пароль", - "No user supplied" : "Пользователь не задан", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Введите пароль восстановления администратора, в противном случае все пользовательские данные будут утеряны", - "Wrong admin recovery password. Please check the password and try again." : "Неправильный пароль восстановления администратора. Проверьте пароль и попробуйте еще раз.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Используемый механизм не поддерживает смену паролей, но пользовательский ключ шифрования был успешно обновлён", - "Unable to change password" : "Невозможно изменить пароль", - "Enabled" : "Включено", - "Not enabled" : "Не включено", - "installing and updating apps via the app store or Federated Cloud Sharing" : "установка и обновление приложений через магазин приложений или Объединение облачных хранилищ", - "Federated Cloud Sharing" : "Объединение облачных хранилищ", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL использует устаревшую %s версию (%s). Пожалуйста, обновите Вашу операционную систему, иначе такие возможности, как %s не будут работать надежно.", - "A problem occurred, please check your log files (Error: %s)" : "Возникла проблема, пожалуйста, проверьте ваши файлы журнала (Ошибка: %s)", - "Migration Completed" : "Миграция завершена", - "Group already exists." : "Группа уже существует.", - "Unable to add group." : "Невозможно добавить группу.", - "Unable to delete group." : "Невозможно удалить группу.", - "log-level out of allowed range" : "уровень журнала вышел за разрешенный диапазон", - "Saved" : "Сохранено", - "test email settings" : "проверить настройки почты", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Во время отправки email произошла ошибка. Пожалуйста проверьте настройки. (Ошибка: %s)", - "Email sent" : "Письмо отправлено", - "You need to set your user email before being able to send test emails." : "Вы должны настроить свой e-mail пользователя прежде чем отправлять тестовые сообщения.", - "Invalid mail address" : "Некорректный адрес email", - "A user with that name already exists." : "Пользователь с таким именем уже существует.", - "Unable to create user." : "Невозможно создать пользователя.", - "Your %s account was created" : "Учетная запись %s создана", - "Unable to delete user." : "Невозможно удалить пользователя.", - "Forbidden" : "Запрещено", - "Invalid user" : "Неверный пользователь", - "Unable to change mail address" : "Невозможно изменить адрес электронной почты", - "Email saved" : "Email сохранен", - "Your full name has been changed." : "Ваше полное имя было изменено.", - "Unable to change full name" : "Невозможно изменить полное имя", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Вы действительно хотите добавить домен \"{domain}\" как доверенный?", - "Add trusted domain" : "Добавить доверенный домен", - "Migration in progress. Please wait until the migration is finished" : "Миграция в процессе. Пожалуйста, подождите завершения миграции", - "Migration started …" : "Начата миграция ...", - "Sending..." : "Отправляется ...", - "Official" : "Официальное", - "Approved" : "Подтвержденное", - "Experimental" : "Экспериментальное", - "All" : "Все", - "No apps found for your version" : "Не найдено приложений на вашу версию", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Официальные приложения разработаны силами сообщества ownCloud. Они полностью функциональны и готовы к работе.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Подтвержденные приложения разработаны доверенными разработчиками и прошли краткую проверку на наличие проблем с безопасностью. Они активно поддерживаются в открытых репозиториях и сопровождающие их разработчики подтверждают, что приложения достаточно стабильны для нормальной работы.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Это приложение не проверялось на наличие проблем с безопасностью, также оно может работать нестабильно. Устанавливайте на свой страх и риск.", - "Update to %s" : "Обновить до %s", - "_You have %n app update pending_::_You have %n app updates pending_" : ["%n обновление в очереди","%n обновлений в очереди","%n обновлений в очереди","%n обновлений в очереди"], - "Please wait...." : "Пожалуйста подождите...", - "Error while disabling app" : "Ошибка при отключении приложения", - "Disable" : "Выключить", - "Enable" : "Включить", - "Error while enabling app" : "Ошибка при включении приложения", - "Error: this app cannot be enabled because it makes the server unstable" : "Ошибка: это приложение не может быть включено, так как оно делает сервер нестабильным", - "Error: could not disable broken app" : "Ошибка: невозможно отключить сломанное приложение", - "Error while disabling broken app" : "Ошибка при отключении сломанного приложения", - "Updating...." : "Обновление...", - "Error while updating app" : "Ошибка при обновлении приложения", - "Updated" : "Обновлено", - "Uninstalling ...." : "Удаление ...", - "Error while uninstalling app" : "Ошибка при удалении приложения", - "Uninstall" : "Удалить", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Приложение было включено и нуждается в обновлении. Вас перенаправит на страницу обновления через 5 секунд.", - "App update" : "Обновить приложения", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Произошла ошибка. Пожалуйста загрузите сертификат PEM в ASCII кодировке.", - "Valid until {date}" : "Действительно до {дата}", - "Delete" : "Удалить", - "An error occurred: {message}" : "Произошла ошибка: {message}", - "Select a profile picture" : "Выберите аватар", - "Very weak password" : "Очень слабый пароль", - "Weak password" : "Слабый пароль", - "So-so password" : "Так себе пароль", - "Good password" : "Хороший пароль", - "Strong password" : "Стойкий пароль", - "Groups" : "Группы", - "Unable to delete {objName}" : "Невозможно удалить {objName}", - "Error creating group: {message}" : "Ошибка создания группы: {message}", - "A valid group name must be provided" : "Введите правильное имя группы", - "deleted {groupName}" : "удалена {groupName}", - "undo" : "отмена", - "no group" : "без группы", - "never" : "никогда", - "deleted {userName}" : "удалён {userName}", - "add group" : "добавить группу", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Изменение пароля приведёт к потере данных, так как восстановление данных не доступно для этого пользователя", - "A valid username must be provided" : "Укажите правильное имя пользователя", - "Error creating user: {message}" : "Ошибка создания пользователя: {message}", - "A valid password must be provided" : "Должен быть указан правильный пароль", - "A valid email must be provided" : "Должен быть указан корректный адрес email", - "__language_name__" : "Русский", - "Unlimited" : "Неограничено", - "Personal info" : "Личная информация", - "Sync clients" : "Синхронизация клиентов", - "Everything (fatal issues, errors, warnings, info, debug)" : "Все (критические проблемы, ошибки, предупреждения, информационные, отладочные)", - "Info, warnings, errors and fatal issues" : "Информационные, предупреждения, ошибки и критические проблемы", - "Warnings, errors and fatal issues" : "Предупреждения, ошибки и критические проблемы", - "Errors and fatal issues" : "Ошибки и критические проблемы", - "Fatal issues only" : "Только критические проблемы", - "None" : "Отсутствует", - "Login" : "Логин", - "Plain" : "Простой", - "NT LAN Manager" : "Менеджер NT LAN", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "PHP был установлен неверно. Запрос getenv(\"PATH\") возвращает пустые результаты.", - "Please check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation documentation ↗</a> for php configuration notes and the php configuration of your server, especially when using php-fpm." : "Пожалуйста обратитесь к <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">документации по установке ↗</a> для получения информации по настройке php на вашем сервере, особенно это касается php-fpm.", - "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." : "Конфигурационный файл в режиме только для чтения. В связи с этим некоторые настройки веб-интерфейса невозможно изменить. Учтите, что для установки обновлений, вам потребуется самостоятельно разрешить запись в конфигурационный файл.", - "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.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Ваш сервер работает на ОС Microsoft Windows. Мы настоятельно рекомендуем использовать ОС семейства Linux для достижения наилучших условий использования.", - "%1$s below version %2$s is installed, for stability and performance reasons we recommend updating to a newer %1$s version." : "%1$s ниже установленной версии %2$s, по причинам стабильности и производительности мы рекомендуем обновиться до новой версии %1$s.", - "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) файлов.", - "Transactional file locking is disabled, this might lead to issues with race conditions. Enable 'filelocking.enabled' in config.php to avoid these problems. See the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a> for more information." : "Блокировка передаваемых файлов отключена, это может привести к состоянию гонки. Включите параметр 'filelocking.enabled' в файла config.php для решения проблемы. Обратитесь к <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">документации ↗</a> для получения дополнительной информации.", - "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.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Если ваша копия ownCloud установлена не в корне домена и использует системный планировщик cron, возможны проблемы с правильной генерацией URL. Чтобы избежать этого, установите опцию \"overwrite.cli.url\" в файле config.php равной пути папки установки. (Предположительно: \"%s\".)", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Не удается запустить задачу планировщика через CLI. Произошли следующие технические ошибки:", - "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"#log-section\">log</a>." : "Пожалуйста еще раз обратитесь к <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">документации по установке ↗</a> и проверьте <a href=\"#log-section\">журнал</a>на наличие ошибок", - "All checks passed." : "Все проверки пройдены.", - "Open documentation" : "Открыть документацию", - "Allow apps to use the Share API" : "Позволить приложениям использовать API общего доступа", - "Allow users to share via link" : "Разрешить пользователям публикации через ссылки", - "Enforce password protection" : "Защита паролем обязательна", - "Allow public uploads" : "Разрешить открытые/публичные загрузки", - "Allow users to send mail notification for shared files" : "Разрешить пользователям отправлять email об открытии доступа к файлам", - "Set default expiration date" : "Установить дату истечения по умолчанию", - "Expire after " : "Истечение через", - "days" : "дней", - "Enforce expiration date" : "Срок действия обязателен", - "Allow resharing" : "Разрешить повторное открытие общего доступа", - "Allow sharing with groups" : "Разрешить общий доступ с группой", - "Restrict users to only share with users in their groups" : "Разрешить пользователям делиться только с членами их групп", - "Allow users to send mail notification for shared files to other users" : "Разрешить пользователям отправлять оповещение других пользователей об открытии доступа к файлам", - "Exclude groups from sharing" : "Исключить группы из общего доступа", - "These groups will still be able to receive shares, but not to initiate them." : "Эти группы смогут получать общие ресурсы, но не могут их создавать.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Включить автоматическое завершение имен пользователей в окне общего доступа. Если отключено, то необходимо вводить полное имя вручную.", - "Last cron job execution: %s." : "Последнее выполненное Cron задание: %s.", - "Last cron job execution: %s. Something seems wrong." : "Последнее выполненное Cron задание: %s. Что-то кажется неправильным.", - "Cron was not executed yet!" : "Задачи cron ещё не запускались!", - "Execute one task with each page loaded" : "Выполнять одно задание с каждой загруженной страницей", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php зарегистрирован в webcron и будет вызываться каждые 15 минут по http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Использовать системный cron для вызова cron.php каждые 15 минут.", - "Enable server-side encryption" : "Включить шифрование на стороне сервера", - "Please read carefully before activating server-side encryption: " : "Пожалуйста прочтите внимательно прежде чем включать шифрование на стороне сервера:", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "Когда вы включите шифрование, все файлы, загруженные с этого момента на сервер будут храниться в зашифрованном виде. Отключить шифрование возможно установив более позднюю дату если модуль шифрования поддерживает эту функцию, и все дополнительные условия соблюдены (например настроен ключ восстановления).", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "Шифрование не гарантирует безопасность системы. Пожалуйста читайте документацию для получения информации о работе модуля шифрования и случаи его использования.", - "Be aware that encryption always increases the file size." : "Будьте в курсе, что шифрование всегда увеличивает размер файла.", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "Хорошая практика делать регулярные резервные копии ваших данных. При использовании шифрования сохраняйте ключи вместе с данными.", - "This is the final warning: Do you really want to enable encryption?" : "Это последнее предупреждение: Вы действительно желаете включить шифрование?", - "Enable encryption" : "Включить шифрование", - "No encryption module loaded, please enable an encryption module in the app menu." : "Модуль шифрования не загружен, пожалуйста включите модуль шифрования в меню приложений.", - "Select default encryption module:" : "Выберите модуль шифрования по умолчанию:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Вам необходимо произвести конвертацию ключей шифрования из старого формата (ownCloud <= 8.0) в новый. Пожалуйста включите \"Модуль шифрования по умолчанию\" и запустите команду 'occ encryption:migrate'.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Вам необходимо произвести конвертацию ключей шифрования из старого формата (ownCloud <= 8.0) в новый.", - "Start migration" : "Запустить миграцию", - "This is used for sending out notifications." : "Используется для отправки уведомлений.", - "Send mode" : "Способ отправки", - "Encryption" : "Шифрование", - "From address" : "Адрес отправителя", - "mail" : "почта", - "Authentication method" : "Метод проверки подлинности", - "Authentication required" : "Требуется аутентификация ", - "Server address" : "Адрес сервера", - "Port" : "Порт", - "Credentials" : "Учётные данные", - "SMTP Username" : "Пользователь SMTP", - "SMTP Password" : "Пароль SMTP", - "Store credentials" : "Сохранить учётные данные", - "Test email settings" : "Проверить настройки почты", - "Send email" : "Отправить email", - "Download logfile" : "Скачать журнал", - "More" : "Больше", - "Less" : "Меньше", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Лог-файл - больше 100 мб. Его скачивание может занять некоторое время!", - "What to log" : "Что записывать в журнал", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "В качестве базы данных используется SQLite. Для больших установок мы рекомендуем переключиться на другую серверную базу данных.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Особенно вызывает сомнение использование SQLite при синхронизации файлов с использование клиента для ПК.", - "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a>." : "Для миграции на другую базу данных используйте команду: 'occ db:convert-type' или обратитесь к a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">документации ↗</a>.", - "How to do backups" : "Как сделать резервные копии", - "Advanced monitoring" : "Расширенный мониторинг", - "Performance tuning" : "Настройка производительности", - "Improving the config.php" : "Улучшение config.php", - "Theming" : "Темы оформления", - "Hardening and security guidance" : "Руководство по безопасности и защите", - "Version" : "Версия", - "Developer documentation" : "Документация для разработчиков", - "Experimental applications ahead" : "Экспериментальные приложения", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Экспериментальные приложения не проверялись на наличие уязвимостей безопасности, они также могут быть нестабильны, т.к. находятся в активной разработке. Их установка может повлечь потерю информации или нарушение безопасности.", - "by %s" : "от %s", - "%s-licensed" : "Лицензия %s", - "Documentation:" : "Документация:", - "User documentation" : "Пользовательская документация", - "Admin documentation" : "Документация для администратора", - "Show description …" : "Показать описание ...", - "Hide description …" : "Скрыть описание ...", - "This app has an update available." : "Для этого приложения доступно обновление.", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Для этого приложения не указана минимальная версия ownClowd. Будет считаться ошибкой начиная с версии ownClowd 11.", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Для этого приложения не указана максимальная версия ownClowd. Будет считаться ошибкой начиная с версии ownClowd 11.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Приложение не может быть установлено, следующие зависимости не удовлетворены:", - "Enable only for specific groups" : "Включить только для этих групп", - "Uninstall App" : "Удалить приложение", - "Enable experimental apps" : "Включить экспериментальные приложения", - "SSL Root Certificates" : "Корневые сертификаты SSL", - "Common Name" : "Общее Имя", - "Valid until" : "Действительно до", - "Issued By" : "Выдан", - "Valid until %s" : "Действительно до %s", - "Import root certificate" : "Импорт корневого сертификата", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Здравствуйте,<br><br>просто хотим сообщить, что теперь у вас есть учетная запись на %s.<br><br>Ваше имя пользователя: %s<br>Зайти: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Удачи!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Здравствуйте,\n\nПросто хотим сообщить, что теперь у вас есть учетная запись на %s.\n\nИмя пользователя: %s\nЗайти: %s\n", - "Administrator documentation" : "Документация администратора", - "Online documentation" : "Online-документация", - "Forum" : "Форум", - "Issue tracker" : "трекер проблем", - "Commercial support" : "Коммерческая поддержка", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "Вы используете <strong>%s</strong> из <strong>%s</strong>", - "Profile picture" : "Аватар", - "Upload new" : "Загрузить новый", - "Select from Files" : "Выбрать из Файлов", - "Remove image" : "Удалить аватар", - "png or jpg, max. 20 MB" : "png или jpg, макс. 20 МБ", - "Picture provided by original account" : "Картинка из исходной учетной записи", - "Cancel" : "Отмена", - "Choose as profile picture" : "Выбрать в качестве картинки профиля", - "Full name" : "Полное имя", - "No display name set" : "Отображаемое имя не указано", - "Email" : "E-mail", - "Your email address" : "Ваш адрес электронной почты", - "For password recovery and notifications" : "Для восстановления пароля и уведомлений", - "No email address set" : "E-mail не указан", - "You are member of the following groups:" : "Вы являетесь членом следующих групп:", - "Password" : "Пароль", - "Unable to change your password" : "Невозможно сменить пароль", - "Current password" : "Текущий пароль", - "New password" : "Новый пароль", - "Change password" : "Сменить пароль", - "Language" : "Язык", - "Help translate" : "Помочь с переводом", - "Get the apps to sync your files" : "Получить приложения для синхронизации ваших файлов", - "Desktop client" : "Клиент для ПК", - "Android app" : "Android приложение", - "iOS app" : "iOS приложение", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Если Вы хотите поддержать проект\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">совместная разработка</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">сообщить</a>!", - "Show First Run Wizard again" : "Показать помощник настройки снова", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Разработано {communityopen}сообществом ownCloud{linkclose}, {githubopen}исходный код{linkclose} лицензируется в соответствии с{licenseopen}<abbr title=\"Публичной лицензией Affero General\">AGPL</abbr>{linkclose}.", - "Show storage location" : "Показать местонахождение хранилища", - "Show last log in" : "Показать последний вход в систему", - "Show user backend" : "Показать пользовательскую часть", - "Send email to new user" : "Отправлять сообщение на email новому пользователю", - "Show email address" : "Показывать адрес email", - "Username" : "Имя пользователя", - "E-Mail" : "E-Mail", - "Create" : "Создать", - "Admin Recovery Password" : "Восстановление пароля администратора", - "Enter the recovery password in order to recover the users files during password change" : "Введите пароль для того, чтобы восстановить файлы пользователей при смене пароля", - "Add Group" : "Добавить группу", - "Group" : "Группа", - "Everyone" : "Все", - "Admins" : "Администраторы", - "Default Quota" : "Квота по умолчанию", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Пожалуйста, введите квоту на хранилище (например: \"512 MB\" или \"12 GB\")", - "Other" : "Другая", - "Full Name" : "Полное имя", - "Group Admin for" : "Для группы Администраторов", - "Quota" : "Квота", - "Storage Location" : "Место хранилища", - "User Backend" : "Пользовательская часть", - "Last Login" : "Последний вход", - "change full name" : "изменить полное имя", - "set new password" : "установить новый пароль", - "change email address" : "изменить адрес email", - "Default" : "По умолчанию" -}, -"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"); diff --git a/settings/l10n/ru.json b/settings/l10n/ru.json deleted file mode 100644 index 160dbe8167d..00000000000 --- a/settings/l10n/ru.json +++ /dev/null @@ -1,296 +0,0 @@ -{ "translations": { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Предупреждения безопасности и установки", - "Sharing" : "Общий доступ", - "Server-side encryption" : "Шифрование на стороне сервера", - "External Storage" : "Внешнее хранилище", - "Cron" : "Cron (планировщик задач)", - "Email server" : "Почтовый сервер", - "Log" : "Журнал", - "Tips & tricks" : "Советы и трюки", - "Updates" : "Обновления", - "Couldn't remove app." : "Невозможно удалить приложение.", - "Language changed" : "Язык изменён", - "Invalid request" : "Неправильный запрос", - "Authentication error" : "Ошибка аутентификации", - "Admins can't remove themself from the admin group" : "Администратор не может удалить сам себя из группы администраторов", - "Unable to add user to group %s" : "Невозможно добавить пользователя в группу %s", - "Unable to remove user from group %s" : "Невозможно удалить пользователя из группы %s", - "Couldn't update app." : "Невозможно обновить приложение", - "Wrong password" : "Неправильный пароль", - "No user supplied" : "Пользователь не задан", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Введите пароль восстановления администратора, в противном случае все пользовательские данные будут утеряны", - "Wrong admin recovery password. Please check the password and try again." : "Неправильный пароль восстановления администратора. Проверьте пароль и попробуйте еще раз.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Используемый механизм не поддерживает смену паролей, но пользовательский ключ шифрования был успешно обновлён", - "Unable to change password" : "Невозможно изменить пароль", - "Enabled" : "Включено", - "Not enabled" : "Не включено", - "installing and updating apps via the app store or Federated Cloud Sharing" : "установка и обновление приложений через магазин приложений или Объединение облачных хранилищ", - "Federated Cloud Sharing" : "Объединение облачных хранилищ", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL использует устаревшую %s версию (%s). Пожалуйста, обновите Вашу операционную систему, иначе такие возможности, как %s не будут работать надежно.", - "A problem occurred, please check your log files (Error: %s)" : "Возникла проблема, пожалуйста, проверьте ваши файлы журнала (Ошибка: %s)", - "Migration Completed" : "Миграция завершена", - "Group already exists." : "Группа уже существует.", - "Unable to add group." : "Невозможно добавить группу.", - "Unable to delete group." : "Невозможно удалить группу.", - "log-level out of allowed range" : "уровень журнала вышел за разрешенный диапазон", - "Saved" : "Сохранено", - "test email settings" : "проверить настройки почты", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Во время отправки email произошла ошибка. Пожалуйста проверьте настройки. (Ошибка: %s)", - "Email sent" : "Письмо отправлено", - "You need to set your user email before being able to send test emails." : "Вы должны настроить свой e-mail пользователя прежде чем отправлять тестовые сообщения.", - "Invalid mail address" : "Некорректный адрес email", - "A user with that name already exists." : "Пользователь с таким именем уже существует.", - "Unable to create user." : "Невозможно создать пользователя.", - "Your %s account was created" : "Учетная запись %s создана", - "Unable to delete user." : "Невозможно удалить пользователя.", - "Forbidden" : "Запрещено", - "Invalid user" : "Неверный пользователь", - "Unable to change mail address" : "Невозможно изменить адрес электронной почты", - "Email saved" : "Email сохранен", - "Your full name has been changed." : "Ваше полное имя было изменено.", - "Unable to change full name" : "Невозможно изменить полное имя", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Вы действительно хотите добавить домен \"{domain}\" как доверенный?", - "Add trusted domain" : "Добавить доверенный домен", - "Migration in progress. Please wait until the migration is finished" : "Миграция в процессе. Пожалуйста, подождите завершения миграции", - "Migration started …" : "Начата миграция ...", - "Sending..." : "Отправляется ...", - "Official" : "Официальное", - "Approved" : "Подтвержденное", - "Experimental" : "Экспериментальное", - "All" : "Все", - "No apps found for your version" : "Не найдено приложений на вашу версию", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Официальные приложения разработаны силами сообщества ownCloud. Они полностью функциональны и готовы к работе.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Подтвержденные приложения разработаны доверенными разработчиками и прошли краткую проверку на наличие проблем с безопасностью. Они активно поддерживаются в открытых репозиториях и сопровождающие их разработчики подтверждают, что приложения достаточно стабильны для нормальной работы.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Это приложение не проверялось на наличие проблем с безопасностью, также оно может работать нестабильно. Устанавливайте на свой страх и риск.", - "Update to %s" : "Обновить до %s", - "_You have %n app update pending_::_You have %n app updates pending_" : ["%n обновление в очереди","%n обновлений в очереди","%n обновлений в очереди","%n обновлений в очереди"], - "Please wait...." : "Пожалуйста подождите...", - "Error while disabling app" : "Ошибка при отключении приложения", - "Disable" : "Выключить", - "Enable" : "Включить", - "Error while enabling app" : "Ошибка при включении приложения", - "Error: this app cannot be enabled because it makes the server unstable" : "Ошибка: это приложение не может быть включено, так как оно делает сервер нестабильным", - "Error: could not disable broken app" : "Ошибка: невозможно отключить сломанное приложение", - "Error while disabling broken app" : "Ошибка при отключении сломанного приложения", - "Updating...." : "Обновление...", - "Error while updating app" : "Ошибка при обновлении приложения", - "Updated" : "Обновлено", - "Uninstalling ...." : "Удаление ...", - "Error while uninstalling app" : "Ошибка при удалении приложения", - "Uninstall" : "Удалить", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Приложение было включено и нуждается в обновлении. Вас перенаправит на страницу обновления через 5 секунд.", - "App update" : "Обновить приложения", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Произошла ошибка. Пожалуйста загрузите сертификат PEM в ASCII кодировке.", - "Valid until {date}" : "Действительно до {дата}", - "Delete" : "Удалить", - "An error occurred: {message}" : "Произошла ошибка: {message}", - "Select a profile picture" : "Выберите аватар", - "Very weak password" : "Очень слабый пароль", - "Weak password" : "Слабый пароль", - "So-so password" : "Так себе пароль", - "Good password" : "Хороший пароль", - "Strong password" : "Стойкий пароль", - "Groups" : "Группы", - "Unable to delete {objName}" : "Невозможно удалить {objName}", - "Error creating group: {message}" : "Ошибка создания группы: {message}", - "A valid group name must be provided" : "Введите правильное имя группы", - "deleted {groupName}" : "удалена {groupName}", - "undo" : "отмена", - "no group" : "без группы", - "never" : "никогда", - "deleted {userName}" : "удалён {userName}", - "add group" : "добавить группу", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Изменение пароля приведёт к потере данных, так как восстановление данных не доступно для этого пользователя", - "A valid username must be provided" : "Укажите правильное имя пользователя", - "Error creating user: {message}" : "Ошибка создания пользователя: {message}", - "A valid password must be provided" : "Должен быть указан правильный пароль", - "A valid email must be provided" : "Должен быть указан корректный адрес email", - "__language_name__" : "Русский", - "Unlimited" : "Неограничено", - "Personal info" : "Личная информация", - "Sync clients" : "Синхронизация клиентов", - "Everything (fatal issues, errors, warnings, info, debug)" : "Все (критические проблемы, ошибки, предупреждения, информационные, отладочные)", - "Info, warnings, errors and fatal issues" : "Информационные, предупреждения, ошибки и критические проблемы", - "Warnings, errors and fatal issues" : "Предупреждения, ошибки и критические проблемы", - "Errors and fatal issues" : "Ошибки и критические проблемы", - "Fatal issues only" : "Только критические проблемы", - "None" : "Отсутствует", - "Login" : "Логин", - "Plain" : "Простой", - "NT LAN Manager" : "Менеджер NT LAN", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "PHP был установлен неверно. Запрос getenv(\"PATH\") возвращает пустые результаты.", - "Please check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation documentation ↗</a> for php configuration notes and the php configuration of your server, especially when using php-fpm." : "Пожалуйста обратитесь к <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">документации по установке ↗</a> для получения информации по настройке php на вашем сервере, особенно это касается php-fpm.", - "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." : "Конфигурационный файл в режиме только для чтения. В связи с этим некоторые настройки веб-интерфейса невозможно изменить. Учтите, что для установки обновлений, вам потребуется самостоятельно разрешить запись в конфигурационный файл.", - "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.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Ваш сервер работает на ОС Microsoft Windows. Мы настоятельно рекомендуем использовать ОС семейства Linux для достижения наилучших условий использования.", - "%1$s below version %2$s is installed, for stability and performance reasons we recommend updating to a newer %1$s version." : "%1$s ниже установленной версии %2$s, по причинам стабильности и производительности мы рекомендуем обновиться до новой версии %1$s.", - "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) файлов.", - "Transactional file locking is disabled, this might lead to issues with race conditions. Enable 'filelocking.enabled' in config.php to avoid these problems. See the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a> for more information." : "Блокировка передаваемых файлов отключена, это может привести к состоянию гонки. Включите параметр 'filelocking.enabled' в файла config.php для решения проблемы. Обратитесь к <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">документации ↗</a> для получения дополнительной информации.", - "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.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Если ваша копия ownCloud установлена не в корне домена и использует системный планировщик cron, возможны проблемы с правильной генерацией URL. Чтобы избежать этого, установите опцию \"overwrite.cli.url\" в файле config.php равной пути папки установки. (Предположительно: \"%s\".)", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Не удается запустить задачу планировщика через CLI. Произошли следующие технические ошибки:", - "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"#log-section\">log</a>." : "Пожалуйста еще раз обратитесь к <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">документации по установке ↗</a> и проверьте <a href=\"#log-section\">журнал</a>на наличие ошибок", - "All checks passed." : "Все проверки пройдены.", - "Open documentation" : "Открыть документацию", - "Allow apps to use the Share API" : "Позволить приложениям использовать API общего доступа", - "Allow users to share via link" : "Разрешить пользователям публикации через ссылки", - "Enforce password protection" : "Защита паролем обязательна", - "Allow public uploads" : "Разрешить открытые/публичные загрузки", - "Allow users to send mail notification for shared files" : "Разрешить пользователям отправлять email об открытии доступа к файлам", - "Set default expiration date" : "Установить дату истечения по умолчанию", - "Expire after " : "Истечение через", - "days" : "дней", - "Enforce expiration date" : "Срок действия обязателен", - "Allow resharing" : "Разрешить повторное открытие общего доступа", - "Allow sharing with groups" : "Разрешить общий доступ с группой", - "Restrict users to only share with users in their groups" : "Разрешить пользователям делиться только с членами их групп", - "Allow users to send mail notification for shared files to other users" : "Разрешить пользователям отправлять оповещение других пользователей об открытии доступа к файлам", - "Exclude groups from sharing" : "Исключить группы из общего доступа", - "These groups will still be able to receive shares, but not to initiate them." : "Эти группы смогут получать общие ресурсы, но не могут их создавать.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Включить автоматическое завершение имен пользователей в окне общего доступа. Если отключено, то необходимо вводить полное имя вручную.", - "Last cron job execution: %s." : "Последнее выполненное Cron задание: %s.", - "Last cron job execution: %s. Something seems wrong." : "Последнее выполненное Cron задание: %s. Что-то кажется неправильным.", - "Cron was not executed yet!" : "Задачи cron ещё не запускались!", - "Execute one task with each page loaded" : "Выполнять одно задание с каждой загруженной страницей", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php зарегистрирован в webcron и будет вызываться каждые 15 минут по http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Использовать системный cron для вызова cron.php каждые 15 минут.", - "Enable server-side encryption" : "Включить шифрование на стороне сервера", - "Please read carefully before activating server-side encryption: " : "Пожалуйста прочтите внимательно прежде чем включать шифрование на стороне сервера:", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "Когда вы включите шифрование, все файлы, загруженные с этого момента на сервер будут храниться в зашифрованном виде. Отключить шифрование возможно установив более позднюю дату если модуль шифрования поддерживает эту функцию, и все дополнительные условия соблюдены (например настроен ключ восстановления).", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "Шифрование не гарантирует безопасность системы. Пожалуйста читайте документацию для получения информации о работе модуля шифрования и случаи его использования.", - "Be aware that encryption always increases the file size." : "Будьте в курсе, что шифрование всегда увеличивает размер файла.", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "Хорошая практика делать регулярные резервные копии ваших данных. При использовании шифрования сохраняйте ключи вместе с данными.", - "This is the final warning: Do you really want to enable encryption?" : "Это последнее предупреждение: Вы действительно желаете включить шифрование?", - "Enable encryption" : "Включить шифрование", - "No encryption module loaded, please enable an encryption module in the app menu." : "Модуль шифрования не загружен, пожалуйста включите модуль шифрования в меню приложений.", - "Select default encryption module:" : "Выберите модуль шифрования по умолчанию:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Вам необходимо произвести конвертацию ключей шифрования из старого формата (ownCloud <= 8.0) в новый. Пожалуйста включите \"Модуль шифрования по умолчанию\" и запустите команду 'occ encryption:migrate'.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Вам необходимо произвести конвертацию ключей шифрования из старого формата (ownCloud <= 8.0) в новый.", - "Start migration" : "Запустить миграцию", - "This is used for sending out notifications." : "Используется для отправки уведомлений.", - "Send mode" : "Способ отправки", - "Encryption" : "Шифрование", - "From address" : "Адрес отправителя", - "mail" : "почта", - "Authentication method" : "Метод проверки подлинности", - "Authentication required" : "Требуется аутентификация ", - "Server address" : "Адрес сервера", - "Port" : "Порт", - "Credentials" : "Учётные данные", - "SMTP Username" : "Пользователь SMTP", - "SMTP Password" : "Пароль SMTP", - "Store credentials" : "Сохранить учётные данные", - "Test email settings" : "Проверить настройки почты", - "Send email" : "Отправить email", - "Download logfile" : "Скачать журнал", - "More" : "Больше", - "Less" : "Меньше", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Лог-файл - больше 100 мб. Его скачивание может занять некоторое время!", - "What to log" : "Что записывать в журнал", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "В качестве базы данных используется SQLite. Для больших установок мы рекомендуем переключиться на другую серверную базу данных.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Особенно вызывает сомнение использование SQLite при синхронизации файлов с использование клиента для ПК.", - "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a>." : "Для миграции на другую базу данных используйте команду: 'occ db:convert-type' или обратитесь к a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">документации ↗</a>.", - "How to do backups" : "Как сделать резервные копии", - "Advanced monitoring" : "Расширенный мониторинг", - "Performance tuning" : "Настройка производительности", - "Improving the config.php" : "Улучшение config.php", - "Theming" : "Темы оформления", - "Hardening and security guidance" : "Руководство по безопасности и защите", - "Version" : "Версия", - "Developer documentation" : "Документация для разработчиков", - "Experimental applications ahead" : "Экспериментальные приложения", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Экспериментальные приложения не проверялись на наличие уязвимостей безопасности, они также могут быть нестабильны, т.к. находятся в активной разработке. Их установка может повлечь потерю информации или нарушение безопасности.", - "by %s" : "от %s", - "%s-licensed" : "Лицензия %s", - "Documentation:" : "Документация:", - "User documentation" : "Пользовательская документация", - "Admin documentation" : "Документация для администратора", - "Show description …" : "Показать описание ...", - "Hide description …" : "Скрыть описание ...", - "This app has an update available." : "Для этого приложения доступно обновление.", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Для этого приложения не указана минимальная версия ownClowd. Будет считаться ошибкой начиная с версии ownClowd 11.", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Для этого приложения не указана максимальная версия ownClowd. Будет считаться ошибкой начиная с версии ownClowd 11.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Приложение не может быть установлено, следующие зависимости не удовлетворены:", - "Enable only for specific groups" : "Включить только для этих групп", - "Uninstall App" : "Удалить приложение", - "Enable experimental apps" : "Включить экспериментальные приложения", - "SSL Root Certificates" : "Корневые сертификаты SSL", - "Common Name" : "Общее Имя", - "Valid until" : "Действительно до", - "Issued By" : "Выдан", - "Valid until %s" : "Действительно до %s", - "Import root certificate" : "Импорт корневого сертификата", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Здравствуйте,<br><br>просто хотим сообщить, что теперь у вас есть учетная запись на %s.<br><br>Ваше имя пользователя: %s<br>Зайти: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Удачи!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Здравствуйте,\n\nПросто хотим сообщить, что теперь у вас есть учетная запись на %s.\n\nИмя пользователя: %s\nЗайти: %s\n", - "Administrator documentation" : "Документация администратора", - "Online documentation" : "Online-документация", - "Forum" : "Форум", - "Issue tracker" : "трекер проблем", - "Commercial support" : "Коммерческая поддержка", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "Вы используете <strong>%s</strong> из <strong>%s</strong>", - "Profile picture" : "Аватар", - "Upload new" : "Загрузить новый", - "Select from Files" : "Выбрать из Файлов", - "Remove image" : "Удалить аватар", - "png or jpg, max. 20 MB" : "png или jpg, макс. 20 МБ", - "Picture provided by original account" : "Картинка из исходной учетной записи", - "Cancel" : "Отмена", - "Choose as profile picture" : "Выбрать в качестве картинки профиля", - "Full name" : "Полное имя", - "No display name set" : "Отображаемое имя не указано", - "Email" : "E-mail", - "Your email address" : "Ваш адрес электронной почты", - "For password recovery and notifications" : "Для восстановления пароля и уведомлений", - "No email address set" : "E-mail не указан", - "You are member of the following groups:" : "Вы являетесь членом следующих групп:", - "Password" : "Пароль", - "Unable to change your password" : "Невозможно сменить пароль", - "Current password" : "Текущий пароль", - "New password" : "Новый пароль", - "Change password" : "Сменить пароль", - "Language" : "Язык", - "Help translate" : "Помочь с переводом", - "Get the apps to sync your files" : "Получить приложения для синхронизации ваших файлов", - "Desktop client" : "Клиент для ПК", - "Android app" : "Android приложение", - "iOS app" : "iOS приложение", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Если Вы хотите поддержать проект\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">совместная разработка</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">сообщить</a>!", - "Show First Run Wizard again" : "Показать помощник настройки снова", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Разработано {communityopen}сообществом ownCloud{linkclose}, {githubopen}исходный код{linkclose} лицензируется в соответствии с{licenseopen}<abbr title=\"Публичной лицензией Affero General\">AGPL</abbr>{linkclose}.", - "Show storage location" : "Показать местонахождение хранилища", - "Show last log in" : "Показать последний вход в систему", - "Show user backend" : "Показать пользовательскую часть", - "Send email to new user" : "Отправлять сообщение на email новому пользователю", - "Show email address" : "Показывать адрес email", - "Username" : "Имя пользователя", - "E-Mail" : "E-Mail", - "Create" : "Создать", - "Admin Recovery Password" : "Восстановление пароля администратора", - "Enter the recovery password in order to recover the users files during password change" : "Введите пароль для того, чтобы восстановить файлы пользователей при смене пароля", - "Add Group" : "Добавить группу", - "Group" : "Группа", - "Everyone" : "Все", - "Admins" : "Администраторы", - "Default Quota" : "Квота по умолчанию", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Пожалуйста, введите квоту на хранилище (например: \"512 MB\" или \"12 GB\")", - "Other" : "Другая", - "Full Name" : "Полное имя", - "Group Admin for" : "Для группы Администраторов", - "Quota" : "Квота", - "Storage Location" : "Место хранилища", - "User Backend" : "Пользовательская часть", - "Last Login" : "Последний вход", - "change full name" : "изменить полное имя", - "set new password" : "установить новый пароль", - "change email address" : "изменить адрес email", - "Default" : "По умолчанию" -},"pluralForm" :"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);" -}
\ No newline at end of file diff --git a/settings/l10n/si_LK.js b/settings/l10n/si_LK.js deleted file mode 100644 index 4ae34d559f5..00000000000 --- a/settings/l10n/si_LK.js +++ /dev/null @@ -1,44 +0,0 @@ -OC.L10N.register( - "settings", - { - "Sharing" : "හුවමාරු කිරීම", - "External Storage" : "භාහිර ගබඩාව", - "Log" : "ලඝුව", - "Language changed" : "භාෂාව ාවනස් කිරීම", - "Invalid request" : "අවලංගු අයැදුමක්", - "Authentication error" : "සත්යාපන දෝෂයක්", - "Unable to add user to group %s" : "පරිශීලකයා %s කණ්ඩායමට එකතු කළ නොහැක", - "Unable to remove user from group %s" : "පරිශීලකයා %s කණ්ඩායමින් ඉවත් කළ නොහැක", - "Email saved" : "වි-තැපෑල සුරකින ලදී", - "All" : "සියල්ල", - "Disable" : "අක්රිය කරන්න", - "Enable" : "සක්රිය කරන්න", - "Delete" : "මකා දමන්න", - "Groups" : "කණ්ඩායම්", - "undo" : "නිෂ්ප්රභ කරන්න", - "never" : "කවදාවත්", - "None" : "කිසිවක් නැත", - "Login" : "ප්රවිශ්ටය", - "Allow resharing" : "යළි යළිත් හුවමාරුවට අවසර දෙමි", - "Encryption" : "ගුප්ත කේතනය", - "Server address" : "සේවාදායකයේ ලිපිනය", - "Port" : "තොට", - "More" : "වැඩි", - "Less" : "අඩු", - "Cancel" : "එපා", - "Email" : "විද්යුත් තැපෑල", - "Your email address" : "ඔබගේ විද්යුත් තැපෑල", - "Password" : "මුර පදය", - "Unable to change your password" : "මුර පදය වෙනස් කළ නොහැකි විය", - "Current password" : "වත්මන් මුරපදය", - "New password" : "නව මුරපදය", - "Change password" : "මුරපදය වෙනස් කිරීම", - "Language" : "භාෂාව", - "Help translate" : "පරිවර්ථන සහය", - "Username" : "පරිශීලක නම", - "Create" : "තනන්න", - "Default Quota" : "සාමාන්ය සලාකය", - "Other" : "වෙනත්", - "Quota" : "සලාකය" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/si_LK.json b/settings/l10n/si_LK.json deleted file mode 100644 index 06647a07688..00000000000 --- a/settings/l10n/si_LK.json +++ /dev/null @@ -1,42 +0,0 @@ -{ "translations": { - "Sharing" : "හුවමාරු කිරීම", - "External Storage" : "භාහිර ගබඩාව", - "Log" : "ලඝුව", - "Language changed" : "භාෂාව ාවනස් කිරීම", - "Invalid request" : "අවලංගු අයැදුමක්", - "Authentication error" : "සත්යාපන දෝෂයක්", - "Unable to add user to group %s" : "පරිශීලකයා %s කණ්ඩායමට එකතු කළ නොහැක", - "Unable to remove user from group %s" : "පරිශීලකයා %s කණ්ඩායමින් ඉවත් කළ නොහැක", - "Email saved" : "වි-තැපෑල සුරකින ලදී", - "All" : "සියල්ල", - "Disable" : "අක්රිය කරන්න", - "Enable" : "සක්රිය කරන්න", - "Delete" : "මකා දමන්න", - "Groups" : "කණ්ඩායම්", - "undo" : "නිෂ්ප්රභ කරන්න", - "never" : "කවදාවත්", - "None" : "කිසිවක් නැත", - "Login" : "ප්රවිශ්ටය", - "Allow resharing" : "යළි යළිත් හුවමාරුවට අවසර දෙමි", - "Encryption" : "ගුප්ත කේතනය", - "Server address" : "සේවාදායකයේ ලිපිනය", - "Port" : "තොට", - "More" : "වැඩි", - "Less" : "අඩු", - "Cancel" : "එපා", - "Email" : "විද්යුත් තැපෑල", - "Your email address" : "ඔබගේ විද්යුත් තැපෑල", - "Password" : "මුර පදය", - "Unable to change your password" : "මුර පදය වෙනස් කළ නොහැකි විය", - "Current password" : "වත්මන් මුරපදය", - "New password" : "නව මුරපදය", - "Change password" : "මුරපදය වෙනස් කිරීම", - "Language" : "භාෂාව", - "Help translate" : "පරිවර්ථන සහය", - "Username" : "පරිශීලක නම", - "Create" : "තනන්න", - "Default Quota" : "සාමාන්ය සලාකය", - "Other" : "වෙනත්", - "Quota" : "සලාකය" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/sk_SK.js b/settings/l10n/sk_SK.js deleted file mode 100644 index e2a380ee276..00000000000 --- a/settings/l10n/sk_SK.js +++ /dev/null @@ -1,251 +0,0 @@ -OC.L10N.register( - "settings", - { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Bezpečnosť a nastavenia upozornení", - "Sharing" : "Zdieľanie", - "Server-side encryption" : "Šifrovanie na serveri", - "External Storage" : "Externé úložisko", - "Cron" : "Cron", - "Email server" : "Email server", - "Log" : "Záznam", - "Tips & tricks" : "Tipy a triky", - "Updates" : "Aktualizácie", - "Couldn't remove app." : "Nemožno odstrániť aplikáciu.", - "Language changed" : "Jazyk zmenený", - "Invalid request" : "Neplatná požiadavka", - "Authentication error" : "Chyba autentifikácie", - "Admins can't remove themself from the admin group" : "Administrátori nesmú odstrániť sami seba zo skupiny admin", - "Unable to add user to group %s" : "Nie je možné pridať používateľa do skupiny %s", - "Unable to remove user from group %s" : "Nie je možné odstrániť používateľa zo skupiny %s", - "Couldn't update app." : "Nemožno aktualizovať aplikáciu.", - "Wrong password" : "Nesprávne heslo", - "No user supplied" : "Nebol uvedený používateľ", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Zadajte administrátorské heslo pre obnovu, inak budú všetky dáta stratené", - "Wrong admin recovery password. Please check the password and try again." : "Chybné administrátorské heslo pre obnovu. Skontrolujte správnosť hesla a skúste to znovu.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Backend nepodporuje zmenu hesla, ale šifrovací kľúč používateľa bol úspešne zmenený.", - "Unable to change password" : "Zmena hesla sa nepodarila", - "Enabled" : "Povolené", - "Not enabled" : "Zakázané", - "Federated Cloud Sharing" : "Združené cloudové zdieľanie", - "A problem occurred, please check your log files (Error: %s)" : "Nastala chyba, skontrolujte prosím váš log súbor (Chyba: %s)", - "Migration Completed" : "Migrácia ukončená", - "Group already exists." : "Skupina už existuje.", - "Unable to add group." : "Nie je možné pridať skupinu.", - "Unable to delete group." : "Nie je možné zmazať skupinu.", - "log-level out of allowed range" : "úroveň logovania z povoleného rozpätia", - "Saved" : "Uložené", - "test email settings" : "nastavenia testovacieho emailu", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Vyskytol sa problém pri odosielaní emailu. Prosím, znovu skontrolujte svoje nastavenia. (Chyba: %s)", - "Email sent" : "Email odoslaný", - "You need to set your user email before being able to send test emails." : "Musíte nastaviť svoj používateľský email, než budete môcť odoslať testovací email.", - "Invalid mail address" : "Neplatná emailová adresa", - "A user with that name already exists." : "Používateľ s týmto menom už existuje.", - "Unable to create user." : "Nie je možné vytvoriť používateľa.", - "Your %s account was created" : "Váš účet %s bol vytvorený", - "Unable to delete user." : "Nie je možné zmazať používateľa.", - "Forbidden" : "Zakázané", - "Invalid user" : "Neplatný používateľ", - "Unable to change mail address" : "Nemožno zmeniť emailovú adresu", - "Email saved" : "Email uložený", - "Your full name has been changed." : "Vaše meno a priezvisko bolo zmenené.", - "Unable to change full name" : "Nemožno zmeniť meno a priezvisko", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Ste si istí, že chcete pridať \"{domain}\" medzi dôveryhodné domény?", - "Add trusted domain" : "Pridať dôveryhodnú doménu", - "Migration in progress. Please wait until the migration is finished" : "Prebieha migrácia. Počkajte prosím, kým sa skončí", - "Migration started …" : "Migrácia spustená ...", - "Sending..." : "Odosielam...", - "Official" : "Oficiálny", - "Approved" : "Schválené", - "Experimental" : "Experimentálny", - "All" : "Všetky", - "No apps found for your version" : "Aplikácie pre vašu verziu sa nenašli", - "Update to %s" : "Aktualizovať na %s", - "Please wait...." : "Čakajte prosím...", - "Error while disabling app" : "Chyba pri zakázaní aplikácie", - "Disable" : "Zakázať", - "Enable" : "Zapnúť", - "Error while enabling app" : "Chyba pri povoľovaní aplikácie", - "Updating...." : "Aktualizujem...", - "Error while updating app" : "chyba pri aktualizácii aplikácie", - "Updated" : "Aktualizované", - "Uninstalling ...." : "Prebieha odinštalovanie...", - "Error while uninstalling app" : "Chyba pri odinštalovaní aplikácie", - "Uninstall" : "Odinštalácia", - "Valid until {date}" : "Platný do {date}", - "Delete" : "Zmazať", - "Select a profile picture" : "Vybrať avatara", - "Very weak password" : "Veľmi slabé heslo", - "Weak password" : "Slabé heslo", - "So-so password" : "Priemerné heslo", - "Good password" : "Dobré heslo", - "Strong password" : "Silné heslo", - "Groups" : "Skupiny", - "Unable to delete {objName}" : "Nemožno vymazať {objName}", - "A valid group name must be provided" : "Musíte zadať platný názov skupiny", - "deleted {groupName}" : "vymazaná {groupName}", - "undo" : "vrátiť", - "no group" : "nie je v skupine", - "never" : "nikdy", - "deleted {userName}" : "vymazané {userName}", - "add group" : "pridať skupinu", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Zmena hesla bude mať za následok stratu dát, pretože obnova dát nie je k dispozícii pre tohto používateľa", - "A valid username must be provided" : "Musíte zadať platné používateľské meno", - "A valid password must be provided" : "Musíte zadať platné heslo", - "A valid email must be provided" : "Musíte zadať platnú emailovú adresu", - "__language_name__" : "Slovensky", - "Unlimited" : "Nelimitované", - "Personal info" : "Osobné informácie", - "Sync clients" : "Klienti synchronizácie", - "Everything (fatal issues, errors, warnings, info, debug)" : "Všetko (fatálne problémy, chyby, upozornenia, info, debug)", - "Info, warnings, errors and fatal issues" : "Info, upozornenia, chyby a fatálne problémy", - "Warnings, errors and fatal issues" : "Upozornenia, chyby a fatálne problémy", - "Errors and fatal issues" : "Chyby a fatálne problémy", - "Fatal issues only" : "Len fatálne problémy", - "None" : "Žiadny", - "Login" : "Prihlásenie", - "Plain" : "Neformátovaný", - "NT LAN Manager" : "NT LAN Manager", - "SSL" : "SSL", - "TLS" : "TLS", - "The Read-Only config has been enabled. This prevents setting some configurations via the web-interface. Furthermore, the file needs to be made writable manually for every update." : "Konfigurácia je nastavená len na čítanie. Toto znemožňuje urobiť niektoré nastavenia prostredníctvom webového rozhrania. Okrem toho, súbor musí byť zapisovanie ručne povolené pre každú aktualizáciu.", - "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.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Server je spustený s Microsoft Windows. Pre optimálne používanie odporúčame Linux.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Chýba modul 'fileinfo'. Dôrazne doporučujeme ho povoliť pre dosiahnutie najlepších výsledkov zisťovania mime-typu.", - "System locale can not be set to a one which supports UTF-8." : "Nie je možné nastaviť znakovú sadu, ktorá podporuje UTF-8.", - "This means that there might be problems with certain characters in file names." : "To znamená, že sa môžu vyskytnúť problémy s niektorými znakmi v názvoch súborov.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Dôrazne doporučujeme nainštalovať na váš systém požadované balíčky podporujúce jednu z nasledovných znakových sád: %s.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Inštalácia mimo koreňový priečinok domény a používanie systémového príkazu cron môže spôsobiť problém s generovaním správnej URL. Pre zabránenie týmto chybám nastavte prosím správnu cestu v svojom config.php súbore pre hodnotu \"overwrite.cli.url\" (Doporučujeme: \"%s\")", - "Open documentation" : "Otvoriť dokumentáciu", - "Allow apps to use the Share API" : "Povoliť aplikáciám používať API na zdieľanie", - "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 to other users" : "Povoliť používateľom zasielať emailom oznámenie o zdieľaní súborov ostatným používateľom", - "Exclude groups from sharing" : "Vybrať skupiny zo zdieľania", - "These groups will still be able to receive shares, but not to initiate them." : "Tieto skupiny budú môcť stále zdieľať, ale sami nemôžu zdieľať ostatným.", - "Last cron job execution: %s." : "Posledný cron prebehol: %s.", - "Last cron job execution: %s. Something seems wrong." : "Posledný cron prebehol: %s. Zdá sa, že niečo nie je vporiadku.", - "Cron was not executed yet!" : "Cron sa ešte nespustil!", - "Execute one task with each page loaded" : "Vykonať jednu úlohu s každým načítaní stránky", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php je zaregistrovaná v službe WebCron a zavolá cron.php každých 15 minút cez http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Použiť systémovú službu cron na spúšťanie súboru cron.php každých 15 minút.", - "Enable server-side encryption" : "Povoliť šifrovanie na serveri", - "Enable encryption" : "Povoliť šifrovanie", - "Select default encryption module:" : "Vybrať predvolený šifrovací modul:", - "Start migration" : "Začať migráciu", - "This is used for sending out notifications." : "Používa sa na odosielanie upozornení.", - "Send mode" : "Mód odosielania", - "Encryption" : "Šifrovanie", - "From address" : "Z adresy", - "mail" : "email", - "Authentication method" : "Autentifikačná metóda", - "Authentication required" : "Vyžaduje sa overenie", - "Server address" : "Adresa servera", - "Port" : "Port", - "Credentials" : "Prihlasovanie údaje", - "SMTP Username" : "SMTP používateľské meno", - "SMTP Password" : "SMTP heslo", - "Store credentials" : "Ukladať prihlasovacie údaje", - "Test email settings" : "Nastavenia testovacieho emailu", - "Send email" : "Odoslať email", - "Download logfile" : "Stiahnuť súbor logu", - "More" : "Viac", - "Less" : "Menej", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Súbor protokolu je väčší ako 100 MB. Jeho sťahovanie môže chvíľu trvať!", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "Ako databáza je použitá SQLite. Pre veľké inštalácie odporúčame prejsť na inú databázu.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Najmä pri používaní aplikácie na synchronizáciu s desktopom nie je databáza SQLite doporučená.", - "How to do backups" : "Ako vytvárať zálohy", - "Advanced monitoring" : "Pokročilé sledovanie", - "Performance tuning" : "Ladenie výkonu", - "Improving the config.php" : "Zlepšenie config.php", - "Theming" : "Vzhľady tém", - "Hardening and security guidance" : "Sprievodca vylepšením bezpečnosti", - "Version" : "Verzia", - "Developer documentation" : "Dokumentácia vývojára", - "Experimental applications ahead" : "Experimentálna aplikácia v poradí", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Experimentálne aplikácie nie sú preverované na bezpečnostné chyby, môžu byť nestabilné a veľmi sa meniť. Ich inštaláciou môžete spôsobiť stratu dát alebo bezpečnostné problémy.", - "Documentation:" : "Dokumentácia:", - "User documentation" : "Príručka používateľa", - "Admin documentation" : "Príručka administrátora", - "Show description …" : "Zobraziť popis …", - "Hide description …" : "Skryť popis …", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Túto aplikáciu nemožno nainštalovať, pretože nie sú splnené nasledovné závislosti:", - "Enable only for specific groups" : "Povoliť len pre vybrané skupiny", - "Uninstall App" : "Odinštalovanie aplikácie", - "Enable experimental apps" : "Povoliť experimentálne aplikácie", - "Common Name" : "Bežný názov", - "Valid until" : "Platný do", - "Issued By" : "Vydal", - "Valid until %s" : "Platný do %s", - "Import root certificate" : "Importovať koreňový certifikát", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Dobrý deň,<br><br>toto je oznámenie o novo vytvorenom účte %s.<br><br>Vaše používateľské meno: %s<br>Prihlásiť sa môžete tu: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Pekný deň!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Ahoj,\n\ntoto je oznámenie o novo vytvorenom účte %s.\n\nVaše používateľské meno: %s\nPrihlásiť sa môžete tu: %s\n\n", - "Administrator documentation" : "Príručka administrátora", - "Online documentation" : "Online príručka", - "Forum" : "Fórum", - "Issue tracker" : "Zoznam chýb", - "Commercial support" : "Komerčná podpora", - "Profile picture" : "Avatar", - "Upload new" : "Nahrať nový", - "Remove image" : "Zmazať obrázok", - "Cancel" : "Zrušiť", - "Full name" : "Meno a priezvisko", - "No display name set" : "Zobrazované meno nie je nastavené", - "Email" : "Email", - "Your email address" : "Vaša emailová adresa", - "No email address set" : "Emailová adresa nie je nastavená", - "You are member of the following groups:" : "Ste členom nasledovných skupín:", - "Password" : "Heslo", - "Unable to change your password" : "Nie je možné zmeniť vaše heslo", - "Current password" : "Aktuálne heslo", - "New password" : "Nové heslo", - "Change password" : "Zmeniť heslo", - "Language" : "Jazyk", - "Help translate" : "Pomôcť s prekladom", - "Get the apps to sync your files" : "Získať aplikácie na synchronizáciu vašich súborov", - "Desktop client" : "Desktopový klient", - "Android app" : "Android aplikácia", - "iOS app" : "iOS aplikácia", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Ak chcete projekt podporiť,\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">zapojte sa do vývoja</a>\n\t\talebo\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">ho propagujte</a>!", - "Show First Run Wizard again" : "Znovu zobraziť sprievodcu prvým spustením", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Vyvinula {communityopen}komunita ownCloud{linkclose}. {githubopen}Zdrojový kód{linkclose} je dostupný za podmienok licencie {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}.", - "Show storage location" : "Zobraziť umiestnenie úložiska", - "Show last log in" : "Zobraziť posledné prihlásenie", - "Show user backend" : "Zobraziť backend používateľa", - "Send email to new user" : "Odoslať email novému používateľovi", - "Show email address" : "Zobraziť emailovú adresu", - "Username" : "Používateľské meno", - "E-Mail" : "email", - "Create" : "Vytvoriť", - "Admin Recovery Password" : "Obnovenie hesla administrátora", - "Enter the recovery password in order to recover the users files during password change" : "Zadajte heslo pre obnovenie súborov používateľa pri zmene hesla", - "Add Group" : "Pridať skupinu", - "Group" : "Skupina", - "Everyone" : "Všetci", - "Admins" : "Administrátori", - "Default Quota" : "Predvolená kvóta", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Prosím zadajte kvótu úložného priestoru (napr.: \"512 MB\" alebo \"12 GB\")", - "Other" : "Iné", - "Full Name" : "Meno a priezvisko", - "Group Admin for" : "Administrátor skupiny", - "Quota" : "Kvóta", - "Storage Location" : "Umiestnenie úložiska", - "User Backend" : "Backend používateľa", - "Last Login" : "Posledné prihlásenie", - "change full name" : "zmeniť meno a priezvisko", - "set new password" : "nastaviť nové heslo", - "change email address" : "zmeniť emailovú adresu", - "Default" : "Predvolené" -}, -"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"); diff --git a/settings/l10n/sk_SK.json b/settings/l10n/sk_SK.json deleted file mode 100644 index d06eda9e946..00000000000 --- a/settings/l10n/sk_SK.json +++ /dev/null @@ -1,249 +0,0 @@ -{ "translations": { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Bezpečnosť a nastavenia upozornení", - "Sharing" : "Zdieľanie", - "Server-side encryption" : "Šifrovanie na serveri", - "External Storage" : "Externé úložisko", - "Cron" : "Cron", - "Email server" : "Email server", - "Log" : "Záznam", - "Tips & tricks" : "Tipy a triky", - "Updates" : "Aktualizácie", - "Couldn't remove app." : "Nemožno odstrániť aplikáciu.", - "Language changed" : "Jazyk zmenený", - "Invalid request" : "Neplatná požiadavka", - "Authentication error" : "Chyba autentifikácie", - "Admins can't remove themself from the admin group" : "Administrátori nesmú odstrániť sami seba zo skupiny admin", - "Unable to add user to group %s" : "Nie je možné pridať používateľa do skupiny %s", - "Unable to remove user from group %s" : "Nie je možné odstrániť používateľa zo skupiny %s", - "Couldn't update app." : "Nemožno aktualizovať aplikáciu.", - "Wrong password" : "Nesprávne heslo", - "No user supplied" : "Nebol uvedený používateľ", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Zadajte administrátorské heslo pre obnovu, inak budú všetky dáta stratené", - "Wrong admin recovery password. Please check the password and try again." : "Chybné administrátorské heslo pre obnovu. Skontrolujte správnosť hesla a skúste to znovu.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Backend nepodporuje zmenu hesla, ale šifrovací kľúč používateľa bol úspešne zmenený.", - "Unable to change password" : "Zmena hesla sa nepodarila", - "Enabled" : "Povolené", - "Not enabled" : "Zakázané", - "Federated Cloud Sharing" : "Združené cloudové zdieľanie", - "A problem occurred, please check your log files (Error: %s)" : "Nastala chyba, skontrolujte prosím váš log súbor (Chyba: %s)", - "Migration Completed" : "Migrácia ukončená", - "Group already exists." : "Skupina už existuje.", - "Unable to add group." : "Nie je možné pridať skupinu.", - "Unable to delete group." : "Nie je možné zmazať skupinu.", - "log-level out of allowed range" : "úroveň logovania z povoleného rozpätia", - "Saved" : "Uložené", - "test email settings" : "nastavenia testovacieho emailu", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Vyskytol sa problém pri odosielaní emailu. Prosím, znovu skontrolujte svoje nastavenia. (Chyba: %s)", - "Email sent" : "Email odoslaný", - "You need to set your user email before being able to send test emails." : "Musíte nastaviť svoj používateľský email, než budete môcť odoslať testovací email.", - "Invalid mail address" : "Neplatná emailová adresa", - "A user with that name already exists." : "Používateľ s týmto menom už existuje.", - "Unable to create user." : "Nie je možné vytvoriť používateľa.", - "Your %s account was created" : "Váš účet %s bol vytvorený", - "Unable to delete user." : "Nie je možné zmazať používateľa.", - "Forbidden" : "Zakázané", - "Invalid user" : "Neplatný používateľ", - "Unable to change mail address" : "Nemožno zmeniť emailovú adresu", - "Email saved" : "Email uložený", - "Your full name has been changed." : "Vaše meno a priezvisko bolo zmenené.", - "Unable to change full name" : "Nemožno zmeniť meno a priezvisko", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Ste si istí, že chcete pridať \"{domain}\" medzi dôveryhodné domény?", - "Add trusted domain" : "Pridať dôveryhodnú doménu", - "Migration in progress. Please wait until the migration is finished" : "Prebieha migrácia. Počkajte prosím, kým sa skončí", - "Migration started …" : "Migrácia spustená ...", - "Sending..." : "Odosielam...", - "Official" : "Oficiálny", - "Approved" : "Schválené", - "Experimental" : "Experimentálny", - "All" : "Všetky", - "No apps found for your version" : "Aplikácie pre vašu verziu sa nenašli", - "Update to %s" : "Aktualizovať na %s", - "Please wait...." : "Čakajte prosím...", - "Error while disabling app" : "Chyba pri zakázaní aplikácie", - "Disable" : "Zakázať", - "Enable" : "Zapnúť", - "Error while enabling app" : "Chyba pri povoľovaní aplikácie", - "Updating...." : "Aktualizujem...", - "Error while updating app" : "chyba pri aktualizácii aplikácie", - "Updated" : "Aktualizované", - "Uninstalling ...." : "Prebieha odinštalovanie...", - "Error while uninstalling app" : "Chyba pri odinštalovaní aplikácie", - "Uninstall" : "Odinštalácia", - "Valid until {date}" : "Platný do {date}", - "Delete" : "Zmazať", - "Select a profile picture" : "Vybrať avatara", - "Very weak password" : "Veľmi slabé heslo", - "Weak password" : "Slabé heslo", - "So-so password" : "Priemerné heslo", - "Good password" : "Dobré heslo", - "Strong password" : "Silné heslo", - "Groups" : "Skupiny", - "Unable to delete {objName}" : "Nemožno vymazať {objName}", - "A valid group name must be provided" : "Musíte zadať platný názov skupiny", - "deleted {groupName}" : "vymazaná {groupName}", - "undo" : "vrátiť", - "no group" : "nie je v skupine", - "never" : "nikdy", - "deleted {userName}" : "vymazané {userName}", - "add group" : "pridať skupinu", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Zmena hesla bude mať za následok stratu dát, pretože obnova dát nie je k dispozícii pre tohto používateľa", - "A valid username must be provided" : "Musíte zadať platné používateľské meno", - "A valid password must be provided" : "Musíte zadať platné heslo", - "A valid email must be provided" : "Musíte zadať platnú emailovú adresu", - "__language_name__" : "Slovensky", - "Unlimited" : "Nelimitované", - "Personal info" : "Osobné informácie", - "Sync clients" : "Klienti synchronizácie", - "Everything (fatal issues, errors, warnings, info, debug)" : "Všetko (fatálne problémy, chyby, upozornenia, info, debug)", - "Info, warnings, errors and fatal issues" : "Info, upozornenia, chyby a fatálne problémy", - "Warnings, errors and fatal issues" : "Upozornenia, chyby a fatálne problémy", - "Errors and fatal issues" : "Chyby a fatálne problémy", - "Fatal issues only" : "Len fatálne problémy", - "None" : "Žiadny", - "Login" : "Prihlásenie", - "Plain" : "Neformátovaný", - "NT LAN Manager" : "NT LAN Manager", - "SSL" : "SSL", - "TLS" : "TLS", - "The Read-Only config has been enabled. This prevents setting some configurations via the web-interface. Furthermore, the file needs to be made writable manually for every update." : "Konfigurácia je nastavená len na čítanie. Toto znemožňuje urobiť niektoré nastavenia prostredníctvom webového rozhrania. Okrem toho, súbor musí byť zapisovanie ručne povolené pre každú aktualizáciu.", - "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.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Server je spustený s Microsoft Windows. Pre optimálne používanie odporúčame Linux.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Chýba modul 'fileinfo'. Dôrazne doporučujeme ho povoliť pre dosiahnutie najlepších výsledkov zisťovania mime-typu.", - "System locale can not be set to a one which supports UTF-8." : "Nie je možné nastaviť znakovú sadu, ktorá podporuje UTF-8.", - "This means that there might be problems with certain characters in file names." : "To znamená, že sa môžu vyskytnúť problémy s niektorými znakmi v názvoch súborov.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Dôrazne doporučujeme nainštalovať na váš systém požadované balíčky podporujúce jednu z nasledovných znakových sád: %s.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Inštalácia mimo koreňový priečinok domény a používanie systémového príkazu cron môže spôsobiť problém s generovaním správnej URL. Pre zabránenie týmto chybám nastavte prosím správnu cestu v svojom config.php súbore pre hodnotu \"overwrite.cli.url\" (Doporučujeme: \"%s\")", - "Open documentation" : "Otvoriť dokumentáciu", - "Allow apps to use the Share API" : "Povoliť aplikáciám používať API na zdieľanie", - "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 to other users" : "Povoliť používateľom zasielať emailom oznámenie o zdieľaní súborov ostatným používateľom", - "Exclude groups from sharing" : "Vybrať skupiny zo zdieľania", - "These groups will still be able to receive shares, but not to initiate them." : "Tieto skupiny budú môcť stále zdieľať, ale sami nemôžu zdieľať ostatným.", - "Last cron job execution: %s." : "Posledný cron prebehol: %s.", - "Last cron job execution: %s. Something seems wrong." : "Posledný cron prebehol: %s. Zdá sa, že niečo nie je vporiadku.", - "Cron was not executed yet!" : "Cron sa ešte nespustil!", - "Execute one task with each page loaded" : "Vykonať jednu úlohu s každým načítaní stránky", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php je zaregistrovaná v službe WebCron a zavolá cron.php každých 15 minút cez http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Použiť systémovú službu cron na spúšťanie súboru cron.php každých 15 minút.", - "Enable server-side encryption" : "Povoliť šifrovanie na serveri", - "Enable encryption" : "Povoliť šifrovanie", - "Select default encryption module:" : "Vybrať predvolený šifrovací modul:", - "Start migration" : "Začať migráciu", - "This is used for sending out notifications." : "Používa sa na odosielanie upozornení.", - "Send mode" : "Mód odosielania", - "Encryption" : "Šifrovanie", - "From address" : "Z adresy", - "mail" : "email", - "Authentication method" : "Autentifikačná metóda", - "Authentication required" : "Vyžaduje sa overenie", - "Server address" : "Adresa servera", - "Port" : "Port", - "Credentials" : "Prihlasovanie údaje", - "SMTP Username" : "SMTP používateľské meno", - "SMTP Password" : "SMTP heslo", - "Store credentials" : "Ukladať prihlasovacie údaje", - "Test email settings" : "Nastavenia testovacieho emailu", - "Send email" : "Odoslať email", - "Download logfile" : "Stiahnuť súbor logu", - "More" : "Viac", - "Less" : "Menej", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Súbor protokolu je väčší ako 100 MB. Jeho sťahovanie môže chvíľu trvať!", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "Ako databáza je použitá SQLite. Pre veľké inštalácie odporúčame prejsť na inú databázu.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Najmä pri používaní aplikácie na synchronizáciu s desktopom nie je databáza SQLite doporučená.", - "How to do backups" : "Ako vytvárať zálohy", - "Advanced monitoring" : "Pokročilé sledovanie", - "Performance tuning" : "Ladenie výkonu", - "Improving the config.php" : "Zlepšenie config.php", - "Theming" : "Vzhľady tém", - "Hardening and security guidance" : "Sprievodca vylepšením bezpečnosti", - "Version" : "Verzia", - "Developer documentation" : "Dokumentácia vývojára", - "Experimental applications ahead" : "Experimentálna aplikácia v poradí", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Experimentálne aplikácie nie sú preverované na bezpečnostné chyby, môžu byť nestabilné a veľmi sa meniť. Ich inštaláciou môžete spôsobiť stratu dát alebo bezpečnostné problémy.", - "Documentation:" : "Dokumentácia:", - "User documentation" : "Príručka používateľa", - "Admin documentation" : "Príručka administrátora", - "Show description …" : "Zobraziť popis …", - "Hide description …" : "Skryť popis …", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Túto aplikáciu nemožno nainštalovať, pretože nie sú splnené nasledovné závislosti:", - "Enable only for specific groups" : "Povoliť len pre vybrané skupiny", - "Uninstall App" : "Odinštalovanie aplikácie", - "Enable experimental apps" : "Povoliť experimentálne aplikácie", - "Common Name" : "Bežný názov", - "Valid until" : "Platný do", - "Issued By" : "Vydal", - "Valid until %s" : "Platný do %s", - "Import root certificate" : "Importovať koreňový certifikát", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Dobrý deň,<br><br>toto je oznámenie o novo vytvorenom účte %s.<br><br>Vaše používateľské meno: %s<br>Prihlásiť sa môžete tu: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Pekný deň!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Ahoj,\n\ntoto je oznámenie o novo vytvorenom účte %s.\n\nVaše používateľské meno: %s\nPrihlásiť sa môžete tu: %s\n\n", - "Administrator documentation" : "Príručka administrátora", - "Online documentation" : "Online príručka", - "Forum" : "Fórum", - "Issue tracker" : "Zoznam chýb", - "Commercial support" : "Komerčná podpora", - "Profile picture" : "Avatar", - "Upload new" : "Nahrať nový", - "Remove image" : "Zmazať obrázok", - "Cancel" : "Zrušiť", - "Full name" : "Meno a priezvisko", - "No display name set" : "Zobrazované meno nie je nastavené", - "Email" : "Email", - "Your email address" : "Vaša emailová adresa", - "No email address set" : "Emailová adresa nie je nastavená", - "You are member of the following groups:" : "Ste členom nasledovných skupín:", - "Password" : "Heslo", - "Unable to change your password" : "Nie je možné zmeniť vaše heslo", - "Current password" : "Aktuálne heslo", - "New password" : "Nové heslo", - "Change password" : "Zmeniť heslo", - "Language" : "Jazyk", - "Help translate" : "Pomôcť s prekladom", - "Get the apps to sync your files" : "Získať aplikácie na synchronizáciu vašich súborov", - "Desktop client" : "Desktopový klient", - "Android app" : "Android aplikácia", - "iOS app" : "iOS aplikácia", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Ak chcete projekt podporiť,\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">zapojte sa do vývoja</a>\n\t\talebo\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">ho propagujte</a>!", - "Show First Run Wizard again" : "Znovu zobraziť sprievodcu prvým spustením", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Vyvinula {communityopen}komunita ownCloud{linkclose}. {githubopen}Zdrojový kód{linkclose} je dostupný za podmienok licencie {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}.", - "Show storage location" : "Zobraziť umiestnenie úložiska", - "Show last log in" : "Zobraziť posledné prihlásenie", - "Show user backend" : "Zobraziť backend používateľa", - "Send email to new user" : "Odoslať email novému používateľovi", - "Show email address" : "Zobraziť emailovú adresu", - "Username" : "Používateľské meno", - "E-Mail" : "email", - "Create" : "Vytvoriť", - "Admin Recovery Password" : "Obnovenie hesla administrátora", - "Enter the recovery password in order to recover the users files during password change" : "Zadajte heslo pre obnovenie súborov používateľa pri zmene hesla", - "Add Group" : "Pridať skupinu", - "Group" : "Skupina", - "Everyone" : "Všetci", - "Admins" : "Administrátori", - "Default Quota" : "Predvolená kvóta", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Prosím zadajte kvótu úložného priestoru (napr.: \"512 MB\" alebo \"12 GB\")", - "Other" : "Iné", - "Full Name" : "Meno a priezvisko", - "Group Admin for" : "Administrátor skupiny", - "Quota" : "Kvóta", - "Storage Location" : "Umiestnenie úložiska", - "User Backend" : "Backend používateľa", - "Last Login" : "Posledné prihlásenie", - "change full name" : "zmeniť meno a priezvisko", - "set new password" : "nastaviť nové heslo", - "change email address" : "zmeniť emailovú adresu", - "Default" : "Predvolené" -},"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;" -}
\ No newline at end of file diff --git a/settings/l10n/sl.js b/settings/l10n/sl.js deleted file mode 100644 index 3f41d38d7fc..00000000000 --- a/settings/l10n/sl.js +++ /dev/null @@ -1,262 +0,0 @@ -OC.L10N.register( - "settings", - { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Varnost in namestitvena opozorila", - "Sharing" : "Souporaba", - "Server-side encryption" : "Šifriranje na strežniku", - "External Storage" : "Zunanja podatkovna shramba", - "Cron" : "Periodično opravilo", - "Email server" : "Poštni strežnik", - "Log" : "Dnevnik", - "Tips & tricks" : "Nasveti in triki", - "Updates" : "Posodobitve", - "Couldn't remove app." : "Ni mogoče odstraniti programa.", - "Language changed" : "Jezik je spremenjen", - "Invalid request" : "Neveljavna zahteva", - "Authentication error" : "Napaka med overjanjem", - "Admins can't remove themself from the admin group" : "Skrbnikov ni mogoče odstraniti iz skupine skrbnikov (admin)", - "Unable to add user to group %s" : "Uporabnika ni mogoče dodati k skupini %s", - "Unable to remove user from group %s" : "Uporabnika ni mogoče odstraniti iz skupine %s", - "Couldn't update app." : "Programa ni mogoče posodobiti.", - "Wrong password" : "Napačno geslo", - "No user supplied" : "Ni navedenega uporabnika", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Podati je treba skrbniško obnovitveno geslo, sicer bodo vsi uporabniški podatki izgubljeni.", - "Wrong admin recovery password. Please check the password and try again." : "Napačno navedeno skrbniško obnovitveno geslo. Preverite geslo in poskusite znova.", - "Unable to change password" : "Ni mogoče spremeniti gesla", - "Enabled" : "Omogočeno", - "Not enabled" : "Ni omogočeno", - "installing and updating apps via the app store or Federated Cloud Sharing" : "nameščanje in posodabljanje programov prek programske zbirke ali zveznega oblaka", - "Federated Cloud Sharing" : "Souporaba zveznega oblaka", - "A problem occurred, please check your log files (Error: %s)" : "Prišlo je do napake. Preverite dnevniške zapise (napaka: %s).", - "Migration Completed" : "Selitev je končana", - "Group already exists." : "Skupina že obstaja.", - "Unable to add group." : "Ni mogoče dodati skupine", - "Unable to delete group." : "Ni mogoče izbrisati skupine.", - "log-level out of allowed range" : "stopnja zapisovanja je izven dovoljenega območja", - "Saved" : "Shranjeno", - "test email settings" : "preizkusi nastavitve elektronske pošte", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Med pošiljanjem sporočila se je prišlo do napake. Preverite nastavitve (napaka: %s).", - "Email sent" : "Elektronska pošta je poslana", - "You need to set your user email before being able to send test emails." : "Pred preizkusnim pošiljanjem sporočil je treba nastaviti elektronski naslov uporabnika.", - "Invalid mail address" : "Neveljaven elektronski naslov", - "A user with that name already exists." : "Uporabnik s tem imenom že obstaja.", - "Unable to create user." : "Ni mogoče ustvariti uporabnika.", - "Your %s account was created" : "Račun %s je uspešno ustvarjen.", - "Unable to delete user." : "Ni mogoče izbrisati uporabnika", - "Forbidden" : "Dostop je prepovedan", - "Invalid user" : "Neveljavni podatki uporabnika", - "Unable to change mail address" : "Ni mogoče spremeniti naslova elektronske pošte.", - "Email saved" : "Elektronski naslov je shranjen", - "Your full name has been changed." : "Vaše polno ime je spremenjeno.", - "Unable to change full name" : "Ni mogoče spremeniti polnega imena", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Ali ste prepričani, da želite dodati \"{domain}\" kot varno domeno?", - "Add trusted domain" : "Dodaj varno domeno", - "Migration in progress. Please wait until the migration is finished" : "V teku je selitev. Počakajte, da se zaključi.", - "Migration started …" : "Selitev je začeta ...", - "Sending..." : "Poteka pošiljanje ...", - "Official" : "Uradno", - "Approved" : "Odobreno", - "Experimental" : "Preizkusno", - "All" : "Vsi", - "No apps found for your version" : "Za to različico ni na voljo noben vstavek", - "Update to %s" : "Posodobi na %s", - "_You have %n app update pending_::_You have %n app updates pending_" : ["Na čakanju je %n posodobitev","Na čakanju sta %n posodobitvi","Na čakanju so %n posodobitve","Na čakanju je %n posodobitev"], - "Please wait...." : "Počakajte ...", - "Error while disabling app" : "Napaka onemogočanja programa", - "Disable" : "Onemogoči", - "Enable" : "Omogoči", - "Error while enabling app" : "Napaka omogočanja programa", - "Error: could not disable broken app" : "Napaka: ni mogoče onemogočiti okvarjenega programa", - "Error while disabling broken app" : "Napaka onemogočanja okvarjenega programa", - "Updating...." : "Poteka posodabljanje ...", - "Error while updating app" : "Prišlo je do napake med posodabljanjem programa.", - "Updated" : "Posodobljeno", - "Uninstalling ...." : "Odstranjevanje namestitve ...", - "Error while uninstalling app" : "Prišlo je do napake med odstranjevanjem programa.", - "Uninstall" : "Odstrani namestitev", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Vstavek je omogočen, vendar zahteva posodobitev. Samodejno bo izvedena preusmeritev na stran za posodobitev v 5 sekundah.", - "App update" : "Posodabljanje vstavkov", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Prišlo je do napake. Uvoziti je treba ustrezno ASCII kodirano potrdilo PEM.", - "Valid until {date}" : "Veljavno do {date}", - "Delete" : "Izbriši", - "An error occurred: {message}" : "Prišlo je do napake: {message}", - "Select a profile picture" : "Izbor slike profila", - "Very weak password" : "Zelo šibko geslo", - "Weak password" : "Šibko geslo", - "So-so password" : "Slabo geslo", - "Good password" : "Dobro geslo", - "Strong password" : "Odlično geslo", - "Groups" : "Skupine", - "Unable to delete {objName}" : "Ni mogoče izbrisati {objName}", - "Error creating group: {message}" : "Napaka ustvarjanja skupine: {message}", - "A valid group name must be provided" : "Navedeno mora biti veljavno ime skupine", - "deleted {groupName}" : "izbrisano {groupName}", - "undo" : "razveljavi", - "no group" : "ni skupine", - "never" : "nikoli", - "deleted {userName}" : "izbrisano {userName}", - "add group" : "dodaj skupino", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Sprememba gesla bo povzročila izgubo podatkov, ker obnova podatkov za tega uporabnika ni na voljo.", - "A valid username must be provided" : "Navedeno mora biti veljavno uporabniško ime", - "Error creating user: {message}" : "Napaka ustvarjanja uporabnika: {message}", - "A valid password must be provided" : "Navedeno mora biti veljavno geslo", - "A valid email must be provided" : "Naveden mora biti veljaven naslov elektronske pošte.", - "__language_name__" : "Slovenščina", - "Unlimited" : "Neomejeno", - "Personal info" : "Osebni podatki", - "Sync clients" : "Uskladi odjemalce", - "Everything (fatal issues, errors, warnings, info, debug)" : "Vse (podrobnosti, opozorila, hrošče, napake in usodne dogodke)", - "Info, warnings, errors and fatal issues" : "Podrobnosti, opozorila, napake in usodne dogodke", - "Warnings, errors and fatal issues" : "Opozorila, napake in usodne dogodke", - "Errors and fatal issues" : "Napake in usodne dogodke", - "Fatal issues only" : "Le usodne dogodke", - "None" : "Brez", - "Login" : "Prijava", - "Plain" : "Besedilno", - "NT LAN Manager" : "Upravljalnik NT LAN", - "SSL" : "SSL", - "TLS" : "TLS", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Strežnik ownCloud je nameščen v okolju Microsoft Windows. Toplo priporočamo okolje Linux za najboljšo uporabniško izkušnjo.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Manjka modul PHP 'fileinfo'. Priporočljivo je omogočiti ta modul za popolno zaznavanje vrst MIME.", - "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.", - "All checks passed." : "Vsa preverjanja so uspešno zaključena.", - "Open documentation" : "Odprta dokumentacija", - "Allow apps to use the Share API" : "Dovoli programom uporabo vmesnika API souporabe", - "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 to other users" : "Dovoli uporabnikom pošiljanje obvestil o souporabi datotek z drugimi uporabniki.", - "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", - "Cron was not executed yet!" : "Periodično opravilo cron še ni zagnano!", - "Execute one task with each page loaded" : "Izvedi eno nalogo z vsako naloženo stranjo.", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "Datoteka cron.php je vpisana za periodično opravilo webcron za potrditev sklica vsakih 15 minut pri povezavi preko HTTP.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Uporabi storitev periodičnih opravil za klic datoteke cron.php vsakih 15 minut.", - "Enable server-side encryption" : "Omogoči šifriranje na strežniku", - "Please read carefully before activating server-side encryption: " : "Pozorno preberite opombe, preden omogočite strežniško šifriranje:", - "Enable encryption" : "Omogoči šifriranje", - "Select default encryption module:" : "Izbor privzetega modula za šifriranje:", - "Start migration" : "Začni selitev", - "This is used for sending out notifications." : "Možnost je uporabljena za omogočanje pošiljanja obvestil.", - "Send mode" : "Način pošiljanja", - "Encryption" : "Šifriranje", - "From address" : "Naslov pošiljatelja", - "mail" : "pošta", - "Authentication method" : "Način overitve", - "Authentication required" : "Zahtevana je overitev", - "Server address" : "Naslov strežnika", - "Port" : "Vrata", - "Credentials" : "Poverila", - "SMTP Username" : "Uporabniško ime SMTP", - "SMTP Password" : "Geslo SMTP", - "Store credentials" : "Shrani poverila", - "Test email settings" : "Preizkus nastavitev elektronske pošte", - "Send email" : "Pošlji elektronsko sporočilo", - "Download logfile" : "Prejmi dnevniško datoteko", - "More" : "Več", - "Less" : "Manj", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Dnevniškega datoteka je večja od 100 MB. Hitrost prejema je odvisna od širokopasovne povezave!", - "What to log" : "Kaj naj se beleži?", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "Uporabljena zbirka je SQLite. Za obsežnejše sisteme je priporočljiv prehod na drugo vrsto zbirke.", - "How to do backups" : "Kako ustvariti varnostne kopije", - "Advanced monitoring" : "Napredno sledenje", - "Performance tuning" : "Prilagajanje delovanja", - "Improving the config.php" : "Izboljšave v config.php", - "Theming" : "Teme", - "Hardening and security guidance" : "Varnost in varnostni napotki", - "Version" : "Različica", - "Developer documentation" : "Dokumentacija za razvijalce", - "Experimental applications ahead" : "Preizkusni programi", - "%s-licensed" : "dovoljenje-%s", - "Documentation:" : "Dokumentacija:", - "User documentation" : "Uporabniška dokumentacija", - "Admin documentation" : "Skrbniška dokumentacija", - "Show description …" : "Pokaži opis ...", - "Hide description …" : "Skrij opis ...", - "This app has an update available." : "Za program so na voljo posodobitve.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Programa ni mogoče namestiti zaradi nerešenih odvisnosti:", - "Enable only for specific groups" : "Omogoči le za posamezne skupine", - "Uninstall App" : "Odstrani program", - "Enable experimental apps" : "Omogoči preizkusne programe", - "SSL Root Certificates" : "Korenska potrdila SSL", - "Common Name" : "Splošno ime", - "Valid until" : "Veljavno do", - "Issued By" : "Izdajatelj", - "Valid until %s" : "Veljavno do %s", - "Import root certificate" : "Uvozi korensko potrdilo", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Pozdravljeni,<br><br>obveščamo vas, da je račun %s pripravljen.<br><br>Uporabniško ime: %s<br>Dostop: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Na zdravje!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Pozdravljeni,\n\nobveščamo vas, da je račun %s pripravljen.\n\nUporabniško ime: %s\nDostop: %s\n", - "Administrator documentation" : "Skrbniška dokumentacija", - "Online documentation" : "Spletna dokumentacija", - "Forum" : "Forum", - "Issue tracker" : "Sledilnih zahtevkov", - "Commercial support" : "Podpora strankam", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "Uporabljate <strong>%s</strong> od <strong>%s</strong>", - "Profile picture" : "Slika profila", - "Upload new" : "Pošlji novo", - "Select from Files" : "Izbor iz datotek", - "Remove image" : "Odstrani sliko", - "png or jpg, max. 20 MB" : "png ali jpg, največ. 20 MB", - "Cancel" : "Prekliči", - "Choose as profile picture" : "Izberi kot sliko profila", - "Full name" : "Polno ime", - "No display name set" : "Prikazno ime ni nastavljeno", - "Email" : "Elektronski naslov", - "Your email address" : "Osebni elektronski naslov", - "For password recovery and notifications" : "Za obnovo gesla in obveščanje", - "No email address set" : "Poštni naslov ni nastavljen", - "You are member of the following groups:" : "Ste član naslednjih skupin:", - "Password" : "Geslo", - "Unable to change your password" : "Gesla ni mogoče spremeniti.", - "Current password" : "Trenutno geslo", - "New password" : "Novo geslo", - "Change password" : "Spremeni geslo", - "Language" : "Jezik", - "Help translate" : "Sodelujte pri prevajanju", - "Get the apps to sync your files" : "Pridobi programe za usklajevanje datotek", - "Desktop client" : "Namizni odjemalec", - "Android app" : "Program za Android", - "iOS app" : "Program za iOS", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Če želite podpreti projekt\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">se pridružite razvijalcem</a>\n\t\tali pa le\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">razširite dober glas</a>!", - "Show First Run Wizard again" : "Zaženi čarovnika prvega zagona", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Programski paket razvija {communityopen}skupnost ownCloud{linkclose}, {githubopen}izvorna koda{linkclose} pa je objavljena z dovoljenjem {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}.", - "Show storage location" : "Pokaži mesto shrambe", - "Show last log in" : "Pokaži podatke zadnje prijave", - "Show user backend" : "Pokaži ozadnji program", - "Send email to new user" : "Pošlji sporočilo novemu uporabniku", - "Show email address" : "Pokaži naslov elektronske pošte", - "Username" : "Uporabniško ime", - "E-Mail" : "Elektronska pošta", - "Create" : "Ustvari", - "Admin Recovery Password" : "Obnovitev skrbniškega gesla", - "Enter the recovery password in order to recover the users files during password change" : "Vnesite geslo, ki omogoča obnovitev uporabniških datotek med spreminjanjem gesla", - "Add Group" : "Dodaj skupino", - "Group" : "Skupina", - "Everyone" : "Vsi", - "Admins" : "Skrbniki", - "Default Quota" : "Privzeta količinska omejitev", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Vnesite količinsko omejitev prostora (na primer: \"512 MB\" ali \"12 GB\")", - "Other" : "Drugo", - "Full Name" : "Polno ime", - "Group Admin for" : "Skrbnik skupine za", - "Quota" : "Količinska omejitev", - "Storage Location" : "Mesto shrambe", - "User Backend" : "Uporabniški ozadnji program", - "Last Login" : "Zadnja prijava", - "change full name" : "Spremeni polno ime", - "set new password" : "nastavi novo geslo", - "change email address" : "spremeni naslov elektronske pošte", - "Default" : "Privzeto" -}, -"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"); diff --git a/settings/l10n/sl.json b/settings/l10n/sl.json deleted file mode 100644 index 55406ef3a30..00000000000 --- a/settings/l10n/sl.json +++ /dev/null @@ -1,260 +0,0 @@ -{ "translations": { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Varnost in namestitvena opozorila", - "Sharing" : "Souporaba", - "Server-side encryption" : "Šifriranje na strežniku", - "External Storage" : "Zunanja podatkovna shramba", - "Cron" : "Periodično opravilo", - "Email server" : "Poštni strežnik", - "Log" : "Dnevnik", - "Tips & tricks" : "Nasveti in triki", - "Updates" : "Posodobitve", - "Couldn't remove app." : "Ni mogoče odstraniti programa.", - "Language changed" : "Jezik je spremenjen", - "Invalid request" : "Neveljavna zahteva", - "Authentication error" : "Napaka med overjanjem", - "Admins can't remove themself from the admin group" : "Skrbnikov ni mogoče odstraniti iz skupine skrbnikov (admin)", - "Unable to add user to group %s" : "Uporabnika ni mogoče dodati k skupini %s", - "Unable to remove user from group %s" : "Uporabnika ni mogoče odstraniti iz skupine %s", - "Couldn't update app." : "Programa ni mogoče posodobiti.", - "Wrong password" : "Napačno geslo", - "No user supplied" : "Ni navedenega uporabnika", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Podati je treba skrbniško obnovitveno geslo, sicer bodo vsi uporabniški podatki izgubljeni.", - "Wrong admin recovery password. Please check the password and try again." : "Napačno navedeno skrbniško obnovitveno geslo. Preverite geslo in poskusite znova.", - "Unable to change password" : "Ni mogoče spremeniti gesla", - "Enabled" : "Omogočeno", - "Not enabled" : "Ni omogočeno", - "installing and updating apps via the app store or Federated Cloud Sharing" : "nameščanje in posodabljanje programov prek programske zbirke ali zveznega oblaka", - "Federated Cloud Sharing" : "Souporaba zveznega oblaka", - "A problem occurred, please check your log files (Error: %s)" : "Prišlo je do napake. Preverite dnevniške zapise (napaka: %s).", - "Migration Completed" : "Selitev je končana", - "Group already exists." : "Skupina že obstaja.", - "Unable to add group." : "Ni mogoče dodati skupine", - "Unable to delete group." : "Ni mogoče izbrisati skupine.", - "log-level out of allowed range" : "stopnja zapisovanja je izven dovoljenega območja", - "Saved" : "Shranjeno", - "test email settings" : "preizkusi nastavitve elektronske pošte", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Med pošiljanjem sporočila se je prišlo do napake. Preverite nastavitve (napaka: %s).", - "Email sent" : "Elektronska pošta je poslana", - "You need to set your user email before being able to send test emails." : "Pred preizkusnim pošiljanjem sporočil je treba nastaviti elektronski naslov uporabnika.", - "Invalid mail address" : "Neveljaven elektronski naslov", - "A user with that name already exists." : "Uporabnik s tem imenom že obstaja.", - "Unable to create user." : "Ni mogoče ustvariti uporabnika.", - "Your %s account was created" : "Račun %s je uspešno ustvarjen.", - "Unable to delete user." : "Ni mogoče izbrisati uporabnika", - "Forbidden" : "Dostop je prepovedan", - "Invalid user" : "Neveljavni podatki uporabnika", - "Unable to change mail address" : "Ni mogoče spremeniti naslova elektronske pošte.", - "Email saved" : "Elektronski naslov je shranjen", - "Your full name has been changed." : "Vaše polno ime je spremenjeno.", - "Unable to change full name" : "Ni mogoče spremeniti polnega imena", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Ali ste prepričani, da želite dodati \"{domain}\" kot varno domeno?", - "Add trusted domain" : "Dodaj varno domeno", - "Migration in progress. Please wait until the migration is finished" : "V teku je selitev. Počakajte, da se zaključi.", - "Migration started …" : "Selitev je začeta ...", - "Sending..." : "Poteka pošiljanje ...", - "Official" : "Uradno", - "Approved" : "Odobreno", - "Experimental" : "Preizkusno", - "All" : "Vsi", - "No apps found for your version" : "Za to različico ni na voljo noben vstavek", - "Update to %s" : "Posodobi na %s", - "_You have %n app update pending_::_You have %n app updates pending_" : ["Na čakanju je %n posodobitev","Na čakanju sta %n posodobitvi","Na čakanju so %n posodobitve","Na čakanju je %n posodobitev"], - "Please wait...." : "Počakajte ...", - "Error while disabling app" : "Napaka onemogočanja programa", - "Disable" : "Onemogoči", - "Enable" : "Omogoči", - "Error while enabling app" : "Napaka omogočanja programa", - "Error: could not disable broken app" : "Napaka: ni mogoče onemogočiti okvarjenega programa", - "Error while disabling broken app" : "Napaka onemogočanja okvarjenega programa", - "Updating...." : "Poteka posodabljanje ...", - "Error while updating app" : "Prišlo je do napake med posodabljanjem programa.", - "Updated" : "Posodobljeno", - "Uninstalling ...." : "Odstranjevanje namestitve ...", - "Error while uninstalling app" : "Prišlo je do napake med odstranjevanjem programa.", - "Uninstall" : "Odstrani namestitev", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Vstavek je omogočen, vendar zahteva posodobitev. Samodejno bo izvedena preusmeritev na stran za posodobitev v 5 sekundah.", - "App update" : "Posodabljanje vstavkov", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Prišlo je do napake. Uvoziti je treba ustrezno ASCII kodirano potrdilo PEM.", - "Valid until {date}" : "Veljavno do {date}", - "Delete" : "Izbriši", - "An error occurred: {message}" : "Prišlo je do napake: {message}", - "Select a profile picture" : "Izbor slike profila", - "Very weak password" : "Zelo šibko geslo", - "Weak password" : "Šibko geslo", - "So-so password" : "Slabo geslo", - "Good password" : "Dobro geslo", - "Strong password" : "Odlično geslo", - "Groups" : "Skupine", - "Unable to delete {objName}" : "Ni mogoče izbrisati {objName}", - "Error creating group: {message}" : "Napaka ustvarjanja skupine: {message}", - "A valid group name must be provided" : "Navedeno mora biti veljavno ime skupine", - "deleted {groupName}" : "izbrisano {groupName}", - "undo" : "razveljavi", - "no group" : "ni skupine", - "never" : "nikoli", - "deleted {userName}" : "izbrisano {userName}", - "add group" : "dodaj skupino", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Sprememba gesla bo povzročila izgubo podatkov, ker obnova podatkov za tega uporabnika ni na voljo.", - "A valid username must be provided" : "Navedeno mora biti veljavno uporabniško ime", - "Error creating user: {message}" : "Napaka ustvarjanja uporabnika: {message}", - "A valid password must be provided" : "Navedeno mora biti veljavno geslo", - "A valid email must be provided" : "Naveden mora biti veljaven naslov elektronske pošte.", - "__language_name__" : "Slovenščina", - "Unlimited" : "Neomejeno", - "Personal info" : "Osebni podatki", - "Sync clients" : "Uskladi odjemalce", - "Everything (fatal issues, errors, warnings, info, debug)" : "Vse (podrobnosti, opozorila, hrošče, napake in usodne dogodke)", - "Info, warnings, errors and fatal issues" : "Podrobnosti, opozorila, napake in usodne dogodke", - "Warnings, errors and fatal issues" : "Opozorila, napake in usodne dogodke", - "Errors and fatal issues" : "Napake in usodne dogodke", - "Fatal issues only" : "Le usodne dogodke", - "None" : "Brez", - "Login" : "Prijava", - "Plain" : "Besedilno", - "NT LAN Manager" : "Upravljalnik NT LAN", - "SSL" : "SSL", - "TLS" : "TLS", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Strežnik ownCloud je nameščen v okolju Microsoft Windows. Toplo priporočamo okolje Linux za najboljšo uporabniško izkušnjo.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Manjka modul PHP 'fileinfo'. Priporočljivo je omogočiti ta modul za popolno zaznavanje vrst MIME.", - "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.", - "All checks passed." : "Vsa preverjanja so uspešno zaključena.", - "Open documentation" : "Odprta dokumentacija", - "Allow apps to use the Share API" : "Dovoli programom uporabo vmesnika API souporabe", - "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 to other users" : "Dovoli uporabnikom pošiljanje obvestil o souporabi datotek z drugimi uporabniki.", - "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", - "Cron was not executed yet!" : "Periodično opravilo cron še ni zagnano!", - "Execute one task with each page loaded" : "Izvedi eno nalogo z vsako naloženo stranjo.", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "Datoteka cron.php je vpisana za periodično opravilo webcron za potrditev sklica vsakih 15 minut pri povezavi preko HTTP.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Uporabi storitev periodičnih opravil za klic datoteke cron.php vsakih 15 minut.", - "Enable server-side encryption" : "Omogoči šifriranje na strežniku", - "Please read carefully before activating server-side encryption: " : "Pozorno preberite opombe, preden omogočite strežniško šifriranje:", - "Enable encryption" : "Omogoči šifriranje", - "Select default encryption module:" : "Izbor privzetega modula za šifriranje:", - "Start migration" : "Začni selitev", - "This is used for sending out notifications." : "Možnost je uporabljena za omogočanje pošiljanja obvestil.", - "Send mode" : "Način pošiljanja", - "Encryption" : "Šifriranje", - "From address" : "Naslov pošiljatelja", - "mail" : "pošta", - "Authentication method" : "Način overitve", - "Authentication required" : "Zahtevana je overitev", - "Server address" : "Naslov strežnika", - "Port" : "Vrata", - "Credentials" : "Poverila", - "SMTP Username" : "Uporabniško ime SMTP", - "SMTP Password" : "Geslo SMTP", - "Store credentials" : "Shrani poverila", - "Test email settings" : "Preizkus nastavitev elektronske pošte", - "Send email" : "Pošlji elektronsko sporočilo", - "Download logfile" : "Prejmi dnevniško datoteko", - "More" : "Več", - "Less" : "Manj", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Dnevniškega datoteka je večja od 100 MB. Hitrost prejema je odvisna od širokopasovne povezave!", - "What to log" : "Kaj naj se beleži?", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "Uporabljena zbirka je SQLite. Za obsežnejše sisteme je priporočljiv prehod na drugo vrsto zbirke.", - "How to do backups" : "Kako ustvariti varnostne kopije", - "Advanced monitoring" : "Napredno sledenje", - "Performance tuning" : "Prilagajanje delovanja", - "Improving the config.php" : "Izboljšave v config.php", - "Theming" : "Teme", - "Hardening and security guidance" : "Varnost in varnostni napotki", - "Version" : "Različica", - "Developer documentation" : "Dokumentacija za razvijalce", - "Experimental applications ahead" : "Preizkusni programi", - "%s-licensed" : "dovoljenje-%s", - "Documentation:" : "Dokumentacija:", - "User documentation" : "Uporabniška dokumentacija", - "Admin documentation" : "Skrbniška dokumentacija", - "Show description …" : "Pokaži opis ...", - "Hide description …" : "Skrij opis ...", - "This app has an update available." : "Za program so na voljo posodobitve.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Programa ni mogoče namestiti zaradi nerešenih odvisnosti:", - "Enable only for specific groups" : "Omogoči le za posamezne skupine", - "Uninstall App" : "Odstrani program", - "Enable experimental apps" : "Omogoči preizkusne programe", - "SSL Root Certificates" : "Korenska potrdila SSL", - "Common Name" : "Splošno ime", - "Valid until" : "Veljavno do", - "Issued By" : "Izdajatelj", - "Valid until %s" : "Veljavno do %s", - "Import root certificate" : "Uvozi korensko potrdilo", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Pozdravljeni,<br><br>obveščamo vas, da je račun %s pripravljen.<br><br>Uporabniško ime: %s<br>Dostop: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Na zdravje!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Pozdravljeni,\n\nobveščamo vas, da je račun %s pripravljen.\n\nUporabniško ime: %s\nDostop: %s\n", - "Administrator documentation" : "Skrbniška dokumentacija", - "Online documentation" : "Spletna dokumentacija", - "Forum" : "Forum", - "Issue tracker" : "Sledilnih zahtevkov", - "Commercial support" : "Podpora strankam", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "Uporabljate <strong>%s</strong> od <strong>%s</strong>", - "Profile picture" : "Slika profila", - "Upload new" : "Pošlji novo", - "Select from Files" : "Izbor iz datotek", - "Remove image" : "Odstrani sliko", - "png or jpg, max. 20 MB" : "png ali jpg, največ. 20 MB", - "Cancel" : "Prekliči", - "Choose as profile picture" : "Izberi kot sliko profila", - "Full name" : "Polno ime", - "No display name set" : "Prikazno ime ni nastavljeno", - "Email" : "Elektronski naslov", - "Your email address" : "Osebni elektronski naslov", - "For password recovery and notifications" : "Za obnovo gesla in obveščanje", - "No email address set" : "Poštni naslov ni nastavljen", - "You are member of the following groups:" : "Ste član naslednjih skupin:", - "Password" : "Geslo", - "Unable to change your password" : "Gesla ni mogoče spremeniti.", - "Current password" : "Trenutno geslo", - "New password" : "Novo geslo", - "Change password" : "Spremeni geslo", - "Language" : "Jezik", - "Help translate" : "Sodelujte pri prevajanju", - "Get the apps to sync your files" : "Pridobi programe za usklajevanje datotek", - "Desktop client" : "Namizni odjemalec", - "Android app" : "Program za Android", - "iOS app" : "Program za iOS", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Če želite podpreti projekt\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">se pridružite razvijalcem</a>\n\t\tali pa le\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">razširite dober glas</a>!", - "Show First Run Wizard again" : "Zaženi čarovnika prvega zagona", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Programski paket razvija {communityopen}skupnost ownCloud{linkclose}, {githubopen}izvorna koda{linkclose} pa je objavljena z dovoljenjem {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}.", - "Show storage location" : "Pokaži mesto shrambe", - "Show last log in" : "Pokaži podatke zadnje prijave", - "Show user backend" : "Pokaži ozadnji program", - "Send email to new user" : "Pošlji sporočilo novemu uporabniku", - "Show email address" : "Pokaži naslov elektronske pošte", - "Username" : "Uporabniško ime", - "E-Mail" : "Elektronska pošta", - "Create" : "Ustvari", - "Admin Recovery Password" : "Obnovitev skrbniškega gesla", - "Enter the recovery password in order to recover the users files during password change" : "Vnesite geslo, ki omogoča obnovitev uporabniških datotek med spreminjanjem gesla", - "Add Group" : "Dodaj skupino", - "Group" : "Skupina", - "Everyone" : "Vsi", - "Admins" : "Skrbniki", - "Default Quota" : "Privzeta količinska omejitev", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Vnesite količinsko omejitev prostora (na primer: \"512 MB\" ali \"12 GB\")", - "Other" : "Drugo", - "Full Name" : "Polno ime", - "Group Admin for" : "Skrbnik skupine za", - "Quota" : "Količinska omejitev", - "Storage Location" : "Mesto shrambe", - "User Backend" : "Uporabniški ozadnji program", - "Last Login" : "Zadnja prijava", - "change full name" : "Spremeni polno ime", - "set new password" : "nastavi novo geslo", - "change email address" : "spremeni naslov elektronske pošte", - "Default" : "Privzeto" -},"pluralForm" :"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);" -}
\ No newline at end of file diff --git a/settings/l10n/sq.js b/settings/l10n/sq.js deleted file mode 100644 index 82d6bc8780b..00000000000 --- a/settings/l10n/sq.js +++ /dev/null @@ -1,299 +0,0 @@ -OC.L10N.register( - "settings", - { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Sinjalizime sigurie & rregullimi", - "Sharing" : "Ndarje me të tjerët", - "Server-side encryption" : "Fshehtëzim më anë shërbyesi", - "External Storage" : "Depozitim i Jashtëm", - "Cron" : "Cron", - "Email server" : "Shërbyes email-esh", - "Log" : "Regjistër", - "Tips & tricks" : "Ndihmëza & rrengje", - "Updates" : "Përditësime", - "Couldn't remove app." : "S’hoqi dot aplikacionin.", - "Language changed" : "Gjuha u ndryshua", - "Invalid request" : "Kërkesë e pavlefshme", - "Authentication error" : "Gabim mirëfilltësimi", - "Admins can't remove themself from the admin group" : "Administratorët s’mund të heqin veten prej grupit admin", - "Unable to add user to group %s" : "S’arrin të shtojë përdorues te grupi %s", - "Unable to remove user from group %s" : "S’arrin të heqë përdorues nga grupi %s", - "Couldn't update app." : "S’përditësoi dot aplikacionin.", - "Wrong password" : "Fjalëkalim i gabuar", - "No user supplied" : "S’u dha përdorues", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Ju lutemi, jepni një fjalëkalim rikthimesh për përgjegjësin, në të kundërt të gjitha të dhënat do të humbasin", - "Wrong admin recovery password. Please check the password and try again." : "Fjalëkalim i gabuar rikthimesh për përgjegjësin. Ju lutemi, kontrolloni fjalëkalimin dhe provoni përsëri.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Programi klient s’mbulon ndryshime fjalëkalimi, por kyçi i përdoruesi për fshehtëzime u përditësua me sukses.", - "Unable to change password" : "S’arrin të ndryshojë fjalëkalimin", - "Enabled" : "E aktivizuar", - "Not enabled" : "E paaktivizuar", - "installing and updating apps via the app store or Federated Cloud Sharing" : "instalim dhe përditësim aplikacionesh përmes shitores së aplikacioneve ose Federated Cloud Sharing", - "Federated Cloud Sharing" : "Ndarje Në Re të Federuar ", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL-ja po përdor një version %s të vjetruar (%s). Ju lutemi, përditësoni sistemin tuaj operativ ose përndryshe veçori të tilla si %s nuk do të punojnë në mënyrë të qëndrueshme.", - "A problem occurred, please check your log files (Error: %s)" : "Ndodhi një gabim, ju lutemi, kontrolloni kartelat tuaja regjistër (Error: %s)", - "Migration Completed" : "Migrimi u Plotësua", - "Group already exists." : "Grupi ekziston tashmë.", - "Unable to add group." : "S’arrin të shtojë grup.", - "Unable to delete group." : "S’arrin të fshijë grup.", - "log-level out of allowed range" : "nivel regjistrimi jashtë intervalit të lejuar", - "Saved" : "U ruajt", - "test email settings" : "testoni rregullime email-i", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Ndodhi një gabim gjatë dërgimit të email-it. Ju lutemi, rishikoni rregullimet tuaja. (Error: %s)", - "Email sent" : "Email-i u dërgua", - "You need to set your user email before being able to send test emails." : "Lypset të caktoni email-in tuaj si përdorues, përpara se të jeni në gjendje të dërgoni email-e provë.", - "Invalid mail address" : "Adresë email e pavlefshme", - "A user with that name already exists." : "Ka tashmë një përdorues me këtë emër.", - "Unable to create user." : "S’arrin të krijojë përdoruesi.", - "Your %s account was created" : "Llogaria juaj %s u krijua", - "Unable to delete user." : "S’arrin të fshijë përdorues.", - "Forbidden" : "E ndaluar", - "Invalid user" : "Përdorues i pavlefshëm", - "Unable to change mail address" : "S’arrin të ndryshojë adresë email", - "Email saved" : "Email-i u ruajt", - "Your full name has been changed." : "Emri juaj i plotë u ndryshua.", - "Unable to change full name" : "S’arrin të ndryshojë emrin e plotë", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Jeni vërtet i sigurt se doni të shtoni \"{domain}\" si përkatësi të besuar?", - "Add trusted domain" : "Shtoni përkatësi të besuar", - "Migration in progress. Please wait until the migration is finished" : "Migrimi në rrugë e sipër. Ju lutemi, pritni, teksa migrimi përfundon", - "Migration started …" : "Migrimi filloi …", - "Sending..." : "Po dërgohet…", - "Official" : "Zyrtare", - "Approved" : "Të miratuara", - "Experimental" : "Eksperimentale", - "All" : "Krejt", - "No apps found for your version" : "S’u gjetën aplikacione për versionin tuaj", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Aplikacionet zyrtare ndërtohen brenda bashkësisë ownCloud. Ato ofrojnë funksione qendrore për ownCloud dhe janë gati për t’u përdorur në prodhim.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Aplikacionet e miratuara ndërtohen nga zhvillues të besuar dhe kanë kaluar një kontroll të përciptë sigurie. Mirëmbahen aktivisht në një depo të hapur kodi dhe mirëmbajtësit e tyre i konsiderojnë të qëndrueshme për përdorime nga të rastit deri në ato normale.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Ky aplikacion s’është kontrolluar për probleme sigurie dhe është i ri ose i njohur si i paqëndrueshëm. Instalojeni duke e mbajtur vetë përgjegjësinë.", - "Update to %s" : "Përditësoje me %s", - "_You have %n app update pending_::_You have %n app updates pending_" : ["Keni %n përditësim aplikacioni në pritje","Keni %n përditësime aplikacionesh në pritje"], - "Please wait...." : "Ju lutemi, prisni…", - "Error while disabling app" : "Gabim në çaktivizimin e aplikacionit", - "Disable" : "Çaktivizoje", - "Enable" : "Aktivizoje", - "Error while enabling app" : "Gabim në aktivizimin e aplikacionit", - "Error: this app cannot be enabled because it makes the server unstable" : "Gabim: ky aplikacion s’u aktivizua dot, ngaqë e bën shërbyesin të paqëndrueshëm.", - "Error: could not disable broken app" : "Gabim: s’u çaktivizua dot aplikacion i dëmtuar", - "Error while disabling broken app" : "Gabim teka çaktivizohej aplikacion i dëmtuar", - "Updating...." : "Po përditësohet…", - "Error while updating app" : "Gabim gjatë përditësimit të aplikacionit", - "Updated" : "U përditësua", - "Uninstalling ...." : "Po çinstalohet…", - "Error while uninstalling app" : "Gabim në çinstalimin e aplikacionit", - "Uninstall" : "Çinstaloje", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Aplikacioni është aktivizuar, por lyp të përditësohet. Do të ridrejtoheni te faqja e përditësimeve brenda 5 sekondash.", - "App update" : "Përditësim aplikacioni", - "No apps found for {query}" : "S’u gjetën aplikacione për {query}", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Ndodhi një gabim. Ju lutemi, ngarkoni një dëshmi PEM të koduar me ASCII.", - "Valid until {date}" : "E vlefshme deri më {date}", - "Delete" : "Fshije", - "An error occurred: {message}" : "Ndodhi një gabim: {message}", - "Select a profile picture" : "Përzgjidhni një foto profili", - "Very weak password" : "Fjalëkalim shumë i dobët", - "Weak password" : "Fjalëkalim i dobët", - "So-so password" : "Fjalëkalim çka", - "Good password" : "Fjalëkalim i mirë", - "Strong password" : "Fjalëkalim i fortë", - "Groups" : "Grupe", - "Unable to delete {objName}" : "S’arrin të fshijë {objName}", - "Error creating group: {message}" : "Gabim gjatë krijimit të grupit: {message}", - "A valid group name must be provided" : "Duhet dhënë një emër i vlefshëm grupi", - "deleted {groupName}" : "u fshi {groupName}", - "undo" : "zhbëje", - "no group" : "pa grup", - "never" : "kurrë", - "deleted {userName}" : "u fshi {userName}", - "add group" : "shto grup", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Ndryshimi i fjalëkalimit do të sjellë humbje të dhënash, ngaqë rikthimi i të dhënave s’është i përdorshëm për këtë përdorues", - "A valid username must be provided" : "Duhet dhënë një emër të vlefshëm përdoruesi", - "Error creating user: {message}" : "Gabim gjatë krijimit të përdoruesit: {message}", - "A valid password must be provided" : "Duhet dhënë një fjalëkalim i vlefshëm", - "A valid email must be provided" : "Duhet dhënë një email i vlefshëm", - "__language_name__" : "Shqip", - "Unlimited" : "E pakufizuar", - "Personal info" : "Të dhëna personale", - "Sync clients" : "Klientë njëkohësimi", - "Everything (fatal issues, errors, warnings, info, debug)" : "Gjithçka (probleme fatale, gabime, sinjalizime, të dhëna, diagnostikim)", - "Info, warnings, errors and fatal issues" : "Të dhëna, sinjalizime, gabime dhe probleme fatale", - "Warnings, errors and fatal issues" : "Sinjalizime, gabime dhe probleme fatale", - "Errors and fatal issues" : "Gabime dhe probleme fatale", - "Fatal issues only" : "Vetëm probleme fatale", - "None" : "Asnjë", - "Login" : "Hyrje", - "Plain" : "E thjeshtë", - "NT LAN Manager" : "Përgjegjës Rrjeti NT", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "PHP-ja nuk duket të jetë rregulluar si duhet për të kërkuar ndryshore mjedisi sistemi. Testi me getenv(\"PATH\") kthen vetëm një përgjigje të zbrazët.", - "Please check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation documentation ↗</a> for php configuration notes and the php configuration of your server, especially when using php-fpm." : "Ju lutemi, kontrolloni <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">dokumentimin e instalimit ↗</a> për shënime rreth formësimit të php-së dhe formësimin php të shërbyesit tuaj, veçanërisht kur përdoret using php-fpm.", - "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." : "Rregullimi Vetëm-Lexim u aktivizua. Kjo parandalon rregullimin e disa parametrave përmes ndërfaqes web. Më tej, për çdo përditësim kartela lyp të kalohet dorazi si e shkrueshme.", - "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "Duket se PHP-ja është rregulluar që të heqë blloqe të brendshme dokumentimi. Kjo do t’i bëjë të papërdrshme disa aplikacione bazë.", - "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Kjo ka gjasa të jetë shkaktuar nga një fshehtinë/përshpejtues i tillë si Zend OPcache ose eAccelerator.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Shërbyesi juaj xhiron nën Microsoft Windows. Këshillojmë fort Linux-in për punim optimal nga ana e përdoruesit.", - "%1$s below version %2$s is installed, for stability and performance reasons we recommend updating to a newer %1$s version." : "Ka të instaluar %1$s nën versionin %2$s, për arsye qëndrueshmërie dhe performance këshillojmë të përditësohet me një version %1$s më të ri.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Moduli PHP 'fileinfo' mungon. Ju këshillojmë me forcë ta aktivizoni këtë modul, për të patur përfundimet më të mira në zbulim llojesh MIME.", - "Transactional file locking is disabled, this might lead to issues with race conditions. Enable 'filelocking.enabled' in config.php to avoid these problems. See the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a> for more information." : "Kyçja e kartelave gjatë transaksioneve është e çaktivizuar, kjo mund të sjellë probleme me gjendje <em>race conditions</em>. Që të shmangni këto probleme, aktivizoni 'filelocking.enabled' te config.php. Për më tepër të dhëna, shihni <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">dokumentimin ↗</a>.", - "System locale can not be set to a one which supports UTF-8." : "Si vendore sistemi nuk mund të caktohet një që mbulon UTF-8.", - "This means that there might be problems with certain characters in file names." : "Kjo do të thotë që mund të ketë probleme me disa shenja në emra kartelash.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Këshillojmë me forcë instalimin në sistemin tuaj të paketave të domosdoshme për mbulim të një prej vendoreve vijuese: %s.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Nëse instalimi juaj nuk është bërë në rrënjë të përkatësisë dhe përdor cron sistemi, mund të ketë probleme me prodhimin e URL-së. Që të shmangen këto probleme, ju lutemi, jepini mundësisë \"overwrite.cli.url\" te kartela juaj config.php vlerën e shtegut webroot të instalimit tuaj (E këshillueshme: \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "S’qe e mundur të përmbushej akti cron përmes CLI-së. U shfaqën gabimet teknike vijuese:", - "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"#log-section\">log</a>." : "Ju lutemi, rihidhuni një sy <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">udhërrëfyesve të instalimit ↗</a>, dhe kontrolloni te <a href=\"#log-section\">regjistri</a> për çfarëdo gabimesh apo sinjalizimesh.", - "All checks passed." : "I kaloi krejt kontrollet.", - "Open documentation" : "Hapni dokumentimin", - "Allow apps to use the Share API" : "Lejoni aplikacionet të përdorin API Share", - "Allow users to share via link" : "Lejoji përdoruesit të ndajnë me të tjerët përmes lidhjesh", - "Enforce password protection" : "Detyro mbrojtje me fjalëkalim", - "Allow public uploads" : "Lejo ngarkime publike", - "Allow users to send mail notification for shared files" : "Lejoju përdoruesve të dërgojnë njoftime me email për kartela të ndara me të tjerët", - "Set default expiration date" : "Caktoni datë parazgjedhje skadimi", - "Expire after " : "Skadon pas ", - "days" : "ditësh", - "Enforce expiration date" : "Detyro datë skadimi", - "Allow resharing" : "Lejo rindarje", - "Allow sharing with groups" : "Lejoni ndarje me grupe", - "Restrict users to only share with users in their groups" : "Përdoruesve kufizoju të ndajnë gjëra vetëm me përdorues në grupin e tyre", - "Allow users to send mail notification for shared files to other users" : "Lejoju përdoruesve t’u dërgojnë përdoruesve të tjerë njoftime me email për kartela të ndara me të tjerët", - "Exclude groups from sharing" : "Përjashtoni grupe nga ndarjet", - "These groups will still be able to receive shares, but not to initiate them." : "Këto grupe prapë do të jenë në gjendje të marrin ndarje nga të tjerët, por jo të fillojnë të tilla.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Lejo vetëplotësim emra përdoruesish te dialogu i ndarjeve me të tjerët. Nëse kjo është e çaktivizuar, do të duhet të jepen emra përdoruesish.", - "Last cron job execution: %s." : "Përmbushja e fundit e aktit cron: %s.", - "Last cron job execution: %s. Something seems wrong." : "Përmbushja e fundit e aktit cron: %s. Duket se nuk shkon diçka.", - "Cron was not executed yet!" : "Cron-i s’qe ekzekutuar ende!", - "Execute one task with each page loaded" : "Kryeni vetëm një veprim me secilën prej faqeve të ngarkuara", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php është regjistruar te një shërbim webcron që ta aktivizojë cron.php-në çdo 15 minuta përmes http-je.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Përdorni shërbimin cron të sistemit që ta aktivizojë cron.php-në çdo 15 minuta.", - "Enable server-side encryption" : "Aktivizo fshehtëzim më anë të shërbyesit", - "Please read carefully before activating server-side encryption: " : "Ju lutemi, lexoni me kujdes përpara aktivizimit të fshehtëzimeve më anë shërbyesi: ", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "Pasi të jetë aktivizuar fshehtëzimi, krejt kartelat e ngarkuara te shërbyesi nga kjo pikë e tutje do të fshehtëzohen pasi të jenë depozituar në shërbyes. Çaktivizimi i fshehtëzimit në një datë të mëvonshme do të jetë i mundur vetëm nëse moduli aktiv i fshehtëzimeve e mbulon këtë funksion, dhe nëse plotësohen krejt parakushtet (p.sh. caktimi i një kyçi rimarrjesh).", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "Fshehtëzimi, dhe vetëm kaq, s’garanton sigurinë e sistemit. Ju lutemi, për më tepër të dhëna se si funksionon aplikacioni i fshehtëzimeve, dhe për raste përdorimi që mbulon, lexoni dokumentimin e ownCloud-it.", - "Be aware that encryption always increases the file size." : "Kini parasysh që fshehtëzimi e rrit gjithnjë madhësinë e kartelës.", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "Është gjithmonë ide e mirë të krijohen kopjeruajtje të rregullta të të dhënave tuaja, në rast fshehtëzimi sigurohuni që bëni kopjeruajtje të kyçeve të fshehtëzimit, tok me të dhënat tuaja.", - "This is the final warning: Do you really want to enable encryption?" : "Ky është sinjalizimi përfundimtar: Doni vërtet të aktivizohet fshehtëzimi?", - "Enable encryption" : "Aktivizoni fshehtëzim", - "No encryption module loaded, please enable an encryption module in the app menu." : "S’ka të ngarkuar modul fshehtëzimi, ju lutemi, aktivizoni një modul fshehtëzimi që nga menuja e aplikacionit.", - "Select default encryption module:" : "Përzgjidhni modul parazgjedhje fshehtëzimi:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Lypset të migroni kyçet tuaj të fshehtëzimit nga fshehtëzimi i vjetër (ownCloud <= 8.0) te i riu. Ju lutemi, aktivizoni \"Modul parazgjedhje fshehtëzimesh\" dhe ekzekutoni 'occ encryption:migrate'", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Lypset të migroni kyçet tuaj të fshehtëzimit nga fshehtëzimi i vjetër (ownCloud <= 8.0) te i riu.", - "Start migration" : "Fillo migrimin", - "This is used for sending out notifications." : "Ky përdoret për të dërguar njoftime.", - "Send mode" : "Mënyrë dërgimi", - "Encryption" : "Fshehtëzim", - "From address" : "Nga adresa", - "mail" : "email", - "Authentication method" : "Metodë mirëfilltësimi", - "Authentication required" : "Lypset mirëfilltësim", - "Server address" : "Adresë shërbyesi", - "Port" : "Portë", - "Credentials" : "Kredenciale", - "SMTP Username" : "Emër përdoruesi SMTP", - "SMTP Password" : "Fjalëkalim SMTP", - "Store credentials" : "Depozitoji kredencialet", - "Test email settings" : "Testoni rregullimet e email-it", - "Send email" : "Dërgo email", - "Download logfile" : "Shkarkoni kartelën regjistër", - "More" : "Më tepër", - "Less" : "Më pak", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Kartela regjistër është më e madhe se 100 MB. Shkarkimi i saj mund të hajë ca kohë!", - "What to log" : "Ç’të regjistrohet", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "Si bazë të dhënash përdoret SQLite. Për instalime më të ngarkuara, këshillojmë të kalohet në një program tjetër baze të dhënash.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Përdorimi i SQLite-it nuk këshillohet veçanërisht kur përdoret klienti desktop për njëkohësim kartelash.", - "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a>." : "Për të kaluar te një tjetër bazë të dhënash përdorni mjetin rresht urdhrash: 'occ db:convert-type', ose shihni <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">dokumentimin ↗</a>.", - "How to do backups" : "Si të bëhen kopjeruajtje", - "Advanced monitoring" : "Mbikëqyrje e mëtejshme", - "Performance tuning" : "Përimtime performance", - "Improving the config.php" : "Si të përmirësohet config.php", - "Theming" : "Ndryshim teme grafike", - "Hardening and security guidance" : "Udhëzime për forcim dhe siguri", - "Version" : "Version", - "Developer documentation" : "Dokumentim për zhvillues", - "Experimental applications ahead" : "Keni përpara aplikacione eksperimentale", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Aplikacionet eksperimentale nuk kontrollohen për probleme sigurie, mund të jenë të rinj ose të njohur si të paqëndrueshëm, dhe nën zhvillim intensiv. Instalimi i tyre mund të shkaktojë humbje të dhënash ose cenim të sigurisë.", - "by %s" : "nga %s", - "%s-licensed" : "licencuar prej %s", - "Documentation:" : "Dokumentim:", - "User documentation" : "Dokumentim për përdoruesit", - "Admin documentation" : "Dokumentim për përgjegjësit", - "Show description …" : "Shfaq përshkrim …", - "Hide description …" : "Fshihe përshkrimin …", - "This app has an update available." : "Ka gati një përditësim për këtë aplikacion.", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Ky aplikacion nuk ka të përcaktuar version minimum për ownCloud-in. Kjo do të përbëjë një gabim për ownCloud 11 dhe të mëvonshëm.", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Ky aplikacion nuk ka të përcaktuar version maksimum për ownCloud-in. Kjo do të përbëjë një gabim për ownCloud 11 dhe të mëvonshëm.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Ky aplikacion s’mund të instalohet, ngaqë për të nuk plotësohen varësitë vijuese:", - "Enable only for specific groups" : "Aktivizoje vetëm për grupe të veçantë", - "Uninstall App" : "Çinstaloje Aplikacionin", - "Enable experimental apps" : "Aktivizo aplikacione eksperimentale", - "SSL Root Certificates" : "Dëshmi SSL Rrënjë", - "Common Name" : "Emër i Rëndomtë", - "Valid until" : "E vlefshme deri më", - "Issued By" : "Lëshuar Nga", - "Valid until %s" : "E vlefshme deri më %s", - "Import root certificate" : "Importoni dëshmi rrënjë", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Njatjeta,<br><br>thjesht po ju bëjmë të ditur që tani keni një llogar %s.<br><br>Emri juaj i përdoruesit: %s<br>Hyni në të te: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Gëzuar!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Njatjeta,\n\nthjesht po ju bëjmë të ditur që tani keni një llogari %s.\n\nEmri juaj i përdoruesit: %s\nHyni në të te: %s\n\n", - "Administrator documentation" : "Dokumentim për përgjegjës", - "Online documentation" : "Dokumentim në Internet", - "Forum" : "Forum", - "Issue tracker" : "Gjurmues të metash", - "Commercial support" : "Asistencë komerciale", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "Po përdorni <strong>%s</strong> nga <strong>%s</strong>", - "Profile picture" : "Foto profili", - "Upload new" : "Ngarko të re", - "Select from Files" : "Përzgjidhni prej Kartelash", - "Remove image" : "Hiqe figurën", - "png or jpg, max. 20 MB" : "png ose jpg, maks. 20 MB", - "Picture provided by original account" : "Foto e prurë nga llogaria origjinale", - "Cancel" : "Anuloje", - "Choose as profile picture" : "Zgjidhni një foto profili", - "Full name" : "Emër i plotë", - "No display name set" : "S’është caktuar emër për në ekran", - "Email" : "Email", - "Your email address" : "Adresa juaj email", - "For password recovery and notifications" : "Për rimarrje fjalëkalimesh dhe njoftime ", - "No email address set" : "S’është caktuar adresë email", - "You are member of the following groups:" : "Jeni anëtar i grupeve vijuese:", - "Password" : "Fjalëkalim", - "Unable to change your password" : "S’arrin të ndryshojë fjalëkalimin tuaj", - "Current password" : "Fjalëkalimi i tanishëm", - "New password" : "Fjalëkalimi i ri", - "Change password" : "Ndrysho fjalëkalimin", - "Language" : "Gjuhë", - "Help translate" : "Ndihmoni në përkthim", - "Get the apps to sync your files" : "Merrni aplikacionet për njëkohësim të kartelave tuaja", - "Desktop client" : "Klient desktopi", - "Android app" : "Aplikacion për Android", - "iOS app" : "Aplikacion për iOS", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Nëse doni ta përkrahni projektin\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">merrni pjesë te zhvillimi i tij</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">përhapni fjalën për të</a>!", - "Show First Run Wizard again" : "Shfaqe sërish Ndihmësin e Herës së Parë", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Krijuar nga {communityopen}bashkësia ownCloud{linkclose}, {githubopen}kodi burim{linkclose} mund të përdoret sipas licencës {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}.", - "Show storage location" : "Shfaq vendndodhje depozite", - "Show last log in" : "Shfaq hyrjen e fundit", - "Show user backend" : "Shfaq programin klient të përdoruesit", - "Send email to new user" : "Dërgo email përdoruesi të ri", - "Show email address" : "Shfaq adresë email", - "Username" : "Emër përdoruesi", - "E-Mail" : "Email", - "Create" : "Krijoje", - "Admin Recovery Password" : "Fjalëkalim Rikthimesh Nga Përgjegjësi", - "Enter the recovery password in order to recover the users files during password change" : "Jepni fjalëkalim rimarrje që të mund të rimerrni kartela përdoruesi gjatë ndryshimit të fjalëkalimit", - "Add Group" : "Shtoni Grup", - "Group" : "Grup", - "Everyone" : "Kushdo", - "Admins" : "Administratorë", - "Default Quota" : "Kuota Parazgjedhje", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Ju lutemi, jepni kuotë depozitimi (psh: \"512 MB\" ose \"12 GB\")", - "Other" : "Tjetër", - "Full Name" : "Emri i Plotë", - "Group Admin for" : "Admin Grupi për", - "Quota" : "Kuota", - "Storage Location" : "Vendndodhje Depozite", - "User Backend" : "Program klient i përdoruesit", - "Last Login" : "Hyrja e fundit", - "change full name" : "ndryshoni emrin e plotë", - "set new password" : "caktoni fjalëkalim të ri", - "change email address" : "ndryshoni adresën email", - "Default" : "Parazgjedhje" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/sq.json b/settings/l10n/sq.json deleted file mode 100644 index ab88d0f67df..00000000000 --- a/settings/l10n/sq.json +++ /dev/null @@ -1,297 +0,0 @@ -{ "translations": { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Sinjalizime sigurie & rregullimi", - "Sharing" : "Ndarje me të tjerët", - "Server-side encryption" : "Fshehtëzim më anë shërbyesi", - "External Storage" : "Depozitim i Jashtëm", - "Cron" : "Cron", - "Email server" : "Shërbyes email-esh", - "Log" : "Regjistër", - "Tips & tricks" : "Ndihmëza & rrengje", - "Updates" : "Përditësime", - "Couldn't remove app." : "S’hoqi dot aplikacionin.", - "Language changed" : "Gjuha u ndryshua", - "Invalid request" : "Kërkesë e pavlefshme", - "Authentication error" : "Gabim mirëfilltësimi", - "Admins can't remove themself from the admin group" : "Administratorët s’mund të heqin veten prej grupit admin", - "Unable to add user to group %s" : "S’arrin të shtojë përdorues te grupi %s", - "Unable to remove user from group %s" : "S’arrin të heqë përdorues nga grupi %s", - "Couldn't update app." : "S’përditësoi dot aplikacionin.", - "Wrong password" : "Fjalëkalim i gabuar", - "No user supplied" : "S’u dha përdorues", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Ju lutemi, jepni një fjalëkalim rikthimesh për përgjegjësin, në të kundërt të gjitha të dhënat do të humbasin", - "Wrong admin recovery password. Please check the password and try again." : "Fjalëkalim i gabuar rikthimesh për përgjegjësin. Ju lutemi, kontrolloni fjalëkalimin dhe provoni përsëri.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Programi klient s’mbulon ndryshime fjalëkalimi, por kyçi i përdoruesi për fshehtëzime u përditësua me sukses.", - "Unable to change password" : "S’arrin të ndryshojë fjalëkalimin", - "Enabled" : "E aktivizuar", - "Not enabled" : "E paaktivizuar", - "installing and updating apps via the app store or Federated Cloud Sharing" : "instalim dhe përditësim aplikacionesh përmes shitores së aplikacioneve ose Federated Cloud Sharing", - "Federated Cloud Sharing" : "Ndarje Në Re të Federuar ", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL-ja po përdor një version %s të vjetruar (%s). Ju lutemi, përditësoni sistemin tuaj operativ ose përndryshe veçori të tilla si %s nuk do të punojnë në mënyrë të qëndrueshme.", - "A problem occurred, please check your log files (Error: %s)" : "Ndodhi një gabim, ju lutemi, kontrolloni kartelat tuaja regjistër (Error: %s)", - "Migration Completed" : "Migrimi u Plotësua", - "Group already exists." : "Grupi ekziston tashmë.", - "Unable to add group." : "S’arrin të shtojë grup.", - "Unable to delete group." : "S’arrin të fshijë grup.", - "log-level out of allowed range" : "nivel regjistrimi jashtë intervalit të lejuar", - "Saved" : "U ruajt", - "test email settings" : "testoni rregullime email-i", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Ndodhi një gabim gjatë dërgimit të email-it. Ju lutemi, rishikoni rregullimet tuaja. (Error: %s)", - "Email sent" : "Email-i u dërgua", - "You need to set your user email before being able to send test emails." : "Lypset të caktoni email-in tuaj si përdorues, përpara se të jeni në gjendje të dërgoni email-e provë.", - "Invalid mail address" : "Adresë email e pavlefshme", - "A user with that name already exists." : "Ka tashmë një përdorues me këtë emër.", - "Unable to create user." : "S’arrin të krijojë përdoruesi.", - "Your %s account was created" : "Llogaria juaj %s u krijua", - "Unable to delete user." : "S’arrin të fshijë përdorues.", - "Forbidden" : "E ndaluar", - "Invalid user" : "Përdorues i pavlefshëm", - "Unable to change mail address" : "S’arrin të ndryshojë adresë email", - "Email saved" : "Email-i u ruajt", - "Your full name has been changed." : "Emri juaj i plotë u ndryshua.", - "Unable to change full name" : "S’arrin të ndryshojë emrin e plotë", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Jeni vërtet i sigurt se doni të shtoni \"{domain}\" si përkatësi të besuar?", - "Add trusted domain" : "Shtoni përkatësi të besuar", - "Migration in progress. Please wait until the migration is finished" : "Migrimi në rrugë e sipër. Ju lutemi, pritni, teksa migrimi përfundon", - "Migration started …" : "Migrimi filloi …", - "Sending..." : "Po dërgohet…", - "Official" : "Zyrtare", - "Approved" : "Të miratuara", - "Experimental" : "Eksperimentale", - "All" : "Krejt", - "No apps found for your version" : "S’u gjetën aplikacione për versionin tuaj", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Aplikacionet zyrtare ndërtohen brenda bashkësisë ownCloud. Ato ofrojnë funksione qendrore për ownCloud dhe janë gati për t’u përdorur në prodhim.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Aplikacionet e miratuara ndërtohen nga zhvillues të besuar dhe kanë kaluar një kontroll të përciptë sigurie. Mirëmbahen aktivisht në një depo të hapur kodi dhe mirëmbajtësit e tyre i konsiderojnë të qëndrueshme për përdorime nga të rastit deri në ato normale.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Ky aplikacion s’është kontrolluar për probleme sigurie dhe është i ri ose i njohur si i paqëndrueshëm. Instalojeni duke e mbajtur vetë përgjegjësinë.", - "Update to %s" : "Përditësoje me %s", - "_You have %n app update pending_::_You have %n app updates pending_" : ["Keni %n përditësim aplikacioni në pritje","Keni %n përditësime aplikacionesh në pritje"], - "Please wait...." : "Ju lutemi, prisni…", - "Error while disabling app" : "Gabim në çaktivizimin e aplikacionit", - "Disable" : "Çaktivizoje", - "Enable" : "Aktivizoje", - "Error while enabling app" : "Gabim në aktivizimin e aplikacionit", - "Error: this app cannot be enabled because it makes the server unstable" : "Gabim: ky aplikacion s’u aktivizua dot, ngaqë e bën shërbyesin të paqëndrueshëm.", - "Error: could not disable broken app" : "Gabim: s’u çaktivizua dot aplikacion i dëmtuar", - "Error while disabling broken app" : "Gabim teka çaktivizohej aplikacion i dëmtuar", - "Updating...." : "Po përditësohet…", - "Error while updating app" : "Gabim gjatë përditësimit të aplikacionit", - "Updated" : "U përditësua", - "Uninstalling ...." : "Po çinstalohet…", - "Error while uninstalling app" : "Gabim në çinstalimin e aplikacionit", - "Uninstall" : "Çinstaloje", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Aplikacioni është aktivizuar, por lyp të përditësohet. Do të ridrejtoheni te faqja e përditësimeve brenda 5 sekondash.", - "App update" : "Përditësim aplikacioni", - "No apps found for {query}" : "S’u gjetën aplikacione për {query}", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Ndodhi një gabim. Ju lutemi, ngarkoni një dëshmi PEM të koduar me ASCII.", - "Valid until {date}" : "E vlefshme deri më {date}", - "Delete" : "Fshije", - "An error occurred: {message}" : "Ndodhi një gabim: {message}", - "Select a profile picture" : "Përzgjidhni një foto profili", - "Very weak password" : "Fjalëkalim shumë i dobët", - "Weak password" : "Fjalëkalim i dobët", - "So-so password" : "Fjalëkalim çka", - "Good password" : "Fjalëkalim i mirë", - "Strong password" : "Fjalëkalim i fortë", - "Groups" : "Grupe", - "Unable to delete {objName}" : "S’arrin të fshijë {objName}", - "Error creating group: {message}" : "Gabim gjatë krijimit të grupit: {message}", - "A valid group name must be provided" : "Duhet dhënë një emër i vlefshëm grupi", - "deleted {groupName}" : "u fshi {groupName}", - "undo" : "zhbëje", - "no group" : "pa grup", - "never" : "kurrë", - "deleted {userName}" : "u fshi {userName}", - "add group" : "shto grup", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Ndryshimi i fjalëkalimit do të sjellë humbje të dhënash, ngaqë rikthimi i të dhënave s’është i përdorshëm për këtë përdorues", - "A valid username must be provided" : "Duhet dhënë një emër të vlefshëm përdoruesi", - "Error creating user: {message}" : "Gabim gjatë krijimit të përdoruesit: {message}", - "A valid password must be provided" : "Duhet dhënë një fjalëkalim i vlefshëm", - "A valid email must be provided" : "Duhet dhënë një email i vlefshëm", - "__language_name__" : "Shqip", - "Unlimited" : "E pakufizuar", - "Personal info" : "Të dhëna personale", - "Sync clients" : "Klientë njëkohësimi", - "Everything (fatal issues, errors, warnings, info, debug)" : "Gjithçka (probleme fatale, gabime, sinjalizime, të dhëna, diagnostikim)", - "Info, warnings, errors and fatal issues" : "Të dhëna, sinjalizime, gabime dhe probleme fatale", - "Warnings, errors and fatal issues" : "Sinjalizime, gabime dhe probleme fatale", - "Errors and fatal issues" : "Gabime dhe probleme fatale", - "Fatal issues only" : "Vetëm probleme fatale", - "None" : "Asnjë", - "Login" : "Hyrje", - "Plain" : "E thjeshtë", - "NT LAN Manager" : "Përgjegjës Rrjeti NT", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "PHP-ja nuk duket të jetë rregulluar si duhet për të kërkuar ndryshore mjedisi sistemi. Testi me getenv(\"PATH\") kthen vetëm një përgjigje të zbrazët.", - "Please check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation documentation ↗</a> for php configuration notes and the php configuration of your server, especially when using php-fpm." : "Ju lutemi, kontrolloni <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">dokumentimin e instalimit ↗</a> për shënime rreth formësimit të php-së dhe formësimin php të shërbyesit tuaj, veçanërisht kur përdoret using php-fpm.", - "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." : "Rregullimi Vetëm-Lexim u aktivizua. Kjo parandalon rregullimin e disa parametrave përmes ndërfaqes web. Më tej, për çdo përditësim kartela lyp të kalohet dorazi si e shkrueshme.", - "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "Duket se PHP-ja është rregulluar që të heqë blloqe të brendshme dokumentimi. Kjo do t’i bëjë të papërdrshme disa aplikacione bazë.", - "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Kjo ka gjasa të jetë shkaktuar nga një fshehtinë/përshpejtues i tillë si Zend OPcache ose eAccelerator.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Shërbyesi juaj xhiron nën Microsoft Windows. Këshillojmë fort Linux-in për punim optimal nga ana e përdoruesit.", - "%1$s below version %2$s is installed, for stability and performance reasons we recommend updating to a newer %1$s version." : "Ka të instaluar %1$s nën versionin %2$s, për arsye qëndrueshmërie dhe performance këshillojmë të përditësohet me një version %1$s më të ri.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Moduli PHP 'fileinfo' mungon. Ju këshillojmë me forcë ta aktivizoni këtë modul, për të patur përfundimet më të mira në zbulim llojesh MIME.", - "Transactional file locking is disabled, this might lead to issues with race conditions. Enable 'filelocking.enabled' in config.php to avoid these problems. See the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a> for more information." : "Kyçja e kartelave gjatë transaksioneve është e çaktivizuar, kjo mund të sjellë probleme me gjendje <em>race conditions</em>. Që të shmangni këto probleme, aktivizoni 'filelocking.enabled' te config.php. Për më tepër të dhëna, shihni <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">dokumentimin ↗</a>.", - "System locale can not be set to a one which supports UTF-8." : "Si vendore sistemi nuk mund të caktohet një që mbulon UTF-8.", - "This means that there might be problems with certain characters in file names." : "Kjo do të thotë që mund të ketë probleme me disa shenja në emra kartelash.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Këshillojmë me forcë instalimin në sistemin tuaj të paketave të domosdoshme për mbulim të një prej vendoreve vijuese: %s.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Nëse instalimi juaj nuk është bërë në rrënjë të përkatësisë dhe përdor cron sistemi, mund të ketë probleme me prodhimin e URL-së. Që të shmangen këto probleme, ju lutemi, jepini mundësisë \"overwrite.cli.url\" te kartela juaj config.php vlerën e shtegut webroot të instalimit tuaj (E këshillueshme: \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "S’qe e mundur të përmbushej akti cron përmes CLI-së. U shfaqën gabimet teknike vijuese:", - "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"#log-section\">log</a>." : "Ju lutemi, rihidhuni një sy <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">udhërrëfyesve të instalimit ↗</a>, dhe kontrolloni te <a href=\"#log-section\">regjistri</a> për çfarëdo gabimesh apo sinjalizimesh.", - "All checks passed." : "I kaloi krejt kontrollet.", - "Open documentation" : "Hapni dokumentimin", - "Allow apps to use the Share API" : "Lejoni aplikacionet të përdorin API Share", - "Allow users to share via link" : "Lejoji përdoruesit të ndajnë me të tjerët përmes lidhjesh", - "Enforce password protection" : "Detyro mbrojtje me fjalëkalim", - "Allow public uploads" : "Lejo ngarkime publike", - "Allow users to send mail notification for shared files" : "Lejoju përdoruesve të dërgojnë njoftime me email për kartela të ndara me të tjerët", - "Set default expiration date" : "Caktoni datë parazgjedhje skadimi", - "Expire after " : "Skadon pas ", - "days" : "ditësh", - "Enforce expiration date" : "Detyro datë skadimi", - "Allow resharing" : "Lejo rindarje", - "Allow sharing with groups" : "Lejoni ndarje me grupe", - "Restrict users to only share with users in their groups" : "Përdoruesve kufizoju të ndajnë gjëra vetëm me përdorues në grupin e tyre", - "Allow users to send mail notification for shared files to other users" : "Lejoju përdoruesve t’u dërgojnë përdoruesve të tjerë njoftime me email për kartela të ndara me të tjerët", - "Exclude groups from sharing" : "Përjashtoni grupe nga ndarjet", - "These groups will still be able to receive shares, but not to initiate them." : "Këto grupe prapë do të jenë në gjendje të marrin ndarje nga të tjerët, por jo të fillojnë të tilla.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Lejo vetëplotësim emra përdoruesish te dialogu i ndarjeve me të tjerët. Nëse kjo është e çaktivizuar, do të duhet të jepen emra përdoruesish.", - "Last cron job execution: %s." : "Përmbushja e fundit e aktit cron: %s.", - "Last cron job execution: %s. Something seems wrong." : "Përmbushja e fundit e aktit cron: %s. Duket se nuk shkon diçka.", - "Cron was not executed yet!" : "Cron-i s’qe ekzekutuar ende!", - "Execute one task with each page loaded" : "Kryeni vetëm një veprim me secilën prej faqeve të ngarkuara", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php është regjistruar te një shërbim webcron që ta aktivizojë cron.php-në çdo 15 minuta përmes http-je.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Përdorni shërbimin cron të sistemit që ta aktivizojë cron.php-në çdo 15 minuta.", - "Enable server-side encryption" : "Aktivizo fshehtëzim më anë të shërbyesit", - "Please read carefully before activating server-side encryption: " : "Ju lutemi, lexoni me kujdes përpara aktivizimit të fshehtëzimeve më anë shërbyesi: ", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "Pasi të jetë aktivizuar fshehtëzimi, krejt kartelat e ngarkuara te shërbyesi nga kjo pikë e tutje do të fshehtëzohen pasi të jenë depozituar në shërbyes. Çaktivizimi i fshehtëzimit në një datë të mëvonshme do të jetë i mundur vetëm nëse moduli aktiv i fshehtëzimeve e mbulon këtë funksion, dhe nëse plotësohen krejt parakushtet (p.sh. caktimi i një kyçi rimarrjesh).", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "Fshehtëzimi, dhe vetëm kaq, s’garanton sigurinë e sistemit. Ju lutemi, për më tepër të dhëna se si funksionon aplikacioni i fshehtëzimeve, dhe për raste përdorimi që mbulon, lexoni dokumentimin e ownCloud-it.", - "Be aware that encryption always increases the file size." : "Kini parasysh që fshehtëzimi e rrit gjithnjë madhësinë e kartelës.", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "Është gjithmonë ide e mirë të krijohen kopjeruajtje të rregullta të të dhënave tuaja, në rast fshehtëzimi sigurohuni që bëni kopjeruajtje të kyçeve të fshehtëzimit, tok me të dhënat tuaja.", - "This is the final warning: Do you really want to enable encryption?" : "Ky është sinjalizimi përfundimtar: Doni vërtet të aktivizohet fshehtëzimi?", - "Enable encryption" : "Aktivizoni fshehtëzim", - "No encryption module loaded, please enable an encryption module in the app menu." : "S’ka të ngarkuar modul fshehtëzimi, ju lutemi, aktivizoni një modul fshehtëzimi që nga menuja e aplikacionit.", - "Select default encryption module:" : "Përzgjidhni modul parazgjedhje fshehtëzimi:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Lypset të migroni kyçet tuaj të fshehtëzimit nga fshehtëzimi i vjetër (ownCloud <= 8.0) te i riu. Ju lutemi, aktivizoni \"Modul parazgjedhje fshehtëzimesh\" dhe ekzekutoni 'occ encryption:migrate'", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Lypset të migroni kyçet tuaj të fshehtëzimit nga fshehtëzimi i vjetër (ownCloud <= 8.0) te i riu.", - "Start migration" : "Fillo migrimin", - "This is used for sending out notifications." : "Ky përdoret për të dërguar njoftime.", - "Send mode" : "Mënyrë dërgimi", - "Encryption" : "Fshehtëzim", - "From address" : "Nga adresa", - "mail" : "email", - "Authentication method" : "Metodë mirëfilltësimi", - "Authentication required" : "Lypset mirëfilltësim", - "Server address" : "Adresë shërbyesi", - "Port" : "Portë", - "Credentials" : "Kredenciale", - "SMTP Username" : "Emër përdoruesi SMTP", - "SMTP Password" : "Fjalëkalim SMTP", - "Store credentials" : "Depozitoji kredencialet", - "Test email settings" : "Testoni rregullimet e email-it", - "Send email" : "Dërgo email", - "Download logfile" : "Shkarkoni kartelën regjistër", - "More" : "Më tepër", - "Less" : "Më pak", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Kartela regjistër është më e madhe se 100 MB. Shkarkimi i saj mund të hajë ca kohë!", - "What to log" : "Ç’të regjistrohet", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "Si bazë të dhënash përdoret SQLite. Për instalime më të ngarkuara, këshillojmë të kalohet në një program tjetër baze të dhënash.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Përdorimi i SQLite-it nuk këshillohet veçanërisht kur përdoret klienti desktop për njëkohësim kartelash.", - "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a>." : "Për të kaluar te një tjetër bazë të dhënash përdorni mjetin rresht urdhrash: 'occ db:convert-type', ose shihni <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">dokumentimin ↗</a>.", - "How to do backups" : "Si të bëhen kopjeruajtje", - "Advanced monitoring" : "Mbikëqyrje e mëtejshme", - "Performance tuning" : "Përimtime performance", - "Improving the config.php" : "Si të përmirësohet config.php", - "Theming" : "Ndryshim teme grafike", - "Hardening and security guidance" : "Udhëzime për forcim dhe siguri", - "Version" : "Version", - "Developer documentation" : "Dokumentim për zhvillues", - "Experimental applications ahead" : "Keni përpara aplikacione eksperimentale", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Aplikacionet eksperimentale nuk kontrollohen për probleme sigurie, mund të jenë të rinj ose të njohur si të paqëndrueshëm, dhe nën zhvillim intensiv. Instalimi i tyre mund të shkaktojë humbje të dhënash ose cenim të sigurisë.", - "by %s" : "nga %s", - "%s-licensed" : "licencuar prej %s", - "Documentation:" : "Dokumentim:", - "User documentation" : "Dokumentim për përdoruesit", - "Admin documentation" : "Dokumentim për përgjegjësit", - "Show description …" : "Shfaq përshkrim …", - "Hide description …" : "Fshihe përshkrimin …", - "This app has an update available." : "Ka gati një përditësim për këtë aplikacion.", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Ky aplikacion nuk ka të përcaktuar version minimum për ownCloud-in. Kjo do të përbëjë një gabim për ownCloud 11 dhe të mëvonshëm.", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Ky aplikacion nuk ka të përcaktuar version maksimum për ownCloud-in. Kjo do të përbëjë një gabim për ownCloud 11 dhe të mëvonshëm.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Ky aplikacion s’mund të instalohet, ngaqë për të nuk plotësohen varësitë vijuese:", - "Enable only for specific groups" : "Aktivizoje vetëm për grupe të veçantë", - "Uninstall App" : "Çinstaloje Aplikacionin", - "Enable experimental apps" : "Aktivizo aplikacione eksperimentale", - "SSL Root Certificates" : "Dëshmi SSL Rrënjë", - "Common Name" : "Emër i Rëndomtë", - "Valid until" : "E vlefshme deri më", - "Issued By" : "Lëshuar Nga", - "Valid until %s" : "E vlefshme deri më %s", - "Import root certificate" : "Importoni dëshmi rrënjë", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Njatjeta,<br><br>thjesht po ju bëjmë të ditur që tani keni një llogar %s.<br><br>Emri juaj i përdoruesit: %s<br>Hyni në të te: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Gëzuar!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Njatjeta,\n\nthjesht po ju bëjmë të ditur që tani keni një llogari %s.\n\nEmri juaj i përdoruesit: %s\nHyni në të te: %s\n\n", - "Administrator documentation" : "Dokumentim për përgjegjës", - "Online documentation" : "Dokumentim në Internet", - "Forum" : "Forum", - "Issue tracker" : "Gjurmues të metash", - "Commercial support" : "Asistencë komerciale", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "Po përdorni <strong>%s</strong> nga <strong>%s</strong>", - "Profile picture" : "Foto profili", - "Upload new" : "Ngarko të re", - "Select from Files" : "Përzgjidhni prej Kartelash", - "Remove image" : "Hiqe figurën", - "png or jpg, max. 20 MB" : "png ose jpg, maks. 20 MB", - "Picture provided by original account" : "Foto e prurë nga llogaria origjinale", - "Cancel" : "Anuloje", - "Choose as profile picture" : "Zgjidhni një foto profili", - "Full name" : "Emër i plotë", - "No display name set" : "S’është caktuar emër për në ekran", - "Email" : "Email", - "Your email address" : "Adresa juaj email", - "For password recovery and notifications" : "Për rimarrje fjalëkalimesh dhe njoftime ", - "No email address set" : "S’është caktuar adresë email", - "You are member of the following groups:" : "Jeni anëtar i grupeve vijuese:", - "Password" : "Fjalëkalim", - "Unable to change your password" : "S’arrin të ndryshojë fjalëkalimin tuaj", - "Current password" : "Fjalëkalimi i tanishëm", - "New password" : "Fjalëkalimi i ri", - "Change password" : "Ndrysho fjalëkalimin", - "Language" : "Gjuhë", - "Help translate" : "Ndihmoni në përkthim", - "Get the apps to sync your files" : "Merrni aplikacionet për njëkohësim të kartelave tuaja", - "Desktop client" : "Klient desktopi", - "Android app" : "Aplikacion për Android", - "iOS app" : "Aplikacion për iOS", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Nëse doni ta përkrahni projektin\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">merrni pjesë te zhvillimi i tij</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">përhapni fjalën për të</a>!", - "Show First Run Wizard again" : "Shfaqe sërish Ndihmësin e Herës së Parë", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Krijuar nga {communityopen}bashkësia ownCloud{linkclose}, {githubopen}kodi burim{linkclose} mund të përdoret sipas licencës {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}.", - "Show storage location" : "Shfaq vendndodhje depozite", - "Show last log in" : "Shfaq hyrjen e fundit", - "Show user backend" : "Shfaq programin klient të përdoruesit", - "Send email to new user" : "Dërgo email përdoruesi të ri", - "Show email address" : "Shfaq adresë email", - "Username" : "Emër përdoruesi", - "E-Mail" : "Email", - "Create" : "Krijoje", - "Admin Recovery Password" : "Fjalëkalim Rikthimesh Nga Përgjegjësi", - "Enter the recovery password in order to recover the users files during password change" : "Jepni fjalëkalim rimarrje që të mund të rimerrni kartela përdoruesi gjatë ndryshimit të fjalëkalimit", - "Add Group" : "Shtoni Grup", - "Group" : "Grup", - "Everyone" : "Kushdo", - "Admins" : "Administratorë", - "Default Quota" : "Kuota Parazgjedhje", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Ju lutemi, jepni kuotë depozitimi (psh: \"512 MB\" ose \"12 GB\")", - "Other" : "Tjetër", - "Full Name" : "Emri i Plotë", - "Group Admin for" : "Admin Grupi për", - "Quota" : "Kuota", - "Storage Location" : "Vendndodhje Depozite", - "User Backend" : "Program klient i përdoruesit", - "Last Login" : "Hyrja e fundit", - "change full name" : "ndryshoni emrin e plotë", - "set new password" : "caktoni fjalëkalim të ri", - "change email address" : "ndryshoni adresën email", - "Default" : "Parazgjedhje" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/sr.js b/settings/l10n/sr.js deleted file mode 100644 index db425c9bd34..00000000000 --- a/settings/l10n/sr.js +++ /dev/null @@ -1,260 +0,0 @@ -OC.L10N.register( - "settings", - { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Безбедносна и упозорења поставе", - "Sharing" : "Дељење", - "Server-side encryption" : "Шифровање на страни сервера", - "External Storage" : "Спољашње складиште", - "Cron" : "Крон", - "Email server" : "Сервер е-поште", - "Log" : "Бележење", - "Tips & tricks" : "Савети и трикови", - "Updates" : "Ажурирања", - "Couldn't remove app." : "Не могу да уклоним апликацију.", - "Language changed" : "Језик је промењен", - "Invalid request" : "Неисправан захтев", - "Authentication error" : "Грешка при провери идентитета", - "Admins can't remove themself from the admin group" : "Администратор не може себе да уклони из admin групе", - "Unable to add user to group %s" : "Не могу да додам корисника у групу %s", - "Unable to remove user from group %s" : "Не могу да уклоним корисника из групе %s", - "Couldn't update app." : "Не могу да ажурирам апликацију.", - "Wrong password" : "Погрешна лозинка", - "No user supplied" : "Није наведен корисник", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Наведите администраторску лозинку опоравка. У супротном, сви кориснички подаци биће изгубљени.", - "Wrong admin recovery password. Please check the password and try again." : "Погрешна администраторска лозинка опоравка. Проверите лозинку и покушајте поново.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Позадина не подржава измеу лозинке али кориснички шифрарски кључеви су успешно ажурирани.", - "Unable to change password" : "Не могу да променим лозинку", - "Enabled" : "Укључено", - "Not enabled" : "Искључено", - "Federated Cloud Sharing" : "Здружено дељење у облаку", - "A problem occurred, please check your log files (Error: %s)" : "Појавио се проблем. Проверите записнике (грешка: %s)", - "Migration Completed" : "Пресељење завршено", - "Group already exists." : "Група већ постоји.", - "Unable to add group." : "Није могуће додати групу.", - "Unable to delete group." : "Није могуће обрисати групу.", - "log-level out of allowed range" : "ниво бележења је ван дозвољеног опсега", - "Saved" : "Сачувано", - "test email settings" : "тестирајте поставке е-поште", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Појавио се проблем приликом слања е-поште. Проверите ваше поставке. (Грешка: %s)", - "Email sent" : "Порука је послата", - "You need to set your user email before being able to send test emails." : "Морате поставити адресу е-поште пре слања тестне поруке.", - "Invalid mail address" : "Неисправна е-адреса", - "A user with that name already exists." : "Корисник са тим именом већ постоји.", - "Unable to create user." : "Не могу да направим корисника.", - "Your %s account was created" : "Ваш %s налог је направљен", - "Unable to delete user." : "Не могу да обришем корисника.", - "Forbidden" : "Забрањено", - "Invalid user" : "Неисправан корисник", - "Unable to change mail address" : "Не могу да изменим е-адресу", - "Email saved" : "Е-порука сачувана", - "Your full name has been changed." : "Ваше пуно име је промењено.", - "Unable to change full name" : "Не могу да променим пуно име", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Да ли заиста желите да додате „{domain}“ као поуздан домен?", - "Add trusted domain" : "Додај поуздан домен", - "Migration in progress. Please wait until the migration is finished" : "Пресељење је у току. Сачекајте док се не заврши", - "Migration started …" : "Пресељење покренуто...", - "Sending..." : "Шаљем...", - "Official" : "Званичне", - "Approved" : "Одобрене", - "Experimental" : "Експерименталне", - "All" : "Све", - "No apps found for your version" : "Нема апликација за вашу верзију", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Званичнe апликације су развиjене од стране и унутар оунКлауд заједнице. Оне пружају главне функционалности и спремне су и стабилне за свакодневну употребу.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Одобрене апликације су развили проверени програмери и апликације су прошле основне безбедносне провере. Оне се активно одржавају у репозиторијуму за апликације отвореног кода и њихови одржаватељи сматрају да су стабилне за уобичајену употребу.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Ова апликација није проверена по питању безбедности и нова је или зна да буде нестабилна. Инсталирате је на сопствену одговорност.", - "Update to %s" : "Ажурирај на %s", - "Please wait...." : "Сачекајте…", - "Error while disabling app" : "Грешка при искључивању апликације", - "Disable" : "Искључи", - "Enable" : "Укључи", - "Error while enabling app" : "Грешка при укључивању апликације", - "Updating...." : "Ажурирам…", - "Error while updating app" : "Грешка при ажурирању апликације", - "Updated" : "Ажурирано", - "Uninstalling ...." : "Деинсталирам ...", - "Error while uninstalling app" : "Грешка при деинсталацији апликације", - "Uninstall" : "Деинсталирај", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Дошло је до грешке. Отпремите АСКИ кодирани ПЕМ сертификат.", - "Valid until {date}" : "Важи до {date}", - "Delete" : "Обриши", - "Select a profile picture" : "Изаберите слику профила", - "Very weak password" : "Веома слаба лозинка", - "Weak password" : "Слаба лозинка", - "So-so password" : "Осредња лозинка", - "Good password" : "Добра лозинка", - "Strong password" : "Јака лозинка", - "Groups" : "Групе", - "Unable to delete {objName}" : "Не могу да обришем {objName}", - "A valid group name must be provided" : "Мора бити наведено исправно име групе", - "deleted {groupName}" : "обрисана {groupName}", - "undo" : "опозови", - "no group" : "нема групе", - "never" : "никада", - "deleted {userName}" : "обрисан {userName}", - "add group" : "додај групу", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Измена лозинке ће резултирати губитком података јер опорављање података није доступно за овог корисника", - "A valid username must be provided" : "Морате унети исправно корисничко име", - "A valid password must be provided" : "Морате унети исправну лозинку", - "A valid email must be provided" : "Мора бити наведена исправна е-адреса", - "__language_name__" : "Српски", - "Unlimited" : "Неограничено", - "Personal info" : "Лични подаци", - "Sync clients" : "Синхронизовање клијената", - "Everything (fatal issues, errors, warnings, info, debug)" : "Све (фаталне проблеме, грешке, упозорења, информације, отклањање грешака)", - "Info, warnings, errors and fatal issues" : "Информације, упозорења, грешке и фатални проблеми", - "Warnings, errors and fatal issues" : "Упозорења, грешке и фатални проблеми", - "Errors and fatal issues" : "Грешке и фатални проблеми", - "Fatal issues only" : "Само фатални проблеми", - "None" : "Ништа", - "Login" : "Пријава", - "Plain" : "Обичан", - "NT LAN Manager" : "НТ ЛАН менаџер", - "SSL" : "ССЛ", - "TLS" : "ТЛС", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "ПХП није подешен да може да провери системске променљиве. Проба са getenv(\"PATH\") враћа празан одговор.", - "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." : "Омогућена је Само-читај конфигурација. То спречава постављање неке конфигурације преко веб-интерфејса. Осим тога, фајлу мора бити ручно омогућено уписивање код сваког освежавања.", - "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "ПХП је очигледно подешен да се скида уметнуте док блокова. То ће учинити неколико кључних апликација недоступним.", - "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Ово је вероватно изазвано кешом или акцелератором као што су ЗендОПкеш или еАкцелератор.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Ваш сервер ради под оперативним системом Microsoft Windows. Препоручујемо оперативни систем Linux за оптималaн кориснички доживљај.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Недостаје ПХП модул „fileinfo“. Препоручујемо вам да га укључите да бисте добили најбоље резултате с откривањем МИМЕ врста.", - "System locale can not be set to a one which supports UTF-8." : "Системски локалитет се не може поставити на неки који подржава УТФ-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", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Ако инсталација није инсталирана у основи домена и користи системски крон, може бити проблема са генерисањем веб адреса. Да бисте избегли ове проблеме, молимо вас да подесите \"overwrite.cli.url\" опцију у вашем config.php фајлу у путању веб-основе ваше инсталације (Предложено: \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Није било могуће да се изврши крон задатак путем интерфејса командне линије. Појавила су се следеће техничке грешке:", - "Open documentation" : "Отвори документацију", - "Allow apps to use the Share API" : "Дозвољава апликацијама да користе АПИ дељења", - "Allow users to share via link" : "Дозволи корисницима да деле путем везе", - "Enforce password protection" : "Захтевај заштиту лозинком", - "Allow public uploads" : "Дозволи јавна отпремања", - "Allow users to send mail notification for shared files" : "Дозволи корисницима да шаљу обавештења за дељене фајлове", - "Set default expiration date" : "Постави подразумевано време истека", - "Expire after " : "Истиче након", - "days" : "дана", - "Enforce expiration date" : "Захтевај датум истека", - "Allow resharing" : "Дозволи поновно дељење", - "Restrict users to only share with users in their groups" : "Ограничи кориснике да могу да деле само унутар групе", - "Allow users to send mail notification for shared files to other users" : "Дозволи корисницима да шаљу обавештења е-поштом за дељене фајлове", - "Exclude groups from sharing" : "Изузми групе из дељења", - "These groups will still be able to receive shares, but not to initiate them." : "Ове групе ће моћи да примају дељења али не и да их праве.", - "Last cron job execution: %s." : "Последњи извршени крон задатак: %s.", - "Last cron job execution: %s. Something seems wrong." : "Последњи извршени крон задатак: %s. Нешто изгледа није у реду.", - "Cron was not executed yet!" : "Крон задатак још увек није извршен!", - "Execute one task with each page loaded" : "Изврши један задатак са сваком учитаном страницом", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php је регистрован код вебкрон сервиса за позивање cron.php сваких 15 минута преко протокола http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Користите системски крон сервис за позивање cron.php фајла сваких 15 минута.", - "Enable server-side encryption" : "Укључи шифровање на страни сервера", - "Enable encryption" : "Укључи шифровање", - "No encryption module loaded, please enable an encryption module in the app menu." : "Шифрарски модул није учитан. Укључите га у менију апликација", - "Select default encryption module:" : "Изаберите подразумевани шифрарски модул:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Морате да пребаците старе шифрарске кључеве (оунКлауд <= 8.0) на нови. Укључите „оунКлауд подразумевани шифрарски модул“ и покрените 'occ encryption:migrate'", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Морате да преселите шифрарске кључеве старог шифровања (оунКлауд <= 8.0) на нове.", - "Start migration" : "Покрени пресељење", - "This is used for sending out notifications." : "Ово се користи за слање обавештења.", - "Send mode" : "Режим слања", - "Encryption" : "Шифровање", - "From address" : "Са адресе", - "mail" : "пошта", - "Authentication method" : "Начин аутентификације", - "Authentication required" : "Неопходна провера идентитета", - "Server address" : "Адреса сервера", - "Port" : "Порт", - "Credentials" : "Акредитиви", - "SMTP Username" : "СМТП корисничко име", - "SMTP Password" : "СМТП лозинка", - "Store credentials" : "Сачувај акредитиве", - "Test email settings" : "Тестирај поставке е-поште", - "Send email" : "Пошаљи е-пошту", - "Download logfile" : "Преузми записник", - "More" : "Више", - "Less" : "Мање", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Фајл записника је већи од 100МБ. Преузимање може потрајати!", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite се користи као базе података. За веће инсталације препоручујемо да се пребаците на други модел базе података.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Нарочито ако се користи клијент програм у графичком окружењу, коришћење СКуЛајта није препоручљиво.", - "How to do backups" : "Како правити резерве", - "Advanced monitoring" : "Напредно праћење", - "Performance tuning" : "Побољшање перформанси", - "Improving the config.php" : "Побољшање фајла поставки", - "Theming" : "Теме", - "Hardening and security guidance" : "Ојачавање система и безбедносне препоруке", - "Version" : "Верзија", - "Developer documentation" : "Програмерска документација", - "Experimental applications ahead" : "Експериментална апликација", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Експерименталне апликације се непроверене што се тиче безбедности и могу бити нестабилне и недовршене. Инсталирање може довести до губитка података или нарушавања безбедности.", - "Documentation:" : "Документација:", - "User documentation" : "Корисничка документација", - "Admin documentation" : "Администраторска документација", - "Show description …" : "Прикажи опис…", - "Hide description …" : "Сакриј опис…", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Апликација се не може инсталирати јер следеће зависности нису испуњене:", - "Enable only for specific groups" : "Укључи само за одређене групе", - "Uninstall App" : "Деинсталирај апликацију", - "Enable experimental apps" : "Укључи експерименталне апликације", - "Common Name" : "Уобичајено име", - "Valid until" : "Важи до", - "Issued By" : "Издавач", - "Valid until %s" : "Важи до %s", - "Import root certificate" : "Увоз кореног сертификата", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Поздрав,<br><br>само вас обавештавам да сад имате %s налог.<br><br>Ваше корисничко име: %s<br>Приступите му на: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Здраво!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Поздрав.\n\nСамо да знате да сада имате %s налог.\n\nВаше корисничко име: %s\nПриступите му на: %s\n", - "Administrator documentation" : "Администраторска документација", - "Online documentation" : "Документација на мрежи", - "Forum" : "Форум", - "Issue tracker" : "Пратилац проблема", - "Commercial support" : "Комерцијална подршка", - "Profile picture" : "Слика профила", - "Upload new" : "Отпреми нову", - "Remove image" : "Уклони слику", - "Cancel" : "Одустани", - "Full name" : "Пуно име", - "No display name set" : "Није постављено име за приказ", - "Email" : "Е-пошта", - "Your email address" : "Ваша адреса е-поште", - "No email address set" : "Није постављена е-адреса", - "You are member of the following groups:" : "Имате чланство у следећим групама:", - "Password" : "Лозинка", - "Unable to change your password" : "Не могу да изменим вашу лозинку", - "Current password" : "Тренутна лозинка", - "New password" : "Нова лозинка", - "Change password" : "Измени лозинку", - "Language" : "Језик", - "Help translate" : " Помозите у превођењу", - "Get the apps to sync your files" : "Преузмите апликације ради синхронизовања ваших фајлова", - "Desktop client" : "Клијент за рачунар", - "Android app" : "Андроид апликација", - "iOS app" : "иОС апликација", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Ако желите да подржите пројект\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">придружите се развоју</a>\n\t\tили\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">разгласите свима</a>!", - "Show First Run Wizard again" : "Поново прикажи чаробњака за прво покретање", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Развијено од стране {communityopen}оунКлауд заједнице{linkclose}, {githubopen}изворни код{linkclose} је лиценциран под {licenseopen}<abbr title=\"Аферо општа јавна лиценца\">АОЈЛ (AGPL)</abbr>{linkclose}.", - "Show storage location" : "Прикажи локацију складишта", - "Show last log in" : "Прикажи последњу пријаву", - "Show user backend" : "Прикажи позадину за кориснике", - "Send email to new user" : "Пошаљи е-пошту новом кориснику", - "Show email address" : "Прикажи е-адресу", - "Username" : "Корисничко име", - "E-Mail" : "Е-пошта", - "Create" : "Направи", - "Admin Recovery Password" : "Администраторска лозинка за опоравак", - "Enter the recovery password in order to recover the users files during password change" : "Унесите лозинку за опоравак корисничких фајлова током промене лозинке", - "Add Group" : "Додај групу", - "Group" : "Група", - "Everyone" : "Сви", - "Admins" : "Администратори", - "Default Quota" : "Подразумевана квота", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Унесите квоту складиштења (нпр. 512 MB или 12 GB)", - "Other" : "Друго", - "Full Name" : "Пуно име", - "Group Admin for" : "Администратор група", - "Quota" : "Квота", - "Storage Location" : "Локација складишта", - "User Backend" : "Позадина за кориснике", - "Last Login" : "Последња пријава", - "change full name" : "измени пуно име", - "set new password" : "постави нову лозинку", - "change email address" : "измени е-адресу", - "Default" : "Подразумевано" -}, -"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"); diff --git a/settings/l10n/sr.json b/settings/l10n/sr.json deleted file mode 100644 index a57e517ae69..00000000000 --- a/settings/l10n/sr.json +++ /dev/null @@ -1,258 +0,0 @@ -{ "translations": { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Безбедносна и упозорења поставе", - "Sharing" : "Дељење", - "Server-side encryption" : "Шифровање на страни сервера", - "External Storage" : "Спољашње складиште", - "Cron" : "Крон", - "Email server" : "Сервер е-поште", - "Log" : "Бележење", - "Tips & tricks" : "Савети и трикови", - "Updates" : "Ажурирања", - "Couldn't remove app." : "Не могу да уклоним апликацију.", - "Language changed" : "Језик је промењен", - "Invalid request" : "Неисправан захтев", - "Authentication error" : "Грешка при провери идентитета", - "Admins can't remove themself from the admin group" : "Администратор не може себе да уклони из admin групе", - "Unable to add user to group %s" : "Не могу да додам корисника у групу %s", - "Unable to remove user from group %s" : "Не могу да уклоним корисника из групе %s", - "Couldn't update app." : "Не могу да ажурирам апликацију.", - "Wrong password" : "Погрешна лозинка", - "No user supplied" : "Није наведен корисник", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Наведите администраторску лозинку опоравка. У супротном, сви кориснички подаци биће изгубљени.", - "Wrong admin recovery password. Please check the password and try again." : "Погрешна администраторска лозинка опоравка. Проверите лозинку и покушајте поново.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Позадина не подржава измеу лозинке али кориснички шифрарски кључеви су успешно ажурирани.", - "Unable to change password" : "Не могу да променим лозинку", - "Enabled" : "Укључено", - "Not enabled" : "Искључено", - "Federated Cloud Sharing" : "Здружено дељење у облаку", - "A problem occurred, please check your log files (Error: %s)" : "Појавио се проблем. Проверите записнике (грешка: %s)", - "Migration Completed" : "Пресељење завршено", - "Group already exists." : "Група већ постоји.", - "Unable to add group." : "Није могуће додати групу.", - "Unable to delete group." : "Није могуће обрисати групу.", - "log-level out of allowed range" : "ниво бележења је ван дозвољеног опсега", - "Saved" : "Сачувано", - "test email settings" : "тестирајте поставке е-поште", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Појавио се проблем приликом слања е-поште. Проверите ваше поставке. (Грешка: %s)", - "Email sent" : "Порука је послата", - "You need to set your user email before being able to send test emails." : "Морате поставити адресу е-поште пре слања тестне поруке.", - "Invalid mail address" : "Неисправна е-адреса", - "A user with that name already exists." : "Корисник са тим именом већ постоји.", - "Unable to create user." : "Не могу да направим корисника.", - "Your %s account was created" : "Ваш %s налог је направљен", - "Unable to delete user." : "Не могу да обришем корисника.", - "Forbidden" : "Забрањено", - "Invalid user" : "Неисправан корисник", - "Unable to change mail address" : "Не могу да изменим е-адресу", - "Email saved" : "Е-порука сачувана", - "Your full name has been changed." : "Ваше пуно име је промењено.", - "Unable to change full name" : "Не могу да променим пуно име", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Да ли заиста желите да додате „{domain}“ као поуздан домен?", - "Add trusted domain" : "Додај поуздан домен", - "Migration in progress. Please wait until the migration is finished" : "Пресељење је у току. Сачекајте док се не заврши", - "Migration started …" : "Пресељење покренуто...", - "Sending..." : "Шаљем...", - "Official" : "Званичне", - "Approved" : "Одобрене", - "Experimental" : "Експерименталне", - "All" : "Све", - "No apps found for your version" : "Нема апликација за вашу верзију", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Званичнe апликације су развиjене од стране и унутар оунКлауд заједнице. Оне пружају главне функционалности и спремне су и стабилне за свакодневну употребу.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Одобрене апликације су развили проверени програмери и апликације су прошле основне безбедносне провере. Оне се активно одржавају у репозиторијуму за апликације отвореног кода и њихови одржаватељи сматрају да су стабилне за уобичајену употребу.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Ова апликација није проверена по питању безбедности и нова је или зна да буде нестабилна. Инсталирате је на сопствену одговорност.", - "Update to %s" : "Ажурирај на %s", - "Please wait...." : "Сачекајте…", - "Error while disabling app" : "Грешка при искључивању апликације", - "Disable" : "Искључи", - "Enable" : "Укључи", - "Error while enabling app" : "Грешка при укључивању апликације", - "Updating...." : "Ажурирам…", - "Error while updating app" : "Грешка при ажурирању апликације", - "Updated" : "Ажурирано", - "Uninstalling ...." : "Деинсталирам ...", - "Error while uninstalling app" : "Грешка при деинсталацији апликације", - "Uninstall" : "Деинсталирај", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Дошло је до грешке. Отпремите АСКИ кодирани ПЕМ сертификат.", - "Valid until {date}" : "Важи до {date}", - "Delete" : "Обриши", - "Select a profile picture" : "Изаберите слику профила", - "Very weak password" : "Веома слаба лозинка", - "Weak password" : "Слаба лозинка", - "So-so password" : "Осредња лозинка", - "Good password" : "Добра лозинка", - "Strong password" : "Јака лозинка", - "Groups" : "Групе", - "Unable to delete {objName}" : "Не могу да обришем {objName}", - "A valid group name must be provided" : "Мора бити наведено исправно име групе", - "deleted {groupName}" : "обрисана {groupName}", - "undo" : "опозови", - "no group" : "нема групе", - "never" : "никада", - "deleted {userName}" : "обрисан {userName}", - "add group" : "додај групу", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Измена лозинке ће резултирати губитком података јер опорављање података није доступно за овог корисника", - "A valid username must be provided" : "Морате унети исправно корисничко име", - "A valid password must be provided" : "Морате унети исправну лозинку", - "A valid email must be provided" : "Мора бити наведена исправна е-адреса", - "__language_name__" : "Српски", - "Unlimited" : "Неограничено", - "Personal info" : "Лични подаци", - "Sync clients" : "Синхронизовање клијената", - "Everything (fatal issues, errors, warnings, info, debug)" : "Све (фаталне проблеме, грешке, упозорења, информације, отклањање грешака)", - "Info, warnings, errors and fatal issues" : "Информације, упозорења, грешке и фатални проблеми", - "Warnings, errors and fatal issues" : "Упозорења, грешке и фатални проблеми", - "Errors and fatal issues" : "Грешке и фатални проблеми", - "Fatal issues only" : "Само фатални проблеми", - "None" : "Ништа", - "Login" : "Пријава", - "Plain" : "Обичан", - "NT LAN Manager" : "НТ ЛАН менаџер", - "SSL" : "ССЛ", - "TLS" : "ТЛС", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "ПХП није подешен да може да провери системске променљиве. Проба са getenv(\"PATH\") враћа празан одговор.", - "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." : "Омогућена је Само-читај конфигурација. То спречава постављање неке конфигурације преко веб-интерфејса. Осим тога, фајлу мора бити ручно омогућено уписивање код сваког освежавања.", - "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "ПХП је очигледно подешен да се скида уметнуте док блокова. То ће учинити неколико кључних апликација недоступним.", - "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Ово је вероватно изазвано кешом или акцелератором као што су ЗендОПкеш или еАкцелератор.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Ваш сервер ради под оперативним системом Microsoft Windows. Препоручујемо оперативни систем Linux за оптималaн кориснички доживљај.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Недостаје ПХП модул „fileinfo“. Препоручујемо вам да га укључите да бисте добили најбоље резултате с откривањем МИМЕ врста.", - "System locale can not be set to a one which supports UTF-8." : "Системски локалитет се не може поставити на неки који подржава УТФ-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", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Ако инсталација није инсталирана у основи домена и користи системски крон, може бити проблема са генерисањем веб адреса. Да бисте избегли ове проблеме, молимо вас да подесите \"overwrite.cli.url\" опцију у вашем config.php фајлу у путању веб-основе ваше инсталације (Предложено: \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Није било могуће да се изврши крон задатак путем интерфејса командне линије. Појавила су се следеће техничке грешке:", - "Open documentation" : "Отвори документацију", - "Allow apps to use the Share API" : "Дозвољава апликацијама да користе АПИ дељења", - "Allow users to share via link" : "Дозволи корисницима да деле путем везе", - "Enforce password protection" : "Захтевај заштиту лозинком", - "Allow public uploads" : "Дозволи јавна отпремања", - "Allow users to send mail notification for shared files" : "Дозволи корисницима да шаљу обавештења за дељене фајлове", - "Set default expiration date" : "Постави подразумевано време истека", - "Expire after " : "Истиче након", - "days" : "дана", - "Enforce expiration date" : "Захтевај датум истека", - "Allow resharing" : "Дозволи поновно дељење", - "Restrict users to only share with users in their groups" : "Ограничи кориснике да могу да деле само унутар групе", - "Allow users to send mail notification for shared files to other users" : "Дозволи корисницима да шаљу обавештења е-поштом за дељене фајлове", - "Exclude groups from sharing" : "Изузми групе из дељења", - "These groups will still be able to receive shares, but not to initiate them." : "Ове групе ће моћи да примају дељења али не и да их праве.", - "Last cron job execution: %s." : "Последњи извршени крон задатак: %s.", - "Last cron job execution: %s. Something seems wrong." : "Последњи извршени крон задатак: %s. Нешто изгледа није у реду.", - "Cron was not executed yet!" : "Крон задатак још увек није извршен!", - "Execute one task with each page loaded" : "Изврши један задатак са сваком учитаном страницом", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php је регистрован код вебкрон сервиса за позивање cron.php сваких 15 минута преко протокола http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Користите системски крон сервис за позивање cron.php фајла сваких 15 минута.", - "Enable server-side encryption" : "Укључи шифровање на страни сервера", - "Enable encryption" : "Укључи шифровање", - "No encryption module loaded, please enable an encryption module in the app menu." : "Шифрарски модул није учитан. Укључите га у менију апликација", - "Select default encryption module:" : "Изаберите подразумевани шифрарски модул:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Морате да пребаците старе шифрарске кључеве (оунКлауд <= 8.0) на нови. Укључите „оунКлауд подразумевани шифрарски модул“ и покрените 'occ encryption:migrate'", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Морате да преселите шифрарске кључеве старог шифровања (оунКлауд <= 8.0) на нове.", - "Start migration" : "Покрени пресељење", - "This is used for sending out notifications." : "Ово се користи за слање обавештења.", - "Send mode" : "Режим слања", - "Encryption" : "Шифровање", - "From address" : "Са адресе", - "mail" : "пошта", - "Authentication method" : "Начин аутентификације", - "Authentication required" : "Неопходна провера идентитета", - "Server address" : "Адреса сервера", - "Port" : "Порт", - "Credentials" : "Акредитиви", - "SMTP Username" : "СМТП корисничко име", - "SMTP Password" : "СМТП лозинка", - "Store credentials" : "Сачувај акредитиве", - "Test email settings" : "Тестирај поставке е-поште", - "Send email" : "Пошаљи е-пошту", - "Download logfile" : "Преузми записник", - "More" : "Више", - "Less" : "Мање", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Фајл записника је већи од 100МБ. Преузимање може потрајати!", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite се користи као базе података. За веће инсталације препоручујемо да се пребаците на други модел базе података.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Нарочито ако се користи клијент програм у графичком окружењу, коришћење СКуЛајта није препоручљиво.", - "How to do backups" : "Како правити резерве", - "Advanced monitoring" : "Напредно праћење", - "Performance tuning" : "Побољшање перформанси", - "Improving the config.php" : "Побољшање фајла поставки", - "Theming" : "Теме", - "Hardening and security guidance" : "Ојачавање система и безбедносне препоруке", - "Version" : "Верзија", - "Developer documentation" : "Програмерска документација", - "Experimental applications ahead" : "Експериментална апликација", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Експерименталне апликације се непроверене што се тиче безбедности и могу бити нестабилне и недовршене. Инсталирање може довести до губитка података или нарушавања безбедности.", - "Documentation:" : "Документација:", - "User documentation" : "Корисничка документација", - "Admin documentation" : "Администраторска документација", - "Show description …" : "Прикажи опис…", - "Hide description …" : "Сакриј опис…", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Апликација се не може инсталирати јер следеће зависности нису испуњене:", - "Enable only for specific groups" : "Укључи само за одређене групе", - "Uninstall App" : "Деинсталирај апликацију", - "Enable experimental apps" : "Укључи експерименталне апликације", - "Common Name" : "Уобичајено име", - "Valid until" : "Важи до", - "Issued By" : "Издавач", - "Valid until %s" : "Важи до %s", - "Import root certificate" : "Увоз кореног сертификата", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Поздрав,<br><br>само вас обавештавам да сад имате %s налог.<br><br>Ваше корисничко име: %s<br>Приступите му на: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Здраво!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Поздрав.\n\nСамо да знате да сада имате %s налог.\n\nВаше корисничко име: %s\nПриступите му на: %s\n", - "Administrator documentation" : "Администраторска документација", - "Online documentation" : "Документација на мрежи", - "Forum" : "Форум", - "Issue tracker" : "Пратилац проблема", - "Commercial support" : "Комерцијална подршка", - "Profile picture" : "Слика профила", - "Upload new" : "Отпреми нову", - "Remove image" : "Уклони слику", - "Cancel" : "Одустани", - "Full name" : "Пуно име", - "No display name set" : "Није постављено име за приказ", - "Email" : "Е-пошта", - "Your email address" : "Ваша адреса е-поште", - "No email address set" : "Није постављена е-адреса", - "You are member of the following groups:" : "Имате чланство у следећим групама:", - "Password" : "Лозинка", - "Unable to change your password" : "Не могу да изменим вашу лозинку", - "Current password" : "Тренутна лозинка", - "New password" : "Нова лозинка", - "Change password" : "Измени лозинку", - "Language" : "Језик", - "Help translate" : " Помозите у превођењу", - "Get the apps to sync your files" : "Преузмите апликације ради синхронизовања ваших фајлова", - "Desktop client" : "Клијент за рачунар", - "Android app" : "Андроид апликација", - "iOS app" : "иОС апликација", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Ако желите да подржите пројект\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">придружите се развоју</a>\n\t\tили\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">разгласите свима</a>!", - "Show First Run Wizard again" : "Поново прикажи чаробњака за прво покретање", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Развијено од стране {communityopen}оунКлауд заједнице{linkclose}, {githubopen}изворни код{linkclose} је лиценциран под {licenseopen}<abbr title=\"Аферо општа јавна лиценца\">АОЈЛ (AGPL)</abbr>{linkclose}.", - "Show storage location" : "Прикажи локацију складишта", - "Show last log in" : "Прикажи последњу пријаву", - "Show user backend" : "Прикажи позадину за кориснике", - "Send email to new user" : "Пошаљи е-пошту новом кориснику", - "Show email address" : "Прикажи е-адресу", - "Username" : "Корисничко име", - "E-Mail" : "Е-пошта", - "Create" : "Направи", - "Admin Recovery Password" : "Администраторска лозинка за опоравак", - "Enter the recovery password in order to recover the users files during password change" : "Унесите лозинку за опоравак корисничких фајлова током промене лозинке", - "Add Group" : "Додај групу", - "Group" : "Група", - "Everyone" : "Сви", - "Admins" : "Администратори", - "Default Quota" : "Подразумевана квота", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Унесите квоту складиштења (нпр. 512 MB или 12 GB)", - "Other" : "Друго", - "Full Name" : "Пуно име", - "Group Admin for" : "Администратор група", - "Quota" : "Квота", - "Storage Location" : "Локација складишта", - "User Backend" : "Позадина за кориснике", - "Last Login" : "Последња пријава", - "change full name" : "измени пуно име", - "set new password" : "постави нову лозинку", - "change email address" : "измени е-адресу", - "Default" : "Подразумевано" -},"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);" -}
\ No newline at end of file diff --git a/settings/l10n/sr@latin.js b/settings/l10n/sr@latin.js deleted file mode 100644 index 74140b16670..00000000000 --- a/settings/l10n/sr@latin.js +++ /dev/null @@ -1,38 +0,0 @@ -OC.L10N.register( - "settings", - { - "External Storage" : "Spoljašnje skladište", - "Updates" : "Ažuriranja", - "Language changed" : "Jezik je izmenjen", - "Invalid request" : "Neispravan zahtev", - "Authentication error" : "Greška pri autentifikaciji", - "Saved" : "Sačuvano", - "Email sent" : "Email poslat", - "Delete" : "Obriši", - "Very weak password" : "Veoma slaba lozinka", - "Weak password" : "Slaba lozinka", - "So-so password" : "Osrednja lozinka", - "Good password" : "Dobra lozinka", - "Strong password" : "Jaka lozinka", - "Groups" : "Grupe", - "never" : "nikad", - "Port" : "Port", - "Cheers!" : "U zdravlje!", - "Cancel" : "Otkaži", - "Email" : "E-mail", - "Password" : "Lozinka", - "Unable to change your password" : "Ne mogu da izmenim vašu lozinku", - "Current password" : "Trenutna lozinka", - "New password" : "Nova lozinka", - "Change password" : "Izmeni lozinku", - "Language" : "Jezik", - "Get the apps to sync your files" : "Preuzmite aplikacije za sinhronizaciju Vaših fajlova", - "Desktop client" : "Desktop klijent", - "Android app" : "Android aplikacija", - "iOS app" : "iOS aplikacija", - "Username" : "Korisničko ime", - "Create" : "Napravi", - "Group" : "Grupa", - "Other" : "Drugo" -}, -"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"); diff --git a/settings/l10n/sr@latin.json b/settings/l10n/sr@latin.json deleted file mode 100644 index e2265e5ff1a..00000000000 --- a/settings/l10n/sr@latin.json +++ /dev/null @@ -1,36 +0,0 @@ -{ "translations": { - "External Storage" : "Spoljašnje skladište", - "Updates" : "Ažuriranja", - "Language changed" : "Jezik je izmenjen", - "Invalid request" : "Neispravan zahtev", - "Authentication error" : "Greška pri autentifikaciji", - "Saved" : "Sačuvano", - "Email sent" : "Email poslat", - "Delete" : "Obriši", - "Very weak password" : "Veoma slaba lozinka", - "Weak password" : "Slaba lozinka", - "So-so password" : "Osrednja lozinka", - "Good password" : "Dobra lozinka", - "Strong password" : "Jaka lozinka", - "Groups" : "Grupe", - "never" : "nikad", - "Port" : "Port", - "Cheers!" : "U zdravlje!", - "Cancel" : "Otkaži", - "Email" : "E-mail", - "Password" : "Lozinka", - "Unable to change your password" : "Ne mogu da izmenim vašu lozinku", - "Current password" : "Trenutna lozinka", - "New password" : "Nova lozinka", - "Change password" : "Izmeni lozinku", - "Language" : "Jezik", - "Get the apps to sync your files" : "Preuzmite aplikacije za sinhronizaciju Vaših fajlova", - "Desktop client" : "Desktop klijent", - "Android app" : "Android aplikacija", - "iOS app" : "iOS aplikacija", - "Username" : "Korisničko ime", - "Create" : "Napravi", - "Group" : "Grupa", - "Other" : "Drugo" -},"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);" -}
\ No newline at end of file diff --git a/settings/l10n/sv.js b/settings/l10n/sv.js deleted file mode 100644 index 82dfa175973..00000000000 --- a/settings/l10n/sv.js +++ /dev/null @@ -1,298 +0,0 @@ -OC.L10N.register( - "settings", - { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Säkerhet & systemvarningar", - "Sharing" : "Dela", - "Server-side encryption" : "Serverkryptering", - "External Storage" : "Extern lagring", - "Cron" : "Cron", - "Email server" : "E-post server", - "Log" : "Logg", - "Tips & tricks" : "Tips & tricks", - "Updates" : "Uppdateringar", - "Couldn't remove app." : "Kunde inte ta bort applikationen.", - "Language changed" : "Språk ändrades", - "Invalid request" : "Ogiltig begäran", - "Authentication error" : "Fel vid autentisering", - "Admins can't remove themself from the admin group" : "Administratörer kan inte ta bort sig själva från admingruppen", - "Unable to add user to group %s" : "Kan inte lägga till användare i gruppen %s", - "Unable to remove user from group %s" : "Kan inte radera användare från gruppen %s", - "Couldn't update app." : "Kunde inte uppdatera appen.", - "Wrong password" : "Fel lösenord", - "No user supplied" : "Ingen användare angiven", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Ange ett återställningslösenord för administratören. Annars kommer all användardata förloras", - "Wrong admin recovery password. Please check the password and try again." : "Felaktigt återställningslösenord för administratör. Kolla lösenordet och prova igen.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Backend stödjer ej lösenordsbyte, men användarens ändring av krypteringsnyckel lyckades.", - "Unable to change password" : "Kunde inte ändra lösenord", - "Enabled" : "Aktiverad", - "Not enabled" : "Inte aktiverad", - "installing and updating apps via the app store or Federated Cloud Sharing" : "installering och uppdatering utav applikationer eller Federate Cloud delning.", - "Federated Cloud Sharing" : "Federate Cloud delning", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL använder en föråldrad %s version (%s). Var god uppdatera ditt operativsystem annars kan funktioner som %s sluta fungera pålitligt.", - "A problem occurred, please check your log files (Error: %s)" : "Ett problem uppstod, var god kontrollera loggfiler (Error: %s)", - "Migration Completed" : "Migrering Färdigställd", - "Group already exists." : "Gruppen finns redan.", - "Unable to add group." : "Lyckades inte lägga till grupp.", - "Unable to delete group." : "Lyckades inte radera grupp.", - "log-level out of allowed range" : "logg-nivå utanför tillåtet område", - "Saved" : "Sparad", - "test email settings" : "Testa e-post inställningar", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Ett problem uppstod när mail försökte skickas. Var god kontrollera dina inställningar. (Error: %s)", - "Email sent" : "E-post skickad", - "You need to set your user email before being able to send test emails." : "Du behöver ställa in din användares e-postadress före du kan skicka test e-post.", - "Invalid mail address" : "Ogiltig e-postadress", - "A user with that name already exists." : "En användare med det namnet existerar redan.", - "Unable to create user." : "Kan inte skapa användare.", - "Your %s account was created" : "Ditt %s konto skapades", - "Unable to delete user." : "Kan inte radera användare.", - "Forbidden" : "Förbjuden", - "Invalid user" : "Ogiltig användare", - "Unable to change mail address" : "Kan inte ändra e-postadress", - "Email saved" : "E-post sparad", - "Your full name has been changed." : "Hela ditt namn har ändrats", - "Unable to change full name" : "Kunde inte ändra hela namnet", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Är du verkligen säker på att du vill lägga till \"{domain}\" som en trusted domian?", - "Add trusted domain" : "Lägg till betrodd domän", - "Migration in progress. Please wait until the migration is finished" : "Migrering pågår. Var god vänta tills migreringen är färdigställd.", - "Migration started …" : "Migrering påbörjad ...", - "Sending..." : "Skickar ...", - "Official" : "Officiell", - "Approved" : "Godkänd", - "Experimental" : "Experimentiell", - "All" : "Alla", - "No apps found for your version" : "Inga appar funna för din version", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Officiella appar är utvecklade av Owncloud's community. De erbjuder funtionalitet som är centralt för owncloud och redo för användning i produktion.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Godkända appar är utvecklade av betrodda utvecklare och har genomgått enklare säkerhetstester. De är aktivt utvecklade i ett öppet kodbibliotek och deras underhållare anser dom stabila nog för enklare till normalt användande.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Denna applikation är ej kontrollerad för säkerhetsbrister och är ny eller känd att orsaka instabilitetsproblem. Installera på egen risk.", - "Update to %s" : "Uppdatera till %s", - "_You have %n app update pending_::_You have %n app updates pending_" : ["Du har %n applikationsuppdatering väntandes.","Du har %n applikationsuppdateringar väntandes."], - "Please wait...." : "Var god vänta ...", - "Error while disabling app" : "Fel vid inaktivering av app", - "Disable" : "Deaktivera", - "Enable" : "Aktivera", - "Error while enabling app" : "Fel vid aktivering av app", - "Error: this app cannot be enabled because it makes the server unstable" : "Fel uppstod: Denna applikation kan ej startas för det gör servern ostabil.", - "Error: could not disable broken app" : "Fel: Gick ej att inaktivera trasig applikation.", - "Error while disabling broken app" : "Fel under inaktivering av trasig applikation.", - "Updating...." : "Uppdaterar ...", - "Error while updating app" : "Fel uppstod vid uppdatering av appen", - "Updated" : "Uppdaterad", - "Uninstalling ...." : "Avinstallerar ...", - "Error while uninstalling app" : "Ett fel inträffade när applikatonen avinstallerades", - "Uninstall" : "Avinstallera", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Applikationen har aktiverats men behöver uppdateras. Du kommer bli omdirigerad till uppdateringssidan inom 5 sekunder.", - "App update" : "Uppdatering av app", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Ett fel uppstod. Var god ladda upp ett ASCII-kodad PEM certifikat.", - "Valid until {date}" : "Giltig t.o.m. {date}", - "Delete" : "Radera", - "An error occurred: {message}" : "Ett fel inträffade: {message}", - "Select a profile picture" : "Välj en profilbild", - "Very weak password" : "Väldigt svagt lösenord", - "Weak password" : "Svagt lösenord", - "So-so password" : "Okej lösenord", - "Good password" : "Bra lösenord", - "Strong password" : "Starkt lösenord", - "Groups" : "Grupper", - "Unable to delete {objName}" : "Kunde inte radera {objName}", - "Error creating group: {message}" : "Fel uppstod vid skapande av grupp: {message}", - "A valid group name must be provided" : "Ett giltigt gruppnamn måste anges", - "deleted {groupName}" : "raderade {groupName} ", - "undo" : "ångra", - "no group" : "ingen grupp", - "never" : "aldrig", - "deleted {userName}" : "raderade {userName}", - "add group" : "lägg till grupp", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Ändring utav lösenord kommer resultera i förlorad data, eftersom dataåterställning ej är tillgängligt för denna användare.", - "A valid username must be provided" : "Ett giltigt användarnamn måste anges", - "Error creating user: {message}" : "Fel uppstod när användare skulle skapas: {message}", - "A valid password must be provided" : "Ett giltigt lösenord måste anges", - "A valid email must be provided" : "En giltig e-postadress måste anges", - "__language_name__" : "__language_name__", - "Unlimited" : "Obegränsad", - "Personal info" : "Personlig information", - "Sync clients" : "Synk-klienter", - "Everything (fatal issues, errors, warnings, info, debug)" : "Allting (allvarliga fel, fel, varningar, info, debug)", - "Info, warnings, errors and fatal issues" : "Info, varningar och allvarliga fel", - "Warnings, errors and fatal issues" : "Varningar, fel och allvarliga fel", - "Errors and fatal issues" : "Fel och allvarliga fel", - "Fatal issues only" : "Endast allvarliga fel", - "None" : "Ingen", - "Login" : "Logga in", - "Plain" : "Enkel", - "NT LAN Manager" : "NT LAN Manager", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "php verkar ej vara konfigurerat för att kunna skicka förfrågan om systemmiljövariabler. Testet med getenv(\"PATH\") returnerade bara ett tomt svar.", - "Please check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation documentation ↗</a> for php configuration notes and the php configuration of your server, especially when using php-fpm." : "Var god kontrollera <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\"> installationsdokumentationen ↗</a> för konfigurationsanteckningar för php och för php konfigurationen för din server, speciellt när php-fpm används.", - "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." : "Läs-bara konfigureringen har blivit aktiv. Detta förhindrar att några konfigureringar kan sättas via web-gränssnittet.", - "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP är tydligen inställd för att rensa inline doc block. Detta kommer att göra flera kärnapplikationer otillgängliga.", - "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Detta orsakas troligtvis av en cache/accelerator som t ex Zend OPchache eller eAccelerator.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Din server använder Microsoft Windows. Vi rekommenderar starkt Linux för en optimal användarerfarenhet.", - "%1$s below version %2$s is installed, for stability and performance reasons we recommend updating to a newer %1$s version." : "%1$s under version %2$s är installerad, för stabilitet och prestanda rekommenderar vi uppdatering till en nyare %1$s version.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP-modulen 'fileinfo' saknas. Vi rekommenderar starkt att aktivera den här modulen för att kunna upptäcka korrekt mime-typ.", - "Transactional file locking is disabled, this might lead to issues with race conditions. Enable 'filelocking.enabled' in config.php to avoid these problems. See the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a> for more information." : "Transactional file locking är inaktiverad, detta kan innebära konkurrenstillstånd. Aktivera \"filelocking.enabled' i config.php för att undvika dessa problem. Se <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">dokumentationen ↗</a> för mer information.", - "System locale can not be set to a one which supports UTF-8." : "Systemspråk kan inte ställas in till ett som stödjer UTF-8.", - "This means that there might be problems with certain characters in file names." : "Detta betyder att där kan komma att uppstå problem med vissa tecken i filnamn.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Vi rekommenderar starkt att installera de nödvändiga paketen på ditt system för att stödja en av följande språkversioner: %s.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Om din installation inte installerades på roten av domänen och använder system cron så kan det uppstå problem med URL-genereringen. För att undvika dessa problem, var vänlig sätt \"overwrite.cli.url\"-inställningen i din config.php-fil till webbrotsökvägen av din installation (Föreslagen: \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Det var ej möjligt att exekvera cronjob via CLI. Följande tekniska fel har uppstått:", - "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"#log-section\">log</a>." : "Var god dubbelkontrollera <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\"> installationsguiden ↗</a>, och kontrollera efter några fel eller varningar i <a href=\"#log-section\"> logfilen</a>.", - "All checks passed." : "Alla kontroller lyckades!", - "Open documentation" : "Öppna dokumentation", - "Allow apps to use the Share API" : "Tillåt applikationer att använda delat API", - "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", - "Allow sharing with groups" : "Tilåt delning med grupper", - "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 to other users" : "Tillåt användare att skicka mejlnotifiering för delade filer till andra användare", - "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.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Tillåt användarnamn att autokompletteras i delningsfönstret. Om det är inaktiverat krävs fullständigt användarnamn i rutan.", - "Last cron job execution: %s." : "Sista cron kördes %s", - "Last cron job execution: %s. Something seems wrong." : "Sista cron kördes %s. Något verkar vara fel.", - "Cron was not executed yet!" : "Cron har inte körts ännu!", - "Execute one task with each page loaded" : "Exekvera en uppgift vid varje sidladdning", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php är registrerad som en webcron service att ropa på cron.php varje 15 minuter över http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Använd systemets cron-tjänst för att anropa cron.php var 15:e minut.", - "Enable server-side encryption" : "Aktivera kryptering på server.", - "Please read carefully before activating server-side encryption: " : "OBS: Var god läs noga innan kryptering aktiveras på servern.", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "När kryptering är aktiverat, så kommer alla filer som laddas upp till servern från den tidpunkt och frammåt bli krypterad på servern. Det kommer bara vara möjligt att inaktivera kryptering vid ett senare tillfälle om krypteringsmodulen stödjer den funktionen och alla förvillkor (exempelvis använder återställningsnyckel) är mötta.", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "Kryptering ensamt garanterar inte säkerhet av själva systemet. Var god see Owncloud's dokumentation för mer information om hur krypteringsapplikationen fungerar, och de användarfallen som stöds.", - "Be aware that encryption always increases the file size." : "OBS! Observera att kryptering alltid ökar filstorleken", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "Det är alltid en god ide att skapa regelbundna säkerhetskopior av din data, om kryptering används var säker på att även krypteringsnycklarna säkerhetskopieras tillsammans med din data.", - "This is the final warning: Do you really want to enable encryption?" : "Detta är en slutgiltig varning: Vill du verkligen aktivera kryptering?", - "Enable encryption" : "Aktivera kryptering", - "No encryption module loaded, please enable an encryption module in the app menu." : "Ingen krypteringsmodul laddad, var god aktivera krypteringsmodulen i applikationsmenyn.", - "Select default encryption module:" : "Välj standard krypteringsmodul:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Du behöver migrera dina krypteringsnycklar från den gamla krypteringen (owncloud <= 8.0) till den nya. Var god aktivera \"Default encryption module\" och kör 'occ encryption:migrate'.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Du behöver migrera dina krypteringsnycklar från den gamla krypteringen (owncloud <= 8.0) till den nya.", - "Start migration" : "Starta migrering", - "This is used for sending out notifications." : "Detta används för att skicka ut notifieringar.", - "Send mode" : "Sändningsläge", - "Encryption" : "Kryptering", - "From address" : "Från adress", - "mail" : "mail", - "Authentication method" : "Autentiseringsmetod", - "Authentication required" : "Autentisering krävs", - "Server address" : "Serveradress", - "Port" : "Port", - "Credentials" : "Inloggningsuppgifter", - "SMTP Username" : "SMTP-användarnamn", - "SMTP Password" : "SMTP-lösenord", - "Store credentials" : "Lagra inloggningsuppgifter", - "Test email settings" : "Testa e-postinställningar", - "Send email" : "Skicka e-post", - "Download logfile" : "Ladda ner loggfil", - "More" : "Mer", - "Less" : "Mindre", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Logfilen är större än 100 MB. Nerladdningen kan ta en stund!", - "What to log" : "Vad som ska loggas", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite används som databas. För större installationer så rekommenderar vi ett byte till en annan databasmotor.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Speciellt när desktop klienten för filsynkronisering används så avråds användande av SQLite.", - "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a>." : "För att migrera till en annan databas använd kommandoverktyget 'occ db:convert-type' eller se <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\"> dokumentationen ↗</a>", - "How to do backups" : "Hur man skapar säkerhetskopior", - "Advanced monitoring" : "Advancerad bevakning", - "Performance tuning" : "Prestanda inställningar", - "Improving the config.php" : "Förbättra config.php", - "Theming" : "Teman", - "Hardening and security guidance" : "Säkerhetsriktlinjer", - "Version" : "Version", - "Developer documentation" : "Utvecklar dokumentation", - "Experimental applications ahead" : "Experimentiella applikationer framför", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Experimentella applikationer är ej kontrollerade för säkerhetsproblem, nya eller kända att vara instabila och under föränderlig utveckling. Installation utav dessa kan orsaka dataförlust eller säkerhetsbrott.", - "by %s" : "av %s", - "%s-licensed" : "%s-licensierad.", - "Documentation:" : "Dokumentation:", - "User documentation" : "Användardokumentation", - "Admin documentation" : "Administratörsdokumentation", - "Show description …" : "Visa beskrivning", - "Hide description …" : "Dölj beskrivning", - "This app has an update available." : "Denna applikation har en uppdatering tillgänglig.", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Denna applikation har ingen minimum version av Owncloud tilldelad. Detta kommer rapporteras som ett fel i Owncloud 11 och senare.", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Denna applikation har ingen maximal version av Owncloud tilldelad. Detta kommer rapporteras som ett fel i Owncloud 11 och senare.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Denna applikation kan inte installeras då följande beroenden inte är uppfyllda: %s", - "Enable only for specific groups" : "Aktivera endast för specifika grupper", - "Uninstall App" : "Avinstallera applikation", - "Enable experimental apps" : "Aktivera experimentiella applikationer", - "SSL Root Certificates" : "SSL Root certifikat", - "Common Name" : "Vanligt namn", - "Valid until" : "Giltigt till", - "Issued By" : "Utfärdat av", - "Valid until %s" : "Giltigt till %s", - "Import root certificate" : "Importera root certifikat", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Hej där,<br><br>vill bara informera dig om att du nu har ett %s konto.<br><br>Ditt användarnamn: %s<br>Accessa det genom: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Ha de fint!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Hej där,\n\nvill bara informera dig om att du nu har ett %s konto.\n\nDitt användarnamn: %s\nAccessa det genom: %s\n", - "Administrator documentation" : "Administratörsdokumentation", - "Online documentation" : "Online dokumentation", - "Forum" : "Forum", - "Issue tracker" : "Felsökare", - "Commercial support" : "Kommersiell support", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "Du använder <strong>%s</strong> av <strong>%s</strong>", - "Profile picture" : "Profilbild", - "Upload new" : "Ladda upp ny", - "Select from Files" : "Välj från Filer", - "Remove image" : "Radera bild", - "png or jpg, max. 20 MB" : "png eller jpg, max 20 MB", - "Picture provided by original account" : "Bild gjordes tillgänglig av orginal konto", - "Cancel" : "Avbryt", - "Choose as profile picture" : "Välj som profilbild", - "Full name" : "Fullständigt namn", - "No display name set" : "Inget visningsnamn angivet", - "Email" : "E-post", - "Your email address" : "Din e-postadress", - "For password recovery and notifications" : "För lösenordsåterställning och notifieringar", - "No email address set" : "Ingen e-postadress angiven", - "You are member of the following groups:" : "Du är medlem i följande grupper:", - "Password" : "Lösenord", - "Unable to change your password" : "Kunde inte ändra ditt lösenord", - "Current password" : "Nuvarande lösenord", - "New password" : "Nytt lösenord", - "Change password" : "Ändra lösenord", - "Language" : "Språk", - "Help translate" : "Hjälp att översätta", - "Get the apps to sync your files" : "Skaffa apparna för att synkronisera dina filer", - "Desktop client" : "Skrivbordsklient", - "Android app" : "Android-app", - "iOS app" : "iOS-app", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Om du vill stödja projektet\n⇥⇥<a href=\"https://owncloud.org/contribute\"\n⇥⇥⇥target=\"_blank\" rel=\"noreferrer\">delta i utevcklingen</a>\n⇥⇥eller\n⇥⇥<a href=\"https://owncloud.org/promote\"\n⇥⇥⇥target=\"_blank\" rel=\"noreferrer\">sprid det vidare</a>!", - "Show First Run Wizard again" : "Visa Första uppstarts-guiden igen", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Utvecklad av {communityopen}ownCloud community{linkclose}, {githubopen}källkoden {linkclose} är licensierad under {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}.", - "Show storage location" : "Visa lagringsplats", - "Show last log in" : "Visa senaste inloggning", - "Show user backend" : "Visa användar-backend", - "Send email to new user" : "Skicka e-post till ny användare", - "Show email address" : "Visa e-postadress", - "Username" : "Användarnamn", - "E-Mail" : "E-post", - "Create" : "Skapa", - "Admin Recovery Password" : "Admin-återställningslösenord", - "Enter the recovery password in order to recover the users files during password change" : "Ange återställningslösenordet för att återställa användarnas filer vid lösenordsbyte", - "Add Group" : "Lägg till Grupp", - "Group" : "Grupp", - "Everyone" : "Alla", - "Admins" : "Administratörer", - "Default Quota" : "Förvald datakvot", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Var god skriv in lagringskvot (ex: \"512MB\" eller \"12 GB\")", - "Other" : "Annat", - "Full Name" : "Hela namnet", - "Group Admin for" : "Gruppadministratör för", - "Quota" : "Kvot", - "Storage Location" : "Lagringsplats", - "User Backend" : "Användar-back-end", - "Last Login" : "Senaste inloggning", - "change full name" : "ändra hela namnet", - "set new password" : "ange nytt lösenord", - "change email address" : "ändra e-postadress", - "Default" : "Förvald" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/sv.json b/settings/l10n/sv.json deleted file mode 100644 index a4e687f891d..00000000000 --- a/settings/l10n/sv.json +++ /dev/null @@ -1,296 +0,0 @@ -{ "translations": { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Säkerhet & systemvarningar", - "Sharing" : "Dela", - "Server-side encryption" : "Serverkryptering", - "External Storage" : "Extern lagring", - "Cron" : "Cron", - "Email server" : "E-post server", - "Log" : "Logg", - "Tips & tricks" : "Tips & tricks", - "Updates" : "Uppdateringar", - "Couldn't remove app." : "Kunde inte ta bort applikationen.", - "Language changed" : "Språk ändrades", - "Invalid request" : "Ogiltig begäran", - "Authentication error" : "Fel vid autentisering", - "Admins can't remove themself from the admin group" : "Administratörer kan inte ta bort sig själva från admingruppen", - "Unable to add user to group %s" : "Kan inte lägga till användare i gruppen %s", - "Unable to remove user from group %s" : "Kan inte radera användare från gruppen %s", - "Couldn't update app." : "Kunde inte uppdatera appen.", - "Wrong password" : "Fel lösenord", - "No user supplied" : "Ingen användare angiven", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Ange ett återställningslösenord för administratören. Annars kommer all användardata förloras", - "Wrong admin recovery password. Please check the password and try again." : "Felaktigt återställningslösenord för administratör. Kolla lösenordet och prova igen.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Backend stödjer ej lösenordsbyte, men användarens ändring av krypteringsnyckel lyckades.", - "Unable to change password" : "Kunde inte ändra lösenord", - "Enabled" : "Aktiverad", - "Not enabled" : "Inte aktiverad", - "installing and updating apps via the app store or Federated Cloud Sharing" : "installering och uppdatering utav applikationer eller Federate Cloud delning.", - "Federated Cloud Sharing" : "Federate Cloud delning", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL använder en föråldrad %s version (%s). Var god uppdatera ditt operativsystem annars kan funktioner som %s sluta fungera pålitligt.", - "A problem occurred, please check your log files (Error: %s)" : "Ett problem uppstod, var god kontrollera loggfiler (Error: %s)", - "Migration Completed" : "Migrering Färdigställd", - "Group already exists." : "Gruppen finns redan.", - "Unable to add group." : "Lyckades inte lägga till grupp.", - "Unable to delete group." : "Lyckades inte radera grupp.", - "log-level out of allowed range" : "logg-nivå utanför tillåtet område", - "Saved" : "Sparad", - "test email settings" : "Testa e-post inställningar", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Ett problem uppstod när mail försökte skickas. Var god kontrollera dina inställningar. (Error: %s)", - "Email sent" : "E-post skickad", - "You need to set your user email before being able to send test emails." : "Du behöver ställa in din användares e-postadress före du kan skicka test e-post.", - "Invalid mail address" : "Ogiltig e-postadress", - "A user with that name already exists." : "En användare med det namnet existerar redan.", - "Unable to create user." : "Kan inte skapa användare.", - "Your %s account was created" : "Ditt %s konto skapades", - "Unable to delete user." : "Kan inte radera användare.", - "Forbidden" : "Förbjuden", - "Invalid user" : "Ogiltig användare", - "Unable to change mail address" : "Kan inte ändra e-postadress", - "Email saved" : "E-post sparad", - "Your full name has been changed." : "Hela ditt namn har ändrats", - "Unable to change full name" : "Kunde inte ändra hela namnet", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Är du verkligen säker på att du vill lägga till \"{domain}\" som en trusted domian?", - "Add trusted domain" : "Lägg till betrodd domän", - "Migration in progress. Please wait until the migration is finished" : "Migrering pågår. Var god vänta tills migreringen är färdigställd.", - "Migration started …" : "Migrering påbörjad ...", - "Sending..." : "Skickar ...", - "Official" : "Officiell", - "Approved" : "Godkänd", - "Experimental" : "Experimentiell", - "All" : "Alla", - "No apps found for your version" : "Inga appar funna för din version", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Officiella appar är utvecklade av Owncloud's community. De erbjuder funtionalitet som är centralt för owncloud och redo för användning i produktion.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Godkända appar är utvecklade av betrodda utvecklare och har genomgått enklare säkerhetstester. De är aktivt utvecklade i ett öppet kodbibliotek och deras underhållare anser dom stabila nog för enklare till normalt användande.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Denna applikation är ej kontrollerad för säkerhetsbrister och är ny eller känd att orsaka instabilitetsproblem. Installera på egen risk.", - "Update to %s" : "Uppdatera till %s", - "_You have %n app update pending_::_You have %n app updates pending_" : ["Du har %n applikationsuppdatering väntandes.","Du har %n applikationsuppdateringar väntandes."], - "Please wait...." : "Var god vänta ...", - "Error while disabling app" : "Fel vid inaktivering av app", - "Disable" : "Deaktivera", - "Enable" : "Aktivera", - "Error while enabling app" : "Fel vid aktivering av app", - "Error: this app cannot be enabled because it makes the server unstable" : "Fel uppstod: Denna applikation kan ej startas för det gör servern ostabil.", - "Error: could not disable broken app" : "Fel: Gick ej att inaktivera trasig applikation.", - "Error while disabling broken app" : "Fel under inaktivering av trasig applikation.", - "Updating...." : "Uppdaterar ...", - "Error while updating app" : "Fel uppstod vid uppdatering av appen", - "Updated" : "Uppdaterad", - "Uninstalling ...." : "Avinstallerar ...", - "Error while uninstalling app" : "Ett fel inträffade när applikatonen avinstallerades", - "Uninstall" : "Avinstallera", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Applikationen har aktiverats men behöver uppdateras. Du kommer bli omdirigerad till uppdateringssidan inom 5 sekunder.", - "App update" : "Uppdatering av app", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Ett fel uppstod. Var god ladda upp ett ASCII-kodad PEM certifikat.", - "Valid until {date}" : "Giltig t.o.m. {date}", - "Delete" : "Radera", - "An error occurred: {message}" : "Ett fel inträffade: {message}", - "Select a profile picture" : "Välj en profilbild", - "Very weak password" : "Väldigt svagt lösenord", - "Weak password" : "Svagt lösenord", - "So-so password" : "Okej lösenord", - "Good password" : "Bra lösenord", - "Strong password" : "Starkt lösenord", - "Groups" : "Grupper", - "Unable to delete {objName}" : "Kunde inte radera {objName}", - "Error creating group: {message}" : "Fel uppstod vid skapande av grupp: {message}", - "A valid group name must be provided" : "Ett giltigt gruppnamn måste anges", - "deleted {groupName}" : "raderade {groupName} ", - "undo" : "ångra", - "no group" : "ingen grupp", - "never" : "aldrig", - "deleted {userName}" : "raderade {userName}", - "add group" : "lägg till grupp", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Ändring utav lösenord kommer resultera i förlorad data, eftersom dataåterställning ej är tillgängligt för denna användare.", - "A valid username must be provided" : "Ett giltigt användarnamn måste anges", - "Error creating user: {message}" : "Fel uppstod när användare skulle skapas: {message}", - "A valid password must be provided" : "Ett giltigt lösenord måste anges", - "A valid email must be provided" : "En giltig e-postadress måste anges", - "__language_name__" : "__language_name__", - "Unlimited" : "Obegränsad", - "Personal info" : "Personlig information", - "Sync clients" : "Synk-klienter", - "Everything (fatal issues, errors, warnings, info, debug)" : "Allting (allvarliga fel, fel, varningar, info, debug)", - "Info, warnings, errors and fatal issues" : "Info, varningar och allvarliga fel", - "Warnings, errors and fatal issues" : "Varningar, fel och allvarliga fel", - "Errors and fatal issues" : "Fel och allvarliga fel", - "Fatal issues only" : "Endast allvarliga fel", - "None" : "Ingen", - "Login" : "Logga in", - "Plain" : "Enkel", - "NT LAN Manager" : "NT LAN Manager", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "php verkar ej vara konfigurerat för att kunna skicka förfrågan om systemmiljövariabler. Testet med getenv(\"PATH\") returnerade bara ett tomt svar.", - "Please check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation documentation ↗</a> for php configuration notes and the php configuration of your server, especially when using php-fpm." : "Var god kontrollera <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\"> installationsdokumentationen ↗</a> för konfigurationsanteckningar för php och för php konfigurationen för din server, speciellt när php-fpm används.", - "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." : "Läs-bara konfigureringen har blivit aktiv. Detta förhindrar att några konfigureringar kan sättas via web-gränssnittet.", - "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP är tydligen inställd för att rensa inline doc block. Detta kommer att göra flera kärnapplikationer otillgängliga.", - "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Detta orsakas troligtvis av en cache/accelerator som t ex Zend OPchache eller eAccelerator.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Din server använder Microsoft Windows. Vi rekommenderar starkt Linux för en optimal användarerfarenhet.", - "%1$s below version %2$s is installed, for stability and performance reasons we recommend updating to a newer %1$s version." : "%1$s under version %2$s är installerad, för stabilitet och prestanda rekommenderar vi uppdatering till en nyare %1$s version.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP-modulen 'fileinfo' saknas. Vi rekommenderar starkt att aktivera den här modulen för att kunna upptäcka korrekt mime-typ.", - "Transactional file locking is disabled, this might lead to issues with race conditions. Enable 'filelocking.enabled' in config.php to avoid these problems. See the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a> for more information." : "Transactional file locking är inaktiverad, detta kan innebära konkurrenstillstånd. Aktivera \"filelocking.enabled' i config.php för att undvika dessa problem. Se <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">dokumentationen ↗</a> för mer information.", - "System locale can not be set to a one which supports UTF-8." : "Systemspråk kan inte ställas in till ett som stödjer UTF-8.", - "This means that there might be problems with certain characters in file names." : "Detta betyder att där kan komma att uppstå problem med vissa tecken i filnamn.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Vi rekommenderar starkt att installera de nödvändiga paketen på ditt system för att stödja en av följande språkversioner: %s.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Om din installation inte installerades på roten av domänen och använder system cron så kan det uppstå problem med URL-genereringen. För att undvika dessa problem, var vänlig sätt \"overwrite.cli.url\"-inställningen i din config.php-fil till webbrotsökvägen av din installation (Föreslagen: \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Det var ej möjligt att exekvera cronjob via CLI. Följande tekniska fel har uppstått:", - "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"#log-section\">log</a>." : "Var god dubbelkontrollera <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\"> installationsguiden ↗</a>, och kontrollera efter några fel eller varningar i <a href=\"#log-section\"> logfilen</a>.", - "All checks passed." : "Alla kontroller lyckades!", - "Open documentation" : "Öppna dokumentation", - "Allow apps to use the Share API" : "Tillåt applikationer att använda delat API", - "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", - "Allow sharing with groups" : "Tilåt delning med grupper", - "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 to other users" : "Tillåt användare att skicka mejlnotifiering för delade filer till andra användare", - "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.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Tillåt användarnamn att autokompletteras i delningsfönstret. Om det är inaktiverat krävs fullständigt användarnamn i rutan.", - "Last cron job execution: %s." : "Sista cron kördes %s", - "Last cron job execution: %s. Something seems wrong." : "Sista cron kördes %s. Något verkar vara fel.", - "Cron was not executed yet!" : "Cron har inte körts ännu!", - "Execute one task with each page loaded" : "Exekvera en uppgift vid varje sidladdning", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php är registrerad som en webcron service att ropa på cron.php varje 15 minuter över http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Använd systemets cron-tjänst för att anropa cron.php var 15:e minut.", - "Enable server-side encryption" : "Aktivera kryptering på server.", - "Please read carefully before activating server-side encryption: " : "OBS: Var god läs noga innan kryptering aktiveras på servern.", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "När kryptering är aktiverat, så kommer alla filer som laddas upp till servern från den tidpunkt och frammåt bli krypterad på servern. Det kommer bara vara möjligt att inaktivera kryptering vid ett senare tillfälle om krypteringsmodulen stödjer den funktionen och alla förvillkor (exempelvis använder återställningsnyckel) är mötta.", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "Kryptering ensamt garanterar inte säkerhet av själva systemet. Var god see Owncloud's dokumentation för mer information om hur krypteringsapplikationen fungerar, och de användarfallen som stöds.", - "Be aware that encryption always increases the file size." : "OBS! Observera att kryptering alltid ökar filstorleken", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "Det är alltid en god ide att skapa regelbundna säkerhetskopior av din data, om kryptering används var säker på att även krypteringsnycklarna säkerhetskopieras tillsammans med din data.", - "This is the final warning: Do you really want to enable encryption?" : "Detta är en slutgiltig varning: Vill du verkligen aktivera kryptering?", - "Enable encryption" : "Aktivera kryptering", - "No encryption module loaded, please enable an encryption module in the app menu." : "Ingen krypteringsmodul laddad, var god aktivera krypteringsmodulen i applikationsmenyn.", - "Select default encryption module:" : "Välj standard krypteringsmodul:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Du behöver migrera dina krypteringsnycklar från den gamla krypteringen (owncloud <= 8.0) till den nya. Var god aktivera \"Default encryption module\" och kör 'occ encryption:migrate'.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Du behöver migrera dina krypteringsnycklar från den gamla krypteringen (owncloud <= 8.0) till den nya.", - "Start migration" : "Starta migrering", - "This is used for sending out notifications." : "Detta används för att skicka ut notifieringar.", - "Send mode" : "Sändningsläge", - "Encryption" : "Kryptering", - "From address" : "Från adress", - "mail" : "mail", - "Authentication method" : "Autentiseringsmetod", - "Authentication required" : "Autentisering krävs", - "Server address" : "Serveradress", - "Port" : "Port", - "Credentials" : "Inloggningsuppgifter", - "SMTP Username" : "SMTP-användarnamn", - "SMTP Password" : "SMTP-lösenord", - "Store credentials" : "Lagra inloggningsuppgifter", - "Test email settings" : "Testa e-postinställningar", - "Send email" : "Skicka e-post", - "Download logfile" : "Ladda ner loggfil", - "More" : "Mer", - "Less" : "Mindre", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Logfilen är större än 100 MB. Nerladdningen kan ta en stund!", - "What to log" : "Vad som ska loggas", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite används som databas. För större installationer så rekommenderar vi ett byte till en annan databasmotor.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Speciellt när desktop klienten för filsynkronisering används så avråds användande av SQLite.", - "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a>." : "För att migrera till en annan databas använd kommandoverktyget 'occ db:convert-type' eller se <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\"> dokumentationen ↗</a>", - "How to do backups" : "Hur man skapar säkerhetskopior", - "Advanced monitoring" : "Advancerad bevakning", - "Performance tuning" : "Prestanda inställningar", - "Improving the config.php" : "Förbättra config.php", - "Theming" : "Teman", - "Hardening and security guidance" : "Säkerhetsriktlinjer", - "Version" : "Version", - "Developer documentation" : "Utvecklar dokumentation", - "Experimental applications ahead" : "Experimentiella applikationer framför", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Experimentella applikationer är ej kontrollerade för säkerhetsproblem, nya eller kända att vara instabila och under föränderlig utveckling. Installation utav dessa kan orsaka dataförlust eller säkerhetsbrott.", - "by %s" : "av %s", - "%s-licensed" : "%s-licensierad.", - "Documentation:" : "Dokumentation:", - "User documentation" : "Användardokumentation", - "Admin documentation" : "Administratörsdokumentation", - "Show description …" : "Visa beskrivning", - "Hide description …" : "Dölj beskrivning", - "This app has an update available." : "Denna applikation har en uppdatering tillgänglig.", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Denna applikation har ingen minimum version av Owncloud tilldelad. Detta kommer rapporteras som ett fel i Owncloud 11 och senare.", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Denna applikation har ingen maximal version av Owncloud tilldelad. Detta kommer rapporteras som ett fel i Owncloud 11 och senare.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Denna applikation kan inte installeras då följande beroenden inte är uppfyllda: %s", - "Enable only for specific groups" : "Aktivera endast för specifika grupper", - "Uninstall App" : "Avinstallera applikation", - "Enable experimental apps" : "Aktivera experimentiella applikationer", - "SSL Root Certificates" : "SSL Root certifikat", - "Common Name" : "Vanligt namn", - "Valid until" : "Giltigt till", - "Issued By" : "Utfärdat av", - "Valid until %s" : "Giltigt till %s", - "Import root certificate" : "Importera root certifikat", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Hej där,<br><br>vill bara informera dig om att du nu har ett %s konto.<br><br>Ditt användarnamn: %s<br>Accessa det genom: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Ha de fint!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Hej där,\n\nvill bara informera dig om att du nu har ett %s konto.\n\nDitt användarnamn: %s\nAccessa det genom: %s\n", - "Administrator documentation" : "Administratörsdokumentation", - "Online documentation" : "Online dokumentation", - "Forum" : "Forum", - "Issue tracker" : "Felsökare", - "Commercial support" : "Kommersiell support", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "Du använder <strong>%s</strong> av <strong>%s</strong>", - "Profile picture" : "Profilbild", - "Upload new" : "Ladda upp ny", - "Select from Files" : "Välj från Filer", - "Remove image" : "Radera bild", - "png or jpg, max. 20 MB" : "png eller jpg, max 20 MB", - "Picture provided by original account" : "Bild gjordes tillgänglig av orginal konto", - "Cancel" : "Avbryt", - "Choose as profile picture" : "Välj som profilbild", - "Full name" : "Fullständigt namn", - "No display name set" : "Inget visningsnamn angivet", - "Email" : "E-post", - "Your email address" : "Din e-postadress", - "For password recovery and notifications" : "För lösenordsåterställning och notifieringar", - "No email address set" : "Ingen e-postadress angiven", - "You are member of the following groups:" : "Du är medlem i följande grupper:", - "Password" : "Lösenord", - "Unable to change your password" : "Kunde inte ändra ditt lösenord", - "Current password" : "Nuvarande lösenord", - "New password" : "Nytt lösenord", - "Change password" : "Ändra lösenord", - "Language" : "Språk", - "Help translate" : "Hjälp att översätta", - "Get the apps to sync your files" : "Skaffa apparna för att synkronisera dina filer", - "Desktop client" : "Skrivbordsklient", - "Android app" : "Android-app", - "iOS app" : "iOS-app", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Om du vill stödja projektet\n⇥⇥<a href=\"https://owncloud.org/contribute\"\n⇥⇥⇥target=\"_blank\" rel=\"noreferrer\">delta i utevcklingen</a>\n⇥⇥eller\n⇥⇥<a href=\"https://owncloud.org/promote\"\n⇥⇥⇥target=\"_blank\" rel=\"noreferrer\">sprid det vidare</a>!", - "Show First Run Wizard again" : "Visa Första uppstarts-guiden igen", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Utvecklad av {communityopen}ownCloud community{linkclose}, {githubopen}källkoden {linkclose} är licensierad under {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}.", - "Show storage location" : "Visa lagringsplats", - "Show last log in" : "Visa senaste inloggning", - "Show user backend" : "Visa användar-backend", - "Send email to new user" : "Skicka e-post till ny användare", - "Show email address" : "Visa e-postadress", - "Username" : "Användarnamn", - "E-Mail" : "E-post", - "Create" : "Skapa", - "Admin Recovery Password" : "Admin-återställningslösenord", - "Enter the recovery password in order to recover the users files during password change" : "Ange återställningslösenordet för att återställa användarnas filer vid lösenordsbyte", - "Add Group" : "Lägg till Grupp", - "Group" : "Grupp", - "Everyone" : "Alla", - "Admins" : "Administratörer", - "Default Quota" : "Förvald datakvot", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Var god skriv in lagringskvot (ex: \"512MB\" eller \"12 GB\")", - "Other" : "Annat", - "Full Name" : "Hela namnet", - "Group Admin for" : "Gruppadministratör för", - "Quota" : "Kvot", - "Storage Location" : "Lagringsplats", - "User Backend" : "Användar-back-end", - "Last Login" : "Senaste inloggning", - "change full name" : "ändra hela namnet", - "set new password" : "ange nytt lösenord", - "change email address" : "ändra e-postadress", - "Default" : "Förvald" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/ta_IN.js b/settings/l10n/ta_IN.js deleted file mode 100644 index 83e55977512..00000000000 --- a/settings/l10n/ta_IN.js +++ /dev/null @@ -1,6 +0,0 @@ -OC.L10N.register( - "settings", - { - "More" : "மேலும்" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/ta_IN.json b/settings/l10n/ta_IN.json deleted file mode 100644 index 6c79fe76a8f..00000000000 --- a/settings/l10n/ta_IN.json +++ /dev/null @@ -1,4 +0,0 @@ -{ "translations": { - "More" : "மேலும்" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/ta_LK.js b/settings/l10n/ta_LK.js deleted file mode 100644 index b38eaf0eaaa..00000000000 --- a/settings/l10n/ta_LK.js +++ /dev/null @@ -1,43 +0,0 @@ -OC.L10N.register( - "settings", - { - "External Storage" : "வெளி சேமிப்பு", - "Language changed" : "மொழி மாற்றப்பட்டது", - "Invalid request" : "செல்லுபடியற்ற வேண்டுகோள்", - "Authentication error" : "அத்தாட்சிப்படுத்தலில் வழு", - "Unable to add user to group %s" : "குழு %s இல் பயனாளரை சேர்க்க முடியாது", - "Unable to remove user from group %s" : "குழு %s இலிருந்து பயனாளரை நீக்கமுடியாது", - "Email saved" : "மின்னஞ்சல் சேமிக்கப்பட்டது", - "All" : "எல்லாம்", - "Disable" : "இயலுமைப்ப", - "Enable" : "இயலுமைப்படுத்துக", - "Delete" : "நீக்குக", - "Groups" : "குழுக்கள்", - "undo" : "முன் செயல் நீக்கம் ", - "never" : "ஒருபோதும்", - "__language_name__" : "_மொழி_பெயர்_", - "None" : "ஒன்றுமில்லை", - "Login" : "புகுபதிகை", - "Encryption" : "மறைக்குறியீடு", - "Server address" : "சேவையக முகவரி", - "Port" : "துறை ", - "Credentials" : "சான்று ஆவணங்கள்", - "More" : "மேலதிக", - "Less" : "குறைவான", - "Cancel" : "இரத்து செய்க", - "Email" : "மின்னஞ்சல்", - "Your email address" : "உங்களுடைய மின்னஞ்சல் முகவரி", - "Password" : "கடவுச்சொல்", - "Unable to change your password" : "உங்களுடைய கடவுச்சொல்லை மாற்றமுடியாது", - "Current password" : "தற்போதைய கடவுச்சொல்", - "New password" : "புதிய கடவுச்சொல்", - "Change password" : "கடவுச்சொல்லை மாற்றுக", - "Language" : "மொழி", - "Help translate" : "மொழிபெயர்க்க உதவி", - "Username" : "பயனாளர் பெயர்", - "Create" : "உருவாக்குக", - "Default Quota" : "பொது இருப்பு பங்கு", - "Other" : "மற்றவை", - "Quota" : "பங்கு" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/ta_LK.json b/settings/l10n/ta_LK.json deleted file mode 100644 index 2d5b11732d8..00000000000 --- a/settings/l10n/ta_LK.json +++ /dev/null @@ -1,41 +0,0 @@ -{ "translations": { - "External Storage" : "வெளி சேமிப்பு", - "Language changed" : "மொழி மாற்றப்பட்டது", - "Invalid request" : "செல்லுபடியற்ற வேண்டுகோள்", - "Authentication error" : "அத்தாட்சிப்படுத்தலில் வழு", - "Unable to add user to group %s" : "குழு %s இல் பயனாளரை சேர்க்க முடியாது", - "Unable to remove user from group %s" : "குழு %s இலிருந்து பயனாளரை நீக்கமுடியாது", - "Email saved" : "மின்னஞ்சல் சேமிக்கப்பட்டது", - "All" : "எல்லாம்", - "Disable" : "இயலுமைப்ப", - "Enable" : "இயலுமைப்படுத்துக", - "Delete" : "நீக்குக", - "Groups" : "குழுக்கள்", - "undo" : "முன் செயல் நீக்கம் ", - "never" : "ஒருபோதும்", - "__language_name__" : "_மொழி_பெயர்_", - "None" : "ஒன்றுமில்லை", - "Login" : "புகுபதிகை", - "Encryption" : "மறைக்குறியீடு", - "Server address" : "சேவையக முகவரி", - "Port" : "துறை ", - "Credentials" : "சான்று ஆவணங்கள்", - "More" : "மேலதிக", - "Less" : "குறைவான", - "Cancel" : "இரத்து செய்க", - "Email" : "மின்னஞ்சல்", - "Your email address" : "உங்களுடைய மின்னஞ்சல் முகவரி", - "Password" : "கடவுச்சொல்", - "Unable to change your password" : "உங்களுடைய கடவுச்சொல்லை மாற்றமுடியாது", - "Current password" : "தற்போதைய கடவுச்சொல்", - "New password" : "புதிய கடவுச்சொல்", - "Change password" : "கடவுச்சொல்லை மாற்றுக", - "Language" : "மொழி", - "Help translate" : "மொழிபெயர்க்க உதவி", - "Username" : "பயனாளர் பெயர்", - "Create" : "உருவாக்குக", - "Default Quota" : "பொது இருப்பு பங்கு", - "Other" : "மற்றவை", - "Quota" : "பங்கு" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/te.js b/settings/l10n/te.js deleted file mode 100644 index 6db1a682c12..00000000000 --- a/settings/l10n/te.js +++ /dev/null @@ -1,15 +0,0 @@ -OC.L10N.register( - "settings", - { - "Delete" : "తొలగించు", - "Server address" : "సేవకి చిరునామా", - "More" : "మరిన్ని", - "Cancel" : "రద్దుచేయి", - "Email" : "ఈమెయిలు", - "Your email address" : "మీ ఈమెయిలు చిరునామా", - "Password" : "సంకేతపదం", - "New password" : "కొత్త సంకేతపదం", - "Language" : "భాష", - "Username" : "వాడుకరి పేరు" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/te.json b/settings/l10n/te.json deleted file mode 100644 index 5b4d5344fa3..00000000000 --- a/settings/l10n/te.json +++ /dev/null @@ -1,13 +0,0 @@ -{ "translations": { - "Delete" : "తొలగించు", - "Server address" : "సేవకి చిరునామా", - "More" : "మరిన్ని", - "Cancel" : "రద్దుచేయి", - "Email" : "ఈమెయిలు", - "Your email address" : "మీ ఈమెయిలు చిరునామా", - "Password" : "సంకేతపదం", - "New password" : "కొత్త సంకేతపదం", - "Language" : "భాష", - "Username" : "వాడుకరి పేరు" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/th_TH.js b/settings/l10n/th_TH.js deleted file mode 100644 index 81055ec3bd8..00000000000 --- a/settings/l10n/th_TH.js +++ /dev/null @@ -1,285 +0,0 @@ -OC.L10N.register( - "settings", - { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "คำเตือนความปลอดภัยและการติดตั้ง", - "Sharing" : "การแชร์ข้อมูล", - "Server-side encryption" : "เข้ารหัสฝั่งเซิร์ฟเวอร์", - "External Storage" : "พื้นทีจัดเก็บข้อมูลจากภายนอก", - "Cron" : "Cron", - "Email server" : "อีเมลเซิร์ฟเวอร์", - "Log" : "บันทึกการเปลี่ยนแปลง", - "Tips & tricks" : "เคล็ดลับและเทคนิค", - "Updates" : "อัพเดท", - "Couldn't remove app." : "ไม่สามารถลบแอพฯ", - "Language changed" : "เปลี่ยนภาษาเรียบร้อยแล้ว", - "Invalid request" : "คำร้องขอไม่ถูกต้อง", - "Authentication error" : "เกิดข้อผิดพลาดในสิทธิ์การเข้าใช้งาน", - "Admins can't remove themself from the admin group" : "ผู้ดูแลระบบไม่สามารถลบตัวเองออกจากกลุ่มผู้ดูแลได้", - "Unable to add user to group %s" : "ไม่สามารถเพิ่มผู้ใช้งานเข้าไปที่กลุ่ม %s ได้", - "Unable to remove user from group %s" : "ไม่สามารถลบผู้ใช้งานออกจากกลุ่ม %s ได้", - "Couldn't update app." : "ไม่สามารถอัพเดทแอปฯ", - "Wrong password" : "รหัสผ่านไม่ถูกต้อง", - "No user supplied" : "ไม่มีผู้ใช้", - "Please provide an admin recovery password, otherwise all user data will be lost" : "โปรดให้กู้คืนรหัสผ่านของผู้ดูแลระบบมิฉะนั้นข้อมูลของผู้ใช้ทั้งหมดจะหายไป", - "Wrong admin recovery password. Please check the password and try again." : "กู้คืนรหัสผ่านของผู้ดูแลระบบไม่ถูกต้อง กรุณาตรวจสอบรหัสผ่านและลองอีกครั้ง.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "แบ็กเอนด์ไม่สนับสนุนการเปลี่ยนแปลงรหัสผ่าน แต่คีย์การเข้ารหัสลับของผู้ใช้จะถูกอัพเดทสำเร็จ", - "Unable to change password" : "ไม่สามารถเปลี่ยนรหัสผ่าน", - "Enabled" : "เปิดการใช้งาน", - "Not enabled" : "ใช้งานไม่ได้", - "installing and updating apps via the app store or Federated Cloud Sharing" : "กำลังติดตั้งและอัพเดทแอพพลิเคชันผ่าแอพสโตร์หรือคลาวด์ในเครือ", - "Federated Cloud Sharing" : "สหพันธ์การแชร์คลาวด์", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL รุ่น %s เป็นรุ่นเก่า (%s)โปรดอัพเดทระบบปฏิบัติการหรือคุณสมบัติเป็น %s เพื่อการทำงานที่มีประสิทธิภาพ", - "A problem occurred, please check your log files (Error: %s)" : "มีปัญหาเกิดขึ้นโปรดตรวจสอบบันทึกไฟล์ของคุณ (ข้อผิดพลาด: %s)", - "Migration Completed" : "การโยกย้ายเสร็จสมบูรณ์", - "Group already exists." : "มีกลุ่มนี้อยู่แล้ว", - "Unable to add group." : "ไม่สามารถเพิ่มกลุ่ม", - "Unable to delete group." : "ไม่สามารถลบกลุ่ม", - "log-level out of allowed range" : "ระดับ-บันทึก ไม่ได้อยู่ในช่วงที่ได้รับอนุญาต", - "Saved" : "บันทึกแล้ว", - "test email settings" : "การตั้งค่าอีเมลทดสอบ", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "เกิดปัญหาขึ้นในขณะที่ส่งอีเมล กรุณาแก้ไขการตั้งค่าของคุณ (ข้อผิดพลาด: %s)", - "Email sent" : "ส่งอีเมลแล้ว", - "You need to set your user email before being able to send test emails." : "คุณจำเป็นต้องตั้งค่าอีเมลผู้ใช้ของคุณก่อนที่จะสามารถส่งอีเมลทดสอบ", - "Invalid mail address" : "ที่อยู่อีเมลไม่ถูกต้อง", - "A user with that name already exists." : "มีชื้อผู้ใช้นี้อยู่แล้ว", - "Unable to create user." : "ไม่สามารถสร้างผู้ใช้", - "Your %s account was created" : "บัญชี %s ของคุณถูกสร้างขึ้น", - "Unable to delete user." : "ไม่สามารถลบผู้ใช้", - "Forbidden" : "เขตหวงห้าม", - "Invalid user" : "ผู้ใช้ไม่ถูกต้อง", - "Unable to change mail address" : "ไม่สามารถที่จะเปลี่ยนที่อยู่อีเมล", - "Email saved" : "อีเมลถูกบันทึกแล้ว", - "Your full name has been changed." : "ชื่อเต็มของคุณถูกเปลี่ยนแปลง", - "Unable to change full name" : "ไม่สามารถเปลี่ยนชื่อเต็ม", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "คุณแน่ใจจริงๆ ว่าคุณต้องการเพิ่ม \"{domain}\" เป็นโดเมนที่เชื่อถือได้?", - "Add trusted domain" : "เพิ่มโดเมนที่เชื่อถือได้", - "Migration in progress. Please wait until the migration is finished" : "ในระหว่างดำเนินการโยกย้าย กรุณารอสักครู่จนกว่าการโยกย้ายจะเสร็จสิ้น", - "Migration started …" : "เริ่มต้นการโยกย้าย …", - "Sending..." : "กำลังส่ง...", - "Official" : "เป็นทางการ", - "Approved" : "ได้รับการอนุมัติ", - "Experimental" : "การทดลอง", - "All" : "ทั้งหมด", - "No apps found for your version" : "ไม่พบแอพพลิเคชันสำหรับรุ่นของคุณ", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "แอพพลิเคชันมีการพัฒนาอย่างเป็นทางการภายในชุมชน ownCloud พวกเขามีการทำงานเป็นศูนย์กลางของ ownCloud และพร้อมสำหรับการใช้งานผลิตภัณฑ์", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "แอพพลิเคชันได้รับการอนุมัติและพัฒนาโดยนักพัฒนาที่น่าเชื่อถือและได้ผ่านการตรวจสอบความปลอดภัยคร่าวๆ พวกเขาจะได้รับการบำรุงรักษาอย่างดีในการเก็บข้อมูลรหัสเปิด มันอาจยังไม่เสถียรพอสำหรับการเปิดใช้งานปกติ", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "แอพฯ นี้ไม่ได้ตรวจสอบปัญหาด้านความปลอดภัยและเป็นแอพฯใหม่หรือที่รู้จักกันคือจะไม่เสถียร ติดตั้งบนความเสี่ยงของคุณเอง", - "Update to %s" : "อัพเดทไปยัง %s", - "Please wait...." : "กรุณารอสักครู่...", - "Error while disabling app" : "เกิดข้อผิดพลาดขณะปิดการใช้งานแอพพลิเคชัน", - "Disable" : "ปิดใช้งาน", - "Enable" : "เปิดใช้งาน", - "Error while enabling app" : "เกิดข้อผิดพลาดขณะกำลังตรวจสอบแอพฯ", - "Updating...." : "กำลังอัพเดทข้อมูล...", - "Error while updating app" : "เกิดข้อผิดพลาดขณะกำลังอัพเดทแอพฯ", - "Updated" : "อัพเดทแล้ว", - "Uninstalling ...." : "กำลังถอนการติดตั้ง ...", - "Error while uninstalling app" : "เกิดข้อผิดพลาดขณะถอนการติดตั้งแอพพลิเคชัน", - "Uninstall" : "ถอนการติดตั้ง", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "แอพฯจะต้องเปิดใช้งานก่อนทำการอัพเดท คุณจะถูกนำไปยังหน้าอัพเดทใน 5 วินาที", - "App update" : "อัพเดทแอพฯ", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "เกิดข้อผิดพลาด กรุณาอัพโหลดใบรับรองเข้ารหัส ASCII PEM", - "Valid until {date}" : "ใช้ได้จนถึงวันที่ {date}", - "Delete" : "ลบ", - "An error occurred: {message}" : "เกิดข้อผิดพลาด: {message}", - "Select a profile picture" : "เลือกรูปภาพโปรไฟล์", - "Very weak password" : "รหัสผ่านระดับต่ำมาก", - "Weak password" : "รหัสผ่านระดับต่ำ", - "So-so password" : "รหัสผ่านระดับปกติ", - "Good password" : "รหัสผ่านระดับดี", - "Strong password" : "รหัสผ่านระดับดีมาก", - "Groups" : "กลุ่ม", - "Unable to delete {objName}" : "ไม่สามารถลบ {objName}", - "A valid group name must be provided" : "จะต้องระบุชื่อกลุ่มที่ถูกต้อง", - "deleted {groupName}" : "ลบกลุ่ม {groupName} เรียบร้อยแล้ว", - "undo" : "เลิกทำ", - "no group" : "ไม่มีกลุ่ม", - "never" : "ไม่ต้องเลย", - "deleted {userName}" : "ลบผู้ใช้ {userName} เรียบร้อยแล้ว", - "add group" : "เพิ่มกลุ่ม", - "Changing the password will result in data loss, because data recovery is not available for this user" : "การเปลี่ยนรหัสผ่านจะส่งผลให้เกิดการสูญเสียข้อมูลเพราะการกู้คืนข้อมูลจะไม่สามารถใช้ได้สำหรับผู้ใช้นี้", - "A valid username must be provided" : "จะต้องระบุชื่อผู้ใช้ที่ถูกต้อง", - "A valid password must be provided" : "จะต้องระบุรหัสผ่านที่ถูกต้อง", - "A valid email must be provided" : "จะต้องระบุอีเมลที่ถูกต้อง", - "__language_name__" : "ภาษาไทย - Thai languages", - "Unlimited" : "ไม่จำกัดจำนวน", - "Personal info" : "ข้อมูลส่วนบุคคล", - "Sync clients" : "ประสานข้อมูลไคลเอนต์", - "Everything (fatal issues, errors, warnings, info, debug)" : "ทุกอย่าง (ปัญหาร้ายแรง ข้อผิดพลาด คำเตือน ข้อมูล การแก้ปัญหา)", - "Info, warnings, errors and fatal issues" : "ข้อมูล คำเตือน ข้อผิดพลาดและปัญหาร้ายแรง", - "Warnings, errors and fatal issues" : "คำเตือนข้อผิดพลาดและปัญหาที่ร้ายแรง", - "Errors and fatal issues" : "ข้อผิดพลาดและปัญหาที่ร้ายแรง", - "Fatal issues only" : "ปัญหาร้ายแรงเท่านั้น", - "None" : "ไม่มี", - "Login" : "เข้าสู่ระบบ", - "Plain" : "ธรรมดา", - "NT LAN Manager" : "ตัวจัดการ NT LAN", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "ไม่ได้ติดตั้งphp อย่างถูกต้องค้นหาตัวแปรสภาพแวดล้อมของระบบการทดสอบกับ getenv(\"PATH\") ส่งกลับเฉพาะการตอบสนองที่ว่างเปล่า", - "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." : "ตั้งค่าให้สามารถอ่านได้อย่างเดียวถูกเปิดใช้งาน นี้จะช่วยป้องกันการตั้งค่าผ่านทางบางเว็บอินเตอร์เฟซ นอกจากนี้จะต้องเขียนไฟล์ด้วยตนเองสำหรับทุกการอัพเดท", - "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." : "นี้อาจเกิดจาก cache/accelerator อย่างเช่น Zend OPcache หรือ eAccelerator", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "เซิร์ฟเวอร์ของคุณทำงานบน Microsoft Windows เราขอแนะนำให้ใช้ลินุกซ์หากคุณต้องการ การใช้งานที่ดีที่สุด", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "โมดูล PHP 'fileinfo' หายไป เราขอแนะนำให้เปิดใช้งานโมดูลนี้เพื่อให้ได้ผลลัพธ์ที่ดีที่สุดกับการตรวจสอบชนิด mime", - "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", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "หากการติดตั้งของคุณไม่ได้ติดตั้งในรากของโดเมนและใช้ระบบ cron อาจมีปัญหาเกี่ยวกับการสร้าง URL เพื่อหลีกเลี่ยงปัญหาเหล่านี้โปรดไปตั้งค่า \"overwrite.cli.url\" ในไฟล์ config.php ของคุณไปยังเส้นทาง webroot ของการติดตั้งของคุณ (แนะนำ: \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "มันเป็นไปไม่ได้ที่จะดำเนินการ cronjob ผ่านทาง CLI ข้อผิดพลาดทางเทคนิคต่อไปนี้จะปรากฏ:", - "All checks passed." : "ผ่านการตรวจสอบทั้งหมด", - "Open documentation" : "เปิดเอกสาร", - "Allow apps to use the Share API" : "อนุญาตให้แอปฯสามารถใช้ API สำหรับแชร์ข้อมูลได้", - "Allow users to share via link" : "อนุญาตให้ผู้ใช้สามารถแชร์ผ่านทางลิงค์", - "Enforce password protection" : "บังคับใช้การป้องกันรหัสผ่าน", - "Allow public uploads" : "อนุญาตให้อัพโหลดสาธารณะ", - "Allow users to send mail notification for shared files" : "อนุญาตให้ผู้ใช้ส่งการแจ้งเตือนอีเมลสำหรับไฟล์ที่ถูกแชร์", - "Set default expiration date" : "ตั้งค่าเริ่มต้นวันหมดอายุ", - "Expire after " : "หมดอายุหลังจาก", - "days" : "วัน", - "Enforce expiration date" : "บังคับให้มีวันที่หมดอายุ", - "Allow resharing" : "อนุญาตให้แชร์ข้อมูลซ้ำใหม่ได้", - "Restrict users to only share with users in their groups" : "จำกัดให้ผู้ใช้สามารถแชร์กับผู้ใช้ในกลุ่มของพวกเขาเท่านั้น", - "Allow users to send mail notification for shared files to other users" : "อนุญาตให้ผู้ใช้ส่งการแจ้งเตือนอีเมลสำหรับไฟล์ที่แชร์กับผู้ใช้อื่นๆ", - "Exclude groups from sharing" : "ไม่รวมกลุ่มที่แชร์", - "These groups will still be able to receive shares, but not to initiate them." : "กลุ่มนี้จะยังคงสามารถได้รับการแชร์ แต่พวกเขาจะไม่รู้จักมัน", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "อนุญาตให้เติมชื่อผู้ใช้ในกล่องตอบโต้อัตโนมัติ ถ้านี้ถูกปิดใช้งานชื่อผู้ใช้จะต้องกรอกเอง", - "Last cron job execution: %s." : "การดำเนินการ cron job ล่าสุด: %s", - "Last cron job execution: %s. Something seems wrong." : "การดำเนินการ cron job ล่าสุด: %s ดูเหมือนมีบางสิ่งไม่ถูกต้อง", - "Cron was not executed yet!" : "Cron ไม่ได้ถูกดำเนินการ!", - "Execute one task with each page loaded" : "ประมวลคำสั่งหนึ่งงานในแต่ละครั้งที่มีการโหลดหน้าเว็บ", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php มีการลงทะเบียนให้บริการ Webcron เรียก cron.php ทุกๆ 15 นาที บน Http", - "Use system's cron service to call the cron.php file every 15 minutes." : "บริการ cron ของระบบจะเรียกไฟล์ cron.php ทุกq 15 นาที", - "Enable server-side encryption" : "เปิดการใช้งานเข้ารหัสฝั่งเซิร์ฟเวอร์", - "Please read carefully before activating server-side encryption: " : "กรุณาอ่านอย่างละเอียดก่อนที่จะเปิดใช้งานการเข้ารหัสฝั่งเซิร์ฟเวอร์:", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "เมื่อเปิดใช้งานการเข้ารหัส ไฟล์ทั้งหมดที่อัพโหลดไปยังเซิร์ฟเวอร์นั้นจะถูกเข้ารหัสในส่วนของเซิฟเวอร์ มันเป็นไปได้ที่จะปิดใช้งานการเข้ารหัสในภายหลัง ถ้าเปิดใช้ฟังก์ชั่นการสนับสนุนโมดูลการเข้ารหัสที่และเงื่อนไขก่อน (เช่น การตั้งค่าคีย์กู้คืน)", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "การเข้ารหัสลับเพียงอย่างเดียวไม่ได้รับประกันความปลอดภัยของระบบ โปรดดูเอกสาร ownCloud สำหรับข้อมูลเพิ่มเติมเกี่ยวกับวิธีการเข้ารหัสแอพพลิเคชันและกรณีการสนับสนุน", - "Be aware that encryption always increases the file size." : "โปรดทราบว่าหากเข้ารหัสไฟล์จะทำให้ขนาดของไฟล์ใหญ่ขึ้น", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "มันจะดีถ้าคุณสำรองข้อมูลบ่อยๆ ในกรณีของการเข้ารหัสโปรดแน่ใจว่าจะสำรองคีย์การเข้ารหัสลับพร้อมกับข้อมูลของคุณ", - "This is the final warning: Do you really want to enable encryption?" : "นี่คือการเตือนครั้งสุดท้าย: คุณต้องการที่จะเปิดใช้การเข้ารหัส?", - "Enable encryption" : "เปิดใช้งานการเข้ารหัส", - "No encryption module loaded, please enable an encryption module in the app menu." : "ไม่มีโมดูลการเข้ารหัสโหลดโปรดเปิดใช้งานโมดูลการเข้ารหัสในเมนูแอพฯ", - "Select default encryption module:" : "เลือกค่าเริ่มต้นโมดูลการเข้ารหัส:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "คุณจำเป็นต้องโอนย้ายคีย์การเข้ารหัสลับของคุณจากการเข้ารหัสเก่า (ownCloud <= 8.0) ไปใหม่ กรุณาเปิดใช้งาน \"โมดูลการเข้ารหัสเริ่มต้น\" และเรียกใช้ 'occ encryption:migrate'", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "คุณจำเป็นต้องโอนย้ายคีย์การเข้ารหัสลับของคุณจากการเข้ารหัสเก่า (ownCloud <= 8.0) ไปใหม่", - "Start migration" : "เริ่มการโยกย้าย", - "This is used for sending out notifications." : "นี้จะใช้สำหรับการส่งออกการแจ้งเตือน", - "Send mode" : "โหมดการส่ง", - "Encryption" : "การเข้ารหัส", - "From address" : "จากที่อยู่", - "mail" : "อีเมล", - "Authentication method" : "วิธีการตรวจสอบ", - "Authentication required" : "จำเป็นต้องตรวจสอบความถูกต้อง", - "Server address" : "ที่อยู่เซิร์ฟเวอร์", - "Port" : "พอร์ต", - "Credentials" : "ข้อมูลส่วนตัวสำหรับเข้าระบบ", - "SMTP Username" : "ชื่อผู้ใช้ SMTP", - "SMTP Password" : "รหัสผ่าน SMTP", - "Store credentials" : "ข้อมูลประจำตัวของร้านค้า", - "Test email settings" : "การตั้งค่าอีเมลทดสอบ", - "Send email" : "ส่งอีเมล", - "Download logfile" : "ดาวน์โหลดไฟล์บันทึก", - "More" : "มาก", - "Less" : "น้อย", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "ไฟล์บันทึกมีขนาดใหญ่กว่า 100 เมกะไบต์ มันอาจจะใช้เวลาดาวน์โหลดนาน!", - "What to log" : "อะไรที่จะบันทึก", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "จะใช้ SQLite เป็นฐานข้อมูล สำหรับการติดตั้งขนาดใหญ่เราขอแนะนำเพื่อสลับไปยังฐานข้อมูลแบ็กเอนด์ที่แตกต่างกัน", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "โดยเฉพาะอย่างยิ่งเมื่อใช้ไคลเอนต์เดสก์ทอปสำหรับการประสานข้อมูลโดย SQLite", - "How to do backups" : "วิธีการสำรองข้อมูล", - "Advanced monitoring" : "การตรวจสอบขั้นสูง", - "Performance tuning" : "การปรับแต่งประสิทธิภาพ", - "Improving the config.php" : "ปรับปรุงไฟล์ config.php", - "Theming" : "ชุดรูปแบบ", - "Hardening and security guidance" : "คำแนะนำการรักษาความปลอดภัย", - "Version" : "รุ่น", - "Developer documentation" : "เอกสารสำหรับนักพัฒนา", - "Experimental applications ahead" : "การใช้งานก่อนการทดลอง", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "การทดลองแอพพลิเคชันไม่ได้ถูกตรวจสอบปัญหาด้านความปลอดภัย การติดตั้งพวกเขาสามารถก่อให้เกิดการสูญเสียข้อมูลหรือการละเมิดความปลอดภัย", - "by %s" : "โดย %s", - "%s-licensed" : "%s ได้รับใบอนุญาต", - "Documentation:" : "เอกสาร:", - "User documentation" : "เอกสารสำหรับผู้ใช้", - "Admin documentation" : "เอกสารผู้ดูแลระบบ", - "Show description …" : "แสดงรายละเอียด ...", - "Hide description …" : "ซ่อนรายละเอียด ...", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "แอพฯนี้ได้ไม่บ่งบอกรุ่นต่ำสุดของ ownCloud นี้จะเป็นข้อผิดพลาดใน ownCloud ที่ 11 และรุ่นต่อมา", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "แอพฯนี้ได้ไม่บ่งบอกรุ่นสูงสุดของ ownCloud นี้จะเป็นข้อผิดพลาดใน ownCloud ที่ 11 และรุ่นต่อมา", - "This app cannot be installed because the following dependencies are not fulfilled:" : "ไม่สามารถติดตั้งแอพฯนี้เพราะไม่มีตัวอ้างอิงต่อไปนี้:", - "Enable only for specific groups" : "เปิดใช้งานเพียงเฉพาะกลุ่ม", - "Uninstall App" : "ถอนการติดตั้งแอพฯ", - "Enable experimental apps" : "เปิดใช้งานแอพพลิเคชั่นทดลอง", - "SSL Root Certificates" : "ใบรับรอง SSL", - "Common Name" : "ชื่อทั่วไป", - "Valid until" : "ใช้ได้จนถึง", - "Issued By" : "ปัญหาโดย", - "Valid until %s" : "ใช้ได้จนถึง %s", - "Import root certificate" : "นำเข้าใบรับรองหลัก", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "นี่คุณ<br><br>อยากจะแจ้งให้คุณทราบว่าขณะนี้คุณมีบัญชี %s<br><br>ชื่อผู้ใช้ของคุณคือ: %s<br>เข้าไปงานได้ที่: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "ไชโย!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "นี่คุณ\n\nอยากให้คุณทราบว่าขณะนี้คุณมี %s บัญชี\n\nชื่อผู้ใช้ของคุณ: %s\nดูได้ที่: %s\n", - "Administrator documentation" : "เอกสารของผู้ดูแลระบบ", - "Online documentation" : "เอกสารออนไลน์", - "Forum" : "ฟอรั่ม", - "Issue tracker" : "ติดตามปัญหา", - "Commercial support" : "สนับสนุนเชิงพาณิชย์", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "คุณกำลังใช้ <strong>%s</strong> ของ <strong>%s</strong>", - "Profile picture" : "รูปภาพโปรไฟล์", - "Upload new" : "อัพโหลดใหม่", - "Select from Files" : "เลือกจากไฟล์", - "Remove image" : "ลบรูปภาพ", - "png or jpg, max. 20 MB" : "png หรือ jpg, สูงสุด 20 เมกะไบต์", - "Picture provided by original account" : "ใช้รูปภาพจากบัญชีเดิม", - "Cancel" : "ยกเลิก", - "Choose as profile picture" : "เลือกรูปภาพโปรไฟล์", - "Full name" : "ชื่อเต็ม", - "No display name set" : "ไม่มีชื่อที่แสดง", - "Email" : "อีเมล", - "Your email address" : "ที่อยู่อีเมล์ของคุณ", - "For password recovery and notifications" : "สำหรับการกู้คืนรหัสผ่านและการแจ้งเตือน", - "No email address set" : "ไม่ได้ตั้งค่าที่อยู่อีเมล", - "You are member of the following groups:" : "คุณเป็นสมาชิกของกลุ่มต่อไปนี้:", - "Password" : "รหัสผ่าน", - "Unable to change your password" : "ไม่สามารถเปลี่ยนรหัสผ่านของคุณได้", - "Current password" : "รหัสผ่านปัจจุบัน", - "New password" : "รหัสผ่านใหม่", - "Change password" : "เปลี่ยนรหัสผ่าน", - "Language" : "ภาษา", - "Help translate" : "มาช่วยกันแปลสิ!", - "Get the apps to sync your files" : "ใช้แอพพลิเคชันในการประสานไฟล์ของคุณ", - "Desktop client" : "เดสก์ทอปผู้ใช้", - "Android app" : "แอพฯ แอนดรอยด์", - "iOS app" : "แอพฯ IOS", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "หากคุณต้องการที่จะสนับสนุนโครงการ <a href=\"https://owncloud.org/contribute\" target=\"_blank\" rel=\"noreferrer\">เข้าร่วมการพัฒนา</a> หรือ <a href=\"https://owncloud.org/promote\" target=\"_blank\" rel=\"noreferrer\">กระจายข่าวสาร</a>!\n\t\t", - "Show First Run Wizard again" : "แสดงหน้าจอวิซาร์ดนำทางครั้งแรกอีกครั้ง", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "ที่พัฒนาโดย {communityopen} ชุมชน ownCloud {linkclose} {githubopen}รหัสต้นฉบับ{linkclose} อยู่ภายใต้สัญญา {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}", - "Show storage location" : "แสดงสถานที่จัดเก็บข้อมูล", - "Show last log in" : "แสดงการเข้าสู่ระบบล่าสุด", - "Show user backend" : "แสดงแบ็กเอนด์ของผู้ใช้", - "Send email to new user" : "ส่งอีเมลไปยังผู้ใช้ใหม่", - "Show email address" : "แสดงที่อยู่อีเมล", - "Username" : "ชื่อผู้ใช้งาน", - "E-Mail" : "อีเมล", - "Create" : "สร้าง", - "Admin Recovery Password" : "กู้คืนรหัสผ่านดูแลระบบ", - "Enter the recovery password in order to recover the users files during password change" : "ป้อนรหัสผ่านการกู้คืนเพื่อกู้คืนไฟล์ผู้ใช้ในช่วงการเปลี่ยนรหัสผ่าน", - "Add Group" : "เพิ่มกลุ่ม", - "Group" : "กลุ่ม", - "Everyone" : "ทุกคน", - "Admins" : "ผู้ดูแลระบบ", - "Default Quota" : "ค่าโควต้าเริ่มต้น", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "กรุณากรอกโควต้าการจัดเก็บข้อมูล (ต.ย. : \"512 MB\" หรือ \"12 GB\")", - "Other" : "อื่นๆ", - "Full Name" : "ชื่อเต็ม", - "Group Admin for" : "กลุ่มผู้ดูแลระบบสำหรับ", - "Quota" : "โควต้า", - "Storage Location" : "สถานที่จัดเก็บข้อมูล", - "User Backend" : "ผู้ใช้แบ็กเอนด์", - "Last Login" : "เข้าสู่ระบบล่าสุด", - "change full name" : "เปลี่ยนชื่อเต็ม", - "set new password" : "ตั้งค่ารหัสผ่านใหม่", - "change email address" : "เปลี่ยนแปลงที่อยู่อีเมล", - "Default" : "ค่าเริ่มต้น" -}, -"nplurals=1; plural=0;"); diff --git a/settings/l10n/th_TH.json b/settings/l10n/th_TH.json deleted file mode 100644 index 4e4e56ec0f9..00000000000 --- a/settings/l10n/th_TH.json +++ /dev/null @@ -1,283 +0,0 @@ -{ "translations": { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "คำเตือนความปลอดภัยและการติดตั้ง", - "Sharing" : "การแชร์ข้อมูล", - "Server-side encryption" : "เข้ารหัสฝั่งเซิร์ฟเวอร์", - "External Storage" : "พื้นทีจัดเก็บข้อมูลจากภายนอก", - "Cron" : "Cron", - "Email server" : "อีเมลเซิร์ฟเวอร์", - "Log" : "บันทึกการเปลี่ยนแปลง", - "Tips & tricks" : "เคล็ดลับและเทคนิค", - "Updates" : "อัพเดท", - "Couldn't remove app." : "ไม่สามารถลบแอพฯ", - "Language changed" : "เปลี่ยนภาษาเรียบร้อยแล้ว", - "Invalid request" : "คำร้องขอไม่ถูกต้อง", - "Authentication error" : "เกิดข้อผิดพลาดในสิทธิ์การเข้าใช้งาน", - "Admins can't remove themself from the admin group" : "ผู้ดูแลระบบไม่สามารถลบตัวเองออกจากกลุ่มผู้ดูแลได้", - "Unable to add user to group %s" : "ไม่สามารถเพิ่มผู้ใช้งานเข้าไปที่กลุ่ม %s ได้", - "Unable to remove user from group %s" : "ไม่สามารถลบผู้ใช้งานออกจากกลุ่ม %s ได้", - "Couldn't update app." : "ไม่สามารถอัพเดทแอปฯ", - "Wrong password" : "รหัสผ่านไม่ถูกต้อง", - "No user supplied" : "ไม่มีผู้ใช้", - "Please provide an admin recovery password, otherwise all user data will be lost" : "โปรดให้กู้คืนรหัสผ่านของผู้ดูแลระบบมิฉะนั้นข้อมูลของผู้ใช้ทั้งหมดจะหายไป", - "Wrong admin recovery password. Please check the password and try again." : "กู้คืนรหัสผ่านของผู้ดูแลระบบไม่ถูกต้อง กรุณาตรวจสอบรหัสผ่านและลองอีกครั้ง.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "แบ็กเอนด์ไม่สนับสนุนการเปลี่ยนแปลงรหัสผ่าน แต่คีย์การเข้ารหัสลับของผู้ใช้จะถูกอัพเดทสำเร็จ", - "Unable to change password" : "ไม่สามารถเปลี่ยนรหัสผ่าน", - "Enabled" : "เปิดการใช้งาน", - "Not enabled" : "ใช้งานไม่ได้", - "installing and updating apps via the app store or Federated Cloud Sharing" : "กำลังติดตั้งและอัพเดทแอพพลิเคชันผ่าแอพสโตร์หรือคลาวด์ในเครือ", - "Federated Cloud Sharing" : "สหพันธ์การแชร์คลาวด์", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL รุ่น %s เป็นรุ่นเก่า (%s)โปรดอัพเดทระบบปฏิบัติการหรือคุณสมบัติเป็น %s เพื่อการทำงานที่มีประสิทธิภาพ", - "A problem occurred, please check your log files (Error: %s)" : "มีปัญหาเกิดขึ้นโปรดตรวจสอบบันทึกไฟล์ของคุณ (ข้อผิดพลาด: %s)", - "Migration Completed" : "การโยกย้ายเสร็จสมบูรณ์", - "Group already exists." : "มีกลุ่มนี้อยู่แล้ว", - "Unable to add group." : "ไม่สามารถเพิ่มกลุ่ม", - "Unable to delete group." : "ไม่สามารถลบกลุ่ม", - "log-level out of allowed range" : "ระดับ-บันทึก ไม่ได้อยู่ในช่วงที่ได้รับอนุญาต", - "Saved" : "บันทึกแล้ว", - "test email settings" : "การตั้งค่าอีเมลทดสอบ", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "เกิดปัญหาขึ้นในขณะที่ส่งอีเมล กรุณาแก้ไขการตั้งค่าของคุณ (ข้อผิดพลาด: %s)", - "Email sent" : "ส่งอีเมลแล้ว", - "You need to set your user email before being able to send test emails." : "คุณจำเป็นต้องตั้งค่าอีเมลผู้ใช้ของคุณก่อนที่จะสามารถส่งอีเมลทดสอบ", - "Invalid mail address" : "ที่อยู่อีเมลไม่ถูกต้อง", - "A user with that name already exists." : "มีชื้อผู้ใช้นี้อยู่แล้ว", - "Unable to create user." : "ไม่สามารถสร้างผู้ใช้", - "Your %s account was created" : "บัญชี %s ของคุณถูกสร้างขึ้น", - "Unable to delete user." : "ไม่สามารถลบผู้ใช้", - "Forbidden" : "เขตหวงห้าม", - "Invalid user" : "ผู้ใช้ไม่ถูกต้อง", - "Unable to change mail address" : "ไม่สามารถที่จะเปลี่ยนที่อยู่อีเมล", - "Email saved" : "อีเมลถูกบันทึกแล้ว", - "Your full name has been changed." : "ชื่อเต็มของคุณถูกเปลี่ยนแปลง", - "Unable to change full name" : "ไม่สามารถเปลี่ยนชื่อเต็ม", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "คุณแน่ใจจริงๆ ว่าคุณต้องการเพิ่ม \"{domain}\" เป็นโดเมนที่เชื่อถือได้?", - "Add trusted domain" : "เพิ่มโดเมนที่เชื่อถือได้", - "Migration in progress. Please wait until the migration is finished" : "ในระหว่างดำเนินการโยกย้าย กรุณารอสักครู่จนกว่าการโยกย้ายจะเสร็จสิ้น", - "Migration started …" : "เริ่มต้นการโยกย้าย …", - "Sending..." : "กำลังส่ง...", - "Official" : "เป็นทางการ", - "Approved" : "ได้รับการอนุมัติ", - "Experimental" : "การทดลอง", - "All" : "ทั้งหมด", - "No apps found for your version" : "ไม่พบแอพพลิเคชันสำหรับรุ่นของคุณ", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "แอพพลิเคชันมีการพัฒนาอย่างเป็นทางการภายในชุมชน ownCloud พวกเขามีการทำงานเป็นศูนย์กลางของ ownCloud และพร้อมสำหรับการใช้งานผลิตภัณฑ์", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "แอพพลิเคชันได้รับการอนุมัติและพัฒนาโดยนักพัฒนาที่น่าเชื่อถือและได้ผ่านการตรวจสอบความปลอดภัยคร่าวๆ พวกเขาจะได้รับการบำรุงรักษาอย่างดีในการเก็บข้อมูลรหัสเปิด มันอาจยังไม่เสถียรพอสำหรับการเปิดใช้งานปกติ", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "แอพฯ นี้ไม่ได้ตรวจสอบปัญหาด้านความปลอดภัยและเป็นแอพฯใหม่หรือที่รู้จักกันคือจะไม่เสถียร ติดตั้งบนความเสี่ยงของคุณเอง", - "Update to %s" : "อัพเดทไปยัง %s", - "Please wait...." : "กรุณารอสักครู่...", - "Error while disabling app" : "เกิดข้อผิดพลาดขณะปิดการใช้งานแอพพลิเคชัน", - "Disable" : "ปิดใช้งาน", - "Enable" : "เปิดใช้งาน", - "Error while enabling app" : "เกิดข้อผิดพลาดขณะกำลังตรวจสอบแอพฯ", - "Updating...." : "กำลังอัพเดทข้อมูล...", - "Error while updating app" : "เกิดข้อผิดพลาดขณะกำลังอัพเดทแอพฯ", - "Updated" : "อัพเดทแล้ว", - "Uninstalling ...." : "กำลังถอนการติดตั้ง ...", - "Error while uninstalling app" : "เกิดข้อผิดพลาดขณะถอนการติดตั้งแอพพลิเคชัน", - "Uninstall" : "ถอนการติดตั้ง", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "แอพฯจะต้องเปิดใช้งานก่อนทำการอัพเดท คุณจะถูกนำไปยังหน้าอัพเดทใน 5 วินาที", - "App update" : "อัพเดทแอพฯ", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "เกิดข้อผิดพลาด กรุณาอัพโหลดใบรับรองเข้ารหัส ASCII PEM", - "Valid until {date}" : "ใช้ได้จนถึงวันที่ {date}", - "Delete" : "ลบ", - "An error occurred: {message}" : "เกิดข้อผิดพลาด: {message}", - "Select a profile picture" : "เลือกรูปภาพโปรไฟล์", - "Very weak password" : "รหัสผ่านระดับต่ำมาก", - "Weak password" : "รหัสผ่านระดับต่ำ", - "So-so password" : "รหัสผ่านระดับปกติ", - "Good password" : "รหัสผ่านระดับดี", - "Strong password" : "รหัสผ่านระดับดีมาก", - "Groups" : "กลุ่ม", - "Unable to delete {objName}" : "ไม่สามารถลบ {objName}", - "A valid group name must be provided" : "จะต้องระบุชื่อกลุ่มที่ถูกต้อง", - "deleted {groupName}" : "ลบกลุ่ม {groupName} เรียบร้อยแล้ว", - "undo" : "เลิกทำ", - "no group" : "ไม่มีกลุ่ม", - "never" : "ไม่ต้องเลย", - "deleted {userName}" : "ลบผู้ใช้ {userName} เรียบร้อยแล้ว", - "add group" : "เพิ่มกลุ่ม", - "Changing the password will result in data loss, because data recovery is not available for this user" : "การเปลี่ยนรหัสผ่านจะส่งผลให้เกิดการสูญเสียข้อมูลเพราะการกู้คืนข้อมูลจะไม่สามารถใช้ได้สำหรับผู้ใช้นี้", - "A valid username must be provided" : "จะต้องระบุชื่อผู้ใช้ที่ถูกต้อง", - "A valid password must be provided" : "จะต้องระบุรหัสผ่านที่ถูกต้อง", - "A valid email must be provided" : "จะต้องระบุอีเมลที่ถูกต้อง", - "__language_name__" : "ภาษาไทย - Thai languages", - "Unlimited" : "ไม่จำกัดจำนวน", - "Personal info" : "ข้อมูลส่วนบุคคล", - "Sync clients" : "ประสานข้อมูลไคลเอนต์", - "Everything (fatal issues, errors, warnings, info, debug)" : "ทุกอย่าง (ปัญหาร้ายแรง ข้อผิดพลาด คำเตือน ข้อมูล การแก้ปัญหา)", - "Info, warnings, errors and fatal issues" : "ข้อมูล คำเตือน ข้อผิดพลาดและปัญหาร้ายแรง", - "Warnings, errors and fatal issues" : "คำเตือนข้อผิดพลาดและปัญหาที่ร้ายแรง", - "Errors and fatal issues" : "ข้อผิดพลาดและปัญหาที่ร้ายแรง", - "Fatal issues only" : "ปัญหาร้ายแรงเท่านั้น", - "None" : "ไม่มี", - "Login" : "เข้าสู่ระบบ", - "Plain" : "ธรรมดา", - "NT LAN Manager" : "ตัวจัดการ NT LAN", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "ไม่ได้ติดตั้งphp อย่างถูกต้องค้นหาตัวแปรสภาพแวดล้อมของระบบการทดสอบกับ getenv(\"PATH\") ส่งกลับเฉพาะการตอบสนองที่ว่างเปล่า", - "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." : "ตั้งค่าให้สามารถอ่านได้อย่างเดียวถูกเปิดใช้งาน นี้จะช่วยป้องกันการตั้งค่าผ่านทางบางเว็บอินเตอร์เฟซ นอกจากนี้จะต้องเขียนไฟล์ด้วยตนเองสำหรับทุกการอัพเดท", - "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." : "นี้อาจเกิดจาก cache/accelerator อย่างเช่น Zend OPcache หรือ eAccelerator", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "เซิร์ฟเวอร์ของคุณทำงานบน Microsoft Windows เราขอแนะนำให้ใช้ลินุกซ์หากคุณต้องการ การใช้งานที่ดีที่สุด", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "โมดูล PHP 'fileinfo' หายไป เราขอแนะนำให้เปิดใช้งานโมดูลนี้เพื่อให้ได้ผลลัพธ์ที่ดีที่สุดกับการตรวจสอบชนิด mime", - "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", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "หากการติดตั้งของคุณไม่ได้ติดตั้งในรากของโดเมนและใช้ระบบ cron อาจมีปัญหาเกี่ยวกับการสร้าง URL เพื่อหลีกเลี่ยงปัญหาเหล่านี้โปรดไปตั้งค่า \"overwrite.cli.url\" ในไฟล์ config.php ของคุณไปยังเส้นทาง webroot ของการติดตั้งของคุณ (แนะนำ: \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "มันเป็นไปไม่ได้ที่จะดำเนินการ cronjob ผ่านทาง CLI ข้อผิดพลาดทางเทคนิคต่อไปนี้จะปรากฏ:", - "All checks passed." : "ผ่านการตรวจสอบทั้งหมด", - "Open documentation" : "เปิดเอกสาร", - "Allow apps to use the Share API" : "อนุญาตให้แอปฯสามารถใช้ API สำหรับแชร์ข้อมูลได้", - "Allow users to share via link" : "อนุญาตให้ผู้ใช้สามารถแชร์ผ่านทางลิงค์", - "Enforce password protection" : "บังคับใช้การป้องกันรหัสผ่าน", - "Allow public uploads" : "อนุญาตให้อัพโหลดสาธารณะ", - "Allow users to send mail notification for shared files" : "อนุญาตให้ผู้ใช้ส่งการแจ้งเตือนอีเมลสำหรับไฟล์ที่ถูกแชร์", - "Set default expiration date" : "ตั้งค่าเริ่มต้นวันหมดอายุ", - "Expire after " : "หมดอายุหลังจาก", - "days" : "วัน", - "Enforce expiration date" : "บังคับให้มีวันที่หมดอายุ", - "Allow resharing" : "อนุญาตให้แชร์ข้อมูลซ้ำใหม่ได้", - "Restrict users to only share with users in their groups" : "จำกัดให้ผู้ใช้สามารถแชร์กับผู้ใช้ในกลุ่มของพวกเขาเท่านั้น", - "Allow users to send mail notification for shared files to other users" : "อนุญาตให้ผู้ใช้ส่งการแจ้งเตือนอีเมลสำหรับไฟล์ที่แชร์กับผู้ใช้อื่นๆ", - "Exclude groups from sharing" : "ไม่รวมกลุ่มที่แชร์", - "These groups will still be able to receive shares, but not to initiate them." : "กลุ่มนี้จะยังคงสามารถได้รับการแชร์ แต่พวกเขาจะไม่รู้จักมัน", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "อนุญาตให้เติมชื่อผู้ใช้ในกล่องตอบโต้อัตโนมัติ ถ้านี้ถูกปิดใช้งานชื่อผู้ใช้จะต้องกรอกเอง", - "Last cron job execution: %s." : "การดำเนินการ cron job ล่าสุด: %s", - "Last cron job execution: %s. Something seems wrong." : "การดำเนินการ cron job ล่าสุด: %s ดูเหมือนมีบางสิ่งไม่ถูกต้อง", - "Cron was not executed yet!" : "Cron ไม่ได้ถูกดำเนินการ!", - "Execute one task with each page loaded" : "ประมวลคำสั่งหนึ่งงานในแต่ละครั้งที่มีการโหลดหน้าเว็บ", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php มีการลงทะเบียนให้บริการ Webcron เรียก cron.php ทุกๆ 15 นาที บน Http", - "Use system's cron service to call the cron.php file every 15 minutes." : "บริการ cron ของระบบจะเรียกไฟล์ cron.php ทุกq 15 นาที", - "Enable server-side encryption" : "เปิดการใช้งานเข้ารหัสฝั่งเซิร์ฟเวอร์", - "Please read carefully before activating server-side encryption: " : "กรุณาอ่านอย่างละเอียดก่อนที่จะเปิดใช้งานการเข้ารหัสฝั่งเซิร์ฟเวอร์:", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "เมื่อเปิดใช้งานการเข้ารหัส ไฟล์ทั้งหมดที่อัพโหลดไปยังเซิร์ฟเวอร์นั้นจะถูกเข้ารหัสในส่วนของเซิฟเวอร์ มันเป็นไปได้ที่จะปิดใช้งานการเข้ารหัสในภายหลัง ถ้าเปิดใช้ฟังก์ชั่นการสนับสนุนโมดูลการเข้ารหัสที่และเงื่อนไขก่อน (เช่น การตั้งค่าคีย์กู้คืน)", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "การเข้ารหัสลับเพียงอย่างเดียวไม่ได้รับประกันความปลอดภัยของระบบ โปรดดูเอกสาร ownCloud สำหรับข้อมูลเพิ่มเติมเกี่ยวกับวิธีการเข้ารหัสแอพพลิเคชันและกรณีการสนับสนุน", - "Be aware that encryption always increases the file size." : "โปรดทราบว่าหากเข้ารหัสไฟล์จะทำให้ขนาดของไฟล์ใหญ่ขึ้น", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "มันจะดีถ้าคุณสำรองข้อมูลบ่อยๆ ในกรณีของการเข้ารหัสโปรดแน่ใจว่าจะสำรองคีย์การเข้ารหัสลับพร้อมกับข้อมูลของคุณ", - "This is the final warning: Do you really want to enable encryption?" : "นี่คือการเตือนครั้งสุดท้าย: คุณต้องการที่จะเปิดใช้การเข้ารหัส?", - "Enable encryption" : "เปิดใช้งานการเข้ารหัส", - "No encryption module loaded, please enable an encryption module in the app menu." : "ไม่มีโมดูลการเข้ารหัสโหลดโปรดเปิดใช้งานโมดูลการเข้ารหัสในเมนูแอพฯ", - "Select default encryption module:" : "เลือกค่าเริ่มต้นโมดูลการเข้ารหัส:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "คุณจำเป็นต้องโอนย้ายคีย์การเข้ารหัสลับของคุณจากการเข้ารหัสเก่า (ownCloud <= 8.0) ไปใหม่ กรุณาเปิดใช้งาน \"โมดูลการเข้ารหัสเริ่มต้น\" และเรียกใช้ 'occ encryption:migrate'", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "คุณจำเป็นต้องโอนย้ายคีย์การเข้ารหัสลับของคุณจากการเข้ารหัสเก่า (ownCloud <= 8.0) ไปใหม่", - "Start migration" : "เริ่มการโยกย้าย", - "This is used for sending out notifications." : "นี้จะใช้สำหรับการส่งออกการแจ้งเตือน", - "Send mode" : "โหมดการส่ง", - "Encryption" : "การเข้ารหัส", - "From address" : "จากที่อยู่", - "mail" : "อีเมล", - "Authentication method" : "วิธีการตรวจสอบ", - "Authentication required" : "จำเป็นต้องตรวจสอบความถูกต้อง", - "Server address" : "ที่อยู่เซิร์ฟเวอร์", - "Port" : "พอร์ต", - "Credentials" : "ข้อมูลส่วนตัวสำหรับเข้าระบบ", - "SMTP Username" : "ชื่อผู้ใช้ SMTP", - "SMTP Password" : "รหัสผ่าน SMTP", - "Store credentials" : "ข้อมูลประจำตัวของร้านค้า", - "Test email settings" : "การตั้งค่าอีเมลทดสอบ", - "Send email" : "ส่งอีเมล", - "Download logfile" : "ดาวน์โหลดไฟล์บันทึก", - "More" : "มาก", - "Less" : "น้อย", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "ไฟล์บันทึกมีขนาดใหญ่กว่า 100 เมกะไบต์ มันอาจจะใช้เวลาดาวน์โหลดนาน!", - "What to log" : "อะไรที่จะบันทึก", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "จะใช้ SQLite เป็นฐานข้อมูล สำหรับการติดตั้งขนาดใหญ่เราขอแนะนำเพื่อสลับไปยังฐานข้อมูลแบ็กเอนด์ที่แตกต่างกัน", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "โดยเฉพาะอย่างยิ่งเมื่อใช้ไคลเอนต์เดสก์ทอปสำหรับการประสานข้อมูลโดย SQLite", - "How to do backups" : "วิธีการสำรองข้อมูล", - "Advanced monitoring" : "การตรวจสอบขั้นสูง", - "Performance tuning" : "การปรับแต่งประสิทธิภาพ", - "Improving the config.php" : "ปรับปรุงไฟล์ config.php", - "Theming" : "ชุดรูปแบบ", - "Hardening and security guidance" : "คำแนะนำการรักษาความปลอดภัย", - "Version" : "รุ่น", - "Developer documentation" : "เอกสารสำหรับนักพัฒนา", - "Experimental applications ahead" : "การใช้งานก่อนการทดลอง", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "การทดลองแอพพลิเคชันไม่ได้ถูกตรวจสอบปัญหาด้านความปลอดภัย การติดตั้งพวกเขาสามารถก่อให้เกิดการสูญเสียข้อมูลหรือการละเมิดความปลอดภัย", - "by %s" : "โดย %s", - "%s-licensed" : "%s ได้รับใบอนุญาต", - "Documentation:" : "เอกสาร:", - "User documentation" : "เอกสารสำหรับผู้ใช้", - "Admin documentation" : "เอกสารผู้ดูแลระบบ", - "Show description …" : "แสดงรายละเอียด ...", - "Hide description …" : "ซ่อนรายละเอียด ...", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "แอพฯนี้ได้ไม่บ่งบอกรุ่นต่ำสุดของ ownCloud นี้จะเป็นข้อผิดพลาดใน ownCloud ที่ 11 และรุ่นต่อมา", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "แอพฯนี้ได้ไม่บ่งบอกรุ่นสูงสุดของ ownCloud นี้จะเป็นข้อผิดพลาดใน ownCloud ที่ 11 และรุ่นต่อมา", - "This app cannot be installed because the following dependencies are not fulfilled:" : "ไม่สามารถติดตั้งแอพฯนี้เพราะไม่มีตัวอ้างอิงต่อไปนี้:", - "Enable only for specific groups" : "เปิดใช้งานเพียงเฉพาะกลุ่ม", - "Uninstall App" : "ถอนการติดตั้งแอพฯ", - "Enable experimental apps" : "เปิดใช้งานแอพพลิเคชั่นทดลอง", - "SSL Root Certificates" : "ใบรับรอง SSL", - "Common Name" : "ชื่อทั่วไป", - "Valid until" : "ใช้ได้จนถึง", - "Issued By" : "ปัญหาโดย", - "Valid until %s" : "ใช้ได้จนถึง %s", - "Import root certificate" : "นำเข้าใบรับรองหลัก", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "นี่คุณ<br><br>อยากจะแจ้งให้คุณทราบว่าขณะนี้คุณมีบัญชี %s<br><br>ชื่อผู้ใช้ของคุณคือ: %s<br>เข้าไปงานได้ที่: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "ไชโย!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "นี่คุณ\n\nอยากให้คุณทราบว่าขณะนี้คุณมี %s บัญชี\n\nชื่อผู้ใช้ของคุณ: %s\nดูได้ที่: %s\n", - "Administrator documentation" : "เอกสารของผู้ดูแลระบบ", - "Online documentation" : "เอกสารออนไลน์", - "Forum" : "ฟอรั่ม", - "Issue tracker" : "ติดตามปัญหา", - "Commercial support" : "สนับสนุนเชิงพาณิชย์", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "คุณกำลังใช้ <strong>%s</strong> ของ <strong>%s</strong>", - "Profile picture" : "รูปภาพโปรไฟล์", - "Upload new" : "อัพโหลดใหม่", - "Select from Files" : "เลือกจากไฟล์", - "Remove image" : "ลบรูปภาพ", - "png or jpg, max. 20 MB" : "png หรือ jpg, สูงสุด 20 เมกะไบต์", - "Picture provided by original account" : "ใช้รูปภาพจากบัญชีเดิม", - "Cancel" : "ยกเลิก", - "Choose as profile picture" : "เลือกรูปภาพโปรไฟล์", - "Full name" : "ชื่อเต็ม", - "No display name set" : "ไม่มีชื่อที่แสดง", - "Email" : "อีเมล", - "Your email address" : "ที่อยู่อีเมล์ของคุณ", - "For password recovery and notifications" : "สำหรับการกู้คืนรหัสผ่านและการแจ้งเตือน", - "No email address set" : "ไม่ได้ตั้งค่าที่อยู่อีเมล", - "You are member of the following groups:" : "คุณเป็นสมาชิกของกลุ่มต่อไปนี้:", - "Password" : "รหัสผ่าน", - "Unable to change your password" : "ไม่สามารถเปลี่ยนรหัสผ่านของคุณได้", - "Current password" : "รหัสผ่านปัจจุบัน", - "New password" : "รหัสผ่านใหม่", - "Change password" : "เปลี่ยนรหัสผ่าน", - "Language" : "ภาษา", - "Help translate" : "มาช่วยกันแปลสิ!", - "Get the apps to sync your files" : "ใช้แอพพลิเคชันในการประสานไฟล์ของคุณ", - "Desktop client" : "เดสก์ทอปผู้ใช้", - "Android app" : "แอพฯ แอนดรอยด์", - "iOS app" : "แอพฯ IOS", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "หากคุณต้องการที่จะสนับสนุนโครงการ <a href=\"https://owncloud.org/contribute\" target=\"_blank\" rel=\"noreferrer\">เข้าร่วมการพัฒนา</a> หรือ <a href=\"https://owncloud.org/promote\" target=\"_blank\" rel=\"noreferrer\">กระจายข่าวสาร</a>!\n\t\t", - "Show First Run Wizard again" : "แสดงหน้าจอวิซาร์ดนำทางครั้งแรกอีกครั้ง", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "ที่พัฒนาโดย {communityopen} ชุมชน ownCloud {linkclose} {githubopen}รหัสต้นฉบับ{linkclose} อยู่ภายใต้สัญญา {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}", - "Show storage location" : "แสดงสถานที่จัดเก็บข้อมูล", - "Show last log in" : "แสดงการเข้าสู่ระบบล่าสุด", - "Show user backend" : "แสดงแบ็กเอนด์ของผู้ใช้", - "Send email to new user" : "ส่งอีเมลไปยังผู้ใช้ใหม่", - "Show email address" : "แสดงที่อยู่อีเมล", - "Username" : "ชื่อผู้ใช้งาน", - "E-Mail" : "อีเมล", - "Create" : "สร้าง", - "Admin Recovery Password" : "กู้คืนรหัสผ่านดูแลระบบ", - "Enter the recovery password in order to recover the users files during password change" : "ป้อนรหัสผ่านการกู้คืนเพื่อกู้คืนไฟล์ผู้ใช้ในช่วงการเปลี่ยนรหัสผ่าน", - "Add Group" : "เพิ่มกลุ่ม", - "Group" : "กลุ่ม", - "Everyone" : "ทุกคน", - "Admins" : "ผู้ดูแลระบบ", - "Default Quota" : "ค่าโควต้าเริ่มต้น", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "กรุณากรอกโควต้าการจัดเก็บข้อมูล (ต.ย. : \"512 MB\" หรือ \"12 GB\")", - "Other" : "อื่นๆ", - "Full Name" : "ชื่อเต็ม", - "Group Admin for" : "กลุ่มผู้ดูแลระบบสำหรับ", - "Quota" : "โควต้า", - "Storage Location" : "สถานที่จัดเก็บข้อมูล", - "User Backend" : "ผู้ใช้แบ็กเอนด์", - "Last Login" : "เข้าสู่ระบบล่าสุด", - "change full name" : "เปลี่ยนชื่อเต็ม", - "set new password" : "ตั้งค่ารหัสผ่านใหม่", - "change email address" : "เปลี่ยนแปลงที่อยู่อีเมล", - "Default" : "ค่าเริ่มต้น" -},"pluralForm" :"nplurals=1; plural=0;" -}
\ No newline at end of file diff --git a/settings/l10n/tr.js b/settings/l10n/tr.js deleted file mode 100644 index 7514577afde..00000000000 --- a/settings/l10n/tr.js +++ /dev/null @@ -1,298 +0,0 @@ -OC.L10N.register( - "settings", - { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Güvenlik ve kurulum uyarıları", - "Sharing" : "Paylaşım", - "Server-side encryption" : "Sunucu taraflı şifreleme", - "External Storage" : "Harici Depolama", - "Cron" : "Cron", - "Email server" : "E-posta sunucusu", - "Log" : "Günlük", - "Tips & tricks" : "İpuçları ve hileler", - "Updates" : "Güncellemeler", - "Couldn't remove app." : "Uygulama kaldırılamadı.", - "Language changed" : "Dil değiştirildi", - "Invalid request" : "Geçersiz istek", - "Authentication error" : "Kimlik doğrulama hatası", - "Admins can't remove themself from the admin group" : "Yöneticiler kendilerini admin grubundan kaldıramaz", - "Unable to add user to group %s" : "Kullanıcı %s grubuna eklenemiyor", - "Unable to remove user from group %s" : "%s grubundan kullanıcı kaldırılamıyor", - "Couldn't update app." : "Uygulama güncellenemedi.", - "Wrong password" : "Hatalı parola", - "No user supplied" : "Kullanıcı girilmedi", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Lütfen yönetici kurtarma parolasını girin, aksi takdirde tüm kullanıcı verisi kaybedilecek", - "Wrong admin recovery password. Please check the password and try again." : "Hatalı yönetici kurtarma parolası. Lütfen parolayı denetleyip yeniden deneyin.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Arka uç, parola değiştirmesini desteklemiyor, ancak kullanıcı şifreleme anahtarı başarıyla güncellendi.", - "Unable to change password" : "Parola değiştirilemiyor", - "Enabled" : "Etkin", - "Not enabled" : "Etkin değil", - "installing and updating apps via the app store or Federated Cloud Sharing" : "uygulama mağazası ve Birleşmiş Bulut Paylaşımından uygulama kurma ve güncelleme", - "Federated Cloud Sharing" : "Birleşmiş Bulut Paylaşımı", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL eskide kalmış bir sürüm %s kullanıyor (%s). Lütfen işletim sisteminizi güncelleyin, aksi halde %s gibi özellikler düzgün çalışmayacaktır.", - "A problem occurred, please check your log files (Error: %s)" : "Bir problem oluştu, lütfen log dosyalarını kontrol edin (Hata: %s)", - "Migration Completed" : "Taşınma Tamamlandı", - "Group already exists." : "Grup zaten mevcut.", - "Unable to add group." : "Grup ekleme başarısız.", - "Unable to delete group." : "Grubu silme başarısız.", - "log-level out of allowed range" : "günlük seviyesi izin verilen aralık dışında", - "Saved" : "Kaydedildi", - "test email settings" : "e-posta ayarlarını sına", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "E-posta gönderilirken bir hata oluştu. Lütfen ayarlarınızı gözden geçirin. (Hata: %s)", - "Email sent" : "E-posta gönderildi", - "You need to set your user email before being able to send test emails." : "Sınama e-postaları göndermeden önce kullanıcı e-postasını ayarlamanız gerekiyor.", - "Invalid mail address" : "Geçersiz posta adresi", - "A user with that name already exists." : "Bu isimde bir kullanıcı adı zaten mevcut.", - "Unable to create user." : "Kullanıcı oluşturma başarısız.", - "Your %s account was created" : "%s hesabınız oluşturuldu", - "Unable to delete user." : "Kullanıcı silme başarısız.", - "Forbidden" : "Yasaklı", - "Invalid user" : "Geçersiz kullanıcı", - "Unable to change mail address" : "Posta adresini değiştirme başarısız", - "Email saved" : "E-posta kaydedildi", - "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", - "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", - "Migration in progress. Please wait until the migration is finished" : "Taşınma sürüyor. Lütfen taşınma tamamlanana kadar bekleyin", - "Migration started …" : "Taşınma başladı ...", - "Sending..." : "Gönderiliyor...", - "Official" : "Resmi", - "Approved" : "Onaylanmış", - "Experimental" : "Deneysel", - "All" : "Tümü", - "No apps found for your version" : "Sürümünüz için uygulama bulunamadı", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Resmi uygulamalar ownCloud topluluğu tarafından geliştirilir. ownCloud'a işlevsellik merkezli olarak hazırlanırlar ve günlük kullanıma hazırdırlar.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Onaylanan uygulamalar güvenilir geliştiriciler tarafından geliştirilir ve detaylı olmayan bir güvenlik kontrolünden geçirilir. Bunlar açık kaynak kod deposunda bulunmakta ve normal kullanım için kararlı oldukları varsayılmaktadır.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Bu uygulama güvenlik kontrolünden geçmedi veya yeni ya da kararsız olarak bilinmektedir. Kendiniz bu riski alarak yükleyebilirsiniz.", - "Update to %s" : "%s sürümüne güncelle", - "_You have %n app update pending_::_You have %n app updates pending_" : ["Bekleyen %n uygulama güncellemesi var","Bekleyen %n uygulama güncellemesi var"], - "Please wait...." : "Lütfen bekleyin....", - "Error while disabling app" : "Uygulama devre dışı bırakılırken hata", - "Disable" : "Devre Dışı Bırak", - "Enable" : "Etkinleştir", - "Error while enabling app" : "Uygulama etkinleştirilirken hata", - "Error: this app cannot be enabled because it makes the server unstable" : "Hata: bu uygulama etkinleştirilemez çünkü sunucuyu kararsız yapıyor", - "Error: could not disable broken app" : "Hata: bozuk uygulama devre dışı bırakılamadı", - "Error while disabling broken app" : "Bozuk uygulama devre dışı bırakılırken hata", - "Updating...." : "Güncelleniyor....", - "Error while updating app" : "Uygulama güncellenirken hata", - "Updated" : "Güncellendi", - "Uninstalling ...." : "Kaldırılıyor ....", - "Error while uninstalling app" : "Uygulama kaldırılırken hata", - "Uninstall" : "Kaldır", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Uygulama etkinleştirildi fakat güncellenmesi gerekiyor. 5 saniye içinde güncelleme sayfasına yönlendirileceksiniz.", - "App update" : "Uygulama güncellemesi", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Bir hata oluştu. Lütfen ASCII-kodlanmış PEM sertifikasını yükleyin.", - "Valid until {date}" : "{date} tarihine kadar geçerli", - "Delete" : "Sil", - "An error occurred: {message}" : "Bir hata oluştu: {message}", - "Select a profile picture" : "Bir profil fotoğrafı seçin", - "Very weak password" : "Çok güçsüz parola", - "Weak password" : "Güçsüz parola", - "So-so password" : "Normal parola", - "Good password" : "İyi parola", - "Strong password" : "Güçlü parola", - "Groups" : "Gruplar", - "Unable to delete {objName}" : "{objName} silinemiyor", - "Error creating group: {message}" : "Grup oluşturulurken hata: {message}", - "A valid group name must be provided" : "Geçerli bir grup adı mutlaka sağlanmalı", - "deleted {groupName}" : "{groupName} silindi", - "undo" : "geri al", - "no group" : "grup yok", - "never" : "hiçbir zaman", - "deleted {userName}" : "{userName} silindi", - "add group" : "grup ekle", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Parolayı değiştirmek, bu kullanıcı için veri kurtarması kullanılamadığından veri kaybına sebep olacak", - "A valid username must be provided" : "Geçerli bir kullanıcı adı mutlaka sağlanmalı", - "Error creating user: {message}" : "Kullanıcı oluşturulurken hata: {message}", - "A valid password must be provided" : "Geçerli bir parola mutlaka sağlanmalı", - "A valid email must be provided" : "Geçerli bir e-posta belirtilmeli", - "__language_name__" : "Türkçe", - "Unlimited" : "Sınırsız", - "Personal info" : "Kişisel bilgi", - "Sync clients" : "Eşitleme istemcileri", - "Everything (fatal issues, errors, warnings, info, debug)" : "Her şey (Ciddi sorunlar, hatalar, uyarılar, bilgi, hata ayıklama)", - "Info, warnings, errors and fatal issues" : "Bilgi, uyarılar, hatalar ve ciddi sorunlar", - "Warnings, errors and fatal issues" : "Uyarılar, hatalar ve ciddi sorunlar", - "Errors and fatal issues" : "Hatalar ve ciddi sorunlar", - "Fatal issues only" : "Sadece ciddi sorunlar", - "None" : "Hiçbiri", - "Login" : "Oturum Aç", - "Plain" : "Düz", - "NT LAN Manager" : "NT Ağ Yöneticisi", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "PHP sistem değişkenleri sorgusuna uygun olarak ayarlanmamış görünüyor. getenv(\"PATH\") komutu sadece boş bir cevap döndürüyor.", - "Please check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation documentation ↗</a> for php configuration notes and the php configuration of your server, especially when using php-fpm." : "Lütfen php yapılandırma notları ve özellikler php-fpm kullanırken sunucu php yapılandırması için <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">kurulum belgelendirmesine ↗</a> bakın.", - "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.", - "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP satırıçi doc bloklarını ayıklamak üzere yapılandırılmış gibi görünüyor. Bu, bazı çekirdek (core) uygulamalarını erişilemez yapacak.", - "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Bu, muhtemelen Zend OPcache veya eAccelerator gibi bir önbellek/hızlandırıcı nedeniyle gerçekleşir.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Sunucunuz, Microsoft Windows ile çalışıyor. En uygun kullanıcı deneyimi için şiddetle Linux'u öneriyoruz.", - "%1$s below version %2$s is installed, for stability and performance reasons we recommend updating to a newer %1$s version." : "%1$s, %2$s sürümü altı kurulu. Kararlılık ve performans için daha yeni bir %1$s sürümüne güncellemenizi öneririz.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP modülü 'fileinfo' kayıp. MIME türü tanıma ile en iyi sonuçları elde etmek için bu modülü etkinleştirmenizi öneririz.", - "Transactional file locking is disabled, this might lead to issues with race conditions. Enable 'filelocking.enabled' in config.php to avoid these problems. See the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a> for more information." : "İşlemsel dosya kilidi devre dışı. Bu yarış koşulu (race condition) sorunlarına neden olabilir. Bu sorunlardan kaçınmak için config.php içindeki 'filelocking.enabled' ayarını etkinleştirin. Daha fazla bilgi için <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">belgelendirmeye ↗</a> bakın.", - "System locale can not be set to a one which supports UTF-8." : "Sistem yereli, UTF-8 destekleyenlerden biri olarak ayarlanamadı.", - "This means that there might be problems with certain characters in file names." : "Bu, dosya adlarında belirli karakterlerde problem olabileceği anlamına gelir.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Şu dillerden birini desteklemesi için sisteminize gerekli paketleri kurmanızı şiddetle tavsiye ederiz: %s.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Eğer kurulumunuz alan adının köküne yapılmamışsa ve sistem cron'u kullanıyorsa, URL oluşturma ile ilgili sorunlar oluşabilir. Bu sorunların önüne geçmek için, kurulumunuzun web kök yolundaki config.php dosyasında \"overwrite.cli.url\" seçeneğini ayarlayın (Önerilen: \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Bu CLI ile cronjobı çalıştırmak mümkün değildi. Aşağıdaki teknik hatalar ortaya çıkmıştır:", - "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"#log-section\">log</a>." : "Lütfen <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">kurulum rehberlerine ↗</a> ve <a href=\"#log-section\">günlük</a> kısmındaki hata ve uyarılara bakın.", - "All checks passed." : "Tüm kontroller geçildi.", - "Open documentation" : "Belgelendirmeyi aç", - "Allow apps to use the Share API" : "Uygulamaların paylaşım API'sini kullanmasına izin ver", - "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", - "Allow sharing with groups" : "Grouplar ile 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 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.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Paylaşma iletişim kutusunda kullanıcı adı otomatik tamamlamasını etkinleştir. Devre dışı olduğunda tam kullanıcı adı girilmeli.", - "Last cron job execution: %s." : "Son cron çalıştırılma: %s.", - "Last cron job execution: %s. Something seems wrong." : "Son cron çalıştırılma: %s. Bir şeyler yanlış gibi görünüyor.", - "Cron was not executed yet!" : "Cron henüz çalıştırılmadı!", - "Execute one task with each page loaded" : "Yüklenen her sayfa ile bir görev çalıştır", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php, http üzerinden her 15 dakikada bir çağrılması için webcron hizmetine kaydedilir.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Cron.php dosyasını her 15 dakikada bir çağırmak için sistem cron hizmetini kullan.", - "Enable server-side encryption" : "Sunucu taraflı şifrelemeyi aç", - "Please read carefully before activating server-side encryption: " : "Lütfen sunucu tarafında şifrelemeyi etkinleştirmeden önce dikkatlice okuyun: ", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "Şifreleme etkinleştirildiğinde, sunucuya yüklenen tüm dosyalar şifrelenmiş olarak kalacaktır. Şifrelemeyi devre dışı bırakmak sadece ileriki zamanlarda aktif şifreleme modülü desteklediğinde ve ön koşullar (örn: düzenleme anahtarı oluşturulması) yerine getirildiğinde yapılabilir.", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "Şifreleme tek başına sistem güvenliğini garanti etmez. Lütfen şifreleme uygulamasının çalışma bilgisi ve desteklenen kullanım durumları için ownCloud belgelerine bakın.", - "Be aware that encryption always increases the file size." : "Şifrelemenin dosya boyutunu büyüteceğini unutmayın.", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "Verilerinizi düzenli yedekleyin ve şifreleme anahtarlarınızın verilerinizle birlikte yedeklendiğinden emin olun. ", - "This is the final warning: Do you really want to enable encryption?" : "Bu son uyarıdır: Şifrelemeyi etkinleştirmek istiyor musunuz?", - "Enable encryption" : "Şifrelemeyi aç", - "No encryption module loaded, please enable an encryption module in the app menu." : "Hiç şifrelenme modülü yüklenmemiş, lütfen uygulama menüsünden bir şifreleme modülü etkinleştirin.", - "Select default encryption module:" : "Öntanımlı şifreleme modülünü seçin:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Eski şifreleme anahtarlarınızı eski şifrelemeden (ownCloud <= 8.0) yenisine taşımanız gerekli. Lütfen \"Öntanımlı şifreleme modülü\"nü etkinleştirin ve 'occ encryption:migrate' çalıştırın", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Eski şifreleme anahtarlarınızı eski şifrelemeden (ownCloud <= 8.0) yenisine taşımanız gerekli.", - "Start migration" : "Taşınmayı başlat", - "This is used for sending out notifications." : "Bu, bildirimler gönderilirken kullanılır.", - "Send mode" : "Gönderme kipi", - "Encryption" : "Şifreleme", - "From address" : "Kimden adresi", - "mail" : "posta", - "Authentication method" : "Kimlik doğrulama yöntemi", - "Authentication required" : "Kimlik doğrulama gerekli", - "Server address" : "Sunucu adresi", - "Port" : "Port", - "Credentials" : "Kimlik Bilgileri", - "SMTP Username" : "SMTP Kullanıcı Adı", - "SMTP Password" : "SMTP Parolası", - "Store credentials" : "Kimlik bilgilerini depola", - "Test email settings" : "E-posta ayarlarını sına", - "Send email" : "E-posta gönder", - "Download logfile" : "Günlük dosyasını indir", - "More" : "Daha fazla", - "Less" : "Daha az", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Günlük dosyası 100 MB'dan daha büyük. İndirmek zaman alabilir!", - "What to log" : "Neler günlüklenmeli", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "Veritabanı olarak SQLite kullanılıyor. Daha büyük kurulumlar için farklı bir veritabanı arka ucuna geçmenizi öneriyoruz.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Özellikle dosya eşitleme için masaüstü istemcisi kullanılırken SQLite kullanımı önerilmez.", - "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a>." : "Başka bir veritabanına geçmek için komut satırı aracını kullanın: 'occ db:convert-type' veya <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">belgelendirmeye ↗</a> bakın.", - "How to do backups" : "Nasıl yedekleme yapılır", - "Advanced monitoring" : "Gelişmiş izleme", - "Performance tuning" : "Performans ayarlama", - "Improving the config.php" : "config.php iyileştirme", - "Theming" : "Tema", - "Hardening and security guidance" : "Sağlamlaştırma ve güvenlik rehberliği", - "Version" : "Sürüm", - "Developer documentation" : "Geliştirici belgelendirmesi", - "Experimental applications ahead" : "İlerideki deneysel uygulamalar", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Deneysel uygulamalar güvenlik açısından denetlenmemiş, yeni veya kararsız olmaya açık ya da geliştirilme aşamasında olan uygulamalardır. Yüklemek veri kaybı veya güvenlik açıklarına sebep olabilir.", - "by %s" : "Yazar: %s", - "%s-licensed" : "%s lisanslı", - "Documentation:" : "Belgelendirme:", - "User documentation" : "Kullanıcı belgelendirmesi", - "Admin documentation" : "Yönetici belgelendirmesi", - "Show description …" : "Açıklamayı göster...", - "Hide description …" : "Açıklamayı gizle...", - "This app has an update available." : "Bu uygulamanın bir güncellemesi var.", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Bu uygulama atanmış bir en düşük ownCloud sürümü içermiyor. ownCloud 11 ve sonrasında bu bir hata olacaktır.", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Bu uygulama atanmış bir en yüksek ownCloud sürümü içermiyor. ownCloud 11 ve sonrasında bu bir hata olacaktır.", - "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:", - "Enable only for specific groups" : "Sadece belirli gruplar için etkinleştir", - "Uninstall App" : "Uygulamayı Kaldır", - "Enable experimental apps" : "Deneysel uygulamaları etkinleştir", - "SSL Root Certificates" : "SSL Kök Sertifikaları", - "Common Name" : "Ortak Ad", - "Valid until" : "Geçerlilik", - "Issued By" : "Veren", - "Valid until %s" : "%s tarihine kadar geçerli", - "Import root certificate" : "Kök sertifikalarını içe aktar", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Merhaba,<br><br>Sadece artık bir %s hesabınızın olduğunu söylemek istedim.<br><br>Kullanıcı adınız: %s<br>Şuradan erişin: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Hoşçakalın!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Merhaba,\n\nSadece, artık bir %s hesabınızın olduğunu söylemek istedim.\n\nKullanıcı adınız: %s\nErişim: %s\n\n", - "Administrator documentation" : "Yönetici belgelendirmesi", - "Online documentation" : "Çevrimiçi belgelendirme", - "Forum" : "Forum", - "Issue tracker" : "Sorun izleyici", - "Commercial support" : "Ticari destek", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "Kullandığınız: <strong>%s</strong>. Kullanılabilir alan: <strong>%s</strong>", - "Profile picture" : "Profil resmi", - "Upload new" : "Yeni yükle", - "Select from Files" : "Dosyalardan seç", - "Remove image" : "Resmi kaldır", - "png or jpg, max. 20 MB" : "png veya jpg, azami 20 MB", - "Picture provided by original account" : "Görüntü resminiz, özgün hesabınız tarafından sağlanıyor.", - "Cancel" : "İptal", - "Choose as profile picture" : "Profil resmi olarak seç", - "Full name" : "Ad soyad", - "No display name set" : "Ekran adı ayarlanmamış", - "Email" : "E-posta", - "Your email address" : "E-posta adresiniz", - "For password recovery and notifications" : "Parola kurtarma ve bildirimler için", - "No email address set" : "E-posta adresi ayarlanmamış", - "You are member of the following groups:" : "Şu grupların üyesisiniz:", - "Password" : "Parola", - "Unable to change your password" : "Parolanız değiştirilemiyor", - "Current password" : "Mevcut parola", - "New password" : "Yeni parola", - "Change password" : "Parola değiştir", - "Language" : "Dil", - "Help translate" : "Çevirilere yardım edin", - "Get the apps to sync your files" : "Dosyalarınızı eşitlemek için uygulamaları indirin", - "Desktop client" : "Masaüstü istemcisi", - "Android app" : "Android uygulaması", - "iOS app" : "iOS uygulaması", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Projeyi desteklemek istiyorsanız\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">geliştirilmesine katılın</a>\n\t\tveya\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">duyurun</a>!", - "Show First Run Wizard again" : "İlk Çalıştırma Sihirbazı'nı yeniden göster", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "{communityopen}ownCloud topluluğu tarafından{linkclose} geliştirildi. {githubopen}Kaynak kodu{linkclose}, {licenseopen}<abbr title=\"Affero Genel Kamu Lisansı\">AGPL</abbr>{linkclose} ile lisanslanmıştır.", - "Show storage location" : "Depolama konumunu göster", - "Show last log in" : "Son oturum açılma zamanını göster", - "Show user backend" : "Kullanıcı arka ucunu göster", - "Send email to new user" : "Yeni kullanıcıya e-posta gönder", - "Show email address" : "E-posta adresini göster", - "Username" : "Kullanıcı Adı", - "E-Mail" : "E-Posta", - "Create" : "Oluştur", - "Admin Recovery Password" : "Yönetici Kurtarma Parolası", - "Enter the recovery password in order to recover the users files during password change" : "Parola değiştirme sırasında kullanıcı dosyalarını kurtarmak için kurtarma parolasını girin", - "Add Group" : "Grup Ekle", - "Group" : "Grup", - "Everyone" : "Herkes", - "Admins" : "Yöneticiler", - "Default Quota" : "Öntanımlı Kota", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Lütfen disk alanı kotasını girin (örnek: \"512MB\" veya \"12GB\")", - "Other" : "Diğer", - "Full Name" : "Tam Adı", - "Group Admin for" : "Grup Yöneticisi", - "Quota" : "Kota", - "Storage Location" : "Depolama Konumu", - "User Backend" : "Kullanıcı Arka Ucu", - "Last Login" : "Son Giriş", - "change full name" : "tam adı değiştir", - "set new password" : "yeni parola belirle", - "change email address" : "e-posta adresini değiştir", - "Default" : "Öntanımlı" -}, -"nplurals=2; plural=(n > 1);"); diff --git a/settings/l10n/tr.json b/settings/l10n/tr.json deleted file mode 100644 index 863533a4ed8..00000000000 --- a/settings/l10n/tr.json +++ /dev/null @@ -1,296 +0,0 @@ -{ "translations": { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "Güvenlik ve kurulum uyarıları", - "Sharing" : "Paylaşım", - "Server-side encryption" : "Sunucu taraflı şifreleme", - "External Storage" : "Harici Depolama", - "Cron" : "Cron", - "Email server" : "E-posta sunucusu", - "Log" : "Günlük", - "Tips & tricks" : "İpuçları ve hileler", - "Updates" : "Güncellemeler", - "Couldn't remove app." : "Uygulama kaldırılamadı.", - "Language changed" : "Dil değiştirildi", - "Invalid request" : "Geçersiz istek", - "Authentication error" : "Kimlik doğrulama hatası", - "Admins can't remove themself from the admin group" : "Yöneticiler kendilerini admin grubundan kaldıramaz", - "Unable to add user to group %s" : "Kullanıcı %s grubuna eklenemiyor", - "Unable to remove user from group %s" : "%s grubundan kullanıcı kaldırılamıyor", - "Couldn't update app." : "Uygulama güncellenemedi.", - "Wrong password" : "Hatalı parola", - "No user supplied" : "Kullanıcı girilmedi", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Lütfen yönetici kurtarma parolasını girin, aksi takdirde tüm kullanıcı verisi kaybedilecek", - "Wrong admin recovery password. Please check the password and try again." : "Hatalı yönetici kurtarma parolası. Lütfen parolayı denetleyip yeniden deneyin.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Arka uç, parola değiştirmesini desteklemiyor, ancak kullanıcı şifreleme anahtarı başarıyla güncellendi.", - "Unable to change password" : "Parola değiştirilemiyor", - "Enabled" : "Etkin", - "Not enabled" : "Etkin değil", - "installing and updating apps via the app store or Federated Cloud Sharing" : "uygulama mağazası ve Birleşmiş Bulut Paylaşımından uygulama kurma ve güncelleme", - "Federated Cloud Sharing" : "Birleşmiş Bulut Paylaşımı", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL eskide kalmış bir sürüm %s kullanıyor (%s). Lütfen işletim sisteminizi güncelleyin, aksi halde %s gibi özellikler düzgün çalışmayacaktır.", - "A problem occurred, please check your log files (Error: %s)" : "Bir problem oluştu, lütfen log dosyalarını kontrol edin (Hata: %s)", - "Migration Completed" : "Taşınma Tamamlandı", - "Group already exists." : "Grup zaten mevcut.", - "Unable to add group." : "Grup ekleme başarısız.", - "Unable to delete group." : "Grubu silme başarısız.", - "log-level out of allowed range" : "günlük seviyesi izin verilen aralık dışında", - "Saved" : "Kaydedildi", - "test email settings" : "e-posta ayarlarını sına", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "E-posta gönderilirken bir hata oluştu. Lütfen ayarlarınızı gözden geçirin. (Hata: %s)", - "Email sent" : "E-posta gönderildi", - "You need to set your user email before being able to send test emails." : "Sınama e-postaları göndermeden önce kullanıcı e-postasını ayarlamanız gerekiyor.", - "Invalid mail address" : "Geçersiz posta adresi", - "A user with that name already exists." : "Bu isimde bir kullanıcı adı zaten mevcut.", - "Unable to create user." : "Kullanıcı oluşturma başarısız.", - "Your %s account was created" : "%s hesabınız oluşturuldu", - "Unable to delete user." : "Kullanıcı silme başarısız.", - "Forbidden" : "Yasaklı", - "Invalid user" : "Geçersiz kullanıcı", - "Unable to change mail address" : "Posta adresini değiştirme başarısız", - "Email saved" : "E-posta kaydedildi", - "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", - "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", - "Migration in progress. Please wait until the migration is finished" : "Taşınma sürüyor. Lütfen taşınma tamamlanana kadar bekleyin", - "Migration started …" : "Taşınma başladı ...", - "Sending..." : "Gönderiliyor...", - "Official" : "Resmi", - "Approved" : "Onaylanmış", - "Experimental" : "Deneysel", - "All" : "Tümü", - "No apps found for your version" : "Sürümünüz için uygulama bulunamadı", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Resmi uygulamalar ownCloud topluluğu tarafından geliştirilir. ownCloud'a işlevsellik merkezli olarak hazırlanırlar ve günlük kullanıma hazırdırlar.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Onaylanan uygulamalar güvenilir geliştiriciler tarafından geliştirilir ve detaylı olmayan bir güvenlik kontrolünden geçirilir. Bunlar açık kaynak kod deposunda bulunmakta ve normal kullanım için kararlı oldukları varsayılmaktadır.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Bu uygulama güvenlik kontrolünden geçmedi veya yeni ya da kararsız olarak bilinmektedir. Kendiniz bu riski alarak yükleyebilirsiniz.", - "Update to %s" : "%s sürümüne güncelle", - "_You have %n app update pending_::_You have %n app updates pending_" : ["Bekleyen %n uygulama güncellemesi var","Bekleyen %n uygulama güncellemesi var"], - "Please wait...." : "Lütfen bekleyin....", - "Error while disabling app" : "Uygulama devre dışı bırakılırken hata", - "Disable" : "Devre Dışı Bırak", - "Enable" : "Etkinleştir", - "Error while enabling app" : "Uygulama etkinleştirilirken hata", - "Error: this app cannot be enabled because it makes the server unstable" : "Hata: bu uygulama etkinleştirilemez çünkü sunucuyu kararsız yapıyor", - "Error: could not disable broken app" : "Hata: bozuk uygulama devre dışı bırakılamadı", - "Error while disabling broken app" : "Bozuk uygulama devre dışı bırakılırken hata", - "Updating...." : "Güncelleniyor....", - "Error while updating app" : "Uygulama güncellenirken hata", - "Updated" : "Güncellendi", - "Uninstalling ...." : "Kaldırılıyor ....", - "Error while uninstalling app" : "Uygulama kaldırılırken hata", - "Uninstall" : "Kaldır", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Uygulama etkinleştirildi fakat güncellenmesi gerekiyor. 5 saniye içinde güncelleme sayfasına yönlendirileceksiniz.", - "App update" : "Uygulama güncellemesi", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Bir hata oluştu. Lütfen ASCII-kodlanmış PEM sertifikasını yükleyin.", - "Valid until {date}" : "{date} tarihine kadar geçerli", - "Delete" : "Sil", - "An error occurred: {message}" : "Bir hata oluştu: {message}", - "Select a profile picture" : "Bir profil fotoğrafı seçin", - "Very weak password" : "Çok güçsüz parola", - "Weak password" : "Güçsüz parola", - "So-so password" : "Normal parola", - "Good password" : "İyi parola", - "Strong password" : "Güçlü parola", - "Groups" : "Gruplar", - "Unable to delete {objName}" : "{objName} silinemiyor", - "Error creating group: {message}" : "Grup oluşturulurken hata: {message}", - "A valid group name must be provided" : "Geçerli bir grup adı mutlaka sağlanmalı", - "deleted {groupName}" : "{groupName} silindi", - "undo" : "geri al", - "no group" : "grup yok", - "never" : "hiçbir zaman", - "deleted {userName}" : "{userName} silindi", - "add group" : "grup ekle", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Parolayı değiştirmek, bu kullanıcı için veri kurtarması kullanılamadığından veri kaybına sebep olacak", - "A valid username must be provided" : "Geçerli bir kullanıcı adı mutlaka sağlanmalı", - "Error creating user: {message}" : "Kullanıcı oluşturulurken hata: {message}", - "A valid password must be provided" : "Geçerli bir parola mutlaka sağlanmalı", - "A valid email must be provided" : "Geçerli bir e-posta belirtilmeli", - "__language_name__" : "Türkçe", - "Unlimited" : "Sınırsız", - "Personal info" : "Kişisel bilgi", - "Sync clients" : "Eşitleme istemcileri", - "Everything (fatal issues, errors, warnings, info, debug)" : "Her şey (Ciddi sorunlar, hatalar, uyarılar, bilgi, hata ayıklama)", - "Info, warnings, errors and fatal issues" : "Bilgi, uyarılar, hatalar ve ciddi sorunlar", - "Warnings, errors and fatal issues" : "Uyarılar, hatalar ve ciddi sorunlar", - "Errors and fatal issues" : "Hatalar ve ciddi sorunlar", - "Fatal issues only" : "Sadece ciddi sorunlar", - "None" : "Hiçbiri", - "Login" : "Oturum Aç", - "Plain" : "Düz", - "NT LAN Manager" : "NT Ağ Yöneticisi", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "PHP sistem değişkenleri sorgusuna uygun olarak ayarlanmamış görünüyor. getenv(\"PATH\") komutu sadece boş bir cevap döndürüyor.", - "Please check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation documentation ↗</a> for php configuration notes and the php configuration of your server, especially when using php-fpm." : "Lütfen php yapılandırma notları ve özellikler php-fpm kullanırken sunucu php yapılandırması için <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">kurulum belgelendirmesine ↗</a> bakın.", - "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.", - "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP satırıçi doc bloklarını ayıklamak üzere yapılandırılmış gibi görünüyor. Bu, bazı çekirdek (core) uygulamalarını erişilemez yapacak.", - "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Bu, muhtemelen Zend OPcache veya eAccelerator gibi bir önbellek/hızlandırıcı nedeniyle gerçekleşir.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Sunucunuz, Microsoft Windows ile çalışıyor. En uygun kullanıcı deneyimi için şiddetle Linux'u öneriyoruz.", - "%1$s below version %2$s is installed, for stability and performance reasons we recommend updating to a newer %1$s version." : "%1$s, %2$s sürümü altı kurulu. Kararlılık ve performans için daha yeni bir %1$s sürümüne güncellemenizi öneririz.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP modülü 'fileinfo' kayıp. MIME türü tanıma ile en iyi sonuçları elde etmek için bu modülü etkinleştirmenizi öneririz.", - "Transactional file locking is disabled, this might lead to issues with race conditions. Enable 'filelocking.enabled' in config.php to avoid these problems. See the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a> for more information." : "İşlemsel dosya kilidi devre dışı. Bu yarış koşulu (race condition) sorunlarına neden olabilir. Bu sorunlardan kaçınmak için config.php içindeki 'filelocking.enabled' ayarını etkinleştirin. Daha fazla bilgi için <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">belgelendirmeye ↗</a> bakın.", - "System locale can not be set to a one which supports UTF-8." : "Sistem yereli, UTF-8 destekleyenlerden biri olarak ayarlanamadı.", - "This means that there might be problems with certain characters in file names." : "Bu, dosya adlarında belirli karakterlerde problem olabileceği anlamına gelir.", - "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Şu dillerden birini desteklemesi için sisteminize gerekli paketleri kurmanızı şiddetle tavsiye ederiz: %s.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Eğer kurulumunuz alan adının köküne yapılmamışsa ve sistem cron'u kullanıyorsa, URL oluşturma ile ilgili sorunlar oluşabilir. Bu sorunların önüne geçmek için, kurulumunuzun web kök yolundaki config.php dosyasında \"overwrite.cli.url\" seçeneğini ayarlayın (Önerilen: \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Bu CLI ile cronjobı çalıştırmak mümkün değildi. Aşağıdaki teknik hatalar ortaya çıkmıştır:", - "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"#log-section\">log</a>." : "Lütfen <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">kurulum rehberlerine ↗</a> ve <a href=\"#log-section\">günlük</a> kısmındaki hata ve uyarılara bakın.", - "All checks passed." : "Tüm kontroller geçildi.", - "Open documentation" : "Belgelendirmeyi aç", - "Allow apps to use the Share API" : "Uygulamaların paylaşım API'sini kullanmasına izin ver", - "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", - "Allow sharing with groups" : "Grouplar ile 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 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.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Paylaşma iletişim kutusunda kullanıcı adı otomatik tamamlamasını etkinleştir. Devre dışı olduğunda tam kullanıcı adı girilmeli.", - "Last cron job execution: %s." : "Son cron çalıştırılma: %s.", - "Last cron job execution: %s. Something seems wrong." : "Son cron çalıştırılma: %s. Bir şeyler yanlış gibi görünüyor.", - "Cron was not executed yet!" : "Cron henüz çalıştırılmadı!", - "Execute one task with each page loaded" : "Yüklenen her sayfa ile bir görev çalıştır", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php, http üzerinden her 15 dakikada bir çağrılması için webcron hizmetine kaydedilir.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Cron.php dosyasını her 15 dakikada bir çağırmak için sistem cron hizmetini kullan.", - "Enable server-side encryption" : "Sunucu taraflı şifrelemeyi aç", - "Please read carefully before activating server-side encryption: " : "Lütfen sunucu tarafında şifrelemeyi etkinleştirmeden önce dikkatlice okuyun: ", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "Şifreleme etkinleştirildiğinde, sunucuya yüklenen tüm dosyalar şifrelenmiş olarak kalacaktır. Şifrelemeyi devre dışı bırakmak sadece ileriki zamanlarda aktif şifreleme modülü desteklediğinde ve ön koşullar (örn: düzenleme anahtarı oluşturulması) yerine getirildiğinde yapılabilir.", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "Şifreleme tek başına sistem güvenliğini garanti etmez. Lütfen şifreleme uygulamasının çalışma bilgisi ve desteklenen kullanım durumları için ownCloud belgelerine bakın.", - "Be aware that encryption always increases the file size." : "Şifrelemenin dosya boyutunu büyüteceğini unutmayın.", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "Verilerinizi düzenli yedekleyin ve şifreleme anahtarlarınızın verilerinizle birlikte yedeklendiğinden emin olun. ", - "This is the final warning: Do you really want to enable encryption?" : "Bu son uyarıdır: Şifrelemeyi etkinleştirmek istiyor musunuz?", - "Enable encryption" : "Şifrelemeyi aç", - "No encryption module loaded, please enable an encryption module in the app menu." : "Hiç şifrelenme modülü yüklenmemiş, lütfen uygulama menüsünden bir şifreleme modülü etkinleştirin.", - "Select default encryption module:" : "Öntanımlı şifreleme modülünü seçin:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Eski şifreleme anahtarlarınızı eski şifrelemeden (ownCloud <= 8.0) yenisine taşımanız gerekli. Lütfen \"Öntanımlı şifreleme modülü\"nü etkinleştirin ve 'occ encryption:migrate' çalıştırın", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Eski şifreleme anahtarlarınızı eski şifrelemeden (ownCloud <= 8.0) yenisine taşımanız gerekli.", - "Start migration" : "Taşınmayı başlat", - "This is used for sending out notifications." : "Bu, bildirimler gönderilirken kullanılır.", - "Send mode" : "Gönderme kipi", - "Encryption" : "Şifreleme", - "From address" : "Kimden adresi", - "mail" : "posta", - "Authentication method" : "Kimlik doğrulama yöntemi", - "Authentication required" : "Kimlik doğrulama gerekli", - "Server address" : "Sunucu adresi", - "Port" : "Port", - "Credentials" : "Kimlik Bilgileri", - "SMTP Username" : "SMTP Kullanıcı Adı", - "SMTP Password" : "SMTP Parolası", - "Store credentials" : "Kimlik bilgilerini depola", - "Test email settings" : "E-posta ayarlarını sına", - "Send email" : "E-posta gönder", - "Download logfile" : "Günlük dosyasını indir", - "More" : "Daha fazla", - "Less" : "Daha az", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Günlük dosyası 100 MB'dan daha büyük. İndirmek zaman alabilir!", - "What to log" : "Neler günlüklenmeli", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "Veritabanı olarak SQLite kullanılıyor. Daha büyük kurulumlar için farklı bir veritabanı arka ucuna geçmenizi öneriyoruz.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Özellikle dosya eşitleme için masaüstü istemcisi kullanılırken SQLite kullanımı önerilmez.", - "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a>." : "Başka bir veritabanına geçmek için komut satırı aracını kullanın: 'occ db:convert-type' veya <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">belgelendirmeye ↗</a> bakın.", - "How to do backups" : "Nasıl yedekleme yapılır", - "Advanced monitoring" : "Gelişmiş izleme", - "Performance tuning" : "Performans ayarlama", - "Improving the config.php" : "config.php iyileştirme", - "Theming" : "Tema", - "Hardening and security guidance" : "Sağlamlaştırma ve güvenlik rehberliği", - "Version" : "Sürüm", - "Developer documentation" : "Geliştirici belgelendirmesi", - "Experimental applications ahead" : "İlerideki deneysel uygulamalar", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Deneysel uygulamalar güvenlik açısından denetlenmemiş, yeni veya kararsız olmaya açık ya da geliştirilme aşamasında olan uygulamalardır. Yüklemek veri kaybı veya güvenlik açıklarına sebep olabilir.", - "by %s" : "Yazar: %s", - "%s-licensed" : "%s lisanslı", - "Documentation:" : "Belgelendirme:", - "User documentation" : "Kullanıcı belgelendirmesi", - "Admin documentation" : "Yönetici belgelendirmesi", - "Show description …" : "Açıklamayı göster...", - "Hide description …" : "Açıklamayı gizle...", - "This app has an update available." : "Bu uygulamanın bir güncellemesi var.", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Bu uygulama atanmış bir en düşük ownCloud sürümü içermiyor. ownCloud 11 ve sonrasında bu bir hata olacaktır.", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Bu uygulama atanmış bir en yüksek ownCloud sürümü içermiyor. ownCloud 11 ve sonrasında bu bir hata olacaktır.", - "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:", - "Enable only for specific groups" : "Sadece belirli gruplar için etkinleştir", - "Uninstall App" : "Uygulamayı Kaldır", - "Enable experimental apps" : "Deneysel uygulamaları etkinleştir", - "SSL Root Certificates" : "SSL Kök Sertifikaları", - "Common Name" : "Ortak Ad", - "Valid until" : "Geçerlilik", - "Issued By" : "Veren", - "Valid until %s" : "%s tarihine kadar geçerli", - "Import root certificate" : "Kök sertifikalarını içe aktar", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Merhaba,<br><br>Sadece artık bir %s hesabınızın olduğunu söylemek istedim.<br><br>Kullanıcı adınız: %s<br>Şuradan erişin: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Hoşçakalın!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Merhaba,\n\nSadece, artık bir %s hesabınızın olduğunu söylemek istedim.\n\nKullanıcı adınız: %s\nErişim: %s\n\n", - "Administrator documentation" : "Yönetici belgelendirmesi", - "Online documentation" : "Çevrimiçi belgelendirme", - "Forum" : "Forum", - "Issue tracker" : "Sorun izleyici", - "Commercial support" : "Ticari destek", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "Kullandığınız: <strong>%s</strong>. Kullanılabilir alan: <strong>%s</strong>", - "Profile picture" : "Profil resmi", - "Upload new" : "Yeni yükle", - "Select from Files" : "Dosyalardan seç", - "Remove image" : "Resmi kaldır", - "png or jpg, max. 20 MB" : "png veya jpg, azami 20 MB", - "Picture provided by original account" : "Görüntü resminiz, özgün hesabınız tarafından sağlanıyor.", - "Cancel" : "İptal", - "Choose as profile picture" : "Profil resmi olarak seç", - "Full name" : "Ad soyad", - "No display name set" : "Ekran adı ayarlanmamış", - "Email" : "E-posta", - "Your email address" : "E-posta adresiniz", - "For password recovery and notifications" : "Parola kurtarma ve bildirimler için", - "No email address set" : "E-posta adresi ayarlanmamış", - "You are member of the following groups:" : "Şu grupların üyesisiniz:", - "Password" : "Parola", - "Unable to change your password" : "Parolanız değiştirilemiyor", - "Current password" : "Mevcut parola", - "New password" : "Yeni parola", - "Change password" : "Parola değiştir", - "Language" : "Dil", - "Help translate" : "Çevirilere yardım edin", - "Get the apps to sync your files" : "Dosyalarınızı eşitlemek için uygulamaları indirin", - "Desktop client" : "Masaüstü istemcisi", - "Android app" : "Android uygulaması", - "iOS app" : "iOS uygulaması", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Projeyi desteklemek istiyorsanız\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">geliştirilmesine katılın</a>\n\t\tveya\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">duyurun</a>!", - "Show First Run Wizard again" : "İlk Çalıştırma Sihirbazı'nı yeniden göster", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "{communityopen}ownCloud topluluğu tarafından{linkclose} geliştirildi. {githubopen}Kaynak kodu{linkclose}, {licenseopen}<abbr title=\"Affero Genel Kamu Lisansı\">AGPL</abbr>{linkclose} ile lisanslanmıştır.", - "Show storage location" : "Depolama konumunu göster", - "Show last log in" : "Son oturum açılma zamanını göster", - "Show user backend" : "Kullanıcı arka ucunu göster", - "Send email to new user" : "Yeni kullanıcıya e-posta gönder", - "Show email address" : "E-posta adresini göster", - "Username" : "Kullanıcı Adı", - "E-Mail" : "E-Posta", - "Create" : "Oluştur", - "Admin Recovery Password" : "Yönetici Kurtarma Parolası", - "Enter the recovery password in order to recover the users files during password change" : "Parola değiştirme sırasında kullanıcı dosyalarını kurtarmak için kurtarma parolasını girin", - "Add Group" : "Grup Ekle", - "Group" : "Grup", - "Everyone" : "Herkes", - "Admins" : "Yöneticiler", - "Default Quota" : "Öntanımlı Kota", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Lütfen disk alanı kotasını girin (örnek: \"512MB\" veya \"12GB\")", - "Other" : "Diğer", - "Full Name" : "Tam Adı", - "Group Admin for" : "Grup Yöneticisi", - "Quota" : "Kota", - "Storage Location" : "Depolama Konumu", - "User Backend" : "Kullanıcı Arka Ucu", - "Last Login" : "Son Giriş", - "change full name" : "tam adı değiştir", - "set new password" : "yeni parola belirle", - "change email address" : "e-posta adresini değiştir", - "Default" : "Öntanımlı" -},"pluralForm" :"nplurals=2; plural=(n > 1);" -}
\ No newline at end of file diff --git a/settings/l10n/ug.js b/settings/l10n/ug.js deleted file mode 100644 index 7328b413bc8..00000000000 --- a/settings/l10n/ug.js +++ /dev/null @@ -1,55 +0,0 @@ -OC.L10N.register( - "settings", - { - "Sharing" : "ھەمبەھىر", - "Log" : "خاتىرە", - "Language changed" : "تىل ئۆزگەردى", - "Invalid request" : "ئىناۋەتسىز ئىلتىماس", - "Authentication error" : "سالاھىيەت دەلىللەش خاتالىقى", - "Admins can't remove themself from the admin group" : "باشقۇرغۇچى ئۆزىنى باشقۇرۇش گۇرۇپپىسىدىن چىقىرىۋېتەلمەيدۇ", - "Unable to add user to group %s" : "ئىشلەتكۈچىنى %s گۇرۇپپىغا قوشالمايدۇ", - "Unable to remove user from group %s" : "ئىشلەتكۈچىنى %s گۇرۇپپىدىن چىقىرىۋېتەلمەيدۇ", - "Couldn't update app." : "ئەپنى يېڭىلىيالمايدۇ.", - "Email saved" : "تورخەت ساقلاندى", - "All" : "ھەممىسى", - "Please wait...." : "سەل كۈتۈڭ…", - "Disable" : "چەكلە", - "Enable" : "قوزغات", - "Updating...." : "يېڭىلاۋاتىدۇ…", - "Error while updating app" : "ئەپنى يېڭىلاۋاتقاندا خاتالىق كۆرۈلدى", - "Updated" : "يېڭىلاندى", - "Delete" : "ئۆچۈر", - "Groups" : "گۇرۇپپا", - "undo" : "يېنىۋال", - "never" : "ھەرگىز", - "add group" : "گۇرۇپپا قوش", - "A valid username must be provided" : "چوقۇم ئىناۋەتلىك ئىشلەتكۈچى ئىسمىدىن بىرنى تەمىنلەش كېرەك", - "A valid password must be provided" : "چوقۇم ئىناۋەتلىك ئىم تەمىنلەش كېرەك", - "__language_name__" : "ئۇيغۇرچە", - "Unlimited" : "چەكسىز", - "None" : "يوق", - "Login" : "تىزىمغا كىرىڭ", - "Encryption" : "شىفىرلاش", - "Server address" : "مۇلازىمېتىر ئادرىسى", - "Port" : "ئېغىز", - "More" : "تېخىمۇ كۆپ", - "Less" : "ئاز", - "Version" : "نەشرى", - "Forum" : "مۇنبەر", - "Cancel" : "ۋاز كەچ", - "Email" : "تورخەت", - "Your email address" : "تورخەت ئادرېسىڭىز", - "Password" : "ئىم", - "Unable to change your password" : "ئىمنى ئۆزگەرتكىلى بولمايدۇ.", - "Current password" : "نۆۋەتتىكى ئىم", - "New password" : "يېڭى ئىم", - "Change password" : "ئىم ئۆزگەرت", - "Language" : "تىل", - "Help translate" : "تەرجىمىگە ياردەم", - "Username" : "ئىشلەتكۈچى ئاتى", - "Create" : "قۇر", - "Other" : "باشقا", - "set new password" : "يېڭى ئىم تەڭشە", - "Default" : "كۆڭۈلدىكى" -}, -"nplurals=1; plural=0;"); diff --git a/settings/l10n/ug.json b/settings/l10n/ug.json deleted file mode 100644 index 5417603db8c..00000000000 --- a/settings/l10n/ug.json +++ /dev/null @@ -1,53 +0,0 @@ -{ "translations": { - "Sharing" : "ھەمبەھىر", - "Log" : "خاتىرە", - "Language changed" : "تىل ئۆزگەردى", - "Invalid request" : "ئىناۋەتسىز ئىلتىماس", - "Authentication error" : "سالاھىيەت دەلىللەش خاتالىقى", - "Admins can't remove themself from the admin group" : "باشقۇرغۇچى ئۆزىنى باشقۇرۇش گۇرۇپپىسىدىن چىقىرىۋېتەلمەيدۇ", - "Unable to add user to group %s" : "ئىشلەتكۈچىنى %s گۇرۇپپىغا قوشالمايدۇ", - "Unable to remove user from group %s" : "ئىشلەتكۈچىنى %s گۇرۇپپىدىن چىقىرىۋېتەلمەيدۇ", - "Couldn't update app." : "ئەپنى يېڭىلىيالمايدۇ.", - "Email saved" : "تورخەت ساقلاندى", - "All" : "ھەممىسى", - "Please wait...." : "سەل كۈتۈڭ…", - "Disable" : "چەكلە", - "Enable" : "قوزغات", - "Updating...." : "يېڭىلاۋاتىدۇ…", - "Error while updating app" : "ئەپنى يېڭىلاۋاتقاندا خاتالىق كۆرۈلدى", - "Updated" : "يېڭىلاندى", - "Delete" : "ئۆچۈر", - "Groups" : "گۇرۇپپا", - "undo" : "يېنىۋال", - "never" : "ھەرگىز", - "add group" : "گۇرۇپپا قوش", - "A valid username must be provided" : "چوقۇم ئىناۋەتلىك ئىشلەتكۈچى ئىسمىدىن بىرنى تەمىنلەش كېرەك", - "A valid password must be provided" : "چوقۇم ئىناۋەتلىك ئىم تەمىنلەش كېرەك", - "__language_name__" : "ئۇيغۇرچە", - "Unlimited" : "چەكسىز", - "None" : "يوق", - "Login" : "تىزىمغا كىرىڭ", - "Encryption" : "شىفىرلاش", - "Server address" : "مۇلازىمېتىر ئادرىسى", - "Port" : "ئېغىز", - "More" : "تېخىمۇ كۆپ", - "Less" : "ئاز", - "Version" : "نەشرى", - "Forum" : "مۇنبەر", - "Cancel" : "ۋاز كەچ", - "Email" : "تورخەت", - "Your email address" : "تورخەت ئادرېسىڭىز", - "Password" : "ئىم", - "Unable to change your password" : "ئىمنى ئۆزگەرتكىلى بولمايدۇ.", - "Current password" : "نۆۋەتتىكى ئىم", - "New password" : "يېڭى ئىم", - "Change password" : "ئىم ئۆزگەرت", - "Language" : "تىل", - "Help translate" : "تەرجىمىگە ياردەم", - "Username" : "ئىشلەتكۈچى ئاتى", - "Create" : "قۇر", - "Other" : "باشقا", - "set new password" : "يېڭى ئىم تەڭشە", - "Default" : "كۆڭۈلدىكى" -},"pluralForm" :"nplurals=1; plural=0;" -}
\ No newline at end of file diff --git a/settings/l10n/uk.js b/settings/l10n/uk.js deleted file mode 100644 index 594e0de326a..00000000000 --- a/settings/l10n/uk.js +++ /dev/null @@ -1,264 +0,0 @@ -OC.L10N.register( - "settings", - { - "Redis" : "Redis", - "Security & setup warnings" : "Попередження безпеки та налаштування", - "Sharing" : "Спільний доступ", - "Server-side encryption" : "Шифрування на сервері", - "External Storage" : "Зовнішні сховища", - "Cron" : "Планувальник Cron", - "Email server" : "Сервер електронної пошти", - "Log" : "Журнал", - "Tips & tricks" : "Поради і трюки", - "Updates" : "Оновлення", - "Couldn't remove app." : "Неможливо видалити додаток.", - "Language changed" : "Мову змінено", - "Invalid request" : "Некоректний запит", - "Authentication error" : "Помилка автентифікації", - "Admins can't remove themself from the admin group" : "Адміністратор не може видалити себе з групи адміністраторів", - "Unable to add user to group %s" : "Не вдалося додати користувача у групу %s", - "Unable to remove user from group %s" : "Не вдалося видалити користувача із групи %s", - "Couldn't update app." : "Не вдалося оновити додаток. ", - "Wrong password" : "Невірний пароль", - "No user supplied" : "Користувача не вказано", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Будь ласка введіть пароль відновлення адміністратора, інакше всі дані будуть втрачені", - "Wrong admin recovery password. Please check the password and try again." : "Невірний пароль відновлення адміністратора. Будь ласка, перевірте пароль та спробуйте ще раз.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Backend не підтримує зміну паролів, але користувацький ключ шифрування було успішно змінено", - "Unable to change password" : "Неможливо змінити пароль", - "Enabled" : "Увімкнено", - "Not enabled" : "Вимкнено", - "installing and updating apps via the app store or Federated Cloud Sharing" : "встановлення та оновлення додатків через магазин додатків або Об’єднання хмарних сховищ", - "Federated Cloud Sharing" : "Об’єднання хмарних сховищ", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL використовує застарілу версію %s (%s). Будь ласка, поновіть вашу операційну систему або функції, такі як %s не працюватимуть надійно.", - "A problem occurred, please check your log files (Error: %s)" : "Виникла проблема, будь ласка, перевірте свої файли журналів (Помилка: %s)", - "Migration Completed" : "Міграцію завершено", - "Group already exists." : "Група вже існує.", - "Unable to add group." : "Неможливо додати групу.", - "Unable to delete group." : "Неможливо видалити групу.", - "log-level out of allowed range" : "рівень протоколювання перевищує дозволені межі", - "Saved" : "Збережено", - "test email settings" : "тест налаштувань електронної пошти", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Під час надсилання email сталася помилка. Будь ласка перевірте налаштування. (Помилка: %s)", - "Email sent" : "Лист надіслано", - "You need to set your user email before being able to send test emails." : "Перед надсиланням тестових листів ви повинні вказати свою email адресу.", - "Invalid mail address" : "Неправильна email адреса", - "A user with that name already exists." : "Користувач з таким іменем вже існує.", - "Unable to create user." : "Неможливо створити користувача.", - "Your %s account was created" : "Ваш %s аккаунт створений", - "Unable to delete user." : "Неможливо видалити користувача.", - "Forbidden" : "Заборонено", - "Invalid user" : "Неправильний користувач", - "Unable to change mail address" : "Неможливо поміняти email адресу", - "Email saved" : "Адресу збережено", - "Your full name has been changed." : "Ваше повне ім'я було змінено", - "Unable to change full name" : "Неможливо змінити повне ім'я", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Ви дійсно бажаєте додати \"{domain}\" як довірений домен?", - "Add trusted domain" : "Додати довірений домен", - "Migration in progress. Please wait until the migration is finished" : "Міграція триває. Будь ласка, зачекайте доки процес міграції завершиться", - "Migration started …" : "Міграцію розпочато ...", - "Sending..." : "Надсилання...", - "Official" : "Офіційні", - "Approved" : "Схвалені", - "Experimental" : "Експериментальні", - "All" : "Всі", - "No apps found for your version" : "Немає застосунків для вашої версії", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Офіційні додатки розроблені спільнотою ownCloud. Вони реалізують основні можливості ownCloud і готові до використання в продакшені.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Схвалені додатки розроблені довіреними розробниками і пройшли незалежну перевірку безпеки. Їх активно супроводжують у репозиторії з відкритим кодом, а їх розробники стежать, щоб вони були стабільні й прийнятні для повсякденного використання.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Ця програма не перевірена на вразливості безпеки і є новою або нестабільною. Встановлюйте її на власний ризик.", - "Update to %s" : "Оновити до %s", - "Please wait...." : "Зачекайте, будь ласка...", - "Error while disabling app" : "Помилка вимикання додатка", - "Disable" : "Вимкнути", - "Enable" : "Увімкнути", - "Error while enabling app" : "Помилка вмикання додатка", - "Updating...." : "Оновлюється...", - "Error while updating app" : "Помилка при оновленні додатку", - "Updated" : "Оновлено", - "Uninstalling ...." : "Видалення...", - "Error while uninstalling app" : "Помилка видалення додатка", - "Uninstall" : "Видалити", - "App update" : "Оновлення додатку", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Виникла помилка. Будь ласка вивантажте PEM сертифікат в ASCII-кодуванні.", - "Valid until {date}" : "Дійсно до {date}", - "Delete" : "Видалити", - "An error occurred: {message}" : "Сталася помилка: {message}", - "Select a profile picture" : "Обрати зображення облікового запису", - "Very weak password" : "Дуже слабкий пароль", - "Weak password" : "Слабкий пароль", - "So-so password" : "Такий собі пароль", - "Good password" : "Добрий пароль", - "Strong password" : "Надійний пароль", - "Groups" : "Групи", - "Unable to delete {objName}" : "Не вдалося видалити {objName}", - "A valid group name must be provided" : "Потрібно задати вірне ім'я групи", - "deleted {groupName}" : "видалено {groupName}", - "undo" : "відмінити", - "no group" : "без групи", - "never" : "ніколи", - "deleted {userName}" : "видалено {userName}", - "add group" : "додати групу", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Зміна пароля призведе до втрати даних, тому що відновлення даних не доступно для цього користувача", - "A valid username must be provided" : "Потрібно задати вірне ім'я користувача", - "A valid password must be provided" : "Потрібно задати вірний пароль", - "A valid email must be provided" : "Вкажіть дійсний email", - "__language_name__" : "__language_name__", - "Unlimited" : "Необмежено", - "Personal info" : "Особиста інформація", - "Sync clients" : "Клієнти синхронізації", - "Everything (fatal issues, errors, warnings, info, debug)" : "Усі (критичні проблеми, помилки, попередження, інформаційні, налагодження)", - "Info, warnings, errors and fatal issues" : "Інформаційні, попередження, помилки та критичні проблеми", - "Warnings, errors and fatal issues" : "Попередження, помилки та критичні проблеми", - "Errors and fatal issues" : "Помилки та критичні проблеми", - "Fatal issues only" : "Тільки критичні проблеми", - "None" : "Жоден", - "Login" : "Логін", - "Plain" : "Звичайний", - "NT LAN Manager" : "Менеджер NT LAN", - "SSL" : "SSL", - "TLS" : "TLS", - "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." : "Тільки перегляд був включений. Це запобігає встановити деякі конфігурації через веб-інтерфейс. Крім того, файл повинен бути доступний для запису вручну для кожного оновлення.", - "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.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Ваш сервер працює на ОС Microsoft Windows. Ми настійно рекомендуємо використовувати ОС сімейства Linux для досягнення найкращих умов використання.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP модуль 'fileinfo' відсутній. Ми наполегливо рекомендуємо увімкнути цей модуль, щоб отримати кращі результати при виявленні MIME-типів.", - "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.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Якщо ваша копія ownCloud встановлена не в корені домену та використовує систему планування CRON, можливі проблеми з генерацією правильних URL. Щоб уникнути цього, встановіть опцію \"overwrite.cli.url\" файлу config.php відповідно до теки розташування установки (Ймовірніше за все, це \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Не вдалося запустити завдання планувальника через CLI. Відбулися наступні технічні помилки:", - "All checks passed." : "Всі перевірки пройдено.", - "Open documentation" : "Відкрити документацію", - "Allow apps to use the Share API" : "Дозволити програмам використовувати API спільного доступу", - "Allow users to share via link" : "Дозволити користувачам ділитися через посилання", - "Enforce password protection" : "Захист паролем обов'язковий", - "Allow public uploads" : "Дозволити публічне завантаження", - "Allow users to send mail notification for shared files" : "Дозволити користувачам сповіщати листами про спільний доступ до файлів", - "Set default expiration date" : "Встановити термін дії за замовчуванням", - "Expire after " : "Скінчиться через", - "days" : "днів", - "Enforce expiration date" : "Термін дії обов'язковий", - "Allow resharing" : "Дозволити перевідкривати спільний доступ", - "Restrict users to only share with users in their groups" : "Дозволити користувачам відкривати спільний доступ лише для користувачів з їхньої групи", - "Allow users to send mail notification for shared files to other users" : "Дозволити користувачам сповіщати листами про спільний доступ до файлів", - "Exclude groups from sharing" : "Виключити групи зі спільного доступу", - "These groups will still be able to receive shares, but not to initiate them." : "Ці групи зможуть отримувати спільні файли, але не зможуть відправляти їх.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Дозволи автодоповнення імені користувача в діалозі спільного доступу. Якщо вимкнено - треба буде вводити повне ім’я користувача.", - "Last cron job execution: %s." : "Останнє виконане Cron завдання: %s.", - "Last cron job execution: %s. Something seems wrong." : "Останнє виконане Cron завдання: %s. Щось здається неправильним.", - "Cron was not executed yet!" : "Cron-задачі ще не запускалися!", - "Execute one task with each page loaded" : "Виконати одне завдання для кожної завантаженої сторінки ", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php зареєстрований в службі webcron та буде викликатися кожні 15 хвилин через HTTP.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Використовувати системний cron для виклику cron.php кожні 15 хвилин.", - "Enable server-side encryption" : "Увімкнути шифрування на сервері", - "Please read carefully before activating server-side encryption: " : "Будьте обережні під час активування шифрування на сервері:", - "Enable encryption" : "Увімкнути шифрування", - "Select default encryption module:" : "Обрати модуль шифрування за замовчуванням:", - "Start migration" : "Розпочати міграцію", - "This is used for sending out notifications." : "Використовується для відсилання повідомлень.", - "Send mode" : "Режим надсилання", - "Encryption" : "Шифрування", - "From address" : "Адреса відправника", - "mail" : "пошта", - "Authentication method" : "Спосіб аутентифікації", - "Authentication required" : "Потрібна аутентифікація", - "Server address" : "Адреса сервера", - "Port" : "Порт", - "Credentials" : "Облікові дані", - "SMTP Username" : "Ім'я користувача SMTP", - "SMTP Password" : "Пароль SMTP", - "Store credentials" : "Зберігати облікові дані", - "Test email settings" : "Тестувати налаштування електронної пошти", - "Send email" : "Надіслати листа", - "Download logfile" : "Завантажити файл журналу", - "More" : "Більше", - "Less" : "Менше", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Файл журналу - більше 100 МБ. Його завантаження може зайняти деякий час!", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "В якості бази даних використовується SQLite. Для великих установок ми рекомендуємо перейти на інший тип серверу баз даних.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Особливо сумнівне використання SQLite при синхронізації файлів з використанням клієнта для ПК.", - "How to do backups" : "Як робити резервне копіювання", - "Advanced monitoring" : "Розширений моніторинг", - "Performance tuning" : "Налаштування продуктивності", - "Improving the config.php" : "Покращення config.php", - "Theming" : "Оформлення", - "Hardening and security guidance" : "Інструктування з безпеки та захисту", - "Version" : "Версія", - "Developer documentation" : "Документація для розробників", - "Experimental applications ahead" : "Спершу експериментальні додатки", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Експериментальні додатки не перевірені на наявність проблем безпеки, нові або нестабільні і в процесі активної розробки. Встановлення їх може спричинити втрату даних або дірки в безпеці.", - "Documentation:" : "Документація:", - "User documentation" : "Користувацька документація", - "Admin documentation" : "Документація адміністратора", - "Show description …" : "Показати деталі ...", - "Hide description …" : "Сховати деталі ...", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Ця програма не може бути встановлено, так як наступні залежності не будуть виконані:", - "Enable only for specific groups" : "Включити тільки для конкретних груп", - "Uninstall App" : "Видалити додаток", - "Enable experimental apps" : "Увімкнути експериментальні застосунки", - "Common Name" : "Ім'я:", - "Valid until" : "Дійсно до", - "Issued By" : "Виданий", - "Valid until %s" : "Дійсно до %s", - "Import root certificate" : "Імпортувати кореневий сертифікат", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Агов,<br><br>просто щоб ви знали, у вас є аккаунт %s.<br><br>Ваше ім'я користувача: %s<br>Перейдіть сюди: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Будьмо!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Агов,\n\nпросто щоб ви знали, у вас є аккаунт %s.\n\nВаше ім'я користувача: %s\nПерейдіть сюди: %s\n\n", - "Administrator documentation" : "Документація адміністратора", - "Online documentation" : "Документація онлайн", - "Forum" : "Форум", - "Issue tracker" : "Вирішення проблем", - "Commercial support" : "Комерційна підтримка", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "Ви використовуєте <strong>%s</strong> з <strong>%s</strong>", - "Profile picture" : "Зображення облікового запису", - "Upload new" : "Завантажити нове", - "Remove image" : "Видалити зображення", - "Cancel" : "Відмінити", - "Choose as profile picture" : "Обрати як зображення для профілю", - "Full name" : "Повне ім'я", - "No display name set" : "Коротке ім'я не вказано", - "Email" : "E-mail", - "Your email address" : "Ваша адреса електронної пошти", - "No email address set" : "E-mail не вказано", - "You are member of the following groups:" : "Ви є членом наступних груп:", - "Password" : "Пароль", - "Unable to change your password" : "Не вдалося змінити Ваш пароль", - "Current password" : "Поточний пароль", - "New password" : "Новий пароль", - "Change password" : "Змінити пароль", - "Language" : "Мова", - "Help translate" : "Допомогти з перекладом", - "Get the apps to sync your files" : "Отримати додатки для синхронізації ваших файлів", - "Desktop client" : "Клієнт для ПК", - "Android app" : "Android-додаток", - "iOS app" : "iOS додаток", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Якщо Ви хочете підтримати проект\n⇥⇥ <a href=\"https://owncloud.org/contribute\"\n⇥⇥⇥target=\"_blank\" rel=\"noreferrer\"> спільна розробка </a> \n⇥⇥або\n⇥ ⇥ <a href=\"https://owncloud.org/promote\"\n ⇥⇥⇥target=\"_blank\" rel=\"noreferrer\"> повідомити у світі </a> !", - "Show First Run Wizard again" : "Показувати Майстер Налаштувань знову", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Розроблено {communityopen} спільнотою ownCloud {linkclose}, {githubopen} вихідний код {linkclose} ліцензується відповідно до {licenseopen} <abbr title = \"Публічної ліцензії Affero General\"> AGPL </ abbr> {linkclose}.", - "Show storage location" : "Показати місцезнаходження сховища", - "Show last log in" : "Показати останній вхід в систему", - "Show user backend" : "Показати користувача", - "Send email to new user" : "Надіслати email новому користувачу", - "Show email address" : "Показати адресу електронної пошти", - "Username" : "Ім'я користувача", - "E-Mail" : "Адреса електронної пошти", - "Create" : "Створити", - "Admin Recovery Password" : "Пароль адміністратора для відновлення", - "Enter the recovery password in order to recover the users files during password change" : "Введіть пароль для того, щоб відновити файли користувачів при зміні паролю", - "Add Group" : "Додати групу", - "Group" : "Група", - "Everyone" : "Всі", - "Admins" : "Адміністратори", - "Default Quota" : "Квота за замовчуванням", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Будь ласка, вкажіть розмір сховища (наприклад: \"512 MB\" або \"12 GB\")", - "Other" : "Інше", - "Full Name" : "Повне Ім'я", - "Group Admin for" : "Адміністратор групи", - "Quota" : "Квота", - "Storage Location" : "Місцезнаходження сховища", - "User Backend" : "Внутрішній користувач", - "Last Login" : "Останній вхід", - "change full name" : "змінити ім'я", - "set new password" : "встановити новий пароль", - "change email address" : "Змінити адресу електронної пошти", - "Default" : "За замовчуванням" -}, -"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"); diff --git a/settings/l10n/uk.json b/settings/l10n/uk.json deleted file mode 100644 index aebf8b206cf..00000000000 --- a/settings/l10n/uk.json +++ /dev/null @@ -1,262 +0,0 @@ -{ "translations": { - "Redis" : "Redis", - "Security & setup warnings" : "Попередження безпеки та налаштування", - "Sharing" : "Спільний доступ", - "Server-side encryption" : "Шифрування на сервері", - "External Storage" : "Зовнішні сховища", - "Cron" : "Планувальник Cron", - "Email server" : "Сервер електронної пошти", - "Log" : "Журнал", - "Tips & tricks" : "Поради і трюки", - "Updates" : "Оновлення", - "Couldn't remove app." : "Неможливо видалити додаток.", - "Language changed" : "Мову змінено", - "Invalid request" : "Некоректний запит", - "Authentication error" : "Помилка автентифікації", - "Admins can't remove themself from the admin group" : "Адміністратор не може видалити себе з групи адміністраторів", - "Unable to add user to group %s" : "Не вдалося додати користувача у групу %s", - "Unable to remove user from group %s" : "Не вдалося видалити користувача із групи %s", - "Couldn't update app." : "Не вдалося оновити додаток. ", - "Wrong password" : "Невірний пароль", - "No user supplied" : "Користувача не вказано", - "Please provide an admin recovery password, otherwise all user data will be lost" : "Будь ласка введіть пароль відновлення адміністратора, інакше всі дані будуть втрачені", - "Wrong admin recovery password. Please check the password and try again." : "Невірний пароль відновлення адміністратора. Будь ласка, перевірте пароль та спробуйте ще раз.", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "Backend не підтримує зміну паролів, але користувацький ключ шифрування було успішно змінено", - "Unable to change password" : "Неможливо змінити пароль", - "Enabled" : "Увімкнено", - "Not enabled" : "Вимкнено", - "installing and updating apps via the app store or Federated Cloud Sharing" : "встановлення та оновлення додатків через магазин додатків або Об’єднання хмарних сховищ", - "Federated Cloud Sharing" : "Об’єднання хмарних сховищ", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL використовує застарілу версію %s (%s). Будь ласка, поновіть вашу операційну систему або функції, такі як %s не працюватимуть надійно.", - "A problem occurred, please check your log files (Error: %s)" : "Виникла проблема, будь ласка, перевірте свої файли журналів (Помилка: %s)", - "Migration Completed" : "Міграцію завершено", - "Group already exists." : "Група вже існує.", - "Unable to add group." : "Неможливо додати групу.", - "Unable to delete group." : "Неможливо видалити групу.", - "log-level out of allowed range" : "рівень протоколювання перевищує дозволені межі", - "Saved" : "Збережено", - "test email settings" : "тест налаштувань електронної пошти", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Під час надсилання email сталася помилка. Будь ласка перевірте налаштування. (Помилка: %s)", - "Email sent" : "Лист надіслано", - "You need to set your user email before being able to send test emails." : "Перед надсиланням тестових листів ви повинні вказати свою email адресу.", - "Invalid mail address" : "Неправильна email адреса", - "A user with that name already exists." : "Користувач з таким іменем вже існує.", - "Unable to create user." : "Неможливо створити користувача.", - "Your %s account was created" : "Ваш %s аккаунт створений", - "Unable to delete user." : "Неможливо видалити користувача.", - "Forbidden" : "Заборонено", - "Invalid user" : "Неправильний користувач", - "Unable to change mail address" : "Неможливо поміняти email адресу", - "Email saved" : "Адресу збережено", - "Your full name has been changed." : "Ваше повне ім'я було змінено", - "Unable to change full name" : "Неможливо змінити повне ім'я", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "Ви дійсно бажаєте додати \"{domain}\" як довірений домен?", - "Add trusted domain" : "Додати довірений домен", - "Migration in progress. Please wait until the migration is finished" : "Міграція триває. Будь ласка, зачекайте доки процес міграції завершиться", - "Migration started …" : "Міграцію розпочато ...", - "Sending..." : "Надсилання...", - "Official" : "Офіційні", - "Approved" : "Схвалені", - "Experimental" : "Експериментальні", - "All" : "Всі", - "No apps found for your version" : "Немає застосунків для вашої версії", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Офіційні додатки розроблені спільнотою ownCloud. Вони реалізують основні можливості ownCloud і готові до використання в продакшені.", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Схвалені додатки розроблені довіреними розробниками і пройшли незалежну перевірку безпеки. Їх активно супроводжують у репозиторії з відкритим кодом, а їх розробники стежать, щоб вони були стабільні й прийнятні для повсякденного використання.", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Ця програма не перевірена на вразливості безпеки і є новою або нестабільною. Встановлюйте її на власний ризик.", - "Update to %s" : "Оновити до %s", - "Please wait...." : "Зачекайте, будь ласка...", - "Error while disabling app" : "Помилка вимикання додатка", - "Disable" : "Вимкнути", - "Enable" : "Увімкнути", - "Error while enabling app" : "Помилка вмикання додатка", - "Updating...." : "Оновлюється...", - "Error while updating app" : "Помилка при оновленні додатку", - "Updated" : "Оновлено", - "Uninstalling ...." : "Видалення...", - "Error while uninstalling app" : "Помилка видалення додатка", - "Uninstall" : "Видалити", - "App update" : "Оновлення додатку", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Виникла помилка. Будь ласка вивантажте PEM сертифікат в ASCII-кодуванні.", - "Valid until {date}" : "Дійсно до {date}", - "Delete" : "Видалити", - "An error occurred: {message}" : "Сталася помилка: {message}", - "Select a profile picture" : "Обрати зображення облікового запису", - "Very weak password" : "Дуже слабкий пароль", - "Weak password" : "Слабкий пароль", - "So-so password" : "Такий собі пароль", - "Good password" : "Добрий пароль", - "Strong password" : "Надійний пароль", - "Groups" : "Групи", - "Unable to delete {objName}" : "Не вдалося видалити {objName}", - "A valid group name must be provided" : "Потрібно задати вірне ім'я групи", - "deleted {groupName}" : "видалено {groupName}", - "undo" : "відмінити", - "no group" : "без групи", - "never" : "ніколи", - "deleted {userName}" : "видалено {userName}", - "add group" : "додати групу", - "Changing the password will result in data loss, because data recovery is not available for this user" : "Зміна пароля призведе до втрати даних, тому що відновлення даних не доступно для цього користувача", - "A valid username must be provided" : "Потрібно задати вірне ім'я користувача", - "A valid password must be provided" : "Потрібно задати вірний пароль", - "A valid email must be provided" : "Вкажіть дійсний email", - "__language_name__" : "__language_name__", - "Unlimited" : "Необмежено", - "Personal info" : "Особиста інформація", - "Sync clients" : "Клієнти синхронізації", - "Everything (fatal issues, errors, warnings, info, debug)" : "Усі (критичні проблеми, помилки, попередження, інформаційні, налагодження)", - "Info, warnings, errors and fatal issues" : "Інформаційні, попередження, помилки та критичні проблеми", - "Warnings, errors and fatal issues" : "Попередження, помилки та критичні проблеми", - "Errors and fatal issues" : "Помилки та критичні проблеми", - "Fatal issues only" : "Тільки критичні проблеми", - "None" : "Жоден", - "Login" : "Логін", - "Plain" : "Звичайний", - "NT LAN Manager" : "Менеджер NT LAN", - "SSL" : "SSL", - "TLS" : "TLS", - "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." : "Тільки перегляд був включений. Це запобігає встановити деякі конфігурації через веб-інтерфейс. Крім того, файл повинен бути доступний для запису вручну для кожного оновлення.", - "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.", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Ваш сервер працює на ОС Microsoft Windows. Ми настійно рекомендуємо використовувати ОС сімейства Linux для досягнення найкращих умов використання.", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP модуль 'fileinfo' відсутній. Ми наполегливо рекомендуємо увімкнути цей модуль, щоб отримати кращі результати при виявленні MIME-типів.", - "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.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Якщо ваша копія ownCloud встановлена не в корені домену та використовує систему планування CRON, можливі проблеми з генерацією правильних URL. Щоб уникнути цього, встановіть опцію \"overwrite.cli.url\" файлу config.php відповідно до теки розташування установки (Ймовірніше за все, це \"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Не вдалося запустити завдання планувальника через CLI. Відбулися наступні технічні помилки:", - "All checks passed." : "Всі перевірки пройдено.", - "Open documentation" : "Відкрити документацію", - "Allow apps to use the Share API" : "Дозволити програмам використовувати API спільного доступу", - "Allow users to share via link" : "Дозволити користувачам ділитися через посилання", - "Enforce password protection" : "Захист паролем обов'язковий", - "Allow public uploads" : "Дозволити публічне завантаження", - "Allow users to send mail notification for shared files" : "Дозволити користувачам сповіщати листами про спільний доступ до файлів", - "Set default expiration date" : "Встановити термін дії за замовчуванням", - "Expire after " : "Скінчиться через", - "days" : "днів", - "Enforce expiration date" : "Термін дії обов'язковий", - "Allow resharing" : "Дозволити перевідкривати спільний доступ", - "Restrict users to only share with users in their groups" : "Дозволити користувачам відкривати спільний доступ лише для користувачів з їхньої групи", - "Allow users to send mail notification for shared files to other users" : "Дозволити користувачам сповіщати листами про спільний доступ до файлів", - "Exclude groups from sharing" : "Виключити групи зі спільного доступу", - "These groups will still be able to receive shares, but not to initiate them." : "Ці групи зможуть отримувати спільні файли, але не зможуть відправляти їх.", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "Дозволи автодоповнення імені користувача в діалозі спільного доступу. Якщо вимкнено - треба буде вводити повне ім’я користувача.", - "Last cron job execution: %s." : "Останнє виконане Cron завдання: %s.", - "Last cron job execution: %s. Something seems wrong." : "Останнє виконане Cron завдання: %s. Щось здається неправильним.", - "Cron was not executed yet!" : "Cron-задачі ще не запускалися!", - "Execute one task with each page loaded" : "Виконати одне завдання для кожної завантаженої сторінки ", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php зареєстрований в службі webcron та буде викликатися кожні 15 хвилин через HTTP.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Використовувати системний cron для виклику cron.php кожні 15 хвилин.", - "Enable server-side encryption" : "Увімкнути шифрування на сервері", - "Please read carefully before activating server-side encryption: " : "Будьте обережні під час активування шифрування на сервері:", - "Enable encryption" : "Увімкнути шифрування", - "Select default encryption module:" : "Обрати модуль шифрування за замовчуванням:", - "Start migration" : "Розпочати міграцію", - "This is used for sending out notifications." : "Використовується для відсилання повідомлень.", - "Send mode" : "Режим надсилання", - "Encryption" : "Шифрування", - "From address" : "Адреса відправника", - "mail" : "пошта", - "Authentication method" : "Спосіб аутентифікації", - "Authentication required" : "Потрібна аутентифікація", - "Server address" : "Адреса сервера", - "Port" : "Порт", - "Credentials" : "Облікові дані", - "SMTP Username" : "Ім'я користувача SMTP", - "SMTP Password" : "Пароль SMTP", - "Store credentials" : "Зберігати облікові дані", - "Test email settings" : "Тестувати налаштування електронної пошти", - "Send email" : "Надіслати листа", - "Download logfile" : "Завантажити файл журналу", - "More" : "Більше", - "Less" : "Менше", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "Файл журналу - більше 100 МБ. Його завантаження може зайняти деякий час!", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "В якості бази даних використовується SQLite. Для великих установок ми рекомендуємо перейти на інший тип серверу баз даних.", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Особливо сумнівне використання SQLite при синхронізації файлів з використанням клієнта для ПК.", - "How to do backups" : "Як робити резервне копіювання", - "Advanced monitoring" : "Розширений моніторинг", - "Performance tuning" : "Налаштування продуктивності", - "Improving the config.php" : "Покращення config.php", - "Theming" : "Оформлення", - "Hardening and security guidance" : "Інструктування з безпеки та захисту", - "Version" : "Версія", - "Developer documentation" : "Документація для розробників", - "Experimental applications ahead" : "Спершу експериментальні додатки", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Експериментальні додатки не перевірені на наявність проблем безпеки, нові або нестабільні і в процесі активної розробки. Встановлення їх може спричинити втрату даних або дірки в безпеці.", - "Documentation:" : "Документація:", - "User documentation" : "Користувацька документація", - "Admin documentation" : "Документація адміністратора", - "Show description …" : "Показати деталі ...", - "Hide description …" : "Сховати деталі ...", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Ця програма не може бути встановлено, так як наступні залежності не будуть виконані:", - "Enable only for specific groups" : "Включити тільки для конкретних груп", - "Uninstall App" : "Видалити додаток", - "Enable experimental apps" : "Увімкнути експериментальні застосунки", - "Common Name" : "Ім'я:", - "Valid until" : "Дійсно до", - "Issued By" : "Виданий", - "Valid until %s" : "Дійсно до %s", - "Import root certificate" : "Імпортувати кореневий сертифікат", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Агов,<br><br>просто щоб ви знали, у вас є аккаунт %s.<br><br>Ваше ім'я користувача: %s<br>Перейдіть сюди: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "Будьмо!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Агов,\n\nпросто щоб ви знали, у вас є аккаунт %s.\n\nВаше ім'я користувача: %s\nПерейдіть сюди: %s\n\n", - "Administrator documentation" : "Документація адміністратора", - "Online documentation" : "Документація онлайн", - "Forum" : "Форум", - "Issue tracker" : "Вирішення проблем", - "Commercial support" : "Комерційна підтримка", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "Ви використовуєте <strong>%s</strong> з <strong>%s</strong>", - "Profile picture" : "Зображення облікового запису", - "Upload new" : "Завантажити нове", - "Remove image" : "Видалити зображення", - "Cancel" : "Відмінити", - "Choose as profile picture" : "Обрати як зображення для профілю", - "Full name" : "Повне ім'я", - "No display name set" : "Коротке ім'я не вказано", - "Email" : "E-mail", - "Your email address" : "Ваша адреса електронної пошти", - "No email address set" : "E-mail не вказано", - "You are member of the following groups:" : "Ви є членом наступних груп:", - "Password" : "Пароль", - "Unable to change your password" : "Не вдалося змінити Ваш пароль", - "Current password" : "Поточний пароль", - "New password" : "Новий пароль", - "Change password" : "Змінити пароль", - "Language" : "Мова", - "Help translate" : "Допомогти з перекладом", - "Get the apps to sync your files" : "Отримати додатки для синхронізації ваших файлів", - "Desktop client" : "Клієнт для ПК", - "Android app" : "Android-додаток", - "iOS app" : "iOS додаток", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Якщо Ви хочете підтримати проект\n⇥⇥ <a href=\"https://owncloud.org/contribute\"\n⇥⇥⇥target=\"_blank\" rel=\"noreferrer\"> спільна розробка </a> \n⇥⇥або\n⇥ ⇥ <a href=\"https://owncloud.org/promote\"\n ⇥⇥⇥target=\"_blank\" rel=\"noreferrer\"> повідомити у світі </a> !", - "Show First Run Wizard again" : "Показувати Майстер Налаштувань знову", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Розроблено {communityopen} спільнотою ownCloud {linkclose}, {githubopen} вихідний код {linkclose} ліцензується відповідно до {licenseopen} <abbr title = \"Публічної ліцензії Affero General\"> AGPL </ abbr> {linkclose}.", - "Show storage location" : "Показати місцезнаходження сховища", - "Show last log in" : "Показати останній вхід в систему", - "Show user backend" : "Показати користувача", - "Send email to new user" : "Надіслати email новому користувачу", - "Show email address" : "Показати адресу електронної пошти", - "Username" : "Ім'я користувача", - "E-Mail" : "Адреса електронної пошти", - "Create" : "Створити", - "Admin Recovery Password" : "Пароль адміністратора для відновлення", - "Enter the recovery password in order to recover the users files during password change" : "Введіть пароль для того, щоб відновити файли користувачів при зміні паролю", - "Add Group" : "Додати групу", - "Group" : "Група", - "Everyone" : "Всі", - "Admins" : "Адміністратори", - "Default Quota" : "Квота за замовчуванням", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Будь ласка, вкажіть розмір сховища (наприклад: \"512 MB\" або \"12 GB\")", - "Other" : "Інше", - "Full Name" : "Повне Ім'я", - "Group Admin for" : "Адміністратор групи", - "Quota" : "Квота", - "Storage Location" : "Місцезнаходження сховища", - "User Backend" : "Внутрішній користувач", - "Last Login" : "Останній вхід", - "change full name" : "змінити ім'я", - "set new password" : "встановити новий пароль", - "change email address" : "Змінити адресу електронної пошти", - "Default" : "За замовчуванням" -},"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);" -}
\ No newline at end of file diff --git a/settings/l10n/ur_PK.js b/settings/l10n/ur_PK.js deleted file mode 100644 index a7d7b31f6ab..00000000000 --- a/settings/l10n/ur_PK.js +++ /dev/null @@ -1,21 +0,0 @@ -OC.L10N.register( - "settings", - { - "Invalid request" : "غلط درخواست", - "Email sent" : "ارسال شدہ ای میل ", - "Delete" : "حذف کریں", - "Very weak password" : "بہت کمزور پاسورڈ", - "Weak password" : "کمزور پاسورڈ", - "So-so password" : "نص نص پاسورڈ", - "Good password" : "اچھا پاسورڈ", - "Strong password" : "مضبوط پاسورڈ", - "More" : "مزید", - "Less" : "کم", - "Cheers!" : "واہ!", - "Cancel" : "منسوخ کریں", - "Password" : "پاسورڈ", - "New password" : "نیا پاسورڈ", - "Username" : "یوزر نیم", - "Other" : "دیگر" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/ur_PK.json b/settings/l10n/ur_PK.json deleted file mode 100644 index 63c0fe8e803..00000000000 --- a/settings/l10n/ur_PK.json +++ /dev/null @@ -1,19 +0,0 @@ -{ "translations": { - "Invalid request" : "غلط درخواست", - "Email sent" : "ارسال شدہ ای میل ", - "Delete" : "حذف کریں", - "Very weak password" : "بہت کمزور پاسورڈ", - "Weak password" : "کمزور پاسورڈ", - "So-so password" : "نص نص پاسورڈ", - "Good password" : "اچھا پاسورڈ", - "Strong password" : "مضبوط پاسورڈ", - "More" : "مزید", - "Less" : "کم", - "Cheers!" : "واہ!", - "Cancel" : "منسوخ کریں", - "Password" : "پاسورڈ", - "New password" : "نیا پاسورڈ", - "Username" : "یوزر نیم", - "Other" : "دیگر" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -}
\ No newline at end of file diff --git a/settings/l10n/vi.js b/settings/l10n/vi.js deleted file mode 100644 index 26162860bf5..00000000000 --- a/settings/l10n/vi.js +++ /dev/null @@ -1,74 +0,0 @@ -OC.L10N.register( - "settings", - { - "Security & setup warnings" : "Bảo mật và thiết lập cảnh báo", - "Sharing" : "Chia sẻ", - "External Storage" : "Lưu trữ ngoài", - "Cron" : "Cron", - "Log" : "Log", - "Language changed" : "Ngôn ngữ đã được thay đổi", - "Invalid request" : "Yêu cầu không hợp lệ", - "Authentication error" : "Lỗi xác thực", - "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ý", - "Unable to add user to group %s" : "Không thể thêm người dùng vào nhóm %s", - "Unable to remove user from group %s" : "Không thể xóa người dùng từ nhóm %s", - "Couldn't update app." : "Không thể cập nhật ứng dụng", - "Enabled" : "Bật", - "Saved" : "Đã lưu", - "Email sent" : "Email đã được gửi", - "Email saved" : "Lưu email", - "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 ", - "All" : "Tất cả", - "Please wait...." : "Xin hãy đợi...", - "Disable" : "Tắt", - "Enable" : "Bật", - "Updating...." : "Đang cập nhật...", - "Error while updating app" : "Lỗi khi cập nhật ứng dụng", - "Updated" : "Đã cập nhật", - "Delete" : "Xóa", - "Groups" : "Nhóm", - "undo" : "lùi lại", - "never" : "không thay đổi", - "__language_name__" : "__Ngôn ngữ___", - "Unlimited" : "Không giới hạn", - "None" : "Không gì cả", - "Login" : "Đăng nhập", - "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", - "Execute one task with each page loaded" : "Thực thi tác vụ mỗi khi trang được tải", - "Encryption" : "Mã hóa", - "Server address" : "Địa chỉ máy chủ", - "Port" : "Cổng", - "Credentials" : "Giấy chứng nhận", - "More" : "hơn", - "Less" : "ít", - "Version" : "Phiên bản", - "Cheers!" : "Chúc mừng!", - "Forum" : "Diễn đàn", - "Upload new" : "Tải lên", - "Remove image" : "Xóa ", - "Cancel" : "Hủy", - "Email" : "Email", - "Your email address" : "Email của bạn", - "Password" : "Mật khẩu", - "Unable to change your password" : "Không thể đổi mật khẩu", - "Current password" : "Mật khẩu cũ", - "New password" : "Mật khẩu mới", - "Change password" : "Đổi mật khẩu", - "Language" : "Ngôn ngữ", - "Help translate" : "Hỗ trợ dịch thuật", - "Get the apps to sync your files" : "Nhận ứng dụng để đồng bộ file của bạn", - "Show First Run Wizard again" : "Hiện lại việc chạy đồ thuật khởi đầu", - "Username" : "Tên đăng nhập", - "Create" : "Tạo", - "Group" : "N", - "Default Quota" : "Hạn ngạch mặt định", - "Other" : "Khác", - "Full Name" : "Họ và tên", - "Quota" : "Hạn ngạch", - "change full name" : "Đổi họ và t", - "set new password" : "đặt mật khẩu mới", - "Default" : "Mặc định" -}, -"nplurals=1; plural=0;"); diff --git a/settings/l10n/vi.json b/settings/l10n/vi.json deleted file mode 100644 index ad32dc093b4..00000000000 --- a/settings/l10n/vi.json +++ /dev/null @@ -1,72 +0,0 @@ -{ "translations": { - "Security & setup warnings" : "Bảo mật và thiết lập cảnh báo", - "Sharing" : "Chia sẻ", - "External Storage" : "Lưu trữ ngoài", - "Cron" : "Cron", - "Log" : "Log", - "Language changed" : "Ngôn ngữ đã được thay đổi", - "Invalid request" : "Yêu cầu không hợp lệ", - "Authentication error" : "Lỗi xác thực", - "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ý", - "Unable to add user to group %s" : "Không thể thêm người dùng vào nhóm %s", - "Unable to remove user from group %s" : "Không thể xóa người dùng từ nhóm %s", - "Couldn't update app." : "Không thể cập nhật ứng dụng", - "Enabled" : "Bật", - "Saved" : "Đã lưu", - "Email sent" : "Email đã được gửi", - "Email saved" : "Lưu email", - "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 ", - "All" : "Tất cả", - "Please wait...." : "Xin hãy đợi...", - "Disable" : "Tắt", - "Enable" : "Bật", - "Updating...." : "Đang cập nhật...", - "Error while updating app" : "Lỗi khi cập nhật ứng dụng", - "Updated" : "Đã cập nhật", - "Delete" : "Xóa", - "Groups" : "Nhóm", - "undo" : "lùi lại", - "never" : "không thay đổi", - "__language_name__" : "__Ngôn ngữ___", - "Unlimited" : "Không giới hạn", - "None" : "Không gì cả", - "Login" : "Đăng nhập", - "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", - "Execute one task with each page loaded" : "Thực thi tác vụ mỗi khi trang được tải", - "Encryption" : "Mã hóa", - "Server address" : "Địa chỉ máy chủ", - "Port" : "Cổng", - "Credentials" : "Giấy chứng nhận", - "More" : "hơn", - "Less" : "ít", - "Version" : "Phiên bản", - "Cheers!" : "Chúc mừng!", - "Forum" : "Diễn đàn", - "Upload new" : "Tải lên", - "Remove image" : "Xóa ", - "Cancel" : "Hủy", - "Email" : "Email", - "Your email address" : "Email của bạn", - "Password" : "Mật khẩu", - "Unable to change your password" : "Không thể đổi mật khẩu", - "Current password" : "Mật khẩu cũ", - "New password" : "Mật khẩu mới", - "Change password" : "Đổi mật khẩu", - "Language" : "Ngôn ngữ", - "Help translate" : "Hỗ trợ dịch thuật", - "Get the apps to sync your files" : "Nhận ứng dụng để đồng bộ file của bạn", - "Show First Run Wizard again" : "Hiện lại việc chạy đồ thuật khởi đầu", - "Username" : "Tên đăng nhập", - "Create" : "Tạo", - "Group" : "N", - "Default Quota" : "Hạn ngạch mặt định", - "Other" : "Khác", - "Full Name" : "Họ và tên", - "Quota" : "Hạn ngạch", - "change full name" : "Đổi họ và t", - "set new password" : "đặt mật khẩu mới", - "Default" : "Mặc định" -},"pluralForm" :"nplurals=1; plural=0;" -}
\ No newline at end of file diff --git a/settings/l10n/zh_CN.js b/settings/l10n/zh_CN.js deleted file mode 100644 index c3ec2ebea0e..00000000000 --- a/settings/l10n/zh_CN.js +++ /dev/null @@ -1,290 +0,0 @@ -OC.L10N.register( - "settings", - { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "安全及设置警告", - "Sharing" : "共享", - "Server-side encryption" : "服务器端加密", - "External Storage" : "外部存储", - "Cron" : "计划任务", - "Email server" : "电子邮件服务器", - "Log" : "日志", - "Tips & tricks" : "技巧提示", - "Updates" : "更新", - "Couldn't remove app." : "无法删除应用。", - "Language changed" : "语言已修改", - "Invalid request" : "无效请求", - "Authentication error" : "认证错误", - "Admins can't remove themself from the admin group" : "管理员不能将自己移出管理组。", - "Unable to add user to group %s" : "无法把用户增加到组 %s", - "Unable to remove user from group %s" : "无法从组%s中移除用户", - "Couldn't update app." : "无法更新应用。", - "Wrong password" : "错误密码", - "No user supplied" : "没有满足的用户", - "Please provide an admin recovery password, otherwise all user data will be lost" : "请提供管理员恢复密码,否则所有用户的数据都将遗失。", - "Wrong admin recovery password. Please check the password and try again." : "错误的管理员恢复密码。请检查密码并重试。", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "后端不支持密码更改,但用户的加密密钥已成功更新。", - "Unable to change password" : "不能更改密码", - "Enabled" : "开启", - "Not enabled" : "未启用", - "installing and updating apps via the app store or Federated Cloud Sharing" : "通过应用程序商店或联合云共享安装和更新应用程序", - "Federated Cloud Sharing" : "联合云共享", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL使用了过时 %s 版本 (%s)。请更新你的操作系统或功能比如 %s 将无法可靠地工作。", - "A problem occurred, please check your log files (Error: %s)" : "出现了故障,请检查你的日志文件 (错误: %s)", - "Migration Completed" : "迁移完成", - "Group already exists." : "组已经存在。", - "Unable to add group." : "无法添加组。", - "Unable to delete group." : "无法删除组", - "log-level out of allowed range" : "日志级别超出允许的范围", - "Saved" : "已保存", - "test email settings" : "测试电子邮件设置", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "在发送电子邮件时出现问题。请修改您的设置。 (错误: %s)", - "Email sent" : "邮件已发送", - "You need to set your user email before being able to send test emails." : "在发送测试邮件前您需要设置您的用户电子邮件。", - "Invalid mail address" : "无效的电子邮件地址", - "A user with that name already exists." : "使用该名称的用户已存在。", - "Unable to create user." : "无法创建用户。", - "Your %s account was created" : "你的帐户 %s 已创建", - "Unable to delete user." : "不能删除用户", - "Forbidden" : "被禁止", - "Invalid user" : "用户无效", - "Unable to change mail address" : "无法更改邮箱地址", - "Email saved" : "电子邮件已保存", - "Your full name has been changed." : "您的全名已修改。", - "Unable to change full name" : "无法修改全名", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "你真的希望添加 \"{domain}\" 为信任域?", - "Add trusted domain" : "添加信任域", - "Migration in progress. Please wait until the migration is finished" : "迁移正在进行中。请等待,直到完成迁移", - "Migration started …" : "迁移开始...", - "Sending..." : "正在发送...", - "Official" : "官方", - "Approved" : "已认可", - "Experimental" : "实验", - "All" : "全部", - "No apps found for your version" : "未找到适合当前版本的应用", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "官方应用是由 ownCloud 社区开发。他们提供 ownCloud 的功能核心并准备用于生产。", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "已认可的应用是由值得信赖的开发商开发,并已通过了一个粗略的安全检查。他们放在一个开放的代码库并且维护人员认为他们是稳定的差不多可以正常使用。", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "此应用未检查安全问题,它是新的或已知是不稳定的。安装风险自担。", - "Update to %s" : "更新为 %s", - "_You have %n app update pending_::_You have %n app updates pending_" : ["%n 个应用正在等待升级"], - "Please wait...." : "请稍等....", - "Error while disabling app" : "禁用应用时出错", - "Disable" : "禁用", - "Enable" : "开启", - "Error while enabling app" : "启用应用时出错", - "Error: this app cannot be enabled because it makes the server unstable" : "错误: 无法启用应用因为它会导致服务器不稳定", - "Error: could not disable broken app" : "错误: 无法禁用损坏的应用", - "Error while disabling broken app" : "禁用损坏的应用时出错", - "Updating...." : "正在更新....", - "Error while updating app" : "更新应用时出错", - "Updated" : "已更新", - "Uninstalling ...." : "卸载中....", - "Error while uninstalling app" : "卸载应用时发生了一个错误", - "Uninstall" : "卸载", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "该应用已启用,但是需要更新。5秒后将跳转到更新页面。", - "App update" : "应用更新", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "出现了一个错误。请上传 ASCII 编码的 PEM 证书。", - "Valid until {date}" : "有效期至 {date}", - "Delete" : "删除", - "An error occurred: {message}" : "发生错误: {message}", - "Select a profile picture" : "选择头像", - "Very weak password" : "非常弱的密码", - "Weak password" : "弱密码", - "So-so password" : "一般强度的密码", - "Good password" : "较强的密码", - "Strong password" : "强密码", - "Groups" : "组", - "Unable to delete {objName}" : "无法删除 {objName}", - "Error creating group: {message}" : "创建组时出错: {message}", - "A valid group name must be provided" : "请提供一个有效的组名称", - "deleted {groupName}" : "已删除 {groupName}", - "undo" : "撤销", - "no group" : "没有组", - "never" : "从不", - "deleted {userName}" : "已删除 {userName}", - "add group" : "增加组", - "Changing the password will result in data loss, because data recovery is not available for this user" : "更改密码会导致数据丢失,因为数据恢复不适用于此用户", - "A valid username must be provided" : "必须提供合法的用户名", - "Error creating user: {message}" : "创建用户出错: {message}", - "A valid password must be provided" : "必须提供合法的密码", - "A valid email must be provided" : "必须提供合法的用户名", - "__language_name__" : "简体中文", - "Unlimited" : "无限", - "Personal info" : "个人信息", - "Sync clients" : "客户端", - "Everything (fatal issues, errors, warnings, info, debug)" : "所有(灾难性问题,错误,警告,信息,调试)", - "Info, warnings, errors and fatal issues" : "信息,警告,错误和灾难性问题", - "Warnings, errors and fatal issues" : "警告,错误和灾难性问题", - "Errors and fatal issues" : "错误和灾难性问题", - "Fatal issues only" : "仅灾难性问题", - "None" : "无", - "Login" : "登录", - "Plain" : "Plain", - "NT LAN Manager" : "NT LAN 管理器", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "PHP 似乎没有设置好查询的系统环境变量。 用 getenv(\\\"PATH\\\") 测试只返回一个空值。", - "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." : "只读配置已启用。这样可防止通过 WEB 接口设置一些配置。此外,每次更新后该文件需要手动设置为可写。", - "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。", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "你的服务器是运行于 Microsoft Windows 系统。我们强烈推荐使用 Linux 系统以获得最佳的用户体验。比如中文文件夹和文件名支持。", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP模块'文件信息'丢失. 我们强烈建议启用此模块以便mime类型检测取得最佳结果.", - "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.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "如果你不是安装在网域根目录而且又使用系统定时计划任务,那么可以导致 URL 链接生成问题。为了避免这些问题,请在你的 Config.php 文件中设置 \\\"overwrite.cli.url\\\" 选项为 webroot 安装根目录 (建议: \\\"%s\\\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "由于下面的错误,无法通过 CLI 执行定时计划任务:", - "All checks passed." : "所有检查已通过。", - "Open documentation" : "打开文档", - "Allow apps to use the Share API" : "允许应用软件使用共享API", - "Allow users to share via link" : "允许用户通过链接分享文件", - "Enforce password protection" : "强制密码保护", - "Allow public uploads" : "允许公开上传", - "Allow users to send mail notification for shared files" : "允许用户发送共享文件的邮件通知", - "Set default expiration date" : "设置默认过期日期", - "Expire after " : "过期于", - "days" : "天", - "Enforce expiration date" : "强制过期日期", - "Allow resharing" : "允许再次共享", - "Restrict users to only share with users in their groups" : "限制仅与组内用户分享", - "Allow users to send mail notification for shared files to other users" : "允许用户发送共享文件的邮件通知给其他用户", - "Exclude groups from sharing" : "在分享中排除组", - "These groups will still be able to receive shares, but not to initiate them." : "这些组将仍可以获取分享,但无法向他人分享。", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "允许在共享对话框中的自动补全用户名。如果被禁用,需要输入用户全名。", - "Last cron job execution: %s." : "上次定时任务执行于: %s.", - "Last cron job execution: %s. Something seems wrong." : "上次定时任务执行于: %s. 似乎有些问题。", - "Cron was not executed yet!" : "定时任务还未被执行!", - "Execute one task with each page loaded" : "每个页面加载后执行一个任务", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php 已注册于一个 webcron 服务来通过 http 每 15 分钟执行 cron.php。", - "Use system's cron service to call the cron.php file every 15 minutes." : "使用系统 CRON 服务每 15 分钟执行一次 cron.php 文件。", - "Enable server-side encryption" : "启用服务器端加密", - "Please read carefully before activating server-side encryption: " : "在激活服务器端加密之前,请仔细阅读:", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "一旦加密被启用,之后上传到服务器的所有文件都将服务器上加密。只有当启用状态的加密模块支持解密并且所有的先决条件(例如,设定恢复键)得到满足时才能解除加密。", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "加密本身并不能保证系统的安全性。请参阅ownCloud文档有关加密应用程序是如何工作和支持用例的详细信息等。", - "Be aware that encryption always increases the file size." : "请注意,加密会增加文件大小。", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "定期备份数据有利于保证数据完整,并且确保备份您的加密数据和加密密钥。", - "This is the final warning: Do you really want to enable encryption?" : "这是最后一次警告:你真的想启用加密?", - "Enable encryption" : "启用加密", - "No encryption module loaded, please enable an encryption module in the app menu." : "没有加载加密模块,请在 APP 应用菜单中启用加密模块。", - "Select default encryption module:" : "选择默认的加密模块:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "你需要升级你的加密密钥 (旧版 ownCloud <= 8.0) 。 请在应用中启用 \\\"Default encryption module\\\" 并运行 'occ encryption:migrate'", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "您需要将加密密钥从旧版(ownCloud<=8.0)迁移到新版。", - "Start migration" : "开始迁移", - "This is used for sending out notifications." : "这被用于发送通知。", - "Send mode" : "发送模式", - "Encryption" : "加密", - "From address" : "来自地址", - "mail" : "邮件", - "Authentication method" : "认证方法", - "Authentication required" : "需要认证", - "Server address" : "服务器地址", - "Port" : "端口", - "Credentials" : "凭证", - "SMTP Username" : "SMTP 用户名", - "SMTP Password" : "SMTP 密码", - "Store credentials" : "存储凭据", - "Test email settings" : "测试电子邮件设置", - "Send email" : "发送邮件", - "Download logfile" : "下载日志文件", - "More" : "更多", - "Less" : "更少", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "日志文件超过 100 MB。下载可能需要一些时间!", - "What to log" : "记录日志", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite 被用作数据库。对于较大数据量的安装和使用,我们建议您切换到不同的数据库后端。", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "特别当使用桌面客户端来同步文件时,不鼓励使用 SQLite 。", - "How to do backups" : "如何做备份", - "Advanced monitoring" : "高级监控", - "Performance tuning" : "性能优化", - "Improving the config.php" : "正在优化 config.php", - "Theming" : "主题", - "Hardening and security guidance" : "强化和安全指南", - "Version" : "版本", - "Developer documentation" : "开发者文档", - "Experimental applications ahead" : "未来的实验应用", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "实验应用程序没有在安全性的问题上作过多检查,新的或已知的不稳定 BUG 都在开发中。安装它们可能会导致数据丢失或安全漏洞。", - "%s-licensed" : "%s-许可协议", - "Documentation:" : "文档:", - "User documentation" : "用户文档", - "Admin documentation" : "管理员文档", - "Show description …" : "显示描述...", - "Hide description …" : "隐藏描述...", - "This app has an update available." : "此应用有可用的更新。", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "这个程序没有指定最低的ownCloud版本。这是在ownCloud11之后版本的错误。", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "这个程序没有指定最高的ownCloud版本。这是在ownCloud11之后版本的错误。", - "This app cannot be installed because the following dependencies are not fulfilled:" : "此应用程序无法安装,因为以下依赖性不满足:", - "Enable only for specific groups" : "仅对特定的组开放", - "Uninstall App" : "卸载应用", - "Enable experimental apps" : "启用实验性应用程序", - "SSL Root Certificates" : "SSL 根证书", - "Common Name" : "通用名称", - "Valid until" : "有效期至", - "Issued By" : "授权由", - "Valid until %s" : "有效期至 %s", - "Import root certificate" : "导入根证书", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "亲,<br><br>现在我们为你开通了 %s 私有云帐户。<br><br>你的用户名: %s<br>访问网址: <a href=\\\"%s\\\">%s</a><br><br>", - "Cheers!" : "干杯!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "亲,\\n\\n 现在我们为你开通了 %s 私有去帐户。\\n\\n 你的用户名: %s\\n 访问网址: %s\\n 你的初始密码需要咨询系统管理员。或者你也可以在登录页面输入任意密码登录,\\n登录窗口将出现忘记密码链接,点击通过注册邮箱重设初始密码。\\n\\n", - "Administrator documentation" : "管理员文档", - "Online documentation" : "在线文档", - "Forum" : "论坛", - "Issue tracker" : "问题跟踪", - "Commercial support" : "商业支持", - "Profile picture" : "联系人图片", - "Upload new" : "上传新的", - "Select from Files" : "选择文件", - "Remove image" : "移除图片", - "png or jpg, max. 20 MB" : "png或jpg格式最大不超过20MB大小", - "Picture provided by original account" : "原始账户图片", - "Cancel" : "取消", - "Choose as profile picture" : "选择图片", - "Full name" : "全名", - "No display name set" : "不显示名称设置", - "Email" : "电子邮件", - "Your email address" : "您的电子邮件", - "For password recovery and notifications" : "用户恢复密码通知", - "No email address set" : "尚未设置 Email 地址", - "You are member of the following groups:" : "您是以下组的成员:", - "Password" : "密码", - "Unable to change your password" : "无法修改密码", - "Current password" : "当前密码", - "New password" : "新密码", - "Change password" : "修改密码", - "Language" : "语言", - "Help translate" : "帮助翻译", - "Get the apps to sync your files" : "安装应用进行文件同步", - "Desktop client" : "桌面客户端", - "Android app" : "Android 应用", - "iOS app" : "iOS 应用", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "想支持ownCloud项目?请\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">参加开发</a>\n\t\t或者\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">帮助推广</a>吧!", - "Show First Run Wizard again" : "再次显示首次运行向导", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "由 {communityopen}ownCloud 社区{linkclose}开发,{githubopen}源代码{linkclose}的发布需遵守 {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr> 许可协议{linkclose}。", - "Show storage location" : "显示存储位置", - "Show last log in" : "显示最后登录", - "Show user backend" : "显示用户后端", - "Send email to new user" : "发送电子邮件给新用户", - "Show email address" : "显示邮件地址", - "Username" : "用户名", - "E-Mail" : "E-Mail", - "Create" : "创建", - "Admin Recovery Password" : "管理恢复密码", - "Enter the recovery password in order to recover the users files during password change" : "输入恢复密码来在更改密码的时候恢复用户文件", - "Add Group" : "增加组", - "Group" : "分组", - "Everyone" : "所有人", - "Admins" : "管理员", - "Default Quota" : "默认配额", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "请输入存储限额 (ex: \"512 MB\" or \"12 GB\")", - "Other" : "其它", - "Full Name" : "全名", - "Group Admin for" : "设为以下组管理员", - "Quota" : "配额", - "Storage Location" : "存储空间位置", - "User Backend" : "用户后端", - "Last Login" : "最后登录", - "change full name" : "更改全名", - "set new password" : "设置新密码", - "change email address" : "修改电子邮箱地址", - "Default" : "默认" -}, -"nplurals=1; plural=0;"); diff --git a/settings/l10n/zh_CN.json b/settings/l10n/zh_CN.json deleted file mode 100644 index aa5827bbac6..00000000000 --- a/settings/l10n/zh_CN.json +++ /dev/null @@ -1,288 +0,0 @@ -{ "translations": { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "安全及设置警告", - "Sharing" : "共享", - "Server-side encryption" : "服务器端加密", - "External Storage" : "外部存储", - "Cron" : "计划任务", - "Email server" : "电子邮件服务器", - "Log" : "日志", - "Tips & tricks" : "技巧提示", - "Updates" : "更新", - "Couldn't remove app." : "无法删除应用。", - "Language changed" : "语言已修改", - "Invalid request" : "无效请求", - "Authentication error" : "认证错误", - "Admins can't remove themself from the admin group" : "管理员不能将自己移出管理组。", - "Unable to add user to group %s" : "无法把用户增加到组 %s", - "Unable to remove user from group %s" : "无法从组%s中移除用户", - "Couldn't update app." : "无法更新应用。", - "Wrong password" : "错误密码", - "No user supplied" : "没有满足的用户", - "Please provide an admin recovery password, otherwise all user data will be lost" : "请提供管理员恢复密码,否则所有用户的数据都将遗失。", - "Wrong admin recovery password. Please check the password and try again." : "错误的管理员恢复密码。请检查密码并重试。", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "后端不支持密码更改,但用户的加密密钥已成功更新。", - "Unable to change password" : "不能更改密码", - "Enabled" : "开启", - "Not enabled" : "未启用", - "installing and updating apps via the app store or Federated Cloud Sharing" : "通过应用程序商店或联合云共享安装和更新应用程序", - "Federated Cloud Sharing" : "联合云共享", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL使用了过时 %s 版本 (%s)。请更新你的操作系统或功能比如 %s 将无法可靠地工作。", - "A problem occurred, please check your log files (Error: %s)" : "出现了故障,请检查你的日志文件 (错误: %s)", - "Migration Completed" : "迁移完成", - "Group already exists." : "组已经存在。", - "Unable to add group." : "无法添加组。", - "Unable to delete group." : "无法删除组", - "log-level out of allowed range" : "日志级别超出允许的范围", - "Saved" : "已保存", - "test email settings" : "测试电子邮件设置", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "在发送电子邮件时出现问题。请修改您的设置。 (错误: %s)", - "Email sent" : "邮件已发送", - "You need to set your user email before being able to send test emails." : "在发送测试邮件前您需要设置您的用户电子邮件。", - "Invalid mail address" : "无效的电子邮件地址", - "A user with that name already exists." : "使用该名称的用户已存在。", - "Unable to create user." : "无法创建用户。", - "Your %s account was created" : "你的帐户 %s 已创建", - "Unable to delete user." : "不能删除用户", - "Forbidden" : "被禁止", - "Invalid user" : "用户无效", - "Unable to change mail address" : "无法更改邮箱地址", - "Email saved" : "电子邮件已保存", - "Your full name has been changed." : "您的全名已修改。", - "Unable to change full name" : "无法修改全名", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "你真的希望添加 \"{domain}\" 为信任域?", - "Add trusted domain" : "添加信任域", - "Migration in progress. Please wait until the migration is finished" : "迁移正在进行中。请等待,直到完成迁移", - "Migration started …" : "迁移开始...", - "Sending..." : "正在发送...", - "Official" : "官方", - "Approved" : "已认可", - "Experimental" : "实验", - "All" : "全部", - "No apps found for your version" : "未找到适合当前版本的应用", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "官方应用是由 ownCloud 社区开发。他们提供 ownCloud 的功能核心并准备用于生产。", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "已认可的应用是由值得信赖的开发商开发,并已通过了一个粗略的安全检查。他们放在一个开放的代码库并且维护人员认为他们是稳定的差不多可以正常使用。", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "此应用未检查安全问题,它是新的或已知是不稳定的。安装风险自担。", - "Update to %s" : "更新为 %s", - "_You have %n app update pending_::_You have %n app updates pending_" : ["%n 个应用正在等待升级"], - "Please wait...." : "请稍等....", - "Error while disabling app" : "禁用应用时出错", - "Disable" : "禁用", - "Enable" : "开启", - "Error while enabling app" : "启用应用时出错", - "Error: this app cannot be enabled because it makes the server unstable" : "错误: 无法启用应用因为它会导致服务器不稳定", - "Error: could not disable broken app" : "错误: 无法禁用损坏的应用", - "Error while disabling broken app" : "禁用损坏的应用时出错", - "Updating...." : "正在更新....", - "Error while updating app" : "更新应用时出错", - "Updated" : "已更新", - "Uninstalling ...." : "卸载中....", - "Error while uninstalling app" : "卸载应用时发生了一个错误", - "Uninstall" : "卸载", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "该应用已启用,但是需要更新。5秒后将跳转到更新页面。", - "App update" : "应用更新", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "出现了一个错误。请上传 ASCII 编码的 PEM 证书。", - "Valid until {date}" : "有效期至 {date}", - "Delete" : "删除", - "An error occurred: {message}" : "发生错误: {message}", - "Select a profile picture" : "选择头像", - "Very weak password" : "非常弱的密码", - "Weak password" : "弱密码", - "So-so password" : "一般强度的密码", - "Good password" : "较强的密码", - "Strong password" : "强密码", - "Groups" : "组", - "Unable to delete {objName}" : "无法删除 {objName}", - "Error creating group: {message}" : "创建组时出错: {message}", - "A valid group name must be provided" : "请提供一个有效的组名称", - "deleted {groupName}" : "已删除 {groupName}", - "undo" : "撤销", - "no group" : "没有组", - "never" : "从不", - "deleted {userName}" : "已删除 {userName}", - "add group" : "增加组", - "Changing the password will result in data loss, because data recovery is not available for this user" : "更改密码会导致数据丢失,因为数据恢复不适用于此用户", - "A valid username must be provided" : "必须提供合法的用户名", - "Error creating user: {message}" : "创建用户出错: {message}", - "A valid password must be provided" : "必须提供合法的密码", - "A valid email must be provided" : "必须提供合法的用户名", - "__language_name__" : "简体中文", - "Unlimited" : "无限", - "Personal info" : "个人信息", - "Sync clients" : "客户端", - "Everything (fatal issues, errors, warnings, info, debug)" : "所有(灾难性问题,错误,警告,信息,调试)", - "Info, warnings, errors and fatal issues" : "信息,警告,错误和灾难性问题", - "Warnings, errors and fatal issues" : "警告,错误和灾难性问题", - "Errors and fatal issues" : "错误和灾难性问题", - "Fatal issues only" : "仅灾难性问题", - "None" : "无", - "Login" : "登录", - "Plain" : "Plain", - "NT LAN Manager" : "NT LAN 管理器", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "PHP 似乎没有设置好查询的系统环境变量。 用 getenv(\\\"PATH\\\") 测试只返回一个空值。", - "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." : "只读配置已启用。这样可防止通过 WEB 接口设置一些配置。此外,每次更新后该文件需要手动设置为可写。", - "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。", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "你的服务器是运行于 Microsoft Windows 系统。我们强烈推荐使用 Linux 系统以获得最佳的用户体验。比如中文文件夹和文件名支持。", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP模块'文件信息'丢失. 我们强烈建议启用此模块以便mime类型检测取得最佳结果.", - "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.", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "如果你不是安装在网域根目录而且又使用系统定时计划任务,那么可以导致 URL 链接生成问题。为了避免这些问题,请在你的 Config.php 文件中设置 \\\"overwrite.cli.url\\\" 选项为 webroot 安装根目录 (建议: \\\"%s\\\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "由于下面的错误,无法通过 CLI 执行定时计划任务:", - "All checks passed." : "所有检查已通过。", - "Open documentation" : "打开文档", - "Allow apps to use the Share API" : "允许应用软件使用共享API", - "Allow users to share via link" : "允许用户通过链接分享文件", - "Enforce password protection" : "强制密码保护", - "Allow public uploads" : "允许公开上传", - "Allow users to send mail notification for shared files" : "允许用户发送共享文件的邮件通知", - "Set default expiration date" : "设置默认过期日期", - "Expire after " : "过期于", - "days" : "天", - "Enforce expiration date" : "强制过期日期", - "Allow resharing" : "允许再次共享", - "Restrict users to only share with users in their groups" : "限制仅与组内用户分享", - "Allow users to send mail notification for shared files to other users" : "允许用户发送共享文件的邮件通知给其他用户", - "Exclude groups from sharing" : "在分享中排除组", - "These groups will still be able to receive shares, but not to initiate them." : "这些组将仍可以获取分享,但无法向他人分享。", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "允许在共享对话框中的自动补全用户名。如果被禁用,需要输入用户全名。", - "Last cron job execution: %s." : "上次定时任务执行于: %s.", - "Last cron job execution: %s. Something seems wrong." : "上次定时任务执行于: %s. 似乎有些问题。", - "Cron was not executed yet!" : "定时任务还未被执行!", - "Execute one task with each page loaded" : "每个页面加载后执行一个任务", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php 已注册于一个 webcron 服务来通过 http 每 15 分钟执行 cron.php。", - "Use system's cron service to call the cron.php file every 15 minutes." : "使用系统 CRON 服务每 15 分钟执行一次 cron.php 文件。", - "Enable server-side encryption" : "启用服务器端加密", - "Please read carefully before activating server-side encryption: " : "在激活服务器端加密之前,请仔细阅读:", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "一旦加密被启用,之后上传到服务器的所有文件都将服务器上加密。只有当启用状态的加密模块支持解密并且所有的先决条件(例如,设定恢复键)得到满足时才能解除加密。", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "加密本身并不能保证系统的安全性。请参阅ownCloud文档有关加密应用程序是如何工作和支持用例的详细信息等。", - "Be aware that encryption always increases the file size." : "请注意,加密会增加文件大小。", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "定期备份数据有利于保证数据完整,并且确保备份您的加密数据和加密密钥。", - "This is the final warning: Do you really want to enable encryption?" : "这是最后一次警告:你真的想启用加密?", - "Enable encryption" : "启用加密", - "No encryption module loaded, please enable an encryption module in the app menu." : "没有加载加密模块,请在 APP 应用菜单中启用加密模块。", - "Select default encryption module:" : "选择默认的加密模块:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "你需要升级你的加密密钥 (旧版 ownCloud <= 8.0) 。 请在应用中启用 \\\"Default encryption module\\\" 并运行 'occ encryption:migrate'", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "您需要将加密密钥从旧版(ownCloud<=8.0)迁移到新版。", - "Start migration" : "开始迁移", - "This is used for sending out notifications." : "这被用于发送通知。", - "Send mode" : "发送模式", - "Encryption" : "加密", - "From address" : "来自地址", - "mail" : "邮件", - "Authentication method" : "认证方法", - "Authentication required" : "需要认证", - "Server address" : "服务器地址", - "Port" : "端口", - "Credentials" : "凭证", - "SMTP Username" : "SMTP 用户名", - "SMTP Password" : "SMTP 密码", - "Store credentials" : "存储凭据", - "Test email settings" : "测试电子邮件设置", - "Send email" : "发送邮件", - "Download logfile" : "下载日志文件", - "More" : "更多", - "Less" : "更少", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "日志文件超过 100 MB。下载可能需要一些时间!", - "What to log" : "记录日志", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite 被用作数据库。对于较大数据量的安装和使用,我们建议您切换到不同的数据库后端。", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "特别当使用桌面客户端来同步文件时,不鼓励使用 SQLite 。", - "How to do backups" : "如何做备份", - "Advanced monitoring" : "高级监控", - "Performance tuning" : "性能优化", - "Improving the config.php" : "正在优化 config.php", - "Theming" : "主题", - "Hardening and security guidance" : "强化和安全指南", - "Version" : "版本", - "Developer documentation" : "开发者文档", - "Experimental applications ahead" : "未来的实验应用", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "实验应用程序没有在安全性的问题上作过多检查,新的或已知的不稳定 BUG 都在开发中。安装它们可能会导致数据丢失或安全漏洞。", - "%s-licensed" : "%s-许可协议", - "Documentation:" : "文档:", - "User documentation" : "用户文档", - "Admin documentation" : "管理员文档", - "Show description …" : "显示描述...", - "Hide description …" : "隐藏描述...", - "This app has an update available." : "此应用有可用的更新。", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "这个程序没有指定最低的ownCloud版本。这是在ownCloud11之后版本的错误。", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "这个程序没有指定最高的ownCloud版本。这是在ownCloud11之后版本的错误。", - "This app cannot be installed because the following dependencies are not fulfilled:" : "此应用程序无法安装,因为以下依赖性不满足:", - "Enable only for specific groups" : "仅对特定的组开放", - "Uninstall App" : "卸载应用", - "Enable experimental apps" : "启用实验性应用程序", - "SSL Root Certificates" : "SSL 根证书", - "Common Name" : "通用名称", - "Valid until" : "有效期至", - "Issued By" : "授权由", - "Valid until %s" : "有效期至 %s", - "Import root certificate" : "导入根证书", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "亲,<br><br>现在我们为你开通了 %s 私有云帐户。<br><br>你的用户名: %s<br>访问网址: <a href=\\\"%s\\\">%s</a><br><br>", - "Cheers!" : "干杯!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "亲,\\n\\n 现在我们为你开通了 %s 私有去帐户。\\n\\n 你的用户名: %s\\n 访问网址: %s\\n 你的初始密码需要咨询系统管理员。或者你也可以在登录页面输入任意密码登录,\\n登录窗口将出现忘记密码链接,点击通过注册邮箱重设初始密码。\\n\\n", - "Administrator documentation" : "管理员文档", - "Online documentation" : "在线文档", - "Forum" : "论坛", - "Issue tracker" : "问题跟踪", - "Commercial support" : "商业支持", - "Profile picture" : "联系人图片", - "Upload new" : "上传新的", - "Select from Files" : "选择文件", - "Remove image" : "移除图片", - "png or jpg, max. 20 MB" : "png或jpg格式最大不超过20MB大小", - "Picture provided by original account" : "原始账户图片", - "Cancel" : "取消", - "Choose as profile picture" : "选择图片", - "Full name" : "全名", - "No display name set" : "不显示名称设置", - "Email" : "电子邮件", - "Your email address" : "您的电子邮件", - "For password recovery and notifications" : "用户恢复密码通知", - "No email address set" : "尚未设置 Email 地址", - "You are member of the following groups:" : "您是以下组的成员:", - "Password" : "密码", - "Unable to change your password" : "无法修改密码", - "Current password" : "当前密码", - "New password" : "新密码", - "Change password" : "修改密码", - "Language" : "语言", - "Help translate" : "帮助翻译", - "Get the apps to sync your files" : "安装应用进行文件同步", - "Desktop client" : "桌面客户端", - "Android app" : "Android 应用", - "iOS app" : "iOS 应用", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "想支持ownCloud项目?请\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">参加开发</a>\n\t\t或者\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">帮助推广</a>吧!", - "Show First Run Wizard again" : "再次显示首次运行向导", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "由 {communityopen}ownCloud 社区{linkclose}开发,{githubopen}源代码{linkclose}的发布需遵守 {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr> 许可协议{linkclose}。", - "Show storage location" : "显示存储位置", - "Show last log in" : "显示最后登录", - "Show user backend" : "显示用户后端", - "Send email to new user" : "发送电子邮件给新用户", - "Show email address" : "显示邮件地址", - "Username" : "用户名", - "E-Mail" : "E-Mail", - "Create" : "创建", - "Admin Recovery Password" : "管理恢复密码", - "Enter the recovery password in order to recover the users files during password change" : "输入恢复密码来在更改密码的时候恢复用户文件", - "Add Group" : "增加组", - "Group" : "分组", - "Everyone" : "所有人", - "Admins" : "管理员", - "Default Quota" : "默认配额", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "请输入存储限额 (ex: \"512 MB\" or \"12 GB\")", - "Other" : "其它", - "Full Name" : "全名", - "Group Admin for" : "设为以下组管理员", - "Quota" : "配额", - "Storage Location" : "存储空间位置", - "User Backend" : "用户后端", - "Last Login" : "最后登录", - "change full name" : "更改全名", - "set new password" : "设置新密码", - "change email address" : "修改电子邮箱地址", - "Default" : "默认" -},"pluralForm" :"nplurals=1; plural=0;" -}
\ No newline at end of file diff --git a/settings/l10n/zh_HK.js b/settings/l10n/zh_HK.js deleted file mode 100644 index 06a5631ffcc..00000000000 --- a/settings/l10n/zh_HK.js +++ /dev/null @@ -1,58 +0,0 @@ -OC.L10N.register( - "settings", - { - "Sharing" : "分享", - "Log" : "日誌", - "Updates" : "更新", - "Wrong password" : "密碼錯誤", - "Enabled" : "啟用", - "Not enabled" : "未啟用", - "Saved" : "已儲存", - "test email settings" : "測試電子郵件設定", - "Email sent" : "郵件已傳", - "Sending..." : "發送中...", - "All" : "所有", - "Please wait...." : "請稍候....", - "Disable" : "停用", - "Enable" : "啟用", - "Updating...." : "更新中....", - "Updated" : "已更新", - "Uninstalling ...." : "正在解除安裝 ....", - "Uninstall" : "解除安裝", - "Delete" : "刪除", - "Groups" : "群組", - "undo" : "復原", - "Unlimited" : "無限", - "None" : "空", - "Login" : "登入", - "SSL" : "SSL", - "TLS" : "TLS", - "days" : "天", - "Encryption" : "加密", - "Server address" : "伺服器地址", - "Port" : "連接埠", - "SMTP Username" : "SMTP 使用者名稱", - "SMTP Password" : "SMTP 密碼", - "More" : "更多", - "Version" : "版本", - "Forum" : "討論區", - "Remove image" : "刪除圖片", - "Cancel" : "取消", - "Email" : "電郵", - "Your email address" : "你的電郵地址", - "Password" : "密碼", - "New password" : "新密碼", - "Change password" : "更改密碼", - "Language" : "語言", - "Help translate" : "幫忙翻譯", - "Android app" : "Android 應用程式", - "iOS app" : "iOS 應用程式", - "Username" : "用戶名稱", - "Create" : "新增", - "Group" : "群組", - "Everyone" : "所有人", - "Other" : "其他", - "Last Login" : "最後登入", - "Default" : "預設" -}, -"nplurals=1; plural=0;"); diff --git a/settings/l10n/zh_HK.json b/settings/l10n/zh_HK.json deleted file mode 100644 index ef88a7581b8..00000000000 --- a/settings/l10n/zh_HK.json +++ /dev/null @@ -1,56 +0,0 @@ -{ "translations": { - "Sharing" : "分享", - "Log" : "日誌", - "Updates" : "更新", - "Wrong password" : "密碼錯誤", - "Enabled" : "啟用", - "Not enabled" : "未啟用", - "Saved" : "已儲存", - "test email settings" : "測試電子郵件設定", - "Email sent" : "郵件已傳", - "Sending..." : "發送中...", - "All" : "所有", - "Please wait...." : "請稍候....", - "Disable" : "停用", - "Enable" : "啟用", - "Updating...." : "更新中....", - "Updated" : "已更新", - "Uninstalling ...." : "正在解除安裝 ....", - "Uninstall" : "解除安裝", - "Delete" : "刪除", - "Groups" : "群組", - "undo" : "復原", - "Unlimited" : "無限", - "None" : "空", - "Login" : "登入", - "SSL" : "SSL", - "TLS" : "TLS", - "days" : "天", - "Encryption" : "加密", - "Server address" : "伺服器地址", - "Port" : "連接埠", - "SMTP Username" : "SMTP 使用者名稱", - "SMTP Password" : "SMTP 密碼", - "More" : "更多", - "Version" : "版本", - "Forum" : "討論區", - "Remove image" : "刪除圖片", - "Cancel" : "取消", - "Email" : "電郵", - "Your email address" : "你的電郵地址", - "Password" : "密碼", - "New password" : "新密碼", - "Change password" : "更改密碼", - "Language" : "語言", - "Help translate" : "幫忙翻譯", - "Android app" : "Android 應用程式", - "iOS app" : "iOS 應用程式", - "Username" : "用戶名稱", - "Create" : "新增", - "Group" : "群組", - "Everyone" : "所有人", - "Other" : "其他", - "Last Login" : "最後登入", - "Default" : "預設" -},"pluralForm" :"nplurals=1; plural=0;" -}
\ No newline at end of file diff --git a/settings/l10n/zh_TW.js b/settings/l10n/zh_TW.js deleted file mode 100644 index d3ee2579aba..00000000000 --- a/settings/l10n/zh_TW.js +++ /dev/null @@ -1,285 +0,0 @@ -OC.L10N.register( - "settings", - { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "安全及設定警告", - "Sharing" : "分享", - "Server-side encryption" : "伺服器端加密", - "External Storage" : "外部儲存", - "Cron" : "工作排程", - "Email server" : "郵件伺服器", - "Log" : "紀錄檔", - "Tips & tricks" : "技巧和提示", - "Updates" : "更新", - "Couldn't remove app." : "無法移除應用程式", - "Language changed" : "語言已變更", - "Invalid request" : "無效請求", - "Authentication error" : "認證錯誤", - "Admins can't remove themself from the admin group" : "管理者帳號無法從管理者群組中移除", - "Unable to add user to group %s" : "無法將使用者加入群組 %s", - "Unable to remove user from group %s" : "無法將使用者移出群組 %s", - "Couldn't update app." : "無法更新應用程式", - "Wrong password" : "密碼錯誤", - "No user supplied" : "未提供使用者", - "Please provide an admin recovery password, otherwise all user data will be lost" : "請提供管理者還原密碼,否則會遺失所有使用者資料", - "Wrong admin recovery password. Please check the password and try again." : "錯誤的管理者還原密碼", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "後端不支援變更密碼,但成功更新使用者的加密金鑰", - "Unable to change password" : "無法修改密碼", - "Enabled" : "已啓用", - "Not enabled" : "未啟用", - "installing and updating apps via the app store or Federated Cloud Sharing" : "透過應用程式中心或是聯盟式雲端分享來安裝、更新應用程式", - "Federated Cloud Sharing" : "聯盟式雲端分享", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL 使用的 %s 版本已經過期 (%s),請您更新您的作業系統,否則功能如 %s 可能無法正常運作", - "A problem occurred, please check your log files (Error: %s)" : "出現問題,請您檢查您的記錄檔(錯誤:%s)", - "Migration Completed" : "遷移已完成", - "Group already exists." : "群組已存在", - "Unable to add group." : "無法新增群組", - "Unable to delete group." : "無法刪除群組", - "log-level out of allowed range" : "log-level 超過允許範圍", - "Saved" : "已儲存", - "test email settings" : "測試郵件設定", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "寄出郵件時發生問題,請檢查您的設定(錯誤訊息:%s)", - "Email sent" : "Email 已寄出", - "You need to set your user email before being able to send test emails." : "在寄出測試郵件前您需要設定信箱位址", - "Invalid mail address" : "無效的 email 地址", - "A user with that name already exists." : "同名的使用者已經存在", - "Unable to create user." : "無法建立使用者", - "Your %s account was created" : "您的 %s 帳號已經建立", - "Unable to delete user." : "無法移除使用者", - "Forbidden" : "存取被拒", - "Invalid user" : "無效的使用者", - "Unable to change mail address" : "無法更改 email 地址", - "Email saved" : "Email 已儲存", - "Your full name has been changed." : "您的全名已變更", - "Unable to change full name" : "無法變更全名", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "您確定要新增 \"{domain}' 為信任的網域?", - "Add trusted domain" : "新增信任的網域", - "Migration in progress. Please wait until the migration is finished" : "資料搬移中,請耐心等候直到資料搬移結束", - "Migration started …" : "開始遷移…", - "Sending..." : "傳送中…", - "Official" : "官方", - "Approved" : "審查通過", - "Experimental" : "實驗性質", - "All" : "所有", - "No apps found for your version" : "沒有找到適合您的版本的應用程式", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "官方應用程式由 ownCloud 社群開發,他們提供 ownCloud 的主要功能,並確保穩定性足供正式使用", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "審查通過的應用程式經由可信任的開發人員所設計,並且經過一連串的安全測試,他們在開放的程式庫中維護這些應用程式,而且確保這些應用程式能穩定運作", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "這個新應用程式並沒有經過安全檢測,可能會是不穩定的,如果您要安裝的話,風險自行負責。", - "Update to %s" : "更新到 %s", - "Please wait...." : "請稍候…", - "Error while disabling app" : "停用應用程式錯誤", - "Disable" : "停用", - "Enable" : "啟用", - "Error while enabling app" : "啟用應用程式錯誤", - "Updating...." : "更新中…", - "Error while updating app" : "更新應用程式錯誤", - "Updated" : "已更新", - "Uninstalling ...." : "正在解除安裝…", - "Error while uninstalling app" : "移除應用程式錯誤", - "Uninstall" : "解除安裝", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "這個應用程式已啟用但是需要更新,您將會在 5 秒後被引導至更新頁面", - "App update" : "應用程式更新", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "發生錯誤,請您上傳 ASCII 編碼的 PEM 憑證", - "Valid until {date}" : "{date} 前有效", - "Delete" : "刪除", - "An error occurred: {message}" : "發生錯誤:{message}", - "Select a profile picture" : "選擇大頭貼", - "Very weak password" : "密碼強度非常弱", - "Weak password" : "密碼強度弱", - "So-so password" : "密碼強度普通", - "Good password" : "密碼強度佳", - "Strong password" : "密碼強度極佳", - "Groups" : "群組", - "Unable to delete {objName}" : "無法刪除 {objName}", - "A valid group name must be provided" : "必須提供一個有效的群組名稱", - "deleted {groupName}" : "刪除 {groupName}", - "undo" : "復原", - "no group" : "沒有群組", - "never" : "永不", - "deleted {userName}" : "刪除 {userName}", - "add group" : "新增群組", - "Changing the password will result in data loss, because data recovery is not available for this user" : "更改密碼會造成資料遺失,因為資料復原的功能無法在這個使用者使用", - "A valid username must be provided" : "必須提供一個有效的用戶名", - "A valid password must be provided" : "一定要提供一個有效的密碼", - "A valid email must be provided" : "必須提供一個有效的電子郵件地址", - "__language_name__" : "__language_name__", - "Unlimited" : "無限制", - "Personal info" : "個人資訊", - "Sync clients" : "同步客戶端", - "Everything (fatal issues, errors, warnings, info, debug)" : "全部(嚴重問題、錯誤、警告、資訊、除錯訊息)", - "Info, warnings, errors and fatal issues" : "嚴重問題、錯誤、警告、資訊", - "Warnings, errors and fatal issues" : "嚴重問題、錯誤、警告", - "Errors and fatal issues" : "錯誤和嚴重問題", - "Fatal issues only" : "只有嚴重問題", - "None" : "無", - "Login" : "登入", - "Plain" : "Plain", - "NT LAN Manager" : "NT LAN Manager", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "PHP 看起來沒有設定完成,無法正確取得系統環境變數,getenv(\"PATH\") 回傳資料為空值", - "Please check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation documentation ↗</a> for php configuration notes and the php configuration of your server, especially when using php-fpm." : "請您參考 <a target=\\\"_blank\\\" href=\\\"%s\\\">安裝文件手冊 ↗</a> 來確認php的設定值以及伺服器端的php設定,特別是當您使用php-fpm。", - "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." : "「唯讀設定檔」已經啟用,這樣可以防止來自網頁端的設定操作,每次需要更改設定時,都需要手動將設定檔暫時改為可讀寫。", - "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP 已經設定成「剪除 inline doc block」模式,這將會使幾個核心應用程式無法使用", - "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "這大概是由快取或是加速器像是 Zend OPcache, eAccelerator 造成的", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "您使用的伺服器是微軟的 Windows,我們強烈建議您改用 Linux 以求最好的使用者體驗", - "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 支援。", - "Transactional file locking is disabled, this might lead to issues with race conditions. Enable 'filelocking.enabled' in config.php to avoid these problems. See the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a> for more information." : "事務型文件鎖定的功能已經取消,這可能會造成競態條件,請在 config.php 中啟用 'filelocking.enabled' 以避免出現這樣的問題,請參考<a target=\\\"_blank\\\" href=\\\"%s\\\">文件手冊 ↗</a> 來了解更多的資訊。", - "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", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "如果您的安裝不在網域的最上層,並且使用 cron 作為排程器,URL 的生成可能會有問題,為了避免這樣的狀況,請您在 config.php 檔案裡設定 overwrite.cli.url 為您安裝的 webroot 路徑(建議值:\"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : " 無法透過 CLI 來執行排程工作,發生以下技術性錯誤:", - "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"#log-section\">log</a>." : "請再次檢查 <a target=\"_blank\" href=\"%s\">安裝手冊 ↗</a>,並且確定沒有任何的錯誤或是警告訊息在 <a href=\"#log-section\">記錄檔</a>", - "All checks passed." : "所有檢查正常", - "Open documentation" : "開啟說明文件", - "Allow apps to use the Share API" : "允許 apps 使用分享 API", - "Allow users to share via link" : "允許使用者透過連結分享", - "Enforce password protection" : "強制分享連結使用密碼保護", - "Allow public uploads" : "允許公開上傳", - "Allow users to send mail notification for shared files" : "允許使用者寄送有關分享檔案的郵件通知", - "Set default expiration date" : "設定預設到期日", - "Expire after " : "在什麼時候過期", - "days" : "天", - "Enforce expiration date" : "強制分享連結設定到期日", - "Allow resharing" : "允許轉貼分享", - "Restrict users to only share with users in their groups" : "限制使用者只能分享給群組裡的其他使用者", - "Allow users to send mail notification for shared files to other users" : "允許使用者寄送檔案分享通知給其他使用者", - "Exclude groups from sharing" : "禁止特定群組分享檔案", - "These groups will still be able to receive shares, but not to initiate them." : "這些群組仍然能接受其他人的分享,但是沒有辦法發起分享", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "允許使用者名稱自動補齊在分享對話框,如果取消這個功能,必須完整輸入使用者名稱", - "Last cron job execution: %s." : "最近一次執行的排程工作:%s", - "Last cron job execution: %s. Something seems wrong." : "最近一次執行的排程工作:%s ,看起來發生了一些錯誤", - "Cron was not executed yet!" : "Cron 沒有執行!", - "Execute one task with each page loaded" : "每個頁面載入時執行", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "已經與 webcron 服務註冊好,將會每 15 分鐘透過 HTTP 呼叫 cron.php", - "Use system's cron service to call the cron.php file every 15 minutes." : "使用系統的 cron 服務每 15 分鐘呼叫 cron.php 一次", - "Enable server-side encryption" : "啟用伺服器端加密", - "Please read carefully before activating server-side encryption: " : "在您啟動伺服器端加密之前,請仔細閱讀:", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "一旦加密模式啟動,從各地上傳到伺服器端的檔案都會被加密,若日後要停用加密,需要加密模組的支援,而且所有的設定(例如: 還原金鑰)都正確", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "單純的加密不能保障系統的安全,請參閱 ownCloud 說明文件以瞭解加密程式的運作,還有它支援的使用情境", - "Be aware that encryption always increases the file size." : "請注意,加密一定會增加檔案的大小", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "定時備份您的資料沒有壞處,若您有啟用加密,請確保您也有備份加密金鑰", - "This is the final warning: Do you really want to enable encryption?" : "這是最後的警告:請問您真的要開啟加密模式?", - "Enable encryption" : "啟用加密", - "No encryption module loaded, please enable an encryption module in the app menu." : "沒有載入加密模組,請您在應用程式清單中啟用加密模組", - "Select default encryption module:" : "選擇預設的加密模組:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : " 您需要遷移您的加密金鑰從舊版的加密 (ownCloud <= 8.0) 到新版,請啟用「預設加密模組」並執行 'occ encryption:migrate'", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : " 您需要遷移您的加密金鑰從舊版的加密 (ownCloud <= 8.0) 到新版", - "Start migration" : "開始遷移", - "This is used for sending out notifications." : "用於寄送通知", - "Send mode" : "寄送模式", - "Encryption" : "加密", - "From address" : "寄件地址", - "mail" : "電子郵件", - "Authentication method" : "認證方式", - "Authentication required" : "需要認證", - "Server address" : "伺服器位址", - "Port" : "連接埠", - "Credentials" : "帳密", - "SMTP Username" : "SMTP 帳號", - "SMTP Password" : "SMTP 密碼", - "Store credentials" : "儲存帳密", - "Test email settings" : "測試郵件設定", - "Send email" : "寄送郵件", - "Download logfile" : "下載記錄檔", - "More" : "更多", - "Less" : "更少", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "記錄檔大於 100MB,下載可能需要一些時間!", - "What to log" : "記錄哪些訊息", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "將會使用 SQLite 作為資料庫,在大型安裝中建議使用其他種資料庫", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "若使用桌面版程式同步檔案,不建議使用 SQLite", - "How to do backups" : "如何備份", - "Advanced monitoring" : "進階監控", - "Performance tuning" : "效能調校", - "Improving the config.php" : "改進 config.php", - "Theming" : "佈景主題", - "Hardening and security guidance" : "增強安全性", - "Version" : "版本", - "Developer documentation" : "開發者說明文件", - "Experimental applications ahead" : "以下是實驗性質的應用程式", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "實驗性質的應用程式並沒有經過安全檢測,可能會不穩定而且正在開發中,安裝他們可能會造成資料遺失或是安全問題", - "Documentation:" : "說明文件:", - "User documentation" : "用戶說明文件", - "Admin documentation" : "管理者文件", - "Show description …" : "顯示描述", - "Hide description …" : "隱藏描述", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "此應用程式沒有指定支援的最小 ownCloud 版本,從 ownCloud 11 之後這會是個錯誤", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "此應用程式沒有指定支援的最大 ownCloud 版本,從 ownCloud 11 之後這會是個錯誤", - "This app cannot be installed because the following dependencies are not fulfilled:" : "這個應用程式無法被安裝,因為欠缺下列相依套件:", - "Enable only for specific groups" : "僅對特定的群組啟用", - "Uninstall App" : "解除安裝 App", - "Enable experimental apps" : "啟用實驗性質的應用程式", - "Common Name" : "Common Name", - "Valid until" : "到期日", - "Issued By" : "發行者:", - "Valid until %s" : "有效至 %s", - "Import root certificate" : "匯入根憑證", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "嗨,<br><br>通知您一聲,您現在有了 %s 的帳號。<br><br>您的帳號: %s<br>開通帳號: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "太棒了!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "嗨,\n\n通知您一聲,您現在有了 %s 的帳號。\n\n您的帳號:%s\n開通帳號:%s\n\n", - "Administrator documentation" : "管理者說明文件", - "Online documentation" : "線上說明文件", - "Forum" : "論壇", - "Issue tracker" : "問題追蹤", - "Commercial support" : "商用支援", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "您正在使用 <strong>%s</strong> 的 <strong>%s</strong>", - "Profile picture" : "大頭照", - "Upload new" : "上傳新的", - "Select from Files" : "從檔案應用程式選擇", - "Remove image" : "移除圖片", - "png or jpg, max. 20 MB" : "png 或 jpg ,最大 20 MB", - "Picture provided by original account" : "原本的帳戶提供的圖片", - "Cancel" : "取消", - "Choose as profile picture" : "選為大頭照", - "Full name" : "全名", - "No display name set" : "未設定顯示名稱", - "Email" : "信箱", - "Your email address" : "您的電子郵件信箱", - "For password recovery and notifications" : "用於密碼重設和通知", - "No email address set" : "未設定電子郵件信箱", - "You are member of the following groups:" : "您的帳號屬於這些群組:", - "Password" : "密碼", - "Unable to change your password" : "無法變更您的密碼", - "Current password" : "目前密碼", - "New password" : "新密碼", - "Change password" : "變更密碼", - "Language" : "語言", - "Help translate" : "幫助翻譯", - "Get the apps to sync your files" : "下載應用程式來同步您的檔案", - "Desktop client" : "桌面客戶端", - "Android app" : "Android 應用程式", - "iOS app" : "iOS 應用程式", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "若您想支援這個計畫\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">加入開發者</a>\n\t\t或\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">替我們宣傳</a>!", - "Show First Run Wizard again" : "再次顯示首次使用精靈", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "由 {communityopen}ownCloud 社群{linkclose} 開發,{githubopen}原始碼{linkclose}使用 {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose} 授權釋出", - "Show storage location" : "顯示儲存位置", - "Show last log in" : "顯示最近登入", - "Show user backend" : "顯示用戶後台", - "Send email to new user" : "寄送郵件給新用戶", - "Show email address" : "顯示電子郵件信箱", - "Username" : "使用者名稱", - "E-Mail" : "電子郵件", - "Create" : "建立", - "Admin Recovery Password" : "管理者復原密碼", - "Enter the recovery password in order to recover the users files during password change" : "為了修改密碼時能夠取回使用者資料,請輸入另一組還原用密碼", - "Add Group" : "新增群組", - "Group" : "群組", - "Everyone" : "所有人", - "Admins" : "管理者", - "Default Quota" : "預設容量限制", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "請輸入空間配額(例如 \"512 MB\" 或是 \"12 GB\")", - "Other" : "其他", - "Full Name" : "全名", - "Group Admin for" : "指定群組管理者", - "Quota" : "容量限制", - "Storage Location" : "儲存位置", - "User Backend" : "用戶後端", - "Last Login" : "上次登入", - "change full name" : "變更全名", - "set new password" : "設定新密碼", - "change email address" : "更改電子郵件地址", - "Default" : "預設" -}, -"nplurals=1; plural=0;"); diff --git a/settings/l10n/zh_TW.json b/settings/l10n/zh_TW.json deleted file mode 100644 index 69ae4855d7c..00000000000 --- a/settings/l10n/zh_TW.json +++ /dev/null @@ -1,283 +0,0 @@ -{ "translations": { - "APCu" : "APCu", - "Redis" : "Redis", - "Security & setup warnings" : "安全及設定警告", - "Sharing" : "分享", - "Server-side encryption" : "伺服器端加密", - "External Storage" : "外部儲存", - "Cron" : "工作排程", - "Email server" : "郵件伺服器", - "Log" : "紀錄檔", - "Tips & tricks" : "技巧和提示", - "Updates" : "更新", - "Couldn't remove app." : "無法移除應用程式", - "Language changed" : "語言已變更", - "Invalid request" : "無效請求", - "Authentication error" : "認證錯誤", - "Admins can't remove themself from the admin group" : "管理者帳號無法從管理者群組中移除", - "Unable to add user to group %s" : "無法將使用者加入群組 %s", - "Unable to remove user from group %s" : "無法將使用者移出群組 %s", - "Couldn't update app." : "無法更新應用程式", - "Wrong password" : "密碼錯誤", - "No user supplied" : "未提供使用者", - "Please provide an admin recovery password, otherwise all user data will be lost" : "請提供管理者還原密碼,否則會遺失所有使用者資料", - "Wrong admin recovery password. Please check the password and try again." : "錯誤的管理者還原密碼", - "Backend doesn't support password change, but the user's encryption key was successfully updated." : "後端不支援變更密碼,但成功更新使用者的加密金鑰", - "Unable to change password" : "無法修改密碼", - "Enabled" : "已啓用", - "Not enabled" : "未啟用", - "installing and updating apps via the app store or Federated Cloud Sharing" : "透過應用程式中心或是聯盟式雲端分享來安裝、更新應用程式", - "Federated Cloud Sharing" : "聯盟式雲端分享", - "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL 使用的 %s 版本已經過期 (%s),請您更新您的作業系統,否則功能如 %s 可能無法正常運作", - "A problem occurred, please check your log files (Error: %s)" : "出現問題,請您檢查您的記錄檔(錯誤:%s)", - "Migration Completed" : "遷移已完成", - "Group already exists." : "群組已存在", - "Unable to add group." : "無法新增群組", - "Unable to delete group." : "無法刪除群組", - "log-level out of allowed range" : "log-level 超過允許範圍", - "Saved" : "已儲存", - "test email settings" : "測試郵件設定", - "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "寄出郵件時發生問題,請檢查您的設定(錯誤訊息:%s)", - "Email sent" : "Email 已寄出", - "You need to set your user email before being able to send test emails." : "在寄出測試郵件前您需要設定信箱位址", - "Invalid mail address" : "無效的 email 地址", - "A user with that name already exists." : "同名的使用者已經存在", - "Unable to create user." : "無法建立使用者", - "Your %s account was created" : "您的 %s 帳號已經建立", - "Unable to delete user." : "無法移除使用者", - "Forbidden" : "存取被拒", - "Invalid user" : "無效的使用者", - "Unable to change mail address" : "無法更改 email 地址", - "Email saved" : "Email 已儲存", - "Your full name has been changed." : "您的全名已變更", - "Unable to change full name" : "無法變更全名", - "Are you really sure you want add \"{domain}\" as trusted domain?" : "您確定要新增 \"{domain}' 為信任的網域?", - "Add trusted domain" : "新增信任的網域", - "Migration in progress. Please wait until the migration is finished" : "資料搬移中,請耐心等候直到資料搬移結束", - "Migration started …" : "開始遷移…", - "Sending..." : "傳送中…", - "Official" : "官方", - "Approved" : "審查通過", - "Experimental" : "實驗性質", - "All" : "所有", - "No apps found for your version" : "沒有找到適合您的版本的應用程式", - "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "官方應用程式由 ownCloud 社群開發,他們提供 ownCloud 的主要功能,並確保穩定性足供正式使用", - "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "審查通過的應用程式經由可信任的開發人員所設計,並且經過一連串的安全測試,他們在開放的程式庫中維護這些應用程式,而且確保這些應用程式能穩定運作", - "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "這個新應用程式並沒有經過安全檢測,可能會是不穩定的,如果您要安裝的話,風險自行負責。", - "Update to %s" : "更新到 %s", - "Please wait...." : "請稍候…", - "Error while disabling app" : "停用應用程式錯誤", - "Disable" : "停用", - "Enable" : "啟用", - "Error while enabling app" : "啟用應用程式錯誤", - "Updating...." : "更新中…", - "Error while updating app" : "更新應用程式錯誤", - "Updated" : "已更新", - "Uninstalling ...." : "正在解除安裝…", - "Error while uninstalling app" : "移除應用程式錯誤", - "Uninstall" : "解除安裝", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "這個應用程式已啟用但是需要更新,您將會在 5 秒後被引導至更新頁面", - "App update" : "應用程式更新", - "An error occurred. Please upload an ASCII-encoded PEM certificate." : "發生錯誤,請您上傳 ASCII 編碼的 PEM 憑證", - "Valid until {date}" : "{date} 前有效", - "Delete" : "刪除", - "An error occurred: {message}" : "發生錯誤:{message}", - "Select a profile picture" : "選擇大頭貼", - "Very weak password" : "密碼強度非常弱", - "Weak password" : "密碼強度弱", - "So-so password" : "密碼強度普通", - "Good password" : "密碼強度佳", - "Strong password" : "密碼強度極佳", - "Groups" : "群組", - "Unable to delete {objName}" : "無法刪除 {objName}", - "A valid group name must be provided" : "必須提供一個有效的群組名稱", - "deleted {groupName}" : "刪除 {groupName}", - "undo" : "復原", - "no group" : "沒有群組", - "never" : "永不", - "deleted {userName}" : "刪除 {userName}", - "add group" : "新增群組", - "Changing the password will result in data loss, because data recovery is not available for this user" : "更改密碼會造成資料遺失,因為資料復原的功能無法在這個使用者使用", - "A valid username must be provided" : "必須提供一個有效的用戶名", - "A valid password must be provided" : "一定要提供一個有效的密碼", - "A valid email must be provided" : "必須提供一個有效的電子郵件地址", - "__language_name__" : "__language_name__", - "Unlimited" : "無限制", - "Personal info" : "個人資訊", - "Sync clients" : "同步客戶端", - "Everything (fatal issues, errors, warnings, info, debug)" : "全部(嚴重問題、錯誤、警告、資訊、除錯訊息)", - "Info, warnings, errors and fatal issues" : "嚴重問題、錯誤、警告、資訊", - "Warnings, errors and fatal issues" : "嚴重問題、錯誤、警告", - "Errors and fatal issues" : "錯誤和嚴重問題", - "Fatal issues only" : "只有嚴重問題", - "None" : "無", - "Login" : "登入", - "Plain" : "Plain", - "NT LAN Manager" : "NT LAN Manager", - "SSL" : "SSL", - "TLS" : "TLS", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "PHP 看起來沒有設定完成,無法正確取得系統環境變數,getenv(\"PATH\") 回傳資料為空值", - "Please check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation documentation ↗</a> for php configuration notes and the php configuration of your server, especially when using php-fpm." : "請您參考 <a target=\\\"_blank\\\" href=\\\"%s\\\">安裝文件手冊 ↗</a> 來確認php的設定值以及伺服器端的php設定,特別是當您使用php-fpm。", - "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." : "「唯讀設定檔」已經啟用,這樣可以防止來自網頁端的設定操作,每次需要更改設定時,都需要手動將設定檔暫時改為可讀寫。", - "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP 已經設定成「剪除 inline doc block」模式,這將會使幾個核心應用程式無法使用", - "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "這大概是由快取或是加速器像是 Zend OPcache, eAccelerator 造成的", - "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "您使用的伺服器是微軟的 Windows,我們強烈建議您改用 Linux 以求最好的使用者體驗", - "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 支援。", - "Transactional file locking is disabled, this might lead to issues with race conditions. Enable 'filelocking.enabled' in config.php to avoid these problems. See the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a> for more information." : "事務型文件鎖定的功能已經取消,這可能會造成競態條件,請在 config.php 中啟用 'filelocking.enabled' 以避免出現這樣的問題,請參考<a target=\\\"_blank\\\" href=\\\"%s\\\">文件手冊 ↗</a> 來了解更多的資訊。", - "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", - "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "如果您的安裝不在網域的最上層,並且使用 cron 作為排程器,URL 的生成可能會有問題,為了避免這樣的狀況,請您在 config.php 檔案裡設定 overwrite.cli.url 為您安裝的 webroot 路徑(建議值:\"%s\")", - "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : " 無法透過 CLI 來執行排程工作,發生以下技術性錯誤:", - "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"#log-section\">log</a>." : "請再次檢查 <a target=\"_blank\" href=\"%s\">安裝手冊 ↗</a>,並且確定沒有任何的錯誤或是警告訊息在 <a href=\"#log-section\">記錄檔</a>", - "All checks passed." : "所有檢查正常", - "Open documentation" : "開啟說明文件", - "Allow apps to use the Share API" : "允許 apps 使用分享 API", - "Allow users to share via link" : "允許使用者透過連結分享", - "Enforce password protection" : "強制分享連結使用密碼保護", - "Allow public uploads" : "允許公開上傳", - "Allow users to send mail notification for shared files" : "允許使用者寄送有關分享檔案的郵件通知", - "Set default expiration date" : "設定預設到期日", - "Expire after " : "在什麼時候過期", - "days" : "天", - "Enforce expiration date" : "強制分享連結設定到期日", - "Allow resharing" : "允許轉貼分享", - "Restrict users to only share with users in their groups" : "限制使用者只能分享給群組裡的其他使用者", - "Allow users to send mail notification for shared files to other users" : "允許使用者寄送檔案分享通知給其他使用者", - "Exclude groups from sharing" : "禁止特定群組分享檔案", - "These groups will still be able to receive shares, but not to initiate them." : "這些群組仍然能接受其他人的分享,但是沒有辦法發起分享", - "Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered." : "允許使用者名稱自動補齊在分享對話框,如果取消這個功能,必須完整輸入使用者名稱", - "Last cron job execution: %s." : "最近一次執行的排程工作:%s", - "Last cron job execution: %s. Something seems wrong." : "最近一次執行的排程工作:%s ,看起來發生了一些錯誤", - "Cron was not executed yet!" : "Cron 沒有執行!", - "Execute one task with each page loaded" : "每個頁面載入時執行", - "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "已經與 webcron 服務註冊好,將會每 15 分鐘透過 HTTP 呼叫 cron.php", - "Use system's cron service to call the cron.php file every 15 minutes." : "使用系統的 cron 服務每 15 分鐘呼叫 cron.php 一次", - "Enable server-side encryption" : "啟用伺服器端加密", - "Please read carefully before activating server-side encryption: " : "在您啟動伺服器端加密之前,請仔細閱讀:", - "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "一旦加密模式啟動,從各地上傳到伺服器端的檔案都會被加密,若日後要停用加密,需要加密模組的支援,而且所有的設定(例如: 還原金鑰)都正確", - "Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases." : "單純的加密不能保障系統的安全,請參閱 ownCloud 說明文件以瞭解加密程式的運作,還有它支援的使用情境", - "Be aware that encryption always increases the file size." : "請注意,加密一定會增加檔案的大小", - "It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data." : "定時備份您的資料沒有壞處,若您有啟用加密,請確保您也有備份加密金鑰", - "This is the final warning: Do you really want to enable encryption?" : "這是最後的警告:請問您真的要開啟加密模式?", - "Enable encryption" : "啟用加密", - "No encryption module loaded, please enable an encryption module in the app menu." : "沒有載入加密模組,請您在應用程式清單中啟用加密模組", - "Select default encryption module:" : "選擇預設的加密模組:", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : " 您需要遷移您的加密金鑰從舊版的加密 (ownCloud <= 8.0) 到新版,請啟用「預設加密模組」並執行 'occ encryption:migrate'", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : " 您需要遷移您的加密金鑰從舊版的加密 (ownCloud <= 8.0) 到新版", - "Start migration" : "開始遷移", - "This is used for sending out notifications." : "用於寄送通知", - "Send mode" : "寄送模式", - "Encryption" : "加密", - "From address" : "寄件地址", - "mail" : "電子郵件", - "Authentication method" : "認證方式", - "Authentication required" : "需要認證", - "Server address" : "伺服器位址", - "Port" : "連接埠", - "Credentials" : "帳密", - "SMTP Username" : "SMTP 帳號", - "SMTP Password" : "SMTP 密碼", - "Store credentials" : "儲存帳密", - "Test email settings" : "測試郵件設定", - "Send email" : "寄送郵件", - "Download logfile" : "下載記錄檔", - "More" : "更多", - "Less" : "更少", - "The logfile is bigger than 100 MB. Downloading it may take some time!" : "記錄檔大於 100MB,下載可能需要一些時間!", - "What to log" : "記錄哪些訊息", - "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "將會使用 SQLite 作為資料庫,在大型安裝中建議使用其他種資料庫", - "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "若使用桌面版程式同步檔案,不建議使用 SQLite", - "How to do backups" : "如何備份", - "Advanced monitoring" : "進階監控", - "Performance tuning" : "效能調校", - "Improving the config.php" : "改進 config.php", - "Theming" : "佈景主題", - "Hardening and security guidance" : "增強安全性", - "Version" : "版本", - "Developer documentation" : "開發者說明文件", - "Experimental applications ahead" : "以下是實驗性質的應用程式", - "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "實驗性質的應用程式並沒有經過安全檢測,可能會不穩定而且正在開發中,安裝他們可能會造成資料遺失或是安全問題", - "Documentation:" : "說明文件:", - "User documentation" : "用戶說明文件", - "Admin documentation" : "管理者文件", - "Show description …" : "顯示描述", - "Hide description …" : "隱藏描述", - "This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "此應用程式沒有指定支援的最小 ownCloud 版本,從 ownCloud 11 之後這會是個錯誤", - "This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "此應用程式沒有指定支援的最大 ownCloud 版本,從 ownCloud 11 之後這會是個錯誤", - "This app cannot be installed because the following dependencies are not fulfilled:" : "這個應用程式無法被安裝,因為欠缺下列相依套件:", - "Enable only for specific groups" : "僅對特定的群組啟用", - "Uninstall App" : "解除安裝 App", - "Enable experimental apps" : "啟用實驗性質的應用程式", - "Common Name" : "Common Name", - "Valid until" : "到期日", - "Issued By" : "發行者:", - "Valid until %s" : "有效至 %s", - "Import root certificate" : "匯入根憑證", - "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "嗨,<br><br>通知您一聲,您現在有了 %s 的帳號。<br><br>您的帳號: %s<br>開通帳號: <a href=\"%s\">%s</a><br><br>", - "Cheers!" : "太棒了!", - "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "嗨,\n\n通知您一聲,您現在有了 %s 的帳號。\n\n您的帳號:%s\n開通帳號:%s\n\n", - "Administrator documentation" : "管理者說明文件", - "Online documentation" : "線上說明文件", - "Forum" : "論壇", - "Issue tracker" : "問題追蹤", - "Commercial support" : "商用支援", - "You are using <strong>%s</strong> of <strong>%s</strong>" : "您正在使用 <strong>%s</strong> 的 <strong>%s</strong>", - "Profile picture" : "大頭照", - "Upload new" : "上傳新的", - "Select from Files" : "從檔案應用程式選擇", - "Remove image" : "移除圖片", - "png or jpg, max. 20 MB" : "png 或 jpg ,最大 20 MB", - "Picture provided by original account" : "原本的帳戶提供的圖片", - "Cancel" : "取消", - "Choose as profile picture" : "選為大頭照", - "Full name" : "全名", - "No display name set" : "未設定顯示名稱", - "Email" : "信箱", - "Your email address" : "您的電子郵件信箱", - "For password recovery and notifications" : "用於密碼重設和通知", - "No email address set" : "未設定電子郵件信箱", - "You are member of the following groups:" : "您的帳號屬於這些群組:", - "Password" : "密碼", - "Unable to change your password" : "無法變更您的密碼", - "Current password" : "目前密碼", - "New password" : "新密碼", - "Change password" : "變更密碼", - "Language" : "語言", - "Help translate" : "幫助翻譯", - "Get the apps to sync your files" : "下載應用程式來同步您的檔案", - "Desktop client" : "桌面客戶端", - "Android app" : "Android 應用程式", - "iOS app" : "iOS 應用程式", - "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "若您想支援這個計畫\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">加入開發者</a>\n\t\t或\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">替我們宣傳</a>!", - "Show First Run Wizard again" : "再次顯示首次使用精靈", - "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "由 {communityopen}ownCloud 社群{linkclose} 開發,{githubopen}原始碼{linkclose}使用 {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose} 授權釋出", - "Show storage location" : "顯示儲存位置", - "Show last log in" : "顯示最近登入", - "Show user backend" : "顯示用戶後台", - "Send email to new user" : "寄送郵件給新用戶", - "Show email address" : "顯示電子郵件信箱", - "Username" : "使用者名稱", - "E-Mail" : "電子郵件", - "Create" : "建立", - "Admin Recovery Password" : "管理者復原密碼", - "Enter the recovery password in order to recover the users files during password change" : "為了修改密碼時能夠取回使用者資料,請輸入另一組還原用密碼", - "Add Group" : "新增群組", - "Group" : "群組", - "Everyone" : "所有人", - "Admins" : "管理者", - "Default Quota" : "預設容量限制", - "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "請輸入空間配額(例如 \"512 MB\" 或是 \"12 GB\")", - "Other" : "其他", - "Full Name" : "全名", - "Group Admin for" : "指定群組管理者", - "Quota" : "容量限制", - "Storage Location" : "儲存位置", - "User Backend" : "用戶後端", - "Last Login" : "上次登入", - "change full name" : "變更全名", - "set new password" : "設定新密碼", - "change email address" : "更改電子郵件地址", - "Default" : "預設" -},"pluralForm" :"nplurals=1; plural=0;" -}
\ No newline at end of file diff --git a/settings/languageCodes.php b/settings/languageCodes.php deleted file mode 100644 index f83123df672..00000000000 --- a/settings/languageCodes.php +++ /dev/null @@ -1,62 +0,0 @@ -<?php -/** - * @author Brice Maron <brice@bmaron.net> - * @author Jan-Christoph Borchardt <hey@jancborchardt.net> - * @author Morris Jobke <hey@morrisjobke.de> - * @author Pellaeon Lin <nfsmwlin@gmail.com> - * @author Robin Appelman <icewind@owncloud.com> - * @author Thomas Müller <thomas.mueller@tmit.eu> - * - * @copyright Copyright (c) 2016, ownCloud, Inc. - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * This program 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, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * - */ - -return array( -'el'=>'Ελληνικά', -'en'=>'English', -'fa'=>'فارسى', -'fi_FI'=>'Suomi', -'hi'=>'हिन्दी', -'id'=>'Bahasa Indonesia', -'lb'=>'Lëtzebuergesch', -'ms_MY'=>'Bahasa Melayu', -'nb_NO'=>'Norwegian Bokmål', -'pt_BR'=>'Português brasileiro', -'pt_PT'=>'Português', -'ro'=>'română', -'sr@latin'=>'Srpski', -'sv'=>'Svenska', -'hu_HU'=>'Magyar', -'hr'=>'Hrvatski', -'ar'=>'العربية', -'lv'=>'Latviešu', -'mk'=>'македонски', -'uk'=>'Українська', -'vi'=>'Tiếng Việt', -'zh_TW'=>'正體中文(臺灣)', -'af_ZA'=> 'Afrikaans', -'bn_BD'=>'Bengali', -'ta_LK'=>'தமிழ்', -'zh_HK'=>'繁體中文(香港)', -'is'=>'Icelandic', -'ka_GE'=>'Georgian for Georgia', -'ku_IQ'=>'Kurdish Iraq', -'si_LK'=>'Sinhala', -'be'=>'Belarusian', -'ka'=>'Kartuli (Georgian)', -'my_MM'=>'Burmese - MYANMAR ', -'ur_PK' =>'Urdu (Pakistan)' -); diff --git a/settings/middleware/subadminmiddleware.php b/settings/middleware/subadminmiddleware.php deleted file mode 100644 index 8e138bdc1a8..00000000000 --- a/settings/middleware/subadminmiddleware.php +++ /dev/null @@ -1,85 +0,0 @@ -<?php -/** - * @author Lukas Reschke <lukas@owncloud.com> - * @author Morris Jobke <hey@morrisjobke.de> - * - * @copyright Copyright (c) 2016, ownCloud, Inc. - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * This program 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, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * - */ - -namespace OC\Settings\Middleware; - -use OC\AppFramework\Http; -use OC\Appframework\Middleware\Security\Exceptions\NotAdminException; -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 NotAdminException('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 - * @throws \Exception - */ - public function afterException($controller, $methodName, \Exception $exception) { - if($exception instanceof NotAdminException) { - $response = new TemplateResponse('core', '403', array(), 'guest'); - $response->setStatus(Http::STATUS_FORBIDDEN); - return $response; - } - - throw $exception; - } - -} diff --git a/settings/personal.php b/settings/personal.php deleted file mode 100644 index 62a718985f8..00000000000 --- a/settings/personal.php +++ /dev/null @@ -1,209 +0,0 @@ -<?php -/** - * @author Arthur Schiwon <blizzz@owncloud.com> - * @author Bart Visscher <bartv@thisnet.nl> - * @author Björn Schießle <schiessle@owncloud.com> - * @author Christopher Schäpers <kondou@ts.unde.re> - * @author Georg Ehrke <georg@owncloud.com> - * @author Jakob Sack <mail@jakobsack.de> - * @author Jan-Christoph Borchardt <hey@jancborchardt.net> - * @author Joas Schilling <nickvergessen@owncloud.com> - * @author Lukas Reschke <lukas@owncloud.com> - * @author Marvin Thomas Rabe <mrabe@marvinrabe.de> - * @author Morris Jobke <hey@morrisjobke.de> - * @author Robin Appelman <icewind@owncloud.com> - * @author Roeland Jago Douma <rullzer@owncloud.com> - * @author Thomas Müller <thomas.mueller@tmit.eu> - * @author Vincent Petry <pvince81@owncloud.com> - * @author Volkan Gezer <volkangezer@gmail.com> - * - * @copyright Copyright (c) 2016, ownCloud, Inc. - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * This program 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, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * - */ - -OC_Util::checkLoggedIn(); - -$defaults = new OC_Defaults(); // initialize themable default strings and urls -$certificateManager = \OC::$server->getCertificateManager(); -$config = \OC::$server->getConfig(); -$urlGenerator = \OC::$server->getURLGenerator(); - -// Highlight navigation entry -OC_Util::addScript( 'settings', 'personal' ); -OC_Util::addScript('settings', 'certificates'); -OC_Util::addStyle( 'settings', 'settings' ); -\OC_Util::addVendorScript('strengthify/jquery.strengthify'); -\OC_Util::addVendorStyle('strengthify/strengthify'); -\OC_Util::addScript('files', 'jquery.iframe-transport'); -\OC_Util::addScript('files', 'jquery.fileupload'); -if ($config->getSystemValue('enable_avatars', true) === true) { - \OC_Util::addVendorScript('jcrop/js/jquery.Jcrop'); - \OC_Util::addVendorStyle('jcrop/css/jquery.Jcrop'); -} - -// Highlight navigation entry -OC::$server->getNavigationManager()->setActiveEntry('personal'); - -$storageInfo=OC_Helper::getStorageInfo('/'); - -$user = OC::$server->getUserManager()->get(OC_User::getUser()); -$email = $user->getEMailAddress(); - -$userLang=$config->getUserValue( OC_User::getUser(), 'core', 'lang', OC_L10N::findLanguage() ); -$languageCodes = \OC::$server->getL10NFactory()->findAvailableLanguages(); - -// array of common languages -$commonLangCodes = array( - 'en', 'es', 'fr', 'de', 'de_DE', 'ja', 'ar', 'ru', 'nl', 'it', 'pt_BR', 'pt_PT', 'da', 'fi_FI', 'nb_NO', 'sv', 'tr', 'zh_CN', 'ko' -); - -$languageNames=include 'languageCodes.php'; -$languages=array(); -$commonLanguages = array(); -foreach($languageCodes as $lang) { - $l = \OC::$server->getL10N('settings', $lang); - // TRANSLATORS this is the language name for the language switcher in the personal settings and should be the localized version - if(substr($l->t('__language_name__'), 0, 1) !== '_') {//first check if the language name is in the translation file - $ln=array('code'=>$lang, 'name'=> (string)$l->t('__language_name__')); - }elseif(isset($languageNames[$lang])) { - $ln=array('code'=>$lang, 'name'=>$languageNames[$lang]); - }else{//fallback to language code - $ln=array('code'=>$lang, 'name'=>$lang); - } - - // put appropriate languages into appropriate arrays, to print them sorted - // used language -> common languages -> divider -> other languages - if ($lang === $userLang) { - $userLang = $ln; - } elseif (in_array($lang, $commonLangCodes)) { - $commonLanguages[array_search($lang, $commonLangCodes)]=$ln; - } else { - $languages[]=$ln; - } -} - -// if user language is not available but set somehow: show the actual code as name -if (!is_array($userLang)) { - $userLang = [ - 'code' => $userLang, - 'name' => $userLang, - ]; -} - -ksort($commonLanguages); - -// sort now by displayed language not the iso-code -usort( $languages, function ($a, $b) { - if ($a['code'] === $a['name'] && $b['code'] !== $b['name']) { - // If a doesn't have a name, but b does, list b before a - return 1; - } - if ($a['code'] !== $a['name'] && $b['code'] === $b['name']) { - // If a does have a name, but b doesn't, list a before b - return -1; - } - // Otherwise compare the names - return strcmp($a['name'], $b['name']); -}); - -//links to clients -$clients = array( - 'desktop' => $config->getSystemValue('customclient_desktop', $defaults->getSyncClientUrl()), - 'android' => $config->getSystemValue('customclient_android', $defaults->getAndroidClientUrl()), - 'ios' => $config->getSystemValue('customclient_ios', $defaults->getiOSClientUrl()) -); - -// only show root certificate import if external storages are enabled -$enableCertImport = false; -$externalStorageEnabled = \OC::$server->getAppManager()->isEnabledForUser('files_external'); -if ($externalStorageEnabled) { - /** @var \OCA\Files_External\Service\BackendService $backendService */ - $backendService = \OC_Mount_Config::$app->getContainer()->query('\OCA\Files_External\Service\BackendService'); - $enableCertImport = $backendService->isUserMountingAllowed(); -} - - -// Return template -$l = \OC::$server->getL10N('settings'); -$tmpl = new OC_Template( 'settings', 'personal', 'user'); -$tmpl->assign('usage', OC_Helper::humanFileSize($storageInfo['used'])); -if ($storageInfo['quota'] === \OCP\Files\FileInfo::SPACE_UNLIMITED) { - $totalSpace = $l->t('Unlimited'); -} else { - $totalSpace = OC_Helper::humanFileSize($storageInfo['total']); -} -$tmpl->assign('total_space', $totalSpace); -$tmpl->assign('usage_relative', $storageInfo['relative']); -$tmpl->assign('clients', $clients); -$tmpl->assign('email', $email); -$tmpl->assign('languages', $languages); -$tmpl->assign('commonlanguages', $commonLanguages); -$tmpl->assign('activelanguage', $userLang); -$tmpl->assign('passwordChangeSupported', OC_User::canUserChangePassword(OC_User::getUser())); -$tmpl->assign('displayNameChangeSupported', OC_User::canUserChangeDisplayName(OC_User::getUser())); -$tmpl->assign('displayName', OC_User::getDisplayName()); -$tmpl->assign('enableAvatars', $config->getSystemValue('enable_avatars', true) === true); -$tmpl->assign('avatarChangeSupported', OC_User::canUserChangeAvatar(OC_User::getUser())); -$tmpl->assign('certs', $certificateManager->listCertificates()); -$tmpl->assign('showCertificates', $enableCertImport); -$tmpl->assign('urlGenerator', $urlGenerator); - -// Get array of group ids for this user -$groups = \OC::$server->getGroupManager()->getUserIdGroups(OC_User::getUser()); -$groups2 = array_map(function($group) { return $group->getGID(); }, $groups); -sort($groups2); -$tmpl->assign('groups', $groups2); - -// add hardcoded forms from the template -$formsAndMore = []; -$formsAndMore[]= ['anchor' => 'avatar', 'section-name' => $l->t('Personal info')]; -$formsAndMore[]= ['anchor' => 'clientsbox', 'section-name' => $l->t('Sync clients')]; - -$forms=OC_App::getForms('personal'); - - -// add bottom hardcoded forms from the template -if ($enableCertImport) { - $certificatesTemplate = new OC_Template('settings', 'certificates'); - $certificatesTemplate->assign('type', 'personal'); - $certificatesTemplate->assign('uploadRoute', 'settings.Certificate.addPersonalRootCertificate'); - $certificatesTemplate->assign('certs', $certificateManager->listCertificates()); - $certificatesTemplate->assign('urlGenerator', $urlGenerator); - $forms[] = $certificatesTemplate->fetchPage(); -} - -$formsMap = array_map(function($form){ - if (preg_match('%(<h2(?P<class>[^>]*)>.*?</h2>)%i', $form, $regs)) { - $sectionName = str_replace('<h2'.$regs['class'].'>', '', $regs[0]); - $sectionName = str_replace('</h2>', '', $sectionName); - $anchor = strtolower($sectionName); - $anchor = str_replace(' ', '-', $anchor); - - return array( - 'anchor' => $anchor, - 'section-name' => $sectionName, - 'form' => $form - ); - } - return array( - 'form' => $form - ); -}, $forms); - -$formsAndMore = array_merge($formsAndMore, $formsMap); - -$tmpl->assign('forms', $formsAndMore); -$tmpl->printPage(); diff --git a/settings/routes.php b/settings/routes.php deleted file mode 100644 index 90e1d1e442b..00000000000 --- a/settings/routes.php +++ /dev/null @@ -1,110 +0,0 @@ -<?php -/** - * @author Bart Visscher <bartv@thisnet.nl> - * @author Björn Schießle <schiessle@owncloud.com> - * @author Christopher Schäpers <kondou@ts.unde.re> - * @author Frank Karlitschek <frank@owncloud.org> - * @author Georg Ehrke <georg@owncloud.com> - * @author Lukas Reschke <lukas@owncloud.com> - * @author Morris Jobke <hey@morrisjobke.de> - * @author Raghu Nayyar <me@iraghu.com> - * @author Robin Appelman <icewind@owncloud.com> - * @author Roeland Jago Douma <rullzer@owncloud.com> - * @author Thomas Müller <thomas.mueller@tmit.eu> - * @author Vincent Petry <pvince81@owncloud.com> - * - * @copyright Copyright (c) 2016, ownCloud, Inc. - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * This program 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, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * - */ - -namespace OC\Settings; - -$application = new Application(); -$application->registerRoutes($this, [ - 'resources' => [ - 'groups' => ['url' => '/settings/users/groups'], - 'users' => ['url' => '/settings/users/users'] - ], - 'routes' => [ - ['name' => 'MailSettings#setMailSettings', 'url' => '/settings/admin/mailsettings', 'verb' => 'POST'], - ['name' => 'MailSettings#storeCredentials', 'url' => '/settings/admin/mailsettings/credentials', 'verb' => 'POST'], - ['name' => 'MailSettings#sendTestMail', 'url' => '/settings/admin/mailtest', 'verb' => 'POST'], - ['name' => 'Encryption#startMigration', 'url' => '/settings/admin/startmigration', 'verb' => 'POST'], - ['name' => 'AppSettings#listCategories', 'url' => '/settings/apps/categories', 'verb' => 'GET'], - ['name' => 'AppSettings#viewApps', 'url' => '/settings/apps', 'verb' => 'GET'], - ['name' => 'AppSettings#listApps', 'url' => '/settings/apps/list', 'verb' => 'GET'], - ['name' => 'AppSettings#changeExperimentalConfigState', 'url' => '/settings/apps/experimental', 'verb' => 'POST'], - ['name' => 'SecuritySettings#trustedDomains', 'url' => '/settings/admin/security/trustedDomains', 'verb' => 'POST'], - ['name' => 'Users#setDisplayName', 'url' => '/settings/users/{username}/displayName', 'verb' => 'POST'], - ['name' => 'Users#setMailAddress', 'url' => '/settings/users/{id}/mailAddress', 'verb' => 'PUT'], - ['name' => 'Users#stats', 'url' => '/settings/users/stats', 'verb' => 'GET'], - ['name' => 'LogSettings#setLogLevel', 'url' => '/settings/admin/log/level', 'verb' => 'POST'], - ['name' => 'LogSettings#getEntries', 'url' => '/settings/admin/log/entries', 'verb' => 'GET'], - ['name' => 'LogSettings#download', 'url' => '/settings/admin/log/download', 'verb' => 'GET'], - ['name' => 'CheckSetup#check', 'url' => '/settings/ajax/checksetup', 'verb' => 'GET'], - ['name' => 'CheckSetup#getFailedIntegrityCheckFiles', 'url' => '/settings/integrity/failed', 'verb' => 'GET'], - ['name' => 'CheckSetup#rescanFailedIntegrityCheck', 'url' => '/settings/integrity/rescan', 'verb' => 'GET'], - ['name' => 'Certificate#addPersonalRootCertificate', 'url' => '/settings/personal/certificate', 'verb' => 'POST'], - ['name' => 'Certificate#removePersonalRootCertificate', 'url' => '/settings/personal/certificate/{certificateIdentifier}', 'verb' => 'DELETE'], - ['name' => 'Certificate#addSystemRootCertificate', 'url' => '/settings/admin/certificate', 'verb' => 'POST'], - ['name' => 'Certificate#removeSystemRootCertificate', 'url' => '/settings/admin/certificate/{certificateIdentifier}', 'verb' => 'DELETE'], - ] -]); - -/** @var $this \OCP\Route\IRouter */ - -// Settings pages -$this->create('settings_help', '/settings/help') - ->actionInclude('settings/help.php'); -$this->create('settings_personal', '/settings/personal') - ->actionInclude('settings/personal.php'); -$this->create('settings_users', '/settings/users') - ->actionInclude('settings/users.php'); -$this->create('settings_admin', '/settings/admin') - ->actionInclude('settings/admin.php'); -// Settings ajax actions -// users -$this->create('settings_ajax_setquota', '/settings/ajax/setquota.php') - ->actionInclude('settings/ajax/setquota.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_users_changepassword', '/settings/users/changepassword') - ->post() - ->action('OC\Settings\ChangePassword\Controller', 'changeUserPassword'); -$this->create('settings_ajax_changegorupname', '/settings/ajax/changegroupname.php') - ->actionInclude('settings/ajax/changegroupname.php'); -// personal -$this->create('settings_personal_changepassword', '/settings/personal/changepassword') - ->post() - ->action('OC\Settings\ChangePassword\Controller', 'changePersonalPassword'); -$this->create('settings_ajax_setlanguage', '/settings/ajax/setlanguage.php') - ->actionInclude('settings/ajax/setlanguage.php'); -// apps -$this->create('settings_ajax_enableapp', '/settings/ajax/enableapp.php') - ->actionInclude('settings/ajax/enableapp.php'); -$this->create('settings_ajax_disableapp', '/settings/ajax/disableapp.php') - ->actionInclude('settings/ajax/disableapp.php'); -$this->create('settings_ajax_updateapp', '/settings/ajax/updateapp.php') - ->actionInclude('settings/ajax/updateapp.php'); -$this->create('settings_ajax_uninstallapp', '/settings/ajax/uninstallapp.php') - ->actionInclude('settings/ajax/uninstallapp.php'); -$this->create('settings_ajax_navigationdetect', '/settings/ajax/navigationdetect.php') - ->actionInclude('settings/ajax/navigationdetect.php'); -// admin -$this->create('settings_ajax_excludegroups', '/settings/ajax/excludegroups.php') - ->actionInclude('settings/ajax/excludegroups.php'); diff --git a/settings/templates/admin.php b/settings/templates/admin.php deleted file mode 100644 index 521f49d708a..00000000000 --- a/settings/templates/admin.php +++ /dev/null @@ -1,577 +0,0 @@ -<?php -/** - * Copyright (c) 2011, Robin Appelman <icewind1991@gmail.com> - * This file is licensed under the Affero General Public License version 3 or later. - * See the COPYING-README file. - */ -/** - * @var array $_ - * @var \OCP\IL10N $l - * @var OC_Defaults $theme - */ - -style('settings', 'settings'); -script('settings', [ 'settings', 'admin', 'log'] ); -script('core', ['multiselect', 'setupchecks']); -vendor_script('select2/select2'); -vendor_style('select2/select2'); - -$levels = ['Debug', 'Info', 'Warning', 'Error', 'Fatal']; -$levelLabels = [ - $l->t( 'Everything (fatal issues, errors, warnings, info, debug)' ), - $l->t( 'Info, warnings, errors and fatal issues' ), - $l->t( 'Warnings, errors and fatal issues' ), - $l->t( 'Errors and fatal issues' ), - $l->t( 'Fatal issues only' ), -]; - -$mail_smtpauthtype = [ - '' => $l->t('None'), - 'LOGIN' => $l->t('Login'), - 'PLAIN' => $l->t('Plain'), - 'NTLM' => $l->t('NT LAN Manager'), -]; - -$mail_smtpsecure = [ - '' => $l->t('None'), - 'ssl' => $l->t('SSL'), - 'tls' => $l->t('TLS'), -]; - -$mail_smtpmode = [ - 'php', - 'smtp', -]; -if ($_['sendmail_is_available']) { - $mail_smtpmode[] = 'sendmail'; -} -if ($_['mail_smtpmode'] == 'qmail') { - $mail_smtpmode[] = 'qmail'; -} -?> - -<div id="app-navigation"> - <ul> - <?php foreach($_['forms'] as $form) { - if (isset($form['anchor'])) { - $anchor = '#' . $form['anchor']; - $sectionName = $form['section-name']; - print_unescaped(sprintf("<li><a href='%s'>%s</a></li>", \OCP\Util::sanitizeHTML($anchor), \OCP\Util::sanitizeHTML($sectionName))); - } - }?> - </ul> -</div> - -<div id="app-content"> - -<div id="security-warning" class="section"> - <h2><?php p($l->t('Security & setup warnings'));?></h2> - <ul> -<?php -// is php setup properly to query system environment variables like getenv('PATH') -if ($_['getenvServerNotWorking']) { -?> - <li> - <?php p($l->t('php does not seem to be setup properly to query system environment variables. The test with getenv("PATH") only returns an empty response.')); ?><br> - <?php print_unescaped($l->t('Please check the <a target="_blank" rel="noreferrer" href="%s">installation documentation ↗</a> for php configuration notes and the php configuration of your server, especially when using php-fpm.', link_to_docs('admin-php-fpm'))); ?> - </li> -<?php -} - -// is read only config enabled -if ($_['readOnlyConfigEnabled']) { -?> - <li> - <?php p($l->t('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.')); ?> - </li> -<?php -} - -// Are doc blocks accessible? -if (!$_['isAnnotationsWorking']) { - ?> - <li> - <?php p($l->t('PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible.')); ?><br> - <?php p($l->t('This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator.')); ?> - </li> -<?php -} - -// Windows Warning -if ($_['WindowsWarning']) { - ?> - <li> - <?php p($l->t('Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience.')); ?> - </li> -<?php -} - -// Warning if memcache is outdated -foreach ($_['OutdatedCacheWarning'] as $php_module => $data) { - ?> - <li> - <?php p($l->t('%1$s below version %2$s is installed, for stability and performance reasons we recommend updating to a newer %1$s version.', $data)); ?> - </li> -<?php -} - -// if module fileinfo available? -if (!$_['has_fileinfo']) { - ?> - <li> - <?php p($l->t('The PHP module \'fileinfo\' is missing. We strongly recommend to enable this module to get best results with mime-type detection.')); ?> - </li> -<?php -} - -// locking configured optimally? -if ($_['fileLockingType'] === 'none') { - ?> - <li> - <?php print_unescaped($l->t('Transactional file locking is disabled, this might lead to issues with race conditions. Enable \'filelocking.enabled\' in config.php to avoid these problems. See the <a target="_blank" rel="noreferrer" href="%s">documentation ↗</a> for more information.', link_to_docs('admin-transactional-locking'))); ?> - </li> - <?php -} - -// is locale working ? -if (!$_['isLocaleWorking']) { - ?> - <li> - <?php - $locales = 'en_US.UTF-8/fr_FR.UTF-8/es_ES.UTF-8/de_DE.UTF-8/ru_RU.UTF-8/pt_BR.UTF-8/it_IT.UTF-8/ja_JP.UTF-8/zh_CN.UTF-8'; - p($l->t('System locale can not be set to a one which supports UTF-8.')); - ?> - <br> - <?php - p($l->t('This means that there might be problems with certain characters in file names.')); - ?> - <br> - <?php - p($l->t('We strongly suggest installing the required packages on your system to support one of the following locales: %s.', [$locales])); - ?> - </li> -<?php -} - -if ($_['suggestedOverwriteCliUrl']) { - ?> - <li> - <?php p($l->t('If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the "overwrite.cli.url" option in your config.php file to the webroot path of your installation (Suggested: "%s")', $_['suggestedOverwriteCliUrl'])); ?> - </li> -<?php -} - -if ($_['cronErrors']) { - ?> - <li> - <?php p($l->t('It was not possible to execute the cronjob via CLI. The following technical errors have appeared:')); ?> - <br> - <ol> - <?php foreach(json_decode($_['cronErrors']) as $error) { if(isset($error->error)) {?> - <li><?php p($error->error) ?> <?php p($error->hint) ?></li> - <?php }};?> - </ol> - </li> -<?php -} -?> -</ul> - -<div id="postsetupchecks" data-check-wellknown="<?php if($_['checkForWorkingWellKnownSetup']) { p('true'); } else { p('false'); } ?>"> - <div class="loading"></div> - <ul class="errors hidden"></ul> - <ul class="warnings hidden"></ul> - <ul class="info hidden"></ul> - <p class="hint hidden"> - <?php print_unescaped($l->t('Please double check the <a target="_blank" rel="noreferrer" href="%s">installation guides ↗</a>, and check for any errors or warnings in the <a href="#log-section">log</a>.', link_to_docs('admin-install'))); ?> - </p> -</div> -<div id="security-warning-state"> - <span class="hidden icon-checkmark"><?php p($l->t('All checks passed.'));?></span> -</div> -</div> - - <div class="section" id="shareAPI"> - <h2><?php p($l->t('Sharing'));?></h2> - <a target="_blank" el="noreferrer" class="icon-info svg" - title="<?php p($l->t('Open documentation'));?>" - href="<?php p(link_to_docs('admin-sharing')); ?>"></a> - <p id="enable"> - <input type="checkbox" name="shareapi_enabled" id="shareAPIEnabled" class="checkbox" - value="1" <?php if ($_['shareAPIEnabled'] === 'yes') print_unescaped('checked="checked"'); ?> /> - <label for="shareAPIEnabled"><?php p($l->t('Allow apps to use the Share API'));?></label><br/> - </p> - <p class="<?php if ($_['shareAPIEnabled'] === 'no') p('hidden');?>"> - <input type="checkbox" name="shareapi_allow_links" id="allowLinks" class="checkbox" - value="1" <?php if ($_['allowLinks'] === 'yes') print_unescaped('checked="checked"'); ?> /> - <label for="allowLinks"><?php p($l->t('Allow users to share via link'));?></label><br/> - </p> - - <p id="publicLinkSettings" class="indent <?php if ($_['allowLinks'] !== 'yes' || $_['shareAPIEnabled'] === 'no') p('hidden'); ?>"> - <input type="checkbox" name="shareapi_enforce_links_password" id="enforceLinkPassword" class="checkbox" - 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" class="checkbox" - 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" class="checkbox" - 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" class="checkbox" - value="1" <?php if ($_['shareDefaultExpireDateSet'] === 'yes') print_unescaped('checked="checked"'); ?> /> - <label for="shareapiDefaultExpireDate"><?php p($l->t('Set default expiration date'));?></label><br/> - - </p> - <p id="setDefaultExpireDate" class="double-indent <?php if ($_['allowLinks'] !== 'yes' || $_['shareDefaultExpireDateSet'] === 'no' || $_['shareAPIEnabled'] === 'no') p('hidden');?>"> - <?php p($l->t( 'Expire after ' )); ?> - <input type="text" name='shareapi_expire_after_n_days' id="shareapiExpireAfterNDays" placeholder="<?php p('7')?>" - value='<?php p($_['shareExpireAfterNDays']) ?>' /> - <?php p($l->t( 'days' )); ?> - <input type="checkbox" name="shareapi_enforce_expire_date" id="shareapiEnforceExpireDate" class="checkbox" - value="1" <?php if ($_['shareEnforceExpireDate'] === 'yes') print_unescaped('checked="checked"'); ?> /> - <label for="shareapiEnforceExpireDate"><?php p($l->t('Enforce expiration date'));?></label><br/> - </p> - <p class="<?php if ($_['shareAPIEnabled'] === 'no') p('hidden');?>"> - <input type="checkbox" name="shareapi_allow_resharing" id="allowResharing" class="checkbox" - value="1" <?php if ($_['allowResharing'] === 'yes') print_unescaped('checked="checked"'); ?> /> - <label for="allowResharing"><?php p($l->t('Allow resharing'));?></label><br/> - </p> - <p class="<?php if ($_['shareAPIEnabled'] === 'no') p('hidden');?>"> - <input type="checkbox" name="shareapi_allow_group_sharing" id="allowGroupSharing" class="checkbox" - value="1" <?php if ($_['allowGroupSharing'] === 'yes') print_unescaped('checked="checked"'); ?> /> - <label for="allowGroupSharing"><?php p($l->t('Allow sharing with groups'));?></label><br /> - </p> - <p class="<?php if ($_['shareAPIEnabled'] === 'no') p('hidden');?>"> - <input type="checkbox" name="shareapi_only_share_with_group_members" id="onlyShareWithGroupMembers" class="checkbox" - value="1" <?php if ($_['onlyShareWithGroupMembers']) print_unescaped('checked="checked"'); ?> /> - <label for="onlyShareWithGroupMembers"><?php p($l->t('Restrict users to only share with users in their groups'));?></label><br/> - </p> - <p class="<?php if ($_['shareAPIEnabled'] === 'no') p('hidden');?>"> - <input type="checkbox" name="shareapi_allow_mail_notification" id="allowMailNotification" class="checkbox" - 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 to other users'));?></label><br/> - </p> - <p class="<?php if ($_['shareAPIEnabled'] === 'no') p('hidden');?>"> - <input type="checkbox" name="shareapi_exclude_groups" id="shareapiExcludeGroups" class="checkbox" - value="1" <?php if ($_['shareExcludeGroups']) print_unescaped('checked="checked"'); ?> /> - <label for="shareapiExcludeGroups"><?php p($l->t('Exclude groups from sharing'));?></label><br/> - </p> - <p id="selectExcludedGroups" class="indent <?php if (!$_['shareExcludeGroups'] || $_['shareAPIEnabled'] === 'no') p('hidden'); ?>"> - <input name="shareapi_exclude_groups_list" type="hidden" id="excludedGroups" value="<?php p($_['shareExcludedGroupsList']) ?>" style="width: 400px"/> - <br /> - <em><?php p($l->t('These groups will still be able to receive shares, but not to initiate them.')); ?></em> - </p> - <p class="<?php if ($_['shareAPIEnabled'] === 'no') p('hidden');?>"> - <input type="checkbox" name="shareapi_allow_share_dialog_user_enumeration" value="1" id="shareapi_allow_share_dialog_user_enumeration" class="checkbox" - <?php if ($_['allowShareDialogUserEnumeration'] === 'yes') print_unescaped('checked="checked"'); ?> /> - <label for="shareapi_allow_share_dialog_user_enumeration"><?php p($l->t('Allow username autocompletion in share dialog. If this is disabled the full username needs to be entered.'));?></label><br /> - </p> - - <?php print_unescaped($_['fileSharingSettings']); ?> - </div> - -<?php print_unescaped($_['filesExternal']); ?> - -<?php foreach($_['forms'] as $form) { - if (isset($form['form'])) {?> - <div id="<?php isset($form['anchor']) ? p($form['anchor']) : p('');?>"><?php print_unescaped($form['form']);?></div> - <?php } -};?> - -<div class="section" id="backgroundjobs"> - <h2 class="inlineblock"><?php p($l->t('Cron'));?></h2> - <?php if ($_['cron_log']): ?> - <p class="cronlog inlineblock"> - <?php if ($_['lastcron'] !== false): - $relative_time = relative_modified_date($_['lastcron']); - $absolute_time = OC_Util::formatDate($_['lastcron']); - if (time() - $_['lastcron'] <= 3600): ?> - <span class="status success"></span> - <span class="crondate" original-title="<?php p($absolute_time);?>"> - <?php p($l->t("Last cron job execution: %s.", [$relative_time]));?> - </span> - <?php else: ?> - <span class="status error"></span> - <span class="crondate" original-title="<?php p($absolute_time);?>"> - <?php p($l->t("Last cron job execution: %s. Something seems wrong.", [$relative_time]));?> - </span> - <?php endif; - else: ?> - <span class="status error"></span> - <?php p($l->t("Cron was not executed yet!")); - endif; ?> - </p> - <?php endif; ?> - <a target="_blank" rel="noreferrer" class="icon-info svg" - title="<?php p($l->t('Open documentation'));?>" - href="<?php p(link_to_docs('admin-background-jobs')); ?>"></a> - - <p> - <input type="radio" name="mode" value="ajax" - id="backgroundjobs_ajax" <?php if ($_['backgroundjobs_mode'] === "ajax") { - print_unescaped('checked="checked"'); - } ?>> - <label for="backgroundjobs_ajax">AJAX</label><br/> - <em><?php p($l->t("Execute one task with each page loaded")); ?></em> - </p> - <p> - <input type="radio" name="mode" value="webcron" - id="backgroundjobs_webcron" <?php if ($_['backgroundjobs_mode'] === "webcron") { - print_unescaped('checked="checked"'); - } ?>> - <label for="backgroundjobs_webcron">Webcron</label><br/> - <em><?php p($l->t("cron.php is registered at a webcron service to call cron.php every 15 minutes over http.")); ?></em> - </p> - <p> - <input type="radio" name="mode" value="cron" - id="backgroundjobs_cron" <?php if ($_['backgroundjobs_mode'] === "cron") { - print_unescaped('checked="checked"'); - } ?>> - <label for="backgroundjobs_cron">Cron</label><br/> - <em><?php p($l->t("Use system's cron service to call the cron.php file every 15 minutes.")); ?></em> - </p> -</div> - -<div class="section" id='encryptionAPI'> - <h2><?php p($l->t('Server-side encryption')); ?></h2> - <a target="_blank" rel="noreferrer" class="icon-info svg" - title="<?php p($l->t('Open documentation'));?>" - href="<?php p(link_to_docs('admin-encryption')); ?>"></a> - - <p id="enable"> - <input type="checkbox" - id="enableEncryption" class="checkbox" - value="1" <?php if ($_['encryptionEnabled']) print_unescaped('checked="checked" disabled="disabled"'); ?> /> - <label - for="enableEncryption"><?php p($l->t('Enable server-side encryption')); ?> <span id="startmigration_msg" class="msg"></span> </label><br/> - </p> - - <div id="EncryptionWarning" class="warning hidden"> - <p><?php p($l->t('Please read carefully before activating server-side encryption: ')); ?></p> - <ul> - <li><?php p($l->t('Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met.')); ?></li> - <li><?php p($l->t('Encryption alone does not guarantee security of the system. Please see ownCloud documentation for more information about how the encryption app works, and the supported use cases.')); ?></li> - <li><?php p($l->t('Be aware that encryption always increases the file size.')); ?></li> - <li><?php p($l->t('It is always good to create regular backups of your data, in case of encryption make sure to backup the encryption keys along with your data.')); ?></li> - </ul> - - <p><?php p($l->t('This is the final warning: Do you really want to enable encryption?')) ?> <input type="button" - id="reallyEnableEncryption" - value="<?php p($l->t("Enable encryption")); ?>" /></p> - </div> - - <div id="EncryptionSettingsArea" class="<?php if (!$_['encryptionEnabled']) p('hidden'); ?>"> - <div id='selectEncryptionModules' class="<?php if (!$_['encryptionReady']) p('hidden'); ?>"> - <?php - if (empty($_['encryptionModules'])) { - p($l->t('No encryption module loaded, please enable an encryption module in the app menu.')); - } else { ?> - <h3><?php p($l->t('Select default encryption module:')) ?></h3> - <fieldset id='encryptionModules'> - <?php foreach ($_['encryptionModules'] as $id => $module): ?> - <input type="radio" id="<?php p($id) ?>" - name="default_encryption_module" - value="<?php p($id) ?>" - <?php if ($module['default']) { - p('checked'); - } ?>> - <label - for="<?php p($id) ?>"><?php p($module['displayName']) ?></label> - <br/> - - <?php if ($id === 'OC_DEFAULT_MODULE') print_unescaped($_['ocDefaultEncryptionModulePanel']); ?> - <?php endforeach; ?> - </fieldset> - <?php } ?> - </div> - <div id="migrationWarning" class="<?php if ($_['encryptionReady']) p('hidden'); ?>"> - <?php - if ($_['encryptionReady'] === false && $_['externalBackendsEnabled'] === true) { - p($l->t('You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the "Default encryption module" and run \'occ encryption:migrate\'')); - } elseif ($_['encryptionReady'] === false && $_['externalBackendsEnabled'] === false) { - p($l->t('You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one.')); ?> - <input type="submit" name="startmigration" id="startmigration" - value="<?php p($l->t('Start migration')); ?>"/> - <?php } ?> - </div> - </div> -</div> - -<div class="section" id="mail_general_settings"> - <form id="mail_general_settings_form" class="mail_settings"> - <h2><?php p($l->t('Email server'));?></h2> - <a target="_blank" rel="noreferrer" class="icon-info svg" - title="<?php p($l->t('Open documentation'));?>" - href="<?php p(link_to_docs('admin-email')); ?>"></a> - - <p><?php p($l->t('This is used for sending out notifications.')); ?> <span id="mail_settings_msg" class="msg"></span></p> - - <p> - <label for="mail_smtpmode"><?php p($l->t( 'Send mode' )); ?></label> - <select name='mail_smtpmode' id='mail_smtpmode'> - <?php foreach ($mail_smtpmode as $smtpmode): - $selected = ''; - if ($smtpmode == $_['mail_smtpmode']): - $selected = 'selected="selected"'; - endif; ?> - <option value='<?php p($smtpmode)?>' <?php p($selected) ?>><?php p($smtpmode) ?></option> - <?php endforeach;?> - </select> - - <label id="mail_smtpsecure_label" for="mail_smtpsecure" - <?php if ($_['mail_smtpmode'] != 'smtp') print_unescaped(' class="hidden"'); ?>> - <?php p($l->t( 'Encryption' )); ?> - </label> - <select name="mail_smtpsecure" id="mail_smtpsecure" - <?php if ($_['mail_smtpmode'] != 'smtp') print_unescaped(' class="hidden"'); ?>> - <?php foreach ($mail_smtpsecure as $secure => $name): - $selected = ''; - if ($secure == $_['mail_smtpsecure']): - $selected = 'selected="selected"'; - endif; ?> - <option value='<?php p($secure)?>' <?php p($selected) ?>><?php p($name) ?></option> - <?php endforeach;?> - </select> - </p> - - <p> - <label for="mail_from_address"><?php p($l->t( 'From address' )); ?></label> - <input type="text" name='mail_from_address' id="mail_from_address" placeholder="<?php p($l->t('mail'))?>" - value='<?php p($_['mail_from_address']) ?>' />@ - <input type="text" name='mail_domain' id="mail_domain" placeholder="example.com" - value='<?php p($_['mail_domain']) ?>' /> - </p> - - <p id="setting_smtpauth" <?php if ($_['mail_smtpmode'] != 'smtp') print_unescaped(' class="hidden"'); ?>> - <label for="mail_smtpauthtype"><?php p($l->t( 'Authentication method' )); ?></label> - <select name='mail_smtpauthtype' id='mail_smtpauthtype'> - <?php foreach ($mail_smtpauthtype as $authtype => $name): - $selected = ''; - if ($authtype == $_['mail_smtpauthtype']): - $selected = 'selected="selected"'; - endif; ?> - <option value='<?php p($authtype)?>' <?php p($selected) ?>><?php p($name) ?></option> - <?php endforeach;?> - </select> - - <input type="checkbox" name="mail_smtpauth" id="mail_smtpauth" class="checkbox" value="1" - <?php if ($_['mail_smtpauth']) print_unescaped('checked="checked"'); ?> /> - <label for="mail_smtpauth"><?php p($l->t( 'Authentication required' )); ?></label> - </p> - - <p id="setting_smtphost" <?php if ($_['mail_smtpmode'] != 'smtp') print_unescaped(' class="hidden"'); ?>> - <label for="mail_smtphost"><?php p($l->t( 'Server address' )); ?></label> - <input type="text" name='mail_smtphost' id="mail_smtphost" placeholder="smtp.example.com" - value='<?php p($_['mail_smtphost']) ?>' /> - : - <input type="text" name='mail_smtpport' id="mail_smtpport" placeholder="<?php p($l->t('Port'))?>" - value='<?php p($_['mail_smtpport']) ?>' /> - </p> - </form> - <form class="mail_settings" id="mail_credentials_settings"> - <p id="mail_credentials" <?php if (!$_['mail_smtpauth'] || $_['mail_smtpmode'] != 'smtp') print_unescaped(' class="hidden"'); ?>> - <label for="mail_smtpname"><?php p($l->t( 'Credentials' )); ?></label> - <input type="text" name='mail_smtpname' id="mail_smtpname" placeholder="<?php p($l->t('SMTP Username'))?>" - value='<?php p($_['mail_smtpname']) ?>' /> - <input type="password" name='mail_smtppassword' id="mail_smtppassword" autocomplete="off" - placeholder="<?php p($l->t('SMTP Password'))?>" value='<?php p($_['mail_smtppassword']) ?>' /> - <input id="mail_credentials_settings_submit" type="button" value="<?php p($l->t('Store credentials')) ?>"> - </p> - </form> - - <br /> - <em><?php p($l->t( 'Test email settings' )); ?></em> - <input type="submit" name="sendtestemail" id="sendtestemail" value="<?php p($l->t( 'Send email' )); ?>"/> - <span id="sendtestmail_msg" class="msg"></span> -</div> - -<div class="section" id="log-section"> - <h2><?php p($l->t('Log'));?></h2> -<?php if ($_['showLog'] && $_['doesLogFileExist']): ?> - <table id="log" class="grid"> - <?php foreach ($_['entries'] as $entry): ?> - <tr> - <td> - <?php p($levels[$entry->level]);?> - </td> - <td> - <?php p($entry->app);?> - </td> - <td class="log-message"> - <?php p($entry->message);?> - </td> - <td class="date"> - <?php if(is_int($entry->time)){ - p(OC_Util::formatDate($entry->time)); - } else { - p($entry->time); - }?> - </td> - </tr> - <?php endforeach;?> - </table> - <?php if ($_['logFileSize'] > 0): ?> - <a href="<?php print_unescaped(OC::$server->getURLGenerator()->linkToRoute('settings.LogSettings.download')); ?>" class="button" id="downloadLog"><?php p($l->t('Download logfile'));?></a> - <?php endif; ?> - <?php if ($_['entriesremain']): ?> - <input id="moreLog" type="button" value="<?php p($l->t('More'));?>..."> - <input id="lessLog" type="button" value="<?php p($l->t('Less'));?>..."> - <?php endif; ?> - <?php if ($_['logFileSize'] > (100 * 1024 * 1024)): ?> - <br> - <em> - <?php p($l->t('The logfile is bigger than 100 MB. Downloading it may take some time!')); ?> - </em> - <?php endif; ?> - <?php endif; ?> - - <p><?php p($l->t('What to log'));?> <select name='loglevel' id='loglevel'> - <?php for ($i = 0; $i < 5; $i++): - $selected = ''; - if ($i == $_['loglevel']): - $selected = 'selected="selected"'; - endif; ?> - <option value='<?php p($i)?>' <?php p($selected) ?>><?php p($levelLabels[$i])?></option> - <?php endfor;?> - </select></p> -</div> - -<div class="section" id="admin-tips"> - <h2><?php p($l->t('Tips & tricks'));?></h2> - <ul> - <?php - // SQLite database performance issue - if ($_['databaseOverload']) { - ?> - <li> - <?php p($l->t('SQLite is used as database. For larger installations we recommend to switch to a different database backend.')); ?><br> - <?php p($l->t('Especially when using the desktop client for file syncing the use of SQLite is discouraged.')); ?><br> - <?php print_unescaped($l->t('To migrate to another database use the command line tool: \'occ db:convert-type\', or see the <a target="_blank" rel="noreferrer" href="%s">documentation ↗</a>.', link_to_docs('admin-db-conversion') )); ?> - </li> - <?php } ?> - <li><a target="_blank" rel="noreferrer" href="<?php p(link_to_docs('admin-backup')); ?>"><?php p($l->t('How to do backups'));?> ↗</a></li> - <li><a target="_blank" rel="noreferrer" href="<?php p(link_to_docs('admin-monitoring')); ?>"><?php p($l->t('Advanced monitoring'));?> ↗</a></li> - <li><a target="_blank" rel="noreferrer" href="<?php p(link_to_docs('admin-performance')); ?>"><?php p($l->t('Performance tuning'));?> ↗</a></li> - <li><a target="_blank" rel="noreferrer" href="<?php p(link_to_docs('admin-config')); ?>"><?php p($l->t('Improving the config.php'));?> ↗</a></li> - <li><a target="_blank" rel="noreferrer" href="<?php p(link_to_docs('developer-theming')); ?>"><?php p($l->t('Theming'));?> ↗</a></li> - <li><a target="_blank" rel="noreferrer" href="<?php p(link_to_docs('admin-security')); ?>"><?php p($l->t('Hardening and security guidance'));?> ↗</a></li> - </ul> -</div> - -<?php if (!empty($_['updaterAppPanel'])): ?> - <div id="updater"><?php print_unescaped($_['updaterAppPanel']); ?></div> -<?php endif; ?> - -<div class="section"> - <h2><?php p($l->t('Version'));?></h2> - <p><a href="<?php print_unescaped($theme->getBaseUrl()); ?>" rel="noreferrer" target="_blank"><?php p($theme->getTitle()); ?></a> <?php p(OC_Util::getHumanVersion()) ?></p> - <p><?php include('settings.development.notice.php'); ?></p> -</div> - - - - -</div> diff --git a/settings/templates/apps.php b/settings/templates/apps.php deleted file mode 100644 index 47d1eff463e..00000000000 --- a/settings/templates/apps.php +++ /dev/null @@ -1,174 +0,0 @@ -<?php -style('settings', 'settings'); -vendor_style( - 'core', - [ - 'select2/select2', - ] -); -vendor_script( - 'core', - [ - 'handlebars/handlebars', - 'select2/select2' - ] -); -script( - 'settings', - [ - 'settings', - 'apps', - ] -); -/** @var array $_ */ -?> -<script id="categories-template" type="text/x-handlebars-template"> -{{#each this}} - <li id="app-category-{{ident}}" data-category-id="{{ident}}" tabindex="0"> - <a>{{displayName}}</a> - </li> -{{/each}} - -<?php if($_['appstoreEnabled']): ?> - <li> - <a class="app-external" target="_blank" rel="noreferrer" href="https://owncloud.org/dev"><?php p($l->t('Developer documentation'));?> ↗</a> - </li> -<?php endif; ?> -</script> - -<script id="app-template" type="text/x-handlebars"> - {{#if firstExperimental}} - <div class="section apps-experimental"> - <h2><?php p($l->t('Experimental applications ahead')) ?></h2> - <p> - <?php p($l->t('Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches.')) ?> - </p> - </div> - {{/if}} - - <div class="section" id="app-{{id}}"> - {{#if preview}} - <div class="app-image{{#if previewAsIcon}} app-image-icon{{/if}} hidden"> - </div> - {{/if}} - <h2 class="app-name"> - {{#if detailpage}} - <a href="{{detailpage}}" target="_blank" rel="noreferrer">{{name}}</a> - {{else}} - {{name}} - {{/if}} - </h2> - <div class="app-version"> {{version}}</div> - {{#if profilepage}}<a href="{{profilepage}}" target="_blank" rel="noreferrer">{{/if}} - <div class="app-author"><?php p($l->t('by %s', ['{{author}}']));?> - {{#if licence}} - (<?php p($l->t('%s-licensed', ['{{licence}}'])); ?>) - {{/if}} - </div> - {{#if profilepage}}</a>{{/if}} - <div class="app-level"> - {{{level}}} - </div> - {{#if score}} - <div class="app-score">{{{score}}}</div> - {{/if}} - <div class="app-detailpage"></div> - - <div class="app-description-container hidden"> - <div class="app-description"><pre>{{description}}</pre></div> - <!--<div class="app-changed">{{changed}}</div>--> - {{#if documentation}} - <p class="documentation"> - <?php p($l->t("Documentation:"));?> - {{#if documentation.user}} - <span class="userDocumentation"> - <a id="userDocumentation" class="appslink" href="{{documentation.user}}" target="_blank" rel="noreferrer"><?php p($l->t('User documentation'));?> ↗</a> - </span> - {{/if}} - - {{#if documentation.admin}} - <span class="adminDocumentation"> - <a id="adminDocumentation" class="appslink" href="{{documentation.admin}}" target="_blank" rel="noreferrer"><?php p($l->t('Admin documentation'));?> ↗</a> - </span> - {{/if}} - </p> - {{/if}} - </div><!-- end app-description-container --> - <div class="app-description-toggle-show"><?php p($l->t("Show description …"));?></div> - <div class="app-description-toggle-hide hidden"><?php p($l->t("Hide description …"));?></div> - - <div class="app-dependencies update hidden"> - <p><?php p($l->t('This app has an update available.')); ?></p> - </div> - - {{#if missingMinOwnCloudVersion}} - <div class="app-dependencies"> - <p><?php p($l->t('This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later.')); ?></p> - </div> - {{else}} - {{#if missingMaxOwnCloudVersion}} - <div class="app-dependencies"> - <p><?php p($l->t('This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later.')); ?></p> - </div> - {{/if}} - {{/if}} - - {{#unless canInstall}} - <div class="app-dependencies"> - <p><?php p($l->t('This app cannot be installed because the following dependencies are not fulfilled:')); ?></p> - <ul class="missing-dependencies"> - {{#each missingDependencies}} - <li>{{this}}</li> - {{/each}} - </ul> - </div> - {{/unless}} - - <input class="update hidden" type="submit" value="<?php p($l->t('Update to %s', array('{{update}}'))); ?>" data-appid="{{id}}" /> - {{#if active}} - <input class="enable" type="submit" data-appid="{{id}}" data-active="true" value="<?php p($l->t("Disable"));?>"/> - <span class="groups-enable"> - <input type="checkbox" class="groups-enable__checkbox checkbox" id="groups_enable-{{id}}"/> - <label for="groups_enable-{{id}}"><?php p($l->t('Enable only for specific groups')); ?></label> - </span> - <br /> - <input type="hidden" id="group_select" title="<?php p($l->t('All')); ?>" style="width: 200px"> - {{else}} - <input class="enable" type="submit" data-appid="{{id}}" data-active="false" {{#unless canInstall}}disabled="disabled"{{/unless}} value="<?php p($l->t("Enable"));?>"/> - {{/if}} - {{#if canUnInstall}} - <input class="uninstall" type="submit" value="<?php p($l->t('Uninstall App')); ?>" data-appid="{{id}}" /> - {{/if}} - - <div class="warning hidden"></div> - - </div> -</script> - -<div id="app-navigation" class="icon-loading" data-category="<?php p($_['category']);?>"> - <ul id="apps-categories"> - - </ul> - <div id="app-settings"> - <div id="app-settings-header"> - <button class="settings-button" data-apps-slide-toggle="#app-settings-content"></button> - </div> - - <div id="app-settings-content" class="apps-experimental"> - <input type="checkbox" id="enable-experimental-apps" <?php if($_['experimentalEnabled']) { print_unescaped('checked="checked"'); }?> class="checkbox"> - <label for="enable-experimental-apps"><?php p($l->t('Enable experimental apps')) ?></label> - <p> - <small> - <?php p($l->t('Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches.')) ?> - </small> - </p> - </div> - </div> -</div> -<div id="app-content"> - <div id="apps-list" class="icon-loading"></div> - <div id="apps-list-empty" class="hidden emptycontent emptycontent-search"> - <div class="icon-search"></div> - <h2><?php p($l->t('No apps found for your version')) ?></h2> - </div> -</div> diff --git a/settings/templates/certificates.php b/settings/templates/certificates.php deleted file mode 100644 index c1ccdcaef95..00000000000 --- a/settings/templates/certificates.php +++ /dev/null @@ -1,44 +0,0 @@ -<div class="section"> - <h2><?php p($l->t('SSL Root Certificates')); ?></h2> - <table id="sslCertificate" class="grid" data-type="<?php p($_['type']); ?>"> - <thead> - <tr> - <th><?php p($l->t('Common Name')); ?></th> - <th><?php p($l->t('Valid until')); ?></th> - <th><?php p($l->t('Issued By')); ?></th> - </tr> - </thead> - <tbody> - <?php foreach ($_['certs'] as $rootCert): /**@var \OCP\ICertificate $rootCert */ ?> - <tr class="<?php echo ($rootCert->isExpired()) ? 'expired' : 'valid' ?>" - data-name="<?php p($rootCert->getName()) ?>"> - <td class="rootCert" - title="<?php p($rootCert->getOrganization()) ?>"> - <?php p($rootCert->getCommonName()) ?> - </td> - <td title="<?php p($l->t('Valid until %s', $l->l('date', $rootCert->getExpireDate()))) ?>"> - <?php echo $l->l('date', $rootCert->getExpireDate()) ?> - </td> - <td title="<?php p($rootCert->getIssuerOrganization()) ?>"> - <?php p($rootCert->getIssuerName()) ?> - </td> - <td <?php if ($rootCert != ''): ?>class="remove" - <?php else: ?>style="visibility:hidden;" - <?php endif; ?>><img alt="<?php p($l->t('Delete')); ?>" - title="<?php p($l->t('Delete')); ?>" - class="svg action" - src="<?php print_unescaped(image_path('core', 'actions/delete.svg')); ?>"/> - </td> - </tr> - <?php endforeach; ?> - </tbody> - </table> - <form class="uploadButton" method="post" - action="<?php p($_['urlGenerator']->linkToRoute($_['uploadRoute'])); ?>" - target="certUploadFrame"> - <label for="rootcert_import" class="inlineblock button" - id="rootcert_import_button"><?php p($l->t('Import root certificate')); ?></label> - <input type="file" id="rootcert_import" name="rootcert_import" - class="hiddenuploadfield"> - </form> -</div> diff --git a/settings/templates/email.new_user.php b/settings/templates/email.new_user.php deleted file mode 100644 index 8b13ac753eb..00000000000 --- a/settings/templates/email.new_user.php +++ /dev/null @@ -1,36 +0,0 @@ -<table cellspacing="0" cellpadding="0" border="0" width="100%"> - <tr><td> - <table cellspacing="0" cellpadding="0" border="0" width="600px"> - <tr> - <td bgcolor="<?php p($theme->getMailHeaderColor());?>" width="20px"> </td> - <td bgcolor="<?php p($theme->getMailHeaderColor());?>"> - <img src="<?php p(\OC::$server->getURLGenerator()->getAbsoluteURL(image_path('', 'logo-mail.gif'))); ?>" alt="<?php p($theme->getName()); ?>"/> - </td> - </tr> - <tr><td colspan="2"> </td></tr> - <tr> - <td width="20px"> </td> - <td style="font-weight:normal; font-size:0.8em; line-height:1.2em; font-family:verdana,'arial',sans;"> - <?php - print_unescaped($l->t('Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href="%s">%s</a><br><br>', array($theme->getName(), $_['username'], $_['url'], $_['url']))); - - // TRANSLATORS term at the end of a mail - p($l->t('Cheers!')); - ?> - </td> - </tr> - <tr><td colspan="2"> </td></tr> - <tr> - <td width="20px"> </td> - <td style="font-weight:normal; font-size:0.8em; line-height:1.2em; font-family:verdana,'arial',sans;">--<br> - <?php p($theme->getName()); ?> - - <?php p($theme->getSlogan()); ?> - <br><a href="<?php p($theme->getBaseUrl()); ?>"><?php p($theme->getBaseUrl());?></a> - </td> - </tr> - <tr> - <td colspan="2"> </td> - </tr> - </table> - </td></tr> -</table> diff --git a/settings/templates/email.new_user_plain_text.php b/settings/templates/email.new_user_plain_text.php deleted file mode 100644 index 79559a87020..00000000000 --- a/settings/templates/email.new_user_plain_text.php +++ /dev/null @@ -1,10 +0,0 @@ -<?php -print_unescaped($l->t("Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n", array($theme->getName(), $_['username'], $_['url']))); - -// TRANSLATORS term at the end of a mail -p($l->t("Cheers!")); -?> - - -- -<?php p($theme->getName() . ' - ' . $theme->getSlogan()); ?> -<?php print_unescaped("\n".$theme->getBaseUrl()); diff --git a/settings/templates/help.php b/settings/templates/help.php deleted file mode 100644 index 79584aba84d..00000000000 --- a/settings/templates/help.php +++ /dev/null @@ -1,48 +0,0 @@ -<div id="app-navigation"> - <ul> - <?php if($_['admin']) { ?> - <li> - <a class="<?php p($_['style1']); ?>" - href="<?php print_unescaped($_['url1']); ?>"> - <?php p($l->t('User documentation')); ?> - </a> - </li> - <li> - <a class="<?php p($_['style2']); ?>" - href="<?php print_unescaped($_['url2']); ?>"> - <?php p($l->t('Administrator documentation')); ?> - </a> - </li> - <?php } ?> - - <li> - <a href="https://owncloud.org/support" target="_blank" rel="noreferrer"> - <?php p($l->t('Online documentation')); ?> ↗ - </a> - </li> - <li> - <a href="https://forum.owncloud.org" target="_blank" rel="noreferrer"> - <?php p($l->t('Forum')); ?> ↗ - </a> - </li> - - <?php if($_['admin']) { ?> - <li> - <a href="https://github.com/owncloud/core/blob/master/CONTRIBUTING.md" - target="_blank" rel="noreferrer"> - <?php p($l->t('Issue tracker')); ?> ↗ - </a> - </li> - <?php } ?> - - <li> - <a href="https://owncloud.com/subscriptions/" target="_blank" rel="noreferrer"> - <?php p($l->t('Commercial support')); ?> ↗ - </a> - </li> -</div> - -<div id="app-content" class="help-includes"> - <iframe src="<?php print_unescaped($_['url']); ?>" class="help-iframe"> - </iframe> -</div> diff --git a/settings/templates/personal.php b/settings/templates/personal.php deleted file mode 100644 index 5e929bc33ff..00000000000 --- a/settings/templates/personal.php +++ /dev/null @@ -1,213 +0,0 @@ -<?php /** - * Copyright (c) 2011, Robin Appelman <icewind1991@gmail.com> - * This file is licensed under the Affero General Public License version 3 or later. - * See the COPYING-README file. - */ - -/** @var $_ mixed[]|\OCP\IURLGenerator[] */ -/** @var \OC_Defaults $theme */ -?> - -<div id="app-navigation"> - <ul> - <?php foreach($_['forms'] as $form) { - if (isset($form['anchor'])) { - $anchor = '#' . $form['anchor']; - $sectionName = $form['section-name']; - print_unescaped(sprintf("<li><a href='%s'>%s</a></li>", \OCP\Util::sanitizeHTML($anchor), \OCP\Util::sanitizeHTML($sectionName))); - } - }?> - </ul> -</div> - -<div id="app-content"> - -<div id="quota" class="section"> - <div style="width:<?php p($_['usage_relative']);?>%" - <?php if($_['usage_relative'] > 80): ?> class="quota-warning" <?php endif; ?>> - <p id="quotatext"> - <?php print_unescaped($l->t('You are using <strong>%s</strong> of <strong>%s</strong>', - array($_['usage'], $_['total_space'])));?> - </p> - </div> -</div> - -<?php if ($_['enableAvatars']): ?> -<form id="avatar" class="section" method="post" action="<?php p(\OC::$server->getURLGenerator()->linkToRoute('core.avatar.postAvatar')); ?>"> - <h2><?php p($l->t('Profile picture')); ?></h2> - <div id="displayavatar"> - <div class="avatardiv"></div> - <div class="warning hidden"></div> - <?php if ($_['avatarChangeSupported']): ?> - <label for="uploadavatar" class="inlineblock button icon-upload svg" id="uploadavatarbutton" title="<?php p($l->t('Upload new')); ?>"></label> - <div class="inlineblock button icon-folder svg" id="selectavatar" title="<?php p($l->t('Select from Files')); ?>"></div> - <div class="hidden button icon-delete svg" id="removeavatar" title="<?php p($l->t('Remove image')); ?>"></div> - <input type="file" name="files[]" id="uploadavatar" class="hiddenuploadfield"> - <p><em><?php p($l->t('png or jpg, max. 20 MB')); ?></em></p> - <?php else: ?> - <?php p($l->t('Picture provided by original account')); ?> - <?php endif; ?> - </div> - - <div id="cropper" class="hidden"> - <div class="inlineblock button" id="abortcropperbutton"><?php p($l->t('Cancel')); ?></div> - <div class="inlineblock button primary" id="sendcropperbutton"><?php p($l->t('Choose as profile picture')); ?></div> - </div> -</form> -<?php endif; ?> - -<?php -if($_['displayNameChangeSupported']) { -?> -<form id="displaynameform" class="section"> - <h2> - <label for="displayName"><?php echo $l->t('Full name');?></label> - </h2> - <input type="text" id="displayName" name="displayName" - value="<?php p($_['displayName'])?>" - autocomplete="on" autocapitalize="off" autocorrect="off" /> - <span class="msg"></span> - <input type="hidden" id="oldDisplayName" name="oldDisplayName" value="<?php p($_['displayName'])?>" /> -</form> -<?php -} else { -?> -<div id="displaynameform" class="section"> - <h2><?php echo $l->t('Full name');?></h2> - <span><?php if(isset($_['displayName'][0])) { p($_['displayName']); } else { p($l->t('No display name set')); } ?></span> -</div> -<?php -} -?> - -<?php -if($_['displayNameChangeSupported']) { -?> -<form id="lostpassword" class="section"> - <h2> - <label for="email"><?php p($l->t('Email'));?></label> - </h2> - <input type="email" name="email" id="email" value="<?php p($_['email']); ?>" - placeholder="<?php p($l->t('Your email address'));?>" - autocomplete="on" autocapitalize="off" autocorrect="off" /> - <span class="msg"></span><br /> - <em><?php p($l->t('For password recovery and notifications'));?></em> -</form> -<?php -} else { -?> -<div id="lostpassword" class="section"> - <h2><?php echo $l->t('Email'); ?></h2> - <span><?php if(isset($_['email'][0])) { p($_['email']); } else { p($l->t('No email address set')); }?></span> -</div> -<?php -} -?> - -<div id="groups" class="section"> - <h2><?php p($l->t('Groups')); ?></h2> - <p><?php p($l->t('You are member of the following groups:')); ?></p> - <p> - <?php p(implode(', ', $_['groups'])); ?> - </p> -</div> - -<?php -if($_['passwordChangeSupported']) { - script('jquery-showpassword'); -?> -<form id="passwordform" class="section"> - <h2 class="inlineblock"><?php p($l->t('Password'));?></h2> - <div class="hidden icon-checkmark" id="password-changed"></div> - <div class="hidden" id="password-error"><?php p($l->t('Unable to change your password'));?></div> - <br> - <label for="pass1" class="onlyInIE8"><?php echo $l->t('Current password');?>: </label> - <input type="password" id="pass1" name="oldpassword" - placeholder="<?php echo $l->t('Current password');?>" - autocomplete="off" autocapitalize="off" autocorrect="off" /> - <label for="pass2" class="onlyInIE8"><?php echo $l->t('New password');?>: </label> - <input type="password" id="pass2" name="personal-password" - placeholder="<?php echo $l->t('New password');?>" - data-typetoggle="#personal-show" - autocomplete="off" autocapitalize="off" autocorrect="off" /> - <input type="checkbox" id="personal-show" name="show" /><label for="personal-show" class="svg"></label> - <input id="passwordbutton" type="submit" value="<?php echo $l->t('Change password');?>" /> - <br/> - <div class="strengthify-wrapper"></div> -</form> -<?php -} -?> - -<form id="language" class="section"> - <h2> - <label for="languageinput"><?php p($l->t('Language'));?></label> - </h2> - <select id="languageinput" name="lang" data-placeholder="<?php p($l->t('Language'));?>"> - <option value="<?php p($_['activelanguage']['code']);?>"> - <?php p($_['activelanguage']['name']);?> - </option> - <?php foreach($_['commonlanguages'] as $language):?> - <option value="<?php p($language['code']);?>"> - <?php p($language['name']);?> - </option> - <?php endforeach;?> - <optgroup label="––––––––––"></optgroup> - <?php foreach($_['languages'] as $language):?> - <option value="<?php p($language['code']);?>"> - <?php p($language['name']);?> - </option> - <?php endforeach;?> - </select> - <?php if (OC_Util::getEditionString() === ''): ?> - <a href="https://www.transifex.com/projects/p/owncloud/team/<?php p($_['activelanguage']['code']);?>/" - target="_blank" rel="noreferrer"> - <em><?php p($l->t('Help translate'));?></em> - </a> - <?php endif; ?> -</form> - -<div id="clientsbox" class="section clientsbox"> - <h2><?php p($l->t('Get the apps to sync your files'));?></h2> - <a href="<?php p($_['clients']['desktop']); ?>" rel="noreferrer" target="_blank"> - <img src="<?php print_unescaped(OCP\Util::imagePath('core', 'desktopapp.svg')); ?>" - alt="<?php p($l->t('Desktop client'));?>" /> - </a> - <a href="<?php p($_['clients']['android']); ?>" rel="noreferrer" target="_blank"> - <img src="<?php print_unescaped(OCP\Util::imagePath('core', 'googleplay.png')); ?>" - alt="<?php p($l->t('Android app'));?>" /> - </a> - <a href="<?php p($_['clients']['ios']); ?>" rel="noreferrer" target="_blank"> - <img src="<?php print_unescaped(OCP\Util::imagePath('core', 'appstore.svg')); ?>" - alt="<?php p($l->t('iOS app'));?>" /> - </a> - - <?php if (OC_Util::getEditionString() === ''): ?> - <p> - <?php print_unescaped($l->t('If you want to support the project - <a href="https://owncloud.org/contribute" - target="_blank" rel="noreferrer">join development</a> - or - <a href="https://owncloud.org/promote" - target="_blank" rel="noreferrer">spread the word</a>!'));?> - </p> - <?php endif; ?> - - <?php if(OC_APP::isEnabled('firstrunwizard')) {?> - <p><a class="button" href="#" id="showWizard"><?php p($l->t('Show First Run Wizard again'));?></a></p> - <?php }?> -</div> - -<?php foreach($_['forms'] as $form) { - if (isset($form['form'])) {?> - <div id="<?php isset($form['anchor']) ? p($form['anchor']) : p('');?>"><?php print_unescaped($form['form']);?></div> - <?php } -};?> - -<div class="section"> - <h2><?php p($l->t('Version'));?></h2> - <p><a href="<?php print_unescaped($theme->getBaseUrl()); ?>" target="_blank"><?php p($theme->getTitle()); ?></a> <?php p(OC_Util::getHumanVersion()) ?></p> - <p><?php include('settings.development.notice.php'); ?></p> -</div> - -</div> diff --git a/settings/templates/settings.development.notice.php b/settings/templates/settings.development.notice.php deleted file mode 100644 index c88c90f6b6b..00000000000 --- a/settings/templates/settings.development.notice.php +++ /dev/null @@ -1,19 +0,0 @@ -<?php if (OC_Util::getEditionString() === ''): ?> - <p> - <?php print_unescaped(str_replace( - [ - '{communityopen}', - '{githubopen}', - '{licenseopen}', - '{linkclose}', - ], - [ - '<a href="https://owncloud.org/contact" target="_blank" rel="noreferrer">', - '<a href="https://github.com/owncloud" target="_blank" rel="noreferrer">', - '<a href="https://www.gnu.org/licenses/agpl-3.0.html" target="_blank" rel="noreferrer">', - '</a>', - ], - $l->t('Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title="Affero General Public License">AGPL</abbr>{linkclose}.') - )); ?> - </p> -<?php endif; ?> diff --git a/settings/templates/settings.php b/settings/templates/settings.php deleted file mode 100644 index 48b4e6b3234..00000000000 --- a/settings/templates/settings.php +++ /dev/null @@ -1,9 +0,0 @@ -<?php /** - * Copyright (c) 2011, Robin Appelman <icewind1991@gmail.com> - * This file is licensed under the Affero General Public License version 3 or later. - * See the COPYING-README file. - */?> - -<?php foreach($_['forms'] as $form) { - print_unescaped($form); -}; diff --git a/settings/templates/users/main.php b/settings/templates/users/main.php deleted file mode 100644 index f50f83b38b3..00000000000 --- a/settings/templates/users/main.php +++ /dev/null @@ -1,90 +0,0 @@ -<?php -/** - * Copyright (c) 2011, Robin Appelman <icewind1991@gmail.com> - * This file is licensed under the Affero General Public License version 3 or later. - * See the COPYING-README file. - */ - -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) { - $allGroups[] = $group['name']; -} -foreach($_["adminGroup"] as $group) { - $allGroups[] = $group['name']; -} -$userlistParams['subadmingroups'] = $allGroups; -$userlistParams['allGroups'] = json_encode($allGroups); -$items = array_flip($userlistParams['subadmingroups']); -unset($items['admin']); -$userlistParams['subadmingroups'] = array_flip($items); - -translation('settings'); -?> - -<div id="app-navigation"> - <?php print_unescaped($this->inc('users/part.grouplist')); ?> - <div id="app-settings"> - <div id="app-settings-header"> - <button class="settings-button" tabindex="0" data-apps-slide-toggle="#app-settings-content"></button> - </div> - <div id="app-settings-content"> - <?php print_unescaped($this->inc('users/part.setquota')); ?> - - <div id="userlistoptions"> - <p> - <input type="checkbox" name="StorageLocation" value="StorageLocation" id="CheckboxStorageLocation" - class="checkbox" <?php if ($_['show_storage_location'] === 'true') print_unescaped('checked="checked"'); ?> /> - <label for="CheckboxStorageLocation"> - <?php p($l->t('Show storage location')) ?> - </label> - </p> - <p> - <input type="checkbox" name="LastLogin" value="LastLogin" id="CheckboxLastLogin" - class="checkbox" <?php if ($_['show_last_login'] === 'true') print_unescaped('checked="checked"'); ?> /> - <label for="CheckboxLastLogin"> - <?php p($l->t('Show last log in')) ?> - </label> - </p> - <p> - <input type="checkbox" name="UserBackend" value="UserBackend" id="CheckboxUserBackend" - class="checkbox" <?php if ($_['show_backend'] === 'true') print_unescaped('checked="checked"'); ?> /> - <label for="CheckboxUserBackend"> - <?php p($l->t('Show user backend')) ?> - </label> - </p> - <p> - <input type="checkbox" name="MailOnUserCreate" value="MailOnUserCreate" id="CheckboxMailOnUserCreate" - class="checkbox" <?php if ($_['send_email'] === 'true') print_unescaped('checked="checked"'); ?> /> - <label for="CheckboxMailOnUserCreate"> - <?php p($l->t('Send email to new user')) ?> - </label> - </p> - <p> - <input type="checkbox" name="EmailAddress" value="EmailAddress" id="CheckboxEmailAddress" - class="checkbox" <?php if ($_['show_email'] === 'true') print_unescaped('checked="checked"'); ?> /> - <label for="CheckboxEmailAddress"> - <?php p($l->t('Show email address')) ?> - </label> - </p> - </div> - </div> - </div> -</div> - -<div id="app-content"> - <?php print_unescaped($this->inc('users/part.createuser')); ?> - <?php print_unescaped($this->inc('users/part.userlist', $userlistParams)); ?> -</div> diff --git a/settings/templates/users/part.createuser.php b/settings/templates/users/part.createuser.php deleted file mode 100644 index 0fc5a2bdeaa..00000000000 --- a/settings/templates/users/part.createuser.php +++ /dev/null @@ -1,34 +0,0 @@ -<div id="controls"> - <form id="newuser" autocomplete="off"> - <input id="newusername" type="text" - placeholder="<?php p($l->t('Username'))?>" - autocomplete="off" autocapitalize="off" autocorrect="off" /> - <input - type="password" id="newuserpassword" - placeholder="<?php p($l->t('Password'))?>" - autocomplete="off" autocapitalize="off" autocorrect="off" /> - <input id="newemail" type="text" style="display:none" - placeholder="<?php p($l->t('E-Mail'))?>" - autocomplete="off" autocapitalize="off" autocorrect="off" /> - <select - class="groupsselect" id="newusergroups" data-placeholder="groups" - title="<?php p($l->t('Groups'))?>" 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> - <input type="submit" class="button" value="<?php p($l->t('Create'))?>" /> - </form> - <?php if((bool)$_['recoveryAdminEnabled']): ?> - <div class="recoveryPassword"> - <input id="recoveryPassword" - type="password" - placeholder="<?php p($l->t('Admin Recovery Password'))?>" - title="<?php p($l->t('Enter the recovery password in order to recover the users files during password change'))?>" - alt="<?php p($l->t('Enter the recovery password in order to recover the users files during password change'))?>"/> - </div> - <?php endif; ?> -</div> diff --git a/settings/templates/users/part.grouplist.php b/settings/templates/users/part.grouplist.php deleted file mode 100644 index cd6ac4a1e89..00000000000 --- a/settings/templates/users/part.grouplist.php +++ /dev/null @@ -1,54 +0,0 @@ -<ul id="usergrouplist" data-sort-groups="<?php p($_['sortGroups']); ?>"> - <!-- Add new group --> - <li id="newgroup-init"> - <a href="#"> - <span><?php p($l->t('Add Group'))?></span> - </a> - </li> - <li id="newgroup-form" style="display: none"> - <form> - <input type="text" id="newgroupname" placeholder="<?php p($l->t('Group')); ?>..." /> - <input type="submit" class="button icon-add svg" value="" /> - </form> - </li> - <!-- Everyone --> - <li id="everyonegroup" data-gid="_everyone" data-usercount="" class="isgroup"> - <a href="#"> - <span class="groupname"> - <?php p($l->t('Everyone')); ?> - </span> - </a> - <span class="utils"> - <span class="usercount" id="everyonecount"> - - </span> - </span> - </li> - - <!-- The Admin Group --> - <?php foreach($_["adminGroup"] as $adminGroup): ?> - <li data-gid="admin" data-usercount="<?php if($adminGroup['usercount'] > 0) { p($adminGroup['usercount']); } ?>" class="isgroup"> - <a href="#"><span class="groupname"><?php p($l->t('Admins')); ?></span></a> - <span class="utils"> - <span class="usercount"><?php if($adminGroup['usercount'] > 0) { p($adminGroup['usercount']); } ?></span> - </span> - </li> - <?php endforeach; ?> - - <!--List of Groups--> - <?php foreach($_["groups"] as $group): ?> - <li data-gid="<?php p($group['name']) ?>" data-usercount="<?php p($group['usercount']) ?>" class="isgroup"> - <a href="#" class="dorename"> - <span class="groupname"><?php p($group['name']); ?></span> - </a> - <span class="utils"> - <span class="usercount"><?php if($group['usercount'] > 0) { p($group['usercount']); } ?></span> - <?php if($_['isAdmin']): ?> - <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; ?> - </span> - </li> - <?php endforeach; ?> -</ul> diff --git a/settings/templates/users/part.setquota.php b/settings/templates/users/part.setquota.php deleted file mode 100644 index b58df49998a..00000000000 --- a/settings/templates/users/part.setquota.php +++ /dev/null @@ -1,34 +0,0 @@ -<div class="quota"> - <!-- Default storage --> - <span><?php p($l->t('Default Quota'));?></span> - <?php if((bool) $_['isAdmin']): ?> - <select id='default_quota' data-inputtitle="<?php p($l->t('Please enter storage quota (ex: "512 MB" or "12 GB")')) ?>" data-tipsy-gravity="s"> - <option <?php if($_['default_quota'] === 'none') print_unescaped('selected="selected"');?> value='none'> - <?php p($l->t('Unlimited'));?> - </option> - <?php foreach($_['quota_preset'] as $preset):?> - <?php if($preset !== 'default'):?> - <option <?php if($_['default_quota']==$preset) print_unescaped('selected="selected"');?> value='<?php p($preset);?>'> - <?php p($preset);?> - </option> - <?php endif;?> - <?php endforeach;?> - <?php if($_['defaultQuotaIsUserDefined']):?> - <option selected="selected" value='<?php p($_['default_quota']);?>'> - <?php p($_['default_quota']);?> - </option> - <?php endif;?> - <option data-new value='other'> - <?php p($l->t('Other'));?> - ... - </option> - </select> - <?php endif; ?> - <?php if((bool) !$_['isAdmin']): ?> - <select class='quota' disabled="disabled"> - <option selected="selected"> - <?php p($_['default_quota']);?> - </option> - </select> - <?php endif; ?> -</div> diff --git a/settings/templates/users/part.userlist.php b/settings/templates/users/part.userlist.php deleted file mode 100644 index 697d0f3f142..00000000000 --- a/settings/templates/users/part.userlist.php +++ /dev/null @@ -1,69 +0,0 @@ -<table id="userlist" class="hascontrols grid" data-groups="<?php p($_['allGroups']);?>"> - <thead> - <tr> - <?php if ($_['enableAvatars']): ?> - <th id="headerAvatar" scope="col"></th> - <?php endif; ?> - <th id="headerName" scope="col"><?php p($l->t('Username'))?></th> - <th id="headerDisplayName" scope="col"><?php p($l->t( 'Full Name' )); ?></th> - <th id="headerPassword" scope="col"><?php p($l->t( 'Password' )); ?></th> - <th class="mailAddress" scope="col"><?php p($l->t( 'Email' )); ?></th> - <th id="headerGroups" scope="col"><?php p($l->t( 'Groups' )); ?></th> - <?php if(is_array($_['subadmins']) || $_['subadmins']): ?> - <th id="headerSubAdmins" scope="col"><?php p($l->t('Group Admin for')); ?></th> - <?php endif;?> - <th id="headerQuota" scope="col"><?php p($l->t('Quota')); ?></th> - <th class="storageLocation" scope="col"><?php p($l->t('Storage Location')); ?></th> - <th class="userBackend" scope="col"><?php p($l->t('User Backend')); ?></th> - <th class="lastLogin" scope="col"><?php p($l->t('Last Login')); ?></th> - <th id="headerRemove"> </th> - </tr> - </thead> - <tbody> - <!-- 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> - <?php endif; ?> - <th class="name" scope="row"></th> - <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> - <td class="password"><span>●●●●●●●</span> <img class="svg action" - 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="mailAddress"><span></span><div class="loading-small hidden"></div> <img class="svg action" - src="<?php p(image_path('core', 'actions/rename.svg'))?>" - alt="<?php p($l->t('change email address'))?>" title="<?php p($l->t('change email address'))?>"/> - </td> - <td class="groups"></td> - <?php if(is_array($_['subadmins']) || $_['subadmins']): ?> - <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 value='default'> - <?php p($l->t('Default'));?> - </option> - <option value='none'> - <?php p($l->t('Unlimited'));?> - </option> - <?php foreach($_['quota_preset'] as $preset):?> - <option value='<?php p($preset);?>'> - <?php p($preset);?> - </option> - <?php endforeach;?> - <option value='other' data-new> - <?php p($l->t('Other'));?> ... - </option> - </select> - </td> - <td class="storageLocation"></td> - <td class="userBackend"></td> - <td class="lastLogin"></td> - <td class="remove"></td> - </tr> - </tbody> -</table> diff --git a/settings/tests/js/appsSpec.js b/settings/tests/js/appsSpec.js deleted file mode 100644 index d2ca1fb5c8b..00000000000 --- a/settings/tests/js/appsSpec.js +++ /dev/null @@ -1,245 +0,0 @@ -/** -* ownCloud -* -* @author Vincent Petry -* @copyright 2015 Vincent Petry <pvince81@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/>. -* -*/ - -describe('OC.Settings.Apps tests', function() { - var Apps; - - beforeEach(function() { - var $el = $('<div id="apps-list"></div>' + - '<div id="apps-list-empty" class="hidden"></div>' + - '<div id="app-template">' + - // dummy template for testing - '<div id="app-{{id}}" data-id="{{id}}" class="section">{{name}}</div>' + - '</div>' - ); - $('#testArea').append($el); - - Apps = OC.Settings.Apps; - }); - afterEach(function() { - Apps.State.apps = null; - Apps.State.currentCategory = null; - }); - - describe('Filtering apps', function() { - var oldApps; - - function loadApps(appList) { - Apps.State.apps = appList; - - _.each(appList, function(appSpec) { - Apps.renderApp(appSpec); - }); - } - - function getResultsFromDom() { - var results = []; - $('#apps-list .section:not(.hidden)').each(function() { - results.push($(this).attr('data-id')); - }); - return results; - } - - beforeEach(function() { - loadApps([ - {id: 'appone', name: 'App One', description: 'The first app', author: 'author1', level: 200}, - {id: 'apptwo', name: 'App Two', description: 'The second app', author: 'author2', level: 100}, - {id: 'appthree', name: 'App Three', description: 'Third app', author: 'author3', level: 0}, - {id: 'somestuff', name: 'Some Stuff', description: 'whatever', author: 'author4', level: 0} - ]); - }); - - it('returns no results when query does not match anything', function() { - expect(getResultsFromDom().length).toEqual(4); - expect($('#apps-list:not(.hidden)').length).toEqual(1); - expect($('#apps-list-empty:not(.hidden)').length).toEqual(0); - - Apps.filter('absurdity'); - expect(getResultsFromDom().length).toEqual(0); - expect($('#apps-list:not(.hidden)').length).toEqual(0); - expect($('#apps-list-empty:not(.hidden)').length).toEqual(1); - - Apps.filter(''); - expect(getResultsFromDom().length).toEqual(4); - expect($('#apps-list:not(.hidden)').length).toEqual(1); - expect($('#apps-list-empty:not(.hidden)').length).toEqual(0); - expect(getResultsFromDom().length).toEqual(4); - }); - it('returns relevant results when query matches name', function() { - expect($('#apps-list:not(.hidden)').length).toEqual(1); - expect($('#apps-list-empty:not(.hidden)').length).toEqual(0); - - var results; - Apps.filter('app'); - results = getResultsFromDom(); - expect(results.length).toEqual(3); - expect(results[0]).toEqual('appone'); - expect(results[1]).toEqual('apptwo'); - expect(results[2]).toEqual('appthree'); - - expect($('#apps-list:not(.hidden)').length).toEqual(1); - expect($('#apps-list-empty:not(.hidden)').length).toEqual(0); - }); - it('returns relevant result when query matches name', function() { - var results; - Apps.filter('TWO'); - results = getResultsFromDom(); - expect(results.length).toEqual(1); - expect(results[0]).toEqual('apptwo'); - }); - it('returns relevant result when query matches description', function() { - var results; - Apps.filter('ever'); - results = getResultsFromDom(); - expect(results.length).toEqual(1); - expect(results[0]).toEqual('somestuff'); - }); - it('returns relevant results when query matches author name', function() { - var results; - Apps.filter('author'); - results = getResultsFromDom(); - expect(results.length).toEqual(4); - expect(results[0]).toEqual('appone'); - expect(results[1]).toEqual('apptwo'); - expect(results[2]).toEqual('appthree'); - expect(results[3]).toEqual('somestuff'); - }); - it('returns relevant result when query matches author name', function() { - var results; - Apps.filter('thor3'); - results = getResultsFromDom(); - expect(results.length).toEqual(1); - expect(results[0]).toEqual('appthree'); - }); - it('returns relevant result when query matches level name', function() { - var results; - Apps.filter('Offic'); - results = getResultsFromDom(); - expect(results.length).toEqual(1); - expect(results[0]).toEqual('appone'); - }); - it('returns relevant result when query matches level name', function() { - var results; - Apps.filter('Appro'); - results = getResultsFromDom(); - expect(results.length).toEqual(1); - expect(results[0]).toEqual('apptwo'); - }); - it('returns relevant result when query matches level name', function() { - var results; - Apps.filter('Exper'); - results = getResultsFromDom(); - expect(results.length).toEqual(2); - expect(results[0]).toEqual('appthree'); - expect(results[1]).toEqual('somestuff'); - }); - }); - - describe('loading categories', function() { - var suite = this; - - beforeEach( function(){ - suite.server = sinon.fakeServer.create(); - }); - - afterEach( function(){ - suite.server.restore(); - }); - - function getResultsFromDom() { - var results = []; - $('#apps-list .section:not(.hidden)').each(function() { - results.push($(this).attr('data-id')); - }); - return results; - } - - it('sorts all applications using the level', function() { - Apps.loadCategory('TestId'); - - suite.server.requests[0].respond( - 200, - { - 'Content-Type': 'application/json' - }, - JSON.stringify({ - apps: [ - { - id: 'foo', - name: 'Foo app', - level: 0 - }, - { - id: 'alpha', - name: 'Alpha app', - level: 300 - }, - { - id: 'nolevel', - name: 'No level' - }, - { - id: 'zork', - name: 'Some famous adventure game', - level: 200 - }, - { - id: 'delta', - name: 'Mathematical symbol', - level: 200 - } - ] - }) - ); - - var results = getResultsFromDom(); - expect(results.length).toEqual(5); - expect(results).toEqual(['alpha', 'delta', 'zork', 'foo', 'nolevel']); - expect(OC.Settings.Apps.State.apps).toEqual({ - 'foo': { - id: 'foo', - name: 'Foo app', - level: 0 - }, - 'alpha': { - id: 'alpha', - name: 'Alpha app', - level: 300 - }, - 'nolevel': { - id: 'nolevel', - name: 'No level' - }, - 'zork': { - id: 'zork', - name: 'Some famous adventure game', - level: 200 - }, - 'delta': { - id: 'delta', - name: 'Mathematical symbol', - level: 200 - } - }); - }); - }); - -}); diff --git a/settings/tests/js/users/deleteHandlerSpec.js b/settings/tests/js/users/deleteHandlerSpec.js deleted file mode 100644 index 371eae5941d..00000000000 --- a/settings/tests/js/users/deleteHandlerSpec.js +++ /dev/null @@ -1,206 +0,0 @@ -/** -* ownCloud -* -* @author Vincent Petry -* @copyright 2014 Vincent Petry <pvince81@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/>. -* -*/ - -describe('DeleteHandler tests', function() { - var showNotificationSpy; - var hideNotificationSpy; - var clock; - var removeCallback; - var markCallback; - var undoCallback; - - function init(markCallback, removeCallback, undoCallback) { - var handler = new DeleteHandler('dummyendpoint.php', 'paramid', markCallback, removeCallback); - handler.setNotification(OC.Notification, 'dataid', 'removed %oid entry', undoCallback); - return handler; - } - - beforeEach(function() { - showNotificationSpy = sinon.spy(OC.Notification, 'showHtml'); - hideNotificationSpy = sinon.spy(OC.Notification, 'hide'); - clock = sinon.useFakeTimers(); - removeCallback = sinon.stub(); - markCallback = sinon.stub(); - undoCallback = sinon.stub(); - - $('#testArea').append('<div id="notification"></div>'); - }); - afterEach(function() { - showNotificationSpy.restore(); - hideNotificationSpy.restore(); - clock.restore(); - }); - it('shows a notification when marking for delete', function() { - var handler = init(markCallback, removeCallback, undoCallback); - handler.mark('some_uid'); - - expect(showNotificationSpy.calledOnce).toEqual(true); - expect(showNotificationSpy.getCall(0).args[0]).toEqual('removed some_uid entry'); - - expect(markCallback.calledOnce).toEqual(true); - expect(markCallback.getCall(0).args[0]).toEqual('some_uid'); - expect(removeCallback.notCalled).toEqual(true); - expect(undoCallback.notCalled).toEqual(true); - - expect(fakeServer.requests.length).toEqual(0); - }); - it('deletes first entry and reshows notification on second delete', function() { - fakeServer.respondWith(/\/index\.php\/dummyendpoint.php\/some_uid/, [ - 204, - { 'Content-Type': 'application/json' }, - JSON.stringify({status: 'success'}) - ]); - fakeServer.respondWith(/\/index\.php\/dummyendpoint.php\/some_other_uid/, [ - 204, - { 'Content-Type': 'application/json' }, - JSON.stringify({status: 'success'}) - ]); - - var handler = init(markCallback, removeCallback, undoCallback); - handler.mark('some_uid'); - - expect(showNotificationSpy.calledOnce).toEqual(true); - expect(showNotificationSpy.getCall(0).args[0]).toEqual('removed some_uid entry'); - showNotificationSpy.reset(); - - handler.mark('some_other_uid'); - - expect(hideNotificationSpy.calledOnce).toEqual(true); - expect(showNotificationSpy.calledOnce).toEqual(true); - expect(showNotificationSpy.getCall(0).args[0]).toEqual('removed some_other_uid entry'); - - expect(markCallback.calledTwice).toEqual(true); - expect(markCallback.getCall(0).args[0]).toEqual('some_uid'); - expect(markCallback.getCall(1).args[0]).toEqual('some_other_uid'); - // called only once, because it is called once the second user is deleted - expect(removeCallback.calledOnce).toEqual(true); - expect(undoCallback.notCalled).toEqual(true); - - // previous one was delete - expect(fakeServer.requests.length).toEqual(1); - var request = fakeServer.requests[0]; - expect(request.url).toEqual(OC.webroot + '/index.php/dummyendpoint.php/some_uid'); - }); - it('automatically deletes after timeout', function() { - fakeServer.respondWith(/\/index\.php\/dummyendpoint.php\/some_uid/, [ - 204, - { 'Content-Type': 'application/json' }, - JSON.stringify({status: 'success'}) - ]); - - var handler = init(markCallback, removeCallback, undoCallback); - handler.mark('some_uid'); - - clock.tick(5000); - // nothing happens yet - expect(fakeServer.requests.length).toEqual(0); - - clock.tick(3000); - expect(fakeServer.requests.length).toEqual(1); - var request = fakeServer.requests[0]; - expect(request.url).toEqual(OC.webroot + '/index.php/dummyendpoint.php/some_uid'); - }); - it('deletes when deleteEntry is called', function() { - fakeServer.respondWith(/\/index\.php\/dummyendpoint.php\/some_uid/, [ - 200, - { 'Content-Type': 'application/json' }, - JSON.stringify({status: 'success'}) - ]); - var handler = init(markCallback, removeCallback, undoCallback); - handler.mark('some_uid'); - - handler.deleteEntry(); - expect(fakeServer.requests.length).toEqual(1); - var request = fakeServer.requests[0]; - 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); - handler.setNotification(OC.Notification, 'dataid', 'removed %oid entry <span class="undo">Undo</span>', undoCallback); - handler.mark('some_uid'); - $('#notification .undo').click(); - - expect(undoCallback.calledOnce).toEqual(true); - - // timer was cancelled - clock.tick(10000); - expect(fakeServer.requests.length).toEqual(0); - }); - it('cancels deletion when cancel method is called', function() { - var handler = init(markCallback, removeCallback, undoCallback); - handler.setNotification(OC.Notification, 'dataid', 'removed %oid entry <span class="undo">Undo</span>', undoCallback); - handler.mark('some_uid'); - handler.cancel(); - - // not sure why, seems to be by design - expect(undoCallback.notCalled).toEqual(true); - - // timer was cancelled - clock.tick(10000); - expect(fakeServer.requests.length).toEqual(0); - }); - it('calls removeCallback after successful server side deletion', function() { - fakeServer.respondWith(/\/index\.php\/dummyendpoint.php\/some_uid/, [ - 200, - { 'Content-Type': 'application/json' }, - JSON.stringify({status: 'success'}) - ]); - - var handler = init(markCallback, removeCallback, undoCallback); - handler.mark('some_uid'); - handler.deleteEntry(); - - expect(fakeServer.requests.length).toEqual(1); - var request = fakeServer.requests[0]; - var query = OC.parseQueryString(request.requestBody); - - expect(removeCallback.calledOnce).toEqual(true); - expect(undoCallback.notCalled).toEqual(true); - expect(removeCallback.getCall(0).args[0]).toEqual('some_uid'); - }); - 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\/dummyendpoint.php\/some_uid/, [ - 403, - { 'Content-Type': 'application/json' }, - JSON.stringify({status: 'error', data: {message: 'test error'}}) - ]); - - var alertDialogStub = sinon.stub(OC.dialogs, 'alert'); - var handler = init(markCallback, removeCallback, undoCallback); - handler.mark('some_uid'); - handler.deleteEntry(); - - expect(fakeServer.requests.length).toEqual(1); - var request = fakeServer.requests[0]; - var query = OC.parseQueryString(request.requestBody); - - expect(removeCallback.notCalled).toEqual(true); - expect(undoCallback.calledOnce).toEqual(true); - expect(undoCallback.getCall(0).args[0]).toEqual('some_uid'); - - expect(alertDialogStub.calledOnce); - - alertDialogStub.restore(); - tStub.restore(); - }); -}); diff --git a/settings/users.php b/settings/users.php deleted file mode 100644 index 347cad21a2b..00000000000 --- a/settings/users.php +++ /dev/null @@ -1,128 +0,0 @@ -<?php -/** - * @author Arthur Schiwon <blizzz@owncloud.com> - * @author Bart Visscher <bartv@thisnet.nl> - * @author Björn Schießle <schiessle@owncloud.com> - * @author Clark Tomlinson <fallen013@gmail.com> - * @author Daniel Molkentin <daniel@molkentin.de> - * @author Georg Ehrke <georg@owncloud.com> - * @author Jakob Sack <mail@jakobsack.de> - * @author Joas Schilling <nickvergessen@owncloud.com> - * @author Jörn Friedrich Dreyer <jfd@butonic.de> - * @author Lukas Reschke <lukas@owncloud.com> - * @author Morris Jobke <hey@morrisjobke.de> - * @author Robin Appelman <icewind@owncloud.com> - * @author Robin McCorkell <robin@mccorkell.me.uk> - * @author Roeland Jago Douma <rullzer@owncloud.com> - * @author Stephan Peijnik <speijnik@anexia-it.com> - * @author Thomas Müller <thomas.mueller@tmit.eu> - * - * @copyright Copyright (c) 2016, ownCloud, Inc. - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * This program 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, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * - */ - -OC_Util::checkSubAdminUser(); - -\OC::$server->getNavigationManager()->setActiveEntry('core_users'); - -$userManager = \OC::$server->getUserManager(); -$groupManager = \OC_Group::getManager(); - -// Set the sort option: SORT_USERCOUNT or SORT_GROUPNAME -$sortGroupsBy = \OC\Group\MetaData::SORT_USERCOUNT; - -if (\OC_App::isEnabled('user_ldap')) { - $isLDAPUsed = - $groupManager->isBackendUsed('\OCA\user_ldap\GROUP_LDAP') - || $groupManager->isBackendUsed('\OCA\user_ldap\Group_Proxy'); - if ($isLDAPUsed) { - // LDAP user count can be slow, so we sort by group name here - $sortGroupsBy = \OC\Group\MetaData::SORT_GROUPNAME; - } -} - -$config = \OC::$server->getConfig(); - -$isAdmin = OC_User::isAdminUser(OC_User::getUser()); - -$groupsInfo = new \OC\Group\MetaData( - OC_User::getUser(), - $isAdmin, - $groupManager, - \OC::$server->getUserSession() -); -$groupsInfo->setSorting($sortGroupsBy); -list($adminGroup, $groups) = $groupsInfo->get(); - -$recoveryAdminEnabled = OC_App::isEnabled('encryption') && - $config->getAppValue( 'encryption', 'recoveryAdminEnabled', null ); - -if($isAdmin) { - $subAdmins = \OC::$server->getGroupManager()->getSubAdmin()->getAllSubAdmins(); - // New class returns IUser[] so convert back - $result = []; - foreach ($subAdmins as $subAdmin) { - $result[] = [ - 'gid' => $subAdmin['group']->getGID(), - 'uid' => $subAdmin['user']->getUID(), - ]; - } - $subAdmins = $result; -}else{ - /* Retrieve group IDs from $groups array, so we can pass that information into OC_Group::displayNamesInGroups() */ - $gids = array(); - foreach($groups as $group) { - if (isset($group['id'])) { - $gids[] = $group['id']; - } - } - $subAdmins = false; -} - -// load preset quotas -$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=$config->getAppValue('files', 'default_quota', 'none'); -$defaultQuotaIsUserDefined=array_search($defaultQuota, $quotaPreset)===false - && array_search($defaultQuota, array('none', 'default'))===false; - -\OC::$server->getEventDispatcher()->dispatch('OC\Settings\Users::loadAdditionalScripts'); - -$tmpl = new OC_Template("settings", "users/main", "user"); -$tmpl->assign('groups', $groups); -$tmpl->assign('sortGroups', $sortGroupsBy); -$tmpl->assign('adminGroup', $adminGroup); -$tmpl->assign('isAdmin', (int)$isAdmin); -$tmpl->assign('subadmins', $subAdmins); -$tmpl->assign('numofgroups', count($groups) + count($adminGroup)); -$tmpl->assign('quota_preset', $quotaPreset); -$tmpl->assign('default_quota', $defaultQuota); -$tmpl->assign('defaultQuotaIsUserDefined', $defaultQuotaIsUserDefined); -$tmpl->assign('recoveryAdminEnabled', $recoveryAdminEnabled); -$tmpl->assign('enableAvatars', \OC::$server->getConfig()->getSystemValue('enable_avatars', true) === true); - -$tmpl->assign('show_storage_location', $config->getAppValue('core', 'umgmt_show_storage_location', 'false')); -$tmpl->assign('show_last_login', $config->getAppValue('core', 'umgmt_show_last_login', 'false')); -$tmpl->assign('show_email', $config->getAppValue('core', 'umgmt_show_email', 'false')); -$tmpl->assign('show_backend', $config->getAppValue('core', 'umgmt_show_backend', 'false')); -$tmpl->assign('send_email', $config->getAppValue('core', 'umgmt_send_email', 'false')); - -$tmpl->printPage(); |