diff --git a/.gitignore b/.gitignore index 2274c17f8df..a61b1858e11 100644 --- a/.gitignore +++ b/.gitignore @@ -13,7 +13,6 @@ # ignore all apps except core ones /apps*/* -!/apps/accessibility !/apps/cloud_federation_api !/apps/comments !/apps/contactsinteraction diff --git a/.tx/config b/.tx/config index b8a030f7a3b..828b643d435 100644 --- a/.tx/config +++ b/.tx/config @@ -128,12 +128,6 @@ source_file = translationfiles/templates/workflowengine.pot source_lang = en type = PO -[nextcloud.accessibility] -file_filter = translationfiles//accessibility.po -source_file = translationfiles/templates/accessibility.pot -source_lang = en -type = PO - [nextcloud.provisioning_api] file_filter = translationfiles//provisioning_api.po source_file = translationfiles/templates/provisioning_api.pot diff --git a/apps/accessibility/.editorconfig b/apps/accessibility/.editorconfig deleted file mode 100644 index 198996b96fb..00000000000 --- a/apps/accessibility/.editorconfig +++ /dev/null @@ -1,9 +0,0 @@ -root = true - -[*] -charset = utf-8 -indent_style = tab -indent_size = 4 -end_of_line = lf -insert_final_newline = true -trim_trailing_whitespace = true diff --git a/apps/accessibility/.gitignore b/apps/accessibility/.gitignore deleted file mode 100644 index a0446a54854..00000000000 --- a/apps/accessibility/.gitignore +++ /dev/null @@ -1,12 +0,0 @@ -.DS_Store -node_modules/ -dist/ -npm-debug.log -yarn-error.log - -# Editor directories and files -.idea -*.suo -*.ntvs* -*.njsproj -*.sln diff --git a/apps/accessibility/.jshintrc b/apps/accessibility/.jshintrc deleted file mode 100644 index fc024bea970..00000000000 --- a/apps/accessibility/.jshintrc +++ /dev/null @@ -1,3 +0,0 @@ -{ - "esversion": 6 -} diff --git a/apps/accessibility/.l10nignore b/apps/accessibility/.l10nignore deleted file mode 100644 index 0844b0dde59..00000000000 --- a/apps/accessibility/.l10nignore +++ /dev/null @@ -1,2 +0,0 @@ -# compiled vue templates -js/ diff --git a/apps/accessibility/Makefile b/apps/accessibility/Makefile deleted file mode 100644 index fcc49a13421..00000000000 --- a/apps/accessibility/Makefile +++ /dev/null @@ -1,26 +0,0 @@ -all: dev-setup build-js-production - -dev-setup: clean clean-dev npm-init - -npm-init: - npm install - -npm-update: - npm update - -build-js: - npm run dev - -build-js-production: - npm run build - -watch-js: - npm run watch - -clean: - rm -f js/accessibility.js - rm -f js/accessibility.js.map - -clean-dev: - rm -rf node_modules - diff --git a/apps/accessibility/README.md b/apps/accessibility/README.md deleted file mode 100644 index c9713ff5c07..00000000000 --- a/apps/accessibility/README.md +++ /dev/null @@ -1,22 +0,0 @@ -# Accessibility ♿ - -> This app provide multiple features to ease the use of nextcloud. - -## Build Setup - -``` bash -# install dependencies -make dev-setup - -# build for development -make build-js - -# build for development and watch edits -make watch-js - -# build for production with minification -make build-js-production - -# clean output files -make clean -``` diff --git a/apps/accessibility/appinfo/info.xml b/apps/accessibility/appinfo/info.xml deleted file mode 100644 index bdb98a2b174..00000000000 --- a/apps/accessibility/appinfo/info.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - accessibility - Accessibility - Accessibility options for nextcloud - - 1.11.0 - agpl - John Molakvoæ - Accessibility - - - customization - - https://github.com/nextcloud/server/issues - - - - - - - - OCA\Accessibility\Migration\RepairUserConfig - - - - - OCA\Accessibility\Settings\Personal - OCA\Accessibility\Settings\PersonalSection - - diff --git a/apps/accessibility/appinfo/routes.php b/apps/accessibility/appinfo/routes.php deleted file mode 100644 index 1774566809b..00000000000 --- a/apps/accessibility/appinfo/routes.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * @author Alexey Pyltsyn - * @author Christoph Wurst - * @author John Molakvoæ - * @author Julius Härtl - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * 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 - * along with this program. If not, see . - * - */ -return [ - 'routes' => [ - ['name' => 'accessibility#getCss', 'url' => '/css/user-{md5}', 'verb' => 'GET'], - ], - 'ocs' => [ - [ - 'name' => 'Config#getConfig', - 'url' => '/api/v1/config', - 'verb' => 'GET', - ], - [ - 'name' => 'Config#setConfig', - 'url' => '/api/v1/config/{key}', - 'verb' => 'PUT', - ], - [ - 'name' => 'Config#deleteConfig', - 'url' => '/api/v1/config/{key}', - 'verb' => 'DELETE', - ], - ] -]; diff --git a/apps/accessibility/composer/autoload.php b/apps/accessibility/composer/autoload.php deleted file mode 100644 index 6f896b45abc..00000000000 --- a/apps/accessibility/composer/autoload.php +++ /dev/null @@ -1,12 +0,0 @@ - - * Jordi Boggiano - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Composer\Autoload; - -/** - * ClassLoader implements a PSR-0, PSR-4 and classmap class loader. - * - * $loader = new \Composer\Autoload\ClassLoader(); - * - * // register classes with namespaces - * $loader->add('Symfony\Component', __DIR__.'/component'); - * $loader->add('Symfony', __DIR__.'/framework'); - * - * // activate the autoloader - * $loader->register(); - * - * // to enable searching the include path (eg. for PEAR packages) - * $loader->setUseIncludePath(true); - * - * In this example, if you try to use a class in the Symfony\Component - * namespace or one of its children (Symfony\Component\Console for instance), - * the autoloader will first look for the class under the component/ - * directory, and it will then fallback to the framework/ directory if not - * found before giving up. - * - * This class is loosely based on the Symfony UniversalClassLoader. - * - * @author Fabien Potencier - * @author Jordi Boggiano - * @see https://www.php-fig.org/psr/psr-0/ - * @see https://www.php-fig.org/psr/psr-4/ - */ -class ClassLoader -{ - /** @var ?string */ - private $vendorDir; - - // PSR-4 - /** - * @var array[] - * @psalm-var array> - */ - private $prefixLengthsPsr4 = array(); - /** - * @var array[] - * @psalm-var array> - */ - private $prefixDirsPsr4 = array(); - /** - * @var array[] - * @psalm-var array - */ - private $fallbackDirsPsr4 = array(); - - // PSR-0 - /** - * @var array[] - * @psalm-var array> - */ - private $prefixesPsr0 = array(); - /** - * @var array[] - * @psalm-var array - */ - private $fallbackDirsPsr0 = array(); - - /** @var bool */ - private $useIncludePath = false; - - /** - * @var string[] - * @psalm-var array - */ - private $classMap = array(); - - /** @var bool */ - private $classMapAuthoritative = false; - - /** - * @var bool[] - * @psalm-var array - */ - private $missingClasses = array(); - - /** @var ?string */ - private $apcuPrefix; - - /** - * @var self[] - */ - private static $registeredLoaders = array(); - - /** - * @param ?string $vendorDir - */ - public function __construct($vendorDir = null) - { - $this->vendorDir = $vendorDir; - } - - /** - * @return string[] - */ - public function getPrefixes() - { - if (!empty($this->prefixesPsr0)) { - return call_user_func_array('array_merge', array_values($this->prefixesPsr0)); - } - - return array(); - } - - /** - * @return array[] - * @psalm-return array> - */ - public function getPrefixesPsr4() - { - return $this->prefixDirsPsr4; - } - - /** - * @return array[] - * @psalm-return array - */ - public function getFallbackDirs() - { - return $this->fallbackDirsPsr0; - } - - /** - * @return array[] - * @psalm-return array - */ - public function getFallbackDirsPsr4() - { - return $this->fallbackDirsPsr4; - } - - /** - * @return string[] Array of classname => path - * @psalm-return array - */ - public function getClassMap() - { - return $this->classMap; - } - - /** - * @param string[] $classMap Class to filename map - * @psalm-param array $classMap - * - * @return void - */ - public function addClassMap(array $classMap) - { - if ($this->classMap) { - $this->classMap = array_merge($this->classMap, $classMap); - } else { - $this->classMap = $classMap; - } - } - - /** - * Registers a set of PSR-0 directories for a given prefix, either - * appending or prepending to the ones previously set for this prefix. - * - * @param string $prefix The prefix - * @param string[]|string $paths The PSR-0 root directories - * @param bool $prepend Whether to prepend the directories - * - * @return void - */ - public function add($prefix, $paths, $prepend = false) - { - if (!$prefix) { - if ($prepend) { - $this->fallbackDirsPsr0 = array_merge( - (array) $paths, - $this->fallbackDirsPsr0 - ); - } else { - $this->fallbackDirsPsr0 = array_merge( - $this->fallbackDirsPsr0, - (array) $paths - ); - } - - return; - } - - $first = $prefix[0]; - if (!isset($this->prefixesPsr0[$first][$prefix])) { - $this->prefixesPsr0[$first][$prefix] = (array) $paths; - - return; - } - if ($prepend) { - $this->prefixesPsr0[$first][$prefix] = array_merge( - (array) $paths, - $this->prefixesPsr0[$first][$prefix] - ); - } else { - $this->prefixesPsr0[$first][$prefix] = array_merge( - $this->prefixesPsr0[$first][$prefix], - (array) $paths - ); - } - } - - /** - * Registers a set of PSR-4 directories for a given namespace, either - * appending or prepending to the ones previously set for this namespace. - * - * @param string $prefix The prefix/namespace, with trailing '\\' - * @param string[]|string $paths The PSR-4 base directories - * @param bool $prepend Whether to prepend the directories - * - * @throws \InvalidArgumentException - * - * @return void - */ - public function addPsr4($prefix, $paths, $prepend = false) - { - if (!$prefix) { - // Register directories for the root namespace. - if ($prepend) { - $this->fallbackDirsPsr4 = array_merge( - (array) $paths, - $this->fallbackDirsPsr4 - ); - } else { - $this->fallbackDirsPsr4 = array_merge( - $this->fallbackDirsPsr4, - (array) $paths - ); - } - } elseif (!isset($this->prefixDirsPsr4[$prefix])) { - // Register directories for a new namespace. - $length = strlen($prefix); - if ('\\' !== $prefix[$length - 1]) { - throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); - } - $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; - $this->prefixDirsPsr4[$prefix] = (array) $paths; - } elseif ($prepend) { - // Prepend directories for an already registered namespace. - $this->prefixDirsPsr4[$prefix] = array_merge( - (array) $paths, - $this->prefixDirsPsr4[$prefix] - ); - } else { - // Append directories for an already registered namespace. - $this->prefixDirsPsr4[$prefix] = array_merge( - $this->prefixDirsPsr4[$prefix], - (array) $paths - ); - } - } - - /** - * Registers a set of PSR-0 directories for a given prefix, - * replacing any others previously set for this prefix. - * - * @param string $prefix The prefix - * @param string[]|string $paths The PSR-0 base directories - * - * @return void - */ - public function set($prefix, $paths) - { - if (!$prefix) { - $this->fallbackDirsPsr0 = (array) $paths; - } else { - $this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths; - } - } - - /** - * Registers a set of PSR-4 directories for a given namespace, - * replacing any others previously set for this namespace. - * - * @param string $prefix The prefix/namespace, with trailing '\\' - * @param string[]|string $paths The PSR-4 base directories - * - * @throws \InvalidArgumentException - * - * @return void - */ - public function setPsr4($prefix, $paths) - { - if (!$prefix) { - $this->fallbackDirsPsr4 = (array) $paths; - } else { - $length = strlen($prefix); - if ('\\' !== $prefix[$length - 1]) { - throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); - } - $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; - $this->prefixDirsPsr4[$prefix] = (array) $paths; - } - } - - /** - * Turns on searching the include path for class files. - * - * @param bool $useIncludePath - * - * @return void - */ - public function setUseIncludePath($useIncludePath) - { - $this->useIncludePath = $useIncludePath; - } - - /** - * Can be used to check if the autoloader uses the include path to check - * for classes. - * - * @return bool - */ - public function getUseIncludePath() - { - return $this->useIncludePath; - } - - /** - * Turns off searching the prefix and fallback directories for classes - * that have not been registered with the class map. - * - * @param bool $classMapAuthoritative - * - * @return void - */ - public function setClassMapAuthoritative($classMapAuthoritative) - { - $this->classMapAuthoritative = $classMapAuthoritative; - } - - /** - * Should class lookup fail if not found in the current class map? - * - * @return bool - */ - public function isClassMapAuthoritative() - { - return $this->classMapAuthoritative; - } - - /** - * APCu prefix to use to cache found/not-found classes, if the extension is enabled. - * - * @param string|null $apcuPrefix - * - * @return void - */ - public function setApcuPrefix($apcuPrefix) - { - $this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null; - } - - /** - * The APCu prefix in use, or null if APCu caching is not enabled. - * - * @return string|null - */ - public function getApcuPrefix() - { - return $this->apcuPrefix; - } - - /** - * Registers this instance as an autoloader. - * - * @param bool $prepend Whether to prepend the autoloader or not - * - * @return void - */ - public function register($prepend = false) - { - spl_autoload_register(array($this, 'loadClass'), true, $prepend); - - if (null === $this->vendorDir) { - return; - } - - if ($prepend) { - self::$registeredLoaders = array($this->vendorDir => $this) + self::$registeredLoaders; - } else { - unset(self::$registeredLoaders[$this->vendorDir]); - self::$registeredLoaders[$this->vendorDir] = $this; - } - } - - /** - * Unregisters this instance as an autoloader. - * - * @return void - */ - public function unregister() - { - spl_autoload_unregister(array($this, 'loadClass')); - - if (null !== $this->vendorDir) { - unset(self::$registeredLoaders[$this->vendorDir]); - } - } - - /** - * Loads the given class or interface. - * - * @param string $class The name of the class - * @return true|null True if loaded, null otherwise - */ - public function loadClass($class) - { - if ($file = $this->findFile($class)) { - includeFile($file); - - return true; - } - - return null; - } - - /** - * Finds the path to the file where the class is defined. - * - * @param string $class The name of the class - * - * @return string|false The path if found, false otherwise - */ - public function findFile($class) - { - // class map lookup - if (isset($this->classMap[$class])) { - return $this->classMap[$class]; - } - if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) { - return false; - } - if (null !== $this->apcuPrefix) { - $file = apcu_fetch($this->apcuPrefix.$class, $hit); - if ($hit) { - return $file; - } - } - - $file = $this->findFileWithExtension($class, '.php'); - - // Search for Hack files if we are running on HHVM - if (false === $file && defined('HHVM_VERSION')) { - $file = $this->findFileWithExtension($class, '.hh'); - } - - if (null !== $this->apcuPrefix) { - apcu_add($this->apcuPrefix.$class, $file); - } - - if (false === $file) { - // Remember that this class does not exist. - $this->missingClasses[$class] = true; - } - - return $file; - } - - /** - * Returns the currently registered loaders indexed by their corresponding vendor directories. - * - * @return self[] - */ - public static function getRegisteredLoaders() - { - return self::$registeredLoaders; - } - - /** - * @param string $class - * @param string $ext - * @return string|false - */ - private function findFileWithExtension($class, $ext) - { - // PSR-4 lookup - $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext; - - $first = $class[0]; - if (isset($this->prefixLengthsPsr4[$first])) { - $subPath = $class; - while (false !== $lastPos = strrpos($subPath, '\\')) { - $subPath = substr($subPath, 0, $lastPos); - $search = $subPath . '\\'; - if (isset($this->prefixDirsPsr4[$search])) { - $pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1); - foreach ($this->prefixDirsPsr4[$search] as $dir) { - if (file_exists($file = $dir . $pathEnd)) { - return $file; - } - } - } - } - } - - // PSR-4 fallback dirs - foreach ($this->fallbackDirsPsr4 as $dir) { - if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) { - return $file; - } - } - - // PSR-0 lookup - if (false !== $pos = strrpos($class, '\\')) { - // namespaced class name - $logicalPathPsr0 = substr($logicalPathPsr4, 0, $pos + 1) - . strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR); - } else { - // PEAR-like class name - $logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext; - } - - if (isset($this->prefixesPsr0[$first])) { - foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) { - if (0 === strpos($class, $prefix)) { - foreach ($dirs as $dir) { - if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { - return $file; - } - } - } - } - } - - // PSR-0 fallback dirs - foreach ($this->fallbackDirsPsr0 as $dir) { - if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { - return $file; - } - } - - // PSR-0 include paths. - if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) { - return $file; - } - - return false; - } -} - -/** - * Scope isolated include. - * - * Prevents access to $this/self from included files. - * - * @param string $file - * @return void - * @private - */ -function includeFile($file) -{ - include $file; -} diff --git a/apps/accessibility/composer/composer/InstalledVersions.php b/apps/accessibility/composer/composer/InstalledVersions.php deleted file mode 100644 index 41bc143c114..00000000000 --- a/apps/accessibility/composer/composer/InstalledVersions.php +++ /dev/null @@ -1,352 +0,0 @@ - - * Jordi Boggiano - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Composer; - -use Composer\Autoload\ClassLoader; -use Composer\Semver\VersionParser; - -/** - * This class is copied in every Composer installed project and available to all - * - * See also https://getcomposer.org/doc/07-runtime.md#installed-versions - * - * To require its presence, you can require `composer-runtime-api ^2.0` - * - * @final - */ -class InstalledVersions -{ - /** - * @var mixed[]|null - * @psalm-var array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array}|array{}|null - */ - private static $installed; - - /** - * @var bool|null - */ - private static $canGetVendors; - - /** - * @var array[] - * @psalm-var array}> - */ - private static $installedByVendor = array(); - - /** - * Returns a list of all package names which are present, either by being installed, replaced or provided - * - * @return string[] - * @psalm-return list - */ - public static function getInstalledPackages() - { - $packages = array(); - foreach (self::getInstalled() as $installed) { - $packages[] = array_keys($installed['versions']); - } - - if (1 === \count($packages)) { - return $packages[0]; - } - - return array_keys(array_flip(\call_user_func_array('array_merge', $packages))); - } - - /** - * Returns a list of all package names with a specific type e.g. 'library' - * - * @param string $type - * @return string[] - * @psalm-return list - */ - public static function getInstalledPackagesByType($type) - { - $packagesByType = array(); - - foreach (self::getInstalled() as $installed) { - foreach ($installed['versions'] as $name => $package) { - if (isset($package['type']) && $package['type'] === $type) { - $packagesByType[] = $name; - } - } - } - - return $packagesByType; - } - - /** - * Checks whether the given package is installed - * - * This also returns true if the package name is provided or replaced by another package - * - * @param string $packageName - * @param bool $includeDevRequirements - * @return bool - */ - public static function isInstalled($packageName, $includeDevRequirements = true) - { - foreach (self::getInstalled() as $installed) { - if (isset($installed['versions'][$packageName])) { - return $includeDevRequirements || empty($installed['versions'][$packageName]['dev_requirement']); - } - } - - return false; - } - - /** - * Checks whether the given package satisfies a version constraint - * - * e.g. If you want to know whether version 2.3+ of package foo/bar is installed, you would call: - * - * Composer\InstalledVersions::satisfies(new VersionParser, 'foo/bar', '^2.3') - * - * @param VersionParser $parser Install composer/semver to have access to this class and functionality - * @param string $packageName - * @param string|null $constraint A version constraint to check for, if you pass one you have to make sure composer/semver is required by your package - * @return bool - */ - public static function satisfies(VersionParser $parser, $packageName, $constraint) - { - $constraint = $parser->parseConstraints($constraint); - $provided = $parser->parseConstraints(self::getVersionRanges($packageName)); - - return $provided->matches($constraint); - } - - /** - * Returns a version constraint representing all the range(s) which are installed for a given package - * - * It is easier to use this via isInstalled() with the $constraint argument if you need to check - * whether a given version of a package is installed, and not just whether it exists - * - * @param string $packageName - * @return string Version constraint usable with composer/semver - */ - public static function getVersionRanges($packageName) - { - foreach (self::getInstalled() as $installed) { - if (!isset($installed['versions'][$packageName])) { - continue; - } - - $ranges = array(); - if (isset($installed['versions'][$packageName]['pretty_version'])) { - $ranges[] = $installed['versions'][$packageName]['pretty_version']; - } - if (array_key_exists('aliases', $installed['versions'][$packageName])) { - $ranges = array_merge($ranges, $installed['versions'][$packageName]['aliases']); - } - if (array_key_exists('replaced', $installed['versions'][$packageName])) { - $ranges = array_merge($ranges, $installed['versions'][$packageName]['replaced']); - } - if (array_key_exists('provided', $installed['versions'][$packageName])) { - $ranges = array_merge($ranges, $installed['versions'][$packageName]['provided']); - } - - return implode(' || ', $ranges); - } - - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); - } - - /** - * @param string $packageName - * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as version, use satisfies or getVersionRanges if you need to know if a given version is present - */ - public static function getVersion($packageName) - { - foreach (self::getInstalled() as $installed) { - if (!isset($installed['versions'][$packageName])) { - continue; - } - - if (!isset($installed['versions'][$packageName]['version'])) { - return null; - } - - return $installed['versions'][$packageName]['version']; - } - - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); - } - - /** - * @param string $packageName - * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as version, use satisfies or getVersionRanges if you need to know if a given version is present - */ - public static function getPrettyVersion($packageName) - { - foreach (self::getInstalled() as $installed) { - if (!isset($installed['versions'][$packageName])) { - continue; - } - - if (!isset($installed['versions'][$packageName]['pretty_version'])) { - return null; - } - - return $installed['versions'][$packageName]['pretty_version']; - } - - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); - } - - /** - * @param string $packageName - * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as reference - */ - public static function getReference($packageName) - { - foreach (self::getInstalled() as $installed) { - if (!isset($installed['versions'][$packageName])) { - continue; - } - - if (!isset($installed['versions'][$packageName]['reference'])) { - return null; - } - - return $installed['versions'][$packageName]['reference']; - } - - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); - } - - /** - * @param string $packageName - * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as install path. Packages of type metapackages also have a null install path. - */ - public static function getInstallPath($packageName) - { - foreach (self::getInstalled() as $installed) { - if (!isset($installed['versions'][$packageName])) { - continue; - } - - return isset($installed['versions'][$packageName]['install_path']) ? $installed['versions'][$packageName]['install_path'] : null; - } - - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); - } - - /** - * @return array - * @psalm-return array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string} - */ - public static function getRootPackage() - { - $installed = self::getInstalled(); - - return $installed[0]['root']; - } - - /** - * Returns the raw installed.php data for custom implementations - * - * @deprecated Use getAllRawData() instead which returns all datasets for all autoloaders present in the process. getRawData only returns the first dataset loaded, which may not be what you expect. - * @return array[] - * @psalm-return array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array} - */ - public static function getRawData() - { - @trigger_error('getRawData only returns the first dataset loaded, which may not be what you expect. Use getAllRawData() instead which returns all datasets for all autoloaders present in the process.', E_USER_DEPRECATED); - - if (null === self::$installed) { - // only require the installed.php file if this file is loaded from its dumped location, - // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937 - if (substr(__DIR__, -8, 1) !== 'C') { - self::$installed = include __DIR__ . '/installed.php'; - } else { - self::$installed = array(); - } - } - - return self::$installed; - } - - /** - * Returns the raw data of all installed.php which are currently loaded for custom implementations - * - * @return array[] - * @psalm-return list}> - */ - public static function getAllRawData() - { - return self::getInstalled(); - } - - /** - * Lets you reload the static array from another file - * - * This is only useful for complex integrations in which a project needs to use - * this class but then also needs to execute another project's autoloader in process, - * and wants to ensure both projects have access to their version of installed.php. - * - * A typical case would be PHPUnit, where it would need to make sure it reads all - * the data it needs from this class, then call reload() with - * `require $CWD/vendor/composer/installed.php` (or similar) as input to make sure - * the project in which it runs can then also use this class safely, without - * interference between PHPUnit's dependencies and the project's dependencies. - * - * @param array[] $data A vendor/composer/installed.php data set - * @return void - * - * @psalm-param array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array} $data - */ - public static function reload($data) - { - self::$installed = $data; - self::$installedByVendor = array(); - } - - /** - * @return array[] - * @psalm-return list}> - */ - private static function getInstalled() - { - if (null === self::$canGetVendors) { - self::$canGetVendors = method_exists('Composer\Autoload\ClassLoader', 'getRegisteredLoaders'); - } - - $installed = array(); - - if (self::$canGetVendors) { - foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) { - if (isset(self::$installedByVendor[$vendorDir])) { - $installed[] = self::$installedByVendor[$vendorDir]; - } elseif (is_file($vendorDir.'/composer/installed.php')) { - $installed[] = self::$installedByVendor[$vendorDir] = require $vendorDir.'/composer/installed.php'; - if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) { - self::$installed = $installed[count($installed) - 1]; - } - } - } - } - - if (null === self::$installed) { - // only require the installed.php file if this file is loaded from its dumped location, - // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937 - if (substr(__DIR__, -8, 1) !== 'C') { - self::$installed = require __DIR__ . '/installed.php'; - } else { - self::$installed = array(); - } - } - $installed[] = self::$installed; - - return $installed; - } -} diff --git a/apps/accessibility/composer/composer/LICENSE b/apps/accessibility/composer/composer/LICENSE deleted file mode 100644 index f27399a042d..00000000000 --- a/apps/accessibility/composer/composer/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ - -Copyright (c) Nils Adermann, Jordi Boggiano - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is furnished -to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - diff --git a/apps/accessibility/composer/composer/autoload_classmap.php b/apps/accessibility/composer/composer/autoload_classmap.php deleted file mode 100644 index c54d05d6258..00000000000 --- a/apps/accessibility/composer/composer/autoload_classmap.php +++ /dev/null @@ -1,18 +0,0 @@ - $vendorDir . '/composer/InstalledVersions.php', - 'OCA\\Accessibility\\AccessibilityProvider' => $baseDir . '/../lib/AccessibilityProvider.php', - 'OCA\\Accessibility\\AppInfo\\Application' => $baseDir . '/../lib/AppInfo/Application.php', - 'OCA\\Accessibility\\Controller\\AccessibilityController' => $baseDir . '/../lib/Controller/AccessibilityController.php', - 'OCA\\Accessibility\\Controller\\ConfigController' => $baseDir . '/../lib/Controller/ConfigController.php', - 'OCA\\Accessibility\\Migration\\RepairUserConfig' => $baseDir . '/../lib/Migration/RepairUserConfig.php', - 'OCA\\Accessibility\\Service\\JSDataService' => $baseDir . '/../lib/Service/JSDataService.php', - 'OCA\\Accessibility\\Settings\\Personal' => $baseDir . '/../lib/Settings/Personal.php', - 'OCA\\Accessibility\\Settings\\PersonalSection' => $baseDir . '/../lib/Settings/PersonalSection.php', -); diff --git a/apps/accessibility/composer/composer/autoload_namespaces.php b/apps/accessibility/composer/composer/autoload_namespaces.php deleted file mode 100644 index 3f5c9296251..00000000000 --- a/apps/accessibility/composer/composer/autoload_namespaces.php +++ /dev/null @@ -1,9 +0,0 @@ - array($baseDir . '/../lib'), -); diff --git a/apps/accessibility/composer/composer/autoload_real.php b/apps/accessibility/composer/composer/autoload_real.php deleted file mode 100644 index 8b2b83d3139..00000000000 --- a/apps/accessibility/composer/composer/autoload_real.php +++ /dev/null @@ -1,37 +0,0 @@ -setClassMapAuthoritative(true); - $loader->register(true); - - return $loader; - } -} diff --git a/apps/accessibility/composer/composer/autoload_static.php b/apps/accessibility/composer/composer/autoload_static.php deleted file mode 100644 index a8e086a965a..00000000000 --- a/apps/accessibility/composer/composer/autoload_static.php +++ /dev/null @@ -1,44 +0,0 @@ - - array ( - 'OCA\\Accessibility\\' => 18, - ), - ); - - public static $prefixDirsPsr4 = array ( - 'OCA\\Accessibility\\' => - array ( - 0 => __DIR__ . '/..' . '/../lib', - ), - ); - - public static $classMap = array ( - 'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php', - 'OCA\\Accessibility\\AccessibilityProvider' => __DIR__ . '/..' . '/../lib/AccessibilityProvider.php', - 'OCA\\Accessibility\\AppInfo\\Application' => __DIR__ . '/..' . '/../lib/AppInfo/Application.php', - 'OCA\\Accessibility\\Controller\\AccessibilityController' => __DIR__ . '/..' . '/../lib/Controller/AccessibilityController.php', - 'OCA\\Accessibility\\Controller\\ConfigController' => __DIR__ . '/..' . '/../lib/Controller/ConfigController.php', - 'OCA\\Accessibility\\Migration\\RepairUserConfig' => __DIR__ . '/..' . '/../lib/Migration/RepairUserConfig.php', - 'OCA\\Accessibility\\Service\\JSDataService' => __DIR__ . '/..' . '/../lib/Service/JSDataService.php', - 'OCA\\Accessibility\\Settings\\Personal' => __DIR__ . '/..' . '/../lib/Settings/Personal.php', - 'OCA\\Accessibility\\Settings\\PersonalSection' => __DIR__ . '/..' . '/../lib/Settings/PersonalSection.php', - ); - - public static function getInitializer(ClassLoader $loader) - { - return \Closure::bind(function () use ($loader) { - $loader->prefixLengthsPsr4 = ComposerStaticInitAccessibility::$prefixLengthsPsr4; - $loader->prefixDirsPsr4 = ComposerStaticInitAccessibility::$prefixDirsPsr4; - $loader->classMap = ComposerStaticInitAccessibility::$classMap; - - }, null, ClassLoader::class); - } -} diff --git a/apps/accessibility/composer/composer/installed.json b/apps/accessibility/composer/composer/installed.json deleted file mode 100644 index f20a6c47c6d..00000000000 --- a/apps/accessibility/composer/composer/installed.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "packages": [], - "dev": false, - "dev-package-names": [] -} diff --git a/apps/accessibility/composer/composer/installed.php b/apps/accessibility/composer/composer/installed.php deleted file mode 100644 index 5440719fa40..00000000000 --- a/apps/accessibility/composer/composer/installed.php +++ /dev/null @@ -1,23 +0,0 @@ - array( - 'pretty_version' => 'dev-master', - 'version' => 'dev-master', - 'type' => 'library', - 'install_path' => __DIR__ . '/../', - 'aliases' => array(), - 'reference' => 'c6429e6cd19c57582364338362e543580821cf99', - 'name' => '__root__', - 'dev' => false, - ), - 'versions' => array( - '__root__' => array( - 'pretty_version' => 'dev-master', - 'version' => 'dev-master', - 'type' => 'library', - 'install_path' => __DIR__ . '/../', - 'aliases' => array(), - 'reference' => 'c6429e6cd19c57582364338362e543580821cf99', - 'dev_requirement' => false, - ), - ), -); diff --git a/apps/accessibility/css/dark.scss b/apps/accessibility/css/dark.scss deleted file mode 100644 index 6cced2997bc..00000000000 --- a/apps/accessibility/css/dark.scss +++ /dev/null @@ -1,112 +0,0 @@ -// SCSS variables -$color-main-text: #d8d8d8; -$color-main-background: #181818; - -$color-background-hover: lighten($color-main-background, 4%); -$color-background-dark: lighten($color-main-background, 7%); -$color-background-darker: lighten($color-main-background, 14%); - -$color-placeholder-light: lighten($color-main-background, 10%); -$color-placeholder-dark: lighten($color-main-background, 20%); - -$color-text-maxcontrast: darken($color-main-text, 30%); -$color-text-light: darken($color-main-text, 10%); -$color-text-lighter: darken($color-main-text, 20%); - -$color-loading-light: #777; -$color-loading-dark: #ccc; - -$color-box-shadow: transparentize(darken($color-main-background, 70%), 0.5); - -$color-border: lighten($color-main-background, 7%); -$color-border-dark: lighten($color-main-background, 14%); - -$image-logo: url('../../../core/img/logo/logo.svg?v=1'); -$image-logoheader: url('../../../core/img/logo/logo.svg?v=1'); - -#app-navigation > ul > li > a:first-child, -#app-navigation > ul > li > ul > li > a:first-child, -#contactsmenu-menu a, -#expanddiv a, -.activity-section .activity-icon.monochrome { - & > img, - :not(.avatardiv) > img { - filter: invert(100%); - } -} - -#navigation #apps li a, -#body-settings #content-vue.app-settings .app-image-icon, -#body-settings #content-vue.app-settings #app-sidebar #app-details-view h2 { - svg { - filter: invert(100%); - } -} - -// Otherwise icon-more gets inverted via function -#appmenu .icon-more-white { - filter: invert(100%); -} - -// since svg icons are inverted, revert to white for the header -.header-right > * { - >[class^='icon-'] { - filter: invert(100%); - } -} - -.bubble, -.app-navigation-entry-menu, -.popovermenu, -.popover__menu { - li { - > button, - > a, - > .menuitem, > .popover__menuitem { - > img { - filter: invert(100%); - } - } - } -} -.bubble, -.app-navigation-entry-menu, -.popovermenu, -#header .menu { - border: 1px solid var(--color-border); -} - -.popover[x-placement^='top'] .popover__arrow { - border-top-color: var(--color-border); -} -.popover[x-placement^='bottom'] .popover__arrow { - border-bottom-color: var(--color-border); -} -.popover[x-placement^='left'] .popover__arrow { - border-left-color: var(--color-border); -} -.popover[x-placement^='right'] .popover__arrow { - border-right-color: var(--color-border); -} -.popover .popover__inner { - border: 1px solid var(--color-border); -} - -// Prevent slideshow icons from going dark -#slideshow { - [class^='icon-'], [class*=' icon-']{ - filter: invert(100%); - } -} - -input[type=checkbox] { - &.checkbox { - &:checked + label:before { - background-image: url('../../../core/img/actions/checkbox-mark-dark.svg'); - } - - &:indeterminate + label:before { - background-image: url('../../../core/img/actions/checkbox-mixed-dark.svg'); - } - } -} diff --git a/apps/accessibility/css/fontdyslexic.scss b/apps/accessibility/css/fontdyslexic.scss deleted file mode 100644 index 647509bf2dc..00000000000 --- a/apps/accessibility/css/fontdyslexic.scss +++ /dev/null @@ -1,18 +0,0 @@ -@font-face { - font-family: 'OpenDyslexic'; - font-style: normal; - font-weight: 400; - src: url('../fonts/OpenDyslexic-Regular.woff') format('woff'); -} - -@font-face { - font-family: 'OpenDyslexic'; - font-style: normal; - font-weight: 700; - src: url('../fonts/OpenDyslexic-Bold.woff') format('woff'); -} - -$font-face: OpenDyslexic, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Cantarell, Ubuntu, 'Helvetica Neue', Arial, 'Noto Color Emoji', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; - -$image-logo: url('../../../core/img/logo/logo.svg?v=1'); -$image-logoheader: url('../../../core/img/logo/logo.svg?v=1'); diff --git a/apps/accessibility/css/highcontrast.scss b/apps/accessibility/css/highcontrast.scss deleted file mode 100644 index a1b14abec33..00000000000 --- a/apps/accessibility/css/highcontrast.scss +++ /dev/null @@ -1,31 +0,0 @@ -// SCSS variables -$color-main-text: #000; -$color-main-background: #fff; - -$color-background-dark: darken($color-main-background, 30%); -$color-background-darker: darken($color-main-background, 30%); - -$color-placeholder-light: darken($color-main-background, 30%); -$color-placeholder-dark: darken($color-main-background, 45%); - -$color-text-maxcontrast: $color-main-text; -$color-text-light: $color-main-text; -$color-text-lighter: $color-main-text; - -$color-loading-light: #ddd; -$color-loading-dark: #000; - -$color-box-shadow: $color-main-text; - -$color-border: darken($color-main-background, 50%); -$color-border-dark: darken($color-main-background, 50%); - -$image-logo: url('../../../core/img/logo/logo.svg?v=1'); -$image-logoheader: url('../../../core/img/logo/logo.svg?v=1'); - -[class^='icon-'], [class*=' icon-'], -.action, -#appmenu li a, -.menutoggle { - opacity: 1 !important; -} diff --git a/apps/accessibility/css/highcontrastdark.scss b/apps/accessibility/css/highcontrastdark.scss deleted file mode 100644 index c5238dc2433..00000000000 --- a/apps/accessibility/css/highcontrastdark.scss +++ /dev/null @@ -1,25 +0,0 @@ -// SCSS variables -$color-main-text: #fff; -$color-main-background: #000; - -$color-background-dark: lighten($color-main-background, 30%); -$color-background-darker: lighten($color-main-background, 30%); - -$color-text-maxcontrast: $color-main-text; -$color-text-light: $color-main-text; -$color-text-lighter: $color-main-text; - -$color-loading-light: #000; -$color-loading-dark: #ddd; - -$color-box-shadow: $color-main-text; - -$color-border: lighten($color-main-background, 50%); -$color-border-dark: lighten($color-main-background, 50%); - -[class^='icon-'], [class*=' icon-'], -.action, -#appmenu li a, -.menutoggle { - opacity: 1 !important; -} diff --git a/apps/accessibility/fonts/OpenDyslexic-Bold.ttf b/apps/accessibility/fonts/OpenDyslexic-Bold.ttf deleted file mode 100644 index 7c97eb4329b..00000000000 Binary files a/apps/accessibility/fonts/OpenDyslexic-Bold.ttf and /dev/null differ diff --git a/apps/accessibility/fonts/OpenDyslexic-Bold.woff b/apps/accessibility/fonts/OpenDyslexic-Bold.woff deleted file mode 100755 index 755476f6b4a..00000000000 Binary files a/apps/accessibility/fonts/OpenDyslexic-Bold.woff and /dev/null differ diff --git a/apps/accessibility/fonts/OpenDyslexic-Regular.ttf b/apps/accessibility/fonts/OpenDyslexic-Regular.ttf deleted file mode 100644 index e7849348cdb..00000000000 Binary files a/apps/accessibility/fonts/OpenDyslexic-Regular.ttf and /dev/null differ diff --git a/apps/accessibility/fonts/OpenDyslexic-Regular.woff b/apps/accessibility/fonts/OpenDyslexic-Regular.woff deleted file mode 100755 index fdf9e37dd43..00000000000 Binary files a/apps/accessibility/fonts/OpenDyslexic-Regular.woff and /dev/null differ diff --git a/apps/accessibility/img/app-dark.svg b/apps/accessibility/img/app-dark.svg deleted file mode 100644 index c4f772d43c1..00000000000 --- a/apps/accessibility/img/app-dark.svg +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/apps/accessibility/img/app.svg b/apps/accessibility/img/app.svg deleted file mode 100644 index 5d7e24ccf4a..00000000000 --- a/apps/accessibility/img/app.svg +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/apps/accessibility/img/font-highcontrast.jpg b/apps/accessibility/img/font-highcontrast.jpg deleted file mode 100644 index 8c55a7358b9..00000000000 Binary files a/apps/accessibility/img/font-highcontrast.jpg and /dev/null differ diff --git a/apps/accessibility/img/font-opendyslexic.jpg b/apps/accessibility/img/font-opendyslexic.jpg deleted file mode 100644 index db8e60f3658..00000000000 Binary files a/apps/accessibility/img/font-opendyslexic.jpg and /dev/null differ diff --git a/apps/accessibility/img/font-opendyslexic2.jpg b/apps/accessibility/img/font-opendyslexic2.jpg deleted file mode 100644 index 8b384f2d7f5..00000000000 Binary files a/apps/accessibility/img/font-opendyslexic2.jpg and /dev/null differ diff --git a/apps/accessibility/img/mode-highcontrast.jpg b/apps/accessibility/img/mode-highcontrast.jpg deleted file mode 100644 index 1a7a2de0828..00000000000 Binary files a/apps/accessibility/img/mode-highcontrast.jpg and /dev/null differ diff --git a/apps/accessibility/img/theme-dark.jpg b/apps/accessibility/img/theme-dark.jpg deleted file mode 100644 index bc1534541e7..00000000000 Binary files a/apps/accessibility/img/theme-dark.jpg and /dev/null differ diff --git a/apps/accessibility/l10n/.gitkeep b/apps/accessibility/l10n/.gitkeep deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/apps/accessibility/l10n/af.js b/apps/accessibility/l10n/af.js deleted file mode 100644 index 5319bd2c1d9..00000000000 --- a/apps/accessibility/l10n/af.js +++ /dev/null @@ -1,14 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Donker Tema", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "’n Donker tema om u oë ’n ruskans te gee deur die algehele ligsterkte en helderheid te verminder. Dit word nog ontwikkel; rapporteer asb. enige probleme wat u ervaar.", - "High contrast mode" : "Hoëkontrasmodus", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "’n Hoëkontrasmodus om u navigasie te vergemaklik. Visuele kwaliteit sal verminder word, maar die duidelikheid sal verbeter.", - "Dyslexia font" : "Disleksie-font", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic is ’n gratis lettertipe/font wat ontwerp is om sommige van die algemene leesfoute wat deur disleksie veroorsaak word, te versag.", - "Accessibility" : "Toeganklikheid", - "Accessibility options for nextcloud" : "Toeganklikheidsopsies vir nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Bied veelvuldige toeganklikheidsopsies om u gebruik van Nextcloud te vergemaklik" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/apps/accessibility/l10n/af.json b/apps/accessibility/l10n/af.json deleted file mode 100644 index ca9285f9420..00000000000 --- a/apps/accessibility/l10n/af.json +++ /dev/null @@ -1,12 +0,0 @@ -{ "translations": { - "Dark theme" : "Donker Tema", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "’n Donker tema om u oë ’n ruskans te gee deur die algehele ligsterkte en helderheid te verminder. Dit word nog ontwikkel; rapporteer asb. enige probleme wat u ervaar.", - "High contrast mode" : "Hoëkontrasmodus", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "’n Hoëkontrasmodus om u navigasie te vergemaklik. Visuele kwaliteit sal verminder word, maar die duidelikheid sal verbeter.", - "Dyslexia font" : "Disleksie-font", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic is ’n gratis lettertipe/font wat ontwerp is om sommige van die algemene leesfoute wat deur disleksie veroorsaak word, te versag.", - "Accessibility" : "Toeganklikheid", - "Accessibility options for nextcloud" : "Toeganklikheidsopsies vir nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Bied veelvuldige toeganklikheidsopsies om u gebruik van Nextcloud te vergemaklik" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/ar.js b/apps/accessibility/l10n/ar.js deleted file mode 100644 index 780b783683a..00000000000 --- a/apps/accessibility/l10n/ar.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "مظهر داكن", - "Enable dark theme" : "تفعيل المظهر الداكن", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "المظهر الداكن يخفف من الإرهاق على عينيك، وذلك بتخفيض حدّة الإضاءة والسطوع. هذه الميزة لا تزال تحت التطوير، لهذا نود منكم الإبلاغ عن أي مشكلة قد تصادفكم.", - "High contrast mode" : "وضع تباين الألوان العالي", - "Enable high contrast mode" : "تفعيل وضع تباين الألوان العالي", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "وضع تباين الألوان العالي يساعدك على التنقل في الموقع بسهولة. الجودة المرئية سوف تقل بينما الوضوح سيزداد.", - "Dyslexia font" : "خط خاص بالمصابين بعسر القراءة", - "Enable dyslexia font" : "تفعيل الخط الخاص بالمصابين بعسر القراءة", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic خط مجاني مصمم للمساعدة على تفادي الأخطاء لمن يعانون من عسر القراءة.", - "Accessibility" : "تسهيل الإستعمال", - "Accessibility options for nextcloud" : "خيارات تسهيل إستعمال نكست كلاود", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "توفر عدة خيارات تسهيل إستعمال لتسهيل تنقلك على نكست كلاود", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "الوصول الشامل مهم جدا بالنسبة لنا. نحن نتبع معايير ويب صارمة ونتأكد من أن كل شيء يمكن إستعماله حتى دون الحاجة للفأرة أو إلى أي برامج مساعدة مثل برامج قراءة الشاشة. هدفنا أن نكون متوافقين مع {guidelines} توجيهات تسهيل إستعمال محتوى الويب {linkend} 2.1 بمستوى AA، ومتوافقين مع مظهر تباين الألوان العالي بمستوى يصل حتى إلى AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "إذا واجهت أي مشاكل، لا تتردد بالإبلاغ عنها على {issuetracker} متعقب المشاكل الخاص بنا {linkend}. أما إذا أردت المشاركة في التطوير، إنضم إلى {designteam} فريق التصميم {linkend}!" -}, -"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/apps/accessibility/l10n/ar.json b/apps/accessibility/l10n/ar.json deleted file mode 100644 index b465e8275a6..00000000000 --- a/apps/accessibility/l10n/ar.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "مظهر داكن", - "Enable dark theme" : "تفعيل المظهر الداكن", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "المظهر الداكن يخفف من الإرهاق على عينيك، وذلك بتخفيض حدّة الإضاءة والسطوع. هذه الميزة لا تزال تحت التطوير، لهذا نود منكم الإبلاغ عن أي مشكلة قد تصادفكم.", - "High contrast mode" : "وضع تباين الألوان العالي", - "Enable high contrast mode" : "تفعيل وضع تباين الألوان العالي", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "وضع تباين الألوان العالي يساعدك على التنقل في الموقع بسهولة. الجودة المرئية سوف تقل بينما الوضوح سيزداد.", - "Dyslexia font" : "خط خاص بالمصابين بعسر القراءة", - "Enable dyslexia font" : "تفعيل الخط الخاص بالمصابين بعسر القراءة", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic خط مجاني مصمم للمساعدة على تفادي الأخطاء لمن يعانون من عسر القراءة.", - "Accessibility" : "تسهيل الإستعمال", - "Accessibility options for nextcloud" : "خيارات تسهيل إستعمال نكست كلاود", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "توفر عدة خيارات تسهيل إستعمال لتسهيل تنقلك على نكست كلاود", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "الوصول الشامل مهم جدا بالنسبة لنا. نحن نتبع معايير ويب صارمة ونتأكد من أن كل شيء يمكن إستعماله حتى دون الحاجة للفأرة أو إلى أي برامج مساعدة مثل برامج قراءة الشاشة. هدفنا أن نكون متوافقين مع {guidelines} توجيهات تسهيل إستعمال محتوى الويب {linkend} 2.1 بمستوى AA، ومتوافقين مع مظهر تباين الألوان العالي بمستوى يصل حتى إلى AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "إذا واجهت أي مشاكل، لا تتردد بالإبلاغ عنها على {issuetracker} متعقب المشاكل الخاص بنا {linkend}. أما إذا أردت المشاركة في التطوير، إنضم إلى {designteam} فريق التصميم {linkend}!" -},"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/apps/accessibility/l10n/be.js b/apps/accessibility/l10n/be.js deleted file mode 100644 index 15d4ad2b8d3..00000000000 --- a/apps/accessibility/l10n/be.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Цёмная тэма", - "Enable dark theme" : "Уключыць цёмную тэму", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Цёмная тэма зніжае напружанне на вочы зніжаючы яркасць. Функцыя знаходзіцца ў стадыі распрацоўкі, таму, калі ласка, паведамляйце пра ўсе знойдзеныя памылкі.", - "High contrast mode" : "Рэжым высокай кантраснасці", - "Enable high contrast mode" : "Уключыць рэжым высокай кантраснасці", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Рэжым высокай кантраснасці каб палегчыць навігацыю. Гэта паменшыць візуальную якасць, але палепшыць зразумеласць.", - "Dyslexia font" : "Шрыфт для людзей з дыслексіяй", - "Enable dyslexia font" : "Выкарыстоўваць шрыфт для людзей з дыслексіяй", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic — гэта бясплатны шрыфт, распрацаваны каб паменшыць колькасць частых памылак чытання, якія выкліканы дыслексіяй,", - "Accessibility" : "Спецыяльныя магчымасці", - "Accessibility options for nextcloud" : "Налады спецыяльных магчымасцяў для Nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Налады спецыяльных магчымасцяў, якія спрашчаюць карыстанне Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Універсальны доступ вельмі важны для нас. Мы прытрымліваемся стандартам і правяраем магчымасць выкарыстоўвання нашых сэрвісаў без мышы ці з выкарыстоўваннем дапаможных праграм, такіх, як экраны дыктар. Мы стараемся цалкам адпавядаць {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 на ўзроўні AA, а разам з рэжымам высокай кантраснасці на ўзроўні AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Калі вы знайшлі нейкую праблему, не саромейцеся напісаць у {issuetracker}наш трэкер памылак{linkend}. Таксама калі вы жадаеце прыняць удзел, можаце прыяднацца да {designteam}нашай каманды дызайнераў{linkend}!" -}, -"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/apps/accessibility/l10n/be.json b/apps/accessibility/l10n/be.json deleted file mode 100644 index 4d541e001f8..00000000000 --- a/apps/accessibility/l10n/be.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Цёмная тэма", - "Enable dark theme" : "Уключыць цёмную тэму", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Цёмная тэма зніжае напружанне на вочы зніжаючы яркасць. Функцыя знаходзіцца ў стадыі распрацоўкі, таму, калі ласка, паведамляйце пра ўсе знойдзеныя памылкі.", - "High contrast mode" : "Рэжым высокай кантраснасці", - "Enable high contrast mode" : "Уключыць рэжым высокай кантраснасці", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Рэжым высокай кантраснасці каб палегчыць навігацыю. Гэта паменшыць візуальную якасць, але палепшыць зразумеласць.", - "Dyslexia font" : "Шрыфт для людзей з дыслексіяй", - "Enable dyslexia font" : "Выкарыстоўваць шрыфт для людзей з дыслексіяй", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic — гэта бясплатны шрыфт, распрацаваны каб паменшыць колькасць частых памылак чытання, якія выкліканы дыслексіяй,", - "Accessibility" : "Спецыяльныя магчымасці", - "Accessibility options for nextcloud" : "Налады спецыяльных магчымасцяў для Nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Налады спецыяльных магчымасцяў, якія спрашчаюць карыстанне Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Універсальны доступ вельмі важны для нас. Мы прытрымліваемся стандартам і правяраем магчымасць выкарыстоўвання нашых сэрвісаў без мышы ці з выкарыстоўваннем дапаможных праграм, такіх, як экраны дыктар. Мы стараемся цалкам адпавядаць {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 на ўзроўні AA, а разам з рэжымам высокай кантраснасці на ўзроўні AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Калі вы знайшлі нейкую праблему, не саромейцеся напісаць у {issuetracker}наш трэкер памылак{linkend}. Таксама калі вы жадаеце прыняць удзел, можаце прыяднацца да {designteam}нашай каманды дызайнераў{linkend}!" -},"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/apps/accessibility/l10n/bg.js b/apps/accessibility/l10n/bg.js deleted file mode 100644 index 5cd2706fa20..00000000000 --- a/apps/accessibility/l10n/bg.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Tъмна Tема", - "Enable dark theme" : "Активиране на тъмна тема", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Тъмна тема, която облекчава очите ви, като намалява яркостта. Все още е в процес на разработка, затова, моля, докладвайте за всички проблеми, които откриете.", - "High contrast mode" : "Висок контраст", - "Enable high contrast mode" : "Активиране на режим с висок контраст", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Режим с висок контраст за улесняване на навигацията ви. Визуалното качество ще бъде намалено, но яснотата ще се увеличи.", - "Dyslexia font" : "Шрифт за дислексия", - "Enable dyslexia font" : "Активирай шрифт за дислексия", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic е безплатен шрифт, предназначен за смекчаване на някои от често срещаните грешки при четенето, причинени от дислексия.", - "Accessibility" : "Достъпност", - "Accessibility options for nextcloud" : "Опции за достъпност за nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Осигурява множество опции за достъпност за улесняване на използването на Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Универсалният достъп е много важен за нас. Следваме уеб стандартите и проверяваме, за да направим всичко използваемо и без мишка, и помощен софтуер, като екранни четци. Ние се стремим да бъдем съобразени с {guidelines}Насоки за достъпност на уеб съдържанието {linkend} 2.1 на ниво АА, с темата за висок контраст дори на ниво AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Ако откриете някакви проблеми, не се колебайте да ги съобщите на {issueetracker} нашия тракер на проблеми {linkend}. А ако искате да се включите, елате да се присъедините {designteam} към нашия дизайнерски екип {linkend}!" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/apps/accessibility/l10n/bg.json b/apps/accessibility/l10n/bg.json deleted file mode 100644 index 6a493701820..00000000000 --- a/apps/accessibility/l10n/bg.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Tъмна Tема", - "Enable dark theme" : "Активиране на тъмна тема", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Тъмна тема, която облекчава очите ви, като намалява яркостта. Все още е в процес на разработка, затова, моля, докладвайте за всички проблеми, които откриете.", - "High contrast mode" : "Висок контраст", - "Enable high contrast mode" : "Активиране на режим с висок контраст", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Режим с висок контраст за улесняване на навигацията ви. Визуалното качество ще бъде намалено, но яснотата ще се увеличи.", - "Dyslexia font" : "Шрифт за дислексия", - "Enable dyslexia font" : "Активирай шрифт за дислексия", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic е безплатен шрифт, предназначен за смекчаване на някои от често срещаните грешки при четенето, причинени от дислексия.", - "Accessibility" : "Достъпност", - "Accessibility options for nextcloud" : "Опции за достъпност за nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Осигурява множество опции за достъпност за улесняване на използването на Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Универсалният достъп е много важен за нас. Следваме уеб стандартите и проверяваме, за да направим всичко използваемо и без мишка, и помощен софтуер, като екранни четци. Ние се стремим да бъдем съобразени с {guidelines}Насоки за достъпност на уеб съдържанието {linkend} 2.1 на ниво АА, с темата за висок контраст дори на ниво AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Ако откриете някакви проблеми, не се колебайте да ги съобщите на {issueetracker} нашия тракер на проблеми {linkend}. А ако искате да се включите, елате да се присъедините {designteam} към нашия дизайнерски екип {linkend}!" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/bn_BD.js b/apps/accessibility/l10n/bn_BD.js deleted file mode 100644 index ec5408065a1..00000000000 --- a/apps/accessibility/l10n/bn_BD.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "অন্ধকার থিম", - "Enable dark theme" : "অন্ধকার থিম সক্ষম করুন", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "সামগ্রিক আলোকসজ্জা এবং উজ্জ্বলতা হ্রাস করে আপনার চোখকে সহজ করার জন্য একটি অন্ধকার থিম। এটা এখনও উন্নয়ন অধীনে, তাই কোনো সমস্যা আপনি খুঁজে পেতে পারেন রিপোর্ট করুন। ", - "High contrast mode" : "উচ্চ বিপরীতে মোড ", - "Enable high contrast mode" : "উচ্চতর বিপরীতে মোড সক্ষম করুন", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "আপনার নেভিগেশন সহজ করতে একটি উচ্চ বিপরীতে মোড। ভিজ্যুয়াল মান হ্রাস পাবে তবে স্বচ্ছতা বাড়ানো হবে। ", - "Dyslexia font" : "ডিসলেক্সিয়া হরফ", - "Enable dyslexia font" : "ডিসলেক্সিয়া হরফ সক্ষম করুন", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "ওপেনডাইলেক্সিক হ'ল ফ্রি টাইপফেস / হরফ ডিজাইলেসিয়া দ্বারা সৃষ্ট কিছু সাধারণ পাঠ্য ত্রুটি প্রশমিত করার জন্য ডিজাইন করা। ", - "Accessibility" : "অ্যাক্সেসযোগ্যতা", - "Accessibility options for nextcloud" : "নেক্সটক্লাউডের জন্য অ্যাক্সেসযোগ্যতার বিকল্পগুলি", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "নেক্সটক্লাউডের আপনার ব্যবহার সহজ করার জন্য একাধিক অ্যাক্সেসিবিলিটি বিকল্প সরবরাহ করে", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "সর্বজনীন অ্যাক্সেস আমাদের জন্য খুব গুরুত্বপূর্ণ। আমরা ওয়েব স্ট্যান্ডার্ডগুলি অনুসরণ করি এবং মাউস ছাড়াই এবং স্ক্রিনড্রেডারের মতো সহায়ক সফ্টওয়্যার ছাড়াও সবকিছুকে ব্যবহারযোগ্য করে তুলতে পরীক্ষা করে দেখি। আমরা এএএ স্তরে এমনকি উচ্চতর বিপরীতে থিম সহ, এএ স্তরের {নির্দেশিকা} ওয়েব সামগ্রী অ্যাক্সেসিবিলিটি নির্দেশিকা {লিনএন্ড} 2.1 এর সাথে অনুগত হতে লক্ষ্য করি।", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "আপনি যদি কোনও সমস্যা খুঁজে পান তবে তাদেরকে আমাদের ইস্যু ট্র্যাকার {লিনএন্ড} এ প্রতিবেদন করতে দ্বিধা করবেন না} এবং আপনি যদি এতে জড়িত থাকতে চান তবে আসুন {ডিজাইনটিয়াম} আমাদের ডিজাইন দল {লিনএন্ড} এ যোগদান করুন" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/apps/accessibility/l10n/bn_BD.json b/apps/accessibility/l10n/bn_BD.json deleted file mode 100644 index 02fa43fed1e..00000000000 --- a/apps/accessibility/l10n/bn_BD.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "অন্ধকার থিম", - "Enable dark theme" : "অন্ধকার থিম সক্ষম করুন", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "সামগ্রিক আলোকসজ্জা এবং উজ্জ্বলতা হ্রাস করে আপনার চোখকে সহজ করার জন্য একটি অন্ধকার থিম। এটা এখনও উন্নয়ন অধীনে, তাই কোনো সমস্যা আপনি খুঁজে পেতে পারেন রিপোর্ট করুন। ", - "High contrast mode" : "উচ্চ বিপরীতে মোড ", - "Enable high contrast mode" : "উচ্চতর বিপরীতে মোড সক্ষম করুন", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "আপনার নেভিগেশন সহজ করতে একটি উচ্চ বিপরীতে মোড। ভিজ্যুয়াল মান হ্রাস পাবে তবে স্বচ্ছতা বাড়ানো হবে। ", - "Dyslexia font" : "ডিসলেক্সিয়া হরফ", - "Enable dyslexia font" : "ডিসলেক্সিয়া হরফ সক্ষম করুন", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "ওপেনডাইলেক্সিক হ'ল ফ্রি টাইপফেস / হরফ ডিজাইলেসিয়া দ্বারা সৃষ্ট কিছু সাধারণ পাঠ্য ত্রুটি প্রশমিত করার জন্য ডিজাইন করা। ", - "Accessibility" : "অ্যাক্সেসযোগ্যতা", - "Accessibility options for nextcloud" : "নেক্সটক্লাউডের জন্য অ্যাক্সেসযোগ্যতার বিকল্পগুলি", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "নেক্সটক্লাউডের আপনার ব্যবহার সহজ করার জন্য একাধিক অ্যাক্সেসিবিলিটি বিকল্প সরবরাহ করে", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "সর্বজনীন অ্যাক্সেস আমাদের জন্য খুব গুরুত্বপূর্ণ। আমরা ওয়েব স্ট্যান্ডার্ডগুলি অনুসরণ করি এবং মাউস ছাড়াই এবং স্ক্রিনড্রেডারের মতো সহায়ক সফ্টওয়্যার ছাড়াও সবকিছুকে ব্যবহারযোগ্য করে তুলতে পরীক্ষা করে দেখি। আমরা এএএ স্তরে এমনকি উচ্চতর বিপরীতে থিম সহ, এএ স্তরের {নির্দেশিকা} ওয়েব সামগ্রী অ্যাক্সেসিবিলিটি নির্দেশিকা {লিনএন্ড} 2.1 এর সাথে অনুগত হতে লক্ষ্য করি।", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "আপনি যদি কোনও সমস্যা খুঁজে পান তবে তাদেরকে আমাদের ইস্যু ট্র্যাকার {লিনএন্ড} এ প্রতিবেদন করতে দ্বিধা করবেন না} এবং আপনি যদি এতে জড়িত থাকতে চান তবে আসুন {ডিজাইনটিয়াম} আমাদের ডিজাইন দল {লিনএন্ড} এ যোগদান করুন" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/br.js b/apps/accessibility/l10n/br.js deleted file mode 100644 index 7dd0886c940..00000000000 --- a/apps/accessibility/l10n/br.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Tem teñval", - "Enable dark theme" : "Aotren an tem teñval", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Un tem teñval evit distanañ ho taoulagad en ur vihanaat ar sklêrijenn. War ziorren emañ c'hoazh, setu ma c'hallit kas deomp hoc'h evezhiadennoù.", - "High contrast mode" : "Mod dargemm uhel", - "Enable high contrast mode" : "Aotren mod an dargemm uhel", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Ur mod dargemm uhel evit aesaat ho merdeiñ. Bihanaet e vo ar c'halite met brasaet e vo ar spisder eta.", - "Dyslexia font" : "Font a-enep an dislegiezh", - "Enable dyslexia font" : "Aotren ar font a-enep an dislegiezh", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic a zo ur font digoust soñjet evit disteraat ar fazioù lenn pennañ deuet diwar dislegiezh.", - "Accessibility" : "Monedusted", - "Accessibility options for nextcloud" : "Arventennoù monedusted Nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Pourveziñ a ra meur a arventenn vonedusted evit simplaat implij Nexcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Hollbouezus eo deomp ar vonedusted hollvedel. Heuliañ a reomp ar standardoù web ha gwiriañ a reomp hag-eñ e c'hall mat pep tra bezañ implijet hep logodenn zoken, ha gant meziantoù skoazellañ evel \"lennerioù skramm\". Klask a reomp doujañ da {guidelines}Reolennoù monedusted endalc'hadoù ar Web{linkend} 2.1 gant ul live AA, gant an tem gantañ un dargemm bras, d'al live AAA zoken.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Mar kavit un draen bennak, na dermit ket da reiñ deomp da c'houzout war {issuetracker}hor benveg dizreinañ{linkend}. Ha mar fell deoc'h kemer perzh e viot degemeret mat en {designteam}hor skipailh dezagn{linkend}!" -}, -"nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);"); diff --git a/apps/accessibility/l10n/br.json b/apps/accessibility/l10n/br.json deleted file mode 100644 index 035ed0c3330..00000000000 --- a/apps/accessibility/l10n/br.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Tem teñval", - "Enable dark theme" : "Aotren an tem teñval", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Un tem teñval evit distanañ ho taoulagad en ur vihanaat ar sklêrijenn. War ziorren emañ c'hoazh, setu ma c'hallit kas deomp hoc'h evezhiadennoù.", - "High contrast mode" : "Mod dargemm uhel", - "Enable high contrast mode" : "Aotren mod an dargemm uhel", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Ur mod dargemm uhel evit aesaat ho merdeiñ. Bihanaet e vo ar c'halite met brasaet e vo ar spisder eta.", - "Dyslexia font" : "Font a-enep an dislegiezh", - "Enable dyslexia font" : "Aotren ar font a-enep an dislegiezh", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic a zo ur font digoust soñjet evit disteraat ar fazioù lenn pennañ deuet diwar dislegiezh.", - "Accessibility" : "Monedusted", - "Accessibility options for nextcloud" : "Arventennoù monedusted Nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Pourveziñ a ra meur a arventenn vonedusted evit simplaat implij Nexcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Hollbouezus eo deomp ar vonedusted hollvedel. Heuliañ a reomp ar standardoù web ha gwiriañ a reomp hag-eñ e c'hall mat pep tra bezañ implijet hep logodenn zoken, ha gant meziantoù skoazellañ evel \"lennerioù skramm\". Klask a reomp doujañ da {guidelines}Reolennoù monedusted endalc'hadoù ar Web{linkend} 2.1 gant ul live AA, gant an tem gantañ un dargemm bras, d'al live AAA zoken.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Mar kavit un draen bennak, na dermit ket da reiñ deomp da c'houzout war {issuetracker}hor benveg dizreinañ{linkend}. Ha mar fell deoc'h kemer perzh e viot degemeret mat en {designteam}hor skipailh dezagn{linkend}!" -},"pluralForm" :"nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/bs.js b/apps/accessibility/l10n/bs.js deleted file mode 100644 index 3f390a965db..00000000000 --- a/apps/accessibility/l10n/bs.js +++ /dev/null @@ -1,13 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Tamna tema", - "Enable dark theme" : "Aktiviraj tamnu temu", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Koristite tamnu temu da bi smanjili napetost u očima smanjenjem luminiscencije i svijetla pozadine. Tema je još uvijek u razvojnoj fazi, molimo da prijavite greške ako ih primjetite. ", - "High contrast mode" : "Mod visokog kontrasta", - "Enable high contrast mode" : "Aktiviraj mod visokog kontrasta", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Mod visokog kontrasta kako bi vam olakšali navigaciju, vizuelno će kvalitet biti reduciran ali jasnoća prikaza se povećava ", - "Dyslexia font" : "Font za disleksičare", - "Enable dyslexia font" : "Aktiviraj font za disleksičare" -}, -"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/apps/accessibility/l10n/bs.json b/apps/accessibility/l10n/bs.json deleted file mode 100644 index 2525a6466b6..00000000000 --- a/apps/accessibility/l10n/bs.json +++ /dev/null @@ -1,11 +0,0 @@ -{ "translations": { - "Dark theme" : "Tamna tema", - "Enable dark theme" : "Aktiviraj tamnu temu", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Koristite tamnu temu da bi smanjili napetost u očima smanjenjem luminiscencije i svijetla pozadine. Tema je još uvijek u razvojnoj fazi, molimo da prijavite greške ako ih primjetite. ", - "High contrast mode" : "Mod visokog kontrasta", - "Enable high contrast mode" : "Aktiviraj mod visokog kontrasta", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Mod visokog kontrasta kako bi vam olakšali navigaciju, vizuelno će kvalitet biti reduciran ali jasnoća prikaza se povećava ", - "Dyslexia font" : "Font za disleksičare", - "Enable dyslexia font" : "Aktiviraj font za disleksičare" -},"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/apps/accessibility/l10n/ca.js b/apps/accessibility/l10n/ca.js deleted file mode 100644 index 9a6f2497702..00000000000 --- a/apps/accessibility/l10n/ca.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Tema fosc", - "Enable dark theme" : "Habilita el tema fosc", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Tema fosc que ajuda els ulls reduint la lluminositat i la brillantor general. Com que encara es troba en desenvolupament, agrairem que informeu de les errades que hi pugueu trobar.", - "High contrast mode" : "Mode de contrast alt", - "Enable high contrast mode" : "Habilita el mode de contrast alt", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Mode de contrast alt per a facilitar la navegació. La qualitat visual es reduirà però s'incrementarà la claredat.", - "Dyslexia font" : "Tipus de lletra per a la dislèxia", - "Enable dyslexia font" : "Habilita el tipus de lletra per a la dislèxia", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic és un tipus de lletra gratuït dissenyat per a mitigar alguns dels errors de lectura habituals causats per la dislèxia.", - "Accessibility" : "Accessibilitat", - "Accessibility options for nextcloud" : "Paràmetres d'accessibilitat del Nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Proporciona diversos paràmetres d'accessibilitat per a facilitar-vos l'ús del Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "L'accés universal és molt important per a nosaltres. Seguim els estàndards web i comprovem que tot es pugui utilitzar també sense el ratolí i amb programes d'assistència, com ara els lectors de pantalla. Volem complir les {guidelines}Pautes d'accessibilitat del contingut web{linkend} 2.1 a nivell AA i amb el tema de contrast alt fins i tot a nivell AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Si trobeu cap problema, no dubteu a informar-ne al {issuetracker}nostre gestor d'errors{linkend}. Si a més voleu implicar-vos, uniu-vos al {designteam}nostre equip de disseny{linked}!" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/apps/accessibility/l10n/ca.json b/apps/accessibility/l10n/ca.json deleted file mode 100644 index 017223dd261..00000000000 --- a/apps/accessibility/l10n/ca.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Tema fosc", - "Enable dark theme" : "Habilita el tema fosc", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Tema fosc que ajuda els ulls reduint la lluminositat i la brillantor general. Com que encara es troba en desenvolupament, agrairem que informeu de les errades que hi pugueu trobar.", - "High contrast mode" : "Mode de contrast alt", - "Enable high contrast mode" : "Habilita el mode de contrast alt", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Mode de contrast alt per a facilitar la navegació. La qualitat visual es reduirà però s'incrementarà la claredat.", - "Dyslexia font" : "Tipus de lletra per a la dislèxia", - "Enable dyslexia font" : "Habilita el tipus de lletra per a la dislèxia", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic és un tipus de lletra gratuït dissenyat per a mitigar alguns dels errors de lectura habituals causats per la dislèxia.", - "Accessibility" : "Accessibilitat", - "Accessibility options for nextcloud" : "Paràmetres d'accessibilitat del Nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Proporciona diversos paràmetres d'accessibilitat per a facilitar-vos l'ús del Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "L'accés universal és molt important per a nosaltres. Seguim els estàndards web i comprovem que tot es pugui utilitzar també sense el ratolí i amb programes d'assistència, com ara els lectors de pantalla. Volem complir les {guidelines}Pautes d'accessibilitat del contingut web{linkend} 2.1 a nivell AA i amb el tema de contrast alt fins i tot a nivell AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Si trobeu cap problema, no dubteu a informar-ne al {issuetracker}nostre gestor d'errors{linkend}. Si a més voleu implicar-vos, uniu-vos al {designteam}nostre equip de disseny{linked}!" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/cs.js b/apps/accessibility/l10n/cs.js deleted file mode 100644 index 434071e2e65..00000000000 --- a/apps/accessibility/l10n/cs.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Tmavý motiv vzhledu", - "Enable dark theme" : "Používat tmavý motiv vzhledu", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Tmavý motiv vzhledu pro ulevení vašim očím snížením celkové svítivosti a jasu. Jeho vývoj zatím ještě není zcela dokončen, proto prosíme hlaste jakékoli problémy, se kterými se setkáte.", - "High contrast mode" : "Režim s vysokým kontrastem", - "Enable high contrast mode" : "Zapnout režim s vysokým kontrastem", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Režim s vysokým kontrastem pro usnadnění orientace při pohybu po aplikaci. Vizuální kvalita bude snížena, zato zřetelnost se zlepší.", - "Dyslexia font" : "Písmo pro dyslektiky", - "Enable dyslexia font" : "Používat písmo pro dyslektiky", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic je bezplatné písmo (font) navržené tak, aby odpomáhalo od některých běžných chybování při čtení, způsobených dyslexií.", - "Accessibility" : "Zpřístupnění", - "Accessibility options for nextcloud" : "Předvolby v Nexcloud pro zpřístupnění", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Poskytuje vícero možností pro zpřístupnění a tím usnadnění používání Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Přístupnost pro všechny je pro nás velmi důležitá. Splňujeme webové standardy a zajišťujeme, aby všechno bylo použitelné i bez myši a s asistenčním software, jako například čtečkami obrazovky. Máme za cíl být v souladu s doporučeními {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 na úrovni AA, při použití motivu vzhledu s vysokým kontrastem dokonce na úrovni AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Pokud naleznete jakékoli problémy, neváhejte s jejich nahlášením do {issuetracker}našeho systému pro správu hlášení{linkend}. A pokud se chcete zapojit, přidejte se k {designteam}týmu našich designérů{linkend}!" -}, -"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"); diff --git a/apps/accessibility/l10n/cs.json b/apps/accessibility/l10n/cs.json deleted file mode 100644 index 537c0ac64be..00000000000 --- a/apps/accessibility/l10n/cs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Tmavý motiv vzhledu", - "Enable dark theme" : "Používat tmavý motiv vzhledu", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Tmavý motiv vzhledu pro ulevení vašim očím snížením celkové svítivosti a jasu. Jeho vývoj zatím ještě není zcela dokončen, proto prosíme hlaste jakékoli problémy, se kterými se setkáte.", - "High contrast mode" : "Režim s vysokým kontrastem", - "Enable high contrast mode" : "Zapnout režim s vysokým kontrastem", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Režim s vysokým kontrastem pro usnadnění orientace při pohybu po aplikaci. Vizuální kvalita bude snížena, zato zřetelnost se zlepší.", - "Dyslexia font" : "Písmo pro dyslektiky", - "Enable dyslexia font" : "Používat písmo pro dyslektiky", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic je bezplatné písmo (font) navržené tak, aby odpomáhalo od některých běžných chybování při čtení, způsobených dyslexií.", - "Accessibility" : "Zpřístupnění", - "Accessibility options for nextcloud" : "Předvolby v Nexcloud pro zpřístupnění", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Poskytuje vícero možností pro zpřístupnění a tím usnadnění používání Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Přístupnost pro všechny je pro nás velmi důležitá. Splňujeme webové standardy a zajišťujeme, aby všechno bylo použitelné i bez myši a s asistenčním software, jako například čtečkami obrazovky. Máme za cíl být v souladu s doporučeními {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 na úrovni AA, při použití motivu vzhledu s vysokým kontrastem dokonce na úrovni AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Pokud naleznete jakékoli problémy, neváhejte s jejich nahlášením do {issuetracker}našeho systému pro správu hlášení{linkend}. A pokud se chcete zapojit, přidejte se k {designteam}týmu našich designérů{linkend}!" -},"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/da.js b/apps/accessibility/l10n/da.js deleted file mode 100644 index 34b12e23229..00000000000 --- a/apps/accessibility/l10n/da.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Mørkt tema", - "Enable dark theme" : "Aktiver Mørkt tema", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Et mørk tema, venligere for øjnene ved at dæmpe lysstyrken. Det er stadig under udvikling så indberet venligst alle problemer du måtte finde.", - "High contrast mode" : "Højkontrasttilstand", - "Enable high contrast mode" : "aktiver højkontrasttilstand", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "En højkontrasttilstand letter navigationen. Presentation af lavere kvalitet, men tydeligere.", - "Dyslexia font" : "Skrifftype for ordblinde", - "Enable dyslexia font" : "aktiver skrifftype for ordblinde", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic er en gratis skrifttype designet til at undgå læsefejl pga. ordblindhed", - "Accessibility" : "Handicapvenlig", - "Accessibility options for nextcloud" : "Handicapvenlige indstillinger for nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Tilbyder flere handicapvenlige indstillinger til at lette brugen af Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Universel adgang er meget vigtig for os. Vi følger web standarder og sikrer os at gøre alt tilgængeligt også uden mus, eller med hjælpesoftware såsom screenreaders. Vi søger at følge reglerne{guidelines}Web Content Accessibility Guidelines{linkend} 2.1 og AA endda med højt kontrast tema på AAA niveau.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Tøv ikke med at rapportere problemer på vores issuetracker {issuetracker} hvis du finder nogen{linkend}. Og hvis du vil deltage, så kom med {designteam} i vores designteam{linkend}!" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/apps/accessibility/l10n/da.json b/apps/accessibility/l10n/da.json deleted file mode 100644 index dd7b02205c6..00000000000 --- a/apps/accessibility/l10n/da.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Mørkt tema", - "Enable dark theme" : "Aktiver Mørkt tema", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Et mørk tema, venligere for øjnene ved at dæmpe lysstyrken. Det er stadig under udvikling så indberet venligst alle problemer du måtte finde.", - "High contrast mode" : "Højkontrasttilstand", - "Enable high contrast mode" : "aktiver højkontrasttilstand", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "En højkontrasttilstand letter navigationen. Presentation af lavere kvalitet, men tydeligere.", - "Dyslexia font" : "Skrifftype for ordblinde", - "Enable dyslexia font" : "aktiver skrifftype for ordblinde", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic er en gratis skrifttype designet til at undgå læsefejl pga. ordblindhed", - "Accessibility" : "Handicapvenlig", - "Accessibility options for nextcloud" : "Handicapvenlige indstillinger for nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Tilbyder flere handicapvenlige indstillinger til at lette brugen af Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Universel adgang er meget vigtig for os. Vi følger web standarder og sikrer os at gøre alt tilgængeligt også uden mus, eller med hjælpesoftware såsom screenreaders. Vi søger at følge reglerne{guidelines}Web Content Accessibility Guidelines{linkend} 2.1 og AA endda med højt kontrast tema på AAA niveau.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Tøv ikke med at rapportere problemer på vores issuetracker {issuetracker} hvis du finder nogen{linkend}. Og hvis du vil deltage, så kom med {designteam} i vores designteam{linkend}!" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/de.js b/apps/accessibility/l10n/de.js deleted file mode 100644 index d4a8255bb6f..00000000000 --- a/apps/accessibility/l10n/de.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Dunkles Design", - "Enable dark theme" : "Dunkles Design aktivieren", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Ein dunkles Design, das die Augen entspannt, indem es die allgemeine Lichtstärke und Helligkeit reduziert. Es befindet sich noch in der Entwicklung, also melde bitte alle Probleme, die Du findest.", - "High contrast mode" : "Kontrastreicher Modus", - "Enable high contrast mode" : "Kontrastreichen Modus aktivieren", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Ein kontrastreicher Modus, der die Navigation erleichtert. Die Bildqualität wird reduziert, die Klarheit jedoch erhöht.", - "Dyslexia font" : "Legasthenie-Schriftart", - "Enable dyslexia font" : "Legasthenie-Schriftart aktivieren", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic ist eine freie Schriftart, die entwickelt wurde, um einige der häufigsten Lesefehler, die durch Legasthenie verursacht werden, zu reduzieren.", - "Accessibility" : "Barrierefreiheit", - "Accessibility options for nextcloud" : "Optionen zur Barrierefreiheit in Nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Bietet verschiedene Optionen für Barrierefreiheit, um die Nutzung von Nextcloud zu erleichtern.", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Der universelle Zugang ist für uns sehr wichtig. Wir halten uns an Webstandards und prüfen, ob alles auch ohne Maus und unterstützende Software wie Screenreader nutzbar ist. Wir streben die Einhaltung der {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 auf AA-Niveau an, mit dem kontrastreichen Design sogar auf AAA-Niveau.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Wenn Du Fehler findest, melde sie bitte im {issuetracker}Problemverfolgungssystem{linkend}. Und wenn Du mithelfen willst, trete dem {designteam}Designteam{linkend} bei!" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/apps/accessibility/l10n/de.json b/apps/accessibility/l10n/de.json deleted file mode 100644 index be64224dd1f..00000000000 --- a/apps/accessibility/l10n/de.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Dunkles Design", - "Enable dark theme" : "Dunkles Design aktivieren", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Ein dunkles Design, das die Augen entspannt, indem es die allgemeine Lichtstärke und Helligkeit reduziert. Es befindet sich noch in der Entwicklung, also melde bitte alle Probleme, die Du findest.", - "High contrast mode" : "Kontrastreicher Modus", - "Enable high contrast mode" : "Kontrastreichen Modus aktivieren", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Ein kontrastreicher Modus, der die Navigation erleichtert. Die Bildqualität wird reduziert, die Klarheit jedoch erhöht.", - "Dyslexia font" : "Legasthenie-Schriftart", - "Enable dyslexia font" : "Legasthenie-Schriftart aktivieren", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic ist eine freie Schriftart, die entwickelt wurde, um einige der häufigsten Lesefehler, die durch Legasthenie verursacht werden, zu reduzieren.", - "Accessibility" : "Barrierefreiheit", - "Accessibility options for nextcloud" : "Optionen zur Barrierefreiheit in Nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Bietet verschiedene Optionen für Barrierefreiheit, um die Nutzung von Nextcloud zu erleichtern.", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Der universelle Zugang ist für uns sehr wichtig. Wir halten uns an Webstandards und prüfen, ob alles auch ohne Maus und unterstützende Software wie Screenreader nutzbar ist. Wir streben die Einhaltung der {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 auf AA-Niveau an, mit dem kontrastreichen Design sogar auf AAA-Niveau.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Wenn Du Fehler findest, melde sie bitte im {issuetracker}Problemverfolgungssystem{linkend}. Und wenn Du mithelfen willst, trete dem {designteam}Designteam{linkend} bei!" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/de_DE.js b/apps/accessibility/l10n/de_DE.js deleted file mode 100644 index 42dd02b0c5c..00000000000 --- a/apps/accessibility/l10n/de_DE.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Dunkles Design", - "Enable dark theme" : "Dunkles Design aktivieren", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Ein dunkles Design, das die Augen entspannt, indem es die Gesamthelligkeit und -helligkeit reduziert. Es befindet sich noch in der Entwicklung, also melden Sie bitte alle Probleme, die Sie finden.", - "High contrast mode" : "Kontrastreicher Modus", - "Enable high contrast mode" : "Kontrastreichen Modus aktivieren", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Ein kontrastreicher Modus, der die Navigation erleichtert. Die Bildqualität wird reduziert, die Übersichtlichkeit jedoch erhöht.", - "Dyslexia font" : "Legasthenie-Schriftart", - "Enable dyslexia font" : "Legasthenie-Schriftart aktivieren", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic ist eine freie Schriftart, die entwickelt wurde, um einige der häufigsten Lesefehler, die durch Legasthenie verursacht werden, zu reduzieren.", - "Accessibility" : "Barrierefreiheit", - "Accessibility options for nextcloud" : "Optionen für Barrierefreiheit in Nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Bietet verschiedene Optionen für Barrierefreiheit, um die Nutzung von Nextcloud zu erleichtern.", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Der universelle Zugang ist für uns sehr wichtig. Wir halten uns an Webstandards und prüfen, ob alles auch ohne Maus und unterstützende Software wie Screenreader nutzbar ist. Wir streben die Einhaltung der {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 auf AA-Niveau an, mit dem kontrastreichen Design sogar auf AAA-Niveau.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Wenn Sie Fehler finden, melden Sie diese bitte im {issuetracker}Problemverfolgungssystem{linkend}. Und wenn Sie mithelfen möchten, treten Sie dem {designteam}Designteam{linkend} bei!" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/apps/accessibility/l10n/de_DE.json b/apps/accessibility/l10n/de_DE.json deleted file mode 100644 index 43006fa2826..00000000000 --- a/apps/accessibility/l10n/de_DE.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Dunkles Design", - "Enable dark theme" : "Dunkles Design aktivieren", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Ein dunkles Design, das die Augen entspannt, indem es die Gesamthelligkeit und -helligkeit reduziert. Es befindet sich noch in der Entwicklung, also melden Sie bitte alle Probleme, die Sie finden.", - "High contrast mode" : "Kontrastreicher Modus", - "Enable high contrast mode" : "Kontrastreichen Modus aktivieren", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Ein kontrastreicher Modus, der die Navigation erleichtert. Die Bildqualität wird reduziert, die Übersichtlichkeit jedoch erhöht.", - "Dyslexia font" : "Legasthenie-Schriftart", - "Enable dyslexia font" : "Legasthenie-Schriftart aktivieren", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic ist eine freie Schriftart, die entwickelt wurde, um einige der häufigsten Lesefehler, die durch Legasthenie verursacht werden, zu reduzieren.", - "Accessibility" : "Barrierefreiheit", - "Accessibility options for nextcloud" : "Optionen für Barrierefreiheit in Nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Bietet verschiedene Optionen für Barrierefreiheit, um die Nutzung von Nextcloud zu erleichtern.", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Der universelle Zugang ist für uns sehr wichtig. Wir halten uns an Webstandards und prüfen, ob alles auch ohne Maus und unterstützende Software wie Screenreader nutzbar ist. Wir streben die Einhaltung der {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 auf AA-Niveau an, mit dem kontrastreichen Design sogar auf AAA-Niveau.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Wenn Sie Fehler finden, melden Sie diese bitte im {issuetracker}Problemverfolgungssystem{linkend}. Und wenn Sie mithelfen möchten, treten Sie dem {designteam}Designteam{linkend} bei!" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/el.js b/apps/accessibility/l10n/el.js deleted file mode 100644 index d2762afdbb3..00000000000 --- a/apps/accessibility/l10n/el.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Σκούρο θέμα", - "Enable dark theme" : "Ενεργοποίηση σκούρου θέματος", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Ένα σκούρο θέμα που διευκολύνει τα μάτια σας μειώνοντας την συνολική ακτινοβολία και φωτεινότητα. Είναι ακόμη υπό δοκιμή, οπότε θα σας παρακαλούσαμε να αναφέρετε οποιαδήποτε προβλήματα παρατηρηθούν.", - "High contrast mode" : "Λειτουργία υψηλής αντίθεσης", - "Enable high contrast mode" : "Ενεργοποίηση λειτουργίας υψηλής αντίθεσης", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Λειτουργία με υψηλή αντίθεση για να διευκολύνει την πλοήγηση σας. Η οπτική ποιότητα θα είναι μειωμένη αλλά θα έχετε υψηλότερη ευκρίνεια.", - "Dyslexia font" : "Γραμματοσειρά για δυσλεκτικούς", - "Enable dyslexia font" : "Ενεργοποίηση γραμματοσειράς για δυσλεκτικούς", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "Η OpenDyslexic είναι μία δωρεάν γραμματοσειρά σχεδιασμένη ώστε να περιορίζει ορισμένα από τα πιο συνήθη λάθη που προκαλεί η δυσλεξία στην ανάγνωση", - "Accessibility" : "Προσβασιμότητα", - "Accessibility options for nextcloud" : "Ρυθμίσεις προσβασιμότητας του nextcloud.", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Προσφέρει πολλαπλές επιλογές προσβασιμότητας για να διευκολύνουν τη χρήση του Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Η πρόσβαση από όλους είναι πολύ σημαντική για εμάς. Ακολουθούμε τα πρότυπα του διαδικτύου και ελέγχουμε ότι τα πάντα μπορούν να χρησιμοποιηθούν χωρίς ποντίκι και βοηθητικό λογισμικό όπως προγράμματα ανάγνωσης οθόνης. Στόχος μας είναι να συμμορφωνόμαστε με τις {προδιαγραφές} Προδιαγραφές πρόσβασης περιεχομένου Ιστού 2.1 σε επίπεδο AA, με το θέμα υψηλής αντίθεσης ακόμη και σε επίπεδο ΑΑΑ.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Αν διαπιστώσετε τυχόν προβλήματα, μη διστάσετε να τα αναφέρετε στον {issuetracker} στον διακομιστή προβλημάτων μας{linkend}. Και αν θέλετε να εμπλακείτε, ελάτε στο {designteam} στην ομάδα σχεδιασμού μας{linkend}!" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/apps/accessibility/l10n/el.json b/apps/accessibility/l10n/el.json deleted file mode 100644 index a6dcd3b9f03..00000000000 --- a/apps/accessibility/l10n/el.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Σκούρο θέμα", - "Enable dark theme" : "Ενεργοποίηση σκούρου θέματος", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Ένα σκούρο θέμα που διευκολύνει τα μάτια σας μειώνοντας την συνολική ακτινοβολία και φωτεινότητα. Είναι ακόμη υπό δοκιμή, οπότε θα σας παρακαλούσαμε να αναφέρετε οποιαδήποτε προβλήματα παρατηρηθούν.", - "High contrast mode" : "Λειτουργία υψηλής αντίθεσης", - "Enable high contrast mode" : "Ενεργοποίηση λειτουργίας υψηλής αντίθεσης", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Λειτουργία με υψηλή αντίθεση για να διευκολύνει την πλοήγηση σας. Η οπτική ποιότητα θα είναι μειωμένη αλλά θα έχετε υψηλότερη ευκρίνεια.", - "Dyslexia font" : "Γραμματοσειρά για δυσλεκτικούς", - "Enable dyslexia font" : "Ενεργοποίηση γραμματοσειράς για δυσλεκτικούς", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "Η OpenDyslexic είναι μία δωρεάν γραμματοσειρά σχεδιασμένη ώστε να περιορίζει ορισμένα από τα πιο συνήθη λάθη που προκαλεί η δυσλεξία στην ανάγνωση", - "Accessibility" : "Προσβασιμότητα", - "Accessibility options for nextcloud" : "Ρυθμίσεις προσβασιμότητας του nextcloud.", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Προσφέρει πολλαπλές επιλογές προσβασιμότητας για να διευκολύνουν τη χρήση του Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Η πρόσβαση από όλους είναι πολύ σημαντική για εμάς. Ακολουθούμε τα πρότυπα του διαδικτύου και ελέγχουμε ότι τα πάντα μπορούν να χρησιμοποιηθούν χωρίς ποντίκι και βοηθητικό λογισμικό όπως προγράμματα ανάγνωσης οθόνης. Στόχος μας είναι να συμμορφωνόμαστε με τις {προδιαγραφές} Προδιαγραφές πρόσβασης περιεχομένου Ιστού 2.1 σε επίπεδο AA, με το θέμα υψηλής αντίθεσης ακόμη και σε επίπεδο ΑΑΑ.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Αν διαπιστώσετε τυχόν προβλήματα, μη διστάσετε να τα αναφέρετε στον {issuetracker} στον διακομιστή προβλημάτων μας{linkend}. Και αν θέλετε να εμπλακείτε, ελάτε στο {designteam} στην ομάδα σχεδιασμού μας{linkend}!" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/en_GB.js b/apps/accessibility/l10n/en_GB.js deleted file mode 100644 index 7fd67e77664..00000000000 --- a/apps/accessibility/l10n/en_GB.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Dark theme", - "Enable dark theme" : "Enable dark theme", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.", - "High contrast mode" : "High contrast mode", - "Enable high contrast mode" : "Enable high contrast mode", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.", - "Dyslexia font" : "Dyslexia font", - "Enable dyslexia font" : "Enable dyslexia font", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.", - "Accessibility" : "Accessibility", - "Accessibility options for nextcloud" : "Accessibility options for nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Provides multiple accessibilities options to ease your use of Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/apps/accessibility/l10n/en_GB.json b/apps/accessibility/l10n/en_GB.json deleted file mode 100644 index 6cc1756e1dd..00000000000 --- a/apps/accessibility/l10n/en_GB.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Dark theme", - "Enable dark theme" : "Enable dark theme", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.", - "High contrast mode" : "High contrast mode", - "Enable high contrast mode" : "Enable high contrast mode", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.", - "Dyslexia font" : "Dyslexia font", - "Enable dyslexia font" : "Enable dyslexia font", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.", - "Accessibility" : "Accessibility", - "Accessibility options for nextcloud" : "Accessibility options for nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Provides multiple accessibilities options to ease your use of Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/eo.js b/apps/accessibility/l10n/eo.js deleted file mode 100644 index 78a3900ceb1..00000000000 --- a/apps/accessibility/l10n/eo.js +++ /dev/null @@ -1,14 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Malhela etoso", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Malhela etoso, kiu helpas viajn okulojn per limigo de heleco kaj brileco. Ĝi ankoraŭ ellaboriĝas, do ne hezitu raporti problemon.", - "High contrast mode" : "Altkontrasta reĝimo", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Altkontrasta reĝimo, kiu faciligas vian navigadon. Vida kvalito malpliiĝos, sed klareco pliiĝos.", - "Dyslexia font" : "Tiparo por limigi vortblindecon", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic estas tiparo kreita por malpliigi legajn erarojn kaŭzitajn de vortblindeco (medicine „disleksio“).", - "Accessibility" : "Alirebleco", - "Accessibility options for nextcloud" : "Alireblecaj opcioj por Nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Provizas plurajn alireblecajn opciojn por faciligi vian uzon de Nextcloud." -}, -"nplurals=2; plural=(n != 1);"); diff --git a/apps/accessibility/l10n/eo.json b/apps/accessibility/l10n/eo.json deleted file mode 100644 index 3169f7f8fee..00000000000 --- a/apps/accessibility/l10n/eo.json +++ /dev/null @@ -1,12 +0,0 @@ -{ "translations": { - "Dark theme" : "Malhela etoso", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Malhela etoso, kiu helpas viajn okulojn per limigo de heleco kaj brileco. Ĝi ankoraŭ ellaboriĝas, do ne hezitu raporti problemon.", - "High contrast mode" : "Altkontrasta reĝimo", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Altkontrasta reĝimo, kiu faciligas vian navigadon. Vida kvalito malpliiĝos, sed klareco pliiĝos.", - "Dyslexia font" : "Tiparo por limigi vortblindecon", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic estas tiparo kreita por malpliigi legajn erarojn kaŭzitajn de vortblindeco (medicine „disleksio“).", - "Accessibility" : "Alirebleco", - "Accessibility options for nextcloud" : "Alireblecaj opcioj por Nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Provizas plurajn alireblecajn opciojn por faciligi vian uzon de Nextcloud." -},"pluralForm" :"nplurals=2; plural=(n != 1);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/es.js b/apps/accessibility/l10n/es.js deleted file mode 100644 index 210353f690c..00000000000 --- a/apps/accessibility/l10n/es.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Tema oscuro", - "Enable dark theme" : "Activar tema oscuro", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Tema oscuro para facilitar la navegación, reduciendo el brillo y la luminosidad. Aún se encuentra en desarrollo, así que, por favor, comunique cualquier problema que encuentre.", - "High contrast mode" : "Modo de alto contraste", - "Enable high contrast mode" : "Activar modo de alto contraste", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Un modo de alto contraste para facilitar la navegación. Se reducirá la calidad visual pero se aumentará la claridad.", - "Dyslexia font" : "Tipo de letra para dislexia", - "Enable dyslexia font" : "Activa tipo de letra para dislexia", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic es un tipo de letra libre diseñada para reducir algunos de los errores de lectura comunes causados por la dislexia.", - "Accessibility" : "Accesibilidad", - "Accessibility options for nextcloud" : "Opciones de accesibilidad para nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Ofrece múltiples opciones de accesibilidad para facilitarte el uso de Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "El acceso universal es muy importante para nosotros. Seguimos los estándares web y verificamos que todo es manejable sin ratón y con software de asistencia, como un lector de pantalla. Nuestro objetivo es cumplir con las {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 en nivel AA y, con el tema de alto contraste, en nivel AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Si encuentra algún problema, no dude en informar del mismo en el {issuetracker}nuestro seguimiento de problemas{linkend}. Y si desea estar involucrado, ¡únase al {designteam}nuestro equipo de desarrollo{linkend}!" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/apps/accessibility/l10n/es.json b/apps/accessibility/l10n/es.json deleted file mode 100644 index c80bf775cc7..00000000000 --- a/apps/accessibility/l10n/es.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Tema oscuro", - "Enable dark theme" : "Activar tema oscuro", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Tema oscuro para facilitar la navegación, reduciendo el brillo y la luminosidad. Aún se encuentra en desarrollo, así que, por favor, comunique cualquier problema que encuentre.", - "High contrast mode" : "Modo de alto contraste", - "Enable high contrast mode" : "Activar modo de alto contraste", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Un modo de alto contraste para facilitar la navegación. Se reducirá la calidad visual pero se aumentará la claridad.", - "Dyslexia font" : "Tipo de letra para dislexia", - "Enable dyslexia font" : "Activa tipo de letra para dislexia", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic es un tipo de letra libre diseñada para reducir algunos de los errores de lectura comunes causados por la dislexia.", - "Accessibility" : "Accesibilidad", - "Accessibility options for nextcloud" : "Opciones de accesibilidad para nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Ofrece múltiples opciones de accesibilidad para facilitarte el uso de Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "El acceso universal es muy importante para nosotros. Seguimos los estándares web y verificamos que todo es manejable sin ratón y con software de asistencia, como un lector de pantalla. Nuestro objetivo es cumplir con las {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 en nivel AA y, con el tema de alto contraste, en nivel AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Si encuentra algún problema, no dude en informar del mismo en el {issuetracker}nuestro seguimiento de problemas{linkend}. Y si desea estar involucrado, ¡únase al {designteam}nuestro equipo de desarrollo{linkend}!" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/es_AR.js b/apps/accessibility/l10n/es_AR.js deleted file mode 100644 index c6ac2603fb1..00000000000 --- a/apps/accessibility/l10n/es_AR.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Tema oscuro", - "Enable dark theme" : "Habilitar tema nocturno", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Un tema oscuro para facilitar la vista al reducir la luminosidad y el brillo general. Todavía está en desarrollo, por lo tanto, informe cualquier problema que pueda encontrar.", - "High contrast mode" : "Modo alto contraste", - "Enable high contrast mode" : "Habilitar modo de Contraste Alto", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Un modo de alto contraste para facilitar su navegación. Se reducirá la calidad visual pero se aumentará la claridad.", - "Dyslexia font" : "Dislexia fuente", - "Enable dyslexia font" : "Habilitar la fuente para personas con dislexia", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic es un tipo de letra/fuente gratuita diseñada para mitigar algunos de los errores comunes de lectura causados ​​por la dislexia.", - "Accessibility" : "Accesibilidad", - "Accessibility options for nextcloud" : "Opciones de accesibilidad para nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Proporciona múltiples opciones de accesibilidad para facilitar el uso de Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "El acceso universal es muy importante para nosotros. Seguimos los estándares web y verificamos que todo se pueda usar también sin mouse y software de asistencia, como lectores de pantalla. Nuestro objetivo es cumplir con las {pautas} Accesibilidad al contenido web {linkend} 2.1 en el nivel AA, con el tema de alto contraste incluso en el nivel AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Si encuentra algún problema, no dude en informarlo en {issuetracker}nuestro rastreador de problemas {linkend}. Y si desea participar, ¡únase a {designteam}a nuestro equipo de diseño {linkend}!" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/apps/accessibility/l10n/es_AR.json b/apps/accessibility/l10n/es_AR.json deleted file mode 100644 index 17ff8fdf224..00000000000 --- a/apps/accessibility/l10n/es_AR.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Tema oscuro", - "Enable dark theme" : "Habilitar tema nocturno", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Un tema oscuro para facilitar la vista al reducir la luminosidad y el brillo general. Todavía está en desarrollo, por lo tanto, informe cualquier problema que pueda encontrar.", - "High contrast mode" : "Modo alto contraste", - "Enable high contrast mode" : "Habilitar modo de Contraste Alto", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Un modo de alto contraste para facilitar su navegación. Se reducirá la calidad visual pero se aumentará la claridad.", - "Dyslexia font" : "Dislexia fuente", - "Enable dyslexia font" : "Habilitar la fuente para personas con dislexia", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic es un tipo de letra/fuente gratuita diseñada para mitigar algunos de los errores comunes de lectura causados ​​por la dislexia.", - "Accessibility" : "Accesibilidad", - "Accessibility options for nextcloud" : "Opciones de accesibilidad para nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Proporciona múltiples opciones de accesibilidad para facilitar el uso de Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "El acceso universal es muy importante para nosotros. Seguimos los estándares web y verificamos que todo se pueda usar también sin mouse y software de asistencia, como lectores de pantalla. Nuestro objetivo es cumplir con las {pautas} Accesibilidad al contenido web {linkend} 2.1 en el nivel AA, con el tema de alto contraste incluso en el nivel AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Si encuentra algún problema, no dude en informarlo en {issuetracker}nuestro rastreador de problemas {linkend}. Y si desea participar, ¡únase a {designteam}a nuestro equipo de diseño {linkend}!" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/es_CL.js b/apps/accessibility/l10n/es_CL.js deleted file mode 100644 index c0d1bf69b99..00000000000 --- a/apps/accessibility/l10n/es_CL.js +++ /dev/null @@ -1,14 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Tema Oscuro", - "Enable dark theme" : "Habilitar el tema oscuro", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Tema oscuro facilita la navegación, reduciendo el brillo y la luminosidad. Aún se encuentra en desarrollo, así que, por favor, comunique cualquier problema que encuentre.", - "High contrast mode" : "Modo de alto contraste", - "Enable high contrast mode" : "Habilitar modo de contraste alto", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Modo de alto contraste facilita tu navegación. La calidad visual puede ser menor pero se incrementa la claridad.", - "Dyslexia font" : "Fuente para las personas con dislexia", - "Enable dyslexia font" : "Habilita la fuente para personas con dislexia", - "Accessibility options for nextcloud" : "Opciones de acceso para nexcloud" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/apps/accessibility/l10n/es_CL.json b/apps/accessibility/l10n/es_CL.json deleted file mode 100644 index f84036e1330..00000000000 --- a/apps/accessibility/l10n/es_CL.json +++ /dev/null @@ -1,12 +0,0 @@ -{ "translations": { - "Dark theme" : "Tema Oscuro", - "Enable dark theme" : "Habilitar el tema oscuro", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Tema oscuro facilita la navegación, reduciendo el brillo y la luminosidad. Aún se encuentra en desarrollo, así que, por favor, comunique cualquier problema que encuentre.", - "High contrast mode" : "Modo de alto contraste", - "Enable high contrast mode" : "Habilitar modo de contraste alto", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Modo de alto contraste facilita tu navegación. La calidad visual puede ser menor pero se incrementa la claridad.", - "Dyslexia font" : "Fuente para las personas con dislexia", - "Enable dyslexia font" : "Habilita la fuente para personas con dislexia", - "Accessibility options for nextcloud" : "Opciones de acceso para nexcloud" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/es_CO.js b/apps/accessibility/l10n/es_CO.js deleted file mode 100644 index 3d802c62781..00000000000 --- a/apps/accessibility/l10n/es_CO.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Tema oscuro", - "Enable dark theme" : "Habilitar tema oscuro", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "El tema oscuro se usa para aliviar sus ojos al reducir la luminosidad y el brillo general. Todavía está en desarrollo, así que informa cualquier problema que puedas encontrar.", - "High contrast mode" : "Modo de alto contraste", - "Enable high contrast mode" : "Habilitar alto contraste", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "El modo de alto contraste se usa para facilitar la navegación. Se reducirá la calidad visual pero aumentará la claridad.", - "Dyslexia font" : "Ayuda para disléxicos", - "Enable dyslexia font" : "Habilitar ayuda para disléxicos", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDislexic es una herramienta libre diseñada para mitigar algunos de los errores más comunes causados por la dislexia.", - "Accessibility" : "Accesibilidad", - "Accessibility options for nextcloud" : "Opciones de Accesibilidad para Nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Os da varias opciones de accesibilidad para facilitar su uso de Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Acceso universal es muy importante para nosotros. Nosotros seguimos los estándares del internet y revisamos que todo este usable hasta sin ratón, y programas ayudantes como lectores de pantalla. Nosotros aspiramos de conformar con las {guidelines} Guías de Contenido Accesible del Web {linkend} 2.1 a nivel de AA y con un nivel de AAA con el tema de alto contraste. ", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Si encuentras cualquier problema, no dudes de informarnos en {issuetracker} nuestro buscador de errores{linkend}, y si quieres involucrarse, únese {designteam} nuestro equipo de diseño {{inkend} !" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/apps/accessibility/l10n/es_CO.json b/apps/accessibility/l10n/es_CO.json deleted file mode 100644 index ddced901dad..00000000000 --- a/apps/accessibility/l10n/es_CO.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Tema oscuro", - "Enable dark theme" : "Habilitar tema oscuro", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "El tema oscuro se usa para aliviar sus ojos al reducir la luminosidad y el brillo general. Todavía está en desarrollo, así que informa cualquier problema que puedas encontrar.", - "High contrast mode" : "Modo de alto contraste", - "Enable high contrast mode" : "Habilitar alto contraste", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "El modo de alto contraste se usa para facilitar la navegación. Se reducirá la calidad visual pero aumentará la claridad.", - "Dyslexia font" : "Ayuda para disléxicos", - "Enable dyslexia font" : "Habilitar ayuda para disléxicos", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDislexic es una herramienta libre diseñada para mitigar algunos de los errores más comunes causados por la dislexia.", - "Accessibility" : "Accesibilidad", - "Accessibility options for nextcloud" : "Opciones de Accesibilidad para Nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Os da varias opciones de accesibilidad para facilitar su uso de Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Acceso universal es muy importante para nosotros. Nosotros seguimos los estándares del internet y revisamos que todo este usable hasta sin ratón, y programas ayudantes como lectores de pantalla. Nosotros aspiramos de conformar con las {guidelines} Guías de Contenido Accesible del Web {linkend} 2.1 a nivel de AA y con un nivel de AAA con el tema de alto contraste. ", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Si encuentras cualquier problema, no dudes de informarnos en {issuetracker} nuestro buscador de errores{linkend}, y si quieres involucrarse, únese {designteam} nuestro equipo de diseño {{inkend} !" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/es_DO.js b/apps/accessibility/l10n/es_DO.js deleted file mode 100644 index 93ceb2df649..00000000000 --- a/apps/accessibility/l10n/es_DO.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Tema Oscuro", - "Enable dark theme" : "Habilita el tema oscuro", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Usa el tema oscuro para ayudar a tus ojos reduciendo el brillo en general. Todavía esta en desarrollo, entonces reporta cualquier problemas que encuentres", - "High contrast mode" : "Modo de alto contraste", - "Enable high contrast mode" : "Habilita el modo de alto contraste", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Un modo de alto contraste para mejorar tu navegacion. La calidad visual se vera reducida pero la claridad se mejorara.", - "Dyslexia font" : "Fuente para las personas con dislexia", - "Enable dyslexia font" : "Habilita la fuente de dislexia", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic es un tipo de letra o fuente gratuito diseñado para mitigar algunos de los errores de lectura comunes causados ​​por la dislexia.", - "Accessibility" : "Accesibilidad", - "Accessibility options for nextcloud" : "Opciones de accesibilidad para nexcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Proporciona varias opciones de accesibilidad para facilitar el uso de Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "El acceso universal es muy importante para nosotros. Seguimos los estándares web y verificamos que todo se pueda usar también sin mouse y software de asistencia, como lectores de pantalla. Nuestro objetivo es cumplir con las {guidelines}Pautas de accesibilidad al contenido web{linkend} 2.1 en el nivel AA, con el tema de alto contraste incluso en el nivel AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Si encuentras cualquier problemas, no dudes de reportarlos en {issuetracker}nuestro rastreador de problemas{linkend}. Y si quieres participar, únete a {designteam}nuestro equipo de diseño{linkend}." -}, -"nplurals=2; plural=(n != 1);"); diff --git a/apps/accessibility/l10n/es_DO.json b/apps/accessibility/l10n/es_DO.json deleted file mode 100644 index baf51770964..00000000000 --- a/apps/accessibility/l10n/es_DO.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Tema Oscuro", - "Enable dark theme" : "Habilita el tema oscuro", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Usa el tema oscuro para ayudar a tus ojos reduciendo el brillo en general. Todavía esta en desarrollo, entonces reporta cualquier problemas que encuentres", - "High contrast mode" : "Modo de alto contraste", - "Enable high contrast mode" : "Habilita el modo de alto contraste", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Un modo de alto contraste para mejorar tu navegacion. La calidad visual se vera reducida pero la claridad se mejorara.", - "Dyslexia font" : "Fuente para las personas con dislexia", - "Enable dyslexia font" : "Habilita la fuente de dislexia", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic es un tipo de letra o fuente gratuito diseñado para mitigar algunos de los errores de lectura comunes causados ​​por la dislexia.", - "Accessibility" : "Accesibilidad", - "Accessibility options for nextcloud" : "Opciones de accesibilidad para nexcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Proporciona varias opciones de accesibilidad para facilitar el uso de Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "El acceso universal es muy importante para nosotros. Seguimos los estándares web y verificamos que todo se pueda usar también sin mouse y software de asistencia, como lectores de pantalla. Nuestro objetivo es cumplir con las {guidelines}Pautas de accesibilidad al contenido web{linkend} 2.1 en el nivel AA, con el tema de alto contraste incluso en el nivel AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Si encuentras cualquier problemas, no dudes de reportarlos en {issuetracker}nuestro rastreador de problemas{linkend}. Y si quieres participar, únete a {designteam}nuestro equipo de diseño{linkend}." -},"pluralForm" :"nplurals=2; plural=(n != 1);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/es_EC.js b/apps/accessibility/l10n/es_EC.js deleted file mode 100644 index 2088c24846c..00000000000 --- a/apps/accessibility/l10n/es_EC.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Tema Oscuro", - "Enable dark theme" : "Activar Tema Oscuro", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Un tema oscuro para aliviar sus ojos al reducir la luminosidad y el brillo general. Todavía está en desarrollo, así que informe cualquier problema que pueda encontrar.", - "High contrast mode" : "Modo de alto contraste", - "Enable high contrast mode" : "Habilitar el modo de alto contraste", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Un modo de alto contraste para facilitar su navegación. Se reducirá la calidad visual pero se aumentará la claridad.", - "Dyslexia font" : "Fuente dislexia", - "Enable dyslexia font" : "Habilitar Fuente dislexia", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic es un tipo de letra / fuente gratuito diseñado para mitigar algunos de los errores de lectura comunes causados por la dislexia.", - "Accessibility" : "Accesibilidad", - "Accessibility options for nextcloud" : "Opciones de accesibilidad para nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Proporciona múltiples opciones de accesibilidad para facilitar su uso de Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "El acceso universal es muy importante para nosotros. Seguimos los estándares web y verificamos que todo sea utilizable también sin mouse y software de asistencia, como lectores de pantalla. Nuestro objetivo es cumplir con las {guidelines} Directrices de accesibilidad al contenido web {linkend} 2.1 en el nivel AA, con el tema de alto contraste incluso en el nivel AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Si encuentra algún problema, no dude en informarlo en {issuetracker} nuestro rastreador de problemas {linkend}. Y si quiere participar, ¡únase a {designteam} nuestro equipo de diseño {linkend}!" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/apps/accessibility/l10n/es_EC.json b/apps/accessibility/l10n/es_EC.json deleted file mode 100644 index a3c5e17dc5d..00000000000 --- a/apps/accessibility/l10n/es_EC.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Tema Oscuro", - "Enable dark theme" : "Activar Tema Oscuro", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Un tema oscuro para aliviar sus ojos al reducir la luminosidad y el brillo general. Todavía está en desarrollo, así que informe cualquier problema que pueda encontrar.", - "High contrast mode" : "Modo de alto contraste", - "Enable high contrast mode" : "Habilitar el modo de alto contraste", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Un modo de alto contraste para facilitar su navegación. Se reducirá la calidad visual pero se aumentará la claridad.", - "Dyslexia font" : "Fuente dislexia", - "Enable dyslexia font" : "Habilitar Fuente dislexia", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic es un tipo de letra / fuente gratuito diseñado para mitigar algunos de los errores de lectura comunes causados por la dislexia.", - "Accessibility" : "Accesibilidad", - "Accessibility options for nextcloud" : "Opciones de accesibilidad para nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Proporciona múltiples opciones de accesibilidad para facilitar su uso de Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "El acceso universal es muy importante para nosotros. Seguimos los estándares web y verificamos que todo sea utilizable también sin mouse y software de asistencia, como lectores de pantalla. Nuestro objetivo es cumplir con las {guidelines} Directrices de accesibilidad al contenido web {linkend} 2.1 en el nivel AA, con el tema de alto contraste incluso en el nivel AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Si encuentra algún problema, no dude en informarlo en {issuetracker} nuestro rastreador de problemas {linkend}. Y si quiere participar, ¡únase a {designteam} nuestro equipo de diseño {linkend}!" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/es_GT.js b/apps/accessibility/l10n/es_GT.js deleted file mode 100644 index 9ec57375c37..00000000000 --- a/apps/accessibility/l10n/es_GT.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Tema Oscuro", - "Enable dark theme" : "Habilitar el tema oscuro", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Tema oscuro facilita la navegación, reduciendo el brillo y la luminosidad. Aún se encuentra en desarrollo, así que, por favor, comunique cualquier problema que encuentre.", - "High contrast mode" : "Modo de alto contraste", - "Enable high contrast mode" : "Habilitar modo de contraste alto", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Modo de alto contraste facilita tu navegación. La calidad visual puede ser menor pero se incrementa la claridad.", - "Dyslexia font" : "Fuente para las personas con dislexia", - "Enable dyslexia font" : "Habilita la fuente para personas con dislexia", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic es un tipo de letra libre diseñada para reducir algunos de los errores de lectura comunes causados por la dislexia.", - "Accessibility" : "Accesibilidad", - "Accessibility options for nextcloud" : "Opciones de accesibilidad para nexcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Provee múltiples opciones de accesibilidad para facilitar tu uso de Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "El acceso universal es muy importante para nosotros. Seguimos los estándares web y verificamos que todo sea utilizable inclusive sin ratón, y con software de asistencia como lectores de pantalla. Buscamos cumplir con las {guidelines}Guías de Accesibilidad de Contenido Web{linkend} 2.1 sobre nivel AA, incluso sobre nivel AAA para el tema de alto contraste.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Si encuentras cualquier problema, no dudes en reportarlo en {issuetracker}nuestra lista de errores{linkend}. Y si deseas involucrarte, ¡únete a {designteam}nuestro equipo de diseño{linkend}!" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/apps/accessibility/l10n/es_GT.json b/apps/accessibility/l10n/es_GT.json deleted file mode 100644 index e3da8338778..00000000000 --- a/apps/accessibility/l10n/es_GT.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Tema Oscuro", - "Enable dark theme" : "Habilitar el tema oscuro", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Tema oscuro facilita la navegación, reduciendo el brillo y la luminosidad. Aún se encuentra en desarrollo, así que, por favor, comunique cualquier problema que encuentre.", - "High contrast mode" : "Modo de alto contraste", - "Enable high contrast mode" : "Habilitar modo de contraste alto", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Modo de alto contraste facilita tu navegación. La calidad visual puede ser menor pero se incrementa la claridad.", - "Dyslexia font" : "Fuente para las personas con dislexia", - "Enable dyslexia font" : "Habilita la fuente para personas con dislexia", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic es un tipo de letra libre diseñada para reducir algunos de los errores de lectura comunes causados por la dislexia.", - "Accessibility" : "Accesibilidad", - "Accessibility options for nextcloud" : "Opciones de accesibilidad para nexcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Provee múltiples opciones de accesibilidad para facilitar tu uso de Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "El acceso universal es muy importante para nosotros. Seguimos los estándares web y verificamos que todo sea utilizable inclusive sin ratón, y con software de asistencia como lectores de pantalla. Buscamos cumplir con las {guidelines}Guías de Accesibilidad de Contenido Web{linkend} 2.1 sobre nivel AA, incluso sobre nivel AAA para el tema de alto contraste.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Si encuentras cualquier problema, no dudes en reportarlo en {issuetracker}nuestra lista de errores{linkend}. Y si deseas involucrarte, ¡únete a {designteam}nuestro equipo de diseño{linkend}!" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/es_MX.js b/apps/accessibility/l10n/es_MX.js deleted file mode 100644 index 5f0fe397bdb..00000000000 --- a/apps/accessibility/l10n/es_MX.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Tema Oscuro", - "Enable dark theme" : "Habilitar tema oscuro", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Un tema oscuro para ayudar a tus ojos al reducir el brillo y luminosidad en general. Todavía está bajo desarrollo, así que por favor reporta cualquier problema que pudieras encontrar.", - "High contrast mode" : "Modo de alto contraste", - "Enable high contrast mode" : "Habilitar modo de alto contraste", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Modo de alto contraste para facilitar tu navegación. La calidad visual puede ser menor pero incrementa la claridad.", - "Dyslexia font" : "Fuente para dislexia", - "Enable dyslexia font" : "Habilitar fuente para dislexia", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic es una tipografía/fuente diseñada para mitigar algunos de los errores comunes de lectura causados por dislexia.", - "Accessibility" : "Accesibilidad", - "Accessibility options for nextcloud" : "Opciones de accesibilidad para nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Provee múltiples opciones de accesibilidad para facilitar tu uso de Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "El acceso universal es muy importante para nosotros. Seguimos los estándares web y verificamos que todo sea utilizable inclusive sin ratón, y con software de asistencia como lectores de pantalla. Buscamos cumplir con las {guidelines}Guías de Accesibilidad de Contenido Web{linkend} 2.1 sobre nivel AA, incluso sobre nivel AAA para el tema de alto contraste.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Si encuentras cualquier problema, no dudes en reportarlo en {issuetracker}nuestra lista de errores{linkend}. Y si deseas involucrarte, ¡únete a {designteam}nuestro equipo de diseño{linkend}!" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/apps/accessibility/l10n/es_MX.json b/apps/accessibility/l10n/es_MX.json deleted file mode 100644 index 1b9730d2f83..00000000000 --- a/apps/accessibility/l10n/es_MX.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Tema Oscuro", - "Enable dark theme" : "Habilitar tema oscuro", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Un tema oscuro para ayudar a tus ojos al reducir el brillo y luminosidad en general. Todavía está bajo desarrollo, así que por favor reporta cualquier problema que pudieras encontrar.", - "High contrast mode" : "Modo de alto contraste", - "Enable high contrast mode" : "Habilitar modo de alto contraste", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Modo de alto contraste para facilitar tu navegación. La calidad visual puede ser menor pero incrementa la claridad.", - "Dyslexia font" : "Fuente para dislexia", - "Enable dyslexia font" : "Habilitar fuente para dislexia", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic es una tipografía/fuente diseñada para mitigar algunos de los errores comunes de lectura causados por dislexia.", - "Accessibility" : "Accesibilidad", - "Accessibility options for nextcloud" : "Opciones de accesibilidad para nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Provee múltiples opciones de accesibilidad para facilitar tu uso de Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "El acceso universal es muy importante para nosotros. Seguimos los estándares web y verificamos que todo sea utilizable inclusive sin ratón, y con software de asistencia como lectores de pantalla. Buscamos cumplir con las {guidelines}Guías de Accesibilidad de Contenido Web{linkend} 2.1 sobre nivel AA, incluso sobre nivel AAA para el tema de alto contraste.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Si encuentras cualquier problema, no dudes en reportarlo en {issuetracker}nuestra lista de errores{linkend}. Y si deseas involucrarte, ¡únete a {designteam}nuestro equipo de diseño{linkend}!" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/et_EE.js b/apps/accessibility/l10n/et_EE.js deleted file mode 100644 index 759c3128f8c..00000000000 --- a/apps/accessibility/l10n/et_EE.js +++ /dev/null @@ -1,14 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Tume teema", - "Enable dark theme" : "Luba tume teema", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Tume teema vähedab koormust sinu silmadele, vähendades ekraani eredust. See funktsionaalsus on hetkel arendamisel, palun andke sellega seotud probleemidest meile teada.", - "High contrast mode" : "Kõrge kontrastsusega režiim", - "Enable high contrast mode" : "Lubage kõrge kontrastsusega režiim.", - "Dyslexia font" : "Düsleksia font", - "Enable dyslexia font" : "Luba düsleksia font", - "Accessibility" : "Ligipääsetavus", - "Accessibility options for nextcloud" : "Ligipääsetavuse valikud Nextcloudis" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/apps/accessibility/l10n/et_EE.json b/apps/accessibility/l10n/et_EE.json deleted file mode 100644 index 25c9fa9609b..00000000000 --- a/apps/accessibility/l10n/et_EE.json +++ /dev/null @@ -1,12 +0,0 @@ -{ "translations": { - "Dark theme" : "Tume teema", - "Enable dark theme" : "Luba tume teema", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Tume teema vähedab koormust sinu silmadele, vähendades ekraani eredust. See funktsionaalsus on hetkel arendamisel, palun andke sellega seotud probleemidest meile teada.", - "High contrast mode" : "Kõrge kontrastsusega režiim", - "Enable high contrast mode" : "Lubage kõrge kontrastsusega režiim.", - "Dyslexia font" : "Düsleksia font", - "Enable dyslexia font" : "Luba düsleksia font", - "Accessibility" : "Ligipääsetavus", - "Accessibility options for nextcloud" : "Ligipääsetavuse valikud Nextcloudis" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/eu.js b/apps/accessibility/l10n/eu.js deleted file mode 100644 index 4ed6bbcfdea..00000000000 --- a/apps/accessibility/l10n/eu.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Gai iluna", - "Enable dark theme" : "Gaitu gai iluna", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Arindu begietako kaltea gai ilunaz argitasuna eta distira murriztuz. Garapenean dagoen aukera da, beraz, eman aurkitu zenezakeen edozein arazoren berri mesedez.", - "High contrast mode" : "Kontraste handiko modua", - "Enable high contrast mode" : "Gaitu kontraste handiko modua", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Kontraste handiko modua zuri nabigazioa errazteko. Kalitate bisuala murriztuko da baina argitasuna handiagotu.", - "Dyslexia font" : "Dislexia letra-tipoa", - "Enable dyslexia font" : "Gaitu dislexia letra-tipoa", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic letra-tipo librea da, dislexiak eragindako ohiko irakurketa akats batzuk leuntzeko diseinatua.", - "Accessibility" : "Erabilerraztasuna", - "Accessibility options for nextcloud" : "Erabilerraztasun aukerak Nextcloudentzat", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Nextclouden erabilera errazteko hainbat aukera eskaintzen ditu.", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Sarbide unibertsala izatea oso garrantzitsua da guretzat. Web estadandarrak jarraitu eta guztia sagurik gabe erabili ahal izatea bermatzen dugu, pantaila-irakurle moduko software laguntzaileak barne. Helburu bezala jartzen dugu {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 AA mailan betetzea, kontraste altuko modua AAA mailaraino betez.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Arazorik aurkitzen baduzu, bidali ezazu lasai {issuetracker}gure arazo-kontrolatzailera{linkend}. Eta parte hartu nahi baduzu, elkartu zaitez gurekin {designteam}gure diseinu taldera{linkend}!" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/apps/accessibility/l10n/eu.json b/apps/accessibility/l10n/eu.json deleted file mode 100644 index 8013d2f0173..00000000000 --- a/apps/accessibility/l10n/eu.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Gai iluna", - "Enable dark theme" : "Gaitu gai iluna", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Arindu begietako kaltea gai ilunaz argitasuna eta distira murriztuz. Garapenean dagoen aukera da, beraz, eman aurkitu zenezakeen edozein arazoren berri mesedez.", - "High contrast mode" : "Kontraste handiko modua", - "Enable high contrast mode" : "Gaitu kontraste handiko modua", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Kontraste handiko modua zuri nabigazioa errazteko. Kalitate bisuala murriztuko da baina argitasuna handiagotu.", - "Dyslexia font" : "Dislexia letra-tipoa", - "Enable dyslexia font" : "Gaitu dislexia letra-tipoa", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic letra-tipo librea da, dislexiak eragindako ohiko irakurketa akats batzuk leuntzeko diseinatua.", - "Accessibility" : "Erabilerraztasuna", - "Accessibility options for nextcloud" : "Erabilerraztasun aukerak Nextcloudentzat", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Nextclouden erabilera errazteko hainbat aukera eskaintzen ditu.", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Sarbide unibertsala izatea oso garrantzitsua da guretzat. Web estadandarrak jarraitu eta guztia sagurik gabe erabili ahal izatea bermatzen dugu, pantaila-irakurle moduko software laguntzaileak barne. Helburu bezala jartzen dugu {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 AA mailan betetzea, kontraste altuko modua AAA mailaraino betez.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Arazorik aurkitzen baduzu, bidali ezazu lasai {issuetracker}gure arazo-kontrolatzailera{linkend}. Eta parte hartu nahi baduzu, elkartu zaitez gurekin {designteam}gure diseinu taldera{linkend}!" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/fa.js b/apps/accessibility/l10n/fa.js deleted file mode 100644 index 907d9d1584d..00000000000 --- a/apps/accessibility/l10n/fa.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "زمینه تیره", - "Enable dark theme" : "فعال‌سازی زمینه تیره", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "یک زمینه تیره برای راحتی چشم‌های شما با کاهش روی‌هم‌رفته درخشندگی و روشنایی. این امکان هنوز در حال توسعه می‌باشد، بنابراین در صورت مشاهده هرگونه ایراد، آن را گزارش کنید.", - "High contrast mode" : "حالت با کنتراست بالا", - "Enable high contrast mode" : "فعالسازی حالت کنتراست بالا", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "یک حالت کنتراست بالا برای سهولت در پیمایش. کیفیت بصری کاهش، اما وضوح افزایش می‌یابد.", - "Dyslexia font" : "فونت خوانش‌پریشی یا دیسلکسیا", - "Enable dyslexia font" : "فونت خوانش‌پریشی فعال شود", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "اُپن‌دیسلکسیک یک فونت/طرح حروف رایگان است که برای کاهش برخی از خطاهای معمول در خواندن ناشی از خوانش‌پریشی طراحی شده‌است.", - "Accessibility" : "قابلیت دسترس‌پذیری", - "Accessibility options for nextcloud" : "گزینه‌های دسترس‌پذیری برای نکست‌کلود", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "گزینه‌های متعدد دسترس‌پذیری برای تسهیل کار شما در نکست‌کلود را فراهم می‌سازد.", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "دسترسی جهانی برای ما بسیار مهم است. ما از استانداردهای وب پیروی می‌کنیم و دقیت می‌کنیم تا همه چیز بدون موش‌واره و نرم‌افزارهای کمکی مانند صفحه‌خوان‌ها نیز قابل استفاده باشند. هدف ما این است که مطابق با دستورالعمل {guidelines}راهنماهای دسترس‌پذیری محتوا تحت وب{linkend} نسخه 2.1 در سطح AA، و حتی با زمینه کنتراست بالا در سطح AAA باشیم.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "اگر مشکلی پیدا کردید، از گزارش آنها در {issuetracker}در دنبال‌کننده مشکلات ما{linked} دریغ نکنید. و اگر می‌خواهید مشارکت داشته باشید، به {designteam}تیم طراحی ما{linkend} بپیوندید!" -}, -"nplurals=2; plural=(n > 1);"); diff --git a/apps/accessibility/l10n/fa.json b/apps/accessibility/l10n/fa.json deleted file mode 100644 index f54170db197..00000000000 --- a/apps/accessibility/l10n/fa.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "زمینه تیره", - "Enable dark theme" : "فعال‌سازی زمینه تیره", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "یک زمینه تیره برای راحتی چشم‌های شما با کاهش روی‌هم‌رفته درخشندگی و روشنایی. این امکان هنوز در حال توسعه می‌باشد، بنابراین در صورت مشاهده هرگونه ایراد، آن را گزارش کنید.", - "High contrast mode" : "حالت با کنتراست بالا", - "Enable high contrast mode" : "فعالسازی حالت کنتراست بالا", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "یک حالت کنتراست بالا برای سهولت در پیمایش. کیفیت بصری کاهش، اما وضوح افزایش می‌یابد.", - "Dyslexia font" : "فونت خوانش‌پریشی یا دیسلکسیا", - "Enable dyslexia font" : "فونت خوانش‌پریشی فعال شود", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "اُپن‌دیسلکسیک یک فونت/طرح حروف رایگان است که برای کاهش برخی از خطاهای معمول در خواندن ناشی از خوانش‌پریشی طراحی شده‌است.", - "Accessibility" : "قابلیت دسترس‌پذیری", - "Accessibility options for nextcloud" : "گزینه‌های دسترس‌پذیری برای نکست‌کلود", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "گزینه‌های متعدد دسترس‌پذیری برای تسهیل کار شما در نکست‌کلود را فراهم می‌سازد.", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "دسترسی جهانی برای ما بسیار مهم است. ما از استانداردهای وب پیروی می‌کنیم و دقیت می‌کنیم تا همه چیز بدون موش‌واره و نرم‌افزارهای کمکی مانند صفحه‌خوان‌ها نیز قابل استفاده باشند. هدف ما این است که مطابق با دستورالعمل {guidelines}راهنماهای دسترس‌پذیری محتوا تحت وب{linkend} نسخه 2.1 در سطح AA، و حتی با زمینه کنتراست بالا در سطح AAA باشیم.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "اگر مشکلی پیدا کردید، از گزارش آنها در {issuetracker}در دنبال‌کننده مشکلات ما{linked} دریغ نکنید. و اگر می‌خواهید مشارکت داشته باشید، به {designteam}تیم طراحی ما{linkend} بپیوندید!" -},"pluralForm" :"nplurals=2; plural=(n > 1);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/fi.js b/apps/accessibility/l10n/fi.js deleted file mode 100644 index 4d90e041dfc..00000000000 --- a/apps/accessibility/l10n/fi.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Tumma teema", - "Enable dark theme" : "Käytä tummaa teemaa", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Tumma teema helpottaa silmien rasitusta vähentämällä kokonaiskirkkautta. Teemaa kehitetään edelleen, joten ilmoitathan mahdollisesti kohtaamasi ongelmat.", - "High contrast mode" : "Suuren kontrastin tila", - "Enable high contrast mode" : "Käytä suuren kontrastin tilaa", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Suuren kontrasin tila helpottaa liikkumista. Visuaalista näyttävyyttä karsitaan hieman, jotta käyttöliittymä olisi jopa aiempaa selkeämpi.", - "Dyslexia font" : "Lukihäiriökirjasin", - "Enable dyslexia font" : "Käytä lukihäiriökirjasinta", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic on vapaa kirjasin, joka on suunniteltu lieventämään lukihäiriön aiheuttamia lukuvirheitä.", - "Accessibility" : "Saavutettavuus", - "Accessibility options for nextcloud" : "Saavutettavuusvaihtoehdot Nextcloudille", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Tarjoaa monia saavutettavuusvaihtoehtoja helpottamaan Nexcloudin käyttöä.", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Saavutettavuus on erittäin tärkeää meille. Seuraamme verkkostandardeja ja varmistamme, että kaikki on käytettävissä ilman hiirtä sekä avustavien ohjelmistojen kuten ruudunlukijoiden avulla. Pyrimme olemaan yhteensopivia {guidelines}Web Content Accessibility Guidelines{linkend} -ohjeistuksen version 2.1 AA-tason kanssa, suuren kontrastin teemalla pyrimme jopa AAA-tasoon.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Jos löydät ongelmia, älä epäröi ilmoittaa niistä {issuetracker}virheidenseurantajärjestelmäämme{linkend}. Jos haluat osallistua, liity {designteam}suunnitteluryhmäämme{linkend}!" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/apps/accessibility/l10n/fi.json b/apps/accessibility/l10n/fi.json deleted file mode 100644 index 918e04e578e..00000000000 --- a/apps/accessibility/l10n/fi.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Tumma teema", - "Enable dark theme" : "Käytä tummaa teemaa", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Tumma teema helpottaa silmien rasitusta vähentämällä kokonaiskirkkautta. Teemaa kehitetään edelleen, joten ilmoitathan mahdollisesti kohtaamasi ongelmat.", - "High contrast mode" : "Suuren kontrastin tila", - "Enable high contrast mode" : "Käytä suuren kontrastin tilaa", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Suuren kontrasin tila helpottaa liikkumista. Visuaalista näyttävyyttä karsitaan hieman, jotta käyttöliittymä olisi jopa aiempaa selkeämpi.", - "Dyslexia font" : "Lukihäiriökirjasin", - "Enable dyslexia font" : "Käytä lukihäiriökirjasinta", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic on vapaa kirjasin, joka on suunniteltu lieventämään lukihäiriön aiheuttamia lukuvirheitä.", - "Accessibility" : "Saavutettavuus", - "Accessibility options for nextcloud" : "Saavutettavuusvaihtoehdot Nextcloudille", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Tarjoaa monia saavutettavuusvaihtoehtoja helpottamaan Nexcloudin käyttöä.", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Saavutettavuus on erittäin tärkeää meille. Seuraamme verkkostandardeja ja varmistamme, että kaikki on käytettävissä ilman hiirtä sekä avustavien ohjelmistojen kuten ruudunlukijoiden avulla. Pyrimme olemaan yhteensopivia {guidelines}Web Content Accessibility Guidelines{linkend} -ohjeistuksen version 2.1 AA-tason kanssa, suuren kontrastin teemalla pyrimme jopa AAA-tasoon.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Jos löydät ongelmia, älä epäröi ilmoittaa niistä {issuetracker}virheidenseurantajärjestelmäämme{linkend}. Jos haluat osallistua, liity {designteam}suunnitteluryhmäämme{linkend}!" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/fo.js b/apps/accessibility/l10n/fo.js deleted file mode 100644 index b24f1622ca1..00000000000 --- a/apps/accessibility/l10n/fo.js +++ /dev/null @@ -1,16 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Eitt myrkt tema fyri at gera tað lættari fyri eyguni við at minka um bjartleikan á skerminum. Temaði er enn undir menning, so vinarliga sig frá um trupulleikar tú møguliga finnur.", - "Dyslexia font" : "Stavsnið fyri orðblind", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic er eitt frítt stavsnið sniðgivið fyri at lætta um vanlig lesið feilir orsaka orðblindni.", - "Accessibility" : "Atkomuligt", - "Accessibility options for nextcloud" : "Atkomulig møguleikar fyri Nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Bjóðar fleiri atkomulig møguleikar fyri at gera tað lættari at brúka Nextcloud", - "Web Content Accessibility Guidelines" : "Leiðbeining fyri atkomiligt innihald á netinum", - "our issue tracker" : "okkara trupulleika sporarið", - "our design team" : "okkara sniðgevings arbeiðsbólkur", - "Enable" : "Gilda", - "Dark theme (beta)" : "Myrkt tema (beta)" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/apps/accessibility/l10n/fo.json b/apps/accessibility/l10n/fo.json deleted file mode 100644 index 31f7e54f8cb..00000000000 --- a/apps/accessibility/l10n/fo.json +++ /dev/null @@ -1,14 +0,0 @@ -{ "translations": { - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Eitt myrkt tema fyri at gera tað lættari fyri eyguni við at minka um bjartleikan á skerminum. Temaði er enn undir menning, so vinarliga sig frá um trupulleikar tú møguliga finnur.", - "Dyslexia font" : "Stavsnið fyri orðblind", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic er eitt frítt stavsnið sniðgivið fyri at lætta um vanlig lesið feilir orsaka orðblindni.", - "Accessibility" : "Atkomuligt", - "Accessibility options for nextcloud" : "Atkomulig møguleikar fyri Nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Bjóðar fleiri atkomulig møguleikar fyri at gera tað lættari at brúka Nextcloud", - "Web Content Accessibility Guidelines" : "Leiðbeining fyri atkomiligt innihald á netinum", - "our issue tracker" : "okkara trupulleika sporarið", - "our design team" : "okkara sniðgevings arbeiðsbólkur", - "Enable" : "Gilda", - "Dark theme (beta)" : "Myrkt tema (beta)" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/fr.js b/apps/accessibility/l10n/fr.js deleted file mode 100644 index 20b104a8c35..00000000000 --- a/apps/accessibility/l10n/fr.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Thème sombre", - "Enable dark theme" : "Activer le thème sombre", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Un thème sombre pour soulager vos yeux en réduisant la luminosité générale. Il est encore en cours de développement, veuillez donc nous signaler les problèmes que vous pourriez rencontrer.", - "High contrast mode" : "Thème à contraste élevé", - "Enable high contrast mode" : "Activer le thème à contraste élevé", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Un thème au contraste élevé pour faciliter votre navigation. La qualité visuelle sera réduite, mais la lisibilité sera améliorée.", - "Dyslexia font" : "Police pour dyslexiques", - "Enable dyslexia font" : "Activer la police pour dyslexiques", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic est une police de caractères libre conçue pour atténuer certaines des erreurs de lecture courantes causées par la dyslexie.", - "Accessibility" : "Accessibilité", - "Accessibility options for nextcloud" : "Options d'accessibilité pour Nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Offre de multiples options d'accessibilité pour faciliter votre utilisation de Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "L'accès universel est très important pour nous. Nous suivons les standards du web et nous assurons que tout soit également utilisable sans souris et avec des logiciels d'assistance technique tels que les lecteurs d'écran. Nous visons à respecter les {guidelines}Règles pour l'accessibilité des contenus Web{linkend} 2.1 de niveau AA et même de niveau AAA avec le thème à fort contraste.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Si vous rencontrez un problème, n'hésitez pas à nous le signaler sur {issuetracker}notre traqueur de problèmes{linkend}. Et si vous souhaitez vous impliquer, rejoignez {designteam}notre équipe de conception{linkend} !" -}, -"nplurals=2; plural=(n > 1);"); diff --git a/apps/accessibility/l10n/fr.json b/apps/accessibility/l10n/fr.json deleted file mode 100644 index 904b928d023..00000000000 --- a/apps/accessibility/l10n/fr.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Thème sombre", - "Enable dark theme" : "Activer le thème sombre", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Un thème sombre pour soulager vos yeux en réduisant la luminosité générale. Il est encore en cours de développement, veuillez donc nous signaler les problèmes que vous pourriez rencontrer.", - "High contrast mode" : "Thème à contraste élevé", - "Enable high contrast mode" : "Activer le thème à contraste élevé", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Un thème au contraste élevé pour faciliter votre navigation. La qualité visuelle sera réduite, mais la lisibilité sera améliorée.", - "Dyslexia font" : "Police pour dyslexiques", - "Enable dyslexia font" : "Activer la police pour dyslexiques", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic est une police de caractères libre conçue pour atténuer certaines des erreurs de lecture courantes causées par la dyslexie.", - "Accessibility" : "Accessibilité", - "Accessibility options for nextcloud" : "Options d'accessibilité pour Nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Offre de multiples options d'accessibilité pour faciliter votre utilisation de Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "L'accès universel est très important pour nous. Nous suivons les standards du web et nous assurons que tout soit également utilisable sans souris et avec des logiciels d'assistance technique tels que les lecteurs d'écran. Nous visons à respecter les {guidelines}Règles pour l'accessibilité des contenus Web{linkend} 2.1 de niveau AA et même de niveau AAA avec le thème à fort contraste.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Si vous rencontrez un problème, n'hésitez pas à nous le signaler sur {issuetracker}notre traqueur de problèmes{linkend}. Et si vous souhaitez vous impliquer, rejoignez {designteam}notre équipe de conception{linkend} !" -},"pluralForm" :"nplurals=2; plural=(n > 1);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/gl.js b/apps/accessibility/l10n/gl.js deleted file mode 100644 index df5d263fe40..00000000000 --- a/apps/accessibility/l10n/gl.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Tema escuro", - "Enable dark theme" : "Activar o tema escuro", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Un tema escuro para descansar a vista reducindo a luminosidade e o brillo. Aínda está en desenvolvemento, así que informe de calquera incidencia que poida atopar.", - "High contrast mode" : "Modo de alto contraste", - "Enable high contrast mode" : "Activar o modo de alto contraste", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Un modo de alto contraste para facilitar a navegación. A calidade visual será reducida, mais a claridade aumentará.", - "Dyslexia font" : "Tipo de letra para disléxicos", - "Enable dyslexia font" : "Activar o tipo de letra para disléxicos", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic é un tipo de letra libre deseñada para mitigar algúns dos erros comúns de lectura causados pola dislexia.", - "Accessibility" : "Accesibilidade", - "Accessibility options for nextcloud" : "Opcións de accesibilidade para o Nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Ofrece múltiples opcións de accesibilidade para facilitar o uso do Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Para nós o acceso universal é moi importante. Seguimos os estándares web e comprobamos que todo poida ser utilizado sen rato e software de axuda como os lectores de pantalla. O noso obxectivo é ter cumprir ás {guidelines}Directrices de accesibilidade ao contido web{linkend} 2.1 a nivel AA, co tema de alto contraste incluso a nivel AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Se atopa algún problema, non dubide en informalo no {issuetracker}noso seguidor de fallos{linkend} E se quere involucrarse, únase ao {designteam}noso equipo de deseño {linkend}!" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/apps/accessibility/l10n/gl.json b/apps/accessibility/l10n/gl.json deleted file mode 100644 index f561f5c274c..00000000000 --- a/apps/accessibility/l10n/gl.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Tema escuro", - "Enable dark theme" : "Activar o tema escuro", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Un tema escuro para descansar a vista reducindo a luminosidade e o brillo. Aínda está en desenvolvemento, así que informe de calquera incidencia que poida atopar.", - "High contrast mode" : "Modo de alto contraste", - "Enable high contrast mode" : "Activar o modo de alto contraste", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Un modo de alto contraste para facilitar a navegación. A calidade visual será reducida, mais a claridade aumentará.", - "Dyslexia font" : "Tipo de letra para disléxicos", - "Enable dyslexia font" : "Activar o tipo de letra para disléxicos", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic é un tipo de letra libre deseñada para mitigar algúns dos erros comúns de lectura causados pola dislexia.", - "Accessibility" : "Accesibilidade", - "Accessibility options for nextcloud" : "Opcións de accesibilidade para o Nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Ofrece múltiples opcións de accesibilidade para facilitar o uso do Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Para nós o acceso universal é moi importante. Seguimos os estándares web e comprobamos que todo poida ser utilizado sen rato e software de axuda como os lectores de pantalla. O noso obxectivo é ter cumprir ás {guidelines}Directrices de accesibilidade ao contido web{linkend} 2.1 a nivel AA, co tema de alto contraste incluso a nivel AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Se atopa algún problema, non dubide en informalo no {issuetracker}noso seguidor de fallos{linkend} E se quere involucrarse, únase ao {designteam}noso equipo de deseño {linkend}!" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/he.js b/apps/accessibility/l10n/he.js deleted file mode 100644 index 233d7f89db6..00000000000 --- a/apps/accessibility/l10n/he.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "ערכת עיצוב כהה", - "Enable dark theme" : "הפעלת ערכת עיצוב כהה", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "ערכת נושא כהה מפחיתה את התאורה והבהירות. ערכה זו עדיין בהליכי פיתוח, לכן מומלץ לדווח על תקלות אם יש כאלו.", - "High contrast mode" : "מצב ניגודיות גבוהה", - "Enable high contrast mode" : "הפעלת מצב ניגודיות גבוהה", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "מצב ניגודיות גבוהה מקלה על הניווט שלך. האיכות החזותית תיפגע אך השימוש יהיה ברור יותר.", - "Dyslexia font" : "גופן דיסלקציה", - "Enable dyslexia font" : "הפעלת גופן דיסלקציה", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic הוא גופן חופשי שתוכנן לפתור חלק משגיאות הקריאה הנפוצות שנגרמות עקב דיסלקציה.", - "Accessibility" : "נגישות", - "Accessibility options for nextcloud" : "אפשרויות נגישות ל־Nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "מספק מגוון אפשרויות נגישות כדי להקל את השימוש שלך ב‏־Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "גישה אוניברסלית מאוד חשובה לנו, אנו נצמדים לתקני אינטרנט ובודקים כדי לוודא שהכול שמיש גם ללא עכבר ומול תכניות סיוע כגון מקריאי מסך. אנו חותרים להיות תואמים ל{guidelines}הנחיות הנגישות לתוכן אינטרנט{linkend} 2.1 ברמת AA ועם ערכת הניגודיות הגבוהה אפילו ברמת AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "אם מצאת תקלות כלשהן, ניתן לדווח עליהן ב{issuetracker}עוקב התקלות שלנו{linkend}. אם מעניין אותך לקחת חלק, אנו מזמינים אותך להצטרף ל{designteam}צוות העיצוב שלנו{linkend}!" -}, -"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;"); diff --git a/apps/accessibility/l10n/he.json b/apps/accessibility/l10n/he.json deleted file mode 100644 index f00c59cd295..00000000000 --- a/apps/accessibility/l10n/he.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "ערכת עיצוב כהה", - "Enable dark theme" : "הפעלת ערכת עיצוב כהה", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "ערכת נושא כהה מפחיתה את התאורה והבהירות. ערכה זו עדיין בהליכי פיתוח, לכן מומלץ לדווח על תקלות אם יש כאלו.", - "High contrast mode" : "מצב ניגודיות גבוהה", - "Enable high contrast mode" : "הפעלת מצב ניגודיות גבוהה", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "מצב ניגודיות גבוהה מקלה על הניווט שלך. האיכות החזותית תיפגע אך השימוש יהיה ברור יותר.", - "Dyslexia font" : "גופן דיסלקציה", - "Enable dyslexia font" : "הפעלת גופן דיסלקציה", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic הוא גופן חופשי שתוכנן לפתור חלק משגיאות הקריאה הנפוצות שנגרמות עקב דיסלקציה.", - "Accessibility" : "נגישות", - "Accessibility options for nextcloud" : "אפשרויות נגישות ל־Nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "מספק מגוון אפשרויות נגישות כדי להקל את השימוש שלך ב‏־Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "גישה אוניברסלית מאוד חשובה לנו, אנו נצמדים לתקני אינטרנט ובודקים כדי לוודא שהכול שמיש גם ללא עכבר ומול תכניות סיוע כגון מקריאי מסך. אנו חותרים להיות תואמים ל{guidelines}הנחיות הנגישות לתוכן אינטרנט{linkend} 2.1 ברמת AA ועם ערכת הניגודיות הגבוהה אפילו ברמת AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "אם מצאת תקלות כלשהן, ניתן לדווח עליהן ב{issuetracker}עוקב התקלות שלנו{linkend}. אם מעניין אותך לקחת חלק, אנו מזמינים אותך להצטרף ל{designteam}צוות העיצוב שלנו{linkend}!" -},"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/hi_IN.js b/apps/accessibility/l10n/hi_IN.js deleted file mode 100644 index 0fb0552d850..00000000000 --- a/apps/accessibility/l10n/hi_IN.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "डार्क थीम", - "Enable dark theme" : "डार्क थीम सक्षम करें", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "समग्र चमक और चमक को कम करके अपनी आंखों को आराम देने के लिए एक अंधेरे विषय। यह अभी भी विकास के अधीन है, इसलिए कृपया कोई भी समस्या की रिपोर्ट करें।", - "High contrast mode" : "उच्च व्यतिरेक मोड", - "Enable high contrast mode" : "उच्च व्यतिरेक मोड सक्षम करें", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "आपके नेविगेशन को आसान बनाने के लिए एक उच्च कंट्रास्ट मोड। दृश्य गुणवत्ता कम हो जाएगी लेकिन स्पष्टता बढ़ जाएगी।", - "Dyslexia font" : "डिस्लेक्सिया फ़ॉन्ट", - "Enable dyslexia font" : "डिस्लेक्सिया फ़ॉन्ट सक्षम करें", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "ओपन डिस्लेक्सिया एक फ्री टाइपफेस / फॉन्ट है जिसे डिस्लेक्सिया के कारण पढ़ने वाली कुछ सामान्य त्रुटियों को कम करने के लिए डिज़ाइन किया गया है।", - "Accessibility" : "सरल उपयोग", - "Accessibility options for nextcloud" : "Nextcloud के लिए पहुंच विकल्प", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Nextcloud के अपने उपयोग को आसान बनाने के लिए कई पहुँच विकल्प प्रदान करता है", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "सार्वभौमिक पहुंच हमारे लिए बहुत महत्वपूर्ण है। हम वेब मानकों का पालन करते हैं और माउस के बिना भी सब कुछ प्रयोग करने योग्य बनाने के लिए जांच करते हैं, और सहायक सॉफ़्टवेयर जैसे स्क्रीनरीडर। हमारा लक्ष्य एए स्तर पर {दिशानिर्देश}वेब सामग्री एक्सेसिबिलिटी दिशानिर्देश{लिंकेंड} 2.1 का अनुपालन करना है, यहां तक ​​कि एएए स्तर पर भी उच्च कंट्रास्ट थीम के साथ।", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "यदि आपको कोई समस्या मिलती है, तो उन्हें {issuetracker}हमारे समस्या ट्रैकर{linkend} पर रिपोर्ट करने में संकोच न करें। और अगर आप इसमें शामिल होना चाहते हैं, तो {designteam}हमारी डिज़ाइन टीम{linkend} में शामिल हों!" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/apps/accessibility/l10n/hi_IN.json b/apps/accessibility/l10n/hi_IN.json deleted file mode 100644 index aac5131030d..00000000000 --- a/apps/accessibility/l10n/hi_IN.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "डार्क थीम", - "Enable dark theme" : "डार्क थीम सक्षम करें", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "समग्र चमक और चमक को कम करके अपनी आंखों को आराम देने के लिए एक अंधेरे विषय। यह अभी भी विकास के अधीन है, इसलिए कृपया कोई भी समस्या की रिपोर्ट करें।", - "High contrast mode" : "उच्च व्यतिरेक मोड", - "Enable high contrast mode" : "उच्च व्यतिरेक मोड सक्षम करें", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "आपके नेविगेशन को आसान बनाने के लिए एक उच्च कंट्रास्ट मोड। दृश्य गुणवत्ता कम हो जाएगी लेकिन स्पष्टता बढ़ जाएगी।", - "Dyslexia font" : "डिस्लेक्सिया फ़ॉन्ट", - "Enable dyslexia font" : "डिस्लेक्सिया फ़ॉन्ट सक्षम करें", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "ओपन डिस्लेक्सिया एक फ्री टाइपफेस / फॉन्ट है जिसे डिस्लेक्सिया के कारण पढ़ने वाली कुछ सामान्य त्रुटियों को कम करने के लिए डिज़ाइन किया गया है।", - "Accessibility" : "सरल उपयोग", - "Accessibility options for nextcloud" : "Nextcloud के लिए पहुंच विकल्प", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Nextcloud के अपने उपयोग को आसान बनाने के लिए कई पहुँच विकल्प प्रदान करता है", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "सार्वभौमिक पहुंच हमारे लिए बहुत महत्वपूर्ण है। हम वेब मानकों का पालन करते हैं और माउस के बिना भी सब कुछ प्रयोग करने योग्य बनाने के लिए जांच करते हैं, और सहायक सॉफ़्टवेयर जैसे स्क्रीनरीडर। हमारा लक्ष्य एए स्तर पर {दिशानिर्देश}वेब सामग्री एक्सेसिबिलिटी दिशानिर्देश{लिंकेंड} 2.1 का अनुपालन करना है, यहां तक ​​कि एएए स्तर पर भी उच्च कंट्रास्ट थीम के साथ।", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "यदि आपको कोई समस्या मिलती है, तो उन्हें {issuetracker}हमारे समस्या ट्रैकर{linkend} पर रिपोर्ट करने में संकोच न करें। और अगर आप इसमें शामिल होना चाहते हैं, तो {designteam}हमारी डिज़ाइन टीम{linkend} में शामिल हों!" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/hr.js b/apps/accessibility/l10n/hr.js deleted file mode 100644 index 5d1a1a0c1da..00000000000 --- a/apps/accessibility/l10n/hr.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Tamna tema", - "Enable dark theme" : "Omogući tamnu temu", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Tamna tema ublažava naprezanje očiju smanjujući ukupnu luminoznost i svjetlinu. Tema je i dalje u izradi pa nam prijavite bilo kakve probleme s korištenjem.", - "High contrast mode" : "Način jakog kontrasta", - "Enable high contrast mode" : "Omogući način jakog kontrasta", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Način jakog kontrasta olakšava navigaciju. Smanjuje vizualnu kvalitetu, ali povećava jasnoću prikaza.", - "Dyslexia font" : "Font za osobe s disleksijom", - "Enable dyslexia font" : "Omogući font za osobe s disleksijom", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic je besplatan font/izgled slova posebno osmišljen za ublažavanje nekih uobičajenih pogrešaka pri čitanju uzrokovanih disleksijom.", - "Accessibility" : "Pristupačnost", - "Accessibility options for nextcloud" : "Mogućnosti pristupačnosti za Nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Pruža višestruke mogućnosti pristupačnosti za jednostavniju upotrebu Nextclouda", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Nama je vrlo važno osigurati univerzalan pristup. Pratimo sve internetske i mrežne standarde i provjeravamo je li sustav upotrebljiv bez miša i pomoćnog softvera, kao što je čitač zaslona. Naš je cilj postići sukladnost sa {guidelines}Smjernicama pristupačnosti web-sadržaja{linkend} 2.1 na razini AA s temom jakog kontrasta na razini AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Prijavite sve pronađene poteškoće putem {issuetracker}alata za praćenje poteškoća{linkend}. Ako želite sudjelovati, pridružite se {designteam}našem dizajnerskom timu{linkend}!" -}, -"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/apps/accessibility/l10n/hr.json b/apps/accessibility/l10n/hr.json deleted file mode 100644 index e7fff39d804..00000000000 --- a/apps/accessibility/l10n/hr.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Tamna tema", - "Enable dark theme" : "Omogući tamnu temu", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Tamna tema ublažava naprezanje očiju smanjujući ukupnu luminoznost i svjetlinu. Tema je i dalje u izradi pa nam prijavite bilo kakve probleme s korištenjem.", - "High contrast mode" : "Način jakog kontrasta", - "Enable high contrast mode" : "Omogući način jakog kontrasta", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Način jakog kontrasta olakšava navigaciju. Smanjuje vizualnu kvalitetu, ali povećava jasnoću prikaza.", - "Dyslexia font" : "Font za osobe s disleksijom", - "Enable dyslexia font" : "Omogući font za osobe s disleksijom", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic je besplatan font/izgled slova posebno osmišljen za ublažavanje nekih uobičajenih pogrešaka pri čitanju uzrokovanih disleksijom.", - "Accessibility" : "Pristupačnost", - "Accessibility options for nextcloud" : "Mogućnosti pristupačnosti za Nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Pruža višestruke mogućnosti pristupačnosti za jednostavniju upotrebu Nextclouda", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Nama je vrlo važno osigurati univerzalan pristup. Pratimo sve internetske i mrežne standarde i provjeravamo je li sustav upotrebljiv bez miša i pomoćnog softvera, kao što je čitač zaslona. Naš je cilj postići sukladnost sa {guidelines}Smjernicama pristupačnosti web-sadržaja{linkend} 2.1 na razini AA s temom jakog kontrasta na razini AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Prijavite sve pronađene poteškoće putem {issuetracker}alata za praćenje poteškoća{linkend}. Ako želite sudjelovati, pridružite se {designteam}našem dizajnerskom timu{linkend}!" -},"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/apps/accessibility/l10n/hsb.js b/apps/accessibility/l10n/hsb.js deleted file mode 100644 index 442c6692ffb..00000000000 --- a/apps/accessibility/l10n/hsb.js +++ /dev/null @@ -1,13 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "ćmowy moto", - "Enable dark theme" : "ćmowy moto zmóžnić", - "High contrast mode" : "modus z wulkim kontrastom", - "Enable high contrast mode" : "modus z wulkim kontrastom zmóžnić", - "Dyslexia font" : "pismo Dyslexia", - "Enable dyslexia font" : "pismo Dyslexia zmóžnić", - "Accessibility" : "přistupnosć", - "Accessibility options for nextcloud" : "Móžnosće přistupa za nextcloud." -}, -"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"); diff --git a/apps/accessibility/l10n/hsb.json b/apps/accessibility/l10n/hsb.json deleted file mode 100644 index c436ad7d421..00000000000 --- a/apps/accessibility/l10n/hsb.json +++ /dev/null @@ -1,11 +0,0 @@ -{ "translations": { - "Dark theme" : "ćmowy moto", - "Enable dark theme" : "ćmowy moto zmóžnić", - "High contrast mode" : "modus z wulkim kontrastom", - "Enable high contrast mode" : "modus z wulkim kontrastom zmóžnić", - "Dyslexia font" : "pismo Dyslexia", - "Enable dyslexia font" : "pismo Dyslexia zmóžnić", - "Accessibility" : "přistupnosć", - "Accessibility options for nextcloud" : "Móžnosće přistupa za nextcloud." -},"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/apps/accessibility/l10n/hu.js b/apps/accessibility/l10n/hu.js deleted file mode 100644 index 4d24e162f98..00000000000 --- a/apps/accessibility/l10n/hu.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Sötét téma", - "Enable dark theme" : "Sötét téma engedélyezése", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "A sötét téma csökkenti a szemek terhelését az átlagos fényesség és fényerő csökkentésével. Még mindig fejlesztés alatt áll, így jelentse ha problémát talál.", - "High contrast mode" : "Magas kontrasztú mód", - "Enable high contrast mode" : "Magas kontrasztú mód engedélyezése", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "A magas kontrasztú téma megkönnyíti a navigációt. A képi minőség csökken, de az olvashatóság javul.", - "Dyslexia font" : "Diszlexia betűkészlet", - "Enable dyslexia font" : "Diszlexia betűkészlet engedélyezése", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "Az OpenDyslexic egy szabad betűkészlet, amely egyes, diszlexia által okozott, gyakori olvasási hibák csökkentésére lett tervezve.", - "Accessibility" : "Akadálymentesítés", - "Accessibility options for nextcloud" : "Akadálymentesítési lehetőségek a Nextcloudhoz", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Több akadálymentesítési lehetőséget biztosít, hogy megkönnyítse a Nextcloud használatát", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Az akadálymentesítés fontos számunka. A webes szabványokat követjük, és ellenőrizzük, hogy minden használható egér nélkül, illetve akadálymentesítési technológiákkal, például képernyőolvasókkal. Arra törekszünk, hogy a {guidelines}Webes tartalomra vonatkozó akadálymentesítési irányelvek{linkend} 2.1-es változatának AA szinten, a magas kontrasztú témával pedig AAA szinten megfeleljünk.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Ha problémákat tapasztal, jelentse a {issuetracker}hibakövetőnkben{linkend}. És ha segíteni szeretne, csatlakozzon a {designteam}dizájn csapatunkhoz{linkend}!" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/apps/accessibility/l10n/hu.json b/apps/accessibility/l10n/hu.json deleted file mode 100644 index 11bb1deba7a..00000000000 --- a/apps/accessibility/l10n/hu.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Sötét téma", - "Enable dark theme" : "Sötét téma engedélyezése", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "A sötét téma csökkenti a szemek terhelését az átlagos fényesség és fényerő csökkentésével. Még mindig fejlesztés alatt áll, így jelentse ha problémát talál.", - "High contrast mode" : "Magas kontrasztú mód", - "Enable high contrast mode" : "Magas kontrasztú mód engedélyezése", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "A magas kontrasztú téma megkönnyíti a navigációt. A képi minőség csökken, de az olvashatóság javul.", - "Dyslexia font" : "Diszlexia betűkészlet", - "Enable dyslexia font" : "Diszlexia betűkészlet engedélyezése", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "Az OpenDyslexic egy szabad betűkészlet, amely egyes, diszlexia által okozott, gyakori olvasási hibák csökkentésére lett tervezve.", - "Accessibility" : "Akadálymentesítés", - "Accessibility options for nextcloud" : "Akadálymentesítési lehetőségek a Nextcloudhoz", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Több akadálymentesítési lehetőséget biztosít, hogy megkönnyítse a Nextcloud használatát", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Az akadálymentesítés fontos számunka. A webes szabványokat követjük, és ellenőrizzük, hogy minden használható egér nélkül, illetve akadálymentesítési technológiákkal, például képernyőolvasókkal. Arra törekszünk, hogy a {guidelines}Webes tartalomra vonatkozó akadálymentesítési irányelvek{linkend} 2.1-es változatának AA szinten, a magas kontrasztú témával pedig AAA szinten megfeleljünk.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Ha problémákat tapasztal, jelentse a {issuetracker}hibakövetőnkben{linkend}. És ha segíteni szeretne, csatlakozzon a {designteam}dizájn csapatunkhoz{linkend}!" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/id.js b/apps/accessibility/l10n/id.js deleted file mode 100644 index d04c0a6d3ac..00000000000 --- a/apps/accessibility/l10n/id.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Tema gelap", - "Enable dark theme" : "Aktifkan tema gelap", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Tema gelap dapat membuat mata anda tidak cepat lelah dengan mengurangi tingkat kecerahan dan banyaknya cahaya. Fitur ini masih dalam tahap pengembangan, tolong laporkan masalah yang anda temui.", - "High contrast mode" : "Mode kontras tinggi", - "Enable high contrast mode" : "Aktifkan mode kontras tinggi", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Mode kontras tinggi untuk memudahkan navigasi Anda. Kualitas visual akan berkurang tetapi kejelasan akan meningkat.", - "Dyslexia font" : "Font disleksia", - "Enable dyslexia font" : "Aktifkan fon disleksia", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic adalah typeface/font gratis yang didesain untuk mengurangi kesalahan membaca oleh penderita disleksia", - "Accessibility" : "Aksesbilitas", - "Accessibility options for nextcloud" : "Opsi aksesibilitas untuk nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Menyediakan beberapa opsi aksesibilitas untuk memudahkan Anda menggunakan Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Akses universal sangat penting bagi kami. Kami mengikuti standar web dan memeriksa agar semua dapat digunakan, bahkan saat tanpa menggunakan tetikus, dan lainnya seperti perangkat lunak pembantu pembaca layar. Kami bertujuan untuk mematuhi {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 pada tingkat AA, dengan tema kontras tinggi bahkan pada tingkat AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Jika Anda menemukan isu, jangan sungkan untuk melaporkan pada {issuetracker}pelacakan isu kami{linkend}. Silakan gabung dan berkontribusi dengan {designteam}tim desain kami{linkend} jika Anda ingin!" -}, -"nplurals=1; plural=0;"); diff --git a/apps/accessibility/l10n/id.json b/apps/accessibility/l10n/id.json deleted file mode 100644 index cc8d20e7ac5..00000000000 --- a/apps/accessibility/l10n/id.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Tema gelap", - "Enable dark theme" : "Aktifkan tema gelap", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Tema gelap dapat membuat mata anda tidak cepat lelah dengan mengurangi tingkat kecerahan dan banyaknya cahaya. Fitur ini masih dalam tahap pengembangan, tolong laporkan masalah yang anda temui.", - "High contrast mode" : "Mode kontras tinggi", - "Enable high contrast mode" : "Aktifkan mode kontras tinggi", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Mode kontras tinggi untuk memudahkan navigasi Anda. Kualitas visual akan berkurang tetapi kejelasan akan meningkat.", - "Dyslexia font" : "Font disleksia", - "Enable dyslexia font" : "Aktifkan fon disleksia", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic adalah typeface/font gratis yang didesain untuk mengurangi kesalahan membaca oleh penderita disleksia", - "Accessibility" : "Aksesbilitas", - "Accessibility options for nextcloud" : "Opsi aksesibilitas untuk nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Menyediakan beberapa opsi aksesibilitas untuk memudahkan Anda menggunakan Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Akses universal sangat penting bagi kami. Kami mengikuti standar web dan memeriksa agar semua dapat digunakan, bahkan saat tanpa menggunakan tetikus, dan lainnya seperti perangkat lunak pembantu pembaca layar. Kami bertujuan untuk mematuhi {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 pada tingkat AA, dengan tema kontras tinggi bahkan pada tingkat AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Jika Anda menemukan isu, jangan sungkan untuk melaporkan pada {issuetracker}pelacakan isu kami{linkend}. Silakan gabung dan berkontribusi dengan {designteam}tim desain kami{linkend} jika Anda ingin!" -},"pluralForm" :"nplurals=1; plural=0;" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/is.js b/apps/accessibility/l10n/is.js deleted file mode 100644 index 19a3ef13d7a..00000000000 --- a/apps/accessibility/l10n/is.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Dökkt þema", - "Enable dark theme" : "Virkja dökkt þema", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Dökkt þema til að minnka álag á augun meðal annars með því að minnka heildarljósmagn og birtustig. Þetta er enn í þróun þannig að gott væri ef þú tilkynntir alla galla sem þú rekst á.", - "High contrast mode" : "Mikil birtuskil", - "Enable high contrast mode" : "Virkja ham með mikil birtuskil", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Þema með mikil birtuskil til að auðvelda vafur. Sjónræn gæði minnka en skýrleiki eykst", - "Dyslexia font" : "Dyslexia letur", - "Enable dyslexia font" : "Virkja letur fyrir lesblinda", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic eru frjálsar leturgerðir sem eru hannaðar til að ráða bug á eða minnka vægi ýmissa villna sem stafa af lesblindu (dyslexia).", - "Accessibility" : "Aukið aðgengi", - "Accessibility options for nextcloud" : "Valkostir fyrir auðveldað aðgengi í Nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Býður upp á marga valkosti fyrir auðveldað aðgengi í Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Aðgengi fyrir alla er okkur mikilvægt. Við fylgjum vefstöðlum oggöngum úr skugga um að allt sé nothæft án þess að nota tölvumús, auk þess að hjálpartæki á borð við skjálesara virki. Við miðum að samhæfni við {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 á stigi AA, og höfum meira að segja háskerpuþemað miðað við stig AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Ef þú rekst á einhver vandamál, ekki hika við að tilkynna þau á {issuetracker}verkbeiðnakerfinu okkar{linkend}. Og ef þig langar að taka þátt í þessu, gakktu þá til liðs við {designteam}hönnunarteymið okkar{linkend}!" -}, -"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);"); diff --git a/apps/accessibility/l10n/is.json b/apps/accessibility/l10n/is.json deleted file mode 100644 index fe59a0a123f..00000000000 --- a/apps/accessibility/l10n/is.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Dökkt þema", - "Enable dark theme" : "Virkja dökkt þema", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Dökkt þema til að minnka álag á augun meðal annars með því að minnka heildarljósmagn og birtustig. Þetta er enn í þróun þannig að gott væri ef þú tilkynntir alla galla sem þú rekst á.", - "High contrast mode" : "Mikil birtuskil", - "Enable high contrast mode" : "Virkja ham með mikil birtuskil", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Þema með mikil birtuskil til að auðvelda vafur. Sjónræn gæði minnka en skýrleiki eykst", - "Dyslexia font" : "Dyslexia letur", - "Enable dyslexia font" : "Virkja letur fyrir lesblinda", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic eru frjálsar leturgerðir sem eru hannaðar til að ráða bug á eða minnka vægi ýmissa villna sem stafa af lesblindu (dyslexia).", - "Accessibility" : "Aukið aðgengi", - "Accessibility options for nextcloud" : "Valkostir fyrir auðveldað aðgengi í Nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Býður upp á marga valkosti fyrir auðveldað aðgengi í Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Aðgengi fyrir alla er okkur mikilvægt. Við fylgjum vefstöðlum oggöngum úr skugga um að allt sé nothæft án þess að nota tölvumús, auk þess að hjálpartæki á borð við skjálesara virki. Við miðum að samhæfni við {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 á stigi AA, og höfum meira að segja háskerpuþemað miðað við stig AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Ef þú rekst á einhver vandamál, ekki hika við að tilkynna þau á {issuetracker}verkbeiðnakerfinu okkar{linkend}. Og ef þig langar að taka þátt í þessu, gakktu þá til liðs við {designteam}hönnunarteymið okkar{linkend}!" -},"pluralForm" :"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/it.js b/apps/accessibility/l10n/it.js deleted file mode 100644 index a7a90204fd7..00000000000 --- a/apps/accessibility/l10n/it.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Tema scuro", - "Enable dark theme" : "Abilita il tema scuro", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Un tema scuro per facilitare i tuoi occhi riducendo la luminosità complessiva. È ancora in fase di sviluppo, per cui ti chiediamo di segnalare qualsiasi problema tu possa trovare.", - "High contrast mode" : "Modalità ad alto contrasto", - "Enable high contrast mode" : "Abilita la modalità ad alto contrasto", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Una modalità ad alto contrasto per semplificare la tua navigazione. La qualità visiva sarà ridotta per incrementare la chiarezza.", - "Dyslexia font" : "Carattere per dislessici", - "Enable dyslexia font" : "Abilita il carattere per dislessici", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic è un carattere libero progettato per mitigare alcuni dei comuni errori di lettura causati dalla dislessia.", - "Accessibility" : "Accessibilità", - "Accessibility options for nextcloud" : "Opzioni di accessibilità per Nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Fornisce diverse opzioni di accessibilità per semplificare il tuo utilizzo di Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "L'accesso universale è molto importante per noi. Seguiamo gli standard web e cerchiamo di rendere tutto utilizzabile anche senza mouse, e programmi di assistenza come i lettori dello schermo. Il nostro obiettivo è la compatibilità con la {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 a livello AA, con il tema ad alto contrasto anche a livello AAA. ", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Se trovi qualsiasi problema, non esitare a segnalarlo sul {issuetracker}nostro sistema di segnalazione dei bug{linkend}. E se vuoi partecipare, unisciti alla {designteam}nostra squadra di progettazione{linkend}!" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/apps/accessibility/l10n/it.json b/apps/accessibility/l10n/it.json deleted file mode 100644 index f84b76fc1d8..00000000000 --- a/apps/accessibility/l10n/it.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Tema scuro", - "Enable dark theme" : "Abilita il tema scuro", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Un tema scuro per facilitare i tuoi occhi riducendo la luminosità complessiva. È ancora in fase di sviluppo, per cui ti chiediamo di segnalare qualsiasi problema tu possa trovare.", - "High contrast mode" : "Modalità ad alto contrasto", - "Enable high contrast mode" : "Abilita la modalità ad alto contrasto", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Una modalità ad alto contrasto per semplificare la tua navigazione. La qualità visiva sarà ridotta per incrementare la chiarezza.", - "Dyslexia font" : "Carattere per dislessici", - "Enable dyslexia font" : "Abilita il carattere per dislessici", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic è un carattere libero progettato per mitigare alcuni dei comuni errori di lettura causati dalla dislessia.", - "Accessibility" : "Accessibilità", - "Accessibility options for nextcloud" : "Opzioni di accessibilità per Nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Fornisce diverse opzioni di accessibilità per semplificare il tuo utilizzo di Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "L'accesso universale è molto importante per noi. Seguiamo gli standard web e cerchiamo di rendere tutto utilizzabile anche senza mouse, e programmi di assistenza come i lettori dello schermo. Il nostro obiettivo è la compatibilità con la {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 a livello AA, con il tema ad alto contrasto anche a livello AAA. ", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Se trovi qualsiasi problema, non esitare a segnalarlo sul {issuetracker}nostro sistema di segnalazione dei bug{linkend}. E se vuoi partecipare, unisciti alla {designteam}nostra squadra di progettazione{linkend}!" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/ja.js b/apps/accessibility/l10n/ja.js deleted file mode 100644 index d985cd8e89a..00000000000 --- a/apps/accessibility/l10n/ja.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "ダークテーマ", - "Enable dark theme" : "ダークテーマを有効にする", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "ダークテーマは画面全体のの明るさを減らすため、目の負担を和らげることができます。このテーマは開発中のためバグを見つけたら報告してください。", - "High contrast mode" : "ハイ・コントラストモード", - "Enable high contrast mode" : "ハイ・コントラストモードを有効にする。", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "操作をわかりやすくするためのハイ・コントラストモード。\n見た目の美しさは低下しますが、明確さが向上します。", - "Dyslexia font" : "Dyslexia フォント", - "Enable dyslexia font" : "Dyslexia フォントを有効にする", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexicは、ディスレクシアによって引き起こされる一般的な読み間違いの一部を軽減するためにデザインされた、無料で利用できる書体/フォントです。", - "Accessibility" : "アクセシビリティ", - "Accessibility options for nextcloud" : "nextcloudのアクセシビリティオプション", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "あなたのNextcloudの利用を簡単にするための複数のユーザー補助のオプションを提供します。", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "ユニバーサルアクセスは私たちにとって非常に重要なことです。そのためウェブ標準に従い、マウスやスクリーンリーダーなどの支援ソフトウェアが無くても全ての機能をご利用いただけるようにチェックしています。AAAレベルのハイコントラストのテーマを採用することで、{guidelines} Webコンテンツアクセシビリティガイドライン2.1 {linkend} のAAAレベルに準拠することを目指しています。", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "問題がある場合は、お気軽に{issuetracker}issue tracker {linkend}に報告してください。 手伝って頂ける方は、{designteam}デザインチーム{linkend}にご参加ください。" -}, -"nplurals=1; plural=0;"); diff --git a/apps/accessibility/l10n/ja.json b/apps/accessibility/l10n/ja.json deleted file mode 100644 index eb0990e0c3b..00000000000 --- a/apps/accessibility/l10n/ja.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "ダークテーマ", - "Enable dark theme" : "ダークテーマを有効にする", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "ダークテーマは画面全体のの明るさを減らすため、目の負担を和らげることができます。このテーマは開発中のためバグを見つけたら報告してください。", - "High contrast mode" : "ハイ・コントラストモード", - "Enable high contrast mode" : "ハイ・コントラストモードを有効にする。", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "操作をわかりやすくするためのハイ・コントラストモード。\n見た目の美しさは低下しますが、明確さが向上します。", - "Dyslexia font" : "Dyslexia フォント", - "Enable dyslexia font" : "Dyslexia フォントを有効にする", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexicは、ディスレクシアによって引き起こされる一般的な読み間違いの一部を軽減するためにデザインされた、無料で利用できる書体/フォントです。", - "Accessibility" : "アクセシビリティ", - "Accessibility options for nextcloud" : "nextcloudのアクセシビリティオプション", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "あなたのNextcloudの利用を簡単にするための複数のユーザー補助のオプションを提供します。", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "ユニバーサルアクセスは私たちにとって非常に重要なことです。そのためウェブ標準に従い、マウスやスクリーンリーダーなどの支援ソフトウェアが無くても全ての機能をご利用いただけるようにチェックしています。AAAレベルのハイコントラストのテーマを採用することで、{guidelines} Webコンテンツアクセシビリティガイドライン2.1 {linkend} のAAAレベルに準拠することを目指しています。", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "問題がある場合は、お気軽に{issuetracker}issue tracker {linkend}に報告してください。 手伝って頂ける方は、{designteam}デザインチーム{linkend}にご参加ください。" -},"pluralForm" :"nplurals=1; plural=0;" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/ka_GE.js b/apps/accessibility/l10n/ka_GE.js deleted file mode 100644 index e1731608080..00000000000 --- a/apps/accessibility/l10n/ka_GE.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "მუქი თემა", - "Enable dark theme" : "მუქი თემის გააქტიურება", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "მუქი თემა ამსუბუქებს თქვენი თვალების დატვირთვას, მთლიანი განათებულობის და სიმკვეთრის შემცირების ხარჯზე. იგი ჯერ კიდევ შემუშავების პროცესშია, ასე რომ, რაიმე შეუსაბამობის/პრობლემის აღმოჩენის შემთხვევაში, გთხოვთ, მოგვახსენოთ ამის შესახებ.", - "High contrast mode" : "მაღალ-კონტრასტული რეჟიმი", - "Enable high contrast mode" : "ჩართე მაღალ-კონტრასტული რეჟიმი", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "მაღალ-კონტრასტული რეჟიმი თქვენი ნავიგაციის გასამარტივებლად. ვიზუალური ხარისხი შემცირდება, თუმცა, გაიზრდება სიმკვეთრე. ", - "Dyslexia font" : "შრიფტი Dyslexia ", - "Enable dyslexia font" : "ჩართე დისლექსიის შრიფტი", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic-ი უფასო გარნიტურა/შრიფტია, რომელიც შექმნილია დისლექსიით გამოწვეული წაკითხვის ზოგიერთი პრობლემის აღმოსაფხვრელად.", - "Accessibility" : "ხელმისაწვდომობა", - "Accessibility options for nextcloud" : "ხელმისაწვდომობის ვარიანტები „ნექსთქლაუდისთვის“", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "თქვენთვის უზრუნველყოფს ხელმისაწვდომობის მრავლობით ვარიანტებს, „Nextcloud“-ის მოხმარების გამარტივებისათვის", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "უნივერსალური წვდომა ჩვენთვის ძალზედ მნივნელოვანია. ჩვენ მივსდევთ ინტერნეტის სტანდარტებს და ვცდილობთ გავხადოთ ყველაფერი ხელმისაწვდომი მაუსის და დამხამრე პროგრამული უზრუნველყოფის გარეშე, ისეთის როგორიცაა ეკრანის წამკითხველი. ჩვენი მიზანია შესაბამისობაში ვიყოთ {guidelines}ქსელის შიგთავსის ხელმისაწვდომობის სახელმძღვანელო{linkend} 2.1-თან AA დონეზე, ხოლო მაღალ-კონტრასტული თემით AAA დონეზეც კი.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "თუ აღმოაჩენთ რაიმე შეუსაბამობას/პრობლემას, შეგიძლიათ მოგვახსენოთ {issuetracker}ჩვენს შეცდომების მეთვალყურეზე{linkend}. თუ გსურთ ჩაერთოთ მის აღმოფხვრაში, შემოუერთდით {designteam}ჩვენს სადიზაინერო გუნდს{linkend}!" -}, -"nplurals=2; plural=(n!=1);"); diff --git a/apps/accessibility/l10n/ka_GE.json b/apps/accessibility/l10n/ka_GE.json deleted file mode 100644 index 923f36065da..00000000000 --- a/apps/accessibility/l10n/ka_GE.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "მუქი თემა", - "Enable dark theme" : "მუქი თემის გააქტიურება", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "მუქი თემა ამსუბუქებს თქვენი თვალების დატვირთვას, მთლიანი განათებულობის და სიმკვეთრის შემცირების ხარჯზე. იგი ჯერ კიდევ შემუშავების პროცესშია, ასე რომ, რაიმე შეუსაბამობის/პრობლემის აღმოჩენის შემთხვევაში, გთხოვთ, მოგვახსენოთ ამის შესახებ.", - "High contrast mode" : "მაღალ-კონტრასტული რეჟიმი", - "Enable high contrast mode" : "ჩართე მაღალ-კონტრასტული რეჟიმი", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "მაღალ-კონტრასტული რეჟიმი თქვენი ნავიგაციის გასამარტივებლად. ვიზუალური ხარისხი შემცირდება, თუმცა, გაიზრდება სიმკვეთრე. ", - "Dyslexia font" : "შრიფტი Dyslexia ", - "Enable dyslexia font" : "ჩართე დისლექსიის შრიფტი", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic-ი უფასო გარნიტურა/შრიფტია, რომელიც შექმნილია დისლექსიით გამოწვეული წაკითხვის ზოგიერთი პრობლემის აღმოსაფხვრელად.", - "Accessibility" : "ხელმისაწვდომობა", - "Accessibility options for nextcloud" : "ხელმისაწვდომობის ვარიანტები „ნექსთქლაუდისთვის“", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "თქვენთვის უზრუნველყოფს ხელმისაწვდომობის მრავლობით ვარიანტებს, „Nextcloud“-ის მოხმარების გამარტივებისათვის", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "უნივერსალური წვდომა ჩვენთვის ძალზედ მნივნელოვანია. ჩვენ მივსდევთ ინტერნეტის სტანდარტებს და ვცდილობთ გავხადოთ ყველაფერი ხელმისაწვდომი მაუსის და დამხამრე პროგრამული უზრუნველყოფის გარეშე, ისეთის როგორიცაა ეკრანის წამკითხველი. ჩვენი მიზანია შესაბამისობაში ვიყოთ {guidelines}ქსელის შიგთავსის ხელმისაწვდომობის სახელმძღვანელო{linkend} 2.1-თან AA დონეზე, ხოლო მაღალ-კონტრასტული თემით AAA დონეზეც კი.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "თუ აღმოაჩენთ რაიმე შეუსაბამობას/პრობლემას, შეგიძლიათ მოგვახსენოთ {issuetracker}ჩვენს შეცდომების მეთვალყურეზე{linkend}. თუ გსურთ ჩაერთოთ მის აღმოფხვრაში, შემოუერთდით {designteam}ჩვენს სადიზაინერო გუნდს{linkend}!" -},"pluralForm" :"nplurals=2; plural=(n!=1);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/ko.js b/apps/accessibility/l10n/ko.js deleted file mode 100644 index 43759f43973..00000000000 --- a/apps/accessibility/l10n/ko.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "어두운 테마", - "Enable dark theme" : "어두운 테마 활성화", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "어두운 테마는 전체적인 밝기를 낮춰 눈을 편안하게 해 줍니다. 아직 개발 중인 기능이니 문제가 있다면 보고해 주세요.", - "High contrast mode" : "고대비 모드", - "Enable high contrast mode" : "고대비 모드 활성화", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "쉬운 탐색을 위한 고대비 테마입니다. 색감이 나빠지지만 더 선명해집니다.", - "Dyslexia font" : "난독증용 글꼴", - "Enable dyslexia font" : "난독증용 글꼴 활성화", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic은 난독증 때문에 읽기에 문제가 있는 사람들을 위해 디자인된 자유 글꼴입니다.", - "Accessibility" : "접근성", - "Accessibility options for nextcloud" : "Nextcloud 접근성 옵션", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Nextcloud 사용을 편리하게 하는 여러 접근성 옵션", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "웹 접근성은 매우 중요합니다. 저희는 웹 표준을 준수하고 모든것을 마우스 없이 스크린 리더와 같은 접근성 프로그램을 사용할 수 사용할 수 있도록 합니다. 저희는 {guidelines}웹 컨텐츠 접근성 가이드라인{linkend} 2.1 을 AA레벨에서, 고 대비 테마와 같이 적용한 AAA레벨에서 조차도 준수하는 것을 노력하고있습니다.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "만약 문제를 발견하신다면, 바로 {issuetracker}저희의 이슈 트래커{linkend}에 문의하시길 바랍니다. 저희 프로젝트에 참여하고 싶으시다면 {designteam}저희 디자인 팀{linkend}에 오세요." -}, -"nplurals=1; plural=0;"); diff --git a/apps/accessibility/l10n/ko.json b/apps/accessibility/l10n/ko.json deleted file mode 100644 index f062a8dd7d8..00000000000 --- a/apps/accessibility/l10n/ko.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "어두운 테마", - "Enable dark theme" : "어두운 테마 활성화", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "어두운 테마는 전체적인 밝기를 낮춰 눈을 편안하게 해 줍니다. 아직 개발 중인 기능이니 문제가 있다면 보고해 주세요.", - "High contrast mode" : "고대비 모드", - "Enable high contrast mode" : "고대비 모드 활성화", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "쉬운 탐색을 위한 고대비 테마입니다. 색감이 나빠지지만 더 선명해집니다.", - "Dyslexia font" : "난독증용 글꼴", - "Enable dyslexia font" : "난독증용 글꼴 활성화", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic은 난독증 때문에 읽기에 문제가 있는 사람들을 위해 디자인된 자유 글꼴입니다.", - "Accessibility" : "접근성", - "Accessibility options for nextcloud" : "Nextcloud 접근성 옵션", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Nextcloud 사용을 편리하게 하는 여러 접근성 옵션", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "웹 접근성은 매우 중요합니다. 저희는 웹 표준을 준수하고 모든것을 마우스 없이 스크린 리더와 같은 접근성 프로그램을 사용할 수 사용할 수 있도록 합니다. 저희는 {guidelines}웹 컨텐츠 접근성 가이드라인{linkend} 2.1 을 AA레벨에서, 고 대비 테마와 같이 적용한 AAA레벨에서 조차도 준수하는 것을 노력하고있습니다.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "만약 문제를 발견하신다면, 바로 {issuetracker}저희의 이슈 트래커{linkend}에 문의하시길 바랍니다. 저희 프로젝트에 참여하고 싶으시다면 {designteam}저희 디자인 팀{linkend}에 오세요." -},"pluralForm" :"nplurals=1; plural=0;" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/lt_LT.js b/apps/accessibility/l10n/lt_LT.js deleted file mode 100644 index 61b30974bfa..00000000000 --- a/apps/accessibility/l10n/lt_LT.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Tamsus apipavidalinimas", - "Enable dark theme" : "Įjungti tamsų apipavidalinimą", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Tamsus apipavidalinimas, skirtas nuraminti jūsų akis, sumažinant bendrą šviesingumą ir skaistį. Jis yra vis dar kuriamas, todėl prašome pranešti apie bet kokias randamas klaidas.", - "High contrast mode" : "Didelio kontrasto veiksena", - "Enable high contrast mode" : "Įjungti didelio kontrasto veikseną", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Didelio kontrasto veiksena, skirta palengvinti jūsų naršymą. Vaizdinė kokybė bus sumažinta, tačiau aiškumas bus padidintas.", - "Dyslexia font" : "Disleksijos šriftas", - "Enable dyslexia font" : "Įjungti disleksijos šriftą", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic yra laisvas šriftas, sukurtas sumažinti kai kurias dažniausias disleksijos sukeltas skaitymo klaidas.", - "Accessibility" : "Prieinamumas", - "Accessibility options for nextcloud" : "Nextcloud prieinamumo parinktys", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Pateikia kelias prieinamumo parinktis, skirtas palengvinti jūsų naudojimąsi Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Mums universalioji prieiga yra labai svarbi. Mes sekame saityno standartus ir stengiamės, kad būtų galima viskuobe pelės ir pagalbinės programinės įrangos, tokios kaip ekrano skaitytuvė. Stengiamės atitikti {guidelines}Saityno turinio prieinamumo gairėms{linkend} 2.1 pagal AA lygmenį, o su didelio kontrasto apipavidalinimu netgi pagal AAA lygmenį.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Jei rasite kokių nors problemų, nesivaržykite apie jas pranešti {issuetracker}mūsų klaidų sekiklyje{linkend}. O jei norite įsitraukti, prisijunkite prie {designteam}mūsų dizaino komandos{linkend}!" -}, -"nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);"); diff --git a/apps/accessibility/l10n/lt_LT.json b/apps/accessibility/l10n/lt_LT.json deleted file mode 100644 index 43dde925bfc..00000000000 --- a/apps/accessibility/l10n/lt_LT.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Tamsus apipavidalinimas", - "Enable dark theme" : "Įjungti tamsų apipavidalinimą", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Tamsus apipavidalinimas, skirtas nuraminti jūsų akis, sumažinant bendrą šviesingumą ir skaistį. Jis yra vis dar kuriamas, todėl prašome pranešti apie bet kokias randamas klaidas.", - "High contrast mode" : "Didelio kontrasto veiksena", - "Enable high contrast mode" : "Įjungti didelio kontrasto veikseną", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Didelio kontrasto veiksena, skirta palengvinti jūsų naršymą. Vaizdinė kokybė bus sumažinta, tačiau aiškumas bus padidintas.", - "Dyslexia font" : "Disleksijos šriftas", - "Enable dyslexia font" : "Įjungti disleksijos šriftą", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic yra laisvas šriftas, sukurtas sumažinti kai kurias dažniausias disleksijos sukeltas skaitymo klaidas.", - "Accessibility" : "Prieinamumas", - "Accessibility options for nextcloud" : "Nextcloud prieinamumo parinktys", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Pateikia kelias prieinamumo parinktis, skirtas palengvinti jūsų naudojimąsi Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Mums universalioji prieiga yra labai svarbi. Mes sekame saityno standartus ir stengiamės, kad būtų galima viskuobe pelės ir pagalbinės programinės įrangos, tokios kaip ekrano skaitytuvė. Stengiamės atitikti {guidelines}Saityno turinio prieinamumo gairėms{linkend} 2.1 pagal AA lygmenį, o su didelio kontrasto apipavidalinimu netgi pagal AAA lygmenį.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Jei rasite kokių nors problemų, nesivaržykite apie jas pranešti {issuetracker}mūsų klaidų sekiklyje{linkend}. O jei norite įsitraukti, prisijunkite prie {designteam}mūsų dizaino komandos{linkend}!" -},"pluralForm" :"nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/lv.js b/apps/accessibility/l10n/lv.js deleted file mode 100644 index f0333910f2f..00000000000 --- a/apps/accessibility/l10n/lv.js +++ /dev/null @@ -1,18 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Tumšais motīvs", - "Enable dark theme" : "Iespējot tumšo motīvu", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Tumšais motīvs atslogo Tavas acis samazinot kopējo atspīdumu un spilgtumu. Tas joprojām atrodas izstrādes režīmā, tādēļ dod ziņu par jebkurām atrastajām problēmām.", - "High contrast mode" : "Augsta kontrasta režīms", - "Enable high contrast mode" : "Iespējot augsta kontrasta režīmu", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Augsta kontrasta režīms atvieglo navigāciju. Vizuālā kvalitāte tiks samazināta, bet skaidrība paaugstināsies.", - "Dyslexia font" : "Dislektisks fonts", - "Enable dyslexia font" : "Iespējot disleksijas fontu", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic ir bezmaksas fonts, kas veidots, lai mazinātu tipiskākos lasīšanas traucējumus, ko izraisa disleksija.", - "Accessibility" : "Pieejamība", - "Accessibility options for nextcloud" : "nextcloud Pieejamības uzstādījumi", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Piedāvā vairākus pieejamības uzstādījumus, kas atvieglo Nextcloud lietošanu.", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Universāla pieejamība mums ir ļoti svarīga. Mēs sekojam tīmekļa standartiem un panākam ka visu var lietot arī bez datorpeles, un palīgprogrammatūras, kā ekrāna lasītāja. Mēs mērķējam uz būšanu piekāpīgi ar {vadlīnijām}Tīmekļa satura pieejamības vadlīnijas{piesaistīts} 2.1 uz AA līmeņa, ar augsta kontrasta režīmu pat AAA līmenī" -}, -"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"); diff --git a/apps/accessibility/l10n/lv.json b/apps/accessibility/l10n/lv.json deleted file mode 100644 index 48ef6cc3cca..00000000000 --- a/apps/accessibility/l10n/lv.json +++ /dev/null @@ -1,16 +0,0 @@ -{ "translations": { - "Dark theme" : "Tumšais motīvs", - "Enable dark theme" : "Iespējot tumšo motīvu", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Tumšais motīvs atslogo Tavas acis samazinot kopējo atspīdumu un spilgtumu. Tas joprojām atrodas izstrādes režīmā, tādēļ dod ziņu par jebkurām atrastajām problēmām.", - "High contrast mode" : "Augsta kontrasta režīms", - "Enable high contrast mode" : "Iespējot augsta kontrasta režīmu", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Augsta kontrasta režīms atvieglo navigāciju. Vizuālā kvalitāte tiks samazināta, bet skaidrība paaugstināsies.", - "Dyslexia font" : "Dislektisks fonts", - "Enable dyslexia font" : "Iespējot disleksijas fontu", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic ir bezmaksas fonts, kas veidots, lai mazinātu tipiskākos lasīšanas traucējumus, ko izraisa disleksija.", - "Accessibility" : "Pieejamība", - "Accessibility options for nextcloud" : "nextcloud Pieejamības uzstādījumi", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Piedāvā vairākus pieejamības uzstādījumus, kas atvieglo Nextcloud lietošanu.", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Universāla pieejamība mums ir ļoti svarīga. Mēs sekojam tīmekļa standartiem un panākam ka visu var lietot arī bez datorpeles, un palīgprogrammatūras, kā ekrāna lasītāja. Mēs mērķējam uz būšanu piekāpīgi ar {vadlīnijām}Tīmekļa satura pieejamības vadlīnijas{piesaistīts} 2.1 uz AA līmeņa, ar augsta kontrasta režīmu pat AAA līmenī" -},"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/mk.js b/apps/accessibility/l10n/mk.js deleted file mode 100644 index 9a2eb25cc95..00000000000 --- a/apps/accessibility/l10n/mk.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Темна тема", - "Enable dark theme" : "Овозможи темна тема", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Темна тема за да ви го олесни гледањето преку намалување на вкупната осветленост. Сеуште е во развој, затоа ве молиме пријавете ги сите проблеми кои ќе ги најдете.", - "High contrast mode" : "Режим на висок контраст", - "Enable high contrast mode" : "Овозможи режим на висок контраст", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Режим со висок контраст за олеснување на навигацијата. Визуелниот квалитет ќе се намали, но јасноста ќе се зголеми.", - "Dyslexia font" : "Фонт за дислексија", - "Enable dyslexia font" : "Овозможи фонт за дислексија", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic е бесплатен фонт дизајниран за ублажување на некои од честите грешки во читањето предизвикани од дислексија.", - "Accessibility" : "Достапност", - "Accessibility options for nextcloud" : "Опции за пристапност на Nextcloud. ", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Овозможува повеќе опции за пристапност за да се олесни употребата на Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Универзалниот пристап е многу важен за нас. Ние ги следиме веб-стандардите и ги имплементираме за да го направиме користењето попристапно, како користење без маус, и помошни апликации за читање на екранот. Наша цел е да бидеме во согласност со {guidelines} {linkend}2.1 на ниво АА, со висока контрастна тема дури и на ниво на ААА.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "околку наидете на некој проблем, не се двоумете и пријавете го на {issuetracker} {linkend}. И доколку сакате можете да се приклучите кон нашиот {designteam} {linkend}!" -}, -"nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"); diff --git a/apps/accessibility/l10n/mk.json b/apps/accessibility/l10n/mk.json deleted file mode 100644 index 2b4f31db713..00000000000 --- a/apps/accessibility/l10n/mk.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Темна тема", - "Enable dark theme" : "Овозможи темна тема", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Темна тема за да ви го олесни гледањето преку намалување на вкупната осветленост. Сеуште е во развој, затоа ве молиме пријавете ги сите проблеми кои ќе ги најдете.", - "High contrast mode" : "Режим на висок контраст", - "Enable high contrast mode" : "Овозможи режим на висок контраст", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Режим со висок контраст за олеснување на навигацијата. Визуелниот квалитет ќе се намали, но јасноста ќе се зголеми.", - "Dyslexia font" : "Фонт за дислексија", - "Enable dyslexia font" : "Овозможи фонт за дислексија", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic е бесплатен фонт дизајниран за ублажување на некои од честите грешки во читањето предизвикани од дислексија.", - "Accessibility" : "Достапност", - "Accessibility options for nextcloud" : "Опции за пристапност на Nextcloud. ", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Овозможува повеќе опции за пристапност за да се олесни употребата на Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Универзалниот пристап е многу важен за нас. Ние ги следиме веб-стандардите и ги имплементираме за да го направиме користењето попристапно, како користење без маус, и помошни апликации за читање на екранот. Наша цел е да бидеме во согласност со {guidelines} {linkend}2.1 на ниво АА, со висока контрастна тема дури и на ниво на ААА.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "околку наидете на некој проблем, не се двоумете и пријавете го на {issuetracker} {linkend}. И доколку сакате можете да се приклучите кон нашиот {designteam} {linkend}!" -},"pluralForm" :"nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/mr.js b/apps/accessibility/l10n/mr.js deleted file mode 100644 index f6528f69058..00000000000 --- a/apps/accessibility/l10n/mr.js +++ /dev/null @@ -1,14 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "गडद थीम", - "Enable dark theme" : "गडद थीम सुरु करा", - "High contrast mode" : "अतीविरोधाभासी पद्धत", - "Enable high contrast mode" : "अतीविरोधाभासी पद्धत सुरु करा", - "Dyslexia font" : "डिस्लेक्सिया फॉन्ट", - "Enable dyslexia font" : "डिस्लेक्सिया फॉन्ट सुरु करा", - "Accessibility" : "सुलभता", - "Accessibility options for nextcloud" : "नेक्सटक्लाउडसाठी सुलभता पर्याय", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "तुमच्या नेक्सटक्लाउडच्या सहज वापराकरीता विविध सुलभता पर्याय देते" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/apps/accessibility/l10n/mr.json b/apps/accessibility/l10n/mr.json deleted file mode 100644 index 188a17a879e..00000000000 --- a/apps/accessibility/l10n/mr.json +++ /dev/null @@ -1,12 +0,0 @@ -{ "translations": { - "Dark theme" : "गडद थीम", - "Enable dark theme" : "गडद थीम सुरु करा", - "High contrast mode" : "अतीविरोधाभासी पद्धत", - "Enable high contrast mode" : "अतीविरोधाभासी पद्धत सुरु करा", - "Dyslexia font" : "डिस्लेक्सिया फॉन्ट", - "Enable dyslexia font" : "डिस्लेक्सिया फॉन्ट सुरु करा", - "Accessibility" : "सुलभता", - "Accessibility options for nextcloud" : "नेक्सटक्लाउडसाठी सुलभता पर्याय", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "तुमच्या नेक्सटक्लाउडच्या सहज वापराकरीता विविध सुलभता पर्याय देते" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/ms_MY.js b/apps/accessibility/l10n/ms_MY.js deleted file mode 100644 index 4bf30aeddb1..00000000000 --- a/apps/accessibility/l10n/ms_MY.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Tema gelap", - "Enable dark theme" : "Aktifkan tema gelap", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Tema gelap untuk melegakan mata anda dengan mengurangkan silau dan kecerahan keseluruhan. Masih dalam proses pembangunan, sila laporkan masalah yang mungkin anda temui.", - "High contrast mode" : "Mod kontras tinggi", - "Enable high contrast mode" : "Aktifkan mod kontras tinggi", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Mod kontras tinggi adalah untuk memudahkan navigasi anda. Kualiti visual akan menurun bagi meningkatkan kejelasan paparan.", - "Dyslexia font" : "Tulisan disleksia", - "Enable dyslexia font" : "Aktifkan tulisan disleksia", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic adalah jenis huruf / tulisan percuma yang direka untuk mengurangkan beberapa kesalahan membaca yang disebabkan oleh disleksia.", - "Accessibility" : "Kebolehcapaian", - "Accessibility options for nextcloud" : "Pilihan kebolehcapaian untuk nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Menyediakan pelbagai pilihan kebolehaksesan untuk memudahkan penggunaan Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Akses menyeluruh adalah sangat penting bagi kami. Kami mengikuti piawaian web dan memeriksa semua kandungan untuk menjadikannya dapat digunakan juga tanpa tetikus, dan perisian bantuan seperti pembaca skrin. Kami berhasrat untuk mematuhi {guidelines} Garis Panduan Kebolehcapaian Kandungan Web {linkend} 2.1 pada tingkat AA, dengan tema kontras tinggi bahkan di tingkat AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Sekiranya anda menghadapi masalah, anda dialu-alukan untuk melaporkannya di {issuetracker} rekod masalah kami {linkend}. Dan jika anda ingin melibatkan diri, sertai {designteam} pasukan reka bentuk kami {linkend}!" -}, -"nplurals=1; plural=0;"); diff --git a/apps/accessibility/l10n/ms_MY.json b/apps/accessibility/l10n/ms_MY.json deleted file mode 100644 index c583164e37d..00000000000 --- a/apps/accessibility/l10n/ms_MY.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Tema gelap", - "Enable dark theme" : "Aktifkan tema gelap", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Tema gelap untuk melegakan mata anda dengan mengurangkan silau dan kecerahan keseluruhan. Masih dalam proses pembangunan, sila laporkan masalah yang mungkin anda temui.", - "High contrast mode" : "Mod kontras tinggi", - "Enable high contrast mode" : "Aktifkan mod kontras tinggi", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Mod kontras tinggi adalah untuk memudahkan navigasi anda. Kualiti visual akan menurun bagi meningkatkan kejelasan paparan.", - "Dyslexia font" : "Tulisan disleksia", - "Enable dyslexia font" : "Aktifkan tulisan disleksia", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic adalah jenis huruf / tulisan percuma yang direka untuk mengurangkan beberapa kesalahan membaca yang disebabkan oleh disleksia.", - "Accessibility" : "Kebolehcapaian", - "Accessibility options for nextcloud" : "Pilihan kebolehcapaian untuk nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Menyediakan pelbagai pilihan kebolehaksesan untuk memudahkan penggunaan Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Akses menyeluruh adalah sangat penting bagi kami. Kami mengikuti piawaian web dan memeriksa semua kandungan untuk menjadikannya dapat digunakan juga tanpa tetikus, dan perisian bantuan seperti pembaca skrin. Kami berhasrat untuk mematuhi {guidelines} Garis Panduan Kebolehcapaian Kandungan Web {linkend} 2.1 pada tingkat AA, dengan tema kontras tinggi bahkan di tingkat AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Sekiranya anda menghadapi masalah, anda dialu-alukan untuk melaporkannya di {issuetracker} rekod masalah kami {linkend}. Dan jika anda ingin melibatkan diri, sertai {designteam} pasukan reka bentuk kami {linkend}!" -},"pluralForm" :"nplurals=1; plural=0;" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/nb.js b/apps/accessibility/l10n/nb.js deleted file mode 100644 index c3b1416fe4e..00000000000 --- a/apps/accessibility/l10n/nb.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Mørkt tema", - "Enable dark theme" : "Aktiver mørkt tema", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Et mørkt tema for å lette på øynene ved å redusere lysstyrken. Den er fortsatt under utvikling, vennligst rapporter feilene som du finner.", - "High contrast mode" : "Høykontrastmodus", - "Enable high contrast mode" : "Aktiver høy kontrast", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "En høykontrast modus for å få en lettere navigasjon. Den visuelle kvaliteten vil bli reusert men klarheten vil bli økt.", - "Dyslexia font" : "Dysleksi skrifttype", - "Enable dyslexia font" : "Aktiver dysleksi skrifttype", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic er en gratis skrifttype egnet for å minske de mest vanligste lesefeilene som dysleksi forårsaker.", - "Accessibility" : "Tilgjengelighet", - "Accessibility options for nextcloud" : "Tilgjengelighetsvalg for nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Gir muligheten for flere tilgjengelighetsvalg for å gjøre det lettere å bruke Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Universell utforming er viktig for oss. Vi følger web-standarder og tester for full funksjonalitet, både uten mus og med hjelpeprogrammer, slik som skjermlesere. Vi etterstreber å følge {guidelines}Retningslinjer for tilgjengelighet på nettsider{linkend} 2.1 på nivå AA, og med temaet for høy kontrast også nivå AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Ikke nøl med å rapportere problemer på {issuetracker}vår problemdatabase{linkend}. Og bli gjerne med i {designteam}vårt designteam{linkend} hvis du vil bidra." -}, -"nplurals=2; plural=(n != 1);"); diff --git a/apps/accessibility/l10n/nb.json b/apps/accessibility/l10n/nb.json deleted file mode 100644 index 7a83719eb77..00000000000 --- a/apps/accessibility/l10n/nb.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Mørkt tema", - "Enable dark theme" : "Aktiver mørkt tema", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Et mørkt tema for å lette på øynene ved å redusere lysstyrken. Den er fortsatt under utvikling, vennligst rapporter feilene som du finner.", - "High contrast mode" : "Høykontrastmodus", - "Enable high contrast mode" : "Aktiver høy kontrast", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "En høykontrast modus for å få en lettere navigasjon. Den visuelle kvaliteten vil bli reusert men klarheten vil bli økt.", - "Dyslexia font" : "Dysleksi skrifttype", - "Enable dyslexia font" : "Aktiver dysleksi skrifttype", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic er en gratis skrifttype egnet for å minske de mest vanligste lesefeilene som dysleksi forårsaker.", - "Accessibility" : "Tilgjengelighet", - "Accessibility options for nextcloud" : "Tilgjengelighetsvalg for nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Gir muligheten for flere tilgjengelighetsvalg for å gjøre det lettere å bruke Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Universell utforming er viktig for oss. Vi følger web-standarder og tester for full funksjonalitet, både uten mus og med hjelpeprogrammer, slik som skjermlesere. Vi etterstreber å følge {guidelines}Retningslinjer for tilgjengelighet på nettsider{linkend} 2.1 på nivå AA, og med temaet for høy kontrast også nivå AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Ikke nøl med å rapportere problemer på {issuetracker}vår problemdatabase{linkend}. Og bli gjerne med i {designteam}vårt designteam{linkend} hvis du vil bidra." -},"pluralForm" :"nplurals=2; plural=(n != 1);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/nl.js b/apps/accessibility/l10n/nl.js deleted file mode 100644 index 32a51e236a7..00000000000 --- a/apps/accessibility/l10n/nl.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Donker thema", - "Enable dark theme" : "Donker thema inschakelen", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Een donker thema dat je ogen minder vermoeit door de lichtsterkte en helderheid te verminderen. Dit thema is nog in ontwikkeling, dus we horen graag als je fouten tegenkomt.", - "High contrast mode" : "Hoog contrast modus", - "Enable high contrast mode" : "Hoog contrast modus inschakelen", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Een thema met hoog contrast dat de navigatie vergemakkelijkt. De visuele kwaliteit vermindert, maar de duidelijkheid neemt toe.", - "Dyslexia font" : "Dyslexie-lettertype", - "Enable dyslexia font" : "Dyslexie-lettertype inschakelen", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic is een open source lettertype dat is ontwikkeld om de meest voorkomende leesfouten die worden veroorzaakt door dyslexie te voorkomen.", - "Accessibility" : "Toegankelijkheid", - "Accessibility options for nextcloud" : "Toegankelijkheidsopties voor Nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Biedt verschillende opties om de toegankelijkheid van Nextcloud te verbeteren", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Universele toegang is heel belangrijk voor ons. We volgen webstandaarden en controleren dat alles ook zonder muis en met ondersteunende software zoals schermlezers bruikbaar is. We streven om de {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 op AA-niveau te volgen, en met het hoge contrast thema zelfs op AAA-niveau.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Mocht je eventuele problemen vinden, aarzel dan niet om ze te melden op {issuetracker}onze issue tracker{linkend}. En mocht je mee willen helpen, wordt dan lid van {designteam}ons ontwerpteam{linkend}!" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/apps/accessibility/l10n/nl.json b/apps/accessibility/l10n/nl.json deleted file mode 100644 index f1c8dd8fa67..00000000000 --- a/apps/accessibility/l10n/nl.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Donker thema", - "Enable dark theme" : "Donker thema inschakelen", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Een donker thema dat je ogen minder vermoeit door de lichtsterkte en helderheid te verminderen. Dit thema is nog in ontwikkeling, dus we horen graag als je fouten tegenkomt.", - "High contrast mode" : "Hoog contrast modus", - "Enable high contrast mode" : "Hoog contrast modus inschakelen", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Een thema met hoog contrast dat de navigatie vergemakkelijkt. De visuele kwaliteit vermindert, maar de duidelijkheid neemt toe.", - "Dyslexia font" : "Dyslexie-lettertype", - "Enable dyslexia font" : "Dyslexie-lettertype inschakelen", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic is een open source lettertype dat is ontwikkeld om de meest voorkomende leesfouten die worden veroorzaakt door dyslexie te voorkomen.", - "Accessibility" : "Toegankelijkheid", - "Accessibility options for nextcloud" : "Toegankelijkheidsopties voor Nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Biedt verschillende opties om de toegankelijkheid van Nextcloud te verbeteren", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Universele toegang is heel belangrijk voor ons. We volgen webstandaarden en controleren dat alles ook zonder muis en met ondersteunende software zoals schermlezers bruikbaar is. We streven om de {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 op AA-niveau te volgen, en met het hoge contrast thema zelfs op AAA-niveau.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Mocht je eventuele problemen vinden, aarzel dan niet om ze te melden op {issuetracker}onze issue tracker{linkend}. En mocht je mee willen helpen, wordt dan lid van {designteam}ons ontwerpteam{linkend}!" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/nn_NO.js b/apps/accessibility/l10n/nn_NO.js deleted file mode 100644 index e0dcff799ca..00000000000 --- a/apps/accessibility/l10n/nn_NO.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Mørkt tema", - "Enable dark theme" : "Mogleggjere mørkt tema", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Ei mørk drakt som er mildare mot augo ved å redusera utstråling og lysstyrke. Drakta vert framleis utvikla, så sei gjerne ifrå dersom du får vanskar.", - "High contrast mode" : "Høg kontrast modus", - "Enable high contrast mode" : "Mogleggjere høg kontrast modus", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Høg kontrast modus gjer det enklare å navigere. Visuell kvalitet vil bli redusert, mens innhaldet vert klårare.", - "Dyslexia font" : "Dysleksi-skrifttype", - "Enable dyslexia font" : "Mogleggjere skrifttype for dysleksikarar ", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic er ein gratis skrifttype som er laga for å redusera nokre vanlege lesefeil som kjem av dysleksi.", - "Accessibility" : "Tilgjenge", - "Accessibility options for nextcloud" : "Brukarval for tilgjenge i Nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Ulike innstillingar for å gjera Nextcloud lettare å bruka for funksjonshemma", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Universell tilgang er veldig viktig for oss. Vi følg vev standardar og undersøkjer at alt er mogleg å gjennomføre utan mus, og saman med hjelpeprogramvare som skjermlesar. Vi har som mål å vere i samsvar med {retningslinjene} Retningslinjer for tilgjengeleg nett innhald {lenkje} 2.1 for A-nivå, til og med for tema med høy kontrast på AAA-nivå. ", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "I tilfele du finn nokre problem, ikkje vent med å rapportere dei på {problemsøkjar} vår problemsøkjar {lenkje}. Og ønskjer du å engasjere deg, ta del i {designergruppa} designergruppa vår {lenkje}!" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/apps/accessibility/l10n/nn_NO.json b/apps/accessibility/l10n/nn_NO.json deleted file mode 100644 index a0f8cd52f48..00000000000 --- a/apps/accessibility/l10n/nn_NO.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Mørkt tema", - "Enable dark theme" : "Mogleggjere mørkt tema", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Ei mørk drakt som er mildare mot augo ved å redusera utstråling og lysstyrke. Drakta vert framleis utvikla, så sei gjerne ifrå dersom du får vanskar.", - "High contrast mode" : "Høg kontrast modus", - "Enable high contrast mode" : "Mogleggjere høg kontrast modus", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Høg kontrast modus gjer det enklare å navigere. Visuell kvalitet vil bli redusert, mens innhaldet vert klårare.", - "Dyslexia font" : "Dysleksi-skrifttype", - "Enable dyslexia font" : "Mogleggjere skrifttype for dysleksikarar ", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic er ein gratis skrifttype som er laga for å redusera nokre vanlege lesefeil som kjem av dysleksi.", - "Accessibility" : "Tilgjenge", - "Accessibility options for nextcloud" : "Brukarval for tilgjenge i Nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Ulike innstillingar for å gjera Nextcloud lettare å bruka for funksjonshemma", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Universell tilgang er veldig viktig for oss. Vi følg vev standardar og undersøkjer at alt er mogleg å gjennomføre utan mus, og saman med hjelpeprogramvare som skjermlesar. Vi har som mål å vere i samsvar med {retningslinjene} Retningslinjer for tilgjengeleg nett innhald {lenkje} 2.1 for A-nivå, til og med for tema med høy kontrast på AAA-nivå. ", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "I tilfele du finn nokre problem, ikkje vent med å rapportere dei på {problemsøkjar} vår problemsøkjar {lenkje}. Og ønskjer du å engasjere deg, ta del i {designergruppa} designergruppa vår {lenkje}!" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/oc.js b/apps/accessibility/l10n/oc.js deleted file mode 100644 index f41fabf99fb..00000000000 --- a/apps/accessibility/l10n/oc.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Tèma fosc", - "Enable dark theme" : "Activar lo tèma fosc", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Un tèma escur per solaçar vòstres uèlhs en redusissent la luminositat globala. Es encara en òbra, doncas mercés de senhalar quina que siá avaria que vesètz.", - "High contrast mode" : "Mòde fòrt contraste", - "Enable high contrast mode" : "Activar lo mòde fòrt contraste", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Un mòde fòrt contraste per facilitar la navegacion. La qualitat visuala baissarà mas la claror serà aumentada.", - "Dyslexia font" : "Poliça dyslexia", - "Enable dyslexia font" : "Activar la poliça dyslexia", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic es una poliça d'escritura concebuda per resòlver las errors de lectura comuna causadas per la dislexia.", - "Accessibility" : "Accessibilitat", - "Accessibility options for nextcloud" : "Opcions d’accessibilitat per nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Fornís mantuna opcion d’accessibilitat per facilitar vòstra utilizacion de Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Un accès universal es plan important per nosautres. Seguissèm los estandards web e verificam de rendre tot utilizable tanben sens mirga e amb de logicial d’assiténcia coma los lectors d’ecran. Avèm per tòca de complir las {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 al nivèl AA, amb un tèma de contraste naut amai al nivèl AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Se trobatz una avaria, esitetz pas de nos las senhalar sul {issuetracker}traçador de bugs{linkend}. E se volètz vos implicar, venètz rejónher {designteam}nòstra equipa de concepcion{linkend} !" -}, -"nplurals=2; plural=(n > 1);"); diff --git a/apps/accessibility/l10n/oc.json b/apps/accessibility/l10n/oc.json deleted file mode 100644 index ce4d4a8805e..00000000000 --- a/apps/accessibility/l10n/oc.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Tèma fosc", - "Enable dark theme" : "Activar lo tèma fosc", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Un tèma escur per solaçar vòstres uèlhs en redusissent la luminositat globala. Es encara en òbra, doncas mercés de senhalar quina que siá avaria que vesètz.", - "High contrast mode" : "Mòde fòrt contraste", - "Enable high contrast mode" : "Activar lo mòde fòrt contraste", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Un mòde fòrt contraste per facilitar la navegacion. La qualitat visuala baissarà mas la claror serà aumentada.", - "Dyslexia font" : "Poliça dyslexia", - "Enable dyslexia font" : "Activar la poliça dyslexia", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic es una poliça d'escritura concebuda per resòlver las errors de lectura comuna causadas per la dislexia.", - "Accessibility" : "Accessibilitat", - "Accessibility options for nextcloud" : "Opcions d’accessibilitat per nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Fornís mantuna opcion d’accessibilitat per facilitar vòstra utilizacion de Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Un accès universal es plan important per nosautres. Seguissèm los estandards web e verificam de rendre tot utilizable tanben sens mirga e amb de logicial d’assiténcia coma los lectors d’ecran. Avèm per tòca de complir las {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 al nivèl AA, amb un tèma de contraste naut amai al nivèl AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Se trobatz una avaria, esitetz pas de nos las senhalar sul {issuetracker}traçador de bugs{linkend}. E se volètz vos implicar, venètz rejónher {designteam}nòstra equipa de concepcion{linkend} !" -},"pluralForm" :"nplurals=2; plural=(n > 1);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/pl.js b/apps/accessibility/l10n/pl.js deleted file mode 100644 index fab190ef9fc..00000000000 --- a/apps/accessibility/l10n/pl.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Ciemny motyw", - "Enable dark theme" : "Włącz ciemny motyw", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Ciemny motyw, który łagodzi zmęczenie oczu, zmniejszając ogólną jasność. Nadal jest w fazie rozwoju, więc zgłaszaj wszelkie zauważone błędy.", - "High contrast mode" : "Tryb wysokiego kontrastu", - "Enable high contrast mode" : "Włącz tryb wysokiego kontrastu", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Tryb wysokiego kontrastu ułatwiający nawigację. Jakość obrazu zostanie zmniejszona, celem poprawy przejrzystości.", - "Dyslexia font" : "Czcionka dla dyslektyków", - "Enable dyslexia font" : "Włącz czcionkę dla dyslektyków", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic to darmowa czcionka zaprojektowana w celu zmniejszenia niektórych typowych błędów w czytaniu spowodowanych dysleksją.", - "Accessibility" : "Dostępność", - "Accessibility options for nextcloud" : "Opcje dostępności dla Nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Zapewnia wiele opcji dostępu dla ułatwienia korzystania z Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Uniwersalny dostęp jest dla nas bardzo ważny. Przestrzegamy standardów internetowych i sprawdzamy, aby wszystko było użyteczne również bez myszy i oprogramowania pomocniczego, takiego jak czytniki ekranu. Naszym celem jest zgodność z {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 na poziomie AA, z motywem o wysokim kontraście nawet na poziomie AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Jeśli znajdziesz jakieś problemy, nie wahaj się zgłosić je na {issuetracker}listę błędów{linkend}. A jeśli chcesz się zaangażować, dołącz do {designteam}naszego zespołu projektowego{linkend}!" -}, -"nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);"); diff --git a/apps/accessibility/l10n/pl.json b/apps/accessibility/l10n/pl.json deleted file mode 100644 index c781677eac6..00000000000 --- a/apps/accessibility/l10n/pl.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Ciemny motyw", - "Enable dark theme" : "Włącz ciemny motyw", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Ciemny motyw, który łagodzi zmęczenie oczu, zmniejszając ogólną jasność. Nadal jest w fazie rozwoju, więc zgłaszaj wszelkie zauważone błędy.", - "High contrast mode" : "Tryb wysokiego kontrastu", - "Enable high contrast mode" : "Włącz tryb wysokiego kontrastu", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Tryb wysokiego kontrastu ułatwiający nawigację. Jakość obrazu zostanie zmniejszona, celem poprawy przejrzystości.", - "Dyslexia font" : "Czcionka dla dyslektyków", - "Enable dyslexia font" : "Włącz czcionkę dla dyslektyków", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic to darmowa czcionka zaprojektowana w celu zmniejszenia niektórych typowych błędów w czytaniu spowodowanych dysleksją.", - "Accessibility" : "Dostępność", - "Accessibility options for nextcloud" : "Opcje dostępności dla Nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Zapewnia wiele opcji dostępu dla ułatwienia korzystania z Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Uniwersalny dostęp jest dla nas bardzo ważny. Przestrzegamy standardów internetowych i sprawdzamy, aby wszystko było użyteczne również bez myszy i oprogramowania pomocniczego, takiego jak czytniki ekranu. Naszym celem jest zgodność z {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 na poziomie AA, z motywem o wysokim kontraście nawet na poziomie AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Jeśli znajdziesz jakieś problemy, nie wahaj się zgłosić je na {issuetracker}listę błędów{linkend}. A jeśli chcesz się zaangażować, dołącz do {designteam}naszego zespołu projektowego{linkend}!" -},"pluralForm" :"nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/pt_BR.js b/apps/accessibility/l10n/pt_BR.js deleted file mode 100644 index 7fd4aa74de2..00000000000 --- a/apps/accessibility/l10n/pt_BR.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Tema escuro", - "Enable dark theme" : "Enable dark theme", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Um tema escuro para aliviar os olhos, reduzindo a luminosidade e brilho geral. Ainda está em desenvolvimento, por isso, informe qualquer problema encontrado.", - "High contrast mode" : "Modo de alto contraste", - "Enable high contrast mode" : "Ativar modo de alto contraste", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "O modo de alto contraste facilita a navegação. A qualidade visual será reduzida, mas a clareza será aumentada.", - "Dyslexia font" : "Fonte de dislexia", - "Enable dyslexia font" : "Ativar fonte dislexia", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic é um tipo de letra/fonte grátis concebida para atenuar alguns dos erros comuns de leitura causados pela dislexia.", - "Accessibility" : "Acessibilidade", - "Accessibility options for nextcloud" : "Opções de acessibilidade para nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Fornece várias opções de acessibilidade para facilitar o uso do Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "O acesso universal é muito importante para nós. Seguimos os padrões da web e nos certificamos de tornar tudo utilizável também sem mouse e software auxiliar, como leitores de tela. Nosso objetivo é estar em conformidade com as {guidelines}Diretrizes de Acessibilidade para Conteúdo da Web{linkend} 2.1 no nível AA, com o tema de alto contraste, mesmo no nível AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Se você encontrar algum problema, não hesite em reportá-lo no {issuetracker}nosso rastreador de problemas{linkend}. E se você quiser se envolver, junte-se à {designteam}nossa equipe de design{linkend}!" -}, -"nplurals=2; plural=(n > 1);"); diff --git a/apps/accessibility/l10n/pt_BR.json b/apps/accessibility/l10n/pt_BR.json deleted file mode 100644 index 9406962b7bb..00000000000 --- a/apps/accessibility/l10n/pt_BR.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Tema escuro", - "Enable dark theme" : "Enable dark theme", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Um tema escuro para aliviar os olhos, reduzindo a luminosidade e brilho geral. Ainda está em desenvolvimento, por isso, informe qualquer problema encontrado.", - "High contrast mode" : "Modo de alto contraste", - "Enable high contrast mode" : "Ativar modo de alto contraste", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "O modo de alto contraste facilita a navegação. A qualidade visual será reduzida, mas a clareza será aumentada.", - "Dyslexia font" : "Fonte de dislexia", - "Enable dyslexia font" : "Ativar fonte dislexia", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic é um tipo de letra/fonte grátis concebida para atenuar alguns dos erros comuns de leitura causados pela dislexia.", - "Accessibility" : "Acessibilidade", - "Accessibility options for nextcloud" : "Opções de acessibilidade para nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Fornece várias opções de acessibilidade para facilitar o uso do Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "O acesso universal é muito importante para nós. Seguimos os padrões da web e nos certificamos de tornar tudo utilizável também sem mouse e software auxiliar, como leitores de tela. Nosso objetivo é estar em conformidade com as {guidelines}Diretrizes de Acessibilidade para Conteúdo da Web{linkend} 2.1 no nível AA, com o tema de alto contraste, mesmo no nível AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Se você encontrar algum problema, não hesite em reportá-lo no {issuetracker}nosso rastreador de problemas{linkend}. E se você quiser se envolver, junte-se à {designteam}nossa equipe de design{linkend}!" -},"pluralForm" :"nplurals=2; plural=(n > 1);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/pt_PT.js b/apps/accessibility/l10n/pt_PT.js deleted file mode 100644 index 23e317c9eea..00000000000 --- a/apps/accessibility/l10n/pt_PT.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Tema escuro", - "Enable dark theme" : "Ativar tema escuro", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Um tema escuro para descansar os olhos reduzindo a luminosidade e o brilho. Ainda está em desenvolvimento, pelo que por favor reporte quaisquer erros que encontre.", - "High contrast mode" : "Modo de alto contraste", - "Enable high contrast mode" : "Ativar modo de alto contraste", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Um modo de alto contraste para facilitar sua navegação. A qualidade visual será reduzida, mas a clareza será aumentada.", - "Dyslexia font" : "Tipo de letra \"Dyslexia\"", - "Enable dyslexia font" : "Ativar tipo de letra \"Dyslexia\"", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic é um tipo de letra gratuito, desenhado para mitigar alguns dos problemas causados pela dislexia.", - "Accessibility" : "Acessibilidade", - "Accessibility options for nextcloud" : "Opções de acessibilidade para nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Fornece várias opções de acessibilidade para facilitar a sua utilização do Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "O acesso universal é muito importante para nós. Seguimos os padrões da web e verificamos para tornar tudo utilizável também sem rato e software auxiliar, como leitores de ecrã. O nosso objetivo é estar em conformidade com as {guidelines} Diretrizes de acessibilidade para o conteúdo da Web {linkend} 2.1 no nível AA, com o tema de alto contraste, mesmo no nível AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Se encontrar algum problema, não hesite em o reportar no {issuetracker} nosso issue tracker {linkend}. E se quiser participar, venha juntar-se à {designteam} a nossa equipa de design {linkend}!" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/apps/accessibility/l10n/pt_PT.json b/apps/accessibility/l10n/pt_PT.json deleted file mode 100644 index 16b99d28a93..00000000000 --- a/apps/accessibility/l10n/pt_PT.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Tema escuro", - "Enable dark theme" : "Ativar tema escuro", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Um tema escuro para descansar os olhos reduzindo a luminosidade e o brilho. Ainda está em desenvolvimento, pelo que por favor reporte quaisquer erros que encontre.", - "High contrast mode" : "Modo de alto contraste", - "Enable high contrast mode" : "Ativar modo de alto contraste", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Um modo de alto contraste para facilitar sua navegação. A qualidade visual será reduzida, mas a clareza será aumentada.", - "Dyslexia font" : "Tipo de letra \"Dyslexia\"", - "Enable dyslexia font" : "Ativar tipo de letra \"Dyslexia\"", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic é um tipo de letra gratuito, desenhado para mitigar alguns dos problemas causados pela dislexia.", - "Accessibility" : "Acessibilidade", - "Accessibility options for nextcloud" : "Opções de acessibilidade para nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Fornece várias opções de acessibilidade para facilitar a sua utilização do Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "O acesso universal é muito importante para nós. Seguimos os padrões da web e verificamos para tornar tudo utilizável também sem rato e software auxiliar, como leitores de ecrã. O nosso objetivo é estar em conformidade com as {guidelines} Diretrizes de acessibilidade para o conteúdo da Web {linkend} 2.1 no nível AA, com o tema de alto contraste, mesmo no nível AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Se encontrar algum problema, não hesite em o reportar no {issuetracker} nosso issue tracker {linkend}. E se quiser participar, venha juntar-se à {designteam} a nossa equipa de design {linkend}!" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/ro.js b/apps/accessibility/l10n/ro.js deleted file mode 100644 index e3aee3eac1d..00000000000 --- a/apps/accessibility/l10n/ro.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Temă întunecată", - "Enable dark theme" : "Activați tema întunecată", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "O temă întunecată pentru ușurarea ochilor prin reducerea generală a luminozității. Temă în curs de dezvoltare deci vă rugăm să raportați orice problemă găsită.", - "High contrast mode" : "Modul contrast puternic.", - "Enable high contrast mode" : "Activați tema cu contrast înalt", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Un contrast puternic poate ușura utilizarea. Calitatea vizuală va fi redusă, dar claritatea va fi ridicată.", - "Dyslexia font" : "Font dislexic", - "Enable dyslexia font" : "Activați fontul pentru dislexie", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic este un tip de caractere / font gratuit destinat să atenueze unele erori comune de citire cauzate de dislexie.", - "Accessibility" : "Accesibilitate", - "Accessibility options for nextcloud" : "Opțiuni de accesibilitate pentru nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Vă oferă opțiuni multiple de accesibilitate pentru a simplifica utilizarea Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Accesul universal este foarte important pentru noi. Urmărim standardele web și verificăm să facem ca toate funcțiile să poată fii utilizate și fără mouse și software de asistență, cum ar fi sofware de citit ecranul. Ne propunem să fim conformi cu {guidelines} Accesibilitatea conținutului web {linkend} 2.1 la nivel AA, cu tema de contrast ridicat chiar și la nivel AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Dacă găsiți probleme, nu ezitați să le raportați la {issuetracker} tracker-ul nostru de probleme {linkend}. Și dacă doriți să vă implicați, participați în {designteam} echipa noastră de design {linkend}!" -}, -"nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"); diff --git a/apps/accessibility/l10n/ro.json b/apps/accessibility/l10n/ro.json deleted file mode 100644 index 4e3742ef33e..00000000000 --- a/apps/accessibility/l10n/ro.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Temă întunecată", - "Enable dark theme" : "Activați tema întunecată", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "O temă întunecată pentru ușurarea ochilor prin reducerea generală a luminozității. Temă în curs de dezvoltare deci vă rugăm să raportați orice problemă găsită.", - "High contrast mode" : "Modul contrast puternic.", - "Enable high contrast mode" : "Activați tema cu contrast înalt", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Un contrast puternic poate ușura utilizarea. Calitatea vizuală va fi redusă, dar claritatea va fi ridicată.", - "Dyslexia font" : "Font dislexic", - "Enable dyslexia font" : "Activați fontul pentru dislexie", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic este un tip de caractere / font gratuit destinat să atenueze unele erori comune de citire cauzate de dislexie.", - "Accessibility" : "Accesibilitate", - "Accessibility options for nextcloud" : "Opțiuni de accesibilitate pentru nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Vă oferă opțiuni multiple de accesibilitate pentru a simplifica utilizarea Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Accesul universal este foarte important pentru noi. Urmărim standardele web și verificăm să facem ca toate funcțiile să poată fii utilizate și fără mouse și software de asistență, cum ar fi sofware de citit ecranul. Ne propunem să fim conformi cu {guidelines} Accesibilitatea conținutului web {linkend} 2.1 la nivel AA, cu tema de contrast ridicat chiar și la nivel AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Dacă găsiți probleme, nu ezitați să le raportați la {issuetracker} tracker-ul nostru de probleme {linkend}. Și dacă doriți să vă implicați, participați în {designteam} echipa noastră de design {linkend}!" -},"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/apps/accessibility/l10n/ru.js b/apps/accessibility/l10n/ru.js deleted file mode 100644 index de00362a1e1..00000000000 --- a/apps/accessibility/l10n/ru.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Тёмное оформление", - "Enable dark theme" : "Использовать тёмное оформление", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Тёмное оформление снижает напряжение глаз за счёт уменьшения общей яркости. Тема находится в разработке. Сообщайте о всех найденных ошибках и недочётах.", - "High contrast mode" : "Режим высокой контрастности", - "Enable high contrast mode" : "Включить режим высокой контрастности", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Этот режим делает ярлыки и кнопки меню более чёткими за счёт уменьшения качества.", - "Dyslexia font" : "Шрифт Dyslexia", - "Enable dyslexia font" : "Использовать шрифт Dyslexia", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic — бесплатный шрифт, который смягчает некоторые распространённые ошибки чтения, вызываемые дислексией.", - "Accessibility" : "Доступность", - "Accessibility options for nextcloud" : "Настройки доступности для Nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Предлагает дополнительные настройки для упрощения использования Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Доступная среда очень важна для нас. При разработке мы следуем веб-стандартам, контролируя возможность пользования всем сервисом без помощи мыши и с использованием вспомогательных программ, например, выполняющих чтение с экрана. Мы стремимся к выполнению рекомендаций {guidelines}Руководства доступности Веб-Контента{linkend} 2.1 на уровне АА, а при использовании режима высокой контрастности — даже на уровне ААА.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "При обнаружении ошибок, не стесняйтесь сообщать о них {issuetracker}на наш форум{linkend}. Если Вы заинтересованы в продвижении проекта присоединяйтесь к {designteam}нашей команде дизайнеров{linkend}!" -}, -"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/apps/accessibility/l10n/ru.json b/apps/accessibility/l10n/ru.json deleted file mode 100644 index 01dced937bb..00000000000 --- a/apps/accessibility/l10n/ru.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Тёмное оформление", - "Enable dark theme" : "Использовать тёмное оформление", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Тёмное оформление снижает напряжение глаз за счёт уменьшения общей яркости. Тема находится в разработке. Сообщайте о всех найденных ошибках и недочётах.", - "High contrast mode" : "Режим высокой контрастности", - "Enable high contrast mode" : "Включить режим высокой контрастности", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Этот режим делает ярлыки и кнопки меню более чёткими за счёт уменьшения качества.", - "Dyslexia font" : "Шрифт Dyslexia", - "Enable dyslexia font" : "Использовать шрифт Dyslexia", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic — бесплатный шрифт, который смягчает некоторые распространённые ошибки чтения, вызываемые дислексией.", - "Accessibility" : "Доступность", - "Accessibility options for nextcloud" : "Настройки доступности для Nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Предлагает дополнительные настройки для упрощения использования Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Доступная среда очень важна для нас. При разработке мы следуем веб-стандартам, контролируя возможность пользования всем сервисом без помощи мыши и с использованием вспомогательных программ, например, выполняющих чтение с экрана. Мы стремимся к выполнению рекомендаций {guidelines}Руководства доступности Веб-Контента{linkend} 2.1 на уровне АА, а при использовании режима высокой контрастности — даже на уровне ААА.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "При обнаружении ошибок, не стесняйтесь сообщать о них {issuetracker}на наш форум{linkend}. Если Вы заинтересованы в продвижении проекта присоединяйтесь к {designteam}нашей команде дизайнеров{linkend}!" -},"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/apps/accessibility/l10n/sc.js b/apps/accessibility/l10n/sc.js deleted file mode 100644 index 3438c22f718..00000000000 --- a/apps/accessibility/l10n/sc.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Tema iscuru ", - "Enable dark theme" : "Ativa su tema iscuru ", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Unu tema iscuru pro agiudare is ogros tuos menguende sa luminosidade e su lugore generale. Est ancora in fase de isvilupu, duncas sinnala cale si siat problema.", - "High contrast mode" : "Modalidade cuntrastu artu", - "Enable high contrast mode" : "Ativa sa modalidade cuntrastu altu", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Unu cuntrastu artu pro agiudare sa navigatzione tua. S'at a menguare sa calidade de visualizatzione, ma at a crèschere sa craresa.", - "Dyslexia font" : "Font pro dislessia", - "Enable dyslexia font" : "Ativa su font pro dislessia", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic est unu font lìberu pensadu pro illebiare unos cantos isbàllios comunes de leghidura causados dae sa dislessia.", - "Accessibility" : "Atzessibilidade", - "Accessibility options for nextcloud" : "Sèberos de atzessibilidade pro nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Frunit sèberos de atzessibilidade pro agiudare s'impreu tuo de Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "S'atzessu universale est de importu mannu pro nois. Sighimus is istandard de sa rete e chircamus de fàghere chi totu si potzat impreare chene cursore puru, e cun programmas de assistèntzia comente leghidores de ischermu. S'intentu nostru est de acumprire is inditos de is {guidelines}Lìinas ghia cuntenutos de rete{linkend} 2.1 a su livellu AA, cun su tema de cuntrastu artu a su livellu AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Si agatas problemas, no istentes a ddu sinnalare a {issuetracker}su rastradore nostru{linkend}. E si nos cheres agiudare, intra in {designteam}su grupu de disegnu nostru{linkend}!" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/apps/accessibility/l10n/sc.json b/apps/accessibility/l10n/sc.json deleted file mode 100644 index 6221645f62d..00000000000 --- a/apps/accessibility/l10n/sc.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Tema iscuru ", - "Enable dark theme" : "Ativa su tema iscuru ", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Unu tema iscuru pro agiudare is ogros tuos menguende sa luminosidade e su lugore generale. Est ancora in fase de isvilupu, duncas sinnala cale si siat problema.", - "High contrast mode" : "Modalidade cuntrastu artu", - "Enable high contrast mode" : "Ativa sa modalidade cuntrastu altu", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Unu cuntrastu artu pro agiudare sa navigatzione tua. S'at a menguare sa calidade de visualizatzione, ma at a crèschere sa craresa.", - "Dyslexia font" : "Font pro dislessia", - "Enable dyslexia font" : "Ativa su font pro dislessia", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic est unu font lìberu pensadu pro illebiare unos cantos isbàllios comunes de leghidura causados dae sa dislessia.", - "Accessibility" : "Atzessibilidade", - "Accessibility options for nextcloud" : "Sèberos de atzessibilidade pro nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Frunit sèberos de atzessibilidade pro agiudare s'impreu tuo de Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "S'atzessu universale est de importu mannu pro nois. Sighimus is istandard de sa rete e chircamus de fàghere chi totu si potzat impreare chene cursore puru, e cun programmas de assistèntzia comente leghidores de ischermu. S'intentu nostru est de acumprire is inditos de is {guidelines}Lìinas ghia cuntenutos de rete{linkend} 2.1 a su livellu AA, cun su tema de cuntrastu artu a su livellu AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Si agatas problemas, no istentes a ddu sinnalare a {issuetracker}su rastradore nostru{linkend}. E si nos cheres agiudare, intra in {designteam}su grupu de disegnu nostru{linkend}!" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/sk.js b/apps/accessibility/l10n/sk.js deleted file mode 100644 index dbc1ba4faea..00000000000 --- a/apps/accessibility/l10n/sk.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Tmavý motív vzhľadu", - "Enable dark theme" : "Zapnúť tmavý motív vzhľadu", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Tmavý motív vzhľadu pre úľavu vašim očiam znížením celkovej svietivosti a jasu. Je ešte stále vo vývoji, ak náhodou narazíte na nejaký problém, tak nám ho prosím nahláste.", - "High contrast mode" : "Režim vysokého kontrastu", - "Enable high contrast mode" : "Zapnúť režim vysokého kontrastu", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Mód s vysokým kontrastom pre uľahčenie navigácie. Zníži sa síce vizuálna kvalita, ale zvýši sa čitateľnosť.", - "Dyslexia font" : "Písmo pre dyslektikov", - "Enable dyslexia font" : "Povoliť písmo pre dyslektikov", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic je slobodný typ písma navrhnutý priamo pre obmedzenie vplyvu niektorých bežných porúch čítania spôsobených dyslexiou.", - "Accessibility" : "Prístupnosť", - "Accessibility options for nextcloud" : "Možnosti prístupnosti pre Nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Poskytuje viac možností prístupnosti pre uľahčenie používania Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Univerzálny prístup je pre nás veľmi dôležitý. Dodržiavame webové štandardy a kontrolujeme, aby bolo všetko použiteľné aj bez myši a pomocného softvéru, ako sú čítačky obrazovky. Naším cieľom je byť v súlade s {guidelines}pokynmi pre prístup k webovému obsahu {linkend} 2.1 na úrovni AA, v režime vysokého kontrastu dokonca na úrovni AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Ak nájdete nejaký problém, neváhajte a nahláste ho na {issuetracker}nástroj na sledovanie problémov{linkend}. A ak sa chcete zapojiť, pripojte sa k {designteam}nášmu dizajnérskemu tímu{linkend}!" -}, -"nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);"); diff --git a/apps/accessibility/l10n/sk.json b/apps/accessibility/l10n/sk.json deleted file mode 100644 index db5113e8443..00000000000 --- a/apps/accessibility/l10n/sk.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Tmavý motív vzhľadu", - "Enable dark theme" : "Zapnúť tmavý motív vzhľadu", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Tmavý motív vzhľadu pre úľavu vašim očiam znížením celkovej svietivosti a jasu. Je ešte stále vo vývoji, ak náhodou narazíte na nejaký problém, tak nám ho prosím nahláste.", - "High contrast mode" : "Režim vysokého kontrastu", - "Enable high contrast mode" : "Zapnúť režim vysokého kontrastu", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Mód s vysokým kontrastom pre uľahčenie navigácie. Zníži sa síce vizuálna kvalita, ale zvýši sa čitateľnosť.", - "Dyslexia font" : "Písmo pre dyslektikov", - "Enable dyslexia font" : "Povoliť písmo pre dyslektikov", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic je slobodný typ písma navrhnutý priamo pre obmedzenie vplyvu niektorých bežných porúch čítania spôsobených dyslexiou.", - "Accessibility" : "Prístupnosť", - "Accessibility options for nextcloud" : "Možnosti prístupnosti pre Nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Poskytuje viac možností prístupnosti pre uľahčenie používania Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Univerzálny prístup je pre nás veľmi dôležitý. Dodržiavame webové štandardy a kontrolujeme, aby bolo všetko použiteľné aj bez myši a pomocného softvéru, ako sú čítačky obrazovky. Naším cieľom je byť v súlade s {guidelines}pokynmi pre prístup k webovému obsahu {linkend} 2.1 na úrovni AA, v režime vysokého kontrastu dokonca na úrovni AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Ak nájdete nejaký problém, neváhajte a nahláste ho na {issuetracker}nástroj na sledovanie problémov{linkend}. A ak sa chcete zapojiť, pripojte sa k {designteam}nášmu dizajnérskemu tímu{linkend}!" -},"pluralForm" :"nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/sl.js b/apps/accessibility/l10n/sl.js deleted file mode 100644 index aea8d31f23b..00000000000 --- a/apps/accessibility/l10n/sl.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Temna tema", - "Enable dark theme" : "Omogoči temno temo", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Temna tema zmanjša splošno svetlost vmesnika. Tema je še v razvoju, zato je priporočljivo poslati tudi poročila o napakah, ki jih opazite.", - "High contrast mode" : "Visoko kontrastna tema", - "Enable high contrast mode" : "Omogoči visoko kontrastno temo", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Visoko kontrastna tema omogoča nazornejši prikaz vmesnika. Pogled se poenostavi, poveča pa se jasnost prikaza.", - "Dyslexia font" : "Pisava za posameznike z disleksijo", - "Enable dyslexia font" : "Omogoči pisavo za posameznike z disleksijo", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "Pisava OpenDyslexic je brezplačna pisava, zasnovana in oblikovana po priporočilih za posameznike z disleksijo. Zmanjša nekatere splošne težave pri branju.", - "Accessibility" : "Dostopnost", - "Accessibility options for nextcloud" : "Možnosti dostopnosti za okolje Nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Omogoča več možnosti dostopnosti za lažje delo v okolju Nextcloud.", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Enostaven dostop do možnosti je za nas zelo pomemben. Sledimo spletnim standardom in preverjamo, da je vmesnik uporaben tudi brez uporabe miške in brez podporne programske opreme, kot so zaslonski bralniki in podobno. Zagotavljamo skladnost s smernicami {guidelines}Dostopnosti spletne vsebine{linkend} 2.1 na ravni AA, pri visoko kontrastni temi pa tudi na ravni AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Če naletite na težave, ne odlašajte in takoj pošljite poročilo na {issuetracker}sledilnik{linkend}, če želite sodelovati, pa se pridružite {designteam}skupini oblikovalcev{linkend}!" -}, -"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"); diff --git a/apps/accessibility/l10n/sl.json b/apps/accessibility/l10n/sl.json deleted file mode 100644 index 752da8edf95..00000000000 --- a/apps/accessibility/l10n/sl.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Temna tema", - "Enable dark theme" : "Omogoči temno temo", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Temna tema zmanjša splošno svetlost vmesnika. Tema je še v razvoju, zato je priporočljivo poslati tudi poročila o napakah, ki jih opazite.", - "High contrast mode" : "Visoko kontrastna tema", - "Enable high contrast mode" : "Omogoči visoko kontrastno temo", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Visoko kontrastna tema omogoča nazornejši prikaz vmesnika. Pogled se poenostavi, poveča pa se jasnost prikaza.", - "Dyslexia font" : "Pisava za posameznike z disleksijo", - "Enable dyslexia font" : "Omogoči pisavo za posameznike z disleksijo", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "Pisava OpenDyslexic je brezplačna pisava, zasnovana in oblikovana po priporočilih za posameznike z disleksijo. Zmanjša nekatere splošne težave pri branju.", - "Accessibility" : "Dostopnost", - "Accessibility options for nextcloud" : "Možnosti dostopnosti za okolje Nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Omogoča več možnosti dostopnosti za lažje delo v okolju Nextcloud.", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Enostaven dostop do možnosti je za nas zelo pomemben. Sledimo spletnim standardom in preverjamo, da je vmesnik uporaben tudi brez uporabe miške in brez podporne programske opreme, kot so zaslonski bralniki in podobno. Zagotavljamo skladnost s smernicami {guidelines}Dostopnosti spletne vsebine{linkend} 2.1 na ravni AA, pri visoko kontrastni temi pa tudi na ravni AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Če naletite na težave, ne odlašajte in takoj pošljite poročilo na {issuetracker}sledilnik{linkend}, če želite sodelovati, pa se pridružite {designteam}skupini oblikovalcev{linkend}!" -},"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/apps/accessibility/l10n/sq.js b/apps/accessibility/l10n/sq.js deleted file mode 100644 index f9589cce112..00000000000 --- a/apps/accessibility/l10n/sq.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Temë e errët", - "Enable dark theme" : "Aktivizo temën e errët", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Një temë e errët për të lehtësuar sytë duke ulur shkëlqimin dhe ndritshmërinë e përgjithshme. Është ende në zhvillim, prandaj ju lutemi raportoni çdo çështje që mund të gjeni.", - "High contrast mode" : "Modalitet me kontrast të lartë", - "Enable high contrast mode" : "Aktivizoni modalitetin me kontrast të lartë", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Një modalitet me kontrast të lartë për të lehtësuar lundrimin. Cilësia vizuale do të reduktohet por qartësia do të rritet", - "Dyslexia font" : "Fonti Dyslexia", - "Enable dyslexia font" : "Aktivizo fontin e disleksisë", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic është një font / karakter tipografik i lirë i dizajnuar për të zbutur disa nga gabimet e zakonshme të leximit të shkaktuara nga disleksija.", - "Accessibility" : "Aksesueshmëria", - "Accessibility options for nextcloud" : "Opsionet e aksesueshmërisë për nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Mundëson shumë opsione të aksesueshmërisë që t'ju lehtësojë përdorimin e Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Qasja universale është shumë e rëndësishme për ne. Ne ndjekim standardet e uebit dhe kontrollojmë që çdo gjë të jetë e përdorshme edhe pa miun, dhe softuerë ndihmës siç janë lexuesit e ekranit. Ne synojmë të jemi në përputhje me {udhëzimet}Udhëzimet mbi Aksesueshmërinë për Përmbajtjen në Internet{linkend} 2.1 në nivelin AA, me temën e kontrastit të lartë edhe në nivelin AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Nëse gjeni ndonjë problem, mos hezitoni t'i raportoni ato në {issuetracker}gjurmuesi ynë i çështjeve{linkend}. Dhe nëse doni të përfshiheni, ejani bashkohuni me {designteam}ekipin tonë të dizajnit{linkend}!" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/apps/accessibility/l10n/sq.json b/apps/accessibility/l10n/sq.json deleted file mode 100644 index b0f71453b0f..00000000000 --- a/apps/accessibility/l10n/sq.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Temë e errët", - "Enable dark theme" : "Aktivizo temën e errët", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Një temë e errët për të lehtësuar sytë duke ulur shkëlqimin dhe ndritshmërinë e përgjithshme. Është ende në zhvillim, prandaj ju lutemi raportoni çdo çështje që mund të gjeni.", - "High contrast mode" : "Modalitet me kontrast të lartë", - "Enable high contrast mode" : "Aktivizoni modalitetin me kontrast të lartë", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Një modalitet me kontrast të lartë për të lehtësuar lundrimin. Cilësia vizuale do të reduktohet por qartësia do të rritet", - "Dyslexia font" : "Fonti Dyslexia", - "Enable dyslexia font" : "Aktivizo fontin e disleksisë", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic është një font / karakter tipografik i lirë i dizajnuar për të zbutur disa nga gabimet e zakonshme të leximit të shkaktuara nga disleksija.", - "Accessibility" : "Aksesueshmëria", - "Accessibility options for nextcloud" : "Opsionet e aksesueshmërisë për nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Mundëson shumë opsione të aksesueshmërisë që t'ju lehtësojë përdorimin e Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Qasja universale është shumë e rëndësishme për ne. Ne ndjekim standardet e uebit dhe kontrollojmë që çdo gjë të jetë e përdorshme edhe pa miun, dhe softuerë ndihmës siç janë lexuesit e ekranit. Ne synojmë të jemi në përputhje me {udhëzimet}Udhëzimet mbi Aksesueshmërinë për Përmbajtjen në Internet{linkend} 2.1 në nivelin AA, me temën e kontrastit të lartë edhe në nivelin AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Nëse gjeni ndonjë problem, mos hezitoni t'i raportoni ato në {issuetracker}gjurmuesi ynë i çështjeve{linkend}. Dhe nëse doni të përfshiheni, ejani bashkohuni me {designteam}ekipin tonë të dizajnit{linkend}!" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/sr.js b/apps/accessibility/l10n/sr.js deleted file mode 100644 index dc0f966b8e9..00000000000 --- a/apps/accessibility/l10n/sr.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Тамна тема", - "Enable dark theme" : "укључи тамну тему", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Тамна тема олакшава очима смањујући укупну осветљеност. Још је у развоју, па пријавите све грешке, уколико их нађете.", - "High contrast mode" : "Режим високог контраста", - "Enable high contrast mode" : "укључи режим високог контраста", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Режим високог контраста за лакшу навигацију. Визуелни доживљај биће лошији али ће јасноћа бити боља.", - "Dyslexia font" : "Фонт Дислексија", - "Enable dyslexia font" : "укључи фонт Дислексија", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "„OpenDyslexic“ је бесплатни фонт дизајниран да умањи честе грешке у читању изазване дислексијом.", - "Accessibility" : "Приступачност", - "Accessibility options for nextcloud" : "Опције приступачности за Некстлауд", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Нуди више опција за приступачност да олакша употребу Некстклауда", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Универзални приступ нам је веома важан. Пратимо веб стандарде и проверавамо да све буде употребљиво и без миша а и са помоћним софтвером попут читача екрана. Циљ нам је да будемо усклађени са документом {guidelines}Смернице приступачности веб садржаја{linkend} 2.1 на АА нивоу а са темом високог контраста и на ААА нивоу.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Наиђете ли на било какве проблеме, не оклевајте да их пријавите на {issuetracker}нашем пратиоцу проблема{linkend}. А ако пожелите да се укључите, придружите се {designteam}нашем тиму{linkend}!" -}, -"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/apps/accessibility/l10n/sr.json b/apps/accessibility/l10n/sr.json deleted file mode 100644 index 177e660ae6e..00000000000 --- a/apps/accessibility/l10n/sr.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Тамна тема", - "Enable dark theme" : "укључи тамну тему", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Тамна тема олакшава очима смањујући укупну осветљеност. Још је у развоју, па пријавите све грешке, уколико их нађете.", - "High contrast mode" : "Режим високог контраста", - "Enable high contrast mode" : "укључи режим високог контраста", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Режим високог контраста за лакшу навигацију. Визуелни доживљај биће лошији али ће јасноћа бити боља.", - "Dyslexia font" : "Фонт Дислексија", - "Enable dyslexia font" : "укључи фонт Дислексија", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "„OpenDyslexic“ је бесплатни фонт дизајниран да умањи честе грешке у читању изазване дислексијом.", - "Accessibility" : "Приступачност", - "Accessibility options for nextcloud" : "Опције приступачности за Некстлауд", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Нуди више опција за приступачност да олакша употребу Некстклауда", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Универзални приступ нам је веома важан. Пратимо веб стандарде и проверавамо да све буде употребљиво и без миша а и са помоћним софтвером попут читача екрана. Циљ нам је да будемо усклађени са документом {guidelines}Смернице приступачности веб садржаја{linkend} 2.1 на АА нивоу а са темом високог контраста и на ААА нивоу.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Наиђете ли на било какве проблеме, не оклевајте да их пријавите на {issuetracker}нашем пратиоцу проблема{linkend}. А ако пожелите да се укључите, придружите се {designteam}нашем тиму{linkend}!" -},"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/apps/accessibility/l10n/sr@latin.js b/apps/accessibility/l10n/sr@latin.js deleted file mode 100644 index 5ff63be4706..00000000000 --- a/apps/accessibility/l10n/sr@latin.js +++ /dev/null @@ -1,14 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Tamna tema", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Tamna tema olakšava očima smanjujući ukupnu osvetljenost. Još je u razvoju, pa prijavite sve greške, ukoliko ih nađete.", - "High contrast mode" : "Režim visokog kontrasta", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Režim visokog kontrasta da olakša navigaciju. Vizuelni kvalitet će biti smanjen, ali će se poboljšati jasnost.", - "Dyslexia font" : "Font Disleksija", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "„OpenDyslexic“ je besplatni font dizajniran da umanji česte greške u čitanju izazvane disleksijom.", - "Accessibility" : "Pristupačnost", - "Accessibility options for nextcloud" : "Opcije pristupačnosti za Nekstlaud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Nudi više opcija za pristupačnost da olakša upotrebu Nekstklauda" -}, -"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/apps/accessibility/l10n/sr@latin.json b/apps/accessibility/l10n/sr@latin.json deleted file mode 100644 index 193d95a41c8..00000000000 --- a/apps/accessibility/l10n/sr@latin.json +++ /dev/null @@ -1,12 +0,0 @@ -{ "translations": { - "Dark theme" : "Tamna tema", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Tamna tema olakšava očima smanjujući ukupnu osvetljenost. Još je u razvoju, pa prijavite sve greške, ukoliko ih nađete.", - "High contrast mode" : "Režim visokog kontrasta", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Režim visokog kontrasta da olakša navigaciju. Vizuelni kvalitet će biti smanjen, ali će se poboljšati jasnost.", - "Dyslexia font" : "Font Disleksija", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "„OpenDyslexic“ je besplatni font dizajniran da umanji česte greške u čitanju izazvane disleksijom.", - "Accessibility" : "Pristupačnost", - "Accessibility options for nextcloud" : "Opcije pristupačnosti za Nekstlaud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Nudi više opcija za pristupačnost da olakša upotrebu Nekstklauda" -},"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/apps/accessibility/l10n/sv.js b/apps/accessibility/l10n/sv.js deleted file mode 100644 index 3e2326c77f3..00000000000 --- a/apps/accessibility/l10n/sv.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Mörkt tema", - "Enable dark theme" : "Aktivera mörkt tema", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Ett mörkt tema för att lätta dina ögon genom att minska den allmänna ljusstyrkan. Det är fortfarande under utveckling, så rapportera gärna eventuella problem ni hittar.", - "High contrast mode" : "Läge med hög kontrast", - "Enable high contrast mode" : "Aktivera läge med hög kontrast", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Ett läge med hög kontrast för att underlätta din navigering. Visuell kvalitet kommer att minska men tydligheten ökar.", - "Dyslexia font" : "Teckensnitt för dyslektiker", - "Enable dyslexia font" : "Aktivera teckensnitt för dyslektiker", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic är ett fritt teckensnitt/font som är utformat för att mildra några av de vanligaste lässvårigheterna som orsakas av dyslexi.", - "Accessibility" : "Tillgänglighet", - "Accessibility options for nextcloud" : "Tillgänglighetsalternativ för Nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Ger flera tillgänglighetsalternativ för att underlätta din användning av Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Allmän åtkomst är mycket viktig för oss. Vi följer webbstandarder och kontrollerar att allt är användbart även utan mus och hjälpmedel som skärmläsare. Vi strävar efter att följa {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 på AA-nivå, med temat hög kontrast även på AAA-nivå.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Om du hittar några problem, tveka inte att rapportera dem på {issuetracker}vår problemhanterare{linkend}. Och om du vill engagera dig, gå med i {designteam}vårt designteam{linkend}!" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/apps/accessibility/l10n/sv.json b/apps/accessibility/l10n/sv.json deleted file mode 100644 index 5bc3d5fffdc..00000000000 --- a/apps/accessibility/l10n/sv.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Mörkt tema", - "Enable dark theme" : "Aktivera mörkt tema", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Ett mörkt tema för att lätta dina ögon genom att minska den allmänna ljusstyrkan. Det är fortfarande under utveckling, så rapportera gärna eventuella problem ni hittar.", - "High contrast mode" : "Läge med hög kontrast", - "Enable high contrast mode" : "Aktivera läge med hög kontrast", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Ett läge med hög kontrast för att underlätta din navigering. Visuell kvalitet kommer att minska men tydligheten ökar.", - "Dyslexia font" : "Teckensnitt för dyslektiker", - "Enable dyslexia font" : "Aktivera teckensnitt för dyslektiker", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic är ett fritt teckensnitt/font som är utformat för att mildra några av de vanligaste lässvårigheterna som orsakas av dyslexi.", - "Accessibility" : "Tillgänglighet", - "Accessibility options for nextcloud" : "Tillgänglighetsalternativ för Nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Ger flera tillgänglighetsalternativ för att underlätta din användning av Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Allmän åtkomst är mycket viktig för oss. Vi följer webbstandarder och kontrollerar att allt är användbart även utan mus och hjälpmedel som skärmläsare. Vi strävar efter att följa {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 på AA-nivå, med temat hög kontrast även på AAA-nivå.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Om du hittar några problem, tveka inte att rapportera dem på {issuetracker}vår problemhanterare{linkend}. Och om du vill engagera dig, gå med i {designteam}vårt designteam{linkend}!" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/th.js b/apps/accessibility/l10n/th.js deleted file mode 100644 index 0a8a8bf527d..00000000000 --- a/apps/accessibility/l10n/th.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "ธีมสีเข้ม", - "Enable dark theme" : "เปิดใช้ธีมสีเข้ม", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "ธีมสีเข้มทำให้ดวงตาของคุณสบายขึ้น โดยลดแสงส่องสว่าง และความสว่างโดยรวม ซึ่งยังอยู่ระหว่างการพัฒนา ดังนั้นโปรดรายงานปัญหาใด ๆ ที่คุณอาจพบ", - "High contrast mode" : "โหมดความคมชัดสูง", - "Enable high contrast mode" : "เปิดโหมดความคมชัดสูง", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "โหมดความคมชัดสูง ช่วยเพิ่มความสะดวกในการใช้งานของคุณ คุณภาพของภาพจะลดลง แต่ความคมชัดจะเพิ่มขึ้น", - "Dyslexia font" : "ฟอนต์ภาวะเสียการอ่านเข้าใจ", - "Enable dyslexia font" : "เปิดฟอนต์ภาวะเสียการอ่านเข้าใจ", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic เป็นแบบอักษร/ฟอนต์ฟรีที่ออกแบบมาเพื่อลดข้อผิดพลาดทั่วไปในการอ่านที่เกิดจากภาวะเสียการอ่านเข้าใจ", - "Accessibility" : "การช่วยการเข้าถึง", - "Accessibility options for nextcloud" : "ตัวเลือกการช่วยการเข้าถึงสำหรับ nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "มีหลายตัวเลือกในการช่วยการเข้าถึงเพื่อช่วยให้การใช้งาน Nextcloud ของคุณง่ายขึ้น", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "การเข้าถึงสากลเป็นสิ่งสำคัญมากสำหรับเรา เราปฏิบัติตามมาตรฐานเว็บและตรวจสอบเพื่อให้ทุกอย่างใช้งานได้โดยไม่ต้องใช้เมาส์และซอฟต์แวร์ช่วยเหลือ เช่น โปรแกรมอ่านหน้าจอ เรามุ่งมั่นที่จะปฏิบัติตาม{guidelines}แนวทางการเข้าถึงเนื้อหาเว็บ{linkend} 2.1 ในระดับ AA ด้วยธีมความคมชัดสูงแม้ในระดับ AAA", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "หากคุณพบปัญหาใด ๆ อย่าลังเลที่จะรายงานปัญหาเหล่านี้ใน{issuetracker}เครื่องมือติดตามปัญหาของเรา{linkend} และหากคุณต้องการมีส่วนร่วม เข้าร่วม{designteam}ทีมออกแบบของเรา{linkend}ได้เลย!" -}, -"nplurals=1; plural=0;"); diff --git a/apps/accessibility/l10n/th.json b/apps/accessibility/l10n/th.json deleted file mode 100644 index 0265dbf2645..00000000000 --- a/apps/accessibility/l10n/th.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "ธีมสีเข้ม", - "Enable dark theme" : "เปิดใช้ธีมสีเข้ม", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "ธีมสีเข้มทำให้ดวงตาของคุณสบายขึ้น โดยลดแสงส่องสว่าง และความสว่างโดยรวม ซึ่งยังอยู่ระหว่างการพัฒนา ดังนั้นโปรดรายงานปัญหาใด ๆ ที่คุณอาจพบ", - "High contrast mode" : "โหมดความคมชัดสูง", - "Enable high contrast mode" : "เปิดโหมดความคมชัดสูง", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "โหมดความคมชัดสูง ช่วยเพิ่มความสะดวกในการใช้งานของคุณ คุณภาพของภาพจะลดลง แต่ความคมชัดจะเพิ่มขึ้น", - "Dyslexia font" : "ฟอนต์ภาวะเสียการอ่านเข้าใจ", - "Enable dyslexia font" : "เปิดฟอนต์ภาวะเสียการอ่านเข้าใจ", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic เป็นแบบอักษร/ฟอนต์ฟรีที่ออกแบบมาเพื่อลดข้อผิดพลาดทั่วไปในการอ่านที่เกิดจากภาวะเสียการอ่านเข้าใจ", - "Accessibility" : "การช่วยการเข้าถึง", - "Accessibility options for nextcloud" : "ตัวเลือกการช่วยการเข้าถึงสำหรับ nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "มีหลายตัวเลือกในการช่วยการเข้าถึงเพื่อช่วยให้การใช้งาน Nextcloud ของคุณง่ายขึ้น", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "การเข้าถึงสากลเป็นสิ่งสำคัญมากสำหรับเรา เราปฏิบัติตามมาตรฐานเว็บและตรวจสอบเพื่อให้ทุกอย่างใช้งานได้โดยไม่ต้องใช้เมาส์และซอฟต์แวร์ช่วยเหลือ เช่น โปรแกรมอ่านหน้าจอ เรามุ่งมั่นที่จะปฏิบัติตาม{guidelines}แนวทางการเข้าถึงเนื้อหาเว็บ{linkend} 2.1 ในระดับ AA ด้วยธีมความคมชัดสูงแม้ในระดับ AAA", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "หากคุณพบปัญหาใด ๆ อย่าลังเลที่จะรายงานปัญหาเหล่านี้ใน{issuetracker}เครื่องมือติดตามปัญหาของเรา{linkend} และหากคุณต้องการมีส่วนร่วม เข้าร่วม{designteam}ทีมออกแบบของเรา{linkend}ได้เลย!" -},"pluralForm" :"nplurals=1; plural=0;" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/tr.js b/apps/accessibility/l10n/tr.js deleted file mode 100644 index bc8eeccfc60..00000000000 --- a/apps/accessibility/l10n/tr.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Koyu tema", - "Enable dark theme" : "Koyu tema kullanılsın", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Koyu tema genel parlaklık ve canlılığı zayıflatarak göz yorgunluğunu azaltır. Bu tema henüz geliştirme aşamasında olduğundan karşılaşabileceğiniz sorunları bize iletmenizi rica ediyoruz.", - "High contrast mode" : "Yüksek renk karşıtlığı kipi", - "Enable high contrast mode" : "Yüksek karşıtlık kipi kullanılsın", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Yüksek renk karşıtlığı kipi gezinmeyi kolaylaştırır. Görsel kalite azalır ancak netlik artar.", - "Dyslexia font" : "Disleksik yazı türü", - "Enable dyslexia font" : "Disleksik yazı türü kullanılsın", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic, disleksi nedeniyle sık karşılaşılan sorunları aşmak için geliştirilmiş ücretsiz bir yazı türüdür.", - "Accessibility" : "Erişilebilirlik", - "Accessibility options for nextcloud" : "Nextcloud erişebilirlik ayarları", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Nextcloud kullanımınızı kolaylaştıracak çeşitli erişebilirlik seçenekleri sunar", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Uygulamalarımızı herkesin kullanabilmesini çok önemsiyoruz. Web standartlarını izleyerek, işlemlerin fare olmadan da yapılabilmesini ve ekran okuyucular gibi yardımcı yazılımların kullanılabilmesini sağlıyoruz. AAA düzeyinde yüksek karşıtlık teması ile AA düzeyinde {guidelines}Web İçeriği Erişilebilirlik Kuralları{linkend} 2.1 ile uyumlu olmayı amaçladık.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Bir sorunla karşılaşırsanız, bunları {issuetracker}sorun izleyicimiz{linkend} üzerinden bildirmekten çekinmeyin. Katkıda bulunmak istiyorsanız {designteam}tasarım ekibimize{linkend} katılın!" -}, -"nplurals=2; plural=(n > 1);"); diff --git a/apps/accessibility/l10n/tr.json b/apps/accessibility/l10n/tr.json deleted file mode 100644 index 25631874a01..00000000000 --- a/apps/accessibility/l10n/tr.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Koyu tema", - "Enable dark theme" : "Koyu tema kullanılsın", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Koyu tema genel parlaklık ve canlılığı zayıflatarak göz yorgunluğunu azaltır. Bu tema henüz geliştirme aşamasında olduğundan karşılaşabileceğiniz sorunları bize iletmenizi rica ediyoruz.", - "High contrast mode" : "Yüksek renk karşıtlığı kipi", - "Enable high contrast mode" : "Yüksek karşıtlık kipi kullanılsın", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Yüksek renk karşıtlığı kipi gezinmeyi kolaylaştırır. Görsel kalite azalır ancak netlik artar.", - "Dyslexia font" : "Disleksik yazı türü", - "Enable dyslexia font" : "Disleksik yazı türü kullanılsın", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic, disleksi nedeniyle sık karşılaşılan sorunları aşmak için geliştirilmiş ücretsiz bir yazı türüdür.", - "Accessibility" : "Erişilebilirlik", - "Accessibility options for nextcloud" : "Nextcloud erişebilirlik ayarları", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Nextcloud kullanımınızı kolaylaştıracak çeşitli erişebilirlik seçenekleri sunar", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Uygulamalarımızı herkesin kullanabilmesini çok önemsiyoruz. Web standartlarını izleyerek, işlemlerin fare olmadan da yapılabilmesini ve ekran okuyucular gibi yardımcı yazılımların kullanılabilmesini sağlıyoruz. AAA düzeyinde yüksek karşıtlık teması ile AA düzeyinde {guidelines}Web İçeriği Erişilebilirlik Kuralları{linkend} 2.1 ile uyumlu olmayı amaçladık.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Bir sorunla karşılaşırsanız, bunları {issuetracker}sorun izleyicimiz{linkend} üzerinden bildirmekten çekinmeyin. Katkıda bulunmak istiyorsanız {designteam}tasarım ekibimize{linkend} katılın!" -},"pluralForm" :"nplurals=2; plural=(n > 1);" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/uk.js b/apps/accessibility/l10n/uk.js deleted file mode 100644 index 4e3cadcb63c..00000000000 --- a/apps/accessibility/l10n/uk.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Темна тема", - "Enable dark theme" : "Увімкнути темну тему", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Темна тема зменшує навантаження на очі завдяки зменшенню освітлення та яскравості. Вона ще в процесі розробки, тож повідомляйте, будь-ласка, про будь-які проблеми, з якими ви можете зіткнутись.", - "High contrast mode" : "Висококонтрастний режим", - "Enable high contrast mode" : "Увімкнути висококонтрастний режим", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Висококонтрастний режим спрощує Вашу навігацію. Візуальна якість буде знижена, але чіткість підвищиться..", - "Dyslexia font" : "Шрифт для людей, які страждають від дислексії", - "Enable dyslexia font" : "Увімкнути шрифт для людей, які страждають від дислексії", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic - це вільно доступний шрифт, що було розроблено для уникнення деяких загальних помилок, що спричинені дизлексією.", - "Accessibility" : "Доступність", - "Accessibility options for nextcloud" : "Опції доступності для nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Надає кілька варіантів доступності, задля спрощення використання Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Для нас дуже важливо забезпечити доступ для всіх. Ми дотримуємось веб-стандартів і перевіряємо, щоб забезпечити зручність користування без комп'ютерної миші, а також за допомогую допоміжного програмного забезпечення, наприклад, програми зчитування з екрана. Ми прагнемо відповідати {guidelines} Правила доступу до веб-вмісту {linkend} 2.1 на рівні AA, а з темою високої контрастності навіть на рівні AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Якщо ви знайшли будь-які проблеми, будь-ласка повідомте про них на {issuetracker} до нашого трекера задач{linkend}. Якщо ж ви бажаєте стати учасником - будь-ласка приєднуйтесь до {designteam} нашої команди{linkend}! " -}, -"nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);"); diff --git a/apps/accessibility/l10n/uk.json b/apps/accessibility/l10n/uk.json deleted file mode 100644 index 5efad2dacfe..00000000000 --- a/apps/accessibility/l10n/uk.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Темна тема", - "Enable dark theme" : "Увімкнути темну тему", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Темна тема зменшує навантаження на очі завдяки зменшенню освітлення та яскравості. Вона ще в процесі розробки, тож повідомляйте, будь-ласка, про будь-які проблеми, з якими ви можете зіткнутись.", - "High contrast mode" : "Висококонтрастний режим", - "Enable high contrast mode" : "Увімкнути висококонтрастний режим", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Висококонтрастний режим спрощує Вашу навігацію. Візуальна якість буде знижена, але чіткість підвищиться..", - "Dyslexia font" : "Шрифт для людей, які страждають від дислексії", - "Enable dyslexia font" : "Увімкнути шрифт для людей, які страждають від дислексії", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic - це вільно доступний шрифт, що було розроблено для уникнення деяких загальних помилок, що спричинені дизлексією.", - "Accessibility" : "Доступність", - "Accessibility options for nextcloud" : "Опції доступності для nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Надає кілька варіантів доступності, задля спрощення використання Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Для нас дуже важливо забезпечити доступ для всіх. Ми дотримуємось веб-стандартів і перевіряємо, щоб забезпечити зручність користування без комп'ютерної миші, а також за допомогую допоміжного програмного забезпечення, наприклад, програми зчитування з екрана. Ми прагнемо відповідати {guidelines} Правила доступу до веб-вмісту {linkend} 2.1 на рівні AA, а з темою високої контрастності навіть на рівні AAA.", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Якщо ви знайшли будь-які проблеми, будь-ласка повідомте про них на {issuetracker} до нашого трекера задач{linkend}. Якщо ж ви бажаєте стати учасником - будь-ласка приєднуйтесь до {designteam} нашої команди{linkend}! " -},"pluralForm" :"nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (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/apps/accessibility/l10n/vi.js b/apps/accessibility/l10n/vi.js deleted file mode 100644 index 8ab40b7f9b2..00000000000 --- a/apps/accessibility/l10n/vi.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "Chế độ ban đêm", - "Enable dark theme" : "Bật chế độ ban đêm", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Chế độ ban đêm giúp giảm mỏi mắt bằng cách giảm tương phản ở các màu chói và giảm độ sáng. Chế độ này đang được phát triển, vì vậy, xin hãy báo cáo nếu bạn gặp bất kỳ vấn đề nào trong lúc sử dụng.", - "High contrast mode" : "Chế độ tương phản cao", - "Enable high contrast mode" : "Bật chế độ tương phản cao", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Chế độ tương phản cao giúp bạn dễ dàng điều hướng và phân biệt vị trí các mục chính xác hơn. Chất lượng hình ảnh sẽ giảm nhưng độ rõ sẽ được tăng lên.", - "Dyslexia font" : "Chứng khó đọc", - "Enable dyslexia font" : "Bật chế độ dành cho người gặp chứng khó đọc", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic là một kiểu chữ / phông chữ miễn phí được thiết kế để giảm thiểu một số lỗi đọc phổ biến do chứng khó đọc gây ra.", - "Accessibility" : "Khả năng tiếp cận", - "Accessibility options for nextcloud" : "Tùy chọn truy cập cho nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Cung cấp nhiều tùy chọn truy cập để dễ dàng sử dụng Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Sự truy cập đa dạng là rất quan trọng với chúng tôi. Chúng tôi tuân theo các tiêu chuẩn mạng và kiểm tra để khiến mọi thứ đều có thể sử dụng được ngay cả khi không có chuột, và hỗ trợ những phần mềm hỗ trợ như đọc màn hình. Chúng tôi hướng đến sự tương thích với {guidelines}Nguyên Tắc Truy Cập Cho Nội Dung Mạng{linkend} 2.1 ở cấp độ AA, với chế độ tương phản cao là AAA", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Nếu bạn tìm được bất cứ vấn đề gì, đừng ngần ngại để báo cáo chúng trên hệ thống theo dõi vấn đề của chúng tôi." -}, -"nplurals=1; plural=0;"); diff --git a/apps/accessibility/l10n/vi.json b/apps/accessibility/l10n/vi.json deleted file mode 100644 index 22be124bbaf..00000000000 --- a/apps/accessibility/l10n/vi.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "Chế độ ban đêm", - "Enable dark theme" : "Bật chế độ ban đêm", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "Chế độ ban đêm giúp giảm mỏi mắt bằng cách giảm tương phản ở các màu chói và giảm độ sáng. Chế độ này đang được phát triển, vì vậy, xin hãy báo cáo nếu bạn gặp bất kỳ vấn đề nào trong lúc sử dụng.", - "High contrast mode" : "Chế độ tương phản cao", - "Enable high contrast mode" : "Bật chế độ tương phản cao", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "Chế độ tương phản cao giúp bạn dễ dàng điều hướng và phân biệt vị trí các mục chính xác hơn. Chất lượng hình ảnh sẽ giảm nhưng độ rõ sẽ được tăng lên.", - "Dyslexia font" : "Chứng khó đọc", - "Enable dyslexia font" : "Bật chế độ dành cho người gặp chứng khó đọc", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic là một kiểu chữ / phông chữ miễn phí được thiết kế để giảm thiểu một số lỗi đọc phổ biến do chứng khó đọc gây ra.", - "Accessibility" : "Khả năng tiếp cận", - "Accessibility options for nextcloud" : "Tùy chọn truy cập cho nextcloud", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "Cung cấp nhiều tùy chọn truy cập để dễ dàng sử dụng Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "Sự truy cập đa dạng là rất quan trọng với chúng tôi. Chúng tôi tuân theo các tiêu chuẩn mạng và kiểm tra để khiến mọi thứ đều có thể sử dụng được ngay cả khi không có chuột, và hỗ trợ những phần mềm hỗ trợ như đọc màn hình. Chúng tôi hướng đến sự tương thích với {guidelines}Nguyên Tắc Truy Cập Cho Nội Dung Mạng{linkend} 2.1 ở cấp độ AA, với chế độ tương phản cao là AAA", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "Nếu bạn tìm được bất cứ vấn đề gì, đừng ngần ngại để báo cáo chúng trên hệ thống theo dõi vấn đề của chúng tôi." -},"pluralForm" :"nplurals=1; plural=0;" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/zh_CN.js b/apps/accessibility/l10n/zh_CN.js deleted file mode 100644 index c2fcf620956..00000000000 --- a/apps/accessibility/l10n/zh_CN.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "深色主题", - "Enable dark theme" : "启用深色主题", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "深色主题通过降低色彩的明度和亮度来使您的眼睛保持舒适。这个功能还在完善中,所以请您随时向我们反馈所发现的问题。", - "High contrast mode" : "高对比度模式", - "Enable high contrast mode" : "启用高对比度模式", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "使用高对比度模式。图像质量会下降,但清晰度会提升。", - "Dyslexia font" : "阅读障碍字体", - "Enable dyslexia font" : "启用阅读障碍字体", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic是一款免费的字样/字体,这款字体的设计目的是缓解由阅读障碍引起的一些常见阅读错误。", - "Accessibility" : "辅助功能", - "Accessibility options for nextcloud" : "Nextcloud 辅助功能选项", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "提供多种辅助功能选项以便于您使用Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "通用访问对我们非常重要。 我们遵循网络标准,并进行检查以确保所有内容都可以在没有鼠标或辅助软件(例如屏幕阅读器)的情况下使用。 我们的目标是遵守 {guidelines} Web 内容可访问性指南 {linkend} 2.1 能达到 AA 级别,具有高对比度主题甚至能达到 AAA 级别。", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "如果您发现任何问题,请随时在 {issuetracker} 我们的问题跟踪器 {linkend} 上报告。 如果您想参与其中,请加入 {designteam} 我们的设计团队 {linkend}!" -}, -"nplurals=1; plural=0;"); diff --git a/apps/accessibility/l10n/zh_CN.json b/apps/accessibility/l10n/zh_CN.json deleted file mode 100644 index 932435e6ba1..00000000000 --- a/apps/accessibility/l10n/zh_CN.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "深色主题", - "Enable dark theme" : "启用深色主题", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "深色主题通过降低色彩的明度和亮度来使您的眼睛保持舒适。这个功能还在完善中,所以请您随时向我们反馈所发现的问题。", - "High contrast mode" : "高对比度模式", - "Enable high contrast mode" : "启用高对比度模式", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "使用高对比度模式。图像质量会下降,但清晰度会提升。", - "Dyslexia font" : "阅读障碍字体", - "Enable dyslexia font" : "启用阅读障碍字体", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic是一款免费的字样/字体,这款字体的设计目的是缓解由阅读障碍引起的一些常见阅读错误。", - "Accessibility" : "辅助功能", - "Accessibility options for nextcloud" : "Nextcloud 辅助功能选项", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "提供多种辅助功能选项以便于您使用Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "通用访问对我们非常重要。 我们遵循网络标准,并进行检查以确保所有内容都可以在没有鼠标或辅助软件(例如屏幕阅读器)的情况下使用。 我们的目标是遵守 {guidelines} Web 内容可访问性指南 {linkend} 2.1 能达到 AA 级别,具有高对比度主题甚至能达到 AAA 级别。", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "如果您发现任何问题,请随时在 {issuetracker} 我们的问题跟踪器 {linkend} 上报告。 如果您想参与其中,请加入 {designteam} 我们的设计团队 {linkend}!" -},"pluralForm" :"nplurals=1; plural=0;" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/zh_HK.js b/apps/accessibility/l10n/zh_HK.js deleted file mode 100644 index a4d0bca274e..00000000000 --- a/apps/accessibility/l10n/zh_HK.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "黑暗主題", - "Enable dark theme" : "使用黑暗主題", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "黑暗主題將降低整體光度與亮度,以舒緩眼睛疲勞。此功能仍在發展當中,請報告任何您遇上的問題。", - "High contrast mode" : "高對比模式", - "Enable high contrast mode" : "使用高對比模式", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "高對比模式能使您的瀏覽更容易。視覺品質將被降低,但清晰度將被提高。", - "Dyslexia font" : "閱讀困難症字體", - "Enable dyslexia font" : "啟用閱讀困難症字型", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic 是一種免費的字型,目的在降低因拼音文字閱讀困難引起的一些常見閱讀錯誤。", - "Accessibility" : "輔助工具", - "Accessibility options for nextcloud" : "Nextcloud 輔助工具設定", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "提供多種 輔助工具使您更易於操作 Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "我們非常重視無障礙存取。我們遵循網路標準,並透過檢查來確保所有內容皆可在沒有滑鼠或輔助軟體(例如螢幕閱讀器)的情況下使用。我們目標是能達到 {guidelines}網頁內容可及性指引{linkend} 2.1 版的 AA 等級,加上高對比度主題甚至還能到 AAA 等級。", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : " \n如果您發現任何一個問題,請不要猶豫並請在 {issuetracker}我們的問題追蹤系統{linkend} 舉報。而如果您想參與,歡迎加入 {designteam}我們的設計團隊{linked}!" -}, -"nplurals=1; plural=0;"); diff --git a/apps/accessibility/l10n/zh_HK.json b/apps/accessibility/l10n/zh_HK.json deleted file mode 100644 index 060a6b65d7f..00000000000 --- a/apps/accessibility/l10n/zh_HK.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "黑暗主題", - "Enable dark theme" : "使用黑暗主題", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "黑暗主題將降低整體光度與亮度,以舒緩眼睛疲勞。此功能仍在發展當中,請報告任何您遇上的問題。", - "High contrast mode" : "高對比模式", - "Enable high contrast mode" : "使用高對比模式", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "高對比模式能使您的瀏覽更容易。視覺品質將被降低,但清晰度將被提高。", - "Dyslexia font" : "閱讀困難症字體", - "Enable dyslexia font" : "啟用閱讀困難症字型", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic 是一種免費的字型,目的在降低因拼音文字閱讀困難引起的一些常見閱讀錯誤。", - "Accessibility" : "輔助工具", - "Accessibility options for nextcloud" : "Nextcloud 輔助工具設定", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "提供多種 輔助工具使您更易於操作 Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "我們非常重視無障礙存取。我們遵循網路標準,並透過檢查來確保所有內容皆可在沒有滑鼠或輔助軟體(例如螢幕閱讀器)的情況下使用。我們目標是能達到 {guidelines}網頁內容可及性指引{linkend} 2.1 版的 AA 等級,加上高對比度主題甚至還能到 AAA 等級。", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : " \n如果您發現任何一個問題,請不要猶豫並請在 {issuetracker}我們的問題追蹤系統{linkend} 舉報。而如果您想參與,歡迎加入 {designteam}我們的設計團隊{linked}!" -},"pluralForm" :"nplurals=1; plural=0;" -} \ No newline at end of file diff --git a/apps/accessibility/l10n/zh_TW.js b/apps/accessibility/l10n/zh_TW.js deleted file mode 100644 index 332be7e554c..00000000000 --- a/apps/accessibility/l10n/zh_TW.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "accessibility", - { - "Dark theme" : "深色主題", - "Enable dark theme" : "啟用深色主題", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "黑暗風格的主題,通過降低整體亮度來舒緩對您眼睛的刺激。深色主題仍在開發中,如發現任何問題,煩請報告。", - "High contrast mode" : "高對比度模式", - "Enable high contrast mode" : "開啟高對比度模式", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "高對比度模式會降低介面品質,但會提高清晰度,有助您瀏覽。", - "Dyslexia font" : "閱讀障礙字型", - "Enable dyslexia font" : "啟用閱讀障礙字型", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic 是一種免費的字型,目的在降低因拼音文字閱讀障礙引起的一些常見閱讀錯誤。", - "Accessibility" : "協助工具", - "Accessibility options for nextcloud" : "Nextcloud 協助工具設定", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "提供多種協助工具使您更易於操作 Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "我們非常重視無障礙存取。我們遵循網路標準,並透過檢查來確保所有內容皆可在沒有滑鼠或輔助軟體(例如螢幕閱讀器)的情況下使用。我們目標是能達到{guidelines}網頁內容可及性指引{linkend} 2.1 版的 AA 等級,加上高對比度主題甚至還能到 AAA 等級。", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "如果您發現任何一個問題,請不要猶豫並請在{issuetracker}我們的問題追蹤系統{linkend}回報。而如果您想參與,歡迎加入{designteam}我們的設計團隊{linkend}!" -}, -"nplurals=1; plural=0;"); diff --git a/apps/accessibility/l10n/zh_TW.json b/apps/accessibility/l10n/zh_TW.json deleted file mode 100644 index a9a65b5d9fd..00000000000 --- a/apps/accessibility/l10n/zh_TW.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Dark theme" : "深色主題", - "Enable dark theme" : "啟用深色主題", - "A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find." : "黑暗風格的主題,通過降低整體亮度來舒緩對您眼睛的刺激。深色主題仍在開發中,如發現任何問題,煩請報告。", - "High contrast mode" : "高對比度模式", - "Enable high contrast mode" : "開啟高對比度模式", - "A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased." : "高對比度模式會降低介面品質,但會提高清晰度,有助您瀏覽。", - "Dyslexia font" : "閱讀障礙字型", - "Enable dyslexia font" : "啟用閱讀障礙字型", - "OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia." : "OpenDyslexic 是一種免費的字型,目的在降低因拼音文字閱讀障礙引起的一些常見閱讀錯誤。", - "Accessibility" : "協助工具", - "Accessibility options for nextcloud" : "Nextcloud 協助工具設定", - "Provides multiple accessibilities options to ease your use of Nextcloud" : "提供多種協助工具使您更易於操作 Nextcloud", - "Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level." : "我們非常重視無障礙存取。我們遵循網路標準,並透過檢查來確保所有內容皆可在沒有滑鼠或輔助軟體(例如螢幕閱讀器)的情況下使用。我們目標是能達到{guidelines}網頁內容可及性指引{linkend} 2.1 版的 AA 等級,加上高對比度主題甚至還能到 AAA 等級。", - "If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!" : "如果您發現任何一個問題,請不要猶豫並請在{issuetracker}我們的問題追蹤系統{linkend}回報。而如果您想參與,歡迎加入{designteam}我們的設計團隊{linkend}!" -},"pluralForm" :"nplurals=1; plural=0;" -} \ No newline at end of file diff --git a/apps/accessibility/lib/AccessibilityProvider.php b/apps/accessibility/lib/AccessibilityProvider.php deleted file mode 100644 index 80ba4753dfa..00000000000 --- a/apps/accessibility/lib/AccessibilityProvider.php +++ /dev/null @@ -1,90 +0,0 @@ - - * @copyright Copyright (c) 2019 Janis Köhr - * - * @author Christoph Wurst - * @author Greta Doci - * @author Jan-Christoph Borchardt - * @author Janis Köhr - * @author Joas Schilling - * @author John Molakvoæ - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * 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 - * along with this program. If not, see . - * - */ -namespace OCA\Accessibility; - -use OCP\IL10N; -use OCP\IURLGenerator; - -class AccessibilityProvider { - - protected string $appName; - private IURLGenerator $urlGenerator; - private IL10N $l; - - public function __construct(string $appName, - IURLGenerator $urlGenerator, - IL10N $l) { - $this->appName = $appName; - $this->urlGenerator = $urlGenerator; - $this->l = $l; - } - - /** - * @psalm-return array - */ - public function getThemes(): array { - return [ - [ - 'id' => 'dark', - 'img' => $this->urlGenerator->imagePath($this->appName, 'theme-dark.jpg'), - 'title' => $this->l->t('Dark theme'), - 'enableLabel' => $this->l->t('Enable dark theme'), - 'text' => $this->l->t('A dark theme to ease your eyes by reducing the overall luminosity and brightness. It is still under development, so please report any issues you may find.') - ] - ]; - } - - /** - * @psalm-return array{id: string, img: string, title: string, enableLabel: string, text: string} - */ - public function getHighContrast(): array { - return [ - 'id' => 'highcontrast', - 'img' => $this->urlGenerator->imagePath($this->appName, 'mode-highcontrast.jpg'), - 'title' => $this->l->t('High contrast mode'), - 'enableLabel' => $this->l->t('Enable high contrast mode'), - 'text' => $this->l->t('A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.') - ]; - } - - /** - * @psalm-return array - */ - public function getFonts(): array { - return [ - [ - 'id' => 'fontdyslexic', - 'img' => $this->urlGenerator->imagePath($this->appName, 'font-opendyslexic.jpg'), - 'title' => $this->l->t('Dyslexia font'), - 'enableLabel' => $this->l->t('Enable dyslexia font'), - 'text' => $this->l->t('OpenDyslexic is a free typeface/font designed to mitigate some of the common reading errors caused by dyslexia.') - ] - ]; - } -} diff --git a/apps/accessibility/lib/AppInfo/Application.php b/apps/accessibility/lib/AppInfo/Application.php deleted file mode 100644 index f7f4801f820..00000000000 --- a/apps/accessibility/lib/AppInfo/Application.php +++ /dev/null @@ -1,84 +0,0 @@ - - * - * @author Christoph Wurst - * @author Joas Schilling - * @author John Molakvoæ - * @author Julius Härtl - * @author Roeland Jago Douma - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * 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 - * along with this program. If not, see . - * - */ -namespace OCA\Accessibility\AppInfo; - -use OCA\Accessibility\Service\JSDataService; -use OCP\AppFramework\App; -use OCP\AppFramework\Bootstrap\IBootContext; -use OCP\AppFramework\Bootstrap\IBootstrap; -use OCP\AppFramework\Bootstrap\IRegistrationContext; -use OCP\IConfig; -use OCP\IURLGenerator; -use OCP\IUserSession; -use function count; -use function implode; -use function md5; - -class Application extends App implements IBootstrap { - - /** @var string */ - public const APP_ID = 'accessibility'; - - public function __construct() { - parent::__construct(self::APP_ID); - } - - public function register(IRegistrationContext $context): void { - $context->registerInitialStateProvider(JSDataService::class); - } - - public function boot(IBootContext $context): void { - $context->injectFn([$this, 'injectCss']); - } - - public function injectCss(IUserSession $userSession, - IConfig $config, - IURLGenerator $urlGenerator) { - // Inject the fake css on all pages if enabled and user is logged - $loggedUser = $userSession->getUser(); - if ($loggedUser !== null) { - $userValues = $config->getUserKeys($loggedUser->getUID(), self::APP_ID); - // we want to check if any theme or font is enabled. - if (count($userValues) > 0) { - $hash = $config->getUserValue($loggedUser->getUID(), self::APP_ID, 'icons-css', md5(implode('-', $userValues))); - $linkToCSS = $urlGenerator->linkToRoute(self::APP_ID . '.accessibility.getCss', ['md5' => $hash]); - \OCP\Util::addHeader('link', ['rel' => 'stylesheet', 'href' => $linkToCSS]); - } - \OCP\Util::addScript('accessibility', 'accessibilityoca'); - } else { - $userValues = ['dark']; - - $hash = md5(implode('-', $userValues)); - $linkToCSS = $urlGenerator->linkToRoute(self::APP_ID . '.accessibility.getCss', ['md5' => $hash]); - \OCP\Util::addHeader('link', ['rel' => 'stylesheet', 'media' => '(prefers-color-scheme: dark)', 'href' => $linkToCSS]); - \OCP\Util::addScript('accessibility', 'accessibilityoca'); - } - } -} diff --git a/apps/accessibility/lib/Controller/AccessibilityController.php b/apps/accessibility/lib/Controller/AccessibilityController.php deleted file mode 100644 index b3063937a1b..00000000000 --- a/apps/accessibility/lib/Controller/AccessibilityController.php +++ /dev/null @@ -1,241 +0,0 @@ - - * @copyright Copyright (c) 2019 Janis Köhr - * - * @author Christoph Wurst - * @author Janis Köhr - * @author Joas Schilling - * @author John Molakvoæ - * @author Julius Härtl - * @author Roeland Jago Douma - * @author Thomas Citharel - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * 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 - * along with this program. If not, see . - * - */ -namespace OCA\Accessibility\Controller; - -use OC\Template\IconsCacher; -use OCP\App\IAppManager; -use OCP\AppFramework\Controller; -use OCP\AppFramework\Http; -use OCP\AppFramework\Http\DataDisplayResponse; -use OCP\AppFramework\Utility\ITimeFactory; -use OCP\IConfig; -use OCP\IRequest; -use OCP\IUserSession; -use Psr\Log\LoggerInterface; -use ScssPhp\ScssPhp\Compiler; -use ScssPhp\ScssPhp\Exception\ParserException; -use ScssPhp\ScssPhp\OutputStyle; - -class AccessibilityController extends Controller { - - protected string $serverRoot; - private IConfig $config; - private LoggerInterface $logger; - protected ITimeFactory $timeFactory; - private IUserSession $userSession; - protected IconsCacher $iconsCacher; - private \OC_Defaults $defaults; - private ?string $injectedVariables = null; - private string $appRoot; - - public function __construct(string $appName, - IRequest $request, - IConfig $config, - LoggerInterface $logger, - ITimeFactory $timeFactory, - IUserSession $userSession, - IAppManager $appManager, - IconsCacher $iconsCacher, - \OC_Defaults $defaults) { - parent::__construct($appName, $request); - $this->appName = $appName; - $this->config = $config; - $this->logger = $logger; - $this->timeFactory = $timeFactory; - $this->userSession = $userSession; - $this->iconsCacher = $iconsCacher; - $this->defaults = $defaults; - - $this->serverRoot = \OC::$SERVERROOT; - $this->appRoot = $appManager->getAppPath($this->appName); - } - - /** - * @PublicPage - * @NoCSRFRequired - * @NoSameSiteCookieRequired - */ - public function getCss(): DataDisplayResponse { - $css = ''; - $imports = ''; - if ($this->userSession->isLoggedIn()) { - $userValues = $this->getUserValues(); - } else { - $userValues = ['dark']; - } - - foreach ($userValues as $key => $scssFile) { - if ($scssFile !== false) { - if ($scssFile === 'highcontrast' && in_array('dark', $userValues)) { - $scssFile .= 'dark'; - } - $imports .= '@import "' . $scssFile . '";'; - } - } - - if ($imports !== '') { - $scss = new Compiler(); - $scss->setImportPaths([ - $this->appRoot . '/css/', - $this->serverRoot . '/core/css/' - ]); - - // Continue after throw - $scss->setOutputStyle(OutputStyle::COMPRESSED); - - // Import theme, variables and compile css4 variables - try { - $css .= $scss->compile( - $imports . - $this->getInjectedVariables() . - '@import "variables.scss";' . - '@import "css-variables.scss";' - ); - } catch (ParserException $e) { - $this->logger->error($e->getMessage(), - [ - 'app' => 'core', - 'exception' => $e, - ] - ); - } - } - - // We don't want to override vars with url since path is different - $css = $this->filterOutRule('/--[a-z-:]+url\([^;]+\)/mi', $css); - - // Rebase all urls - $appWebRoot = substr($this->appRoot, strlen($this->serverRoot) - strlen(\OC::$WEBROOT)); - $css = $this->rebaseUrls($css, $appWebRoot . '/css'); - - if (in_array('dark', $userValues) && $this->iconsCacher->getCachedList() && $this->iconsCacher->getCachedList()->getSize() > 0) { - $iconsCss = $this->invertSvgIconsColor($this->iconsCacher->getCachedList()->getContent()); - $css = $css . $iconsCss; - } - - $response = new DataDisplayResponse($css, Http::STATUS_OK, ['Content-Type' => 'text/css']); - - // Set cache control - $ttl = 31536000; - $response->addHeader('Cache-Control', 'max-age=' . $ttl . ', immutable'); - $expires = new \DateTime(); - $expires->setTimestamp($this->timeFactory->getTime()); - $expires->add(new \DateInterval('PT' . $ttl . 'S')); - $response->addHeader('Expires', $expires->format(\DateTime::RFC1123)); - $response->addHeader('Pragma', 'cache'); - - // store current cache hash - if ($this->userSession->isLoggedIn()) { - $this->config->setUserValue($this->userSession->getUser()->getUID(), $this->appName, 'icons-css', md5($css)); - } - - return $response; - } - - /** - * Return an array with the user theme & font settings - */ - private function getUserValues(): array { - $userTheme = $this->config->getUserValue($this->userSession->getUser()->getUID(), $this->appName, 'theme', false); - $userFont = $this->config->getUserValue($this->userSession->getUser()->getUID(), $this->appName, 'font', false); - $userHighContrast = $this->config->getUserValue($this->userSession->getUser()->getUID(), $this->appName, 'highcontrast', false); - - return [$userTheme, $userHighContrast, $userFont]; - } - - /** - * Remove all matches from the $rule regex - * - * @param string $rule regex to match - * @param string $css string to parse - * @return string - */ - private function filterOutRule(string $rule, string $css): string { - return preg_replace($rule, '', $css); - } - - /** - * Add the correct uri prefix to make uri valid again - */ - private function rebaseUrls(string $css, string $webDir): string { - $re = '/url\([\'"]([^\/][\.\w?=\/-]*)[\'"]\)/x'; - $subst = 'url(\'' . $webDir . '/$1\')'; - - return preg_replace($re, $subst, $css); - } - - /** - * Remove all matches from the $rule regex - * - * @param string $css string to parse - */ - private function invertSvgIconsColor(string $css): string { - return str_replace( - ['color=000&', 'color=fff&', 'color=***&'], - ['color=***&', 'color=000&', 'color=fff&'], - str_replace( - ['color=000000&', 'color=ffffff&', 'color=******&'], - ['color=******&', 'color=000000&', 'color=ffffff&'], - $css - ) - ); - } - - /** - * @return string SCSS code for variables from OC_Defaults - */ - private function getInjectedVariables(): string { - if ($this->injectedVariables !== null) { - return $this->injectedVariables; - } - $variables = ''; - foreach ($this->defaults->getScssVariables() as $key => $value) { - $variables .= '$' . $key . ': ' . $value . ';'; - } - - // check for valid variables / otherwise fall back to defaults - try { - $scss = new Compiler(); - $scss->compile($variables); - $this->injectedVariables = $variables; - } catch (ParserException $e) { - $this->logger->error($e->getMessage(), - [ - 'app' => 'core', - 'exception' => $e, - ] - ); - } - return $variables; - } -} diff --git a/apps/accessibility/lib/Controller/ConfigController.php b/apps/accessibility/lib/Controller/ConfigController.php deleted file mode 100644 index 3cc66ed4cb4..00000000000 --- a/apps/accessibility/lib/Controller/ConfigController.php +++ /dev/null @@ -1,139 +0,0 @@ - - * @copyright Copyright (c) 2019 Janis Köhr - * - * @author Christoph Wurst - * @author Daniel Kesselberg - * @author Janis Köhr - * @author John Molakvoæ - * @author Roeland Jago Douma - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * 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 - * along with this program. If not, see . - * - */ -namespace OCA\Accessibility\Controller; - -use OCA\Accessibility\AccessibilityProvider; -use OCP\AppFramework\Http\DataResponse; -use OCP\AppFramework\OCS\OCSBadRequestException; -use OCP\AppFramework\OCSController; -use OCP\IConfig; -use OCP\IRequest; -use OCP\IUserSession; -use OCP\PreConditionNotMetException; - -class ConfigController extends OCSController { - - protected string $userId; - private IConfig $config; - private IUserSession $userSession; - private AccessibilityProvider $accessibilityProvider; - - /** - * Config constructor. - */ - public function __construct(string $appName, - IRequest $request, - IConfig $config, - IUserSession $userSession, - AccessibilityProvider $accessibilityProvider) { - parent::__construct($appName, $request); - $this->config = $config; - $this->userSession = $userSession; - $this->accessibilityProvider = $accessibilityProvider; - $this->userId = $userSession->getUser()->getUID(); - } - - /** - * @NoAdminRequired - * - * Get user accessibility config - * - * @param string $key theme or font - * @return DataResponse - */ - public function getConfig(): DataResponse { - return new DataResponse([ - 'highcontrast' => $this->config->getUserValue($this->userId, $this->appName, 'highcontrast', false), - 'theme' => $this->config->getUserValue($this->userId, $this->appName, 'theme', false), - 'font' => $this->config->getUserValue($this->userId, $this->appName, 'font', false) - ]); - } - - /** - * @NoAdminRequired - * - * Set theme or font config - * - * @param string $key the theme or font - * @param string|false $value the value - * @return DataResponse - * @throws OCSBadRequestException|PreConditionNotMetException - */ - public function setConfig(string $key, $value): DataResponse { - if ($key === 'theme' || $key === 'font' || $key === 'highcontrast') { - if ($value === false || $value === '') { - throw new OCSBadRequestException('Invalid value: ' . $value); - } - - $themes = $this->accessibilityProvider->getThemes(); - $highcontrast = [$this->accessibilityProvider->getHighContrast()]; - $fonts = $this->accessibilityProvider->getFonts(); - - $availableOptions = array_map(function ($option): string { - return $option['id']; - }, array_merge($themes, $highcontrast, $fonts)); - - if (in_array($value, $availableOptions)) { - $this->config->setUserValue($this->userId, $this->appName, $key, $value); - return new DataResponse(); - } - - throw new OCSBadRequestException('Invalid value: ' . $value); - } - - throw new OCSBadRequestException('Invalid key: ' . $key); - } - - /** - * @NoAdminRequired - * - * Unset theme or font config - * - * @param string $key theme or font - * @return DataResponse - * @throws OCSBadRequestException - */ - public function deleteConfig(string $key): DataResponse { - if ($key === 'theme' || $key === 'font' || $key === 'highcontrast') { - $this->config->deleteUserValue($this->userId, $this->appName, $key); - $userValues = $this->config->getUserKeys($this->userId, $this->appName); - - // remove hash if no settings selected - if (count($userValues) === 1 && $userValues[0] === 'icons-css') { - $this->config->deleteUserValue($this->userId, $this->appName, 'icons-css'); - } - - return new DataResponse(); - } - - throw new OCSBadRequestException('Invalid key: ' . $key); - } -} diff --git a/apps/accessibility/lib/Migration/RepairUserConfig.php b/apps/accessibility/lib/Migration/RepairUserConfig.php deleted file mode 100644 index c15280ae26d..00000000000 --- a/apps/accessibility/lib/Migration/RepairUserConfig.php +++ /dev/null @@ -1,83 +0,0 @@ - - * - * @author Christoph Wurst - * @author Janis Köhr - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * 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 - * along with this program. If not, see . - * - */ -namespace OCA\Accessibility\Migration; - -use OCA\Accessibility\AppInfo\Application; -use OCP\IConfig; -use OCP\IUser; -use OCP\IUserManager; -use OCP\Migration\IOutput; -use OCP\Migration\IRepairStep; - -class RepairUserConfig implements IRepairStep { - - protected IUserManager $userManager; - protected IConfig $config; - - /** - * MigrateUserConfig constructor. - */ - public function __construct(IConfig $config, - IUserManager $userManager) { - $this->config = $config; - $this->userManager = $userManager; - } - - /** - * Returns the step's name - * - * @return string - * @since 9.1.0 - */ - public function getName() { - return 'Migrate old user config'; - } - - /** - * Run repair step. - * Must throw exception on error. - * - * @param IOutput $output - * @throws \Exception in case of failure - * @since 9.1.0 - */ - public function run(IOutput $output) { - $output->startProgress(); - $this->userManager->callForSeenUsers(function (IUser $user) use ($output) { - $theme = $this->config->getUserValue($user->getUID(), Application::APP_ID, 'theme', false); - if ($theme === 'themedark') { - $this->config->setUserValue($user->getUID(), Application::APP_ID, 'theme', 'dark'); - } - if ($theme === 'themehighcontrast') { - $this->config->setUserValue($user->getUID(), Application::APP_ID, 'highcontrast', 'highcontrast'); - $this->config->deleteUserValue($user->getUID(), Application::APP_ID, 'theme'); - } - $output->advance(); - }); - $output->finishProgress(); - } -} diff --git a/apps/accessibility/lib/Service/JSDataService.php b/apps/accessibility/lib/Service/JSDataService.php deleted file mode 100644 index e3a562de394..00000000000 --- a/apps/accessibility/lib/Service/JSDataService.php +++ /dev/null @@ -1,66 +0,0 @@ - - * - * @author Roeland Jago Douma - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * 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 - * along with this program. If not, see . - * - */ -namespace OCA\Accessibility\Service; - -use OCA\Accessibility\AppInfo\Application; -use OCP\AppFramework\Services\InitialStateProvider; -use OCP\IConfig; -use OCP\IUserSession; - -class JSDataService extends InitialStateProvider { - private IUserSession $userSession; - private IConfig $config; - - public function __construct( - IUserSession $userSession, - IConfig $config - ) { - $this->userSession = $userSession; - $this->config = $config; - } - - public function getKey(): string { - return 'data'; - } - - public function getData() { - $user = $this->userSession->getUser(); - - if ($user === null) { - $theme = false; - $highcontrast = false; - } else { - $theme = $this->config->getUserValue($user->getUID(), Application::APP_ID, 'theme', false); - $highcontrast = $this->config->getUserValue($user->getUID(), Application::APP_ID, 'highcontrast', false) !== false; - } - - return [ - 'checkMedia' => $user === null, - 'theme' => $theme, - 'highcontrast' => $highcontrast, - ]; - } -} diff --git a/apps/accessibility/lib/Settings/Personal.php b/apps/accessibility/lib/Settings/Personal.php deleted file mode 100644 index 00653d48571..00000000000 --- a/apps/accessibility/lib/Settings/Personal.php +++ /dev/null @@ -1,110 +0,0 @@ - - * @copyright Copyright (c) 2019 Janis Köhr - * - * @author Christoph Wurst - * @author John Molakvoæ - * @author Roeland Jago Douma - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * 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 - * along with this program. If not, see . - * - */ -namespace OCA\Accessibility\Settings; - -use OCA\Accessibility\AccessibilityProvider; -use OCP\AppFramework\Http\TemplateResponse; -use OCP\AppFramework\Services\IInitialState; -use OCP\IConfig; -use OCP\IUserSession; -use OCP\Settings\ISettings; -use OCP\Util; - -class Personal implements ISettings { - - /** @var string */ - protected $appName; - - /** @var IConfig */ - private $config; - - /** @var IUserSession */ - private $userSession; - - /** @var AccessibilityProvider */ - private $accessibilityProvider; - - /** @var IInitialState */ - private $initialStateService; - - public function __construct(string $appName, - IConfig $config, - IUserSession $userSession, - AccessibilityProvider $accessibilityProvider, - IInitialState $initialStateService) { - $this->appName = $appName; - $this->config = $config; - $this->userSession = $userSession; - $this->accessibilityProvider = $accessibilityProvider; - $this->initialStateService = $initialStateService; - } - - /** - * @return TemplateResponse returns the instance with all parameters set, ready to be rendered - * @since 9.1 - */ - public function getForm(): TemplateResponse { - Util::addScript('accessibility', 'accessibility'); - Util::addStyle('accessibility', 'style'); - - $availableConfig = [ - 'themes' => $this->accessibilityProvider->getThemes(), - 'fonts' => $this->accessibilityProvider->getFonts(), - 'highcontrast' => $this->accessibilityProvider->getHighContrast() - ]; - - $userConfig = [ - 'highcontrast' => $this->config->getUserValue($this->userSession->getUser()->getUID(), $this->appName, 'highcontrast', false), - 'theme' => $this->config->getUserValue($this->userSession->getUser()->getUID(), $this->appName, 'theme', false), - 'font' => $this->config->getUserValue($this->userSession->getUser()->getUID(), $this->appName, 'font', false) - ]; - - $this->initialStateService->provideInitialState('available-config', $availableConfig); - $this->initialStateService->provideInitialState('user-config', $userConfig); - - return new TemplateResponse($this->appName, 'settings-personal'); - } - - /** - * @return string the section ID, e.g. 'sharing' - * @since 9.1 - */ - public function getSection(): string { - return $this->appName; - } - - /** - * @return int whether the form should be rather on the top or bottom of - * the admin section. The forms are arranged in ascending order of the - * priority values. It is required to return a value between 0 and 100. - * - * E.g.: 70 - * @since 9.1 - */ - public function getPriority(): int { - return 40; - } -} diff --git a/apps/accessibility/lib/Settings/PersonalSection.php b/apps/accessibility/lib/Settings/PersonalSection.php deleted file mode 100644 index 7d8e233b5bb..00000000000 --- a/apps/accessibility/lib/Settings/PersonalSection.php +++ /dev/null @@ -1,100 +0,0 @@ - - * - * @author Christoph Wurst - * @author John Molakvoæ - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * 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 - * along with this program. If not, see . - * - */ -namespace OCA\Accessibility\Settings; - -use OCP\IL10N; -use OCP\IURLGenerator; -use OCP\Settings\IIconSection; - -class PersonalSection implements IIconSection { - - /** @var string */ - protected $appName; - - /** @var IURLGenerator */ - private $urlGenerator; - - /** @var IL10N */ - private $l; - - /** - * Personal Section constructor. - * - * @param string $appName - * @param IURLGenerator $urlGenerator - * @param IL10N $l - */ - public function __construct(string $appName, - IURLGenerator $urlGenerator, - IL10N $l) { - $this->appName = $appName; - $this->urlGenerator = $urlGenerator; - $this->l = $l; - } - - /** - * returns the relative path to an 16*16 icon describing the section. - * e.g. '/core/img/places/files.svg' - * - * @returns string - * @since 13.0.0 - */ - public function getIcon() { - return $this->urlGenerator->imagePath($this->appName, 'app-dark.svg'); - } - - /** - * returns the ID of the section. It is supposed to be a lower case string, - * e.g. 'ldap' - * - * @returns string - * @since 9.1 - */ - public function getID() { - return $this->appName; - } - - /** - * returns the translated name as it should be displayed, e.g. 'LDAP / AD - * integration'. Use the L10N service to translate it. - * - * @return string - * @since 9.1 - */ - public function getName() { - return $this->l->t('Accessibility'); - } - - /** - * @return int whether the form should be rather on the top or bottom of - * the settings navigation. The sections are arranged in ascending order of - * the priority values. It is required to return a value between 0 and 99. - * - * E.g.: 70 - * @since 9.1 - */ - public function getPriority() { - return 15; - } -} diff --git a/apps/accessibility/src/Accessibility.vue b/apps/accessibility/src/Accessibility.vue deleted file mode 100644 index 0026e1459b0..00000000000 --- a/apps/accessibility/src/Accessibility.vue +++ /dev/null @@ -1,168 +0,0 @@ - - - diff --git a/apps/accessibility/src/accessibilityoca.js b/apps/accessibility/src/accessibilityoca.js deleted file mode 100644 index 56c5939037f..00000000000 --- a/apps/accessibility/src/accessibilityoca.js +++ /dev/null @@ -1,40 +0,0 @@ -/** - * @copyright Copyright (c) 2020 Roeland Jago Douma - * - * @author Jan C. Borchardt - * @author John Molakvoæ - * - * @license AGPL-3.0-or-later - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * 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 - * along with this program. If not, see . - * - */ - -import { loadState } from '@nextcloud/initial-state' - -OCA.Accessibility = loadState('accessibility', 'data') -if (OCA.Accessibility.checkMedia && window.matchMedia('(prefers-color-scheme: dark)').matches) { - // Overwrite the theme for Guests based on the prefers-color-scheme - OCA.Accessibility.theme = 'dark' -} - -if (OCA.Accessibility.theme !== false) { - document.body.classList.add(`theme--${OCA.Accessibility.theme}`) -} else { - document.body.classList.add('theme--light') -} - -if (OCA.Accessibility.highcontrast !== false) { - document.body.classList.add('theme--highcontrast') -} diff --git a/apps/accessibility/src/components/ItemPreview.vue b/apps/accessibility/src/components/ItemPreview.vue deleted file mode 100644 index 1b6f3ebf01d..00000000000 --- a/apps/accessibility/src/components/ItemPreview.vue +++ /dev/null @@ -1,40 +0,0 @@ - - - diff --git a/apps/accessibility/src/main.js b/apps/accessibility/src/main.js deleted file mode 100644 index 49a3bd83d9c..00000000000 --- a/apps/accessibility/src/main.js +++ /dev/null @@ -1,32 +0,0 @@ -/** - * @copyright Copyright (c) 2018 John Molakvoæ - * - * @author John Molakvoæ - * - * @license AGPL-3.0-or-later - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * 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 - * along with this program. If not, see . - * - */ - -import Vue from 'vue' -import App from './Accessibility.vue' - -// bind to window -Vue.prototype.OC = OC -Vue.prototype.t = t - -const View = Vue.extend(App) -const accessibility = new View() -accessibility.$mount('#accessibility') diff --git a/apps/accessibility/templates/settings-personal.php b/apps/accessibility/templates/settings-personal.php deleted file mode 100644 index 8761ec14bb5..00000000000 --- a/apps/accessibility/templates/settings-personal.php +++ /dev/null @@ -1,26 +0,0 @@ - - * - * @author John Molakvoæ - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * 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 - * along with this program. If not, see . - * - */ - -?> - - \ No newline at end of file diff --git a/apps/dashboard/src/helpers/getBackgroundUrl.js b/apps/dashboard/src/helpers/getBackgroundUrl.js index f9d6129700f..194e5e59885 100644 --- a/apps/dashboard/src/helpers/getBackgroundUrl.js +++ b/apps/dashboard/src/helpers/getBackgroundUrl.js @@ -26,16 +26,22 @@ import { generateUrl } from '@nextcloud/router' import prefixWithBaseUrl from './prefixWithBaseUrl' export default (background, time = 0, themingDefaultBackground = '') => { + const enabledThemes = window.OCA.Theming.enabledThemes + const isDarkTheme = enabledThemes.join('').indexOf('dark') !== -1 + if (background === 'default') { if (themingDefaultBackground && themingDefaultBackground !== 'backgroundColor') { return generateUrl('/apps/theming/image/background') + '?v=' + window.OCA.Theming.cacheBuster } - if (window.OCA.Accessibility && window.OCA.Accessibility.theme === 'dark') { + + if (isDarkTheme) { return prefixWithBaseUrl('eduardo-neves-pedra-azul.jpg') } + return prefixWithBaseUrl('kamil-porembinski-clouds.jpg') } else if (background === 'custom') { return generateUrl('/apps/dashboard/background') + '?v=' + time } + return prefixWithBaseUrl(background) } diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 69322273a11..85b9e883ac6 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -1781,7 +1781,8 @@ td.append(linkElem); tr.append(td); - var isDarkTheme = OCA.Accessibility && OCA.Accessibility.theme === 'dark' + var enabledThemes = window.OCA?.Theming?.enabledThemes || [] + var isDarkTheme = enabledThemes.join('').indexOf('dark') !== -1 try { var maxContrastHex = window.getComputedStyle(document.documentElement) diff --git a/apps/theming/lib/Themes/DarkTheme.php b/apps/theming/lib/Themes/DarkTheme.php index c00f8a7ea4d..f0cacfc1696 100644 --- a/apps/theming/lib/Themes/DarkTheme.php +++ b/apps/theming/lib/Themes/DarkTheme.php @@ -81,7 +81,7 @@ class DarkTheme extends DefaultTheme implements ITheme { '--color-border' => $this->util->lighten($colorMainBackground, 7), '--color-border-dark' => $this->util->lighten($colorMainBackground, 14), - '--background-invert-if-bright' => 'invert(100%)', + '--background-invert-if-dark' => 'invert(100%)', ]); } } diff --git a/apps/theming/lib/Themes/DefaultTheme.php b/apps/theming/lib/Themes/DefaultTheme.php index 7561bb16ecd..7b0b123f19b 100644 --- a/apps/theming/lib/Themes/DefaultTheme.php +++ b/apps/theming/lib/Themes/DefaultTheme.php @@ -175,7 +175,7 @@ class DefaultTheme implements ITheme { // svg with proper css variable instead or material // design icons. '--primary-invert-if-bright' => $this->util->invertTextColor($this->primaryColor) ? 'invert(100%)' : 'unset', - '--background-invert-if-bright' => 'unset', + '--background-invert-if-dark' => 'unset', ]; // Register image variables only if custom-defined diff --git a/apps/theming/src/settings.js b/apps/theming/src/settings.js index 94ae6fd6314..45a75e53ea5 100644 --- a/apps/theming/src/settings.js +++ b/apps/theming/src/settings.js @@ -28,5 +28,5 @@ Vue.prototype.OC = OC Vue.prototype.t = t const View = Vue.extend(App) -const accessibility = new View() -accessibility.$mount('#theming') +const theming = new View() +theming.$mount('#theming') diff --git a/build/integration/features/provisioning-v1.feature b/build/integration/features/provisioning-v1.feature index 388fa37ba29..e891c274943 100644 --- a/build/integration/features/provisioning-v1.feature +++ b/build/integration/features/provisioning-v1.feature @@ -555,7 +555,6 @@ Feature: provisioning Then the OCS status code should be "100" And the HTTP status code should be "200" And apps returned are - | accessibility | | cloud_federation_api | | comments | | contactsinteraction | diff --git a/build/license.php b/build/license.php index 081242d5994..94ef4e4b02c 100644 --- a/build/license.php +++ b/build/license.php @@ -447,7 +447,6 @@ if (isset($argv[1])) { $licenses->exec($argv[1], isset($argv[2]) ? $argv[1] : false); } else { $licenses->exec([ - '../apps/accessibility', '../apps/admin_audit', '../apps/cloud_federation_api', '../apps/comments', diff --git a/core/css/apps.scss b/core/css/apps.scss index cf061303498..84179a94633 100644 --- a/core/css/apps.scss +++ b/core/css/apps.scss @@ -287,7 +287,7 @@ kbd { width: 16px; height: 16px; // Legacy invert if bright background - filter: var(--background-invert-if-bright); + filter: var(--background-invert-if-dark); } /* counter can also be inside the link */ diff --git a/core/css/guest.css b/core/css/guest.css index b4af600ecd8..a6d2abf9820 100644 Binary files a/core/css/guest.css and b/core/css/guest.css differ diff --git a/core/css/header.scss b/core/css/header.scss index a10f5937d05..4c107c0d58f 100644 --- a/core/css/header.scss +++ b/core/css/header.scss @@ -165,6 +165,7 @@ margin-right: 10px; height: 16px; width: 16px; + filter: var(--background-invert-if-dark); } } } diff --git a/core/css/icons.scss b/core/css/icons.scss index e4da7c7c4d3..78522895cf5 100644 --- a/core/css/icons.scss +++ b/core/css/icons.scss @@ -65,7 +65,7 @@ border: 2px solid var(--color-loading-light); border-top-color: var(--color-loading-dark); // revert if background is too bright - filter: var(--background-invert-if-bright); + filter: var(--background-invert-if-dark); .primary &, .primary + & { diff --git a/core/shipped.json b/core/shipped.json index 14ee28a71d0..8a63cf20248 100644 --- a/core/shipped.json +++ b/core/shipped.json @@ -1,6 +1,5 @@ { "shippedApps": [ - "accessibility", "activity", "admin_audit", "circles", diff --git a/psalm.xml b/psalm.xml index d9fad733c25..dac8635b5be 100644 --- a/psalm.xml +++ b/psalm.xml @@ -11,7 +11,6 @@ - diff --git a/webpack.modules.js b/webpack.modules.js index 90c4a2b550c..04541b4515e 100644 --- a/webpack.modules.js +++ b/webpack.modules.js @@ -22,10 +22,6 @@ const path = require('path') module.exports = { - accessibility: { - accessibility: path.join(__dirname, 'apps/accessibility/src', 'main.js'), - accessibilityoca: path.join(__dirname, 'apps/accessibility/src', 'accessibilityoca.js'), - }, comments: { comments: path.join(__dirname, 'apps/comments/src', 'comments.js'), 'comments-app': path.join(__dirname, 'apps/comments/src', 'comments-app.js'),