migrate therinaldos.com data
Build & Deploy to DigitalOcean Space / build (push) Failing after 2m38s

This commit is contained in:
2024-05-05 15:50:45 -04:00
commit ef1ff240d4
23182 changed files with 3801898 additions and 0 deletions
+191
View File
@@ -0,0 +1,191 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2016, ownCloud, Inc.
*
* @author Andreas Fischer <bantu@owncloud.com>
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
* @author Georg Ehrke <oc.list@georgehrke.com>
* @author J0WI <J0WI@users.noreply.github.com>
* @author Joas Schilling <coding@schilljs.com>
* @author Lukas Reschke <lukas@statuscode.ch>
* @author Markus Goetz <markus@woboq.com>
* @author Morris Jobke <hey@morrisjobke.de>
* @author Robin Appelman <robin@icewind.nl>
* @author Robin McCorkell <robin@mccorkell.me.uk>
* @author Roeland Jago Douma <roeland@famdouma.nl>
* @author Vincent Petry <vincent@nextcloud.com>
*
* @license AGPL-3.0
*
* This code is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License, version 3,
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/
namespace OC;
use \OCP\AutoloadNotAllowedException;
use OCP\ICache;
use Psr\Log\LoggerInterface;
class Autoloader {
/** @var bool */
private $useGlobalClassPath = true;
/** @var array */
private $validRoots = [];
/**
* Optional low-latency memory cache for class to path mapping.
*
* @var \OC\Memcache\Cache
*/
protected $memoryCache;
/**
* Autoloader constructor.
*
* @param string[] $validRoots
*/
public function __construct(array $validRoots) {
foreach ($validRoots as $root) {
$this->validRoots[$root] = true;
}
}
/**
* Add a path to the list of valid php roots for auto loading
*
* @param string $root
*/
public function addValidRoot(string $root): void {
$root = stream_resolve_include_path($root);
$this->validRoots[$root] = true;
}
/**
* disable the usage of the global classpath \OC::$CLASSPATH
*/
public function disableGlobalClassPath(): void {
$this->useGlobalClassPath = false;
}
/**
* enable the usage of the global classpath \OC::$CLASSPATH
*/
public function enableGlobalClassPath(): void {
$this->useGlobalClassPath = true;
}
/**
* get the possible paths for a class
*
* @param string $class
* @return array an array of possible paths
*/
public function findClass(string $class): array {
$class = trim($class, '\\');
$paths = [];
if ($this->useGlobalClassPath && array_key_exists($class, \OC::$CLASSPATH)) {
$paths[] = \OC::$CLASSPATH[$class];
/**
* @TODO: Remove this when necessary
* Remove "apps/" from inclusion path for smooth migration to multi app dir
*/
if (strpos(\OC::$CLASSPATH[$class], 'apps/') === 0) {
\OCP\Server::get(LoggerInterface::class)->debug('include path for class "' . $class . '" starts with "apps/"', ['app' => 'core']);
$paths[] = str_replace('apps/', '', \OC::$CLASSPATH[$class]);
}
} elseif (strpos($class, 'OC_') === 0) {
$paths[] = \OC::$SERVERROOT . '/lib/private/legacy/' . strtolower(str_replace('_', '/', substr($class, 3)) . '.php');
} elseif (strpos($class, 'OCA\\') === 0) {
[, $app, $rest] = explode('\\', $class, 3);
$app = strtolower($app);
$appPath = \OC_App::getAppPath($app);
if ($appPath && stream_resolve_include_path($appPath)) {
$paths[] = $appPath . '/' . strtolower(str_replace('\\', '/', $rest) . '.php');
// If not found in the root of the app directory, insert '/lib' after app id and try again.
$paths[] = $appPath . '/lib/' . strtolower(str_replace('\\', '/', $rest) . '.php');
}
} elseif ($class === 'Test\\TestCase') {
// This File is considered public API, so we make sure that the class
// can still be loaded, although the PSR-4 paths have not been loaded.
$paths[] = \OC::$SERVERROOT . '/tests/lib/TestCase.php';
}
return $paths;
}
/**
* @param string $fullPath
* @return bool
* @throws AutoloadNotAllowedException
*/
protected function isValidPath(string $fullPath): bool {
foreach ($this->validRoots as $root => $true) {
if (substr($fullPath, 0, strlen($root) + 1) === $root . '/') {
return true;
}
}
throw new AutoloadNotAllowedException($fullPath);
}
/**
* Load the specified class
*
* @param string $class
* @return bool
* @throws AutoloadNotAllowedException
*/
public function load(string $class): bool {
$pathsToRequire = null;
if ($this->memoryCache) {
$pathsToRequire = $this->memoryCache->get($class);
}
if (class_exists($class, false)) {
return false;
}
if (!is_array($pathsToRequire)) {
// No cache or cache miss
$pathsToRequire = [];
foreach ($this->findClass($class) as $path) {
$fullPath = stream_resolve_include_path($path);
if ($fullPath && $this->isValidPath($fullPath)) {
$pathsToRequire[] = $fullPath;
}
}
if ($this->memoryCache) {
$this->memoryCache->set($class, $pathsToRequire, 60); // cache 60 sec
}
}
foreach ($pathsToRequire as $fullPath) {
require_once $fullPath;
}
return false;
}
/**
* Sets the optional low-latency cache for class to path mapping.
*
* @param ICache $memoryCache Instance of memory cache.
*/
public function setMemoryCache(ICache $memoryCache = null): void {
$this->memoryCache = $memoryCache;
}
}
File diff suppressed because it is too large Load Diff
+25
View File
@@ -0,0 +1,25 @@
<?php
// autoload.php @generated by Composer
if (PHP_VERSION_ID < 50600) {
if (!headers_sent()) {
header('HTTP/1.1 500 Internal Server Error');
}
$err = 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL;
if (!ini_get('display_errors')) {
if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') {
fwrite(STDERR, $err);
} elseif (!headers_sent()) {
echo $err;
}
}
trigger_error(
$err,
E_USER_ERROR
);
}
require_once __DIR__ . '/composer/autoload_real.php';
return ComposerAutoloaderInit749170dad3f5e7f9ca158f5a9f04f6a2::getLoader();
@@ -0,0 +1,579 @@
<?php
/*
* This file is part of Composer.
*
* (c) Nils Adermann <naderman@naderman.de>
* Jordi Boggiano <j.boggiano@seld.be>
*
* 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 <fabien@symfony.com>
* @author Jordi Boggiano <j.boggiano@seld.be>
* @see https://www.php-fig.org/psr/psr-0/
* @see https://www.php-fig.org/psr/psr-4/
*/
class ClassLoader
{
/** @var \Closure(string):void */
private static $includeFile;
/** @var string|null */
private $vendorDir;
// PSR-4
/**
* @var array<string, array<string, int>>
*/
private $prefixLengthsPsr4 = array();
/**
* @var array<string, list<string>>
*/
private $prefixDirsPsr4 = array();
/**
* @var list<string>
*/
private $fallbackDirsPsr4 = array();
// PSR-0
/**
* List of PSR-0 prefixes
*
* Structured as array('F (first letter)' => array('Foo\Bar (full prefix)' => array('path', 'path2')))
*
* @var array<string, array<string, list<string>>>
*/
private $prefixesPsr0 = array();
/**
* @var list<string>
*/
private $fallbackDirsPsr0 = array();
/** @var bool */
private $useIncludePath = false;
/**
* @var array<string, string>
*/
private $classMap = array();
/** @var bool */
private $classMapAuthoritative = false;
/**
* @var array<string, bool>
*/
private $missingClasses = array();
/** @var string|null */
private $apcuPrefix;
/**
* @var array<string, self>
*/
private static $registeredLoaders = array();
/**
* @param string|null $vendorDir
*/
public function __construct($vendorDir = null)
{
$this->vendorDir = $vendorDir;
self::initializeIncludeClosure();
}
/**
* @return array<string, list<string>>
*/
public function getPrefixes()
{
if (!empty($this->prefixesPsr0)) {
return call_user_func_array('array_merge', array_values($this->prefixesPsr0));
}
return array();
}
/**
* @return array<string, list<string>>
*/
public function getPrefixesPsr4()
{
return $this->prefixDirsPsr4;
}
/**
* @return list<string>
*/
public function getFallbackDirs()
{
return $this->fallbackDirsPsr0;
}
/**
* @return list<string>
*/
public function getFallbackDirsPsr4()
{
return $this->fallbackDirsPsr4;
}
/**
* @return array<string, string> Array of classname => path
*/
public function getClassMap()
{
return $this->classMap;
}
/**
* @param array<string, string> $classMap Class to filename map
*
* @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 list<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)
{
$paths = (array) $paths;
if (!$prefix) {
if ($prepend) {
$this->fallbackDirsPsr0 = array_merge(
$paths,
$this->fallbackDirsPsr0
);
} else {
$this->fallbackDirsPsr0 = array_merge(
$this->fallbackDirsPsr0,
$paths
);
}
return;
}
$first = $prefix[0];
if (!isset($this->prefixesPsr0[$first][$prefix])) {
$this->prefixesPsr0[$first][$prefix] = $paths;
return;
}
if ($prepend) {
$this->prefixesPsr0[$first][$prefix] = array_merge(
$paths,
$this->prefixesPsr0[$first][$prefix]
);
} else {
$this->prefixesPsr0[$first][$prefix] = array_merge(
$this->prefixesPsr0[$first][$prefix],
$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 list<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)
{
$paths = (array) $paths;
if (!$prefix) {
// Register directories for the root namespace.
if ($prepend) {
$this->fallbackDirsPsr4 = array_merge(
$paths,
$this->fallbackDirsPsr4
);
} else {
$this->fallbackDirsPsr4 = array_merge(
$this->fallbackDirsPsr4,
$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] = $paths;
} elseif ($prepend) {
// Prepend directories for an already registered namespace.
$this->prefixDirsPsr4[$prefix] = array_merge(
$paths,
$this->prefixDirsPsr4[$prefix]
);
} else {
// Append directories for an already registered namespace.
$this->prefixDirsPsr4[$prefix] = array_merge(
$this->prefixDirsPsr4[$prefix],
$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 list<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 list<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 = self::$includeFile;
$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 keyed by their corresponding vendor directories.
*
* @return array<string, 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;
}
/**
* @return void
*/
private static function initializeIncludeClosure()
{
if (self::$includeFile !== null) {
return;
}
/**
* Scope isolated include.
*
* Prevents access to $this/self from included files.
*
* @param string $file
* @return void
*/
self::$includeFile = \Closure::bind(static function($file) {
include $file;
}, null, null);
}
}
@@ -0,0 +1,359 @@
<?php
/*
* This file is part of Composer.
*
* (c) Nils Adermann <naderman@naderman.de>
* Jordi Boggiano <j.boggiano@seld.be>
*
* 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, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}|array{}|null
*/
private static $installed;
/**
* @var bool|null
*/
private static $canGetVendors;
/**
* @var array[]
* @psalm-var array<string, array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
*/
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<string>
*/
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<string>
*/
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 || !isset($installed['versions'][$packageName]['dev_requirement']) || $installed['versions'][$packageName]['dev_requirement'] === false;
}
}
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((string) $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, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}
*/
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, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}
*/
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<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
*/
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, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $data
*/
public static function reload($data)
{
self::$installed = $data;
self::$installedByVendor = array();
}
/**
* @return array[]
* @psalm-return list<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
*/
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')) {
/** @var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $required */
$required = require $vendorDir.'/composer/installed.php';
$installed[] = self::$installedByVendor[$vendorDir] = $required;
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') {
/** @var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $required */
$required = require __DIR__ . '/installed.php';
self::$installed = $required;
} else {
self::$installed = array();
}
}
if (self::$installed !== array()) {
$installed[] = self::$installed;
}
return $installed;
}
}
@@ -0,0 +1,21 @@
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.
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,10 @@
<?php
// autoload_files.php @generated by Composer
$vendorDir = dirname(__DIR__);
$baseDir = dirname(dirname($vendorDir));
return array(
'03ae51fe9694f2f597f918142c49ff7a' => $baseDir . '/lib/public/Log/functions.php',
);
@@ -0,0 +1,9 @@
<?php
// autoload_namespaces.php @generated by Composer
$vendorDir = dirname(__DIR__);
$baseDir = dirname(dirname($vendorDir));
return array(
);
@@ -0,0 +1,13 @@
<?php
// autoload_psr4.php @generated by Composer
$vendorDir = dirname(__DIR__);
$baseDir = dirname(dirname($vendorDir));
return array(
'OC\\Core\\' => array($baseDir . '/core'),
'OC\\' => array($baseDir . '/lib/private'),
'OCP\\' => array($baseDir . '/lib/public'),
'' => array($baseDir . '/lib/private/legacy'),
);
@@ -0,0 +1,50 @@
<?php
// autoload_real.php @generated by Composer
class ComposerAutoloaderInit749170dad3f5e7f9ca158f5a9f04f6a2
{
private static $loader;
public static function loadClassLoader($class)
{
if ('Composer\Autoload\ClassLoader' === $class) {
require __DIR__ . '/ClassLoader.php';
}
}
/**
* @return \Composer\Autoload\ClassLoader
*/
public static function getLoader()
{
if (null !== self::$loader) {
return self::$loader;
}
require __DIR__ . '/platform_check.php';
spl_autoload_register(array('ComposerAutoloaderInit749170dad3f5e7f9ca158f5a9f04f6a2', 'loadClassLoader'), true, true);
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
spl_autoload_unregister(array('ComposerAutoloaderInit749170dad3f5e7f9ca158f5a9f04f6a2', 'loadClassLoader'));
require __DIR__ . '/autoload_static.php';
call_user_func(\Composer\Autoload\ComposerStaticInit749170dad3f5e7f9ca158f5a9f04f6a2::getInitializer($loader));
$loader->register(true);
$filesToLoad = \Composer\Autoload\ComposerStaticInit749170dad3f5e7f9ca158f5a9f04f6a2::$files;
$requireFile = \Closure::bind(static function ($fileIdentifier, $file) {
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
$GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
require $file;
}
}, null, null);
foreach ($filesToLoad as $fileIdentifier => $file) {
$requireFile($fileIdentifier, $file);
}
return $loader;
}
}
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,5 @@
{
"packages": [],
"dev": false,
"dev-package-names": []
}
@@ -0,0 +1,23 @@
<?php return array(
'root' => array(
'name' => '__root__',
'pretty_version' => 'dev-master',
'version' => 'dev-master',
'reference' => '559a758533026559cf632ed1b3d74f6b1ebfb481',
'type' => 'library',
'install_path' => __DIR__ . '/../../../',
'aliases' => array(),
'dev' => false,
),
'versions' => array(
'__root__' => array(
'pretty_version' => 'dev-master',
'version' => 'dev-master',
'reference' => '559a758533026559cf632ed1b3d74f6b1ebfb481',
'type' => 'library',
'install_path' => __DIR__ . '/../../../',
'aliases' => array(),
'dev_requirement' => false,
),
),
);
@@ -0,0 +1,26 @@
<?php
// platform_check.php @generated by Composer
$issues = array();
if (!(PHP_VERSION_ID >= 80000)) {
$issues[] = 'Your Composer dependencies require a PHP version ">= 8.0.0". You are running ' . PHP_VERSION . '.';
}
if ($issues) {
if (!headers_sent()) {
header('HTTP/1.1 500 Internal Server Error');
}
if (!ini_get('display_errors')) {
if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') {
fwrite(STDERR, 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . implode(PHP_EOL, $issues) . PHP_EOL.PHP_EOL);
} elseif (!headers_sent()) {
echo 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . str_replace('You are running '.PHP_VERSION.'.', '', implode(PHP_EOL, $issues)) . PHP_EOL.PHP_EOL;
}
}
trigger_error(
'Composer detected issues in your platform: ' . implode(' ', $issues),
E_USER_ERROR
);
}
+35
View File
@@ -0,0 +1,35 @@
OC.L10N.register(
"lib",
{
"Unknown filetype" : "Onbekende lêertipe",
"Invalid image" : "Ongeldige beeld",
"Files" : " Lêers",
"seconds ago" : "sekondes gelede",
"File already exists" : "Lêer bestaan reeds",
"__language_name__" : "Afrikaans",
"Help" : "Hulp",
"Apps" : "Toeps",
"Settings" : "Instellings",
"Log out" : "Meld af",
"Users" : "Gebruikers",
"Email" : "E-pos",
"Phone" : "Foon",
"Twitter" : "Twitter",
"Website" : "Webwerf",
"Address" : "Adres",
"Profile picture" : "Profielprent",
"About" : "Oor",
"Open »%s«" : "Open »%s«",
"Sunday" : "Sondag",
"Monday" : "Maandag",
"Tuesday" : "Dinsdag",
"Wednesday" : "Woensdag",
"Thursday" : "Donderdag",
"Friday" : "Vrydag",
"Saturday" : "Saterdag",
"a safe home for all your data" : "n veilige tuiste vir al u data",
"Storage is temporarily not available" : "Berging is tydelik nie beskikbaar nie",
"Full name" : "Volle naam",
"Unknown user" : "Onbekende gebruiker"
},
"nplurals=2; plural=(n != 1);");
+33
View File
@@ -0,0 +1,33 @@
{ "translations": {
"Unknown filetype" : "Onbekende lêertipe",
"Invalid image" : "Ongeldige beeld",
"Files" : " Lêers",
"seconds ago" : "sekondes gelede",
"File already exists" : "Lêer bestaan reeds",
"__language_name__" : "Afrikaans",
"Help" : "Hulp",
"Apps" : "Toeps",
"Settings" : "Instellings",
"Log out" : "Meld af",
"Users" : "Gebruikers",
"Email" : "E-pos",
"Phone" : "Foon",
"Twitter" : "Twitter",
"Website" : "Webwerf",
"Address" : "Adres",
"Profile picture" : "Profielprent",
"About" : "Oor",
"Open »%s«" : "Open »%s«",
"Sunday" : "Sondag",
"Monday" : "Maandag",
"Tuesday" : "Dinsdag",
"Wednesday" : "Woensdag",
"Thursday" : "Donderdag",
"Friday" : "Vrydag",
"Saturday" : "Saterdag",
"a safe home for all your data" : "n veilige tuiste vir al u data",
"Storage is temporarily not available" : "Berging is tydelik nie beskikbaar nie",
"Full name" : "Volle naam",
"Unknown user" : "Onbekende gebruiker"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}
+19
View File
@@ -0,0 +1,19 @@
OC.L10N.register(
"lib",
{
"See %s" : "Veyer %s",
"Unknown filetype" : "Tipo de fichero esconoxiu",
"Invalid image" : "Imachen no valida",
"Files" : "Archivos",
"today" : "Hue",
"yesterday" : "Ayer",
"last month" : "Zaguero mes",
"last year" : "Zaguero año",
"Help" : "Aduya",
"Apps" : "Aplicazions",
"Settings" : "Configurazión",
"Users" : "Usuarios",
"Email" : "Correu electronico",
"Full name" : "Nombre completo"
},
"nplurals=2; plural=(n != 1);");
+17
View File
@@ -0,0 +1,17 @@
{ "translations": {
"See %s" : "Veyer %s",
"Unknown filetype" : "Tipo de fichero esconoxiu",
"Invalid image" : "Imachen no valida",
"Files" : "Archivos",
"today" : "Hue",
"yesterday" : "Ayer",
"last month" : "Zaguero mes",
"last year" : "Zaguero año",
"Help" : "Aduya",
"Apps" : "Aplicazions",
"Settings" : "Configurazión",
"Users" : "Usuarios",
"Email" : "Correu electronico",
"Full name" : "Nombre completo"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}
+301
View File
@@ -0,0 +1,301 @@
OC.L10N.register(
"lib",
{
"Cannot write into \"config\" directory!" : "الكتابة في مجلد \"config\" غير ممكنة!",
"This can usually be fixed by giving the web server write access to the config directory." : "يمكن عادةً إصلاح ذلك من خلال منح خادم الويب حق الوصول للكتابة إلى دليل التكوين config directory.",
"But, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it." : "ولكن، إذا كنت تُفضّل الاحتفاظ بملف config.php للقراءة فقط، فعيّن الخيار \"config_is_read_only\" إلى \"صح\" \"True\".",
"See %s" : "أنظر%s",
"Application %1$s is not present or has a non-compatible version with this server. Please check the apps directory." : "التطبيق %1$s غير موجود أو ليس له إصدار متطابق مع هذا الخادوم. رجاءً، راجع دليل التطبيقات apps directory.",
"Sample configuration detected" : "تمّ العثور على عيّنة إعدادات sample configuration.",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "تمّ اكتشاف أن عيّنة الإعدادات قد تمّ نسخها. يُمكن لهذا أن يُعطّل عملية التنصيب و هو أمر غير مدعوم. نرجو الاطلاع على التعليمات الواردة في وثائق النظام قبل إحداث أي تعديلات على ملف config.php",
"The page could not be found on the server." : "تعذّر العثور على الصفحة في الخادوم",
"%s email verification" : "%s التحقّق من الإيميل",
"Email verification" : "التحقّق من الإيميل",
"Click the following button to confirm your email." : "إضغط الزر التالي لتوكيد الإيميل",
"Click the following link to confirm your email." : "إضغط الرابط التالي لتوكيد الإيميل",
"Confirm your email" : "قم بتأكيد إيميلك",
"Other activities" : "حركات أخرى",
"%1$s and %2$s" : "%1$s و %2$s",
"%1$s, %2$s and %3$s" : "%1$s، %2$s و %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s، %2$s، %3$s و %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s، %2$s، %3$s، %4$s و %5$s",
"Education Edition" : "الإصدار التعليمي",
"Enterprise bundle" : "حزمة المؤسسة",
"Groupware bundle" : "حزمة أدوات العمل الجماعي Groupware",
"Hub bundle" : "حزمة الـ\"هَبْ\" Hub",
"Social sharing bundle" : "حزمة المشاركة الاجتماعية Social Sharing",
"PHP %s or higher is required." : "إصدار PHP %s أو أحدث منه مطلوب.",
"PHP with a version lower than %s is required." : "PHP الإصدار %s أو أقل مطلوب.",
"%sbit or higher PHP required." : "مكتبات PHP ذات %s بت أو أعلى مطلوبة.",
"The following architectures are supported: %s" : "البُنى المعمارية التالية مدعومة:: %s",
"The following databases are supported: %s" : "قواعد البيانات التالية مدعومة: %s",
"The command line tool %s could not be found" : "لم يتم العثور على أداة سطر الأوامر %s",
"The library %s is not available." : "مكتبة %s غير متوفرة.",
"Library %1$s with a version higher than %2$s is required - available version %3$s." : "المكتبة %1$s بإصدار أحدث من %2$s مطلوبة. بينما الإصدار الموجود هو %3$s.",
"Library %1$s with a version lower than %2$s is required - available version %3$s." : "المكتبة %1$s بإصدار أحدث من %2$s مطلوبة. بينما الإصدار الموجود هو %3$s.",
"The following platforms are supported: %s" : "المنصّات التالية مدعومة: %s",
"Server version %s or higher is required." : "مطلوب إصدار الخادم %s أو أعلى.",
"Server version %s or lower is required." : "مطلوب إصدار الخادم %s أو أقل.",
"Logged in account must be an admin, a sub admin or gotten special right to access this setting" : "الداخل للحساب يجب أن يكون مُشرفاً أو مشرفاً فرعيّاً أو يملك حقاً خاصاً للوصول إلى هذا الإعداد",
"Logged in account must be an admin or sub admin" : "الداخل للحساب يجب أن يكون مُشرفاً أو مشرفاً فرعيّاً ",
"Logged in account must be an admin" : "الداخل للحساب يجب أن يكون مُشرفاً ",
"Wiping of device %s has started" : "بدأ مسح الجهاز %s ",
"Wiping of device »%s« has started" : "بدأ مسح الجهاز »%s« ",
"»%s« started remote wipe" : "»%s« بدأ المسح عن بُعدٍ",
"Device or application »%s« has started the remote wipe process. You will receive another email once the process has finished" : "الجهاز أو التطبيق »%s« بدأ عملية محوّ البيانات عن بُعدٍ. سوف تستلم إيميلاً آخر بمجرد انتهاء العملية.",
"Wiping of device %s has finished" : "إكتمل مسح الجهاز %s ",
"Wiping of device »%s« has finished" : "إكتمل مسح الجهاز »%s« ",
"»%s« finished remote wipe" : "إكتمل مسح الجهاز »%s« ",
"Device or application »%s« has finished the remote wipe process." : "الجهاز أو التطبيق »%s« أكمل عملية محو البيانات عن بُعدٍ.",
"Remote wipe started" : "بدأ المسح عن بُعدٍ.",
"A remote wipe was started on device %s" : "بدأ المسح عن بُعدٍ للجهاز %s",
"Remote wipe finished" : "إكتمل المسح عن بُعدٍ",
"The remote wipe on %s has finished" : "إكتمل المسح عن بُعدٍ لـ %s ",
"Authentication" : "المصادقة",
"Unknown filetype" : "نوع الملف غير معروف",
"Invalid image" : "الصورة غير صالحة",
"Avatar image is not square" : "الصورة الرمزية ليست على شكل مربّع",
"Files" : "الملفات",
"View profile" : "عرض الملف الشخصي",
"Local time: %s" : "الوقت المحلّي: %s",
"today" : "اليوم",
"tomorrow" : "غدًا",
"yesterday" : "يوم أمس",
"_in %n day_::_in %n days_" : ["في %nأيام","في %nيوم","في %nأيام","في %nأيام","في %n أيام","في %nأيام"],
"_%n day ago_::_%n days ago_" : ["قبل ساعات","قبل يوم","قبل يومين","قبل %n يوماً","قبل %n يوماً","قبل %n يوماً"],
"next month" : "الشهر القادم",
"last month" : "الشهر الماضي",
"_in %n month_::_in %n months_" : ["في %nشهور","في %nشهر","في %nشهور","في %nشهور","في %nشهور","في %nشهور"],
"_%n month ago_::_%n months ago_" : ["قبل عدة أيام","قبل شهر","قبل شهرين","قبل %n شهراً","قبل %n شهراً","قبل %n شهراً"],
"next year" : "العام القادم",
"last year" : "السنةالماضية",
"_in %n year_::_in %n years_" : ["في %n أعوام","في %nعام","في %nأعوام","في %nأعوام","في %n أعوام","في %nأعوام"],
"_%n year ago_::_%n years ago_" : ["%n منذ سنوات","%n منذ سنة","%n منذ سنوات","%n منذ سنوات","%n منذ سنوات","%n منذ سنوات"],
"_in %n hour_::_in %n hours_" : ["في %nساعات","في %nساعة","في %nساعات","في %nساعات","في %n ساعات","في %n ساعات"],
"_%n hour ago_::_%n hours ago_" : ["%n منذ ساعات","%n منذ ساعة","%n منذ ساعات","%n منذ ساعات","%n منذ ساعات","%n منذ ساعات"],
"_in %n minute_::_in %n minutes_" : ["في %nدقائق","في %nدقيقة","في %nدقائق","في %nدقائق","في %nدقائق","في %nدقائق"],
"_%n minute ago_::_%n minutes ago_" : ["%n منذ دقائق","%n منذ دقيقة","%n منذ دقائق","%n منذ دقائق","%n منذ دقائق","%n منذ دقائق"],
"in a few seconds" : "خلال بضع ثواني",
"seconds ago" : "منذ ثواني",
"Empty file" : "ملفٌ فارغٌ",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "الوحدة module ذات الرقم ID ـ : %s غير موجودة. رجاءً، فعّلها في إعدادات التطبيقات لديك، أو اتصل بمشرف نظامك.",
"File already exists" : "الملف موجود مسبقاً",
"Invalid path" : "مسارٌ غير صحيحٍ",
"Failed to create file from template" : "تعذّر إنشاء ملفٍ من قالبٍ",
"Templates" : "القوالب",
"File name is a reserved word" : "اسم الملف كلمة محجوزة",
"File name contains at least one invalid character" : "اسم الملف به ، على الأقل ، حرف غير صالح",
"File name is too long" : "اسم الملف طويل جداً",
"Dot files are not allowed" : "الملفات النقطية (ملفات ذات أسماء تبدأ بنقطة) غير مسموح بها",
"Empty filename is not allowed" : "لا يسمح بأسماء فارغة للملفات",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "لا يمكن تثبيت التطبيق \"%s\" لأنه لا يمكن قراءة ملف معلومات التطبيق.",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "لا يمكن تثبيت التطبيق \"%s\" لأنه غير متوافق مع هذا الإصدار من الخادم.",
"__language_name__" : "اللغة العربية",
"This is an automatically sent email, please do not reply." : "هذه رسالة آلية، يرجى عدم الرد عليها.",
"Help" : "المساعدة",
"Appearance and accessibility" : "المظهر appearance، و سهولة الوصول accessibility",
"Apps" : "التطبيقات",
"Personal settings" : "إعدادات شخصيّة",
"Administration settings" : "إعدادات الإدارة",
"Settings" : "الإعدادات",
"Log out" : "الخروج",
"Users" : "المستخدمين",
"Email" : "البريد الإلكتروني",
"Mail %s" : "بريد %s",
"Fediverse" : "الشبكة اللامركزية للتواصل الاجتماعي \"فيديفيرس\" Fediverse",
"View %s on the fediverse" : "عرض %s على الفيديفيرس Fediverse",
"Phone" : "الهاتف",
"Call %s" : "إتصل بـ%s",
"Twitter" : "تويتر",
"View %s on Twitter" : "عرض %s على تويتر Twitter",
"Website" : "موقع الويب",
"Visit %s" : "زيارة %s",
"Address" : "العنوان",
"Profile picture" : "صورة الملف الشخصي",
"About" : "عن",
"Display name" : "الاسم المعروض",
"Headline" : "عنوان ",
"Organisation" : "مؤسسة",
"Role" : "الدور",
"Unknown account" : "حساب غير معروف",
"Additional settings" : "الإعدادات المتقدمة",
"Enter the database Login and name for %s" : "أدخِل حيثيات الدخول لقاعدة البيانات %s",
"Enter the database Login for %s" : "أدخِل حيثيات دخول قاعدة البيانات لـ %s",
"Enter the database name for %s" : "أدخل اسم قاعدة البيانات لـ%s",
"You cannot use dots in the database name %s" : "لا يمكنك استخدام النقاط dots في اسم قاعدة البيانات %s",
"MySQL Login and/or password not valid" : "حيثيات دخول او كلمة مرور MySQL غير صحيحة",
"You need to enter details of an existing account." : "يلزمك إدخال تفاصيل حسابك الحالي.",
"Oracle connection could not be established" : "لم تنجح محاولة اتصال Oracle",
"Oracle Login and/or password not valid" : "حيثيات دخول او كلمة مرور Oracle غير صحيحة",
"PostgreSQL Login and/or password not valid" : "حيثيات دخول او كلمة مرورPostgreSQL غير صحيحة",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "نظام ماك الإصدار X غير مدعوم و %s لن يعمل بشكل صحيح على هذه المنصة. استخدمه على مسؤوليتك!",
"For the best results, please consider using a GNU/Linux server instead." : "فضلاً ضع في الاعتبار استخدام نظام GNU/Linux بدل الأنظمة الأخرى للحصول على أفضل النتائج.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "يبدو أن كائن %s يعمل على بيئة PHP 32-Bit وكذلك تم تكوين open_basedir في ملف php.ini. يؤدي ذلك إلى مشاكل مع الملفات التي يزيد حجمها عن 4 غيغابايت ولا يُنصح بذلك بشدة.",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "فضلاً إحذف إعداد open_basedir من ملف php.ini لديك أو حوّل إلى PHP إصدار 64 بت.",
"Set an admin Login." : "تعيين حيثيات دخول المشرف.",
"Set an admin password." : "تعيين كلمة مرور للمدير",
"Cannot create or write into the data directory %s" : "لا يمكن الإنشاء أو الكتابة في data directory دليل البيانات %s",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "يجب أن تقوم الواجهة الخلفية للمشاركة (Sharing backend) %s بتطبيق الواجهة OCP\\Share_Backend",
"Sharing backend %s not found" : "لم يتم العثور على الواجهة الخلفية (Sharing backend) %s",
"Sharing backend for %s not found" : "مشاركة الخلفية لـ %s غير موجود",
"%1$s shared »%2$s« with you and wants to add:" : "%1$s شارك »%2$s« معك و يرغب في إضافة:",
"%1$s shared »%2$s« with you and wants to add" : "%1$s شارك »%2$s« معك و يرغب في إضافة",
"»%s« added a note to a file shared with you" : "»%s« أضاف ملاحظة لملفٍ سلفت مشاركته معك",
"Open »%s«" : "فتح »%s«",
"%1$s via %2$s" : "%1$s عبر %2$s",
"You are not allowed to share %s" : "أنت غير مسموح لك أن تشارك %s",
"Cannot increase permissions of %s" : "لا يمكن زيادة أذونات %s",
"Files cannot be shared with delete permissions" : "لا يمكن مشاركة ملفات بأذونات حذفٍ",
"Files cannot be shared with create permissions" : "لا يمكن مشاركة ملفات بأذونات إنشاء",
"Expiration date is in the past" : "تاريخ انتهاء الصلاحية غير صالح. التاريخ المحدد في الماضي!",
"_Cannot set expiration date more than %n day in the future_::_Cannot set expiration date more than %n days in the future_" : ["لا يمكن تعيين تاريخ انتهاء الصلاحية لأكثر من %n أيام في المستقبل","لا يمكن تعيين تاريخ انتهاء الصلاحية لأكثر من %n يوم في المستقبل","لا يمكن تعيين تاريخ انتهاء الصلاحية لأكثر %n من أيام في المستقبل","لا يمكن تعيين تاريخ انتهاء الصلاحية لأكثر %n من أيام في المستقبل","لا يمكن تعيين تاريخ انتهاء الصلاحية لأكثر %n من أيام في المستقبل","لا يمكن تعيين تاريخ انتهاء الصلاحية لأكثر %n من أيام في المستقبل"],
"Sharing is only allowed with group members" : "المشاركة مسموحة فقط مع أعضاء المجموعة",
"Sharing %s failed, because this item is already shared with the account %s" : "فشلت مشاركة %s؛ لأن هذا العنصر سبقت مشاركته مع الحساب %s",
"%1$s shared »%2$s« with you" : "%1$s شارك »%2$s« معك",
"%1$s shared »%2$s« with you." : "%1$s شَارَكَ »%2$s« معك.",
"Click the button below to open it." : "أنقر على الزر أدناه لفتحه.",
"The requested share does not exist anymore" : "المشاركة المطلوبة لم تعد موجودةً",
"The requested share comes from a disabled user" : "المستخدم الذي طلب المشاركة تمّ تجميد حسابه بعد طلبه للمشاركة",
"The user was not created because the user limit has been reached. Check your notifications to learn more." : "لم يتم إنشاء المستخدم بسبب وصول عدد المستخدمين إلى الحد الأقصى المسموح به. رجاءً، راجع إشعاراتك للمزيد من المعلومات.",
"Could not find category \"%s\"" : "تعذر العثور على المجلد \"%s\"",
"Sunday" : "الأحد",
"Monday" : "الإثنين",
"Tuesday" : "الثلاثاء",
"Wednesday" : "الأربعاء",
"Thursday" : "الخميس",
"Friday" : "الجمعة",
"Saturday" : "السبت",
"Sun." : "أح.",
"Mon." : "إث.",
"Tue." : "ثلا.",
"Wed." : "أر.",
"Thu." : "خم.",
"Fri." : "جم.",
"Sat." : "سب.",
"Su" : "أح",
"Mo" : "إث",
"Tu" : "ثلا",
"We" : "أر",
"Th" : "خم",
"Fr" : "جم",
"Sa" : "سب",
"January" : "جانفي",
"February" : "فيفري",
"March" : "مارس",
"April" : "أفريل",
"May" : "ماي",
"June" : "جوان",
"July" : "جويلية",
"August" : "أوت",
"September" : "سبتمبر",
"October" : "أكتوبر",
"November" : "نوفمبر",
"December" : "ديسمبر",
"Jan." : "جان.",
"Feb." : "فيف.",
"Mar." : "مار.",
"Apr." : "أفر.",
"May." : "ماي",
"Jun." : "جوا.",
"Jul." : "جوي.",
"Aug." : "أوت",
"Sep." : "سبت.",
"Oct." : "أكت.",
"Nov." : "نوف.",
"Dec." : "ديس.",
"A valid password must be provided" : "يجب ادخال كلمة مرور صحيحة",
"The Login is already being used" : "تسجيل الدخول قيد الاستعمال بالفعل",
"Could not create account" : "تعذّر إنشاء الحساب",
"Only the following characters are allowed in an Login: \"a-z\", \"A-Z\", \"0-9\", spaces and \"_.@-'\"" : "الأحرف التالية فقط مسموح باستعمالها في حيثيات الدخول: \"a-z\" و , و \"A-Z\"، و \"0-9\", و المسافة، و \"_.@-'\"",
"A valid Login must be provided" : "يجب إعطاء حيثيات الدخول الصحيحة",
"Login contains whitespace at the beginning or at the end" : "حيثيات الدخول تحوي مسافات بيضاء في بدايتها أو في نهايتها",
"Login must not consist of dots only" : "يجب ألّا تكون حيثيات الدخول محتوية فقط على نُقَطٍ",
"Login is invalid because files already exist for this user" : "الدخول غير صحيح لأن هنالك ملفات موجودة مسبقاً لهذا المستخدِم",
"Account disabled" : "الحساب مُعطَّل",
"Login canceled by app" : "تم إلغاء الدخول مِن طرف التطبيق",
"App \"%1$s\" cannot be installed because the following dependencies are not fulfilled: %2$s" : "التطبيق \"%1$s\" لا يمكن تنصيبه بسبب أن التبعيّات التالية لم تتحقق: %2$s",
"a safe home for all your data" : "المكان الآمن لجميع بياناتك",
"File is currently busy, please try again later" : "إنّ الملف مشغول الآمن، يرجى إعادة المحاولة لاحقًا",
"Cannot download file" : "لا يمكن تنزيل الملف",
"Application is not enabled" : "التطبيق غير مفعّل",
"Authentication error" : "لم يتم التأكد من الشخصية بنجاح",
"Token expired. Please reload page." : "انتهت صلاحية الكلمة , يرجى اعادة تحميل الصفحة",
"No database drivers (sqlite, mysql, or postgresql) installed." : "لا توجد برامج تشغيل لقاعدة البيانات (sqlite أو mysql أو postgresql) مثبتة.",
"Cannot write into \"config\" directory." : "تعذّرت الكتابة في الدليل 'config\".",
"This can usually be fixed by giving the web server write access to the config directory. See %s" : "يمكن إصلاح هذا عادةً بمنح خادوم الوب صلاحية الوصول إلى الدليل \"config\". للمزيد، أنظر: %s",
"Or, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it. See %s" : "و إذا كنت تُفضّل بقاء الملف \"config.php\" للقراءة فقط، عيّن الخيار \"config_is_read_only\". أنظر: %s",
"Cannot write into \"apps\" directory." : "لا يمكن الكتابة في الدليل \"apps\".",
"This can usually be fixed by giving the web server write access to the apps directory or disabling the App Store in the config file." : "يمكن إصلاح ذلك عادةً عن طريق منح خادم الويب حق الكتابة في دليل التطبيقات apps dicrectory أو تعطيل متجر التطبيقات App store في الملف config.",
"Cannot create \"data\" directory." : "لا يمكن إنشاء دليل data directory.",
"This can usually be fixed by giving the web server write access to the root directory. See %s" : "يمكن إصلاح ذلك عادةً عن طريق منح خادم الويب حق الكتابة في الدليل الجذري root directory. أنطر:%s",
"Permissions can usually be fixed by giving the web server write access to the root directory. See %s." : "الأذونات يمكن إصلاحها عادةً عن طريق منح خادم الويب حق الكتابة في الدليل الجذري root directory. أنظر:%s.",
"Your data directory is not writable." : "دليل البيانات data directory لا يمكن الكتابة فيه.",
"Setting locale to %s failed." : "تعذّر تعيين إعدادت اللغة و المَحلّيّات locale إلى %s.",
"Please install one of these locales on your system and restart your web server." : "الرجاء تثبيت إحدى هذه المناطق على نظامك وإعادة تشغيل خادوم الويب الخاص بك.",
"PHP module %s not installed." : "وحدة PHP %s غير مثبتة.",
"Please ask your server administrator to install the module." : "يرجى مطالبة مسؤول الخادم بتثبيت الوحدة.",
"PHP setting \"%s\" is not set to \"%s\"." : "إعداد PHP \"%s\" لم يتم تعيينه إلى \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "تضبيط الإعدادات في ملف php.ini سوف يُمكّن نيكست كلاود من العمل مجدداً",
"<code>mbstring.func_overload</code> is set to <code>%s</code> instead of the expected value <code>0</code>." : "<code>mbstring.func_overload</code> تمّ تعيينه إلى <code>%s</code> بدلاً عن القيمة المتوقعة <code>0</code>.",
"To fix this issue set <code>mbstring.func_overload</code> to <code>0</code> in your php.ini." : "لإصلاح هذا الخطأ، قم بتعيين<code>mbstring.func_overload</code> إلى <code>0</code> في php.ini.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "يبدو أنه تم إعداد PHP لتجريد كتل المستندات المضمنة. سيؤدي ذلك إلى جعل العديد من التطبيقات الأساسية غير قابلة للوصول.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "ربما يكون السبب في ذلك هو ذاكرة التخزين المؤقت/المسرع مثل Zend OPcache أو eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "تم تثبيت وحدات PHP ، لكنها لا تزال مدرجة على أنها وحدات مفقودة؟",
"Please ask your server administrator to restart the web server." : "يرجى مطالبة مسؤول الخادم بإعادة تشغيل خادم الويب.",
"The required %s config variable is not configured in the config.php file." : "مُتغيّر التهيئة %s المطلوب لم تتم تهيئته في الملف config.php.",
"Please ask your server administrator to check the Nextcloud configuration." : "رجاءً، أطلب من مشرف نظامك مراجعة تهيئة نكست كلاود Nextcloud configuration.",
"Your data directory is readable by other people." : "دليل بياناتك مسموحٌ بقراءته من قِبَل أشخاص آخرين.",
"Please change the permissions to 0770 so that the directory cannot be listed by other people." : "قُم رجاءً بتغيير الأذونات إلى 0770 حتى لا يتسنّى لأشخاص آخرين استعراض الدليل.",
"Your data directory must be an absolute path." : "مسار دليل بياناتك data directory يجب أن يكون مساراً مُطلقاً absolute path.",
"Check the value of \"datadirectory\" in your configuration." : "راجع قيمة \"datadirectory\" في تهيئتك.",
"Your data directory is invalid." : "دليل بياناتك data directory غير صحيح.",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "تأكد من وجود ملفٍ باسم \".ocdata\" في جذر دليل البيانات data directory.",
"Action \"%s\" not supported or implemented." : "الإجراء \"%s\" غيرُ مدعومٍ أو غيرً مُطبّقٍ.",
"Authentication failed, wrong token or provider ID given" : "فشلت المصادقة بسبب خطأ في الرمز token أو في رقم المُزوّد provider ID المُعطى.",
"Parameters missing in order to complete the request. Missing Parameters: \"%s\"" : "بارامترات لازمة لإكمال الطلب مفقودةٌ. و البارامترات هي: \"%s\"",
"ID \"%1$s\" already used by cloud federation provider \"%2$s\"" : " المُعّرف \"%1$s\" مٌستخدمٌ سلفاُ من مُزوّد اتحاد سحابي cloud fereration provider \"%2$s\"",
"Cloud Federation Provider with ID: \"%s\" does not exist." : "لا يوجد مُزوّد اتحاد سحابي Cloud Federation Provider بهذا الاسم: \"%s\" .",
"Could not obtain lock type %d on \"%s\"." : "تعذر الحصول على نوع القفل%d على \"%s\".",
"Storage unauthorized. %s" : "التخزين غير مصرح به.%s",
"Storage incomplete configuration. %s" : "تكوين التخزين غير مكتمل. %s",
"Storage connection error. %s" : "خطأ في اتصال التخزين. %s ",
"Storage is temporarily not available" : "وحدة التخزين غير متوفرة",
"Storage connection timeout. %s" : "انتهت مهلة الاتصال بالتخزين. %s",
"Free prompt" : "مَحَثْ prompt مجاني",
"Runs an arbitrary prompt through the language model." : "يقوم بتشغيل مَحَث عشوائي arbitrary prompt من خلال نموذج اللغة language model.",
"Generate headline" : "توليد العنوان",
"Generates a possible headline for a text." : "يقوم بتوليد عنوان مناسب للنص.",
"Summarize" : "تلخيص",
"Summarizes text by reducing its length without losing key information." : "يُلَخِّص النص بتقليل طوله دون فقدان المعنى.",
"Extract topics" : "إستخلاص الموضوعات",
"Extracts topics from a text and outputs them separated by commas." : "يستخلص المواضيع من النص و إخراجها مفصولة بفواصل.",
"The files of the app %1$s were not replaced correctly. Make sure it is a version compatible with the server." : "ملفات التطبيق %1$s لم يتم استبدالها مؤخّراً. تأكد من تطابق إصدارها مع الخادوم.",
"404" : "404",
"Logged in user must be an admin, a sub admin or gotten special right to access this setting" : "المستخدم الداخل يجب أن يكون مُشرفاً admin، أو مُشرفاً فرعيّاً sub admin، أو يحمل صلاحياتٍ خاصّةٍ للوصول إلى هذه الإعدادات.",
"Logged in user must be an admin or sub admin" : "المستخدم الداخل يجب أن يكون مُشرفاً admin، أو مُشرفاً فرعيّاً sub admin.",
"Logged in user must be an admin" : "المستخدم الداخل يجب أن يكون مُشرفاً admin.",
"Full name" : "الاسم الكامل",
"Unknown user" : "المستخدم غير معروف",
"Enter the database username and name for %s" : "أدخل اسم المستخدم لقاعدة البيانات و اسم %s",
"Enter the database username for %s" : "أدخل اسم المستخدم لقاعدة البيانات لـ %s",
"MySQL username and/or password not valid" : "اسم المستخدم لقاعدة البيانات MySQL و/أو كلمة المرور غير صحيحة",
"Oracle username and/or password not valid" : "اسم المستخدم و/أو كلمة المرور لنظام Oracle غير صحيح",
"PostgreSQL username and/or password not valid" : "اسم المستخدم / أو كلمة المرور الخاصة بـPostgreSQL غير صحيحة",
"Set an admin username." : "اعداد اسم مستخدم للمدير",
"Sharing %s failed, because this item is already shared with user %s" : "المشاركة %sلم تتم لأن هذا العنصر سبقت مشاركته سلفاً مع المستخدم %s",
"The username is already being used" : "اسم المستخدم قيد الاستخدام بالفعل",
"Could not create user" : "لا يمكن إنشاء المستخدم",
"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", spaces and \"_.@-'\"" : "الحروف التالية فقط مسموحٌ بها في اسم المستخدِم: \"a-z\"و \"A-Z\"و \"0-9\" و الفراغ و \"_.@-'\"",
"A valid username must be provided" : "يجب ادخال اسم مستخدم صحيح",
"Username contains whitespace at the beginning or at the end" : "إنّ إسم المستخدم يحتوي على مسافة بيضاء سواءا في البداية أو النهاية",
"Username must not consist of dots only" : "اسم المستخدم يجب ألاّ يتكون من نقاطٍ dots فقط",
"Username is invalid because files already exist for this user" : "اسم المستخدم غير صحيحٍ لأن هنالك ملفات موجودة سلفاً لهذا المستخدم",
"User disabled" : "المستخدم معطّل",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "نحتاج النسخة 2.7.0 من libxml2 على الأقل. النسخة المتوافرة حالياً هي %s",
"To fix this issue update your libxml2 version and restart your web server." : "لإصلاح هذه المشكلة، قم بتحديث إصدار libxml2 الخاص بك وأعد تشغيل خادم الويب.",
"PostgreSQL >= 9 required." : "PostgreSQL >= 9 مطلوبة.",
"Please upgrade your database version." : "رجاءً، قم بترقية إصدار قاعدة بياناتك.",
"Your data directory is readable by other users." : "دليل بياناتك data directory يُمكن قراءته من مستخدمين آخرين.",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "الرجاء تغيير الصلاحيات إلى 0770 حتى لا يتمكن المستخدمون الآخرون من عرض محتويات المجلد."
},
"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;");
+299
View File
@@ -0,0 +1,299 @@
{ "translations": {
"Cannot write into \"config\" directory!" : "الكتابة في مجلد \"config\" غير ممكنة!",
"This can usually be fixed by giving the web server write access to the config directory." : "يمكن عادةً إصلاح ذلك من خلال منح خادم الويب حق الوصول للكتابة إلى دليل التكوين config directory.",
"But, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it." : "ولكن، إذا كنت تُفضّل الاحتفاظ بملف config.php للقراءة فقط، فعيّن الخيار \"config_is_read_only\" إلى \"صح\" \"True\".",
"See %s" : "أنظر%s",
"Application %1$s is not present or has a non-compatible version with this server. Please check the apps directory." : "التطبيق %1$s غير موجود أو ليس له إصدار متطابق مع هذا الخادوم. رجاءً، راجع دليل التطبيقات apps directory.",
"Sample configuration detected" : "تمّ العثور على عيّنة إعدادات sample configuration.",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "تمّ اكتشاف أن عيّنة الإعدادات قد تمّ نسخها. يُمكن لهذا أن يُعطّل عملية التنصيب و هو أمر غير مدعوم. نرجو الاطلاع على التعليمات الواردة في وثائق النظام قبل إحداث أي تعديلات على ملف config.php",
"The page could not be found on the server." : "تعذّر العثور على الصفحة في الخادوم",
"%s email verification" : "%s التحقّق من الإيميل",
"Email verification" : "التحقّق من الإيميل",
"Click the following button to confirm your email." : "إضغط الزر التالي لتوكيد الإيميل",
"Click the following link to confirm your email." : "إضغط الرابط التالي لتوكيد الإيميل",
"Confirm your email" : "قم بتأكيد إيميلك",
"Other activities" : "حركات أخرى",
"%1$s and %2$s" : "%1$s و %2$s",
"%1$s, %2$s and %3$s" : "%1$s، %2$s و %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s، %2$s، %3$s و %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s، %2$s، %3$s، %4$s و %5$s",
"Education Edition" : "الإصدار التعليمي",
"Enterprise bundle" : "حزمة المؤسسة",
"Groupware bundle" : "حزمة أدوات العمل الجماعي Groupware",
"Hub bundle" : "حزمة الـ\"هَبْ\" Hub",
"Social sharing bundle" : "حزمة المشاركة الاجتماعية Social Sharing",
"PHP %s or higher is required." : "إصدار PHP %s أو أحدث منه مطلوب.",
"PHP with a version lower than %s is required." : "PHP الإصدار %s أو أقل مطلوب.",
"%sbit or higher PHP required." : "مكتبات PHP ذات %s بت أو أعلى مطلوبة.",
"The following architectures are supported: %s" : "البُنى المعمارية التالية مدعومة:: %s",
"The following databases are supported: %s" : "قواعد البيانات التالية مدعومة: %s",
"The command line tool %s could not be found" : "لم يتم العثور على أداة سطر الأوامر %s",
"The library %s is not available." : "مكتبة %s غير متوفرة.",
"Library %1$s with a version higher than %2$s is required - available version %3$s." : "المكتبة %1$s بإصدار أحدث من %2$s مطلوبة. بينما الإصدار الموجود هو %3$s.",
"Library %1$s with a version lower than %2$s is required - available version %3$s." : "المكتبة %1$s بإصدار أحدث من %2$s مطلوبة. بينما الإصدار الموجود هو %3$s.",
"The following platforms are supported: %s" : "المنصّات التالية مدعومة: %s",
"Server version %s or higher is required." : "مطلوب إصدار الخادم %s أو أعلى.",
"Server version %s or lower is required." : "مطلوب إصدار الخادم %s أو أقل.",
"Logged in account must be an admin, a sub admin or gotten special right to access this setting" : "الداخل للحساب يجب أن يكون مُشرفاً أو مشرفاً فرعيّاً أو يملك حقاً خاصاً للوصول إلى هذا الإعداد",
"Logged in account must be an admin or sub admin" : "الداخل للحساب يجب أن يكون مُشرفاً أو مشرفاً فرعيّاً ",
"Logged in account must be an admin" : "الداخل للحساب يجب أن يكون مُشرفاً ",
"Wiping of device %s has started" : "بدأ مسح الجهاز %s ",
"Wiping of device »%s« has started" : "بدأ مسح الجهاز »%s« ",
"»%s« started remote wipe" : "»%s« بدأ المسح عن بُعدٍ",
"Device or application »%s« has started the remote wipe process. You will receive another email once the process has finished" : "الجهاز أو التطبيق »%s« بدأ عملية محوّ البيانات عن بُعدٍ. سوف تستلم إيميلاً آخر بمجرد انتهاء العملية.",
"Wiping of device %s has finished" : "إكتمل مسح الجهاز %s ",
"Wiping of device »%s« has finished" : "إكتمل مسح الجهاز »%s« ",
"»%s« finished remote wipe" : "إكتمل مسح الجهاز »%s« ",
"Device or application »%s« has finished the remote wipe process." : "الجهاز أو التطبيق »%s« أكمل عملية محو البيانات عن بُعدٍ.",
"Remote wipe started" : "بدأ المسح عن بُعدٍ.",
"A remote wipe was started on device %s" : "بدأ المسح عن بُعدٍ للجهاز %s",
"Remote wipe finished" : "إكتمل المسح عن بُعدٍ",
"The remote wipe on %s has finished" : "إكتمل المسح عن بُعدٍ لـ %s ",
"Authentication" : "المصادقة",
"Unknown filetype" : "نوع الملف غير معروف",
"Invalid image" : "الصورة غير صالحة",
"Avatar image is not square" : "الصورة الرمزية ليست على شكل مربّع",
"Files" : "الملفات",
"View profile" : "عرض الملف الشخصي",
"Local time: %s" : "الوقت المحلّي: %s",
"today" : "اليوم",
"tomorrow" : "غدًا",
"yesterday" : "يوم أمس",
"_in %n day_::_in %n days_" : ["في %nأيام","في %nيوم","في %nأيام","في %nأيام","في %n أيام","في %nأيام"],
"_%n day ago_::_%n days ago_" : ["قبل ساعات","قبل يوم","قبل يومين","قبل %n يوماً","قبل %n يوماً","قبل %n يوماً"],
"next month" : "الشهر القادم",
"last month" : "الشهر الماضي",
"_in %n month_::_in %n months_" : ["في %nشهور","في %nشهر","في %nشهور","في %nشهور","في %nشهور","في %nشهور"],
"_%n month ago_::_%n months ago_" : ["قبل عدة أيام","قبل شهر","قبل شهرين","قبل %n شهراً","قبل %n شهراً","قبل %n شهراً"],
"next year" : "العام القادم",
"last year" : "السنةالماضية",
"_in %n year_::_in %n years_" : ["في %n أعوام","في %nعام","في %nأعوام","في %nأعوام","في %n أعوام","في %nأعوام"],
"_%n year ago_::_%n years ago_" : ["%n منذ سنوات","%n منذ سنة","%n منذ سنوات","%n منذ سنوات","%n منذ سنوات","%n منذ سنوات"],
"_in %n hour_::_in %n hours_" : ["في %nساعات","في %nساعة","في %nساعات","في %nساعات","في %n ساعات","في %n ساعات"],
"_%n hour ago_::_%n hours ago_" : ["%n منذ ساعات","%n منذ ساعة","%n منذ ساعات","%n منذ ساعات","%n منذ ساعات","%n منذ ساعات"],
"_in %n minute_::_in %n minutes_" : ["في %nدقائق","في %nدقيقة","في %nدقائق","في %nدقائق","في %nدقائق","في %nدقائق"],
"_%n minute ago_::_%n minutes ago_" : ["%n منذ دقائق","%n منذ دقيقة","%n منذ دقائق","%n منذ دقائق","%n منذ دقائق","%n منذ دقائق"],
"in a few seconds" : "خلال بضع ثواني",
"seconds ago" : "منذ ثواني",
"Empty file" : "ملفٌ فارغٌ",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "الوحدة module ذات الرقم ID ـ : %s غير موجودة. رجاءً، فعّلها في إعدادات التطبيقات لديك، أو اتصل بمشرف نظامك.",
"File already exists" : "الملف موجود مسبقاً",
"Invalid path" : "مسارٌ غير صحيحٍ",
"Failed to create file from template" : "تعذّر إنشاء ملفٍ من قالبٍ",
"Templates" : "القوالب",
"File name is a reserved word" : "اسم الملف كلمة محجوزة",
"File name contains at least one invalid character" : "اسم الملف به ، على الأقل ، حرف غير صالح",
"File name is too long" : "اسم الملف طويل جداً",
"Dot files are not allowed" : "الملفات النقطية (ملفات ذات أسماء تبدأ بنقطة) غير مسموح بها",
"Empty filename is not allowed" : "لا يسمح بأسماء فارغة للملفات",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "لا يمكن تثبيت التطبيق \"%s\" لأنه لا يمكن قراءة ملف معلومات التطبيق.",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "لا يمكن تثبيت التطبيق \"%s\" لأنه غير متوافق مع هذا الإصدار من الخادم.",
"__language_name__" : "اللغة العربية",
"This is an automatically sent email, please do not reply." : "هذه رسالة آلية، يرجى عدم الرد عليها.",
"Help" : "المساعدة",
"Appearance and accessibility" : "المظهر appearance، و سهولة الوصول accessibility",
"Apps" : "التطبيقات",
"Personal settings" : "إعدادات شخصيّة",
"Administration settings" : "إعدادات الإدارة",
"Settings" : "الإعدادات",
"Log out" : "الخروج",
"Users" : "المستخدمين",
"Email" : "البريد الإلكتروني",
"Mail %s" : "بريد %s",
"Fediverse" : "الشبكة اللامركزية للتواصل الاجتماعي \"فيديفيرس\" Fediverse",
"View %s on the fediverse" : "عرض %s على الفيديفيرس Fediverse",
"Phone" : "الهاتف",
"Call %s" : "إتصل بـ%s",
"Twitter" : "تويتر",
"View %s on Twitter" : "عرض %s على تويتر Twitter",
"Website" : "موقع الويب",
"Visit %s" : "زيارة %s",
"Address" : "العنوان",
"Profile picture" : "صورة الملف الشخصي",
"About" : "عن",
"Display name" : "الاسم المعروض",
"Headline" : "عنوان ",
"Organisation" : "مؤسسة",
"Role" : "الدور",
"Unknown account" : "حساب غير معروف",
"Additional settings" : "الإعدادات المتقدمة",
"Enter the database Login and name for %s" : "أدخِل حيثيات الدخول لقاعدة البيانات %s",
"Enter the database Login for %s" : "أدخِل حيثيات دخول قاعدة البيانات لـ %s",
"Enter the database name for %s" : "أدخل اسم قاعدة البيانات لـ%s",
"You cannot use dots in the database name %s" : "لا يمكنك استخدام النقاط dots في اسم قاعدة البيانات %s",
"MySQL Login and/or password not valid" : "حيثيات دخول او كلمة مرور MySQL غير صحيحة",
"You need to enter details of an existing account." : "يلزمك إدخال تفاصيل حسابك الحالي.",
"Oracle connection could not be established" : "لم تنجح محاولة اتصال Oracle",
"Oracle Login and/or password not valid" : "حيثيات دخول او كلمة مرور Oracle غير صحيحة",
"PostgreSQL Login and/or password not valid" : "حيثيات دخول او كلمة مرورPostgreSQL غير صحيحة",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "نظام ماك الإصدار X غير مدعوم و %s لن يعمل بشكل صحيح على هذه المنصة. استخدمه على مسؤوليتك!",
"For the best results, please consider using a GNU/Linux server instead." : "فضلاً ضع في الاعتبار استخدام نظام GNU/Linux بدل الأنظمة الأخرى للحصول على أفضل النتائج.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "يبدو أن كائن %s يعمل على بيئة PHP 32-Bit وكذلك تم تكوين open_basedir في ملف php.ini. يؤدي ذلك إلى مشاكل مع الملفات التي يزيد حجمها عن 4 غيغابايت ولا يُنصح بذلك بشدة.",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "فضلاً إحذف إعداد open_basedir من ملف php.ini لديك أو حوّل إلى PHP إصدار 64 بت.",
"Set an admin Login." : "تعيين حيثيات دخول المشرف.",
"Set an admin password." : "تعيين كلمة مرور للمدير",
"Cannot create or write into the data directory %s" : "لا يمكن الإنشاء أو الكتابة في data directory دليل البيانات %s",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "يجب أن تقوم الواجهة الخلفية للمشاركة (Sharing backend) %s بتطبيق الواجهة OCP\\Share_Backend",
"Sharing backend %s not found" : "لم يتم العثور على الواجهة الخلفية (Sharing backend) %s",
"Sharing backend for %s not found" : "مشاركة الخلفية لـ %s غير موجود",
"%1$s shared »%2$s« with you and wants to add:" : "%1$s شارك »%2$s« معك و يرغب في إضافة:",
"%1$s shared »%2$s« with you and wants to add" : "%1$s شارك »%2$s« معك و يرغب في إضافة",
"»%s« added a note to a file shared with you" : "»%s« أضاف ملاحظة لملفٍ سلفت مشاركته معك",
"Open »%s«" : "فتح »%s«",
"%1$s via %2$s" : "%1$s عبر %2$s",
"You are not allowed to share %s" : "أنت غير مسموح لك أن تشارك %s",
"Cannot increase permissions of %s" : "لا يمكن زيادة أذونات %s",
"Files cannot be shared with delete permissions" : "لا يمكن مشاركة ملفات بأذونات حذفٍ",
"Files cannot be shared with create permissions" : "لا يمكن مشاركة ملفات بأذونات إنشاء",
"Expiration date is in the past" : "تاريخ انتهاء الصلاحية غير صالح. التاريخ المحدد في الماضي!",
"_Cannot set expiration date more than %n day in the future_::_Cannot set expiration date more than %n days in the future_" : ["لا يمكن تعيين تاريخ انتهاء الصلاحية لأكثر من %n أيام في المستقبل","لا يمكن تعيين تاريخ انتهاء الصلاحية لأكثر من %n يوم في المستقبل","لا يمكن تعيين تاريخ انتهاء الصلاحية لأكثر %n من أيام في المستقبل","لا يمكن تعيين تاريخ انتهاء الصلاحية لأكثر %n من أيام في المستقبل","لا يمكن تعيين تاريخ انتهاء الصلاحية لأكثر %n من أيام في المستقبل","لا يمكن تعيين تاريخ انتهاء الصلاحية لأكثر %n من أيام في المستقبل"],
"Sharing is only allowed with group members" : "المشاركة مسموحة فقط مع أعضاء المجموعة",
"Sharing %s failed, because this item is already shared with the account %s" : "فشلت مشاركة %s؛ لأن هذا العنصر سبقت مشاركته مع الحساب %s",
"%1$s shared »%2$s« with you" : "%1$s شارك »%2$s« معك",
"%1$s shared »%2$s« with you." : "%1$s شَارَكَ »%2$s« معك.",
"Click the button below to open it." : "أنقر على الزر أدناه لفتحه.",
"The requested share does not exist anymore" : "المشاركة المطلوبة لم تعد موجودةً",
"The requested share comes from a disabled user" : "المستخدم الذي طلب المشاركة تمّ تجميد حسابه بعد طلبه للمشاركة",
"The user was not created because the user limit has been reached. Check your notifications to learn more." : "لم يتم إنشاء المستخدم بسبب وصول عدد المستخدمين إلى الحد الأقصى المسموح به. رجاءً، راجع إشعاراتك للمزيد من المعلومات.",
"Could not find category \"%s\"" : "تعذر العثور على المجلد \"%s\"",
"Sunday" : "الأحد",
"Monday" : "الإثنين",
"Tuesday" : "الثلاثاء",
"Wednesday" : "الأربعاء",
"Thursday" : "الخميس",
"Friday" : "الجمعة",
"Saturday" : "السبت",
"Sun." : "أح.",
"Mon." : "إث.",
"Tue." : "ثلا.",
"Wed." : "أر.",
"Thu." : "خم.",
"Fri." : "جم.",
"Sat." : "سب.",
"Su" : "أح",
"Mo" : "إث",
"Tu" : "ثلا",
"We" : "أر",
"Th" : "خم",
"Fr" : "جم",
"Sa" : "سب",
"January" : "جانفي",
"February" : "فيفري",
"March" : "مارس",
"April" : "أفريل",
"May" : "ماي",
"June" : "جوان",
"July" : "جويلية",
"August" : "أوت",
"September" : "سبتمبر",
"October" : "أكتوبر",
"November" : "نوفمبر",
"December" : "ديسمبر",
"Jan." : "جان.",
"Feb." : "فيف.",
"Mar." : "مار.",
"Apr." : "أفر.",
"May." : "ماي",
"Jun." : "جوا.",
"Jul." : "جوي.",
"Aug." : "أوت",
"Sep." : "سبت.",
"Oct." : "أكت.",
"Nov." : "نوف.",
"Dec." : "ديس.",
"A valid password must be provided" : "يجب ادخال كلمة مرور صحيحة",
"The Login is already being used" : "تسجيل الدخول قيد الاستعمال بالفعل",
"Could not create account" : "تعذّر إنشاء الحساب",
"Only the following characters are allowed in an Login: \"a-z\", \"A-Z\", \"0-9\", spaces and \"_.@-'\"" : "الأحرف التالية فقط مسموح باستعمالها في حيثيات الدخول: \"a-z\" و , و \"A-Z\"، و \"0-9\", و المسافة، و \"_.@-'\"",
"A valid Login must be provided" : "يجب إعطاء حيثيات الدخول الصحيحة",
"Login contains whitespace at the beginning or at the end" : "حيثيات الدخول تحوي مسافات بيضاء في بدايتها أو في نهايتها",
"Login must not consist of dots only" : "يجب ألّا تكون حيثيات الدخول محتوية فقط على نُقَطٍ",
"Login is invalid because files already exist for this user" : "الدخول غير صحيح لأن هنالك ملفات موجودة مسبقاً لهذا المستخدِم",
"Account disabled" : "الحساب مُعطَّل",
"Login canceled by app" : "تم إلغاء الدخول مِن طرف التطبيق",
"App \"%1$s\" cannot be installed because the following dependencies are not fulfilled: %2$s" : "التطبيق \"%1$s\" لا يمكن تنصيبه بسبب أن التبعيّات التالية لم تتحقق: %2$s",
"a safe home for all your data" : "المكان الآمن لجميع بياناتك",
"File is currently busy, please try again later" : "إنّ الملف مشغول الآمن، يرجى إعادة المحاولة لاحقًا",
"Cannot download file" : "لا يمكن تنزيل الملف",
"Application is not enabled" : "التطبيق غير مفعّل",
"Authentication error" : "لم يتم التأكد من الشخصية بنجاح",
"Token expired. Please reload page." : "انتهت صلاحية الكلمة , يرجى اعادة تحميل الصفحة",
"No database drivers (sqlite, mysql, or postgresql) installed." : "لا توجد برامج تشغيل لقاعدة البيانات (sqlite أو mysql أو postgresql) مثبتة.",
"Cannot write into \"config\" directory." : "تعذّرت الكتابة في الدليل 'config\".",
"This can usually be fixed by giving the web server write access to the config directory. See %s" : "يمكن إصلاح هذا عادةً بمنح خادوم الوب صلاحية الوصول إلى الدليل \"config\". للمزيد، أنظر: %s",
"Or, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it. See %s" : "و إذا كنت تُفضّل بقاء الملف \"config.php\" للقراءة فقط، عيّن الخيار \"config_is_read_only\". أنظر: %s",
"Cannot write into \"apps\" directory." : "لا يمكن الكتابة في الدليل \"apps\".",
"This can usually be fixed by giving the web server write access to the apps directory or disabling the App Store in the config file." : "يمكن إصلاح ذلك عادةً عن طريق منح خادم الويب حق الكتابة في دليل التطبيقات apps dicrectory أو تعطيل متجر التطبيقات App store في الملف config.",
"Cannot create \"data\" directory." : "لا يمكن إنشاء دليل data directory.",
"This can usually be fixed by giving the web server write access to the root directory. See %s" : "يمكن إصلاح ذلك عادةً عن طريق منح خادم الويب حق الكتابة في الدليل الجذري root directory. أنطر:%s",
"Permissions can usually be fixed by giving the web server write access to the root directory. See %s." : "الأذونات يمكن إصلاحها عادةً عن طريق منح خادم الويب حق الكتابة في الدليل الجذري root directory. أنظر:%s.",
"Your data directory is not writable." : "دليل البيانات data directory لا يمكن الكتابة فيه.",
"Setting locale to %s failed." : "تعذّر تعيين إعدادت اللغة و المَحلّيّات locale إلى %s.",
"Please install one of these locales on your system and restart your web server." : "الرجاء تثبيت إحدى هذه المناطق على نظامك وإعادة تشغيل خادوم الويب الخاص بك.",
"PHP module %s not installed." : "وحدة PHP %s غير مثبتة.",
"Please ask your server administrator to install the module." : "يرجى مطالبة مسؤول الخادم بتثبيت الوحدة.",
"PHP setting \"%s\" is not set to \"%s\"." : "إعداد PHP \"%s\" لم يتم تعيينه إلى \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "تضبيط الإعدادات في ملف php.ini سوف يُمكّن نيكست كلاود من العمل مجدداً",
"<code>mbstring.func_overload</code> is set to <code>%s</code> instead of the expected value <code>0</code>." : "<code>mbstring.func_overload</code> تمّ تعيينه إلى <code>%s</code> بدلاً عن القيمة المتوقعة <code>0</code>.",
"To fix this issue set <code>mbstring.func_overload</code> to <code>0</code> in your php.ini." : "لإصلاح هذا الخطأ، قم بتعيين<code>mbstring.func_overload</code> إلى <code>0</code> في php.ini.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "يبدو أنه تم إعداد PHP لتجريد كتل المستندات المضمنة. سيؤدي ذلك إلى جعل العديد من التطبيقات الأساسية غير قابلة للوصول.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "ربما يكون السبب في ذلك هو ذاكرة التخزين المؤقت/المسرع مثل Zend OPcache أو eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "تم تثبيت وحدات PHP ، لكنها لا تزال مدرجة على أنها وحدات مفقودة؟",
"Please ask your server administrator to restart the web server." : "يرجى مطالبة مسؤول الخادم بإعادة تشغيل خادم الويب.",
"The required %s config variable is not configured in the config.php file." : "مُتغيّر التهيئة %s المطلوب لم تتم تهيئته في الملف config.php.",
"Please ask your server administrator to check the Nextcloud configuration." : "رجاءً، أطلب من مشرف نظامك مراجعة تهيئة نكست كلاود Nextcloud configuration.",
"Your data directory is readable by other people." : "دليل بياناتك مسموحٌ بقراءته من قِبَل أشخاص آخرين.",
"Please change the permissions to 0770 so that the directory cannot be listed by other people." : "قُم رجاءً بتغيير الأذونات إلى 0770 حتى لا يتسنّى لأشخاص آخرين استعراض الدليل.",
"Your data directory must be an absolute path." : "مسار دليل بياناتك data directory يجب أن يكون مساراً مُطلقاً absolute path.",
"Check the value of \"datadirectory\" in your configuration." : "راجع قيمة \"datadirectory\" في تهيئتك.",
"Your data directory is invalid." : "دليل بياناتك data directory غير صحيح.",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "تأكد من وجود ملفٍ باسم \".ocdata\" في جذر دليل البيانات data directory.",
"Action \"%s\" not supported or implemented." : "الإجراء \"%s\" غيرُ مدعومٍ أو غيرً مُطبّقٍ.",
"Authentication failed, wrong token or provider ID given" : "فشلت المصادقة بسبب خطأ في الرمز token أو في رقم المُزوّد provider ID المُعطى.",
"Parameters missing in order to complete the request. Missing Parameters: \"%s\"" : "بارامترات لازمة لإكمال الطلب مفقودةٌ. و البارامترات هي: \"%s\"",
"ID \"%1$s\" already used by cloud federation provider \"%2$s\"" : " المُعّرف \"%1$s\" مٌستخدمٌ سلفاُ من مُزوّد اتحاد سحابي cloud fereration provider \"%2$s\"",
"Cloud Federation Provider with ID: \"%s\" does not exist." : "لا يوجد مُزوّد اتحاد سحابي Cloud Federation Provider بهذا الاسم: \"%s\" .",
"Could not obtain lock type %d on \"%s\"." : "تعذر الحصول على نوع القفل%d على \"%s\".",
"Storage unauthorized. %s" : "التخزين غير مصرح به.%s",
"Storage incomplete configuration. %s" : "تكوين التخزين غير مكتمل. %s",
"Storage connection error. %s" : "خطأ في اتصال التخزين. %s ",
"Storage is temporarily not available" : "وحدة التخزين غير متوفرة",
"Storage connection timeout. %s" : "انتهت مهلة الاتصال بالتخزين. %s",
"Free prompt" : "مَحَثْ prompt مجاني",
"Runs an arbitrary prompt through the language model." : "يقوم بتشغيل مَحَث عشوائي arbitrary prompt من خلال نموذج اللغة language model.",
"Generate headline" : "توليد العنوان",
"Generates a possible headline for a text." : "يقوم بتوليد عنوان مناسب للنص.",
"Summarize" : "تلخيص",
"Summarizes text by reducing its length without losing key information." : "يُلَخِّص النص بتقليل طوله دون فقدان المعنى.",
"Extract topics" : "إستخلاص الموضوعات",
"Extracts topics from a text and outputs them separated by commas." : "يستخلص المواضيع من النص و إخراجها مفصولة بفواصل.",
"The files of the app %1$s were not replaced correctly. Make sure it is a version compatible with the server." : "ملفات التطبيق %1$s لم يتم استبدالها مؤخّراً. تأكد من تطابق إصدارها مع الخادوم.",
"404" : "404",
"Logged in user must be an admin, a sub admin or gotten special right to access this setting" : "المستخدم الداخل يجب أن يكون مُشرفاً admin، أو مُشرفاً فرعيّاً sub admin، أو يحمل صلاحياتٍ خاصّةٍ للوصول إلى هذه الإعدادات.",
"Logged in user must be an admin or sub admin" : "المستخدم الداخل يجب أن يكون مُشرفاً admin، أو مُشرفاً فرعيّاً sub admin.",
"Logged in user must be an admin" : "المستخدم الداخل يجب أن يكون مُشرفاً admin.",
"Full name" : "الاسم الكامل",
"Unknown user" : "المستخدم غير معروف",
"Enter the database username and name for %s" : "أدخل اسم المستخدم لقاعدة البيانات و اسم %s",
"Enter the database username for %s" : "أدخل اسم المستخدم لقاعدة البيانات لـ %s",
"MySQL username and/or password not valid" : "اسم المستخدم لقاعدة البيانات MySQL و/أو كلمة المرور غير صحيحة",
"Oracle username and/or password not valid" : "اسم المستخدم و/أو كلمة المرور لنظام Oracle غير صحيح",
"PostgreSQL username and/or password not valid" : "اسم المستخدم / أو كلمة المرور الخاصة بـPostgreSQL غير صحيحة",
"Set an admin username." : "اعداد اسم مستخدم للمدير",
"Sharing %s failed, because this item is already shared with user %s" : "المشاركة %sلم تتم لأن هذا العنصر سبقت مشاركته سلفاً مع المستخدم %s",
"The username is already being used" : "اسم المستخدم قيد الاستخدام بالفعل",
"Could not create user" : "لا يمكن إنشاء المستخدم",
"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", spaces and \"_.@-'\"" : "الحروف التالية فقط مسموحٌ بها في اسم المستخدِم: \"a-z\"و \"A-Z\"و \"0-9\" و الفراغ و \"_.@-'\"",
"A valid username must be provided" : "يجب ادخال اسم مستخدم صحيح",
"Username contains whitespace at the beginning or at the end" : "إنّ إسم المستخدم يحتوي على مسافة بيضاء سواءا في البداية أو النهاية",
"Username must not consist of dots only" : "اسم المستخدم يجب ألاّ يتكون من نقاطٍ dots فقط",
"Username is invalid because files already exist for this user" : "اسم المستخدم غير صحيحٍ لأن هنالك ملفات موجودة سلفاً لهذا المستخدم",
"User disabled" : "المستخدم معطّل",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "نحتاج النسخة 2.7.0 من libxml2 على الأقل. النسخة المتوافرة حالياً هي %s",
"To fix this issue update your libxml2 version and restart your web server." : "لإصلاح هذه المشكلة، قم بتحديث إصدار libxml2 الخاص بك وأعد تشغيل خادم الويب.",
"PostgreSQL >= 9 required." : "PostgreSQL >= 9 مطلوبة.",
"Please upgrade your database version." : "رجاءً، قم بترقية إصدار قاعدة بياناتك.",
"Your data directory is readable by other users." : "دليل بياناتك data directory يُمكن قراءته من مستخدمين آخرين.",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "الرجاء تغيير الصلاحيات إلى 0770 حتى لا يتمكن المستخدمون الآخرون من عرض محتويات المجلد."
},"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;"
}
+152
View File
@@ -0,0 +1,152 @@
OC.L10N.register(
"lib",
{
"Cannot write into \"config\" directory!" : "¡Nun se pue escribir nel direutoriu «config»!",
"This can usually be fixed by giving the web server write access to the config directory." : "Normalmente, esto pue solucionase dando l'accesu d'escritura al sirvidor web nel direutoriu de configuración.",
"Application %1$s is not present or has a non-compatible version with this server. Please check the apps directory." : "L'aplicación «%1$s» nun ta presente o tien una versión incompatible con esti sirvidor. Revisa'l direutoriu de les aplicaciones.",
"Sample configuration detected" : "Configuración d'exemplu detectada",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Detectóse que se copió la configuración d'exemplu. Esto pue estropiar la to instalación y nun ta sofitao. Llei la documentación enantes de facer cambeos nel ficheru config.php",
"The page could not be found on the server." : "Nun se pudo atopar la páxina nel sirvidor.",
"Email verification" : "Verificación per corréu electrónicu",
"Click the following button to confirm your email." : "Calca nel botón siguiente pa confirmar la to direición de corréu electrónicu.",
"Click the following link to confirm your email." : "Calca nel enllaz siguiente pa confirmar la to direición de corréu electrónicu.",
"Other activities" : "Otres actividaes",
"%1$s and %2$s" : "%1$s y %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s y %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s y %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s y %5$s",
"Education Edition" : "Edición educativa",
"The library %s is not available." : "La biblioteca «%s» nun ta disponible.",
"Authentication" : "Autenticación",
"Files" : "Ficheros",
"View profile" : "Ver el perfil",
"today" : "güei",
"tomorrow" : "mañana",
"yesterday" : "ayeri",
"next month" : "el mes que vien",
"last month" : "el mes pasáu",
"_in %n month_::_in %n months_" : ["en %n mes","en %n meses"],
"_%n month ago_::_%n months ago_" : ["hai %n mes","hai %n meses"],
"next year" : "l'añu pasáu",
"last year" : "l'añu que vien",
"_in %n year_::_in %n years_" : ["en %n añu","en %n años"],
"_%n year ago_::_%n years ago_" : ["hai %n añu","hai %n años"],
"_in %n hour_::_in %n hours_" : ["en %n hora","en %n hores"],
"_%n hour ago_::_%n hours ago_" : ["hai %n hora","hai %n hores"],
"_in %n minute_::_in %n minutes_" : ["en %n minutu","en %n minutos"],
"_%n minute ago_::_%n minutes ago_" : ["hai %n minutu","hai %n minutos"],
"in a few seconds" : "en dellos segundos",
"seconds ago" : "hai segundos",
"Empty file" : "Ficheru baleru",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "El módulu cola ID %s nun esiste. Actívalu na configuración de les aplicaciones o ponte en contautu cola alminsitración.",
"File already exists" : "El ficheru yá esiste",
"Invalid path" : "El camín ye inválidu",
"Failed to create file from template" : "Nun se pudo crear el ficheru de la plantía",
"Templates" : "Plantíes",
"File name is a reserved word" : "El nome de ficheru ye una pallabra acutada",
"File name contains at least one invalid character" : "El nome del ficheru contién polo menos un caráuter inváldu",
"File name is too long" : "El nome del ficheru ye mui llongu",
"Dot files are not allowed" : "Nun se permiten los ficheros que comiencen per un puntu",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "Nun se pue instalar l'aplicación «%s» porque nun se pue lleer el ficheru appinfo",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "Nun se pue instalar l'aplicación «%s» porque nun ye compatible con esta versión del sirvidor.",
"__language_name__" : "Asturianu",
"Help" : "Ayuda",
"Appearance and accessibility" : "Aspeutu ya accesibilidá",
"Apps" : "Aplicaciones",
"Personal settings" : "Configuración personal",
"Settings" : "Configuración",
"Log out" : "Zarrar la sesión",
"Fediverse" : "Fediversu",
"Twitter" : "Twitter",
"Website" : "Sitiu web",
"Profile picture" : "Semeya del perfil",
"Display name" : "Nome visible",
"Organisation" : "Organización",
"Role" : "Rol",
"Unknown account" : "Cuenta desconocida",
"Additional settings" : "Configuración adicional",
"%1$s via %2$s" : "%1$s per %2$s",
"You are not allowed to share %s" : "Nun tienes permisu pa compartir «%s»",
"Files cannot be shared with create permissions" : "Los ficheros nun se pue compartir colos permisos de creación",
"Expiration date is in the past" : "La data de caducidá ta nel pasáu",
"_Cannot set expiration date more than %n day in the future_::_Cannot set expiration date more than %n days in the future_" : ["Nun se pue afitar una data de caducidá de más de %n día nel futuru","Nun se pue afitar una data de caducidá de más de %n díes nel futuru"],
"%1$s shared »%2$s« with you." : "%1$s compartió «%2$s» contigo.",
"Click the button below to open it." : "Calca nel botón p'abrilo.",
"Sunday" : "Domingu",
"Monday" : "Llunes",
"Tuesday" : "Martes",
"Wednesday" : "Miércoles",
"Thursday" : "Xueves",
"Friday" : "Vienres",
"Saturday" : "Sábadu",
"Sun." : "Dom.",
"Mon." : "Llu.",
"Tue." : "Mar.",
"Wed." : "Mié.",
"Thu." : "Xue.",
"Fri." : "Vie.",
"Sat." : "Sáb.",
"Su" : "Do",
"Mo" : "Ll",
"Tu" : "Ma",
"We" : "Mi",
"Th" : "Xu",
"Fr" : "Vi",
"Sa" : "Sá",
"January" : "Xineru",
"February" : "Febreru",
"March" : "Marzu",
"April" : "Abril",
"May" : "Mayu",
"June" : "Xunu",
"July" : "Xunetu",
"August" : "Agostu",
"September" : "Setiembre",
"October" : "Ochobre",
"November" : "Payares",
"December" : "Avientu",
"Jan." : "Xin.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Abr.",
"May." : "May.",
"Jun." : "Xun.",
"Jul." : "Xnt.",
"Aug." : "Ago.",
"Sep." : "Set.",
"Oct." : "Och.",
"Nov." : "Pay.",
"Dec." : "Avi.",
"A valid password must be provided" : "Ha fornise una contraseña válida",
"a safe home for all your data" : "un llugar seguru pa los datos personales",
"Application is not enabled" : "L'aplicación nun ta activada",
"Your data directory is not writable." : "Nun se pue escribir nel to direutoriu de datos.",
"Please ask your server administrator to install the module." : "Pidi a l'alministración del sirvidor qu'instale'l módulu.",
"Your data directory is invalid." : "El to direutoriu de datos ye inválidu.",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Asegúrate de que'l ficheru llamáu «.ocdata» ta nel raigañu del direutoriu de datos.",
"Action \"%s\" not supported or implemented." : "L'aición «%s» nun ta sofitada o implementada.",
"Authentication failed, wrong token or provider ID given" : "L'autenticación falló, apurriéronse un pase o una ID de fornidor incorreutos",
"Parameters missing in order to complete the request. Missing Parameters: \"%s\"" : "Falten parámetros pa completar la solicitú. Los parámetros que falten: «%s»",
"Storage is temporarily not available" : "L'almacenamientu nun ta disponible temporalmente",
"Summarize" : "Resume",
"Summarizes text by reducing its length without losing key information." : "Resume'l testu amenorgando la so llongura ensin perder la información importante.",
"The files of the app %1$s were not replaced correctly. Make sure it is a version compatible with the server." : "Los ficheros de l'aplicación «%1$s» nun se trocaron correutamente. Asegúrate de que la versión ye compatible col sirvidor.",
"404" : "404",
"Full name" : "Nome completu",
"MySQL username and/or password not valid" : "El nome d'usuariu y/o la contraseña de MySQL son inválidos",
"Oracle username and/or password not valid" : "El nome d'usuariu y/o la contraseña d'Oracle son inválidos",
"PostgreSQL username and/or password not valid" : "El nome d'usuariu y/o la contraseña de PostgreSQL son inválidos",
"The username is already being used" : "El nome d'usuariu yá ta n'usu",
"Could not create user" : "Nun se pudo crear l'usuariu",
"A valid username must be provided" : "Ha fornise un nome d'usuariu válidu",
"Username contains whitespace at the beginning or at the end" : "El nome d'usuariu contién un espaciu nel comienzu o al final",
"Username must not consist of dots only" : "El nome d'usuariu nun ha tar formáu namás por puntos",
"Username is invalid because files already exist for this user" : "El nome d'usuariu ye inválidu porque yá esisten los ficheros pa esti ficheru",
"User disabled" : "L'usuariu ta desactiváu",
"To fix this issue update your libxml2 version and restart your web server." : "Pa iguar esti problema, anueva la versión de libxml2 y reanicia'l sirvidor web.",
"PostgreSQL >= 9 required." : "Ríquese PostgreSQL >= 9.",
"Please upgrade your database version." : "Anueva la versión de la base de datos.",
"Your data directory is readable by other users." : "Los demás usuarios puen lleer el to direutoriu de datos.",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Camuda los permisos a 0770 y, polo tanto, los demás usuarios nun puen llistar el direutoriu."
},
"nplurals=2; plural=(n != 1);");
+150
View File
@@ -0,0 +1,150 @@
{ "translations": {
"Cannot write into \"config\" directory!" : "¡Nun se pue escribir nel direutoriu «config»!",
"This can usually be fixed by giving the web server write access to the config directory." : "Normalmente, esto pue solucionase dando l'accesu d'escritura al sirvidor web nel direutoriu de configuración.",
"Application %1$s is not present or has a non-compatible version with this server. Please check the apps directory." : "L'aplicación «%1$s» nun ta presente o tien una versión incompatible con esti sirvidor. Revisa'l direutoriu de les aplicaciones.",
"Sample configuration detected" : "Configuración d'exemplu detectada",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Detectóse que se copió la configuración d'exemplu. Esto pue estropiar la to instalación y nun ta sofitao. Llei la documentación enantes de facer cambeos nel ficheru config.php",
"The page could not be found on the server." : "Nun se pudo atopar la páxina nel sirvidor.",
"Email verification" : "Verificación per corréu electrónicu",
"Click the following button to confirm your email." : "Calca nel botón siguiente pa confirmar la to direición de corréu electrónicu.",
"Click the following link to confirm your email." : "Calca nel enllaz siguiente pa confirmar la to direición de corréu electrónicu.",
"Other activities" : "Otres actividaes",
"%1$s and %2$s" : "%1$s y %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s y %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s y %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s y %5$s",
"Education Edition" : "Edición educativa",
"The library %s is not available." : "La biblioteca «%s» nun ta disponible.",
"Authentication" : "Autenticación",
"Files" : "Ficheros",
"View profile" : "Ver el perfil",
"today" : "güei",
"tomorrow" : "mañana",
"yesterday" : "ayeri",
"next month" : "el mes que vien",
"last month" : "el mes pasáu",
"_in %n month_::_in %n months_" : ["en %n mes","en %n meses"],
"_%n month ago_::_%n months ago_" : ["hai %n mes","hai %n meses"],
"next year" : "l'añu pasáu",
"last year" : "l'añu que vien",
"_in %n year_::_in %n years_" : ["en %n añu","en %n años"],
"_%n year ago_::_%n years ago_" : ["hai %n añu","hai %n años"],
"_in %n hour_::_in %n hours_" : ["en %n hora","en %n hores"],
"_%n hour ago_::_%n hours ago_" : ["hai %n hora","hai %n hores"],
"_in %n minute_::_in %n minutes_" : ["en %n minutu","en %n minutos"],
"_%n minute ago_::_%n minutes ago_" : ["hai %n minutu","hai %n minutos"],
"in a few seconds" : "en dellos segundos",
"seconds ago" : "hai segundos",
"Empty file" : "Ficheru baleru",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "El módulu cola ID %s nun esiste. Actívalu na configuración de les aplicaciones o ponte en contautu cola alminsitración.",
"File already exists" : "El ficheru yá esiste",
"Invalid path" : "El camín ye inválidu",
"Failed to create file from template" : "Nun se pudo crear el ficheru de la plantía",
"Templates" : "Plantíes",
"File name is a reserved word" : "El nome de ficheru ye una pallabra acutada",
"File name contains at least one invalid character" : "El nome del ficheru contién polo menos un caráuter inváldu",
"File name is too long" : "El nome del ficheru ye mui llongu",
"Dot files are not allowed" : "Nun se permiten los ficheros que comiencen per un puntu",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "Nun se pue instalar l'aplicación «%s» porque nun se pue lleer el ficheru appinfo",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "Nun se pue instalar l'aplicación «%s» porque nun ye compatible con esta versión del sirvidor.",
"__language_name__" : "Asturianu",
"Help" : "Ayuda",
"Appearance and accessibility" : "Aspeutu ya accesibilidá",
"Apps" : "Aplicaciones",
"Personal settings" : "Configuración personal",
"Settings" : "Configuración",
"Log out" : "Zarrar la sesión",
"Fediverse" : "Fediversu",
"Twitter" : "Twitter",
"Website" : "Sitiu web",
"Profile picture" : "Semeya del perfil",
"Display name" : "Nome visible",
"Organisation" : "Organización",
"Role" : "Rol",
"Unknown account" : "Cuenta desconocida",
"Additional settings" : "Configuración adicional",
"%1$s via %2$s" : "%1$s per %2$s",
"You are not allowed to share %s" : "Nun tienes permisu pa compartir «%s»",
"Files cannot be shared with create permissions" : "Los ficheros nun se pue compartir colos permisos de creación",
"Expiration date is in the past" : "La data de caducidá ta nel pasáu",
"_Cannot set expiration date more than %n day in the future_::_Cannot set expiration date more than %n days in the future_" : ["Nun se pue afitar una data de caducidá de más de %n día nel futuru","Nun se pue afitar una data de caducidá de más de %n díes nel futuru"],
"%1$s shared »%2$s« with you." : "%1$s compartió «%2$s» contigo.",
"Click the button below to open it." : "Calca nel botón p'abrilo.",
"Sunday" : "Domingu",
"Monday" : "Llunes",
"Tuesday" : "Martes",
"Wednesday" : "Miércoles",
"Thursday" : "Xueves",
"Friday" : "Vienres",
"Saturday" : "Sábadu",
"Sun." : "Dom.",
"Mon." : "Llu.",
"Tue." : "Mar.",
"Wed." : "Mié.",
"Thu." : "Xue.",
"Fri." : "Vie.",
"Sat." : "Sáb.",
"Su" : "Do",
"Mo" : "Ll",
"Tu" : "Ma",
"We" : "Mi",
"Th" : "Xu",
"Fr" : "Vi",
"Sa" : "Sá",
"January" : "Xineru",
"February" : "Febreru",
"March" : "Marzu",
"April" : "Abril",
"May" : "Mayu",
"June" : "Xunu",
"July" : "Xunetu",
"August" : "Agostu",
"September" : "Setiembre",
"October" : "Ochobre",
"November" : "Payares",
"December" : "Avientu",
"Jan." : "Xin.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Abr.",
"May." : "May.",
"Jun." : "Xun.",
"Jul." : "Xnt.",
"Aug." : "Ago.",
"Sep." : "Set.",
"Oct." : "Och.",
"Nov." : "Pay.",
"Dec." : "Avi.",
"A valid password must be provided" : "Ha fornise una contraseña válida",
"a safe home for all your data" : "un llugar seguru pa los datos personales",
"Application is not enabled" : "L'aplicación nun ta activada",
"Your data directory is not writable." : "Nun se pue escribir nel to direutoriu de datos.",
"Please ask your server administrator to install the module." : "Pidi a l'alministración del sirvidor qu'instale'l módulu.",
"Your data directory is invalid." : "El to direutoriu de datos ye inválidu.",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Asegúrate de que'l ficheru llamáu «.ocdata» ta nel raigañu del direutoriu de datos.",
"Action \"%s\" not supported or implemented." : "L'aición «%s» nun ta sofitada o implementada.",
"Authentication failed, wrong token or provider ID given" : "L'autenticación falló, apurriéronse un pase o una ID de fornidor incorreutos",
"Parameters missing in order to complete the request. Missing Parameters: \"%s\"" : "Falten parámetros pa completar la solicitú. Los parámetros que falten: «%s»",
"Storage is temporarily not available" : "L'almacenamientu nun ta disponible temporalmente",
"Summarize" : "Resume",
"Summarizes text by reducing its length without losing key information." : "Resume'l testu amenorgando la so llongura ensin perder la información importante.",
"The files of the app %1$s were not replaced correctly. Make sure it is a version compatible with the server." : "Los ficheros de l'aplicación «%1$s» nun se trocaron correutamente. Asegúrate de que la versión ye compatible col sirvidor.",
"404" : "404",
"Full name" : "Nome completu",
"MySQL username and/or password not valid" : "El nome d'usuariu y/o la contraseña de MySQL son inválidos",
"Oracle username and/or password not valid" : "El nome d'usuariu y/o la contraseña d'Oracle son inválidos",
"PostgreSQL username and/or password not valid" : "El nome d'usuariu y/o la contraseña de PostgreSQL son inválidos",
"The username is already being used" : "El nome d'usuariu yá ta n'usu",
"Could not create user" : "Nun se pudo crear l'usuariu",
"A valid username must be provided" : "Ha fornise un nome d'usuariu válidu",
"Username contains whitespace at the beginning or at the end" : "El nome d'usuariu contién un espaciu nel comienzu o al final",
"Username must not consist of dots only" : "El nome d'usuariu nun ha tar formáu namás por puntos",
"Username is invalid because files already exist for this user" : "El nome d'usuariu ye inválidu porque yá esisten los ficheros pa esti ficheru",
"User disabled" : "L'usuariu ta desactiváu",
"To fix this issue update your libxml2 version and restart your web server." : "Pa iguar esti problema, anueva la versión de libxml2 y reanicia'l sirvidor web.",
"PostgreSQL >= 9 required." : "Ríquese PostgreSQL >= 9.",
"Please upgrade your database version." : "Anueva la versión de la base de datos.",
"Your data directory is readable by other users." : "Los demás usuarios puen lleer el to direutoriu de datos.",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Camuda los permisos a 0770 y, polo tanto, los demás usuarios nun puen llistar el direutoriu."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}
+76
View File
@@ -0,0 +1,76 @@
OC.L10N.register(
"lib",
{
"Cannot write into \"config\" directory!" : "\"configurasiya\" direktoriyasının daxilində yazmaq mümkün deyil",
"See %s" : "Bax %s",
"Sample configuration detected" : "Konfiqurasiya nüsxəsi təyin edildi",
"Authentication" : "Autentifikasiya",
"Unknown filetype" : "Fayl tipi bəlli deyil.",
"Invalid image" : "Yalnış şəkil",
"Files" : "Fayllar",
"today" : "Bu gün",
"yesterday" : "dünən",
"seconds ago" : "saniyələr öncə",
"__language_name__" : "Azərbaycan dili",
"Help" : "Kömək",
"Apps" : "Tətbiqlər",
"Settings" : "Quraşdırmalar",
"Users" : "İstifadəçilər",
"Email" : "Email",
"Address" : "Ünvan",
"Profile picture" : "Profil şəkli",
"About" : "Haqqında",
"Additional settings" : "Əlavə parametrlər",
"Oracle connection could not be established" : "Oracle qoşulması alınmır",
"Set an admin password." : "İnzibatçı şifrəsini təyin et.",
"You are not allowed to share %s" : "%s-in yayimlanmasına sizə izin verilmir",
"Sunday" : "Bazar",
"Monday" : "Bazar ertəsi",
"Tuesday" : "Çərşənbə axşamı",
"Wednesday" : "Çərşənbə",
"Thursday" : "Cümə axşamı",
"Friday" : "Cümə",
"Saturday" : "Şənbə",
"Sun." : "Baz.",
"Mon." : "Ber.",
"Tue." : "Çax.",
"Wed." : "Çər.",
"Thu." : "Cax.",
"Fri." : "Cüm.",
"Sat." : "Şnb.",
"January" : "Yanvar",
"February" : "Fevral",
"March" : "Mart",
"April" : "Aprel",
"May" : "May",
"June" : "İyun",
"July" : "İyul",
"August" : "Avqust",
"September" : "Sentyabr",
"October" : "Oktyabr",
"November" : "Noyabr.",
"December" : "Dekabr",
"Jan." : "Yan.",
"Feb." : "Fev.",
"Mar." : "Mar.",
"Apr." : "Apr.",
"May." : "May.",
"Jun." : "İyn.",
"Jul." : "İyl.",
"Aug." : "Avq.",
"Sep." : "Sen.",
"Oct." : "Okt.",
"Nov." : "Noy.",
"Dec." : "Dek.",
"A valid password must be provided" : "Düzgün şifrə daxil edilməlidir",
"Application is not enabled" : "Proqram təminatı aktiv edilməyib",
"Authentication error" : "Təyinat metodikası",
"Token expired. Please reload page." : "Token vaxtı bitib. Xahiş olunur səhifəni yenidən yükləyəsiniz.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Bu ola bilər ki, cache/accelerator such tərəfindən cağırılıb hansi ki, Zend OPcache və eAccelerator-da olduğu kimidir.",
"Full name" : "Tam ad",
"Unknown user" : "Istifadəçi tanınmır ",
"Oracle username and/or password not valid" : "Oracle istifadəçi adı və/ya şifrəsi düzgün deyil",
"Set an admin username." : "İnzibatçı istifadəçi adını təyin et.",
"A valid username must be provided" : "Düzgün istifadəçi adı daxil edilməlidir"
},
"nplurals=2; plural=(n != 1);");
+74
View File
@@ -0,0 +1,74 @@
{ "translations": {
"Cannot write into \"config\" directory!" : "\"configurasiya\" direktoriyasının daxilində yazmaq mümkün deyil",
"See %s" : "Bax %s",
"Sample configuration detected" : "Konfiqurasiya nüsxəsi təyin edildi",
"Authentication" : "Autentifikasiya",
"Unknown filetype" : "Fayl tipi bəlli deyil.",
"Invalid image" : "Yalnış şəkil",
"Files" : "Fayllar",
"today" : "Bu gün",
"yesterday" : "dünən",
"seconds ago" : "saniyələr öncə",
"__language_name__" : "Azərbaycan dili",
"Help" : "Kömək",
"Apps" : "Tətbiqlər",
"Settings" : "Quraşdırmalar",
"Users" : "İstifadəçilər",
"Email" : "Email",
"Address" : "Ünvan",
"Profile picture" : "Profil şəkli",
"About" : "Haqqında",
"Additional settings" : "Əlavə parametrlər",
"Oracle connection could not be established" : "Oracle qoşulması alınmır",
"Set an admin password." : "İnzibatçı şifrəsini təyin et.",
"You are not allowed to share %s" : "%s-in yayimlanmasına sizə izin verilmir",
"Sunday" : "Bazar",
"Monday" : "Bazar ertəsi",
"Tuesday" : "Çərşənbə axşamı",
"Wednesday" : "Çərşənbə",
"Thursday" : "Cümə axşamı",
"Friday" : "Cümə",
"Saturday" : "Şənbə",
"Sun." : "Baz.",
"Mon." : "Ber.",
"Tue." : "Çax.",
"Wed." : "Çər.",
"Thu." : "Cax.",
"Fri." : "Cüm.",
"Sat." : "Şnb.",
"January" : "Yanvar",
"February" : "Fevral",
"March" : "Mart",
"April" : "Aprel",
"May" : "May",
"June" : "İyun",
"July" : "İyul",
"August" : "Avqust",
"September" : "Sentyabr",
"October" : "Oktyabr",
"November" : "Noyabr.",
"December" : "Dekabr",
"Jan." : "Yan.",
"Feb." : "Fev.",
"Mar." : "Mar.",
"Apr." : "Apr.",
"May." : "May.",
"Jun." : "İyn.",
"Jul." : "İyl.",
"Aug." : "Avq.",
"Sep." : "Sen.",
"Oct." : "Okt.",
"Nov." : "Noy.",
"Dec." : "Dek.",
"A valid password must be provided" : "Düzgün şifrə daxil edilməlidir",
"Application is not enabled" : "Proqram təminatı aktiv edilməyib",
"Authentication error" : "Təyinat metodikası",
"Token expired. Please reload page." : "Token vaxtı bitib. Xahiş olunur səhifəni yenidən yükləyəsiniz.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Bu ola bilər ki, cache/accelerator such tərəfindən cağırılıb hansi ki, Zend OPcache və eAccelerator-da olduğu kimidir.",
"Full name" : "Tam ad",
"Unknown user" : "Istifadəçi tanınmır ",
"Oracle username and/or password not valid" : "Oracle istifadəçi adı və/ya şifrəsi düzgün deyil",
"Set an admin username." : "İnzibatçı istifadəçi adını təyin et.",
"A valid username must be provided" : "Düzgün istifadəçi adı daxil edilməlidir"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}
+36
View File
@@ -0,0 +1,36 @@
OC.L10N.register(
"lib",
{
"Files" : "Файлы",
"__language_name__" : "Беларуская",
"Help" : "Help",
"Settings" : "Налады",
"Email" : "email",
"Sunday" : "Нядзеля",
"Monday" : "Панядзелак",
"Tuesday" : "Аўторак",
"Wednesday" : "Серада",
"Thursday" : "Чацвер",
"Friday" : "Пятніца",
"Saturday" : "Субота",
"Sun." : "Няд.",
"Mon." : "Пн.",
"Tue." : "Аўт.",
"Wed." : "Ср.",
"Thu." : "Чац.",
"Fri." : "Пт.",
"Sat." : "Сб.",
"January" : "Студзень",
"February" : "Люты",
"March" : "Сакавік",
"April" : "Красавік",
"May" : "Май",
"June" : "Чэрвень",
"July" : "Ліпень",
"August" : "Жнівень",
"September" : "Верасень",
"October" : "Кастрычнік",
"November" : "Лістапад",
"December" : "Снежань"
},
"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);");
+34
View File
@@ -0,0 +1,34 @@
{ "translations": {
"Files" : "Файлы",
"__language_name__" : "Беларуская",
"Help" : "Help",
"Settings" : "Налады",
"Email" : "email",
"Sunday" : "Нядзеля",
"Monday" : "Панядзелак",
"Tuesday" : "Аўторак",
"Wednesday" : "Серада",
"Thursday" : "Чацвер",
"Friday" : "Пятніца",
"Saturday" : "Субота",
"Sun." : "Няд.",
"Mon." : "Пн.",
"Tue." : "Аўт.",
"Wed." : "Ср.",
"Thu." : "Чац.",
"Fri." : "Пт.",
"Sat." : "Сб.",
"January" : "Студзень",
"February" : "Люты",
"March" : "Сакавік",
"April" : "Красавік",
"May" : "Май",
"June" : "Чэрвень",
"July" : "Ліпень",
"August" : "Жнівень",
"September" : "Верасень",
"October" : "Кастрычнік",
"November" : "Лістапад",
"December" : "Снежань"
},"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);"
}
+270
View File
@@ -0,0 +1,270 @@
OC.L10N.register(
"lib",
{
"Cannot write into \"config\" directory!" : "Неуспешен опит за запис в \"config\" папката!",
"This can usually be fixed by giving the web server write access to the config directory." : "Това обикновено може да бъде оправено като, се даде достъп на уеб сървъра да записва в config директорията.",
"But, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it." : "Но ако предпочитате да запазите файла config.php само за четене, задайте опцията \"config_is_read_only\" на true/вярно/ в него.",
"See %s" : "Вижте %s",
"Sample configuration detected" : "Открита е примерна конфигурация",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Усетено беше че примерната конфигурация е копирана. Това може да развли инсталацията ти и не се поддържа. Моля, прочети документацията преди да правиш промени на config.php",
"The page could not be found on the server." : "Страницата не е намерена на сървъра.",
"%s email verification" : "%s имейл потвърждение",
"Email verification" : "Имейл потвърждение",
"Click the following button to confirm your email." : "Щракнете върху следния бутон, за да потвърдите имейла си.",
"Click the following link to confirm your email." : "Щракнете върху следната връзка, за да потвърдите имейла си.",
"Confirm your email" : "Потвърдете имейла си",
"Other activities" : "Други активности ",
"%1$s and %2$s" : "%1$s и %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s и %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s и %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s и %5$s",
"Education Edition" : "Образователно издание",
"Enterprise bundle" : "Професионален пакет",
"Groupware bundle" : "Софтуерен групов пакет",
"Hub bundle" : "Хъб пакет",
"Social sharing bundle" : "Пакет за социално споделяне",
"PHP %s or higher is required." : "Изисква се PHP %s или по-нова.",
"PHP with a version lower than %s is required." : "Необходим е PHP с версия по-ниска от %s.",
"%sbit or higher PHP required." : "Нужно е %s бита или по-висок PHP.",
"The following architectures are supported: %s" : "Поддържани са следните архитектури: %s",
"The following databases are supported: %s" : "Поддържани са следните бази данни: %s",
"The command line tool %s could not be found" : "Конзолната команда %s не може да бъде намерена",
"The library %s is not available." : "Библиотеката %s не е налична",
"Library %1$s with a version higher than %2$s is required - available version %3$s." : "Нужна е библиотека %1$s с версия, по-висока от %2$s – налична версия %3$s.",
"Library %1$s with a version lower than %2$s is required - available version %3$s." : "Нужна е библиотека %1$s с версия, по-ниска от %2$s – налична версия %3$s.",
"The following platforms are supported: %s" : "Поддържани са следните платформи: %s",
"Server version %s or higher is required." : "Нужна е версия на сървъра %s или по-нова.",
"Server version %s or lower is required." : "Нужна е версия на сървъра %s или по-ниска.",
"Wiping of device %s has started" : "Започна изтриването на устройството %s",
"Wiping of device »%s« has started" : "»%s« Започна изтриването на устройството ",
"»%s« started remote wipe" : "»%s« започна отдалечено изтриване",
"Device or application »%s« has started the remote wipe process. You will receive another email once the process has finished" : "Устройство или приложение »%s« стартира процеса на отдалечено изтриване. Ще получите друг имейл, след като процесът приключи ",
"Wiping of device %s has finished" : "Изтриването на устройството %s завърши",
"Wiping of device »%s« has finished" : "Изтриването на устройството »%s« завърши",
"»%s« finished remote wipe" : "»%s« завърши отдалеченото изтриване",
"Device or application »%s« has finished the remote wipe process." : "Устройство или приложение »%s« завърши процеса на отдалечено изтриване. ",
"Remote wipe started" : "Започна отдалечено изтриване",
"A remote wipe was started on device %s" : "Започна отдалечено изтриване на устройство %s",
"Remote wipe finished" : "Отдалеченото изтриване завърши",
"The remote wipe on %s has finished" : "Завърши %s на отдалеченото изтриване",
"Authentication" : "Удостоверяване",
"Unknown filetype" : "Непознат тип файл",
"Invalid image" : "Невалидно изображение.",
"Avatar image is not square" : "Изображението на аватара не е квадратно",
"Files" : "Файлове",
"View profile" : "Преглед на профил",
"Local time: %s" : "Местно време: %s",
"today" : "днес",
"tomorrow" : "утре",
"yesterday" : "вчера",
"_in %n day_::_in %n days_" : ["след %n дни","след %n дни"],
"_%n day ago_::_%n days ago_" : ["преди %n ден","преди %n дни"],
"next month" : "следващия месец",
"last month" : "миналия месец",
"_in %n month_::_in %n months_" : ["след %n месеца","след %n месеца"],
"_%n month ago_::_%n months ago_" : ["преди %n месец","преди %n месеца"],
"next year" : "следващата година",
"last year" : "миналата година",
"_in %n year_::_in %n years_" : ["след %n години","след %n "],
"_%n year ago_::_%n years ago_" : ["преди %n година","преди %n години"],
"_in %n hour_::_in %n hours_" : ["след %n часа","след "],
"_%n hour ago_::_%n hours ago_" : ["преди %n час","преди %n часа"],
"_in %n minute_::_in %n minutes_" : ["след %n минути","след "],
"_%n minute ago_::_%n minutes ago_" : ["преди %n минута","преди %n минути"],
"in a few seconds" : "след няколко секунди",
"seconds ago" : "преди секунди",
"Empty file" : "Празен файл",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "Модул с ID: %s не съществува. Моля, активирайте го в настройките на приложенията си или се свържете с администратора си.",
"File already exists" : "Файлът вече съществува",
"Invalid path" : "Невалиден път",
"Failed to create file from template" : "Неуспешно създаване на файл от шаблон",
"Templates" : "Шаблони",
"File name is a reserved word" : "Името на файла е запазена дума",
"File name contains at least one invalid character" : "Името на файла съдържа поне един невалиден символ",
"File name is too long" : "Името на файла е твърде дълго",
"Dot files are not allowed" : "Файлове с точки не са разрешени",
"Empty filename is not allowed" : "Празно име на файл не е разрешено.",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "Приложението „%s“ не може да бъде инсталирано, защото appinfo/информация за приложението/ файлът не може да бъде прочетен.",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "Приложението \"%s\" не може да бъде инсталирано, защото не е съвместимо с тази версия на сървъра.",
"__language_name__" : "Български",
"This is an automatically sent email, please do not reply." : "Имейлът е генериран автоматично, моля не отговаряйте.",
"Help" : "Помощ",
"Appearance and accessibility" : "Изглед и достъпност",
"Apps" : "Приложения",
"Personal settings" : "Лични настройки",
"Administration settings" : "Административни настройки",
"Settings" : "Настройки",
"Log out" : "Отписване",
"Users" : "Потребители",
"Email" : "Имейл",
"Mail %s" : "Поща %s",
"Fediverse" : "Fediverse /съвкупност от обединени сървъри/",
"View %s on the fediverse" : "Преглед на %s във Fediverse",
"Phone" : "Телефон",
"Call %s" : "Обаждане %s",
"Twitter" : "Twitter",
"View %s on Twitter" : "Изглед %s в Twitter",
"Website" : "Уеб сайт",
"Visit %s" : "Посещение %s",
"Address" : "Адрес",
"Profile picture" : "Снимка на профила",
"About" : "Относно",
"Display name" : "Име за визуализация",
"Headline" : "Заглавие",
"Organisation" : "Организация",
"Role" : "Роля",
"Additional settings" : "Допълнителни настройки",
"Enter the database name for %s" : "Въведете името на базата данни за %s",
"You cannot use dots in the database name %s" : "Не можете да използвате точки в името на базата данни %s",
"You need to enter details of an existing account." : "Трябва да въведете подробности за съществуващ профил.",
"Oracle connection could not be established" : "Не можа да се установи връзка с Oracle",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "Mac OS X не се подържа и %s няма да работи правилно на тази платформа. Използвайте го на свой собствен риск!",
"For the best results, please consider using a GNU/Linux server instead." : "За най-добри резултати, моля, помисли дали не бихте желали да използваште GNU/Linux сървър.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : " Изглежда, че този екземпляр %s работи в 32-битова PHP среда и open_basedir е конфигуриран в php.ini. Това ще доведе до проблеми с файлове над 4 GB и е силно обезкуражено.",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Моля, премахтене настройката за open_basedir от вашия php.ini или преминете към 64-битово PHP.",
"Set an admin password." : "Задай парола за администратор.",
"Cannot create or write into the data directory %s" : "Неуспешно създаване или записване в директорията с данни \"data\" %s",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Споделянето на сървърния %s трябва да поддържа OCP\\Share_Backend интерфейс.",
"Sharing backend %s not found" : "Споделянето на сървърния %s не е открито.",
"Sharing backend for %s not found" : "Споделянето на сървъра за %s не е открито.",
"%1$s shared »%2$s« with you and wants to add:" : "%1$s сподели »%2$s« с вас и иска да добави:",
"%1$s shared »%2$s« with you and wants to add" : "%1$s сподели »%2$s« с вас и иска да добави",
"»%s« added a note to a file shared with you" : "»%s« добави бележка към файл, споделен с вас ",
"Open »%s«" : "Отвори »%s«",
"%1$s via %2$s" : "%1$s чрез %2$s",
"You are not allowed to share %s" : "Не ти е разрешено да споделяш %s.",
"Cannot increase permissions of %s" : "Не могат да се увеличат права на %s",
"Files cannot be shared with delete permissions" : "Файловете не могат да се споделят с права за изтриване",
"Files cannot be shared with create permissions" : "Файловете не могат да се споделят с права за създаване",
"Expiration date is in the past" : "Срокът на валидност е изтекъл",
"_Cannot set expiration date more than %n day in the future_::_Cannot set expiration date more than %n days in the future_" : ["Не може да се зададе срок на валидност повече от %n дни в бъдещето","Не може да се зададе срок на валидност повече от %n дни в бъдещето"],
"Sharing is only allowed with group members" : "Споделянето е разрешено само с членове на групата",
"%1$s shared »%2$s« with you" : "%1$s сподели »%2$s« с вас",
"%1$s shared »%2$s« with you." : "%1$s сподели »%2$s« с вас.",
"Click the button below to open it." : "Щракнете върху бутона по-долу, за да го отворите.",
"The requested share does not exist anymore" : "Исканото споделяне вече не съществува",
"The user was not created because the user limit has been reached. Check your notifications to learn more." : "Потребителят не е създаден, тъй като е достигнат лимитът на потребителите. Проверете вашите известия, за да научите повече.",
"Could not find category \"%s\"" : "Невъзможно откриване на категорията \"%s\".",
"Sunday" : "неделя",
"Monday" : "понеделник",
"Tuesday" : "вторник",
"Wednesday" : "сряда",
"Thursday" : "четвъртък",
"Friday" : "петък",
"Saturday" : "събота",
"Sun." : "нед",
"Mon." : "пон",
"Tue." : "вт",
"Wed." : "ср",
"Thu." : "чет",
"Fri." : "пет",
"Sat." : "съб",
"Su" : "нд",
"Mo" : "пн",
"Tu" : "вт",
"We" : "ср",
"Th" : "чт",
"Fr" : "пт",
"Sa" : "сб",
"January" : "януари",
"February" : "февруару",
"March" : "март",
"April" : "април",
"May" : "май",
"June" : "юни",
"July" : "юли",
"August" : "август",
"September" : "септември",
"October" : "октомври",
"November" : "ноември",
"December" : "декември",
"Jan." : "яну",
"Feb." : "фев",
"Mar." : "мар",
"Apr." : "апр",
"May." : "май",
"Jun." : "юни",
"Jul." : "юли",
"Aug." : "авг",
"Sep." : "сеп",
"Oct." : "окт",
"Nov." : "ное",
"Dec." : "дек",
"A valid password must be provided" : "Трябва да въведете валидна парола.",
"Login canceled by app" : "Вписването е отказано от приложението",
"App \"%1$s\" cannot be installed because the following dependencies are not fulfilled: %2$s" : "Приложението „%1$s“ не може да бъде инсталирано, защото следните зависимости не са изпълнени: %2$s",
"a safe home for all your data" : "безопасен дом за всички ваши данни",
"File is currently busy, please try again later" : "Файлът в момента е зает, моля, опитайте отново по-късно",
"Cannot download file" : "Файлът не можа да бъде изтеглен",
"Application is not enabled" : "Приложението не е включено",
"Authentication error" : "Грешка при удостоверяването",
"Token expired. Please reload page." : "Изтекла сесия. Моля, презареди страницата.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "Липсват инсталирани драйвери за бази данни(sqlite, mysql или postgresql).",
"Cannot write into \"config\" directory." : "Не може да се пише в \"config\" директория.",
"This can usually be fixed by giving the web server write access to the config directory. See %s" : "Това обикновено може да бъде оправено като, се даде достъп на уеб сървъра да записва в config директорията. Погледнете %s",
"Or, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it. See %s" : "Но ако предпочитате да запазите файла config.php само за четене, задайте опцията \"config_is_read_only\" на true/вярно/ в него. Погледнете %s",
"Cannot write into \"apps\" directory." : "Не може да се пише в \"apps\" директория.",
"This can usually be fixed by giving the web server write access to the apps directory or disabling the App Store in the config file." : "Това обикновено може да бъде оправено като се даде достъп на уеб сървъра да записва в app директорията или като изключи приложението магазин за приложения в config файла.",
"Cannot create \"data\" directory." : "Неможе да се създаде \"data\" директория с данни.",
"This can usually be fixed by giving the web server write access to the root directory. See %s" : "Това обикновено може да бъде оправено като, се даде достъп на уеб сървъра да записва в основната директория. Погледнете %s",
"Permissions can usually be fixed by giving the web server write access to the root directory. See %s." : "Права обикновено могат да бъдат оправени когато се даде достъп на уеб сървъра да пише в основната директория. Погледнете %s.",
"Your data directory is not writable." : "Вашата директория с данни не е записваема.",
"Setting locale to %s failed." : "Неуспешно задаване на езикова променлива %s.",
"Please install one of these locales on your system and restart your web server." : "Моля, инсталирайте една от тези езикови променливи на вашата система и си рестартирайте уеб сървъра.",
"PHP module %s not installed." : "PHP модулът %s не е инсталиран.",
"Please ask your server administrator to install the module." : "Моля, помолете вашия администратор да инсталира модула.",
"PHP setting \"%s\" is not set to \"%s\"." : "PHP настройка \"%s\" не е зададена на \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "Регулирането на тази настройка в php.ini ще накара Nextcloud да работи отново",
"<code>mbstring.func_overload</code> is set to <code>%s</code> instead of the expected value <code>0</code>." : "<code>mbstring.func_overload</code> е настроен на <code>%s</code> вместо очакваната стойност <code>0</code>.",
"To fix this issue set <code>mbstring.func_overload</code> to <code>0</code> in your php.ini." : "За оправяне на този проблем, задайте <code>mbstring.func_overload</code> на <code>0</code> във вашият php.ini.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "PHP е настроен да премахва inline doc блокове. Това ще направи няколко основни приложения недостъпни.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Това може да се дължи на cache/accelerator като Zend OPache или eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "PHP модулите са инсталирани, но все още се обявяват като липсващи?",
"Please ask your server administrator to restart the web server." : "Моля, поискай от своя администратор да рестартира уеб сървъра.",
"The required %s config variable is not configured in the config.php file." : "Необходимата %s конфигурационна променлива не е конфигурирана във файла config.php.",
"Please ask your server administrator to check the Nextcloud configuration." : "Моля, помолете администратора на вашия сървър да провери конфигурацията на Nextcloud.",
"Your data directory must be an absolute path." : "Вашата директория с данни трябва да е абсолютен път.",
"Check the value of \"datadirectory\" in your configuration." : "Проверете стойността на \"datadirectory\" във вашата конфигурация.",
"Your data directory is invalid." : "Вашата директория с данни е невалидна.",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Уверете се, че има файл, наречен \".ocdata\" в корена на директорията с данни.",
"Action \"%s\" not supported or implemented." : "Действието „%s“ не се поддържа или изпълнява.",
"Authentication failed, wrong token or provider ID given" : "Неуспешно удостоверяване, даден е грешен токен или идентификатор на доставчика ",
"Parameters missing in order to complete the request. Missing Parameters: \"%s\"" : "Липсват параметри, за завършване на заявката. Липсващи параметри: \"%s\"",
"ID \"%1$s\" already used by cloud federation provider \"%2$s\"" : "Идентификатор „%1$s“ вече се използва от доставчика на облачно федериране „%2$s“",
"Cloud Federation Provider with ID: \"%s\" does not exist." : "Доставчик на облачна федерация с ID: „%s“ не съществува.",
"Could not obtain lock type %d on \"%s\"." : "Неуспешен опит за ексклузивен достъп от типa %d върху \"%s\".",
"Storage unauthorized. %s" : "Неупълномощено хранилище. %s",
"Storage incomplete configuration. %s" : "Непълна конфигурация на хранилище. %s",
"Storage connection error. %s" : "Грешка при свързването с хранилище. %s",
"Storage is temporarily not available" : "Временно хранилището не е налично",
"Storage connection timeout. %s" : "Време за изчакване при свързването с хранилище. %s",
"The files of the app %1$s were not replaced correctly. Make sure it is a version compatible with the server." : "Файловете на приложението %1$s не бяха заменени правилно. Уверете се, че версията е съвместима със сървъра.",
"404" : "404",
"Logged in user must be an admin, a sub admin or gotten special right to access this setting" : "Влезлият потребител трябва да е администратор, подадминистратор или да е получил специално право за достъп до тази настройка",
"Logged in user must be an admin or sub admin" : "Влезлият потребител трябва да е администратор или подадминистратор ",
"Logged in user must be an admin" : "Влезлият потребител трябва да е администратор",
"Full name" : "Пълно име",
"Unknown user" : "Непознат потребител",
"Enter the database username and name for %s" : "Въведете името на потребител на базата данни и име за %s",
"Enter the database username for %s" : "Въведете името на потребител на базата данни за %s",
"MySQL username and/or password not valid" : "Име на потребител и/или паролата на MySQL не са валидни",
"Oracle username and/or password not valid" : "Невалидно Oracle потребителско име и/или парола.",
"PostgreSQL username and/or password not valid" : "Невалидно PostgreSQL потребителско име и/или парола.",
"Set an admin username." : "Задайте потребителско име за администратор.",
"Sharing %s failed, because this item is already shared with user %s" : "Неуспешно споделяне на %s, защото този елемент вече е споделен с потребителя %s",
"The username is already being used" : "Потребителското име е вече заето.",
"Could not create user" : "Неуспешно създаване на потребител",
"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", spaces and \"_.@-'\"" : "Потребителските имена може да съдържат само следните знаци: \"a-z\", \"A-Z\", \"0-9\" и \"_.@-'\"",
"A valid username must be provided" : "Трябва да въведете валидно потребителско.",
"Username contains whitespace at the beginning or at the end" : "Потребителското име започва или завършва с интервал.",
"Username must not consist of dots only" : "Името на потребител не трябва да се състои само от точки",
"Username is invalid because files already exist for this user" : "Името на потребител е невалидно, тъй като файловете вече съществуват за този потребител",
"User disabled" : "Потребителят е деактивиран",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Нужно е поне libxml2 2.7.0. В момента са инсталирани %s.",
"To fix this issue update your libxml2 version and restart your web server." : "За да отстраните този проблем, актуализирайте версията на libxml2 и рестартирайте вашия уеб сървър.",
"PostgreSQL >= 9 required." : "Нужно е PostgreSQL >= 9",
"Please upgrade your database version." : "Моля, надстройте версията на вашата база данни.",
"Your data directory is readable by other users." : "Вашата директория с данни може да се чете от други потребители.",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Моля, променете правата за достъп на 0770, за да не може директорията да бъде видяна от други потребители."
},
"nplurals=2; plural=(n != 1);");
+268
View File
@@ -0,0 +1,268 @@
{ "translations": {
"Cannot write into \"config\" directory!" : "Неуспешен опит за запис в \"config\" папката!",
"This can usually be fixed by giving the web server write access to the config directory." : "Това обикновено може да бъде оправено като, се даде достъп на уеб сървъра да записва в config директорията.",
"But, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it." : "Но ако предпочитате да запазите файла config.php само за четене, задайте опцията \"config_is_read_only\" на true/вярно/ в него.",
"See %s" : "Вижте %s",
"Sample configuration detected" : "Открита е примерна конфигурация",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Усетено беше че примерната конфигурация е копирана. Това може да развли инсталацията ти и не се поддържа. Моля, прочети документацията преди да правиш промени на config.php",
"The page could not be found on the server." : "Страницата не е намерена на сървъра.",
"%s email verification" : "%s имейл потвърждение",
"Email verification" : "Имейл потвърждение",
"Click the following button to confirm your email." : "Щракнете върху следния бутон, за да потвърдите имейла си.",
"Click the following link to confirm your email." : "Щракнете върху следната връзка, за да потвърдите имейла си.",
"Confirm your email" : "Потвърдете имейла си",
"Other activities" : "Други активности ",
"%1$s and %2$s" : "%1$s и %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s и %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s и %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s и %5$s",
"Education Edition" : "Образователно издание",
"Enterprise bundle" : "Професионален пакет",
"Groupware bundle" : "Софтуерен групов пакет",
"Hub bundle" : "Хъб пакет",
"Social sharing bundle" : "Пакет за социално споделяне",
"PHP %s or higher is required." : "Изисква се PHP %s или по-нова.",
"PHP with a version lower than %s is required." : "Необходим е PHP с версия по-ниска от %s.",
"%sbit or higher PHP required." : "Нужно е %s бита или по-висок PHP.",
"The following architectures are supported: %s" : "Поддържани са следните архитектури: %s",
"The following databases are supported: %s" : "Поддържани са следните бази данни: %s",
"The command line tool %s could not be found" : "Конзолната команда %s не може да бъде намерена",
"The library %s is not available." : "Библиотеката %s не е налична",
"Library %1$s with a version higher than %2$s is required - available version %3$s." : "Нужна е библиотека %1$s с версия, по-висока от %2$s – налична версия %3$s.",
"Library %1$s with a version lower than %2$s is required - available version %3$s." : "Нужна е библиотека %1$s с версия, по-ниска от %2$s – налична версия %3$s.",
"The following platforms are supported: %s" : "Поддържани са следните платформи: %s",
"Server version %s or higher is required." : "Нужна е версия на сървъра %s или по-нова.",
"Server version %s or lower is required." : "Нужна е версия на сървъра %s или по-ниска.",
"Wiping of device %s has started" : "Започна изтриването на устройството %s",
"Wiping of device »%s« has started" : "»%s« Започна изтриването на устройството ",
"»%s« started remote wipe" : "»%s« започна отдалечено изтриване",
"Device or application »%s« has started the remote wipe process. You will receive another email once the process has finished" : "Устройство или приложение »%s« стартира процеса на отдалечено изтриване. Ще получите друг имейл, след като процесът приключи ",
"Wiping of device %s has finished" : "Изтриването на устройството %s завърши",
"Wiping of device »%s« has finished" : "Изтриването на устройството »%s« завърши",
"»%s« finished remote wipe" : "»%s« завърши отдалеченото изтриване",
"Device or application »%s« has finished the remote wipe process." : "Устройство или приложение »%s« завърши процеса на отдалечено изтриване. ",
"Remote wipe started" : "Започна отдалечено изтриване",
"A remote wipe was started on device %s" : "Започна отдалечено изтриване на устройство %s",
"Remote wipe finished" : "Отдалеченото изтриване завърши",
"The remote wipe on %s has finished" : "Завърши %s на отдалеченото изтриване",
"Authentication" : "Удостоверяване",
"Unknown filetype" : "Непознат тип файл",
"Invalid image" : "Невалидно изображение.",
"Avatar image is not square" : "Изображението на аватара не е квадратно",
"Files" : "Файлове",
"View profile" : "Преглед на профил",
"Local time: %s" : "Местно време: %s",
"today" : "днес",
"tomorrow" : "утре",
"yesterday" : "вчера",
"_in %n day_::_in %n days_" : ["след %n дни","след %n дни"],
"_%n day ago_::_%n days ago_" : ["преди %n ден","преди %n дни"],
"next month" : "следващия месец",
"last month" : "миналия месец",
"_in %n month_::_in %n months_" : ["след %n месеца","след %n месеца"],
"_%n month ago_::_%n months ago_" : ["преди %n месец","преди %n месеца"],
"next year" : "следващата година",
"last year" : "миналата година",
"_in %n year_::_in %n years_" : ["след %n години","след %n "],
"_%n year ago_::_%n years ago_" : ["преди %n година","преди %n години"],
"_in %n hour_::_in %n hours_" : ["след %n часа","след "],
"_%n hour ago_::_%n hours ago_" : ["преди %n час","преди %n часа"],
"_in %n minute_::_in %n minutes_" : ["след %n минути","след "],
"_%n minute ago_::_%n minutes ago_" : ["преди %n минута","преди %n минути"],
"in a few seconds" : "след няколко секунди",
"seconds ago" : "преди секунди",
"Empty file" : "Празен файл",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "Модул с ID: %s не съществува. Моля, активирайте го в настройките на приложенията си или се свържете с администратора си.",
"File already exists" : "Файлът вече съществува",
"Invalid path" : "Невалиден път",
"Failed to create file from template" : "Неуспешно създаване на файл от шаблон",
"Templates" : "Шаблони",
"File name is a reserved word" : "Името на файла е запазена дума",
"File name contains at least one invalid character" : "Името на файла съдържа поне един невалиден символ",
"File name is too long" : "Името на файла е твърде дълго",
"Dot files are not allowed" : "Файлове с точки не са разрешени",
"Empty filename is not allowed" : "Празно име на файл не е разрешено.",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "Приложението „%s“ не може да бъде инсталирано, защото appinfo/информация за приложението/ файлът не може да бъде прочетен.",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "Приложението \"%s\" не може да бъде инсталирано, защото не е съвместимо с тази версия на сървъра.",
"__language_name__" : "Български",
"This is an automatically sent email, please do not reply." : "Имейлът е генериран автоматично, моля не отговаряйте.",
"Help" : "Помощ",
"Appearance and accessibility" : "Изглед и достъпност",
"Apps" : "Приложения",
"Personal settings" : "Лични настройки",
"Administration settings" : "Административни настройки",
"Settings" : "Настройки",
"Log out" : "Отписване",
"Users" : "Потребители",
"Email" : "Имейл",
"Mail %s" : "Поща %s",
"Fediverse" : "Fediverse /съвкупност от обединени сървъри/",
"View %s on the fediverse" : "Преглед на %s във Fediverse",
"Phone" : "Телефон",
"Call %s" : "Обаждане %s",
"Twitter" : "Twitter",
"View %s on Twitter" : "Изглед %s в Twitter",
"Website" : "Уеб сайт",
"Visit %s" : "Посещение %s",
"Address" : "Адрес",
"Profile picture" : "Снимка на профила",
"About" : "Относно",
"Display name" : "Име за визуализация",
"Headline" : "Заглавие",
"Organisation" : "Организация",
"Role" : "Роля",
"Additional settings" : "Допълнителни настройки",
"Enter the database name for %s" : "Въведете името на базата данни за %s",
"You cannot use dots in the database name %s" : "Не можете да използвате точки в името на базата данни %s",
"You need to enter details of an existing account." : "Трябва да въведете подробности за съществуващ профил.",
"Oracle connection could not be established" : "Не можа да се установи връзка с Oracle",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "Mac OS X не се подържа и %s няма да работи правилно на тази платформа. Използвайте го на свой собствен риск!",
"For the best results, please consider using a GNU/Linux server instead." : "За най-добри резултати, моля, помисли дали не бихте желали да използваште GNU/Linux сървър.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : " Изглежда, че този екземпляр %s работи в 32-битова PHP среда и open_basedir е конфигуриран в php.ini. Това ще доведе до проблеми с файлове над 4 GB и е силно обезкуражено.",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Моля, премахтене настройката за open_basedir от вашия php.ini или преминете към 64-битово PHP.",
"Set an admin password." : "Задай парола за администратор.",
"Cannot create or write into the data directory %s" : "Неуспешно създаване или записване в директорията с данни \"data\" %s",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Споделянето на сървърния %s трябва да поддържа OCP\\Share_Backend интерфейс.",
"Sharing backend %s not found" : "Споделянето на сървърния %s не е открито.",
"Sharing backend for %s not found" : "Споделянето на сървъра за %s не е открито.",
"%1$s shared »%2$s« with you and wants to add:" : "%1$s сподели »%2$s« с вас и иска да добави:",
"%1$s shared »%2$s« with you and wants to add" : "%1$s сподели »%2$s« с вас и иска да добави",
"»%s« added a note to a file shared with you" : "»%s« добави бележка към файл, споделен с вас ",
"Open »%s«" : "Отвори »%s«",
"%1$s via %2$s" : "%1$s чрез %2$s",
"You are not allowed to share %s" : "Не ти е разрешено да споделяш %s.",
"Cannot increase permissions of %s" : "Не могат да се увеличат права на %s",
"Files cannot be shared with delete permissions" : "Файловете не могат да се споделят с права за изтриване",
"Files cannot be shared with create permissions" : "Файловете не могат да се споделят с права за създаване",
"Expiration date is in the past" : "Срокът на валидност е изтекъл",
"_Cannot set expiration date more than %n day in the future_::_Cannot set expiration date more than %n days in the future_" : ["Не може да се зададе срок на валидност повече от %n дни в бъдещето","Не може да се зададе срок на валидност повече от %n дни в бъдещето"],
"Sharing is only allowed with group members" : "Споделянето е разрешено само с членове на групата",
"%1$s shared »%2$s« with you" : "%1$s сподели »%2$s« с вас",
"%1$s shared »%2$s« with you." : "%1$s сподели »%2$s« с вас.",
"Click the button below to open it." : "Щракнете върху бутона по-долу, за да го отворите.",
"The requested share does not exist anymore" : "Исканото споделяне вече не съществува",
"The user was not created because the user limit has been reached. Check your notifications to learn more." : "Потребителят не е създаден, тъй като е достигнат лимитът на потребителите. Проверете вашите известия, за да научите повече.",
"Could not find category \"%s\"" : "Невъзможно откриване на категорията \"%s\".",
"Sunday" : "неделя",
"Monday" : "понеделник",
"Tuesday" : "вторник",
"Wednesday" : "сряда",
"Thursday" : "четвъртък",
"Friday" : "петък",
"Saturday" : "събота",
"Sun." : "нед",
"Mon." : "пон",
"Tue." : "вт",
"Wed." : "ср",
"Thu." : "чет",
"Fri." : "пет",
"Sat." : "съб",
"Su" : "нд",
"Mo" : "пн",
"Tu" : "вт",
"We" : "ср",
"Th" : "чт",
"Fr" : "пт",
"Sa" : "сб",
"January" : "януари",
"February" : "февруару",
"March" : "март",
"April" : "април",
"May" : "май",
"June" : "юни",
"July" : "юли",
"August" : "август",
"September" : "септември",
"October" : "октомври",
"November" : "ноември",
"December" : "декември",
"Jan." : "яну",
"Feb." : "фев",
"Mar." : "мар",
"Apr." : "апр",
"May." : "май",
"Jun." : "юни",
"Jul." : "юли",
"Aug." : "авг",
"Sep." : "сеп",
"Oct." : "окт",
"Nov." : "ное",
"Dec." : "дек",
"A valid password must be provided" : "Трябва да въведете валидна парола.",
"Login canceled by app" : "Вписването е отказано от приложението",
"App \"%1$s\" cannot be installed because the following dependencies are not fulfilled: %2$s" : "Приложението „%1$s“ не може да бъде инсталирано, защото следните зависимости не са изпълнени: %2$s",
"a safe home for all your data" : "безопасен дом за всички ваши данни",
"File is currently busy, please try again later" : "Файлът в момента е зает, моля, опитайте отново по-късно",
"Cannot download file" : "Файлът не можа да бъде изтеглен",
"Application is not enabled" : "Приложението не е включено",
"Authentication error" : "Грешка при удостоверяването",
"Token expired. Please reload page." : "Изтекла сесия. Моля, презареди страницата.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "Липсват инсталирани драйвери за бази данни(sqlite, mysql или postgresql).",
"Cannot write into \"config\" directory." : "Не може да се пише в \"config\" директория.",
"This can usually be fixed by giving the web server write access to the config directory. See %s" : "Това обикновено може да бъде оправено като, се даде достъп на уеб сървъра да записва в config директорията. Погледнете %s",
"Or, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it. See %s" : "Но ако предпочитате да запазите файла config.php само за четене, задайте опцията \"config_is_read_only\" на true/вярно/ в него. Погледнете %s",
"Cannot write into \"apps\" directory." : "Не може да се пише в \"apps\" директория.",
"This can usually be fixed by giving the web server write access to the apps directory or disabling the App Store in the config file." : "Това обикновено може да бъде оправено като се даде достъп на уеб сървъра да записва в app директорията или като изключи приложението магазин за приложения в config файла.",
"Cannot create \"data\" directory." : "Неможе да се създаде \"data\" директория с данни.",
"This can usually be fixed by giving the web server write access to the root directory. See %s" : "Това обикновено може да бъде оправено като, се даде достъп на уеб сървъра да записва в основната директория. Погледнете %s",
"Permissions can usually be fixed by giving the web server write access to the root directory. See %s." : "Права обикновено могат да бъдат оправени когато се даде достъп на уеб сървъра да пише в основната директория. Погледнете %s.",
"Your data directory is not writable." : "Вашата директория с данни не е записваема.",
"Setting locale to %s failed." : "Неуспешно задаване на езикова променлива %s.",
"Please install one of these locales on your system and restart your web server." : "Моля, инсталирайте една от тези езикови променливи на вашата система и си рестартирайте уеб сървъра.",
"PHP module %s not installed." : "PHP модулът %s не е инсталиран.",
"Please ask your server administrator to install the module." : "Моля, помолете вашия администратор да инсталира модула.",
"PHP setting \"%s\" is not set to \"%s\"." : "PHP настройка \"%s\" не е зададена на \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "Регулирането на тази настройка в php.ini ще накара Nextcloud да работи отново",
"<code>mbstring.func_overload</code> is set to <code>%s</code> instead of the expected value <code>0</code>." : "<code>mbstring.func_overload</code> е настроен на <code>%s</code> вместо очакваната стойност <code>0</code>.",
"To fix this issue set <code>mbstring.func_overload</code> to <code>0</code> in your php.ini." : "За оправяне на този проблем, задайте <code>mbstring.func_overload</code> на <code>0</code> във вашият php.ini.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "PHP е настроен да премахва inline doc блокове. Това ще направи няколко основни приложения недостъпни.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Това може да се дължи на cache/accelerator като Zend OPache или eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "PHP модулите са инсталирани, но все още се обявяват като липсващи?",
"Please ask your server administrator to restart the web server." : "Моля, поискай от своя администратор да рестартира уеб сървъра.",
"The required %s config variable is not configured in the config.php file." : "Необходимата %s конфигурационна променлива не е конфигурирана във файла config.php.",
"Please ask your server administrator to check the Nextcloud configuration." : "Моля, помолете администратора на вашия сървър да провери конфигурацията на Nextcloud.",
"Your data directory must be an absolute path." : "Вашата директория с данни трябва да е абсолютен път.",
"Check the value of \"datadirectory\" in your configuration." : "Проверете стойността на \"datadirectory\" във вашата конфигурация.",
"Your data directory is invalid." : "Вашата директория с данни е невалидна.",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Уверете се, че има файл, наречен \".ocdata\" в корена на директорията с данни.",
"Action \"%s\" not supported or implemented." : "Действието „%s“ не се поддържа или изпълнява.",
"Authentication failed, wrong token or provider ID given" : "Неуспешно удостоверяване, даден е грешен токен или идентификатор на доставчика ",
"Parameters missing in order to complete the request. Missing Parameters: \"%s\"" : "Липсват параметри, за завършване на заявката. Липсващи параметри: \"%s\"",
"ID \"%1$s\" already used by cloud federation provider \"%2$s\"" : "Идентификатор „%1$s“ вече се използва от доставчика на облачно федериране „%2$s“",
"Cloud Federation Provider with ID: \"%s\" does not exist." : "Доставчик на облачна федерация с ID: „%s“ не съществува.",
"Could not obtain lock type %d on \"%s\"." : "Неуспешен опит за ексклузивен достъп от типa %d върху \"%s\".",
"Storage unauthorized. %s" : "Неупълномощено хранилище. %s",
"Storage incomplete configuration. %s" : "Непълна конфигурация на хранилище. %s",
"Storage connection error. %s" : "Грешка при свързването с хранилище. %s",
"Storage is temporarily not available" : "Временно хранилището не е налично",
"Storage connection timeout. %s" : "Време за изчакване при свързването с хранилище. %s",
"The files of the app %1$s were not replaced correctly. Make sure it is a version compatible with the server." : "Файловете на приложението %1$s не бяха заменени правилно. Уверете се, че версията е съвместима със сървъра.",
"404" : "404",
"Logged in user must be an admin, a sub admin or gotten special right to access this setting" : "Влезлият потребител трябва да е администратор, подадминистратор или да е получил специално право за достъп до тази настройка",
"Logged in user must be an admin or sub admin" : "Влезлият потребител трябва да е администратор или подадминистратор ",
"Logged in user must be an admin" : "Влезлият потребител трябва да е администратор",
"Full name" : "Пълно име",
"Unknown user" : "Непознат потребител",
"Enter the database username and name for %s" : "Въведете името на потребител на базата данни и име за %s",
"Enter the database username for %s" : "Въведете името на потребител на базата данни за %s",
"MySQL username and/or password not valid" : "Име на потребител и/или паролата на MySQL не са валидни",
"Oracle username and/or password not valid" : "Невалидно Oracle потребителско име и/или парола.",
"PostgreSQL username and/or password not valid" : "Невалидно PostgreSQL потребителско име и/или парола.",
"Set an admin username." : "Задайте потребителско име за администратор.",
"Sharing %s failed, because this item is already shared with user %s" : "Неуспешно споделяне на %s, защото този елемент вече е споделен с потребителя %s",
"The username is already being used" : "Потребителското име е вече заето.",
"Could not create user" : "Неуспешно създаване на потребител",
"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", spaces and \"_.@-'\"" : "Потребителските имена може да съдържат само следните знаци: \"a-z\", \"A-Z\", \"0-9\" и \"_.@-'\"",
"A valid username must be provided" : "Трябва да въведете валидно потребителско.",
"Username contains whitespace at the beginning or at the end" : "Потребителското име започва или завършва с интервал.",
"Username must not consist of dots only" : "Името на потребител не трябва да се състои само от точки",
"Username is invalid because files already exist for this user" : "Името на потребител е невалидно, тъй като файловете вече съществуват за този потребител",
"User disabled" : "Потребителят е деактивиран",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Нужно е поне libxml2 2.7.0. В момента са инсталирани %s.",
"To fix this issue update your libxml2 version and restart your web server." : "За да отстраните този проблем, актуализирайте версията на libxml2 и рестартирайте вашия уеб сървър.",
"PostgreSQL >= 9 required." : "Нужно е PostgreSQL >= 9",
"Please upgrade your database version." : "Моля, надстройте версията на вашата база данни.",
"Your data directory is readable by other users." : "Вашата директория с данни може да се чете от други потребители.",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Моля, променете правата за достъп на 0770, за да не може директорията да бъде видяна от други потребители."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}
+70
View File
@@ -0,0 +1,70 @@
OC.L10N.register(
"lib",
{
"Cannot write into \"config\" directory!" : "\"config\" ডিরেক্টরিতে লেখা যায়না!",
"See %s" : "%s দেখ",
"Sample configuration detected" : "নমুনা কনফিগারেশন পাওয়া গেছে",
"Unknown filetype" : "অজানা প্রকৃতির ফাইল",
"Invalid image" : "অবৈধ চিত্র",
"Files" : "ফাইল",
"today" : "আজ",
"yesterday" : "গতকাল",
"last month" : "গত মাস",
"last year" : "গত বছর",
"seconds ago" : "সেকেন্ড পূর্বে",
"__language_name__" : "বাংলা ভাষা",
"Help" : "সহায়িকা",
"Apps" : "অ্যাপ",
"Settings" : "সেটিংস",
"Log out" : "প্রস্থান",
"Users" : "ব্যবহারকারী",
"Email" : "ইমেইল",
"Phone" : "ফোন",
"Website" : "ওয়েবসাইট",
"Address" : "ঠিকানা",
"About" : "সমপরকে",
"You are not allowed to share %s" : "আপনি %s ভাগাভাগি করতে পারবেননা",
"Sunday" : "রবিবার",
"Monday" : "সোমবার",
"Tuesday" : "মঙ্গলবার",
"Wednesday" : "বুধবার",
"Thursday" : "বৃহস্পতিবার",
"Friday" : "শুক্রবার",
"Saturday" : "শনিবার",
"Sun." : "রবি.",
"Mon." : "সোম.",
"Tue." : "মঙ্গল.",
"Wed." : "বুধ.",
"Thu." : "বৃহঃ.",
"Fri." : "শুক্র.",
"Sat." : "শনি.",
"January" : "জানুয়ারি",
"February" : "ফেব্রুয়ারি",
"March" : "মার্চ",
"April" : "এপ্রিল",
"May" : "মে",
"June" : "জুন",
"July" : "জুলাই",
"August" : "অগাষ্ট",
"September" : "সেপ্টেম্বর",
"October" : "অক্টোবর",
"November" : "নভেম্বর",
"December" : "ডিসেম্বর",
"Jan." : "জানু.",
"Feb." : "ফেব্রু.",
"Mar." : "মার্চ.",
"Apr." : "এপ্রিল.",
"May." : "মে.",
"Jun." : "জুন.",
"Jul." : "জুলাই.",
"Aug." : "অগাস্ট.",
"Sep." : "সেপ্টে.",
"Oct." : "অক্টো.",
"Nov." : "নভে.",
"Dec." : "ডিসে.",
"Application is not enabled" : "অ্যাপ্লিকেসনটি সক্রিয় নয়",
"Authentication error" : "অনুমোদন ঘটিত সমস্যা",
"Token expired. Please reload page." : "টোকেন মেয়াদোত্তীর্ণ। দয়া করে পৃষ্ঠাটি পূনরায় লোড করুন।",
"Unknown user" : "অপরিচিত ব্যবহারকারী"
},
"nplurals=2; plural=(n != 1);");
+68
View File
@@ -0,0 +1,68 @@
{ "translations": {
"Cannot write into \"config\" directory!" : "\"config\" ডিরেক্টরিতে লেখা যায়না!",
"See %s" : "%s দেখ",
"Sample configuration detected" : "নমুনা কনফিগারেশন পাওয়া গেছে",
"Unknown filetype" : "অজানা প্রকৃতির ফাইল",
"Invalid image" : "অবৈধ চিত্র",
"Files" : "ফাইল",
"today" : "আজ",
"yesterday" : "গতকাল",
"last month" : "গত মাস",
"last year" : "গত বছর",
"seconds ago" : "সেকেন্ড পূর্বে",
"__language_name__" : "বাংলা ভাষা",
"Help" : "সহায়িকা",
"Apps" : "অ্যাপ",
"Settings" : "সেটিংস",
"Log out" : "প্রস্থান",
"Users" : "ব্যবহারকারী",
"Email" : "ইমেইল",
"Phone" : "ফোন",
"Website" : "ওয়েবসাইট",
"Address" : "ঠিকানা",
"About" : "সমপরকে",
"You are not allowed to share %s" : "আপনি %s ভাগাভাগি করতে পারবেননা",
"Sunday" : "রবিবার",
"Monday" : "সোমবার",
"Tuesday" : "মঙ্গলবার",
"Wednesday" : "বুধবার",
"Thursday" : "বৃহস্পতিবার",
"Friday" : "শুক্রবার",
"Saturday" : "শনিবার",
"Sun." : "রবি.",
"Mon." : "সোম.",
"Tue." : "মঙ্গল.",
"Wed." : "বুধ.",
"Thu." : "বৃহঃ.",
"Fri." : "শুক্র.",
"Sat." : "শনি.",
"January" : "জানুয়ারি",
"February" : "ফেব্রুয়ারি",
"March" : "মার্চ",
"April" : "এপ্রিল",
"May" : "মে",
"June" : "জুন",
"July" : "জুলাই",
"August" : "অগাষ্ট",
"September" : "সেপ্টেম্বর",
"October" : "অক্টোবর",
"November" : "নভেম্বর",
"December" : "ডিসেম্বর",
"Jan." : "জানু.",
"Feb." : "ফেব্রু.",
"Mar." : "মার্চ.",
"Apr." : "এপ্রিল.",
"May." : "মে.",
"Jun." : "জুন.",
"Jul." : "জুলাই.",
"Aug." : "অগাস্ট.",
"Sep." : "সেপ্টে.",
"Oct." : "অক্টো.",
"Nov." : "নভে.",
"Dec." : "ডিসে.",
"Application is not enabled" : "অ্যাপ্লিকেসনটি সক্রিয় নয়",
"Authentication error" : "অনুমোদন ঘটিত সমস্যা",
"Token expired. Please reload page." : "টোকেন মেয়াদোত্তীর্ণ। দয়া করে পৃষ্ঠাটি পূনরায় লোড করুন।",
"Unknown user" : "অপরিচিত ব্যবহারকারী"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}
+59
View File
@@ -0,0 +1,59 @@
OC.L10N.register(
"lib",
{
"See %s" : "Sellet %s",
"Other activities" : "Oberiantizoù all",
"PHP %s or higher is required." : "PHP %s pe hueloc'h a zo ret kaout.",
"PHP with a version lower than %s is required." : "PHP gant ur stumm izeloc'h eget %s a zo ret kaout.",
"The library %s is not available." : "Al levraoueg %s ne c'hell ket bezhgañ implijet",
"Server version %s or higher is required." : "Stumm servijour %s pe hueloc'h rekis",
"Unknown filetype" : "N'eo ket anavezet stumm an teuliad",
"Invalid image" : "N'eo ket aotreet ar skeudenn",
"Files" : "Restroù",
"today" : "hiziv",
"yesterday" : "dec'h",
"_%n day ago_::_%n days ago_" : ["%n deiz zo","%n deiz zo","%n deiz zo","%n deiz zo","%n deiz zo"],
"last month" : "ar miz tremenet",
"_%n month ago_::_%n months ago_" : ["%n miz zo","%n miz zo","%n miz zo","%n miz zo","%n miz zo"],
"next year" : "bloaz war-lerc'h",
"last year" : "Ar bloaz tremenet",
"_%n year ago_::_%n years ago_" : ["%n bloaz zo","%n bloaz zo","%n bloaz zo","%n bloaz zo","%n bloaz zo"],
"_%n hour ago_::_%n hours ago_" : ["%n hervez zo","%n hervez zo","%n hervez zo","%n hervez zo","%n hervez zo"],
"_%n minute ago_::_%n minutes ago_" : ["%n munudenn-zo","%n munudenn-zo","%n munudenn-zo","%n munudenn-zo","%n munudenn-zo"],
"seconds ago" : "eilenn zo",
"File name contains at least one invalid character" : "Un arouez fall ez eus d'an neubeutañ en anv restr",
"File name is too long" : "Anv ar restr a zo re hir",
"Empty filename is not allowed" : "Un anv-restr goulo n'eo ket aotreet",
"__language_name__" : "Brezhoneg",
"Help" : "Skoazell",
"Apps" : "Meziant",
"Settings" : "Arventennoù",
"Log out" : "Kuitat",
"Users" : "Implijer",
"Email" : "Postel",
"Twitter" : "Twitter",
"Website" : "Lec'hien web",
"Address" : "Chom-lec'h",
"Profile picture" : "Skeudenn trolinenn",
"About" : "Diwar-benn",
"Display name" : "Anv ardivink",
"Role" : "Roll",
"Additional settings" : "Stummoù ouzhpenn",
"Set an admin password." : "Lakaat ur ger-tremenn merour.",
"Sharing backend for %s not found" : "Rannadenn backend evit %s n'eo ket bet kavet",
"Open »%s«" : "Digeriñ »%s«",
"Monday" : "Lun",
"Login canceled by app" : "Mont tre arrestet gant ar meziant",
"Application is not enabled" : "N'eo ket aotreet ar meziant",
"Authentication error" : "Fazi dilesa",
"Token expired. Please reload page." : "Jedouer re gozh. Adkargit ar bajenn.",
"PHP module %s not installed." : "Modul %s PHPn n'eo ket staliet.",
"Storage connection error. %s" : "Fazi renkañ kenstag. %s",
"Storage is temporarily not available" : "N'haller ket tizhout ar skor roadennoù evit ar poent",
"Full name" : "Tout an anv",
"Unknown user" : "Implijer dianv",
"Set an admin username." : "Lakaat un anv-impljer merour.",
"The username is already being used" : "An anv-implijet a zo dija implijet",
"User disabled" : "Implijer disaotreet"
},
"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);");
+57
View File
@@ -0,0 +1,57 @@
{ "translations": {
"See %s" : "Sellet %s",
"Other activities" : "Oberiantizoù all",
"PHP %s or higher is required." : "PHP %s pe hueloc'h a zo ret kaout.",
"PHP with a version lower than %s is required." : "PHP gant ur stumm izeloc'h eget %s a zo ret kaout.",
"The library %s is not available." : "Al levraoueg %s ne c'hell ket bezhgañ implijet",
"Server version %s or higher is required." : "Stumm servijour %s pe hueloc'h rekis",
"Unknown filetype" : "N'eo ket anavezet stumm an teuliad",
"Invalid image" : "N'eo ket aotreet ar skeudenn",
"Files" : "Restroù",
"today" : "hiziv",
"yesterday" : "dec'h",
"_%n day ago_::_%n days ago_" : ["%n deiz zo","%n deiz zo","%n deiz zo","%n deiz zo","%n deiz zo"],
"last month" : "ar miz tremenet",
"_%n month ago_::_%n months ago_" : ["%n miz zo","%n miz zo","%n miz zo","%n miz zo","%n miz zo"],
"next year" : "bloaz war-lerc'h",
"last year" : "Ar bloaz tremenet",
"_%n year ago_::_%n years ago_" : ["%n bloaz zo","%n bloaz zo","%n bloaz zo","%n bloaz zo","%n bloaz zo"],
"_%n hour ago_::_%n hours ago_" : ["%n hervez zo","%n hervez zo","%n hervez zo","%n hervez zo","%n hervez zo"],
"_%n minute ago_::_%n minutes ago_" : ["%n munudenn-zo","%n munudenn-zo","%n munudenn-zo","%n munudenn-zo","%n munudenn-zo"],
"seconds ago" : "eilenn zo",
"File name contains at least one invalid character" : "Un arouez fall ez eus d'an neubeutañ en anv restr",
"File name is too long" : "Anv ar restr a zo re hir",
"Empty filename is not allowed" : "Un anv-restr goulo n'eo ket aotreet",
"__language_name__" : "Brezhoneg",
"Help" : "Skoazell",
"Apps" : "Meziant",
"Settings" : "Arventennoù",
"Log out" : "Kuitat",
"Users" : "Implijer",
"Email" : "Postel",
"Twitter" : "Twitter",
"Website" : "Lec'hien web",
"Address" : "Chom-lec'h",
"Profile picture" : "Skeudenn trolinenn",
"About" : "Diwar-benn",
"Display name" : "Anv ardivink",
"Role" : "Roll",
"Additional settings" : "Stummoù ouzhpenn",
"Set an admin password." : "Lakaat ur ger-tremenn merour.",
"Sharing backend for %s not found" : "Rannadenn backend evit %s n'eo ket bet kavet",
"Open »%s«" : "Digeriñ »%s«",
"Monday" : "Lun",
"Login canceled by app" : "Mont tre arrestet gant ar meziant",
"Application is not enabled" : "N'eo ket aotreet ar meziant",
"Authentication error" : "Fazi dilesa",
"Token expired. Please reload page." : "Jedouer re gozh. Adkargit ar bajenn.",
"PHP module %s not installed." : "Modul %s PHPn n'eo ket staliet.",
"Storage connection error. %s" : "Fazi renkañ kenstag. %s",
"Storage is temporarily not available" : "N'haller ket tizhout ar skor roadennoù evit ar poent",
"Full name" : "Tout an anv",
"Unknown user" : "Implijer dianv",
"Set an admin username." : "Lakaat un anv-impljer merour.",
"The username is already being used" : "An anv-implijet a zo dija implijet",
"User disabled" : "Implijer disaotreet"
},"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);"
}
+63
View File
@@ -0,0 +1,63 @@
OC.L10N.register(
"lib",
{
"Unknown filetype" : "Nepoznat tip datoteke",
"Invalid image" : "Nevažeća datoteka",
"Files" : "Datoteke",
"__language_name__" : "Bosanski jezik",
"Help" : "Pomoć",
"Apps" : "Aplikacije",
"Settings" : "Podešavanje",
"Log out" : "Odjava",
"Users" : "Korisnici",
"Email" : "E-pošta",
"Phone" : "Telefon",
"Website" : "Web-prezentacija",
"Address" : "Adresa",
"Profile picture" : "Slika profila",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "Mac OS X nije podržan i %s na ovoj platformi neće raditi kako treba. Korištenje na vlastiti rizik!",
"For the best results, please consider using a GNU/Linux server instead." : "Umjesto toga, za najbolje rezultate, molimo razmislite o mogućnosti korištenje GNU/Linux servera.",
"Sunday" : "Nedjelja",
"Monday" : "Ponedjeljak",
"Tuesday" : "Utorak",
"Wednesday" : "Srijeda",
"Thursday" : "Četvrtak",
"Friday" : "Petak",
"Saturday" : "Subota",
"Sun." : "Ned.",
"Mon." : "Pon.",
"Tue." : "Ut.",
"Wed." : "Sri.",
"Thu." : "Čet.",
"Fri." : "Pet.",
"Sat." : "Sub.",
"January" : "Januar",
"February" : "Februar",
"March" : "Mart",
"April" : "April",
"May" : "Maj",
"June" : "Juni",
"July" : "Juli",
"August" : "Avgust",
"September" : "Septembar",
"October" : "Oktobar",
"November" : "Novembar",
"December" : "Decembar",
"Jan." : "Jan.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Apr.",
"May." : "Maj.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Avg.",
"Sep." : "Sep.",
"Oct." : "Okt.",
"Nov." : "Nov.",
"Dec." : "Dec.",
"A valid password must be provided" : "Nužno je navesti valjanu lozinku",
"Authentication error" : "Grešna autentifikacije",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Uzrok tome je vjerojatno neki ubrzivač predmemorisanja kao što je Zend OPcache ili eAccelerator.",
"A valid username must be provided" : "Nužno je navesti valjano korisničko ime"
},
"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);");
+61
View File
@@ -0,0 +1,61 @@
{ "translations": {
"Unknown filetype" : "Nepoznat tip datoteke",
"Invalid image" : "Nevažeća datoteka",
"Files" : "Datoteke",
"__language_name__" : "Bosanski jezik",
"Help" : "Pomoć",
"Apps" : "Aplikacije",
"Settings" : "Podešavanje",
"Log out" : "Odjava",
"Users" : "Korisnici",
"Email" : "E-pošta",
"Phone" : "Telefon",
"Website" : "Web-prezentacija",
"Address" : "Adresa",
"Profile picture" : "Slika profila",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "Mac OS X nije podržan i %s na ovoj platformi neće raditi kako treba. Korištenje na vlastiti rizik!",
"For the best results, please consider using a GNU/Linux server instead." : "Umjesto toga, za najbolje rezultate, molimo razmislite o mogućnosti korištenje GNU/Linux servera.",
"Sunday" : "Nedjelja",
"Monday" : "Ponedjeljak",
"Tuesday" : "Utorak",
"Wednesday" : "Srijeda",
"Thursday" : "Četvrtak",
"Friday" : "Petak",
"Saturday" : "Subota",
"Sun." : "Ned.",
"Mon." : "Pon.",
"Tue." : "Ut.",
"Wed." : "Sri.",
"Thu." : "Čet.",
"Fri." : "Pet.",
"Sat." : "Sub.",
"January" : "Januar",
"February" : "Februar",
"March" : "Mart",
"April" : "April",
"May" : "Maj",
"June" : "Juni",
"July" : "Juli",
"August" : "Avgust",
"September" : "Septembar",
"October" : "Oktobar",
"November" : "Novembar",
"December" : "Decembar",
"Jan." : "Jan.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Apr.",
"May." : "Maj.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Avg.",
"Sep." : "Sep.",
"Oct." : "Okt.",
"Nov." : "Nov.",
"Dec." : "Dec.",
"A valid password must be provided" : "Nužno je navesti valjanu lozinku",
"Authentication error" : "Grešna autentifikacije",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Uzrok tome je vjerojatno neki ubrzivač predmemorisanja kao što je Zend OPcache ili eAccelerator.",
"A valid username must be provided" : "Nužno je navesti valjano korisničko ime"
},"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);"
}
+301
View File
@@ -0,0 +1,301 @@
OC.L10N.register(
"lib",
{
"Cannot write into \"config\" directory!" : "No es pot escriure en la carpeta «config»!",
"This can usually be fixed by giving the web server write access to the config directory." : "Això normalment es pot solucionar donant al servidor web accés d'escriptura a la carpeta de configuració.",
"But, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it." : "O bé, si preferiu mantenir el fitxer config.php només de lectura, establir l'opció «config_is_read_only» com a «true».",
"See %s" : "Consulteu %s",
"Application %1$s is not present or has a non-compatible version with this server. Please check the apps directory." : "Falta l'aplicació %1$s o té una versió no compatible amb aquest servidor. Comproveu la carpeta d'aplicacions.",
"Sample configuration detected" : "S'ha detectat una configuració d'exemple",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "S'ha detectat que s'ha copiat la configuració d'exemple. Això no s'admet i pot malmetre la instal·lació. Llegiu la documentació abans d'aplicar cap canvi al fitxer config.php",
"The page could not be found on the server." : "No s'ha pogut trobar la pàgina en el servidor.",
"%s email verification" : "Verificació de l'adreça electrònica del %s",
"Email verification" : "Verificació de l'adreça electrònica",
"Click the following button to confirm your email." : "Feu clic en el botó següent per a confirmar la vostra adreça electrònica.",
"Click the following link to confirm your email." : "Feu clic en l'enllaç següent per a confirmar la vostra adreça electrònica.",
"Confirm your email" : "Confirma l'adreça electrònica",
"Other activities" : "Altres activitats",
"%1$s and %2$s" : "%1$s i %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s i %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s i %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s i %5$s",
"Education Edition" : "Edició educativa",
"Enterprise bundle" : "Paquet empresarial",
"Groupware bundle" : "Paquet de treball en grup",
"Hub bundle" : "Paquet Hub",
"Social sharing bundle" : "Paquet social",
"PHP %s or higher is required." : "Cal el PHP %s o superior.",
"PHP with a version lower than %s is required." : "Cal el PHP amb una versió inferior a la %s.",
"%sbit or higher PHP required." : "Cal el PHP de %s bits o superior.",
"The following architectures are supported: %s" : "S'admeten les arquitectures següents: %s",
"The following databases are supported: %s" : "S'admeten les bases de dades següents: %s",
"The command line tool %s could not be found" : "No s'ha trobat l'eina de línia d'ordres %s",
"The library %s is not available." : "La biblioteca %s no està disponible.",
"Library %1$s with a version higher than %2$s is required - available version %3$s." : "Cal la biblioteca %1$s amb una versió superior a la %2$s; la versió disponible és la %3$s.",
"Library %1$s with a version lower than %2$s is required - available version %3$s." : "Cal la biblioteca %1$s amb una versió inferior a la %2$s; la versió disponible és la %3$s.",
"The following platforms are supported: %s" : "S'admeten les plataformes següents: %s",
"Server version %s or higher is required." : "Cal la versió del servidor %s o superior.",
"Server version %s or lower is required." : "Cal una versió del servidor %s o inferior.",
"Logged in account must be an admin, a sub admin or gotten special right to access this setting" : "El compte que ha iniciat la sessió ha de ser administrador, subadministrador o tenir un dret especial per a accedir a aquest paràmetre",
"Logged in account must be an admin or sub admin" : "El compte que ha iniciat la sessió ha de ser administrador o subadministrador",
"Logged in account must be an admin" : "El compte que ha iniciat la sessió ha de ser administrador",
"Wiping of device %s has started" : "S'ha començat a esborrar el dispositiu %s",
"Wiping of device »%s« has started" : "S'ha començat a esborrar el dispositiu «%s»",
"»%s« started remote wipe" : "«%s» ha començat a esborrar dades en remot",
"Device or application »%s« has started the remote wipe process. You will receive another email once the process has finished" : "El dispositiu o aplicació «%s» ha començat a esborrar les dades en remot. Rebreu un altre correu quan s'enllesteixi el procés.",
"Wiping of device %s has finished" : "S'ha acabat d'esborrar el dispositiu %s",
"Wiping of device »%s« has finished" : "S'ha acabat d'esborrar el dispositiu «%s»",
"»%s« finished remote wipe" : "«%s» ha acabat d'esborrar dades en remot",
"Device or application »%s« has finished the remote wipe process." : "El dispositiu o aplicació «%s» ha acabat d'esborrar les dades en remot.",
"Remote wipe started" : "S'ha començat a esborrar en remot",
"A remote wipe was started on device %s" : "S'han començat a esborrar les dades del dispositiu %s en remot",
"Remote wipe finished" : "S'han acabat d'esborrar les dades en remot",
"The remote wipe on %s has finished" : "S'han acabat d'esborrar les dades del dispositiu %s en remot",
"Authentication" : "Autenticació",
"Unknown filetype" : "Tipus de fitxer desconegut",
"Invalid image" : "Imatge no vàlida",
"Avatar image is not square" : "La imatge de l'avatar no és quadrada",
"Files" : "Fitxers",
"View profile" : "Visualitza el perfil",
"Local time: %s" : "Hora local: %s",
"today" : "avui",
"tomorrow" : "demà",
"yesterday" : "ahir",
"_in %n day_::_in %n days_" : ["d'aquí a %n dia","d'aquí a %n dies"],
"_%n day ago_::_%n days ago_" : ["fa %n dia","fa %n dies"],
"next month" : "el mes vinent",
"last month" : "el mes passat",
"_in %n month_::_in %n months_" : ["d'aquí a %n mes","d'aquí a %n mesos"],
"_%n month ago_::_%n months ago_" : ["fa %n mes","fa %n mesos"],
"next year" : "l'any vinent",
"last year" : "l'any passat",
"_in %n year_::_in %n years_" : ["d'aquí a %n any","d'aquí a %n anys"],
"_%n year ago_::_%n years ago_" : ["fa %n any","fa %n anys"],
"_in %n hour_::_in %n hours_" : ["d'aquí a %n hora","d'aquí a %n hores"],
"_%n hour ago_::_%n hours ago_" : ["fa %n hora","fa %n hores"],
"_in %n minute_::_in %n minutes_" : ["d'aquí a %n minut","d'aquí a %n minuts"],
"_%n minute ago_::_%n minutes ago_" : ["fa %n minut","fa %n minuts"],
"in a few seconds" : "d'aquí a uns segons",
"seconds ago" : "fa uns segons",
"Empty file" : "Fitxer buit",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "El mòdul amb l'ID %s no existeix. Habiliteu-lo els paràmetres de les aplicacions o contacteu amb l'administrador.",
"File already exists" : "El fitxer ja existeix",
"Invalid path" : "El camí no és vàlid",
"Failed to create file from template" : "No s'ha pogut crear el fitxer a partir de la plantilla",
"Templates" : "Plantilles",
"File name is a reserved word" : "El nom del fitxer és una paraula reservada",
"File name contains at least one invalid character" : "El nom del fitxer conté almenys un caràcter no vàlid",
"File name is too long" : "El nom del fitxer és massa llarg",
"Dot files are not allowed" : "No es permeten els fitxers que comencen per un punt",
"Empty filename is not allowed" : "No es permeten els noms de fitxers buits",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "L'aplicació «%s» no es pot instal·lar perquè no es pot llegir el fitxer appinfo.",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "L'aplicació «%s» no es pot instal·lar perquè no és compatible amb aquesta versió del servidor.",
"__language_name__" : "Català",
"This is an automatically sent email, please do not reply." : "Això és un correu electrònic enviat automàticament, no el respongueu.",
"Help" : "Ajuda",
"Appearance and accessibility" : "Aspecte i accessibilitat",
"Apps" : "Aplicacions",
"Personal settings" : "Paràmetres personals",
"Administration settings" : "Paràmetres d'administració",
"Settings" : "Paràmetres",
"Log out" : "Tanca la sessió",
"Users" : "Usuaris",
"Email" : "Adreça electrònica",
"Mail %s" : "Envia un correu a %s",
"Fediverse" : "Fedivers",
"View %s on the fediverse" : "Visualitza %s en el fedivers",
"Phone" : "Telèfon",
"Call %s" : "Truca a %s",
"Twitter" : "Twitter",
"View %s on Twitter" : "Visualitza %s a Twitter",
"Website" : "Lloc web",
"Visit %s" : "Visita %s",
"Address" : "Adreça",
"Profile picture" : "Foto de perfil",
"About" : "Quant a",
"Display name" : "Nom de visualització",
"Headline" : "Capçalera",
"Organisation" : "Organització",
"Role" : "Càrrec",
"Unknown account" : "Compte desconegut",
"Additional settings" : "Paràmetres addicionals",
"Enter the database Login and name for %s" : "Introduïu l'inici de sessió i el nom de la base de dades per a %s",
"Enter the database Login for %s" : "Introduïu l'inici de sessió de la base de dades per a %s",
"Enter the database name for %s" : "Introduïu el nom de la base de dades per a %s",
"You cannot use dots in the database name %s" : "No podeu utilitzar punts en el nom de la base de dades %s",
"MySQL Login and/or password not valid" : "L'inici de sessió o la contrasenya del MySQL no són vàlids",
"You need to enter details of an existing account." : "Heu d'introduir els detalls d'un compte existent.",
"Oracle connection could not be established" : "No s'ha pogut establir la connexió amb Oracle",
"Oracle Login and/or password not valid" : "L'inici de sessió o la contrasenya d'Oracle no són vàlids",
"PostgreSQL Login and/or password not valid" : "L'inici de sessió o la contrasenya del PostgreSQL no són vàlids",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "El Mac OS X no s'admet i el %s no funcionarà correctament en aquesta plataforma. Utilitzeu-lo sota el vostre propi risc! ",
"For the best results, please consider using a GNU/Linux server instead." : "Per a obtenir els millors resultats, considereu la possibilitat d'utilitzar un servidor amb GNU/Linux.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Sembla que aquesta instància del %s s'està executant en un entorn del PHP de 32 bits i que s'ha configurat open_basedir en el fitxer php.ini. Això comportarà problemes amb els fitxers de més de 4 GB i és molt poc recomanable.",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Suprimiu el paràmetre open_basedir del fitxer php.ini o canvieu al PHP de 64 bits.",
"Set an admin Login." : "Definiu un inici de sessió per a l'administrador.",
"Set an admin password." : "Definiu una contrasenya per a l'administrador.",
"Cannot create or write into the data directory %s" : "No es pot crear la carpeta de dades %s ni escriure-hi",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El rerefons d'ús compartit %s ha d'implementar la interfície OCP\\Share_Backend",
"Sharing backend %s not found" : "No s'ha trobat el rerefons d'ús compartit %s",
"Sharing backend for %s not found" : "No s'ha trobat el rerefons d'ús compartit per a %s",
"%1$s shared »%2$s« with you and wants to add:" : "%1$s ha compartit «%2$s» amb vós i vol afegir:",
"%1$s shared »%2$s« with you and wants to add" : "%1$s ha compartit «%2$s» amb vós i vol afegir",
"»%s« added a note to a file shared with you" : "%s ha afegit una nota a un fitxer compartit amb vós",
"Open »%s«" : "Obre «%s»",
"%1$s via %2$s" : "%1$s mitjançant %2$s",
"You are not allowed to share %s" : "No podeu compartir %s",
"Cannot increase permissions of %s" : "No es poden augmentar els permisos de %s",
"Files cannot be shared with delete permissions" : "No es poden compartir fitxers amb permisos de supressió",
"Files cannot be shared with create permissions" : "No es poden compartir fitxers amb permisos de creació",
"Expiration date is in the past" : "La data de caducitat ja ha passat",
"_Cannot set expiration date more than %n day in the future_::_Cannot set expiration date more than %n days in the future_" : ["No es pot establir la data de caducitat més d'%n dia en el futur","No es pot establir la data de caducitat més de %n dies en el futur"],
"Sharing is only allowed with group members" : "Només es permet l'ús compartit amb membres del grup",
"Sharing %s failed, because this item is already shared with the account %s" : "No s'ha pogut compartir %s perquè l'element ja està compartit amb el compte %s",
"%1$s shared »%2$s« with you" : "%1$s ha compartit «%2$s» amb vós",
"%1$s shared »%2$s« with you." : "%1$s ha compartit «%2$s» amb vós.",
"Click the button below to open it." : "Feu clic en el botó següent per a obrir-ho.",
"The requested share does not exist anymore" : "L'element compartit sol·licitat ja no existeix",
"The requested share comes from a disabled user" : "L'element compartit sol·licitat prové d'un usuari inhabilitat",
"The user was not created because the user limit has been reached. Check your notifications to learn more." : "No s'ha creat l'usuari perquè s'ha assolit el límit d'usuaris. Consulteu les notificacions per a obtenir més informació.",
"Could not find category \"%s\"" : "No s'ha trobat la categoria «%s»",
"Sunday" : "Diumenge",
"Monday" : "Dilluns",
"Tuesday" : "Dimarts",
"Wednesday" : "Dimecres",
"Thursday" : "Dijous",
"Friday" : "Divendres",
"Saturday" : "Dissabte",
"Sun." : "Dg.",
"Mon." : "Dl.",
"Tue." : "Dt.",
"Wed." : "Dc.",
"Thu." : "Dj.",
"Fri." : "Dv.",
"Sat." : "Ds.",
"Su" : "Dg",
"Mo" : "Dl",
"Tu" : "Dt",
"We" : "Dc",
"Th" : "Dj",
"Fr" : "Dv",
"Sa" : "Ds",
"January" : "Gener",
"February" : "Febrer",
"March" : "Març",
"April" : "Abril",
"May" : "Maig",
"June" : "Juny",
"July" : "Juliol",
"August" : "Agost",
"September" : "Setembre",
"October" : "Octubre",
"November" : "Novembre",
"December" : "Desembre",
"Jan." : "Gen.",
"Feb." : "Febr.",
"Mar." : "Mar.",
"Apr." : "Abr.",
"May." : "Mai.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Ag.",
"Sep." : "Set.",
"Oct." : "Oct.",
"Nov." : "Nov.",
"Dec." : "Des.",
"A valid password must be provided" : "Heu de proporcionar una contrasenya vàlida",
"The Login is already being used" : "L'inici de sessió ja està en ús",
"Could not create account" : "No s'ha pogut crear el compte",
"Only the following characters are allowed in an Login: \"a-z\", \"A-Z\", \"0-9\", spaces and \"_.@-'\"" : "Només es permeten els caràcters següents en un inici de sessió: «a-z», «A-Z», «0-9», espais i «_.@-'»",
"A valid Login must be provided" : "Heu de proporcionar un inici de sessió vàlid",
"Login contains whitespace at the beginning or at the end" : "L'inici de sessió conté espais en blanc al principi o al final",
"Login must not consist of dots only" : "L'inici de sessió no pot estar format només per punts",
"Login is invalid because files already exist for this user" : "L'inici de sessió no és vàlid perquè ja existeixen fitxers per a aquest usuari",
"Account disabled" : "El compte està inhabilitat",
"Login canceled by app" : "L'aplicació ha cancel·lat l'inici de sessió",
"App \"%1$s\" cannot be installed because the following dependencies are not fulfilled: %2$s" : "L'aplicació «%1$s» no es pot instal·lar perquè no es compleixen les dependències següents: %2$s",
"a safe home for all your data" : "Un lloc segur per a totes les vostres dades",
"File is currently busy, please try again later" : "El fitxer està ocupat actualment; torneu-ho a provar més tard",
"Cannot download file" : "No es pot baixar el fitxer",
"Application is not enabled" : "L'aplicació no està habilitada",
"Authentication error" : "Error d'autenticació",
"Token expired. Please reload page." : "El testimoni ha caducat. Torneu a carregar la pàgina.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "No s'ha instal·lat cap controlador de bases de dades (sqlite, mysql o postgresql).",
"Cannot write into \"config\" directory." : "No es pot escriure en la carpeta «config».",
"This can usually be fixed by giving the web server write access to the config directory. See %s" : "Això normalment es pot solucionar donant al servidor web accés d'escriptura a la carpeta de configuració. Consulteu %s",
"Or, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it. See %s" : "O bé, si preferiu mantenir el fitxer config.php només de lectura, establir l'opció «config_is_read_only» com a «true». Consulteu %s",
"Cannot write into \"apps\" directory." : "No es pot escriure en la carpeta «apps».",
"This can usually be fixed by giving the web server write access to the apps directory or disabling the App Store in the config file." : "Això normalment pot solucionar donant al servidor web accés d'escriptura a la carpeta d'aplicacions o inhabilitant la botiga d'aplicacions en el fitxer de configuració.",
"Cannot create \"data\" directory." : "No es pot crear la carpeta «data».",
"This can usually be fixed by giving the web server write access to the root directory. See %s" : "Això normalment es pot solucionar donant accés d'escriptura al servidor web a la carpeta arrel. Consulteu %s",
"Permissions can usually be fixed by giving the web server write access to the root directory. See %s." : "Els permisos normalment es poden corregir donant accés d'escriptura al servidor web a la carpeta arrel. Consulteu %s.",
"Your data directory is not writable." : "No es pot escriure en la carpeta de dades.",
"Setting locale to %s failed." : "No s'ha pogut establir la configuració regional %s.",
"Please install one of these locales on your system and restart your web server." : "Instal·leu una d'aquestes configuracions regionals en el sistema i reinicieu el servidor web.",
"PHP module %s not installed." : "El mòdul del PHP %s no està instal·lat.",
"Please ask your server administrator to install the module." : "Demaneu a l'administrador del sistema que instal·li el mòdul.",
"PHP setting \"%s\" is not set to \"%s\"." : "El paràmetre del PHP «%s» no està establert en «%s».",
"Adjusting this setting in php.ini will make Nextcloud run again" : "Si ajusteu aquest paràmetre en el fitxer php.ini, el Nextcloud tornarà a funcionar",
"<code>mbstring.func_overload</code> is set to <code>%s</code> instead of the expected value <code>0</code>." : "<code>mbstring.func_overload</code> té el valor <code>%s</code> en comptes del valor esperat <code>0</code>.",
"To fix this issue set <code>mbstring.func_overload</code> to <code>0</code> in your php.ini." : "Per a resoldre aquest problema, establiu <code>mbstring.func_overload</code> en <code>0</code> en el fitxer php.ini.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "Sembla que el PHP està configurat per a suprimir els blocs de documentació entre línies. Això farà que diverses aplicacions principals no siguin accessibles.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Això probablement és provocat per un mecanisme de memòria cau o accelerador com Zend OPcache o eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "S'han instal·lat mòduls del PHP, però encara apareixen com si no hi fossin?",
"Please ask your server administrator to restart the web server." : "Demaneu a l'administrador que reiniciï el servidor web.",
"The required %s config variable is not configured in the config.php file." : "No s'ha configurat la variable obligatòria %s en el fitxer config.php.",
"Please ask your server administrator to check the Nextcloud configuration." : "Demaneu a l'administrador del servidor que comprovi la configuració del Nextcloud.",
"Your data directory is readable by other people." : "Altres persones poden llegir la carpeta de dades.",
"Please change the permissions to 0770 so that the directory cannot be listed by other people." : "Canvieu els permisos a 0770 perquè altres persones no puguin veure el contingut de la carpeta.",
"Your data directory must be an absolute path." : "La carpeta de dades ha de ser un camí absolut.",
"Check the value of \"datadirectory\" in your configuration." : "Comproveu el valor de «datadirectory» en la configuració.",
"Your data directory is invalid." : "La carpeta de dades no és vàlida.",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Assegureu-vos que hi hagi un fitxer anomenat «.ocdata» en l'arrel de la carpeta de dades.",
"Action \"%s\" not supported or implemented." : "L'acció «%s» no està admesa o implementada.",
"Authentication failed, wrong token or provider ID given" : "No s'ha pogut autenticar; s'ha proporcionat un testimoni o un ID de proveïdor incorrecte",
"Parameters missing in order to complete the request. Missing Parameters: \"%s\"" : "Falten paràmetres per a completar la sol·licitud. Els paràmetres que falten són: «%s»",
"ID \"%1$s\" already used by cloud federation provider \"%2$s\"" : "L'ID «%1$s» ja l'utilitza el proveïdor de federació del núvol «%2$s»",
"Cloud Federation Provider with ID: \"%s\" does not exist." : "El proveïdor de federació del núvol amb l'ID «%s» no existeix.",
"Could not obtain lock type %d on \"%s\"." : "No s'ha pogut obtenir el tipus de blocatge %d a «%s».",
"Storage unauthorized. %s" : "L'emmagatzematge no està autoritzat. %s",
"Storage incomplete configuration. %s" : "La configuració de l'emmagatzematge està incompleta. %s",
"Storage connection error. %s" : "S'ha produït un error de connexió amb l'emmagatzematge. %s",
"Storage is temporarily not available" : "L'emmagatzematge no està disponible temporalment",
"Storage connection timeout. %s" : "S'ha superat el temps d'espera de la connexió d'emmagatzematge. %s",
"Free prompt" : "Sol·licitud lliure",
"Runs an arbitrary prompt through the language model." : "Executa una sol·licitud arbitrària mitjançant el model de llengua.",
"Generate headline" : "Genera un titular",
"Generates a possible headline for a text." : "Genera un titular possible per a un text.",
"Summarize" : "Resumeix",
"Summarizes text by reducing its length without losing key information." : "Resumeix el text reduint-ne la longitud sense perdre la informació clau.",
"Extract topics" : "Extreu els temes",
"Extracts topics from a text and outputs them separated by commas." : "Extreu els temes d'un text i els retorna separats per comes.",
"The files of the app %1$s were not replaced correctly. Make sure it is a version compatible with the server." : "Els fitxers de l'aplicació %1$s no s'han substituït correctament. Assegureu-vos que sigui una versió compatible amb el servidor.",
"404" : "404",
"Logged in user must be an admin, a sub admin or gotten special right to access this setting" : "L'usuari que ha iniciat la sessió ha de ser administrador, subadministrador o tenir un dret especial per a accedir a aquest paràmetre",
"Logged in user must be an admin or sub admin" : "L'usuari que ha iniciat la sessió ha de ser administrador o subadministrador",
"Logged in user must be an admin" : "L'usuari que ha iniciat la sessió ha de ser administrador",
"Full name" : "Nom complet",
"Unknown user" : "Usuari desconegut",
"Enter the database username and name for %s" : "Introduïu el nom d'usuari i el nom de la base de dades per a %s",
"Enter the database username for %s" : "Introduïu el nom d'usuari de la base de dades per a %s",
"MySQL username and/or password not valid" : "El nom d'usuari o la contrasenya del MySQL no són vàlids",
"Oracle username and/or password not valid" : "El nom d'usuari o la contrasenya d'Oracle no són vàlids",
"PostgreSQL username and/or password not valid" : "El nom d'usuari o la contrasenya del PostgreSQL no són vàlids",
"Set an admin username." : "Definiu un nom d'usuari per a l'administrador.",
"Sharing %s failed, because this item is already shared with user %s" : "No s'ha pogut compartir %s perquè l'element ja està compartit amb l'usuari %s",
"The username is already being used" : "El nom d'usuari ja està en ús",
"Could not create user" : "No s'ha pogut crear l'usuari",
"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", spaces and \"_.@-'\"" : "Només es permeten els caràcters següents en un nom d'usuari: «a-z», «A-Z», «0-9», espais i «_.@-'»",
"A valid username must be provided" : "Heu de proporcionar un nom d'usuari vàlid",
"Username contains whitespace at the beginning or at the end" : "El nom d'usuari conté espais en blanc al principi o al final",
"Username must not consist of dots only" : "El nom d'usuari no pot estar format només per punts",
"Username is invalid because files already exist for this user" : "El nom d'usuari no és vàlid perquè ja existeixen fitxers per a aquest usuari",
"User disabled" : "Usuari inhabilitat",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Cal almenys libxml2 2.7.0. Actualment s'ha instal·lat %s.",
"To fix this issue update your libxml2 version and restart your web server." : "Per a resoldre aquest problema, actualitzeu la versió de libxml2 i reinicieu el servidor web.",
"PostgreSQL >= 9 required." : "Cal el PostgreSQL >= 9.",
"Please upgrade your database version." : "Actualitzeu la versió de la base de dades.",
"Your data directory is readable by other users." : "Els altres usuaris poden llegir la carpeta de dades.",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Canvieu els permisos a 0770 perquè els altres usuaris no puguin veure el contingut de la carpeta."
},
"nplurals=2; plural=(n != 1);");
+299
View File
@@ -0,0 +1,299 @@
{ "translations": {
"Cannot write into \"config\" directory!" : "No es pot escriure en la carpeta «config»!",
"This can usually be fixed by giving the web server write access to the config directory." : "Això normalment es pot solucionar donant al servidor web accés d'escriptura a la carpeta de configuració.",
"But, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it." : "O bé, si preferiu mantenir el fitxer config.php només de lectura, establir l'opció «config_is_read_only» com a «true».",
"See %s" : "Consulteu %s",
"Application %1$s is not present or has a non-compatible version with this server. Please check the apps directory." : "Falta l'aplicació %1$s o té una versió no compatible amb aquest servidor. Comproveu la carpeta d'aplicacions.",
"Sample configuration detected" : "S'ha detectat una configuració d'exemple",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "S'ha detectat que s'ha copiat la configuració d'exemple. Això no s'admet i pot malmetre la instal·lació. Llegiu la documentació abans d'aplicar cap canvi al fitxer config.php",
"The page could not be found on the server." : "No s'ha pogut trobar la pàgina en el servidor.",
"%s email verification" : "Verificació de l'adreça electrònica del %s",
"Email verification" : "Verificació de l'adreça electrònica",
"Click the following button to confirm your email." : "Feu clic en el botó següent per a confirmar la vostra adreça electrònica.",
"Click the following link to confirm your email." : "Feu clic en l'enllaç següent per a confirmar la vostra adreça electrònica.",
"Confirm your email" : "Confirma l'adreça electrònica",
"Other activities" : "Altres activitats",
"%1$s and %2$s" : "%1$s i %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s i %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s i %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s i %5$s",
"Education Edition" : "Edició educativa",
"Enterprise bundle" : "Paquet empresarial",
"Groupware bundle" : "Paquet de treball en grup",
"Hub bundle" : "Paquet Hub",
"Social sharing bundle" : "Paquet social",
"PHP %s or higher is required." : "Cal el PHP %s o superior.",
"PHP with a version lower than %s is required." : "Cal el PHP amb una versió inferior a la %s.",
"%sbit or higher PHP required." : "Cal el PHP de %s bits o superior.",
"The following architectures are supported: %s" : "S'admeten les arquitectures següents: %s",
"The following databases are supported: %s" : "S'admeten les bases de dades següents: %s",
"The command line tool %s could not be found" : "No s'ha trobat l'eina de línia d'ordres %s",
"The library %s is not available." : "La biblioteca %s no està disponible.",
"Library %1$s with a version higher than %2$s is required - available version %3$s." : "Cal la biblioteca %1$s amb una versió superior a la %2$s; la versió disponible és la %3$s.",
"Library %1$s with a version lower than %2$s is required - available version %3$s." : "Cal la biblioteca %1$s amb una versió inferior a la %2$s; la versió disponible és la %3$s.",
"The following platforms are supported: %s" : "S'admeten les plataformes següents: %s",
"Server version %s or higher is required." : "Cal la versió del servidor %s o superior.",
"Server version %s or lower is required." : "Cal una versió del servidor %s o inferior.",
"Logged in account must be an admin, a sub admin or gotten special right to access this setting" : "El compte que ha iniciat la sessió ha de ser administrador, subadministrador o tenir un dret especial per a accedir a aquest paràmetre",
"Logged in account must be an admin or sub admin" : "El compte que ha iniciat la sessió ha de ser administrador o subadministrador",
"Logged in account must be an admin" : "El compte que ha iniciat la sessió ha de ser administrador",
"Wiping of device %s has started" : "S'ha començat a esborrar el dispositiu %s",
"Wiping of device »%s« has started" : "S'ha començat a esborrar el dispositiu «%s»",
"»%s« started remote wipe" : "«%s» ha començat a esborrar dades en remot",
"Device or application »%s« has started the remote wipe process. You will receive another email once the process has finished" : "El dispositiu o aplicació «%s» ha començat a esborrar les dades en remot. Rebreu un altre correu quan s'enllesteixi el procés.",
"Wiping of device %s has finished" : "S'ha acabat d'esborrar el dispositiu %s",
"Wiping of device »%s« has finished" : "S'ha acabat d'esborrar el dispositiu «%s»",
"»%s« finished remote wipe" : "«%s» ha acabat d'esborrar dades en remot",
"Device or application »%s« has finished the remote wipe process." : "El dispositiu o aplicació «%s» ha acabat d'esborrar les dades en remot.",
"Remote wipe started" : "S'ha començat a esborrar en remot",
"A remote wipe was started on device %s" : "S'han començat a esborrar les dades del dispositiu %s en remot",
"Remote wipe finished" : "S'han acabat d'esborrar les dades en remot",
"The remote wipe on %s has finished" : "S'han acabat d'esborrar les dades del dispositiu %s en remot",
"Authentication" : "Autenticació",
"Unknown filetype" : "Tipus de fitxer desconegut",
"Invalid image" : "Imatge no vàlida",
"Avatar image is not square" : "La imatge de l'avatar no és quadrada",
"Files" : "Fitxers",
"View profile" : "Visualitza el perfil",
"Local time: %s" : "Hora local: %s",
"today" : "avui",
"tomorrow" : "demà",
"yesterday" : "ahir",
"_in %n day_::_in %n days_" : ["d'aquí a %n dia","d'aquí a %n dies"],
"_%n day ago_::_%n days ago_" : ["fa %n dia","fa %n dies"],
"next month" : "el mes vinent",
"last month" : "el mes passat",
"_in %n month_::_in %n months_" : ["d'aquí a %n mes","d'aquí a %n mesos"],
"_%n month ago_::_%n months ago_" : ["fa %n mes","fa %n mesos"],
"next year" : "l'any vinent",
"last year" : "l'any passat",
"_in %n year_::_in %n years_" : ["d'aquí a %n any","d'aquí a %n anys"],
"_%n year ago_::_%n years ago_" : ["fa %n any","fa %n anys"],
"_in %n hour_::_in %n hours_" : ["d'aquí a %n hora","d'aquí a %n hores"],
"_%n hour ago_::_%n hours ago_" : ["fa %n hora","fa %n hores"],
"_in %n minute_::_in %n minutes_" : ["d'aquí a %n minut","d'aquí a %n minuts"],
"_%n minute ago_::_%n minutes ago_" : ["fa %n minut","fa %n minuts"],
"in a few seconds" : "d'aquí a uns segons",
"seconds ago" : "fa uns segons",
"Empty file" : "Fitxer buit",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "El mòdul amb l'ID %s no existeix. Habiliteu-lo els paràmetres de les aplicacions o contacteu amb l'administrador.",
"File already exists" : "El fitxer ja existeix",
"Invalid path" : "El camí no és vàlid",
"Failed to create file from template" : "No s'ha pogut crear el fitxer a partir de la plantilla",
"Templates" : "Plantilles",
"File name is a reserved word" : "El nom del fitxer és una paraula reservada",
"File name contains at least one invalid character" : "El nom del fitxer conté almenys un caràcter no vàlid",
"File name is too long" : "El nom del fitxer és massa llarg",
"Dot files are not allowed" : "No es permeten els fitxers que comencen per un punt",
"Empty filename is not allowed" : "No es permeten els noms de fitxers buits",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "L'aplicació «%s» no es pot instal·lar perquè no es pot llegir el fitxer appinfo.",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "L'aplicació «%s» no es pot instal·lar perquè no és compatible amb aquesta versió del servidor.",
"__language_name__" : "Català",
"This is an automatically sent email, please do not reply." : "Això és un correu electrònic enviat automàticament, no el respongueu.",
"Help" : "Ajuda",
"Appearance and accessibility" : "Aspecte i accessibilitat",
"Apps" : "Aplicacions",
"Personal settings" : "Paràmetres personals",
"Administration settings" : "Paràmetres d'administració",
"Settings" : "Paràmetres",
"Log out" : "Tanca la sessió",
"Users" : "Usuaris",
"Email" : "Adreça electrònica",
"Mail %s" : "Envia un correu a %s",
"Fediverse" : "Fedivers",
"View %s on the fediverse" : "Visualitza %s en el fedivers",
"Phone" : "Telèfon",
"Call %s" : "Truca a %s",
"Twitter" : "Twitter",
"View %s on Twitter" : "Visualitza %s a Twitter",
"Website" : "Lloc web",
"Visit %s" : "Visita %s",
"Address" : "Adreça",
"Profile picture" : "Foto de perfil",
"About" : "Quant a",
"Display name" : "Nom de visualització",
"Headline" : "Capçalera",
"Organisation" : "Organització",
"Role" : "Càrrec",
"Unknown account" : "Compte desconegut",
"Additional settings" : "Paràmetres addicionals",
"Enter the database Login and name for %s" : "Introduïu l'inici de sessió i el nom de la base de dades per a %s",
"Enter the database Login for %s" : "Introduïu l'inici de sessió de la base de dades per a %s",
"Enter the database name for %s" : "Introduïu el nom de la base de dades per a %s",
"You cannot use dots in the database name %s" : "No podeu utilitzar punts en el nom de la base de dades %s",
"MySQL Login and/or password not valid" : "L'inici de sessió o la contrasenya del MySQL no són vàlids",
"You need to enter details of an existing account." : "Heu d'introduir els detalls d'un compte existent.",
"Oracle connection could not be established" : "No s'ha pogut establir la connexió amb Oracle",
"Oracle Login and/or password not valid" : "L'inici de sessió o la contrasenya d'Oracle no són vàlids",
"PostgreSQL Login and/or password not valid" : "L'inici de sessió o la contrasenya del PostgreSQL no són vàlids",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "El Mac OS X no s'admet i el %s no funcionarà correctament en aquesta plataforma. Utilitzeu-lo sota el vostre propi risc! ",
"For the best results, please consider using a GNU/Linux server instead." : "Per a obtenir els millors resultats, considereu la possibilitat d'utilitzar un servidor amb GNU/Linux.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Sembla que aquesta instància del %s s'està executant en un entorn del PHP de 32 bits i que s'ha configurat open_basedir en el fitxer php.ini. Això comportarà problemes amb els fitxers de més de 4 GB i és molt poc recomanable.",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Suprimiu el paràmetre open_basedir del fitxer php.ini o canvieu al PHP de 64 bits.",
"Set an admin Login." : "Definiu un inici de sessió per a l'administrador.",
"Set an admin password." : "Definiu una contrasenya per a l'administrador.",
"Cannot create or write into the data directory %s" : "No es pot crear la carpeta de dades %s ni escriure-hi",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El rerefons d'ús compartit %s ha d'implementar la interfície OCP\\Share_Backend",
"Sharing backend %s not found" : "No s'ha trobat el rerefons d'ús compartit %s",
"Sharing backend for %s not found" : "No s'ha trobat el rerefons d'ús compartit per a %s",
"%1$s shared »%2$s« with you and wants to add:" : "%1$s ha compartit «%2$s» amb vós i vol afegir:",
"%1$s shared »%2$s« with you and wants to add" : "%1$s ha compartit «%2$s» amb vós i vol afegir",
"»%s« added a note to a file shared with you" : "%s ha afegit una nota a un fitxer compartit amb vós",
"Open »%s«" : "Obre «%s»",
"%1$s via %2$s" : "%1$s mitjançant %2$s",
"You are not allowed to share %s" : "No podeu compartir %s",
"Cannot increase permissions of %s" : "No es poden augmentar els permisos de %s",
"Files cannot be shared with delete permissions" : "No es poden compartir fitxers amb permisos de supressió",
"Files cannot be shared with create permissions" : "No es poden compartir fitxers amb permisos de creació",
"Expiration date is in the past" : "La data de caducitat ja ha passat",
"_Cannot set expiration date more than %n day in the future_::_Cannot set expiration date more than %n days in the future_" : ["No es pot establir la data de caducitat més d'%n dia en el futur","No es pot establir la data de caducitat més de %n dies en el futur"],
"Sharing is only allowed with group members" : "Només es permet l'ús compartit amb membres del grup",
"Sharing %s failed, because this item is already shared with the account %s" : "No s'ha pogut compartir %s perquè l'element ja està compartit amb el compte %s",
"%1$s shared »%2$s« with you" : "%1$s ha compartit «%2$s» amb vós",
"%1$s shared »%2$s« with you." : "%1$s ha compartit «%2$s» amb vós.",
"Click the button below to open it." : "Feu clic en el botó següent per a obrir-ho.",
"The requested share does not exist anymore" : "L'element compartit sol·licitat ja no existeix",
"The requested share comes from a disabled user" : "L'element compartit sol·licitat prové d'un usuari inhabilitat",
"The user was not created because the user limit has been reached. Check your notifications to learn more." : "No s'ha creat l'usuari perquè s'ha assolit el límit d'usuaris. Consulteu les notificacions per a obtenir més informació.",
"Could not find category \"%s\"" : "No s'ha trobat la categoria «%s»",
"Sunday" : "Diumenge",
"Monday" : "Dilluns",
"Tuesday" : "Dimarts",
"Wednesday" : "Dimecres",
"Thursday" : "Dijous",
"Friday" : "Divendres",
"Saturday" : "Dissabte",
"Sun." : "Dg.",
"Mon." : "Dl.",
"Tue." : "Dt.",
"Wed." : "Dc.",
"Thu." : "Dj.",
"Fri." : "Dv.",
"Sat." : "Ds.",
"Su" : "Dg",
"Mo" : "Dl",
"Tu" : "Dt",
"We" : "Dc",
"Th" : "Dj",
"Fr" : "Dv",
"Sa" : "Ds",
"January" : "Gener",
"February" : "Febrer",
"March" : "Març",
"April" : "Abril",
"May" : "Maig",
"June" : "Juny",
"July" : "Juliol",
"August" : "Agost",
"September" : "Setembre",
"October" : "Octubre",
"November" : "Novembre",
"December" : "Desembre",
"Jan." : "Gen.",
"Feb." : "Febr.",
"Mar." : "Mar.",
"Apr." : "Abr.",
"May." : "Mai.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Ag.",
"Sep." : "Set.",
"Oct." : "Oct.",
"Nov." : "Nov.",
"Dec." : "Des.",
"A valid password must be provided" : "Heu de proporcionar una contrasenya vàlida",
"The Login is already being used" : "L'inici de sessió ja està en ús",
"Could not create account" : "No s'ha pogut crear el compte",
"Only the following characters are allowed in an Login: \"a-z\", \"A-Z\", \"0-9\", spaces and \"_.@-'\"" : "Només es permeten els caràcters següents en un inici de sessió: «a-z», «A-Z», «0-9», espais i «_.@-'»",
"A valid Login must be provided" : "Heu de proporcionar un inici de sessió vàlid",
"Login contains whitespace at the beginning or at the end" : "L'inici de sessió conté espais en blanc al principi o al final",
"Login must not consist of dots only" : "L'inici de sessió no pot estar format només per punts",
"Login is invalid because files already exist for this user" : "L'inici de sessió no és vàlid perquè ja existeixen fitxers per a aquest usuari",
"Account disabled" : "El compte està inhabilitat",
"Login canceled by app" : "L'aplicació ha cancel·lat l'inici de sessió",
"App \"%1$s\" cannot be installed because the following dependencies are not fulfilled: %2$s" : "L'aplicació «%1$s» no es pot instal·lar perquè no es compleixen les dependències següents: %2$s",
"a safe home for all your data" : "Un lloc segur per a totes les vostres dades",
"File is currently busy, please try again later" : "El fitxer està ocupat actualment; torneu-ho a provar més tard",
"Cannot download file" : "No es pot baixar el fitxer",
"Application is not enabled" : "L'aplicació no està habilitada",
"Authentication error" : "Error d'autenticació",
"Token expired. Please reload page." : "El testimoni ha caducat. Torneu a carregar la pàgina.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "No s'ha instal·lat cap controlador de bases de dades (sqlite, mysql o postgresql).",
"Cannot write into \"config\" directory." : "No es pot escriure en la carpeta «config».",
"This can usually be fixed by giving the web server write access to the config directory. See %s" : "Això normalment es pot solucionar donant al servidor web accés d'escriptura a la carpeta de configuració. Consulteu %s",
"Or, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it. See %s" : "O bé, si preferiu mantenir el fitxer config.php només de lectura, establir l'opció «config_is_read_only» com a «true». Consulteu %s",
"Cannot write into \"apps\" directory." : "No es pot escriure en la carpeta «apps».",
"This can usually be fixed by giving the web server write access to the apps directory or disabling the App Store in the config file." : "Això normalment pot solucionar donant al servidor web accés d'escriptura a la carpeta d'aplicacions o inhabilitant la botiga d'aplicacions en el fitxer de configuració.",
"Cannot create \"data\" directory." : "No es pot crear la carpeta «data».",
"This can usually be fixed by giving the web server write access to the root directory. See %s" : "Això normalment es pot solucionar donant accés d'escriptura al servidor web a la carpeta arrel. Consulteu %s",
"Permissions can usually be fixed by giving the web server write access to the root directory. See %s." : "Els permisos normalment es poden corregir donant accés d'escriptura al servidor web a la carpeta arrel. Consulteu %s.",
"Your data directory is not writable." : "No es pot escriure en la carpeta de dades.",
"Setting locale to %s failed." : "No s'ha pogut establir la configuració regional %s.",
"Please install one of these locales on your system and restart your web server." : "Instal·leu una d'aquestes configuracions regionals en el sistema i reinicieu el servidor web.",
"PHP module %s not installed." : "El mòdul del PHP %s no està instal·lat.",
"Please ask your server administrator to install the module." : "Demaneu a l'administrador del sistema que instal·li el mòdul.",
"PHP setting \"%s\" is not set to \"%s\"." : "El paràmetre del PHP «%s» no està establert en «%s».",
"Adjusting this setting in php.ini will make Nextcloud run again" : "Si ajusteu aquest paràmetre en el fitxer php.ini, el Nextcloud tornarà a funcionar",
"<code>mbstring.func_overload</code> is set to <code>%s</code> instead of the expected value <code>0</code>." : "<code>mbstring.func_overload</code> té el valor <code>%s</code> en comptes del valor esperat <code>0</code>.",
"To fix this issue set <code>mbstring.func_overload</code> to <code>0</code> in your php.ini." : "Per a resoldre aquest problema, establiu <code>mbstring.func_overload</code> en <code>0</code> en el fitxer php.ini.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "Sembla que el PHP està configurat per a suprimir els blocs de documentació entre línies. Això farà que diverses aplicacions principals no siguin accessibles.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Això probablement és provocat per un mecanisme de memòria cau o accelerador com Zend OPcache o eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "S'han instal·lat mòduls del PHP, però encara apareixen com si no hi fossin?",
"Please ask your server administrator to restart the web server." : "Demaneu a l'administrador que reiniciï el servidor web.",
"The required %s config variable is not configured in the config.php file." : "No s'ha configurat la variable obligatòria %s en el fitxer config.php.",
"Please ask your server administrator to check the Nextcloud configuration." : "Demaneu a l'administrador del servidor que comprovi la configuració del Nextcloud.",
"Your data directory is readable by other people." : "Altres persones poden llegir la carpeta de dades.",
"Please change the permissions to 0770 so that the directory cannot be listed by other people." : "Canvieu els permisos a 0770 perquè altres persones no puguin veure el contingut de la carpeta.",
"Your data directory must be an absolute path." : "La carpeta de dades ha de ser un camí absolut.",
"Check the value of \"datadirectory\" in your configuration." : "Comproveu el valor de «datadirectory» en la configuració.",
"Your data directory is invalid." : "La carpeta de dades no és vàlida.",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Assegureu-vos que hi hagi un fitxer anomenat «.ocdata» en l'arrel de la carpeta de dades.",
"Action \"%s\" not supported or implemented." : "L'acció «%s» no està admesa o implementada.",
"Authentication failed, wrong token or provider ID given" : "No s'ha pogut autenticar; s'ha proporcionat un testimoni o un ID de proveïdor incorrecte",
"Parameters missing in order to complete the request. Missing Parameters: \"%s\"" : "Falten paràmetres per a completar la sol·licitud. Els paràmetres que falten són: «%s»",
"ID \"%1$s\" already used by cloud federation provider \"%2$s\"" : "L'ID «%1$s» ja l'utilitza el proveïdor de federació del núvol «%2$s»",
"Cloud Federation Provider with ID: \"%s\" does not exist." : "El proveïdor de federació del núvol amb l'ID «%s» no existeix.",
"Could not obtain lock type %d on \"%s\"." : "No s'ha pogut obtenir el tipus de blocatge %d a «%s».",
"Storage unauthorized. %s" : "L'emmagatzematge no està autoritzat. %s",
"Storage incomplete configuration. %s" : "La configuració de l'emmagatzematge està incompleta. %s",
"Storage connection error. %s" : "S'ha produït un error de connexió amb l'emmagatzematge. %s",
"Storage is temporarily not available" : "L'emmagatzematge no està disponible temporalment",
"Storage connection timeout. %s" : "S'ha superat el temps d'espera de la connexió d'emmagatzematge. %s",
"Free prompt" : "Sol·licitud lliure",
"Runs an arbitrary prompt through the language model." : "Executa una sol·licitud arbitrària mitjançant el model de llengua.",
"Generate headline" : "Genera un titular",
"Generates a possible headline for a text." : "Genera un titular possible per a un text.",
"Summarize" : "Resumeix",
"Summarizes text by reducing its length without losing key information." : "Resumeix el text reduint-ne la longitud sense perdre la informació clau.",
"Extract topics" : "Extreu els temes",
"Extracts topics from a text and outputs them separated by commas." : "Extreu els temes d'un text i els retorna separats per comes.",
"The files of the app %1$s were not replaced correctly. Make sure it is a version compatible with the server." : "Els fitxers de l'aplicació %1$s no s'han substituït correctament. Assegureu-vos que sigui una versió compatible amb el servidor.",
"404" : "404",
"Logged in user must be an admin, a sub admin or gotten special right to access this setting" : "L'usuari que ha iniciat la sessió ha de ser administrador, subadministrador o tenir un dret especial per a accedir a aquest paràmetre",
"Logged in user must be an admin or sub admin" : "L'usuari que ha iniciat la sessió ha de ser administrador o subadministrador",
"Logged in user must be an admin" : "L'usuari que ha iniciat la sessió ha de ser administrador",
"Full name" : "Nom complet",
"Unknown user" : "Usuari desconegut",
"Enter the database username and name for %s" : "Introduïu el nom d'usuari i el nom de la base de dades per a %s",
"Enter the database username for %s" : "Introduïu el nom d'usuari de la base de dades per a %s",
"MySQL username and/or password not valid" : "El nom d'usuari o la contrasenya del MySQL no són vàlids",
"Oracle username and/or password not valid" : "El nom d'usuari o la contrasenya d'Oracle no són vàlids",
"PostgreSQL username and/or password not valid" : "El nom d'usuari o la contrasenya del PostgreSQL no són vàlids",
"Set an admin username." : "Definiu un nom d'usuari per a l'administrador.",
"Sharing %s failed, because this item is already shared with user %s" : "No s'ha pogut compartir %s perquè l'element ja està compartit amb l'usuari %s",
"The username is already being used" : "El nom d'usuari ja està en ús",
"Could not create user" : "No s'ha pogut crear l'usuari",
"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", spaces and \"_.@-'\"" : "Només es permeten els caràcters següents en un nom d'usuari: «a-z», «A-Z», «0-9», espais i «_.@-'»",
"A valid username must be provided" : "Heu de proporcionar un nom d'usuari vàlid",
"Username contains whitespace at the beginning or at the end" : "El nom d'usuari conté espais en blanc al principi o al final",
"Username must not consist of dots only" : "El nom d'usuari no pot estar format només per punts",
"Username is invalid because files already exist for this user" : "El nom d'usuari no és vàlid perquè ja existeixen fitxers per a aquest usuari",
"User disabled" : "Usuari inhabilitat",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Cal almenys libxml2 2.7.0. Actualment s'ha instal·lat %s.",
"To fix this issue update your libxml2 version and restart your web server." : "Per a resoldre aquest problema, actualitzeu la versió de libxml2 i reinicieu el servidor web.",
"PostgreSQL >= 9 required." : "Cal el PostgreSQL >= 9.",
"Please upgrade your database version." : "Actualitzeu la versió de la base de dades.",
"Your data directory is readable by other users." : "Els altres usuaris poden llegir la carpeta de dades.",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Canvieu els permisos a 0770 perquè els altres usuaris no puguin veure el contingut de la carpeta."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}
+280
View File
@@ -0,0 +1,280 @@
OC.L10N.register(
"lib",
{
"Cannot write into \"config\" directory!" : "Nedaří se zapisovat do adresáře „config“!",
"This can usually be fixed by giving the web server write access to the config directory." : "Toto je obvykle možné vyřešit udělením webovému serveru oprávnění k zápisu do adresáře s nastaveními.",
"But, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it." : "Ale, pokud chcete mít soubor config.php pouze pro čtení, nastavte v něm volbu „config_is_read_only“ na hodnotu true.",
"See %s" : "Viz %s",
"Application %1$s is not present or has a non-compatible version with this server. Please check the apps directory." : "Aplikace %1$s není přítomná nebo její verze není kompatibilní s tímto serverem. Zkontrolujte složku s aplikacemi. ",
"Sample configuration detected" : "Bylo zjištěno setrvání u předváděcího nastavení",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Pravděpodobně byla zkopírována nastavení ze vzorových souborů. Toto není podporováno a může poškodit vaši instalaci. Před prováděním změn v souboru config.php si přečtěte dokumentaci",
"The page could not be found on the server." : "Stránka nebyla na serveru nalezena.",
"%s email verification" : "%s ověřování e-mailem",
"Email verification" : "Ověřování e-mailem",
"Click the following button to confirm your email." : "Pokud chcete potvrdit svůj e-mail, klikněte na následující tlačítko.",
"Click the following link to confirm your email." : "Pokud chcete potvrdit svůj e-mail, klikněte na následující odkaz.",
"Confirm your email" : "Potvrďte svůj e-mail",
"Other activities" : "Ostatní aktivity",
"%1$s and %2$s" : "%1$s a %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s a %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s a %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s a %5$s",
"Education Edition" : "Vydání pro vzdělávací instituce",
"Enterprise bundle" : "Sada pro organizace",
"Groupware bundle" : "Sada pro podporu spolupráce",
"Hub bundle" : "Sada pro centrum aktivity (hub)",
"Social sharing bundle" : "Balíček pro sdílení na sociálních sítích",
"PHP %s or higher is required." : "Je vyžadováno PHP %s nebo novější.",
"PHP with a version lower than %s is required." : "Je vyžadováno PHP ve verzi starší než %s.",
"%sbit or higher PHP required." : "Je vyžadováno PHP %sbit nebo vyšší.",
"The following architectures are supported: %s" : "Jsou podporovány následující architektury: %s",
"The following databases are supported: %s" : "Jsou podporovány následující databáze: %s",
"The command line tool %s could not be found" : "Nástroj příkazového řádku %s nebyl nalezen",
"The library %s is not available." : "Knihovna %s není k dispozici.",
"Library %1$s with a version higher than %2$s is required - available version %3$s." : "Je vyžadována knihovna %1$s novější verze než %2$s verze k dispozici je %3$s.",
"Library %1$s with a version lower than %2$s is required - available version %3$s." : "Je vyžadována knihovna %1$s verzi nižší než %2$s dostupná verze %3$s.",
"The following platforms are supported: %s" : "Jsou podporovány následující systémy: %s",
"Server version %s or higher is required." : "Je potřeba verze serveru %s nebo novější.",
"Server version %s or lower is required." : "Je potřeba verze serveru %s nebo starší.",
"Wiping of device %s has started" : "Vymazávání ze zařízení %s zahájeno",
"Wiping of device »%s« has started" : "Vymazávání ze zařízení „%s“ zahájeno",
"»%s« started remote wipe" : "„%s“ zahájilo vymazávání na dálku",
"Device or application »%s« has started the remote wipe process. You will receive another email once the process has finished" : "Přístroj či aplikace »%s« spustila proces vzdáleného vymazání. Obdržíte další e-mail poté co bude proces ukončen",
"Wiping of device %s has finished" : "Vymazávání ze zařízení %s dokončeno",
"Wiping of device »%s« has finished" : "Vymazávání ze zařízení „%s“ dokončeno",
"»%s« finished remote wipe" : "„%s“ dokončilo vymazání na dálku",
"Device or application »%s« has finished the remote wipe process." : "Přístroj či aplikace „%s“ dokončila proces vymazání na dálku.",
"Remote wipe started" : "Vymazání na dálku zahájeno",
"A remote wipe was started on device %s" : "Na zařízení %s bylo spuštěno vymazání na dálku",
"Remote wipe finished" : "Vymazání na dálku dokončeno",
"The remote wipe on %s has finished" : "Vymazání %s na dálku dokončeno",
"Authentication" : "Ověření",
"Unknown filetype" : "Neznámý typ souboru",
"Invalid image" : "Neplatný obrázek",
"Avatar image is not square" : "Profilový obrázek není čtvercový",
"Files" : "Soubory",
"View profile" : "Zobrazit profil ",
"Local time: %s" : "Místní čas: %s",
"today" : "dnes",
"tomorrow" : "zítra",
"yesterday" : "včera",
"_in %n day_::_in %n days_" : ["během %n dne","během %n dnů","během %n dnů","během %n dnů"],
"_%n day ago_::_%n days ago_" : ["včera","před %n dny","před %n dny","před %n dny"],
"next month" : "následující měsíc",
"last month" : "minulý měsíc",
"_in %n month_::_in %n months_" : ["během %n měsíce","během %n měsíců","během %n měsíců","během %n měsíců"],
"_%n month ago_::_%n months ago_" : ["před %n měsícem","před %n měsíci","před %n měsíci","před %n měsíci"],
"next year" : "následující rok",
"last year" : "minulý rok",
"_in %n year_::_in %n years_" : ["během %n roku","během %n let","během %n let","během %n let"],
"_%n year ago_::_%n years ago_" : ["před rokem","před %n lety","před %n lety","před %n lety"],
"_in %n hour_::_in %n hours_" : ["během %n hodiny","během %n hodin","během %n hodin","během %n hodin"],
"_%n hour ago_::_%n hours ago_" : ["před %n hodinou","před %n hodinami","před %n hodinami","před %n hodinami"],
"_in %n minute_::_in %n minutes_" : ["během %n minuty","během %n minut","během %n minut","během %n minut"],
"_%n minute ago_::_%n minutes ago_" : ["před minutou","před %n minutami","před %n minutami","před %n minutami"],
"in a few seconds" : "během několika sekund",
"seconds ago" : "před pár sekundami",
"Empty file" : "Prázdný soubor",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "Modul s identifikátorem: %s neexistuje. Povolte ho v nastavení aplikací, nebo se obraťte na správce.",
"File already exists" : "Soubor už existuje",
"Invalid path" : "Neplatný popis umístění",
"Failed to create file from template" : "Vytvoření souboru ze šablony se nezdařilo",
"Templates" : "Šablony",
"File name is a reserved word" : "Název souboru je rezervované slovo",
"File name contains at least one invalid character" : "Název souboru obsahuje přinejmenším jeden neplatný znak",
"File name is too long" : "Název souboru je příliš dlouhý",
"Dot files are not allowed" : "Názvy souborů, začínající na tečku nejsou dovolené",
"Empty filename is not allowed" : "Je třeba vyplnit název souboru",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "Aplikace „%s“ nemůže být nainstalována protože soubor appinfo nelze přečíst.",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "Aplikaci „%s“ nelze nainstalovat, protože není kompatibilní s touto verzí serveru.",
"__language_name__" : "Čeština",
"This is an automatically sent email, please do not reply." : "Toto je automaticky odesílaný e-mail, neodpovídejte na něj.",
"Help" : "Nápověda",
"Appearance and accessibility" : "Vzhled a zpřístupnění",
"Apps" : "Aplikace",
"Personal settings" : "Osobní nastavení",
"Administration settings" : "Nastavení pro správu",
"Settings" : "Nastavení",
"Log out" : "Odhlásit se",
"Users" : "Uživatelé",
"Email" : "E-mail",
"Mail %s" : "Poslat e-mail %s",
"Fediverse" : "Fediverse",
"View %s on the fediverse" : "Zobrazit %s na fediverse",
"Phone" : "Telefon",
"Call %s" : "Zavolat %s",
"Twitter" : "Twitter",
"View %s on Twitter" : "Zobrazit %s na Twitteru",
"Website" : "Webová stránka",
"Visit %s" : "Navštívit %s",
"Address" : "Adresa",
"Profile picture" : "Profilový obrázek",
"About" : "O uživateli",
"Display name" : "Zobrazované jméno",
"Headline" : "Nadpis",
"Organisation" : "Organizace",
"Role" : "Role",
"Additional settings" : "Další nastavení",
"Enter the database name for %s" : "Zadejte název databáze pro %s",
"You cannot use dots in the database name %s" : "V názvu databáze %s není možné použít tečky",
"You need to enter details of an existing account." : "Je třeba zadat podrobnosti existujícího účtu.",
"Oracle connection could not be established" : "Spojení s Oracle nemohlo být navázáno",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "macOS není podporován a %s nebude na této platformě správně fungovat. Používejte pouze na vlastní nebezpečí!",
"For the best results, please consider using a GNU/Linux server instead." : "Místo toho zvažte pro nejlepší funkčnost použití GNU/Linux serveru.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Zdá se, že tato instance %s je provozována v 32-bitovém PHP prostředí a v php.ini je nastavena volba open_basedir. Toto povede k problémům se soubory většími než 4 GB a silně není doporučováno.",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Odstraňte z php.ini nastavení volby open_basedir nebo přejděte na 64-bitové PHP.",
"Set an admin password." : "Nastavte heslo pro účet správce.",
"Cannot create or write into the data directory %s" : "Nedaří se vytvořit nebo zapisovat do datového adresáře %s",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Je třeba, aby podpůrná vrstva pro sdílení %s implementovala rozhraní OCP\\Share_Backend",
"Sharing backend %s not found" : "Podpůrná vrstva pro sdílení %s nenalezena",
"Sharing backend for %s not found" : "Úložiště sdílení pro %s nenalezeno",
"%1$s shared »%2$s« with you and wants to add:" : "%1$s sdílí „%2$s“ a dodává:",
"%1$s shared »%2$s« with you and wants to add" : "%1$s sdílí „%2$s“ a dodává",
"»%s« added a note to a file shared with you" : "„%s“ dodává poznámku k nasdílenému souboru ",
"Open »%s«" : "Otevřít „%s“",
"%1$s via %2$s" : "%1$s prostřednictvím %2$s",
"You are not allowed to share %s" : "Nemáte povoleno sdílet %s",
"Cannot increase permissions of %s" : "Nelze navýšit oprávnění u %s",
"Files cannot be shared with delete permissions" : "Soubory nelze sdílet s oprávněními k odstranění",
"Files cannot be shared with create permissions" : "Soubory nelze sdílet s oprávněními k vytváření",
"Expiration date is in the past" : "Datum skončení platnosti je v minulosti",
"_Cannot set expiration date more than %n day in the future_::_Cannot set expiration date more than %n days in the future_" : ["Datum vypršení nelze nastavit na více než %n den do budoucnosti","Datum vypršení nelze nastavit na více než %n dny do budoucnosti","Datum vypršení nelze nastavit na více než %n dnů do budoucnosti","Datum vypršení nelze nastavit na více než %n dny do budoucnosti"],
"Sharing is only allowed with group members" : "Je povoleno pouze sdílení s členy skupiny",
"%1$s shared »%2$s« with you" : "%1$s vám sdílí „%2$s“",
"%1$s shared »%2$s« with you." : "%1$s vám nasdílel(a) „%2$s“.",
"Click the button below to open it." : "Pro otevření klikněte na tlačítko níže.",
"The requested share does not exist anymore" : "Požadované sdílení už neexistuje",
"The requested share comes from a disabled user" : "Požadované sdílení pochází od vypnutého uživatelského účtu",
"The user was not created because the user limit has been reached. Check your notifications to learn more." : "Uživatel nebyl vytvořen protože bylo dosaženo limitu počtu uživatelů. Více se dozvíte v upozorněních.",
"Could not find category \"%s\"" : "Nedaří se nalézt kategorii „%s“",
"Sunday" : "neděle",
"Monday" : "pondělí",
"Tuesday" : "úterý",
"Wednesday" : "středa",
"Thursday" : "čtvrtek",
"Friday" : "pátek",
"Saturday" : "sobota",
"Sun." : "ne",
"Mon." : "po",
"Tue." : "út",
"Wed." : "st",
"Thu." : "čt",
"Fri." : "pá",
"Sat." : "so",
"Su" : "ne",
"Mo" : "po",
"Tu" : "út",
"We" : "st",
"Th" : "čt",
"Fr" : "pá",
"Sa" : "so",
"January" : "leden",
"February" : "únor",
"March" : "březen",
"April" : "duben",
"May" : "květen",
"June" : "červen",
"July" : "červenec",
"August" : "srpen",
"September" : "září",
"October" : "říjen",
"November" : "listopad",
"December" : "prosinec",
"Jan." : "led.",
"Feb." : "úno.",
"Mar." : "bře.",
"Apr." : "dub.",
"May." : "kvě.",
"Jun." : "čvn.",
"Jul." : "čvc.",
"Aug." : "srp.",
"Sep." : "zář.",
"Oct." : "říj.",
"Nov." : "list.",
"Dec." : "pro.",
"A valid password must be provided" : "Je třeba zadat platné heslo",
"Login canceled by app" : "Přihlášení zrušeno aplikací",
"App \"%1$s\" cannot be installed because the following dependencies are not fulfilled: %2$s" : "Aplikaci „%1$s“ nelze nainstalovat, protože nejsou splněny následující závislosti: %2$s",
"a safe home for all your data" : "bezpečný domov pro všechna vaše data",
"File is currently busy, please try again later" : "Soubor je nyní používán, zkuste to později",
"Cannot download file" : "Soubor se nedaří stáhnout",
"Application is not enabled" : "Aplikace není povolena",
"Authentication error" : "Chyba při ověřování se",
"Token expired. Please reload page." : "Platnost tokenu skončila. Načtěte stránku znovu.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "Nejsou nainstalovány ovladače databází (sqlite, mysql nebo postresql).",
"Cannot write into \"config\" directory." : "Nedaří se zapisovat do adresáře „config“.",
"This can usually be fixed by giving the web server write access to the config directory. See %s" : "Toto obvykle lze vyřešit udělením oprávnění k zápisu do kořenové složky webu pro účet, pod kterým je provozován webový server. Viz %s",
"Or, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it. See %s" : "Nebo, pokud chcete mít soubor config.php pouze pro čtení, nastavte v něm volbu „config_is_read_only“ na hodnotu true. Viz %s",
"Cannot write into \"apps\" directory." : "Nedaří se zapisovat do adresáře „apps“.",
"This can usually be fixed by giving the web server write access to the apps directory or disabling the App Store in the config file." : "Toto je obvykle možné napravit udělením přístupu ke čtení adresáře s aplikací pro webový server nebo vypnutím katalogu s aplikacemi v souboru s nastaveními.",
"Cannot create \"data\" directory." : "Nedaří se vytvořit adresář „data“.",
"This can usually be fixed by giving the web server write access to the root directory. See %s" : "Toto obvykle lze vyřešit udělením oprávnění k zápisu do kořenové složky webu pro účet, pod kterým je provozován webový server. Viz %s",
"Permissions can usually be fixed by giving the web server write access to the root directory. See %s." : "Oprávnění lze obvykle napravit umožněním zápisu do kořene webu pro účet, pod kterým je provozován webový server. Viz %s.",
"Your data directory is not writable." : "Adresář data není přístupný pro zápis.",
"Setting locale to %s failed." : "Nastavení místních a jazykových nastavení na %s se nezdařilo.",
"Please install one of these locales on your system and restart your web server." : "Do svého systému nainstalujte alespoň jeden z těchto jazyků a restartujte webový server.",
"PHP module %s not installed." : "PHP modul %s není nainstalován.",
"Please ask your server administrator to install the module." : "Požádejte správce serveru, který využíváte o instalaci tohoto modulu.",
"PHP setting \"%s\" is not set to \"%s\"." : "Hodnota v konfiguraci PHP „%s“ není nastavená na „%s“.",
"Adjusting this setting in php.ini will make Nextcloud run again" : "Úprava tohoto nastavení v php.ini umožní Nextcloud opět zprovoznit",
"<code>mbstring.func_overload</code> is set to <code>%s</code> instead of the expected value <code>0</code>." : "<code>mbstring.func_overload</code> je nastaveno na <code>%s</code> namísto očekávané hodnoty <code>0</code>.",
"To fix this issue set <code>mbstring.func_overload</code> to <code>0</code> in your php.ini." : "Pro nápravu nastavte v souboru php.ini parametr <code>mbstring.func_overload</code> na <code>0</code>.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "PHP je patrně nastaveno tak, aby odstraňovalo bloky komentářů. Toto bude mít za následek znepřístupnění mnoha důležitých aplikací.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Toto je pravděpodobně způsobeno aplikacemi pro urychlení načítání jako jsou Zend OPcache nebo eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "PHP moduly jsou nainstalovány, přesto jsou uváděny jako chybějící?",
"Please ask your server administrator to restart the web server." : "Požádejte správce serveru, který využíváte o restart webového serveru.",
"The required %s config variable is not configured in the config.php file." : "Požadovaná proměnná nastavení %s není v souboru s nastaveními config.php nastavena.",
"Please ask your server administrator to check the Nextcloud configuration." : "Požádejte správce serveru, který využíváte, aby zkontroloval nastavení serveru.",
"Your data directory must be an absolute path." : "Je třeba, aby váš adresář data byl zadán jako úplný popis umístění.",
"Check the value of \"datadirectory\" in your configuration." : "Zkontrolujte hodnotu „datadirectory“ ve svém nastavení.",
"Your data directory is invalid." : "Váš adresář data není platný.",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Ověřte, že v kořeni datového adresáře je soubor s názvem „.ocdata“.",
"Action \"%s\" not supported or implemented." : "Akce „%s“ není podporována nebo implementována.",
"Authentication failed, wrong token or provider ID given" : "Ověření se nezdařilo, předán chybný token nebo identifikátor poskytovatele",
"Parameters missing in order to complete the request. Missing Parameters: \"%s\"" : "Pro dokončení požadavku chybí parametry. Konkrétně: „%s“",
"ID \"%1$s\" already used by cloud federation provider \"%2$s\"" : "Identifikátor „%1$s“ už je používán poskytovatelem federování cloudu „%2$s“",
"Cloud Federation Provider with ID: \"%s\" does not exist." : "Poskytovatel federování cloudů s identifikátorem: „%s“ neexistuje",
"Could not obtain lock type %d on \"%s\"." : "Nedaří získat zámek typu %d na „%s“.",
"Storage unauthorized. %s" : "Úložiště neověřeno. %s",
"Storage incomplete configuration. %s" : "Neúplné nastavení pro úložiště. %s",
"Storage connection error. %s" : "Chyba připojení úložiště. %s",
"Storage is temporarily not available" : "Úložiště je dočasně nedostupné",
"Storage connection timeout. %s" : "Překročen časový limit připojování k úložišti. %s",
"Free prompt" : "Prompt zdarma",
"Runs an arbitrary prompt through the language model." : "Spouští libovolnou výzvu skrze jazykový model.",
"Generate headline" : "Vytvořit nadpis",
"Generates a possible headline for a text." : "Vytvoří možný nadpis pro text.",
"Summarize" : "Stručný souhrn",
"Summarizes text by reducing its length without losing key information." : "Vytvoří stručný souhrn textu tím, že zkrátí jeho délku aniž by byly ztraceny klíčové informace",
"Extract topics" : "Vyzískat témata",
"Extracts topics from a text and outputs them separated by commas." : "Vyzíská témata z textu a vypíše je oddělované čárkami.",
"The files of the app %1$s were not replaced correctly. Make sure it is a version compatible with the server." : "Soubory aplikace %1$s nebyly nahrazeny řádně. Ověřte, že se jedná o verzi, která je kompatibilní se serverem.",
"404" : "404",
"Logged in user must be an admin, a sub admin or gotten special right to access this setting" : "Aby mohl přistupovat k tomuto nastavení je třeba, aby přihlášený uživatel byl správce, dílčí správce nebo obdržel speciální oprávnění",
"Logged in user must be an admin or sub admin" : "Je třeba, aby přihlášený uživatel byl správcem či správcem pro dílčí oblast",
"Logged in user must be an admin" : "Je třeba, aby přihlášený uživatel byl správce",
"Full name" : "Celé jméno",
"Unknown user" : "Neznámý uživatel",
"Enter the database username and name for %s" : "Zadejte uživatelské jméno v databázi a název pro %s",
"Enter the database username for %s" : "Zadejte uživatelské jméno v databázi pro %s",
"MySQL username and/or password not valid" : "Neplatné uživatelské jméno a/nebo heslo do MySQL",
"Oracle username and/or password not valid" : "Neplatné uživatelské jméno a/nebo heslo do Oracle",
"PostgreSQL username and/or password not valid" : "Neplatné uživatelské jméno a/nebo heslo do PostgreSQL",
"Set an admin username." : "Nastavte uživatelské jméno správce.",
"Sharing %s failed, because this item is already shared with user %s" : "Sdílení %s se nezdařilo, protože tato položka už je sdílena s uživatelem %s",
"The username is already being used" : "Uživatelské jméno už je využíváno",
"Could not create user" : "Nepodařilo se vytvořit uživatele",
"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", spaces and \"_.@-'\"" : "Pouze následující znaky jsou povoleny pro uživatelské jméno: „a-z“, „A-Z“, „0-9“, mezery a „_.@-'“",
"A valid username must be provided" : "Je třeba zadat platné uživatelské jméno",
"Username contains whitespace at the beginning or at the end" : "Uživatelské jméno je chybné na jeho začátku či konci se nachází prázdný znak (mezera, tabulátor, atp.)",
"Username must not consist of dots only" : "Uživatelské jméno se nemůže skládat pouze ze samých teček",
"Username is invalid because files already exist for this user" : "Uživatelské jméno není platné, protože protože pro tohoto uživatele už existují soubory",
"User disabled" : "Uživatel zakázán",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Je zapotřebí verze softwarové knihovny libxml2 přinejmenším 2.7.0. Nyní je nainstalována verze %s.",
"To fix this issue update your libxml2 version and restart your web server." : "Tento problém opravíte instalací novější verze knihovny libxml2 a restartem webového serveru.",
"PostgreSQL >= 9 required." : "Je vyžadováno PostgreSQL verze 9 a novější.",
"Please upgrade your database version." : "Aktualizujte verzi vámi využívané databáze.",
"Your data directory is readable by other users." : "Váš adresář data je čitelný ostatním uživatelům.",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Změňte práva na 0770, aby obsah adresáře nemohl být vypisován ostatními uživateli."
},
"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;");
+278
View File
@@ -0,0 +1,278 @@
{ "translations": {
"Cannot write into \"config\" directory!" : "Nedaří se zapisovat do adresáře „config“!",
"This can usually be fixed by giving the web server write access to the config directory." : "Toto je obvykle možné vyřešit udělením webovému serveru oprávnění k zápisu do adresáře s nastaveními.",
"But, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it." : "Ale, pokud chcete mít soubor config.php pouze pro čtení, nastavte v něm volbu „config_is_read_only“ na hodnotu true.",
"See %s" : "Viz %s",
"Application %1$s is not present or has a non-compatible version with this server. Please check the apps directory." : "Aplikace %1$s není přítomná nebo její verze není kompatibilní s tímto serverem. Zkontrolujte složku s aplikacemi. ",
"Sample configuration detected" : "Bylo zjištěno setrvání u předváděcího nastavení",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Pravděpodobně byla zkopírována nastavení ze vzorových souborů. Toto není podporováno a může poškodit vaši instalaci. Před prováděním změn v souboru config.php si přečtěte dokumentaci",
"The page could not be found on the server." : "Stránka nebyla na serveru nalezena.",
"%s email verification" : "%s ověřování e-mailem",
"Email verification" : "Ověřování e-mailem",
"Click the following button to confirm your email." : "Pokud chcete potvrdit svůj e-mail, klikněte na následující tlačítko.",
"Click the following link to confirm your email." : "Pokud chcete potvrdit svůj e-mail, klikněte na následující odkaz.",
"Confirm your email" : "Potvrďte svůj e-mail",
"Other activities" : "Ostatní aktivity",
"%1$s and %2$s" : "%1$s a %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s a %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s a %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s a %5$s",
"Education Edition" : "Vydání pro vzdělávací instituce",
"Enterprise bundle" : "Sada pro organizace",
"Groupware bundle" : "Sada pro podporu spolupráce",
"Hub bundle" : "Sada pro centrum aktivity (hub)",
"Social sharing bundle" : "Balíček pro sdílení na sociálních sítích",
"PHP %s or higher is required." : "Je vyžadováno PHP %s nebo novější.",
"PHP with a version lower than %s is required." : "Je vyžadováno PHP ve verzi starší než %s.",
"%sbit or higher PHP required." : "Je vyžadováno PHP %sbit nebo vyšší.",
"The following architectures are supported: %s" : "Jsou podporovány následující architektury: %s",
"The following databases are supported: %s" : "Jsou podporovány následující databáze: %s",
"The command line tool %s could not be found" : "Nástroj příkazového řádku %s nebyl nalezen",
"The library %s is not available." : "Knihovna %s není k dispozici.",
"Library %1$s with a version higher than %2$s is required - available version %3$s." : "Je vyžadována knihovna %1$s novější verze než %2$s verze k dispozici je %3$s.",
"Library %1$s with a version lower than %2$s is required - available version %3$s." : "Je vyžadována knihovna %1$s verzi nižší než %2$s dostupná verze %3$s.",
"The following platforms are supported: %s" : "Jsou podporovány následující systémy: %s",
"Server version %s or higher is required." : "Je potřeba verze serveru %s nebo novější.",
"Server version %s or lower is required." : "Je potřeba verze serveru %s nebo starší.",
"Wiping of device %s has started" : "Vymazávání ze zařízení %s zahájeno",
"Wiping of device »%s« has started" : "Vymazávání ze zařízení „%s“ zahájeno",
"»%s« started remote wipe" : "„%s“ zahájilo vymazávání na dálku",
"Device or application »%s« has started the remote wipe process. You will receive another email once the process has finished" : "Přístroj či aplikace »%s« spustila proces vzdáleného vymazání. Obdržíte další e-mail poté co bude proces ukončen",
"Wiping of device %s has finished" : "Vymazávání ze zařízení %s dokončeno",
"Wiping of device »%s« has finished" : "Vymazávání ze zařízení „%s“ dokončeno",
"»%s« finished remote wipe" : "„%s“ dokončilo vymazání na dálku",
"Device or application »%s« has finished the remote wipe process." : "Přístroj či aplikace „%s“ dokončila proces vymazání na dálku.",
"Remote wipe started" : "Vymazání na dálku zahájeno",
"A remote wipe was started on device %s" : "Na zařízení %s bylo spuštěno vymazání na dálku",
"Remote wipe finished" : "Vymazání na dálku dokončeno",
"The remote wipe on %s has finished" : "Vymazání %s na dálku dokončeno",
"Authentication" : "Ověření",
"Unknown filetype" : "Neznámý typ souboru",
"Invalid image" : "Neplatný obrázek",
"Avatar image is not square" : "Profilový obrázek není čtvercový",
"Files" : "Soubory",
"View profile" : "Zobrazit profil ",
"Local time: %s" : "Místní čas: %s",
"today" : "dnes",
"tomorrow" : "zítra",
"yesterday" : "včera",
"_in %n day_::_in %n days_" : ["během %n dne","během %n dnů","během %n dnů","během %n dnů"],
"_%n day ago_::_%n days ago_" : ["včera","před %n dny","před %n dny","před %n dny"],
"next month" : "následující měsíc",
"last month" : "minulý měsíc",
"_in %n month_::_in %n months_" : ["během %n měsíce","během %n měsíců","během %n měsíců","během %n měsíců"],
"_%n month ago_::_%n months ago_" : ["před %n měsícem","před %n měsíci","před %n měsíci","před %n měsíci"],
"next year" : "následující rok",
"last year" : "minulý rok",
"_in %n year_::_in %n years_" : ["během %n roku","během %n let","během %n let","během %n let"],
"_%n year ago_::_%n years ago_" : ["před rokem","před %n lety","před %n lety","před %n lety"],
"_in %n hour_::_in %n hours_" : ["během %n hodiny","během %n hodin","během %n hodin","během %n hodin"],
"_%n hour ago_::_%n hours ago_" : ["před %n hodinou","před %n hodinami","před %n hodinami","před %n hodinami"],
"_in %n minute_::_in %n minutes_" : ["během %n minuty","během %n minut","během %n minut","během %n minut"],
"_%n minute ago_::_%n minutes ago_" : ["před minutou","před %n minutami","před %n minutami","před %n minutami"],
"in a few seconds" : "během několika sekund",
"seconds ago" : "před pár sekundami",
"Empty file" : "Prázdný soubor",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "Modul s identifikátorem: %s neexistuje. Povolte ho v nastavení aplikací, nebo se obraťte na správce.",
"File already exists" : "Soubor už existuje",
"Invalid path" : "Neplatný popis umístění",
"Failed to create file from template" : "Vytvoření souboru ze šablony se nezdařilo",
"Templates" : "Šablony",
"File name is a reserved word" : "Název souboru je rezervované slovo",
"File name contains at least one invalid character" : "Název souboru obsahuje přinejmenším jeden neplatný znak",
"File name is too long" : "Název souboru je příliš dlouhý",
"Dot files are not allowed" : "Názvy souborů, začínající na tečku nejsou dovolené",
"Empty filename is not allowed" : "Je třeba vyplnit název souboru",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "Aplikace „%s“ nemůže být nainstalována protože soubor appinfo nelze přečíst.",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "Aplikaci „%s“ nelze nainstalovat, protože není kompatibilní s touto verzí serveru.",
"__language_name__" : "Čeština",
"This is an automatically sent email, please do not reply." : "Toto je automaticky odesílaný e-mail, neodpovídejte na něj.",
"Help" : "Nápověda",
"Appearance and accessibility" : "Vzhled a zpřístupnění",
"Apps" : "Aplikace",
"Personal settings" : "Osobní nastavení",
"Administration settings" : "Nastavení pro správu",
"Settings" : "Nastavení",
"Log out" : "Odhlásit se",
"Users" : "Uživatelé",
"Email" : "E-mail",
"Mail %s" : "Poslat e-mail %s",
"Fediverse" : "Fediverse",
"View %s on the fediverse" : "Zobrazit %s na fediverse",
"Phone" : "Telefon",
"Call %s" : "Zavolat %s",
"Twitter" : "Twitter",
"View %s on Twitter" : "Zobrazit %s na Twitteru",
"Website" : "Webová stránka",
"Visit %s" : "Navštívit %s",
"Address" : "Adresa",
"Profile picture" : "Profilový obrázek",
"About" : "O uživateli",
"Display name" : "Zobrazované jméno",
"Headline" : "Nadpis",
"Organisation" : "Organizace",
"Role" : "Role",
"Additional settings" : "Další nastavení",
"Enter the database name for %s" : "Zadejte název databáze pro %s",
"You cannot use dots in the database name %s" : "V názvu databáze %s není možné použít tečky",
"You need to enter details of an existing account." : "Je třeba zadat podrobnosti existujícího účtu.",
"Oracle connection could not be established" : "Spojení s Oracle nemohlo být navázáno",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "macOS není podporován a %s nebude na této platformě správně fungovat. Používejte pouze na vlastní nebezpečí!",
"For the best results, please consider using a GNU/Linux server instead." : "Místo toho zvažte pro nejlepší funkčnost použití GNU/Linux serveru.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Zdá se, že tato instance %s je provozována v 32-bitovém PHP prostředí a v php.ini je nastavena volba open_basedir. Toto povede k problémům se soubory většími než 4 GB a silně není doporučováno.",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Odstraňte z php.ini nastavení volby open_basedir nebo přejděte na 64-bitové PHP.",
"Set an admin password." : "Nastavte heslo pro účet správce.",
"Cannot create or write into the data directory %s" : "Nedaří se vytvořit nebo zapisovat do datového adresáře %s",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Je třeba, aby podpůrná vrstva pro sdílení %s implementovala rozhraní OCP\\Share_Backend",
"Sharing backend %s not found" : "Podpůrná vrstva pro sdílení %s nenalezena",
"Sharing backend for %s not found" : "Úložiště sdílení pro %s nenalezeno",
"%1$s shared »%2$s« with you and wants to add:" : "%1$s sdílí „%2$s“ a dodává:",
"%1$s shared »%2$s« with you and wants to add" : "%1$s sdílí „%2$s“ a dodává",
"»%s« added a note to a file shared with you" : "„%s“ dodává poznámku k nasdílenému souboru ",
"Open »%s«" : "Otevřít „%s“",
"%1$s via %2$s" : "%1$s prostřednictvím %2$s",
"You are not allowed to share %s" : "Nemáte povoleno sdílet %s",
"Cannot increase permissions of %s" : "Nelze navýšit oprávnění u %s",
"Files cannot be shared with delete permissions" : "Soubory nelze sdílet s oprávněními k odstranění",
"Files cannot be shared with create permissions" : "Soubory nelze sdílet s oprávněními k vytváření",
"Expiration date is in the past" : "Datum skončení platnosti je v minulosti",
"_Cannot set expiration date more than %n day in the future_::_Cannot set expiration date more than %n days in the future_" : ["Datum vypršení nelze nastavit na více než %n den do budoucnosti","Datum vypršení nelze nastavit na více než %n dny do budoucnosti","Datum vypršení nelze nastavit na více než %n dnů do budoucnosti","Datum vypršení nelze nastavit na více než %n dny do budoucnosti"],
"Sharing is only allowed with group members" : "Je povoleno pouze sdílení s členy skupiny",
"%1$s shared »%2$s« with you" : "%1$s vám sdílí „%2$s“",
"%1$s shared »%2$s« with you." : "%1$s vám nasdílel(a) „%2$s“.",
"Click the button below to open it." : "Pro otevření klikněte na tlačítko níže.",
"The requested share does not exist anymore" : "Požadované sdílení už neexistuje",
"The requested share comes from a disabled user" : "Požadované sdílení pochází od vypnutého uživatelského účtu",
"The user was not created because the user limit has been reached. Check your notifications to learn more." : "Uživatel nebyl vytvořen protože bylo dosaženo limitu počtu uživatelů. Více se dozvíte v upozorněních.",
"Could not find category \"%s\"" : "Nedaří se nalézt kategorii „%s“",
"Sunday" : "neděle",
"Monday" : "pondělí",
"Tuesday" : "úterý",
"Wednesday" : "středa",
"Thursday" : "čtvrtek",
"Friday" : "pátek",
"Saturday" : "sobota",
"Sun." : "ne",
"Mon." : "po",
"Tue." : "út",
"Wed." : "st",
"Thu." : "čt",
"Fri." : "pá",
"Sat." : "so",
"Su" : "ne",
"Mo" : "po",
"Tu" : "út",
"We" : "st",
"Th" : "čt",
"Fr" : "pá",
"Sa" : "so",
"January" : "leden",
"February" : "únor",
"March" : "březen",
"April" : "duben",
"May" : "květen",
"June" : "červen",
"July" : "červenec",
"August" : "srpen",
"September" : "září",
"October" : "říjen",
"November" : "listopad",
"December" : "prosinec",
"Jan." : "led.",
"Feb." : "úno.",
"Mar." : "bře.",
"Apr." : "dub.",
"May." : "kvě.",
"Jun." : "čvn.",
"Jul." : "čvc.",
"Aug." : "srp.",
"Sep." : "zář.",
"Oct." : "říj.",
"Nov." : "list.",
"Dec." : "pro.",
"A valid password must be provided" : "Je třeba zadat platné heslo",
"Login canceled by app" : "Přihlášení zrušeno aplikací",
"App \"%1$s\" cannot be installed because the following dependencies are not fulfilled: %2$s" : "Aplikaci „%1$s“ nelze nainstalovat, protože nejsou splněny následující závislosti: %2$s",
"a safe home for all your data" : "bezpečný domov pro všechna vaše data",
"File is currently busy, please try again later" : "Soubor je nyní používán, zkuste to později",
"Cannot download file" : "Soubor se nedaří stáhnout",
"Application is not enabled" : "Aplikace není povolena",
"Authentication error" : "Chyba při ověřování se",
"Token expired. Please reload page." : "Platnost tokenu skončila. Načtěte stránku znovu.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "Nejsou nainstalovány ovladače databází (sqlite, mysql nebo postresql).",
"Cannot write into \"config\" directory." : "Nedaří se zapisovat do adresáře „config“.",
"This can usually be fixed by giving the web server write access to the config directory. See %s" : "Toto obvykle lze vyřešit udělením oprávnění k zápisu do kořenové složky webu pro účet, pod kterým je provozován webový server. Viz %s",
"Or, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it. See %s" : "Nebo, pokud chcete mít soubor config.php pouze pro čtení, nastavte v něm volbu „config_is_read_only“ na hodnotu true. Viz %s",
"Cannot write into \"apps\" directory." : "Nedaří se zapisovat do adresáře „apps“.",
"This can usually be fixed by giving the web server write access to the apps directory or disabling the App Store in the config file." : "Toto je obvykle možné napravit udělením přístupu ke čtení adresáře s aplikací pro webový server nebo vypnutím katalogu s aplikacemi v souboru s nastaveními.",
"Cannot create \"data\" directory." : "Nedaří se vytvořit adresář „data“.",
"This can usually be fixed by giving the web server write access to the root directory. See %s" : "Toto obvykle lze vyřešit udělením oprávnění k zápisu do kořenové složky webu pro účet, pod kterým je provozován webový server. Viz %s",
"Permissions can usually be fixed by giving the web server write access to the root directory. See %s." : "Oprávnění lze obvykle napravit umožněním zápisu do kořene webu pro účet, pod kterým je provozován webový server. Viz %s.",
"Your data directory is not writable." : "Adresář data není přístupný pro zápis.",
"Setting locale to %s failed." : "Nastavení místních a jazykových nastavení na %s se nezdařilo.",
"Please install one of these locales on your system and restart your web server." : "Do svého systému nainstalujte alespoň jeden z těchto jazyků a restartujte webový server.",
"PHP module %s not installed." : "PHP modul %s není nainstalován.",
"Please ask your server administrator to install the module." : "Požádejte správce serveru, který využíváte o instalaci tohoto modulu.",
"PHP setting \"%s\" is not set to \"%s\"." : "Hodnota v konfiguraci PHP „%s“ není nastavená na „%s“.",
"Adjusting this setting in php.ini will make Nextcloud run again" : "Úprava tohoto nastavení v php.ini umožní Nextcloud opět zprovoznit",
"<code>mbstring.func_overload</code> is set to <code>%s</code> instead of the expected value <code>0</code>." : "<code>mbstring.func_overload</code> je nastaveno na <code>%s</code> namísto očekávané hodnoty <code>0</code>.",
"To fix this issue set <code>mbstring.func_overload</code> to <code>0</code> in your php.ini." : "Pro nápravu nastavte v souboru php.ini parametr <code>mbstring.func_overload</code> na <code>0</code>.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "PHP je patrně nastaveno tak, aby odstraňovalo bloky komentářů. Toto bude mít za následek znepřístupnění mnoha důležitých aplikací.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Toto je pravděpodobně způsobeno aplikacemi pro urychlení načítání jako jsou Zend OPcache nebo eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "PHP moduly jsou nainstalovány, přesto jsou uváděny jako chybějící?",
"Please ask your server administrator to restart the web server." : "Požádejte správce serveru, který využíváte o restart webového serveru.",
"The required %s config variable is not configured in the config.php file." : "Požadovaná proměnná nastavení %s není v souboru s nastaveními config.php nastavena.",
"Please ask your server administrator to check the Nextcloud configuration." : "Požádejte správce serveru, který využíváte, aby zkontroloval nastavení serveru.",
"Your data directory must be an absolute path." : "Je třeba, aby váš adresář data byl zadán jako úplný popis umístění.",
"Check the value of \"datadirectory\" in your configuration." : "Zkontrolujte hodnotu „datadirectory“ ve svém nastavení.",
"Your data directory is invalid." : "Váš adresář data není platný.",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Ověřte, že v kořeni datového adresáře je soubor s názvem „.ocdata“.",
"Action \"%s\" not supported or implemented." : "Akce „%s“ není podporována nebo implementována.",
"Authentication failed, wrong token or provider ID given" : "Ověření se nezdařilo, předán chybný token nebo identifikátor poskytovatele",
"Parameters missing in order to complete the request. Missing Parameters: \"%s\"" : "Pro dokončení požadavku chybí parametry. Konkrétně: „%s“",
"ID \"%1$s\" already used by cloud federation provider \"%2$s\"" : "Identifikátor „%1$s“ už je používán poskytovatelem federování cloudu „%2$s“",
"Cloud Federation Provider with ID: \"%s\" does not exist." : "Poskytovatel federování cloudů s identifikátorem: „%s“ neexistuje",
"Could not obtain lock type %d on \"%s\"." : "Nedaří získat zámek typu %d na „%s“.",
"Storage unauthorized. %s" : "Úložiště neověřeno. %s",
"Storage incomplete configuration. %s" : "Neúplné nastavení pro úložiště. %s",
"Storage connection error. %s" : "Chyba připojení úložiště. %s",
"Storage is temporarily not available" : "Úložiště je dočasně nedostupné",
"Storage connection timeout. %s" : "Překročen časový limit připojování k úložišti. %s",
"Free prompt" : "Prompt zdarma",
"Runs an arbitrary prompt through the language model." : "Spouští libovolnou výzvu skrze jazykový model.",
"Generate headline" : "Vytvořit nadpis",
"Generates a possible headline for a text." : "Vytvoří možný nadpis pro text.",
"Summarize" : "Stručný souhrn",
"Summarizes text by reducing its length without losing key information." : "Vytvoří stručný souhrn textu tím, že zkrátí jeho délku aniž by byly ztraceny klíčové informace",
"Extract topics" : "Vyzískat témata",
"Extracts topics from a text and outputs them separated by commas." : "Vyzíská témata z textu a vypíše je oddělované čárkami.",
"The files of the app %1$s were not replaced correctly. Make sure it is a version compatible with the server." : "Soubory aplikace %1$s nebyly nahrazeny řádně. Ověřte, že se jedná o verzi, která je kompatibilní se serverem.",
"404" : "404",
"Logged in user must be an admin, a sub admin or gotten special right to access this setting" : "Aby mohl přistupovat k tomuto nastavení je třeba, aby přihlášený uživatel byl správce, dílčí správce nebo obdržel speciální oprávnění",
"Logged in user must be an admin or sub admin" : "Je třeba, aby přihlášený uživatel byl správcem či správcem pro dílčí oblast",
"Logged in user must be an admin" : "Je třeba, aby přihlášený uživatel byl správce",
"Full name" : "Celé jméno",
"Unknown user" : "Neznámý uživatel",
"Enter the database username and name for %s" : "Zadejte uživatelské jméno v databázi a název pro %s",
"Enter the database username for %s" : "Zadejte uživatelské jméno v databázi pro %s",
"MySQL username and/or password not valid" : "Neplatné uživatelské jméno a/nebo heslo do MySQL",
"Oracle username and/or password not valid" : "Neplatné uživatelské jméno a/nebo heslo do Oracle",
"PostgreSQL username and/or password not valid" : "Neplatné uživatelské jméno a/nebo heslo do PostgreSQL",
"Set an admin username." : "Nastavte uživatelské jméno správce.",
"Sharing %s failed, because this item is already shared with user %s" : "Sdílení %s se nezdařilo, protože tato položka už je sdílena s uživatelem %s",
"The username is already being used" : "Uživatelské jméno už je využíváno",
"Could not create user" : "Nepodařilo se vytvořit uživatele",
"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", spaces and \"_.@-'\"" : "Pouze následující znaky jsou povoleny pro uživatelské jméno: „a-z“, „A-Z“, „0-9“, mezery a „_.@-'“",
"A valid username must be provided" : "Je třeba zadat platné uživatelské jméno",
"Username contains whitespace at the beginning or at the end" : "Uživatelské jméno je chybné na jeho začátku či konci se nachází prázdný znak (mezera, tabulátor, atp.)",
"Username must not consist of dots only" : "Uživatelské jméno se nemůže skládat pouze ze samých teček",
"Username is invalid because files already exist for this user" : "Uživatelské jméno není platné, protože protože pro tohoto uživatele už existují soubory",
"User disabled" : "Uživatel zakázán",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Je zapotřebí verze softwarové knihovny libxml2 přinejmenším 2.7.0. Nyní je nainstalována verze %s.",
"To fix this issue update your libxml2 version and restart your web server." : "Tento problém opravíte instalací novější verze knihovny libxml2 a restartem webového serveru.",
"PostgreSQL >= 9 required." : "Je vyžadováno PostgreSQL verze 9 a novější.",
"Please upgrade your database version." : "Aktualizujte verzi vámi využívané databáze.",
"Your data directory is readable by other users." : "Váš adresář data je čitelný ostatním uživatelům.",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Změňte práva na 0770, aby obsah adresáře nemohl být vypisován ostatními uživateli."
},"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"
}
+71
View File
@@ -0,0 +1,71 @@
OC.L10N.register(
"lib",
{
"Files" : "Ffeiliau",
"today" : "heddiw",
"yesterday" : "ddoe",
"last month" : "mis diwethaf",
"last year" : "y llynedd",
"seconds ago" : "eiliad yn ôl",
"Help" : "Cymorth",
"Apps" : "Pecynnau",
"Settings" : "Gosodiadau",
"Log out" : "Allgofnodi",
"Users" : "Defnyddwyr",
"Email" : "E-bost",
"Phone" : "Ffôn",
"Website" : "Gwefan",
"Address" : "Cyfeiriad",
"About" : "Ynghylch",
"Set an admin password." : "Gosod cyfrinair y gweinyddwr.",
"Open »%s«" : "Agor »%s«",
"%1$s via %2$s" : "%1$s trwy %2$s",
"Click the button below to open it." : "Cliciwch ar y botwm isod i'w agor.",
"Could not find category \"%s\"" : "Methu canfod categori \"%s\"",
"Sunday" : "Sul",
"Monday" : "Llun",
"Tuesday" : "Mawrth",
"Wednesday" : "Mercher",
"Thursday" : "Iau",
"Friday" : "Gwener",
"Saturday" : "Sadwrn",
"Sun." : "Sul.",
"Mon." : "Llun.",
"Tue." : "Maw.",
"Wed." : "Mer.",
"Thu." : "Iau.",
"Fri." : "Gwe.",
"Sat." : "Sad.",
"January" : "Ionawr",
"February" : "Chwefror",
"March" : "Mawrth",
"April" : "Ebrill",
"May" : "Mai",
"June" : "Mehefin",
"July" : "Gorffennaf",
"August" : "Awst",
"September" : "Medi",
"October" : "Hydref",
"November" : "Tachwedd",
"December" : "Rhagfyr",
"Jan." : "Ion.",
"Feb." : "Chwe.",
"Mar." : "Maw.",
"Apr." : "Ebr.",
"May." : "Mai.",
"Jun." : "Meh.",
"Jul." : "Gor.",
"Aug." : "Aws.",
"Sep." : "Med.",
"Oct." : "Hyd.",
"Nov." : "Tach.",
"Dec." : "Rhag.",
"Application is not enabled" : "Nid yw'r pecyn wedi'i alluogi",
"Authentication error" : "Gwall dilysu",
"Token expired. Please reload page." : "Tocyn wedi dod i ben. Ail-lwythwch y dudalen.",
"Full name" : "Enw llawn",
"Oracle username and/or password not valid" : "Enw a/neu gyfrinair Oracle annilys",
"PostgreSQL username and/or password not valid" : "Enw a/neu gyfrinair PostgreSQL annilys",
"Set an admin username." : "Creu enw defnyddiwr i'r gweinyddwr."
},
"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;");
+69
View File
@@ -0,0 +1,69 @@
{ "translations": {
"Files" : "Ffeiliau",
"today" : "heddiw",
"yesterday" : "ddoe",
"last month" : "mis diwethaf",
"last year" : "y llynedd",
"seconds ago" : "eiliad yn ôl",
"Help" : "Cymorth",
"Apps" : "Pecynnau",
"Settings" : "Gosodiadau",
"Log out" : "Allgofnodi",
"Users" : "Defnyddwyr",
"Email" : "E-bost",
"Phone" : "Ffôn",
"Website" : "Gwefan",
"Address" : "Cyfeiriad",
"About" : "Ynghylch",
"Set an admin password." : "Gosod cyfrinair y gweinyddwr.",
"Open »%s«" : "Agor »%s«",
"%1$s via %2$s" : "%1$s trwy %2$s",
"Click the button below to open it." : "Cliciwch ar y botwm isod i'w agor.",
"Could not find category \"%s\"" : "Methu canfod categori \"%s\"",
"Sunday" : "Sul",
"Monday" : "Llun",
"Tuesday" : "Mawrth",
"Wednesday" : "Mercher",
"Thursday" : "Iau",
"Friday" : "Gwener",
"Saturday" : "Sadwrn",
"Sun." : "Sul.",
"Mon." : "Llun.",
"Tue." : "Maw.",
"Wed." : "Mer.",
"Thu." : "Iau.",
"Fri." : "Gwe.",
"Sat." : "Sad.",
"January" : "Ionawr",
"February" : "Chwefror",
"March" : "Mawrth",
"April" : "Ebrill",
"May" : "Mai",
"June" : "Mehefin",
"July" : "Gorffennaf",
"August" : "Awst",
"September" : "Medi",
"October" : "Hydref",
"November" : "Tachwedd",
"December" : "Rhagfyr",
"Jan." : "Ion.",
"Feb." : "Chwe.",
"Mar." : "Maw.",
"Apr." : "Ebr.",
"May." : "Mai.",
"Jun." : "Meh.",
"Jul." : "Gor.",
"Aug." : "Aws.",
"Sep." : "Med.",
"Oct." : "Hyd.",
"Nov." : "Tach.",
"Dec." : "Rhag.",
"Application is not enabled" : "Nid yw'r pecyn wedi'i alluogi",
"Authentication error" : "Gwall dilysu",
"Token expired. Please reload page." : "Tocyn wedi dod i ben. Ail-lwythwch y dudalen.",
"Full name" : "Enw llawn",
"Oracle username and/or password not valid" : "Enw a/neu gyfrinair Oracle annilys",
"PostgreSQL username and/or password not valid" : "Enw a/neu gyfrinair PostgreSQL annilys",
"Set an admin username." : "Creu enw defnyddiwr i'r gweinyddwr."
},"pluralForm" :"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"
}
+279
View File
@@ -0,0 +1,279 @@
OC.L10N.register(
"lib",
{
"Cannot write into \"config\" directory!" : "Kan ikke skrive til mappen \"config\"!",
"This can usually be fixed by giving the web server write access to the config directory." : "Dette kan normalt rettes ved at give webserveren skriveadgang til config folderen.",
"But, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it." : "Men hvis du foretrækker at bibeholde config.php skrivebeskyttet, så sæt parameter \"config_is_read_only\" til true i filen. ",
"See %s" : "Se %s",
"Application %1$s is not present or has a non-compatible version with this server. Please check the apps directory." : "Applikationen %1$s er ikke til stede eller har en ikke-kompatibel version med denne server. Tjek venligst apps mappen.",
"Sample configuration detected" : "Eksempel for konfiguration registreret",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Der er registreret at konfigurations eksemplet er blevet kopieret direkte. Dette kan ødelægge din installation og understøttes ikke. Læs venligst dokumentationen før der foretages ændringer i config.php",
"The page could not be found on the server." : "Siden kunne ikke findes på serveren.",
"%s email verification" : "%s email verifikation",
"Email verification" : "Email verifikation",
"Click the following button to confirm your email." : "Tryk på følgende knap for at bekræfte din email.",
"Click the following link to confirm your email." : "Klik på følgende link for at bekræfte din email.",
"Confirm your email" : "Bekræft din email",
"Other activities" : "Andre aktiviteter",
"%1$s and %2$s" : "%1$s og %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s og %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s og %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s og %5$s",
"Education Edition" : "Education Edition",
"Enterprise bundle" : "Enterprise bundle",
"Groupware bundle" : "Groupware bundle",
"Hub bundle" : "Hub bundle",
"Social sharing bundle" : "Social sharing bundle",
"PHP %s or higher is required." : "Der kræves PHP %s eller nyere.",
"PHP with a version lower than %s is required." : "Der kræves PHP %s eller ældre.",
"%sbit or higher PHP required." : "Der kræves PHP %s eller nyere.",
"The following architectures are supported: %s" : "Følgende arkitekturer er understøttes: %s",
"The following databases are supported: %s" : "Følgende databaser understøttes: %s",
"The command line tool %s could not be found" : "Kommandolinjeværktøjet %s blev ikke fundet",
"The library %s is not available." : "Biblioteket %s er ikke tilgængeligt.",
"Library %1$s with a version higher than %2$s is required - available version %3$s." : "Der kræves en version af biblioteket %1$s, der er højere end %2$s - tilgængelig version er %3$s.",
"Library %1$s with a version lower than %2$s is required - available version %3$s." : "Der kræves en version af biblioteket %1$s, der er lavere end %2$s - tilgængelig version er %3$s.",
"The following platforms are supported: %s" : "Følgende platforme understøttes: %s",
"Server version %s or higher is required." : "Du skal have server version %s eller nyere.",
"Server version %s or lower is required." : "Du skal have server version %s eller ældre.",
"Wiping of device %s has started" : "Komplet sletning af enhed %s er påbegyndt",
"Wiping of device »%s« has started" : "Komplet sletning af enhed »%s« er påbegyndt",
"»%s« started remote wipe" : "Fjernsletning påbegyndt af »%s« ",
"Device or application »%s« has started the remote wipe process. You will receive another email once the process has finished" : "Enheden eller applikationen »%s« har påbegyndt en fjernsletnings proces. Du vil modtage en e-mail når processen er færdig",
"Wiping of device %s has finished" : "Komplet sletning af enhed %s er færdig",
"Wiping of device »%s« has finished" : "Komplet sletning af enhed »%s« er færdig",
"»%s« finished remote wipe" : "»%s« er færdig med fjernsletning",
"Device or application »%s« has finished the remote wipe process." : " Fjernsletningen der blev aktiveret af enhed alle applikation »%s« er færdig.",
"Remote wipe started" : "Fjernsletning er startet",
"A remote wipe was started on device %s" : "En fjernsletning af enheden %s er påbegyndt",
"Remote wipe finished" : "Fjernsletning er færdig",
"The remote wipe on %s has finished" : "Fjernsletningen af %s er færdig",
"Authentication" : "Godkendelse",
"Unknown filetype" : "Ukendt filtype",
"Invalid image" : "Ugyldigt billede",
"Avatar image is not square" : "Avatar billedet er ikke kvadratisk",
"Files" : "Filer",
"View profile" : "Vis profil",
"Local time: %s" : "Lokal tid: %s",
"today" : "i dag",
"tomorrow" : "i morgen",
"yesterday" : "i går",
"_in %n day_::_in %n days_" : ["om %n dag","om %n dage"],
"_%n day ago_::_%n days ago_" : ["%n dag siden","%n dage siden"],
"next month" : "næste måned",
"last month" : "sidste måned",
"_in %n month_::_in %n months_" : ["om %n måned","om %n måneder"],
"_%n month ago_::_%n months ago_" : ["%n måned siden","%n måneder siden"],
"next year" : "næste år",
"last year" : "sidste år",
"_in %n year_::_in %n years_" : ["om %n år","om %n år"],
"_%n year ago_::_%n years ago_" : ["%n år siden","%n år siden"],
"_in %n hour_::_in %n hours_" : ["om %n time","om %n timer"],
"_%n hour ago_::_%n hours ago_" : ["%n time siden","%n timer siden"],
"_in %n minute_::_in %n minutes_" : ["om %n minut","om %n minutter"],
"_%n minute ago_::_%n minutes ago_" : ["%n minut siden","%n minutter siden"],
"in a few seconds" : "om få sekunder",
"seconds ago" : "få sekunder siden",
"Empty file" : "Tom fil",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "Modulet med ID: %s eksisterer ikke. Aktiver det venligst i dine indstillinger eller kontakt din administrator.",
"File already exists" : "Filen findes allerede",
"Invalid path" : "Ugyldig sti",
"Failed to create file from template" : "Fejl ved oprettelse af fil fra skabelon",
"Templates" : "Skabeloner",
"File name is a reserved word" : "Filnavnet er et reserveret ord",
"File name contains at least one invalid character" : "Filnavnet indeholder mindst ét ugyldigt tegn",
"File name is too long" : "Filnavnet er for langt",
"Dot files are not allowed" : "Filer med punktummer er ikke tilladt",
"Empty filename is not allowed" : "Tomme filnavne er ikke tilladt",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "Appen \"%s\" kan ikke installeres fordi appinfo filen ikke kan læses.",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "Appen \"%s\" kan ikke installeres fordi den ikke er kompatibel med denne version af serveren.",
"__language_name__" : "Dansk",
"This is an automatically sent email, please do not reply." : "Dette er en automatisk sendt e-mail, svar venligst ikke.",
"Help" : "Hjælp",
"Appearance and accessibility" : "Udseende og tilgængelighed",
"Apps" : "Apps",
"Personal settings" : "Personlige indstillinger",
"Administration settings" : "System indstillinger",
"Settings" : "Indstillinger",
"Log out" : "Log ud",
"Users" : "Brugere",
"Email" : "E-mail",
"Mail %s" : "Mail %s",
"Fediverse" : "Fediverse",
"View %s on the fediverse" : "Vis %s på fediverset",
"Phone" : "Telefon",
"Call %s" : "Ring op %s",
"Twitter" : "Twitter",
"View %s on Twitter" : "Følg %s på Twitter",
"Website" : "Hjemmeside",
"Visit %s" : "Besøg %s",
"Address" : "Adresse",
"Profile picture" : "Profilbillede",
"About" : "Om",
"Display name" : "Vist navn",
"Headline" : "Overskrift",
"Organisation" : "Organisation",
"Role" : "Rolle",
"Additional settings" : "Yderligere indstillinger",
"Enter the database name for %s" : "Indtast databasenavnet for %s",
"You cannot use dots in the database name %s" : "Du må ikke bruge punktummer i databasenavnet %s",
"You need to enter details of an existing account." : "Du skal indtaste detaljerne for en eksisterende konto.",
"Oracle connection could not be established" : "Oracle forbindelsen kunne ikke etableres",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "Mac OS X understøttes ikke og %s vil ikke virke optimalt på denne platform. Anvend på eget ansvar!",
"For the best results, please consider using a GNU/Linux server instead." : "For de bedste resultater, overvej venligst at bruge en GNU/Linux-server i stedet.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Det ser ud til, at denne %s-instans kører på et 32-bit PHP-miljø, samt at open_basedir er blevet konfigureret gennem php.ini. Dette vil føre til problemer med filer som er større end 4GB, og frarådes kraftigt.",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Fjern venligst indstillingen for open_basedir inde i din php.ini eller skift til 64-bit PHP.",
"Set an admin password." : "Angiv et admin kodeord.",
"Cannot create or write into the data directory %s" : "Kan ikke oprette eller skrive ind i datamappen %s",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Delingsbackend'en %s skal implementere grænsefladen OCP\\Share_Backend",
"Sharing backend %s not found" : "Delingsbackend'en %s blev ikke fundet",
"Sharing backend for %s not found" : "Delingsbackend'en for %s blev ikke fundet",
"%1$s shared »%2$s« with you and wants to add:" : "%1$s delte »%2$s« med dig og vil gerne tilføje:",
"%1$s shared »%2$s« with you and wants to add" : "%1$s delte »%2$s« med dig og vil gerne tilføje",
"»%s« added a note to a file shared with you" : "»%s« tilføjede en note til en fil delt med dig",
"Open »%s«" : "Åbn »%s«",
"%1$s via %2$s" : "%1$s via %2$s",
"You are not allowed to share %s" : "Du har ikke tilladelse til at dele %s",
"Cannot increase permissions of %s" : "Kan give yderigere rettigheder til %s",
"Files cannot be shared with delete permissions" : "Filer kan ikke deles med rettigheder til at slette",
"Files cannot be shared with create permissions" : "Filer kan ikke deles med rettigheder til at oprette",
"Expiration date is in the past" : "Udløbsdatoen ligger tilbage i tid",
"_Cannot set expiration date more than %n day in the future_::_Cannot set expiration date more than %n days in the future_" : ["Udløbsdato kan ikke sættes mere end %n dag ud i fremtiden","Udløbsdato kan ikke sættes mere end %n dage ud i fremtiden"],
"Sharing is only allowed with group members" : "Deling er kun tilladt med gruppemedlemmer",
"%1$s shared »%2$s« with you" : "%1$s delte »%2$s« med dig",
"%1$s shared »%2$s« with you." : "%1$s delte »%2$s« med dig",
"Click the button below to open it." : "Klik på knappen nedenunder for at åbne.",
"The requested share does not exist anymore" : "Det delte emne eksisterer ikke længere",
"The user was not created because the user limit has been reached. Check your notifications to learn more." : "Brugeren blev ikke oprettet, fordi brugergrænsen er nået. Tjek dine notifikationer for at få flere oplysninger.",
"Could not find category \"%s\"" : "Kunne ikke finde kategorien \"%s\"",
"Sunday" : "Søndag",
"Monday" : "Mandag",
"Tuesday" : "Tirsdag",
"Wednesday" : "Onsdag",
"Thursday" : "Torsdag",
"Friday" : "Fredag",
"Saturday" : "Lørdag",
"Sun." : "Søn.",
"Mon." : "Man.",
"Tue." : "Tir.",
"Wed." : "Ons.",
"Thu." : "Tor.",
"Fri." : "Fre.",
"Sat." : "Lør.",
"Su" : "Sø",
"Mo" : "Ma",
"Tu" : "Ti",
"We" : "On",
"Th" : "To",
"Fr" : "Fr",
"Sa" : "Lø",
"January" : "Januar",
"February" : "Februar",
"March" : "Marts",
"April" : "April",
"May" : "Maj",
"June" : "Juni",
"July" : "Juli",
"August" : "August",
"September" : "September",
"October" : "Oktober",
"November" : "November",
"December" : "December",
"Jan." : "Jan.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Apr.",
"May." : "Maj.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Aug.",
"Sep." : "Sep.",
"Oct." : "Okt.",
"Nov." : "Nov.",
"Dec." : "Dec.",
"A valid password must be provided" : "En gyldig adgangskode skal angives",
"Login canceled by app" : "Login annulleret af app",
"App \"%1$s\" cannot be installed because the following dependencies are not fulfilled: %2$s" : "Appen \"%1$s\" kan ikke installeres, da følgende afhængigheder ikke imødekommes: %2$s",
"a safe home for all your data" : "et sikkert hjem til alle dine data",
"File is currently busy, please try again later" : "Filen er i øjeblikket optaget - forsøg igen senere",
"Cannot download file" : "Kan ikke downloade filen",
"Application is not enabled" : "Programmet er ikke aktiveret",
"Authentication error" : "Adgangsfejl",
"Token expired. Please reload page." : "Adgang er udløbet. Genindlæs siden.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "Ingen database driver (sqlite, mysql eller postgresql) er installeret.",
"Cannot write into \"config\" directory." : "Kan ikke skrive til mappen \"config\".",
"This can usually be fixed by giving the web server write access to the config directory. See %s" : "Dette kan som regel ordnes ved at give webserveren skrive adgang til config mappen. Se %s",
"Or, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it. See %s" : "Men hvis du foretrækker at bibeholde config.php skrivebeskyttet, så sæt parameter \"config_is_read_only\" til true i filen. Se %s",
"Cannot write into \"apps\" directory." : "Kan ikke skrive til mappen \"apps\".",
"This can usually be fixed by giving the web server write access to the apps directory or disabling the App Store in the config file." : "Dette kan som regel rettes ved at give webserveren skriveadgang til apps-mappen eller slå appstore fra i config-filen.",
"Cannot create \"data\" directory." : "Kan ikke oprette mappen \"data\".",
"This can usually be fixed by giving the web server write access to the root directory. See %s" : "Dette kan som regel ordnes ved at give webserveren skrive adgang til rod mappen. Se %s",
"Permissions can usually be fixed by giving the web server write access to the root directory. See %s." : "Rettigheder kan som regel rettes ved at give webserveren skriveadgang til rodmappen. Se %s.",
"Your data directory is not writable." : "Data biblioteket er skrivebeskyttet.",
"Setting locale to %s failed." : "Angivelse af %s for lokalitet mislykkedes.",
"Please install one of these locales on your system and restart your web server." : "Installér venligst én af disse lokaliteter på dit system, og genstart din webserver.",
"PHP module %s not installed." : "PHP-modulet %s er ikke installeret.",
"Please ask your server administrator to install the module." : "Du bedes anmode din serveradministrator om at installere modulet.",
"PHP setting \"%s\" is not set to \"%s\"." : "PHP-indstillingen \"%s\" er ikke angivet til \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "Ændring af denne indstilling i php.ini vil tillade Nextcloud at køre igen",
"<code>mbstring.func_overload</code> is set to <code>%s</code> instead of the expected value <code>0</code>." : "<code>mbstring.func_overload</code> er angivet til <code>%s</code>, i stedet for den forventede værdi <code>0</code>",
"To fix this issue set <code>mbstring.func_overload</code> to <code>0</code> in your php.ini." : "For at rette dette problem, sæt <code>mbstring.func_overload</code> til <code>0</code> i din php.ini.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "PHP er tilsyneladende sat op til at fjerne indlejrede doc-blokke. Dette vil gøre adskillige kerneprogrammer utilgængelige.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Dette er sansynligvis forårsaget af et accelerator eller cache som Zend OPcache eller eAccelerator",
"PHP modules have been installed, but they are still listed as missing?" : "Der er installeret PHP-moduler, men de fremstår stadig som fraværende?",
"Please ask your server administrator to restart the web server." : "Du bedes anmode din serveradministrator om at genstarte webserveren.",
"The required %s config variable is not configured in the config.php file." : "Den krævede config variabel %s er ikke konfigureret i config.php filen.",
"Please ask your server administrator to check the Nextcloud configuration." : "Du bedes anmode din serveradministrator om at kontrollere Nextcloud konfigurationen.",
"Your data directory must be an absolute path." : "Datamappen skal have en absolut sti.",
"Check the value of \"datadirectory\" in your configuration." : "Tjek værdien for \"datadictionary\" i din konfiguration.",
"Your data directory is invalid." : "Datamappen er ugyldig.",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Du bedes sikre at filen \".ocdata\" befinder sig i roden af din datamappe.",
"Action \"%s\" not supported or implemented." : "Aktiviteten \"%s\" er ikke understøttet eller implementeret.",
"Authentication failed, wrong token or provider ID given" : "Kunne ikke validere brugeren",
"Parameters missing in order to complete the request. Missing Parameters: \"%s\"" : "Anmodningen kunne ikke gennemføres pga. manglende parameter: \"%s\"",
"ID \"%1$s\" already used by cloud federation provider \"%2$s\"" : "ID \"%1$s\" er allerede i brug af cloud federation provider \"%2$s\"",
"Cloud Federation Provider with ID: \"%s\" does not exist." : "Cloud Federation Provider med ID: \"%s\" eksisterer ikke.",
"Could not obtain lock type %d on \"%s\"." : "Kunne ikke opnå en låsetype %d på \"%s\".",
"Storage unauthorized. %s" : "Lageret er ikke autoriseret. %s",
"Storage incomplete configuration. %s" : "Lageret er ikke konfigureret korrekt. %s",
"Storage connection error. %s" : "Forbindelses fejl til lageret. %s",
"Storage is temporarily not available" : "Lagerplads er midlertidigt ikke tilgængeligt",
"Storage connection timeout. %s" : "Lageret svarer ikke. %s",
"Free prompt" : "Gratis prompt",
"Runs an arbitrary prompt through the language model." : "Kører en arbitrær prompt gennem sprogmodellen.",
"Generate headline" : "Generer overskrift",
"Generates a possible headline for a text." : "Genererer en mulig overskrift til en tekst.",
"Summarize" : "Opsummer",
"Summarizes text by reducing its length without losing key information." : "Opsummerer tekst ved at reducere dens længde uden at miste nøgleinformation.",
"Extract topics" : "Uddrag emner",
"Extracts topics from a text and outputs them separated by commas." : "Uddrager emner fra en tekst og skriver dem adskilt af kommaer.",
"The files of the app %1$s were not replaced correctly. Make sure it is a version compatible with the server." : "Filerne tilhørende appen %1$s blev ikke erstattet korrekt. Check at versionen er kompatibel med serveren.",
"404" : "404",
"Logged in user must be an admin, a sub admin or gotten special right to access this setting" : "Bruger skal være administrator, underadministrator eller have tildelt specielle rettigheder for at have adgang til denne indstilling",
"Logged in user must be an admin or sub admin" : "Bruger skal være administrator eller underadministrator",
"Logged in user must be an admin" : "Brugeren skal være administrator",
"Full name" : "Fulde navn",
"Unknown user" : "Ukendt bruger",
"Enter the database username and name for %s" : "Indtast navn til databasen og brugernavn for %s",
"Enter the database username for %s" : "Indtast brugernavn til databasen for %s",
"MySQL username and/or password not valid" : "MySQL brugernavn og/eller kodeord er ikke gyldigt",
"Oracle username and/or password not valid" : "Oracle brugernavn og/eller kodeord er ikke gyldigt.",
"PostgreSQL username and/or password not valid" : "PostgreSQL brugernavn og/eller kodeord er ikke gyldigt.",
"Set an admin username." : "Angiv et admin brugernavn.",
"Sharing %s failed, because this item is already shared with user %s" : "Deling af %s mislykkedes, fordi dette element allerede er delt med brugeren %s",
"The username is already being used" : "Brugernavnet er allerede i brug",
"Could not create user" : "Kunne ikke oprette bruger",
"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", spaces and \"_.@-'\"" : "Kun følgende tegn kan indgå i et brugernavn: \"a-z\", \"A-Z\", \"0-9\", mellemrum and \"_.@-'\"",
"A valid username must be provided" : "Et gyldigt brugernavn skal angives",
"Username contains whitespace at the beginning or at the end" : "Brugernavnet har et mellemrum i starten eller slutningen",
"Username must not consist of dots only" : "Brugernavnet må ikke bestå af rene prikker/punktummer",
"Username is invalid because files already exist for this user" : "Brugernavnet er ugyldigt, da der allerede eksisterer filer for denne bruger",
"User disabled" : "Bruger deaktiveret",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "libxml2 skal mindst være version 2.7.0. Du har version %s installeret.",
"To fix this issue update your libxml2 version and restart your web server." : "Opdater din libxml2 version og genstart webserveren for at løse problemet.",
"PostgreSQL >= 9 required." : "PostgreSQL >= 9 kræves.",
"Please upgrade your database version." : "Opgradér venligst din databaseversion.",
"Your data directory is readable by other users." : "Datamappen kan læses af andre brugere.",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Tilpas venligst rettigheder til 0770, så mappen ikke fremvises for andre brugere."
},
"nplurals=2; plural=(n != 1);");
+277
View File
@@ -0,0 +1,277 @@
{ "translations": {
"Cannot write into \"config\" directory!" : "Kan ikke skrive til mappen \"config\"!",
"This can usually be fixed by giving the web server write access to the config directory." : "Dette kan normalt rettes ved at give webserveren skriveadgang til config folderen.",
"But, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it." : "Men hvis du foretrækker at bibeholde config.php skrivebeskyttet, så sæt parameter \"config_is_read_only\" til true i filen. ",
"See %s" : "Se %s",
"Application %1$s is not present or has a non-compatible version with this server. Please check the apps directory." : "Applikationen %1$s er ikke til stede eller har en ikke-kompatibel version med denne server. Tjek venligst apps mappen.",
"Sample configuration detected" : "Eksempel for konfiguration registreret",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Der er registreret at konfigurations eksemplet er blevet kopieret direkte. Dette kan ødelægge din installation og understøttes ikke. Læs venligst dokumentationen før der foretages ændringer i config.php",
"The page could not be found on the server." : "Siden kunne ikke findes på serveren.",
"%s email verification" : "%s email verifikation",
"Email verification" : "Email verifikation",
"Click the following button to confirm your email." : "Tryk på følgende knap for at bekræfte din email.",
"Click the following link to confirm your email." : "Klik på følgende link for at bekræfte din email.",
"Confirm your email" : "Bekræft din email",
"Other activities" : "Andre aktiviteter",
"%1$s and %2$s" : "%1$s og %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s og %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s og %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s og %5$s",
"Education Edition" : "Education Edition",
"Enterprise bundle" : "Enterprise bundle",
"Groupware bundle" : "Groupware bundle",
"Hub bundle" : "Hub bundle",
"Social sharing bundle" : "Social sharing bundle",
"PHP %s or higher is required." : "Der kræves PHP %s eller nyere.",
"PHP with a version lower than %s is required." : "Der kræves PHP %s eller ældre.",
"%sbit or higher PHP required." : "Der kræves PHP %s eller nyere.",
"The following architectures are supported: %s" : "Følgende arkitekturer er understøttes: %s",
"The following databases are supported: %s" : "Følgende databaser understøttes: %s",
"The command line tool %s could not be found" : "Kommandolinjeværktøjet %s blev ikke fundet",
"The library %s is not available." : "Biblioteket %s er ikke tilgængeligt.",
"Library %1$s with a version higher than %2$s is required - available version %3$s." : "Der kræves en version af biblioteket %1$s, der er højere end %2$s - tilgængelig version er %3$s.",
"Library %1$s with a version lower than %2$s is required - available version %3$s." : "Der kræves en version af biblioteket %1$s, der er lavere end %2$s - tilgængelig version er %3$s.",
"The following platforms are supported: %s" : "Følgende platforme understøttes: %s",
"Server version %s or higher is required." : "Du skal have server version %s eller nyere.",
"Server version %s or lower is required." : "Du skal have server version %s eller ældre.",
"Wiping of device %s has started" : "Komplet sletning af enhed %s er påbegyndt",
"Wiping of device »%s« has started" : "Komplet sletning af enhed »%s« er påbegyndt",
"»%s« started remote wipe" : "Fjernsletning påbegyndt af »%s« ",
"Device or application »%s« has started the remote wipe process. You will receive another email once the process has finished" : "Enheden eller applikationen »%s« har påbegyndt en fjernsletnings proces. Du vil modtage en e-mail når processen er færdig",
"Wiping of device %s has finished" : "Komplet sletning af enhed %s er færdig",
"Wiping of device »%s« has finished" : "Komplet sletning af enhed »%s« er færdig",
"»%s« finished remote wipe" : "»%s« er færdig med fjernsletning",
"Device or application »%s« has finished the remote wipe process." : " Fjernsletningen der blev aktiveret af enhed alle applikation »%s« er færdig.",
"Remote wipe started" : "Fjernsletning er startet",
"A remote wipe was started on device %s" : "En fjernsletning af enheden %s er påbegyndt",
"Remote wipe finished" : "Fjernsletning er færdig",
"The remote wipe on %s has finished" : "Fjernsletningen af %s er færdig",
"Authentication" : "Godkendelse",
"Unknown filetype" : "Ukendt filtype",
"Invalid image" : "Ugyldigt billede",
"Avatar image is not square" : "Avatar billedet er ikke kvadratisk",
"Files" : "Filer",
"View profile" : "Vis profil",
"Local time: %s" : "Lokal tid: %s",
"today" : "i dag",
"tomorrow" : "i morgen",
"yesterday" : "i går",
"_in %n day_::_in %n days_" : ["om %n dag","om %n dage"],
"_%n day ago_::_%n days ago_" : ["%n dag siden","%n dage siden"],
"next month" : "næste måned",
"last month" : "sidste måned",
"_in %n month_::_in %n months_" : ["om %n måned","om %n måneder"],
"_%n month ago_::_%n months ago_" : ["%n måned siden","%n måneder siden"],
"next year" : "næste år",
"last year" : "sidste år",
"_in %n year_::_in %n years_" : ["om %n år","om %n år"],
"_%n year ago_::_%n years ago_" : ["%n år siden","%n år siden"],
"_in %n hour_::_in %n hours_" : ["om %n time","om %n timer"],
"_%n hour ago_::_%n hours ago_" : ["%n time siden","%n timer siden"],
"_in %n minute_::_in %n minutes_" : ["om %n minut","om %n minutter"],
"_%n minute ago_::_%n minutes ago_" : ["%n minut siden","%n minutter siden"],
"in a few seconds" : "om få sekunder",
"seconds ago" : "få sekunder siden",
"Empty file" : "Tom fil",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "Modulet med ID: %s eksisterer ikke. Aktiver det venligst i dine indstillinger eller kontakt din administrator.",
"File already exists" : "Filen findes allerede",
"Invalid path" : "Ugyldig sti",
"Failed to create file from template" : "Fejl ved oprettelse af fil fra skabelon",
"Templates" : "Skabeloner",
"File name is a reserved word" : "Filnavnet er et reserveret ord",
"File name contains at least one invalid character" : "Filnavnet indeholder mindst ét ugyldigt tegn",
"File name is too long" : "Filnavnet er for langt",
"Dot files are not allowed" : "Filer med punktummer er ikke tilladt",
"Empty filename is not allowed" : "Tomme filnavne er ikke tilladt",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "Appen \"%s\" kan ikke installeres fordi appinfo filen ikke kan læses.",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "Appen \"%s\" kan ikke installeres fordi den ikke er kompatibel med denne version af serveren.",
"__language_name__" : "Dansk",
"This is an automatically sent email, please do not reply." : "Dette er en automatisk sendt e-mail, svar venligst ikke.",
"Help" : "Hjælp",
"Appearance and accessibility" : "Udseende og tilgængelighed",
"Apps" : "Apps",
"Personal settings" : "Personlige indstillinger",
"Administration settings" : "System indstillinger",
"Settings" : "Indstillinger",
"Log out" : "Log ud",
"Users" : "Brugere",
"Email" : "E-mail",
"Mail %s" : "Mail %s",
"Fediverse" : "Fediverse",
"View %s on the fediverse" : "Vis %s på fediverset",
"Phone" : "Telefon",
"Call %s" : "Ring op %s",
"Twitter" : "Twitter",
"View %s on Twitter" : "Følg %s på Twitter",
"Website" : "Hjemmeside",
"Visit %s" : "Besøg %s",
"Address" : "Adresse",
"Profile picture" : "Profilbillede",
"About" : "Om",
"Display name" : "Vist navn",
"Headline" : "Overskrift",
"Organisation" : "Organisation",
"Role" : "Rolle",
"Additional settings" : "Yderligere indstillinger",
"Enter the database name for %s" : "Indtast databasenavnet for %s",
"You cannot use dots in the database name %s" : "Du må ikke bruge punktummer i databasenavnet %s",
"You need to enter details of an existing account." : "Du skal indtaste detaljerne for en eksisterende konto.",
"Oracle connection could not be established" : "Oracle forbindelsen kunne ikke etableres",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "Mac OS X understøttes ikke og %s vil ikke virke optimalt på denne platform. Anvend på eget ansvar!",
"For the best results, please consider using a GNU/Linux server instead." : "For de bedste resultater, overvej venligst at bruge en GNU/Linux-server i stedet.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Det ser ud til, at denne %s-instans kører på et 32-bit PHP-miljø, samt at open_basedir er blevet konfigureret gennem php.ini. Dette vil føre til problemer med filer som er større end 4GB, og frarådes kraftigt.",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Fjern venligst indstillingen for open_basedir inde i din php.ini eller skift til 64-bit PHP.",
"Set an admin password." : "Angiv et admin kodeord.",
"Cannot create or write into the data directory %s" : "Kan ikke oprette eller skrive ind i datamappen %s",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Delingsbackend'en %s skal implementere grænsefladen OCP\\Share_Backend",
"Sharing backend %s not found" : "Delingsbackend'en %s blev ikke fundet",
"Sharing backend for %s not found" : "Delingsbackend'en for %s blev ikke fundet",
"%1$s shared »%2$s« with you and wants to add:" : "%1$s delte »%2$s« med dig og vil gerne tilføje:",
"%1$s shared »%2$s« with you and wants to add" : "%1$s delte »%2$s« med dig og vil gerne tilføje",
"»%s« added a note to a file shared with you" : "»%s« tilføjede en note til en fil delt med dig",
"Open »%s«" : "Åbn »%s«",
"%1$s via %2$s" : "%1$s via %2$s",
"You are not allowed to share %s" : "Du har ikke tilladelse til at dele %s",
"Cannot increase permissions of %s" : "Kan give yderigere rettigheder til %s",
"Files cannot be shared with delete permissions" : "Filer kan ikke deles med rettigheder til at slette",
"Files cannot be shared with create permissions" : "Filer kan ikke deles med rettigheder til at oprette",
"Expiration date is in the past" : "Udløbsdatoen ligger tilbage i tid",
"_Cannot set expiration date more than %n day in the future_::_Cannot set expiration date more than %n days in the future_" : ["Udløbsdato kan ikke sættes mere end %n dag ud i fremtiden","Udløbsdato kan ikke sættes mere end %n dage ud i fremtiden"],
"Sharing is only allowed with group members" : "Deling er kun tilladt med gruppemedlemmer",
"%1$s shared »%2$s« with you" : "%1$s delte »%2$s« med dig",
"%1$s shared »%2$s« with you." : "%1$s delte »%2$s« med dig",
"Click the button below to open it." : "Klik på knappen nedenunder for at åbne.",
"The requested share does not exist anymore" : "Det delte emne eksisterer ikke længere",
"The user was not created because the user limit has been reached. Check your notifications to learn more." : "Brugeren blev ikke oprettet, fordi brugergrænsen er nået. Tjek dine notifikationer for at få flere oplysninger.",
"Could not find category \"%s\"" : "Kunne ikke finde kategorien \"%s\"",
"Sunday" : "Søndag",
"Monday" : "Mandag",
"Tuesday" : "Tirsdag",
"Wednesday" : "Onsdag",
"Thursday" : "Torsdag",
"Friday" : "Fredag",
"Saturday" : "Lørdag",
"Sun." : "Søn.",
"Mon." : "Man.",
"Tue." : "Tir.",
"Wed." : "Ons.",
"Thu." : "Tor.",
"Fri." : "Fre.",
"Sat." : "Lør.",
"Su" : "Sø",
"Mo" : "Ma",
"Tu" : "Ti",
"We" : "On",
"Th" : "To",
"Fr" : "Fr",
"Sa" : "Lø",
"January" : "Januar",
"February" : "Februar",
"March" : "Marts",
"April" : "April",
"May" : "Maj",
"June" : "Juni",
"July" : "Juli",
"August" : "August",
"September" : "September",
"October" : "Oktober",
"November" : "November",
"December" : "December",
"Jan." : "Jan.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Apr.",
"May." : "Maj.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Aug.",
"Sep." : "Sep.",
"Oct." : "Okt.",
"Nov." : "Nov.",
"Dec." : "Dec.",
"A valid password must be provided" : "En gyldig adgangskode skal angives",
"Login canceled by app" : "Login annulleret af app",
"App \"%1$s\" cannot be installed because the following dependencies are not fulfilled: %2$s" : "Appen \"%1$s\" kan ikke installeres, da følgende afhængigheder ikke imødekommes: %2$s",
"a safe home for all your data" : "et sikkert hjem til alle dine data",
"File is currently busy, please try again later" : "Filen er i øjeblikket optaget - forsøg igen senere",
"Cannot download file" : "Kan ikke downloade filen",
"Application is not enabled" : "Programmet er ikke aktiveret",
"Authentication error" : "Adgangsfejl",
"Token expired. Please reload page." : "Adgang er udløbet. Genindlæs siden.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "Ingen database driver (sqlite, mysql eller postgresql) er installeret.",
"Cannot write into \"config\" directory." : "Kan ikke skrive til mappen \"config\".",
"This can usually be fixed by giving the web server write access to the config directory. See %s" : "Dette kan som regel ordnes ved at give webserveren skrive adgang til config mappen. Se %s",
"Or, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it. See %s" : "Men hvis du foretrækker at bibeholde config.php skrivebeskyttet, så sæt parameter \"config_is_read_only\" til true i filen. Se %s",
"Cannot write into \"apps\" directory." : "Kan ikke skrive til mappen \"apps\".",
"This can usually be fixed by giving the web server write access to the apps directory or disabling the App Store in the config file." : "Dette kan som regel rettes ved at give webserveren skriveadgang til apps-mappen eller slå appstore fra i config-filen.",
"Cannot create \"data\" directory." : "Kan ikke oprette mappen \"data\".",
"This can usually be fixed by giving the web server write access to the root directory. See %s" : "Dette kan som regel ordnes ved at give webserveren skrive adgang til rod mappen. Se %s",
"Permissions can usually be fixed by giving the web server write access to the root directory. See %s." : "Rettigheder kan som regel rettes ved at give webserveren skriveadgang til rodmappen. Se %s.",
"Your data directory is not writable." : "Data biblioteket er skrivebeskyttet.",
"Setting locale to %s failed." : "Angivelse af %s for lokalitet mislykkedes.",
"Please install one of these locales on your system and restart your web server." : "Installér venligst én af disse lokaliteter på dit system, og genstart din webserver.",
"PHP module %s not installed." : "PHP-modulet %s er ikke installeret.",
"Please ask your server administrator to install the module." : "Du bedes anmode din serveradministrator om at installere modulet.",
"PHP setting \"%s\" is not set to \"%s\"." : "PHP-indstillingen \"%s\" er ikke angivet til \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "Ændring af denne indstilling i php.ini vil tillade Nextcloud at køre igen",
"<code>mbstring.func_overload</code> is set to <code>%s</code> instead of the expected value <code>0</code>." : "<code>mbstring.func_overload</code> er angivet til <code>%s</code>, i stedet for den forventede værdi <code>0</code>",
"To fix this issue set <code>mbstring.func_overload</code> to <code>0</code> in your php.ini." : "For at rette dette problem, sæt <code>mbstring.func_overload</code> til <code>0</code> i din php.ini.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "PHP er tilsyneladende sat op til at fjerne indlejrede doc-blokke. Dette vil gøre adskillige kerneprogrammer utilgængelige.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Dette er sansynligvis forårsaget af et accelerator eller cache som Zend OPcache eller eAccelerator",
"PHP modules have been installed, but they are still listed as missing?" : "Der er installeret PHP-moduler, men de fremstår stadig som fraværende?",
"Please ask your server administrator to restart the web server." : "Du bedes anmode din serveradministrator om at genstarte webserveren.",
"The required %s config variable is not configured in the config.php file." : "Den krævede config variabel %s er ikke konfigureret i config.php filen.",
"Please ask your server administrator to check the Nextcloud configuration." : "Du bedes anmode din serveradministrator om at kontrollere Nextcloud konfigurationen.",
"Your data directory must be an absolute path." : "Datamappen skal have en absolut sti.",
"Check the value of \"datadirectory\" in your configuration." : "Tjek værdien for \"datadictionary\" i din konfiguration.",
"Your data directory is invalid." : "Datamappen er ugyldig.",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Du bedes sikre at filen \".ocdata\" befinder sig i roden af din datamappe.",
"Action \"%s\" not supported or implemented." : "Aktiviteten \"%s\" er ikke understøttet eller implementeret.",
"Authentication failed, wrong token or provider ID given" : "Kunne ikke validere brugeren",
"Parameters missing in order to complete the request. Missing Parameters: \"%s\"" : "Anmodningen kunne ikke gennemføres pga. manglende parameter: \"%s\"",
"ID \"%1$s\" already used by cloud federation provider \"%2$s\"" : "ID \"%1$s\" er allerede i brug af cloud federation provider \"%2$s\"",
"Cloud Federation Provider with ID: \"%s\" does not exist." : "Cloud Federation Provider med ID: \"%s\" eksisterer ikke.",
"Could not obtain lock type %d on \"%s\"." : "Kunne ikke opnå en låsetype %d på \"%s\".",
"Storage unauthorized. %s" : "Lageret er ikke autoriseret. %s",
"Storage incomplete configuration. %s" : "Lageret er ikke konfigureret korrekt. %s",
"Storage connection error. %s" : "Forbindelses fejl til lageret. %s",
"Storage is temporarily not available" : "Lagerplads er midlertidigt ikke tilgængeligt",
"Storage connection timeout. %s" : "Lageret svarer ikke. %s",
"Free prompt" : "Gratis prompt",
"Runs an arbitrary prompt through the language model." : "Kører en arbitrær prompt gennem sprogmodellen.",
"Generate headline" : "Generer overskrift",
"Generates a possible headline for a text." : "Genererer en mulig overskrift til en tekst.",
"Summarize" : "Opsummer",
"Summarizes text by reducing its length without losing key information." : "Opsummerer tekst ved at reducere dens længde uden at miste nøgleinformation.",
"Extract topics" : "Uddrag emner",
"Extracts topics from a text and outputs them separated by commas." : "Uddrager emner fra en tekst og skriver dem adskilt af kommaer.",
"The files of the app %1$s were not replaced correctly. Make sure it is a version compatible with the server." : "Filerne tilhørende appen %1$s blev ikke erstattet korrekt. Check at versionen er kompatibel med serveren.",
"404" : "404",
"Logged in user must be an admin, a sub admin or gotten special right to access this setting" : "Bruger skal være administrator, underadministrator eller have tildelt specielle rettigheder for at have adgang til denne indstilling",
"Logged in user must be an admin or sub admin" : "Bruger skal være administrator eller underadministrator",
"Logged in user must be an admin" : "Brugeren skal være administrator",
"Full name" : "Fulde navn",
"Unknown user" : "Ukendt bruger",
"Enter the database username and name for %s" : "Indtast navn til databasen og brugernavn for %s",
"Enter the database username for %s" : "Indtast brugernavn til databasen for %s",
"MySQL username and/or password not valid" : "MySQL brugernavn og/eller kodeord er ikke gyldigt",
"Oracle username and/or password not valid" : "Oracle brugernavn og/eller kodeord er ikke gyldigt.",
"PostgreSQL username and/or password not valid" : "PostgreSQL brugernavn og/eller kodeord er ikke gyldigt.",
"Set an admin username." : "Angiv et admin brugernavn.",
"Sharing %s failed, because this item is already shared with user %s" : "Deling af %s mislykkedes, fordi dette element allerede er delt med brugeren %s",
"The username is already being used" : "Brugernavnet er allerede i brug",
"Could not create user" : "Kunne ikke oprette bruger",
"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", spaces and \"_.@-'\"" : "Kun følgende tegn kan indgå i et brugernavn: \"a-z\", \"A-Z\", \"0-9\", mellemrum and \"_.@-'\"",
"A valid username must be provided" : "Et gyldigt brugernavn skal angives",
"Username contains whitespace at the beginning or at the end" : "Brugernavnet har et mellemrum i starten eller slutningen",
"Username must not consist of dots only" : "Brugernavnet må ikke bestå af rene prikker/punktummer",
"Username is invalid because files already exist for this user" : "Brugernavnet er ugyldigt, da der allerede eksisterer filer for denne bruger",
"User disabled" : "Bruger deaktiveret",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "libxml2 skal mindst være version 2.7.0. Du har version %s installeret.",
"To fix this issue update your libxml2 version and restart your web server." : "Opdater din libxml2 version og genstart webserveren for at løse problemet.",
"PostgreSQL >= 9 required." : "PostgreSQL >= 9 kræves.",
"Please upgrade your database version." : "Opgradér venligst din databaseversion.",
"Your data directory is readable by other users." : "Datamappen kan læses af andre brugere.",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Tilpas venligst rettigheder til 0770, så mappen ikke fremvises for andre brugere."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}
+280
View File
@@ -0,0 +1,280 @@
OC.L10N.register(
"lib",
{
"Cannot write into \"config\" directory!" : "Das Schreiben in das „config“-Verzeichnis ist nicht möglich!",
"This can usually be fixed by giving the web server write access to the config directory." : "Dies kann normalerweise behoben werden, indem dem Webserver Schreibzugriff auf das config-Verzeichnis gegeben wird.",
"But, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it." : "Wenn du jedoch möchtest dass die Datei config.php schreibgeschützt bleiben soll, dann setze die Option \"config_is_read_only\" in der Datei auf true.",
"See %s" : "Siehe %s",
"Application %1$s is not present or has a non-compatible version with this server. Please check the apps directory." : "Die Anwendung %1$s ist nicht vorhanden oder hat eine mit diesem Server nicht kompatible Version. Bitte überprüfe das Apps-Verzeichnis.",
"Sample configuration detected" : "Beispielkonfiguration gefunden",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Es wurde festgestellt, dass die Beispielkonfiguration kopiert wurde. Dies kann deine Installation zerstören und wird nicht unterstützt. Bitte die Dokumentation lesen, bevor Änderungen an der config.php vorgenommen werden.",
"The page could not be found on the server." : "Die Seite konnte auf dem Server nicht gefunden werden.",
"%s email verification" : "%s E-Mail-Überprüfung",
"Email verification" : "E-Mail-Überprüfung",
"Click the following button to confirm your email." : "Klicke die folgende Schaltfläche, um deine E-Mail-Adresse zu bestätigen.",
"Click the following link to confirm your email." : "Klicke den nachfolgenden Link, um deine E-Mail-Adresse zu bestätigen",
"Confirm your email" : "Bestätige deine E-Mail-Adresse",
"Other activities" : "Andere Aktivitäten",
"%1$s and %2$s" : "%1$s und %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s und %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s und %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s und %5$s",
"Education Edition" : "Bildungsausgabe",
"Enterprise bundle" : "Firmen-Paket",
"Groupware bundle" : "Groupware-Paket",
"Hub bundle" : "Hub-Paket",
"Social sharing bundle" : "Paket für das Teilen in sozialen Medien",
"PHP %s or higher is required." : "PHP %s oder höher wird benötigt.",
"PHP with a version lower than %s is required." : "PHP wird in einer früheren Version als %s benötigt.",
"%sbit or higher PHP required." : "%sbit oder höheres PHP wird benötigt.",
"The following architectures are supported: %s" : "Die folgenden Architekturen werden unterstützt: %s",
"The following databases are supported: %s" : "Die folgenden Datenbanken werden unterstützt: %s",
"The command line tool %s could not be found" : "Das Kommandozeilenwerkzeug %s konnte nicht gefunden werden",
"The library %s is not available." : "Die Bibliothek %s ist nicht verfügbar.",
"Library %1$s with a version higher than %2$s is required - available version %3$s." : "Die Bibliothek %1$s wird in einer neueren Version als %2$s benötigt - verfügbare Version ist %3$s.",
"Library %1$s with a version lower than %2$s is required - available version %3$s." : "Die Bibliothek %1$s wird in einer früheren Version als %2$s benötigt - verfügbare Version ist %3$s.",
"The following platforms are supported: %s" : "Die folgenden Plattformen werden unterstützt: %s",
"Server version %s or higher is required." : "Server Version %s oder höher wird benötigt.",
"Server version %s or lower is required." : "Server Version %s oder niedriger wird benötigt.",
"Wiping of device %s has started" : "Löschen von Gerät %s wurde gestartet",
"Wiping of device »%s« has started" : "Löschen von Gerät »%s« wurde gestartet",
"»%s« started remote wipe" : "»%s« hat das Löschen aus der Ferne gestartet",
"Device or application »%s« has started the remote wipe process. You will receive another email once the process has finished" : "Gerät oder Anwendung »%s« hat den Vorgang des Löschens aus der Ferne gestartet. Du bekommst eine weitere E-Mail sobald der Vorgang beendet wurde",
"Wiping of device %s has finished" : "Löschen von Gerät %s wurde beendet",
"Wiping of device »%s« has finished" : "Löschen von Gerät »%s« wurde beendet",
"»%s« finished remote wipe" : "»%s« hat das Löschen aus der Ferne beendet",
"Device or application »%s« has finished the remote wipe process." : "Gerät oder Anwendung »%s« hat den Vorgang des Löschens aus der Ferne beendet.",
"Remote wipe started" : "Fernlöschung gestartet",
"A remote wipe was started on device %s" : "Eine Fernlöschung wurde am Gerät %s gestartet",
"Remote wipe finished" : "Fernlöschung fertig",
"The remote wipe on %s has finished" : "Die Fernlöschung auf %s ist fertig",
"Authentication" : "Authentifizierung",
"Unknown filetype" : "Unbekannter Dateityp",
"Invalid image" : "Ungültiges Bild",
"Avatar image is not square" : "Benutzerbild ist nicht quadratisch",
"Files" : "Dateien",
"View profile" : "Profil ansehen",
"Local time: %s" : "Ortszeit: %s",
"today" : "Heute",
"tomorrow" : "Morgen",
"yesterday" : "Gestern",
"_in %n day_::_in %n days_" : ["in %n Tag","in %n Tagen"],
"_%n day ago_::_%n days ago_" : ["Vor %n Tag","Vor %n Tagen"],
"next month" : "Nächsten Monat",
"last month" : "Letzten Monat",
"_in %n month_::_in %n months_" : ["in %n Monat","in %n Monaten"],
"_%n month ago_::_%n months ago_" : ["Vor %n Monat","Vor %n Monaten"],
"next year" : "nächstes Jahr",
"last year" : "Letztes Jahr",
"_in %n year_::_in %n years_" : ["in %n Jahr","in %n Jahren"],
"_%n year ago_::_%n years ago_" : ["Vor %n Jahr","Vor %n Jahren"],
"_in %n hour_::_in %n hours_" : ["in %n Stunde","in %n Stunden"],
"_%n hour ago_::_%n hours ago_" : ["Vor %n Stunde","Vor %n Stunden"],
"_in %n minute_::_in %n minutes_" : ["in %n Minute","in %n Minuten"],
"_%n minute ago_::_%n minutes ago_" : ["Vor %n Minute","Vor %n Minuten"],
"in a few seconds" : "in wenigen Sekunden",
"seconds ago" : "Gerade eben",
"Empty file" : "Leere Datei",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "Das Modul mit der ID: %s existiert nicht. Bitte die App in den App-Einstellungen aktivieren oder den Administrator kontaktieren.",
"File already exists" : "Datei bereits vorhanden",
"Invalid path" : "Ungültiger Pfad",
"Failed to create file from template" : "Fehler beim Erstellen der Datei aus Vorlage",
"Templates" : "Vorlagen",
"File name is a reserved word" : "Der Dateiname ist ein reserviertes Wort",
"File name contains at least one invalid character" : "Der Dateiname enthält mindestens ein ungültiges Zeichen",
"File name is too long" : "Dateiname ist zu lang",
"Dot files are not allowed" : "Dateinamen mit einem Punkt am Anfang sind nicht erlaubt",
"Empty filename is not allowed" : "Ein leerer Dateiname ist nicht erlaubt",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "Die Anwendung \"%s\" kann nicht installiert werden, weil die Anwendungsinfodatei nicht gelesen werden kann.",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "Die App \"%s\" kann nicht installiert werden, da sie mit dieser Serverversion nicht kompatibel ist.",
"__language_name__" : "Deutsch (Persönlich: Du)",
"This is an automatically sent email, please do not reply." : "Dies ist eine automatisch gesendete E-Mail. Bitte antworte nicht auf diese E-Mail.",
"Help" : "Hilfe",
"Appearance and accessibility" : "Erscheinungsbild und Barrierefreiheit",
"Apps" : "Apps",
"Personal settings" : "Persönliche Einstellungen",
"Administration settings" : "Verwaltungseinstellungen",
"Settings" : "Einstellungen",
"Log out" : "Abmelden",
"Users" : "Benutzer",
"Email" : "E-Mail",
"Mail %s" : "E-Mail %s",
"Fediverse" : "Fediverse",
"View %s on the fediverse" : "Zeige %s auf dem Fediverse",
"Phone" : "Telefon",
"Call %s" : "%s anrufen",
"Twitter" : "X",
"View %s on Twitter" : "%s auf X anzeigen",
"Website" : "Webseite",
"Visit %s" : "%s besuchen",
"Address" : "Adresse",
"Profile picture" : "Profilbild",
"About" : "Über",
"Display name" : "Anzeigename",
"Headline" : "Überschrift",
"Organisation" : "Organisation",
"Role" : "Funktion",
"Additional settings" : "Zusätzliche Einstellungen",
"Enter the database name for %s" : "Den Datenbanknamen eingeben für %s",
"You cannot use dots in the database name %s" : "Du kannst keine Punkte im Datenbanknamen %s verwenden.",
"You need to enter details of an existing account." : "Du musst Details von einem existierenden Benutzer einfügen.",
"Oracle connection could not be established" : "Es konnte keine Verbindung zur Oracle-Datenbank hergestellt werden",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "Mac OS X wird nicht unterstützt und %s wird auf dieser Plattform nicht richtig funktionieren. Die Benutzung erfolgt auf eigene Gefahr!",
"For the best results, please consider using a GNU/Linux server instead." : "Zur Gewährleistung eines optimalen Betriebs sollte stattdessen ein GNU/Linux-Server verwendet werden.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Es scheint, dass diese %s-Instanz unter einer 32-Bit-PHP-Umgebung läuft und open_basedir in der Datei php.ini konfiguriert worden ist. Von einem solchen Betrieb wird dringend abgeraten, weil es dabei zu Problemen mit Dateien kommt, deren Größe 4 GB übersteigt.",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Bitte entferne die open_basedir-Einstellung in deiner php.ini oder wechsele zu 64-Bit-PHP.",
"Set an admin password." : "Ein Administrator-Passwort setzen.",
"Cannot create or write into the data directory %s" : "Das Datenverzeichnis %s kann nicht erstellt oder es kann darin nicht geschrieben werden.",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Freigabe-Backend %s muss in der OCP\\Share_Backend - Schnittstelle implementiert werden",
"Sharing backend %s not found" : "Freigabe-Backend %s nicht gefunden",
"Sharing backend for %s not found" : "Freigabe-Backend für %s nicht gefunden",
"%1$s shared »%2$s« with you and wants to add:" : "%1$shat » %2$s«  mit dir geteilt und möchte folgendes hinzufügen:",
"%1$s shared »%2$s« with you and wants to add" : "%1$shat »%2$s« mit dir geteilt und möchte folgendes hinzufügen",
"»%s« added a note to a file shared with you" : "»%s« hat eine Bemerkung zu einer mit dir geteilten Datei hinzugefügt",
"Open »%s«" : "»%s« öffnen",
"%1$s via %2$s" : "%1$s über %2$s",
"You are not allowed to share %s" : "Du bist nicht berechtigt, %s zu teilen.",
"Cannot increase permissions of %s" : "Kann die Berechtigungen von %s nicht erhöhen",
"Files cannot be shared with delete permissions" : "Dateien mit Lösch-Berechtigungen können nicht geteilt werden",
"Files cannot be shared with create permissions" : "Dateien mit Erstell-Berechtigungen können nicht geteilt werden",
"Expiration date is in the past" : "Das Ablaufdatum liegt in der Vergangenheit.",
"_Cannot set expiration date more than %n day in the future_::_Cannot set expiration date more than %n days in the future_" : ["Das Ablaufdatum kann nicht mehr als %n Tag in der Zukunft liegen","Das Ablaufdatum kann nicht mehr als %n Tage in der Zukunft liegen"],
"Sharing is only allowed with group members" : "Teilen ist nur mit Gruppenmitgliedern erlaubt",
"%1$s shared »%2$s« with you" : "%1$s hat »%2$s« mit dir geteilt",
"%1$s shared »%2$s« with you." : "%1$s hat »%2$s« mit dir geteilt.",
"Click the button below to open it." : "Klicke zum Öffnen auf die untere Schaltfläche.",
"The requested share does not exist anymore" : "Die angeforderte Freigabe existiert nicht mehr",
"The requested share comes from a disabled user" : "Die angeforderte Freigabe stammt von einem deaktivierten Benutzer",
"The user was not created because the user limit has been reached. Check your notifications to learn more." : "Der Benutzer wurde nicht erstellt, da das Benutzerlimit erreicht wurde. Überprüfe deine Benachrichtigungen, um mehr zu erfahren.",
"Could not find category \"%s\"" : "Die Kategorie \"%s“ konnte nicht gefunden werden",
"Sunday" : "Sonntag",
"Monday" : "Montag",
"Tuesday" : "Dienstag",
"Wednesday" : "Mittwoch",
"Thursday" : "Donnerstag",
"Friday" : "Freitag",
"Saturday" : "Samstag",
"Sun." : "Son.",
"Mon." : "Mon.",
"Tue." : "Die.",
"Wed." : "Mit.",
"Thu." : "Don.",
"Fri." : "Fre.",
"Sat." : "Sam.",
"Su" : "So",
"Mo" : "Mo",
"Tu" : "Di",
"We" : "Mi",
"Th" : "Do",
"Fr" : "Fr",
"Sa" : "Sa",
"January" : "Januar",
"February" : "Februar",
"March" : "März",
"April" : "April",
"May" : "Mai",
"June" : "Juni",
"July" : "Juli",
"August" : "August",
"September" : "September",
"October" : "Oktober",
"November" : "November",
"December" : "Dezember",
"Jan." : "Jan.",
"Feb." : "Feb.",
"Mar." : "Mär.",
"Apr." : "Apr.",
"May." : "Mai",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Aug.",
"Sep." : "Sep.",
"Oct." : "Okt.",
"Nov." : "Nov.",
"Dec." : "Dez.",
"A valid password must be provided" : "Es muss ein gültiges Passwort eingegeben werden",
"Login canceled by app" : "Anmeldung durch die App abgebrochen",
"App \"%1$s\" cannot be installed because the following dependencies are not fulfilled: %2$s" : "Die App „%1$s“ kann nicht installiert werden, da die folgenden Abhängigkeiten nicht erfüllt sind: %2$s",
"a safe home for all your data" : "ein sicherer Ort für all deine Daten",
"File is currently busy, please try again later" : "Die Datei ist in Benutzung, bitte versuche es später noch einmal",
"Cannot download file" : "Datei kann nicht heruntergeladen werden.",
"Application is not enabled" : "Die Anwendung ist nicht aktiviert",
"Authentication error" : "Authentifizierungsfehler",
"Token expired. Please reload page." : "Token abgelaufen. Bitte lade die Seite neu.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "Keine Datenbanktreiber (SQLite, MySQL oder PostgreSQL) installiert.",
"Cannot write into \"config\" directory." : "Schreiben in das „config“-Verzeichnis ist nicht möglich.",
"This can usually be fixed by giving the web server write access to the config directory. See %s" : "Dies kann zumeist behoben werden, indem dem Webserver Schreibzugriff auf das Konfigurationsverzeichnis eingeräumt wird. Siehe auch %s",
"Or, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it. See %s" : "Oder wenn du lieber möchtest, dass die Datei config.php schreibgeschützt bleiben soll, dann setze die Option \"config_is_read_only\" in der Datei auf true. Siehe %s",
"Cannot write into \"apps\" directory." : "Schreiben in das „apps“-Verzeichnis ist nicht möglich.",
"This can usually be fixed by giving the web server write access to the apps directory or disabling the App Store in the config file." : "Dies kann normalerweise behoben werden, indem dem Webserver Schreibzugriff auf das App-Verzeichnis gegeben wird oder der App-Store in der Konfigurationsdatei deaktiviert wird.",
"Cannot create \"data\" directory." : "Kann das \"Daten\"-Verzeichnis nicht erstellen.",
"This can usually be fixed by giving the web server write access to the root directory. See %s" : "Dies kann zumeist behoben werden, indem dem Webserver Schreibzugriff auf das Wurzel-Verzeichnis eingeräumt wird. Siehe auch %s",
"Permissions can usually be fixed by giving the web server write access to the root directory. See %s." : "Berechtigungen können zumeist korrigiert werden, indem dem Webserver Schreibzugriff auf das Wurzel-Verzeichnis eingeräumt wird. Siehe auch %s. ",
"Your data directory is not writable." : "Dein Datenverzeichnis ist schreibgeschützt.",
"Setting locale to %s failed." : "Das Setzen der Spracheeinstellung auf %s ist fehlgeschlagen.",
"Please install one of these locales on your system and restart your web server." : "Bitte installiere eine dieser Sprachen auf deinem System und starte den Webserver neu.",
"PHP module %s not installed." : "PHP-Modul %s nicht installiert.",
"Please ask your server administrator to install the module." : "Bitte für die Installation des Moduls deinen Server-Administrator kontaktieren.",
"PHP setting \"%s\" is not set to \"%s\"." : "PHP-Einstellung „%s“ ist nicht auf „%s“ gesetzt.",
"Adjusting this setting in php.ini will make Nextcloud run again" : "Eine Änderung dieser Einstellung in der php.ini kann deine Nextcloud wieder lauffähig machen.",
"<code>mbstring.func_overload</code> is set to <code>%s</code> instead of the expected value <code>0</code>." : "<code>mbstring.func_overload</code> ist auf <code>%s</code> gesetzt und nicht auf den erwarteten Wert <code>0</code>.",
"To fix this issue set <code>mbstring.func_overload</code> to <code>0</code> in your php.ini." : "Bitte setze zum Beheben dieses Problems <code>mbstring.func_overload</code> in deiner php.ini auf <code>0</code>.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "PHP ist offenbar so konfiguriert, dass PHPDoc-Blöcke in der Anweisung entfernt werden. Dadurch sind mehrere Kern-Apps nicht erreichbar.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Dies wird wahrscheinlich durch Zwischenspeicher/Beschleuniger wie etwa Zend OPcache oder eAccelerator verursacht.",
"PHP modules have been installed, but they are still listed as missing?" : "PHP-Module wurden installiert, werden aber als noch fehlend gelistet?",
"Please ask your server administrator to restart the web server." : "Bitte kontaktiere deinen Server-Administrator und bitte um den Neustart des Webservers.",
"The required %s config variable is not configured in the config.php file." : "Die erforderliche %s Konfigurationsvariable ist in der config.php nicht konfiguriert.",
"Please ask your server administrator to check the Nextcloud configuration." : "Bitte deinen Server-Administrator, die Nextcloud-Konfiguration zu überprüfen.",
"Your data directory must be an absolute path." : "Dein Datenverzeichnis muss einen eindeutigen Pfad haben",
"Check the value of \"datadirectory\" in your configuration." : "Überprüfe bitte die Angabe unter „datadirectory“ in deiner Konfiguration",
"Your data directory is invalid." : "Dein Datenverzeichnis ist ungültig",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Stelle sicher, dass eine Datei \".ocdata\" im Wurzelverzeichnis des data-Verzeichnisses existiert.",
"Action \"%s\" not supported or implemented." : "Aktion \"%s\" wird nicht unterstützt oder ist nicht implementiert.",
"Authentication failed, wrong token or provider ID given" : "Authentifizierung ist fehlgeschlagen. Falsches Token oder falsche Provider-ID wurde übertragen.",
"Parameters missing in order to complete the request. Missing Parameters: \"%s\"" : "Es fehlen Parameter, um die Anfrage zu bearbeiten. Fehlende Parameter: \"%s\"",
"ID \"%1$s\" already used by cloud federation provider \"%2$s\"" : "ID \"%1$s\" wird bereits von Cloud-Federation-Provider \"%2$s\" verwendet",
"Cloud Federation Provider with ID: \"%s\" does not exist." : "Cloud-Federation-Provider mit ID: \"%s\" ist nicht vorhanden.",
"Could not obtain lock type %d on \"%s\"." : "Sperrtyp %d auf „%s“ konnte nicht ermittelt werden.",
"Storage unauthorized. %s" : "Speicher nicht autorisiert. %s",
"Storage incomplete configuration. %s" : "Speicher-Konfiguration unvollständig. %s",
"Storage connection error. %s" : "Verbindungsfehler zum Speicherplatz. %s",
"Storage is temporarily not available" : "Speicher ist vorübergehend nicht verfügbar",
"Storage connection timeout. %s" : "Zeitüberschreitung der Verbindung zum Speicherplatz. %s",
"Free prompt" : "Freie Eingabeaufforderung",
"Runs an arbitrary prompt through the language model." : "Führt eine beliebige Eingabeaufforderung über das Sprachmodell aus.",
"Generate headline" : "Überschrift erzeugen",
"Generates a possible headline for a text." : "Erzeugt eine mögliche Überschrift für einen Text.",
"Summarize" : "Zusammenfassen",
"Summarizes text by reducing its length without losing key information." : "Fasst Text zusammen, indem die Länge reduziert wird, ohne dass wichtige Informationen verloren gehen.",
"Extract topics" : "Themen extrahieren",
"Extracts topics from a text and outputs them separated by commas." : "Extrahiert Themen aus einem Text und gibt sie durch Kommas getrennt aus.",
"The files of the app %1$s were not replaced correctly. Make sure it is a version compatible with the server." : "Die Dateien der App %1$swurden nicht korrekt ersetzt. Stelle sicher, dass es sich um eine mit dem Server kompatible Version handelt.",
"404" : "404",
"Logged in user must be an admin, a sub admin or gotten special right to access this setting" : "Der angemeldete Benutzer muss ein Administrator, ein Teil-Administrator sein oder ein Sonderrecht haben, um auf diese Einstellung zuzugreifen. ",
"Logged in user must be an admin or sub admin" : "Der angemeldete Benutzer muss ein (Sub-)Administrator sein",
"Logged in user must be an admin" : "Der angemeldete Benutzer muss ein Administrator sein",
"Full name" : "Vollständiger Name",
"Unknown user" : "Unbekannter Benutzer",
"Enter the database username and name for %s" : "Den Datenbankbenutzernamen und den Namen eingeben für %s",
"Enter the database username for %s" : "Den Datenbankbenutzernamen eingeben für %s",
"MySQL username and/or password not valid" : "MySQL-Benutzername und/oder Passwort ungültig",
"Oracle username and/or password not valid" : "Oracle-Benutzername und/oder -Passwort ungültig",
"PostgreSQL username and/or password not valid" : "PostgreSQL-Benutzername und/oder -Passwort ungültig",
"Set an admin username." : "Einen Administrator-Benutzernamen setzen.",
"Sharing %s failed, because this item is already shared with user %s" : "Freigabe von %s fehlgeschlagen, da dieses Element schon mit dem Benutzer %s geteilt wird",
"The username is already being used" : "Dieser Benutzername existiert bereits",
"Could not create user" : "Benutzer konnte nicht erstellt werden",
"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", spaces and \"_.@-'\"" : "Folgende Zeichen sind im Benutzernamen erlaubt: „a-z“, „A-Z“, „0-9“, Leerzeichen und „_.@-'“",
"A valid username must be provided" : "Es muss ein gültiger Benutzername angegeben werden",
"Username contains whitespace at the beginning or at the end" : "Der Benutzername enthält Leerzeichen am Anfang oder am Ende",
"Username must not consist of dots only" : "Der Benutzername darf nicht nur aus Punkten bestehen",
"Username is invalid because files already exist for this user" : "Der Benutzer ist ungültig, da bereits Dateien von diesem Benutzer existieren",
"User disabled" : "Benutzer deaktiviert",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "libxml2 2.7.0 ist mindestestens erforderlich. Im Moment ist %s installiert.",
"To fix this issue update your libxml2 version and restart your web server." : "Um den Fehler zu beheben, musst du die libxml2 Version aktualisieren und den Webserver neustarten.",
"PostgreSQL >= 9 required." : "PostgreSQL >= 9 benötigt",
"Please upgrade your database version." : "Bitte aktualisiere deine Datenbankversion",
"Your data directory is readable by other users." : "Dein Datenverzeichnis kann von anderen Benutzern gelesen werden",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Bitte ändere die Berechtigungen auf 0770, sodass das Verzeichnis nicht von anderen Benutzern angezeigt werden kann."
},
"nplurals=2; plural=(n != 1);");
+278
View File
@@ -0,0 +1,278 @@
{ "translations": {
"Cannot write into \"config\" directory!" : "Das Schreiben in das „config“-Verzeichnis ist nicht möglich!",
"This can usually be fixed by giving the web server write access to the config directory." : "Dies kann normalerweise behoben werden, indem dem Webserver Schreibzugriff auf das config-Verzeichnis gegeben wird.",
"But, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it." : "Wenn du jedoch möchtest dass die Datei config.php schreibgeschützt bleiben soll, dann setze die Option \"config_is_read_only\" in der Datei auf true.",
"See %s" : "Siehe %s",
"Application %1$s is not present or has a non-compatible version with this server. Please check the apps directory." : "Die Anwendung %1$s ist nicht vorhanden oder hat eine mit diesem Server nicht kompatible Version. Bitte überprüfe das Apps-Verzeichnis.",
"Sample configuration detected" : "Beispielkonfiguration gefunden",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Es wurde festgestellt, dass die Beispielkonfiguration kopiert wurde. Dies kann deine Installation zerstören und wird nicht unterstützt. Bitte die Dokumentation lesen, bevor Änderungen an der config.php vorgenommen werden.",
"The page could not be found on the server." : "Die Seite konnte auf dem Server nicht gefunden werden.",
"%s email verification" : "%s E-Mail-Überprüfung",
"Email verification" : "E-Mail-Überprüfung",
"Click the following button to confirm your email." : "Klicke die folgende Schaltfläche, um deine E-Mail-Adresse zu bestätigen.",
"Click the following link to confirm your email." : "Klicke den nachfolgenden Link, um deine E-Mail-Adresse zu bestätigen",
"Confirm your email" : "Bestätige deine E-Mail-Adresse",
"Other activities" : "Andere Aktivitäten",
"%1$s and %2$s" : "%1$s und %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s und %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s und %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s und %5$s",
"Education Edition" : "Bildungsausgabe",
"Enterprise bundle" : "Firmen-Paket",
"Groupware bundle" : "Groupware-Paket",
"Hub bundle" : "Hub-Paket",
"Social sharing bundle" : "Paket für das Teilen in sozialen Medien",
"PHP %s or higher is required." : "PHP %s oder höher wird benötigt.",
"PHP with a version lower than %s is required." : "PHP wird in einer früheren Version als %s benötigt.",
"%sbit or higher PHP required." : "%sbit oder höheres PHP wird benötigt.",
"The following architectures are supported: %s" : "Die folgenden Architekturen werden unterstützt: %s",
"The following databases are supported: %s" : "Die folgenden Datenbanken werden unterstützt: %s",
"The command line tool %s could not be found" : "Das Kommandozeilenwerkzeug %s konnte nicht gefunden werden",
"The library %s is not available." : "Die Bibliothek %s ist nicht verfügbar.",
"Library %1$s with a version higher than %2$s is required - available version %3$s." : "Die Bibliothek %1$s wird in einer neueren Version als %2$s benötigt - verfügbare Version ist %3$s.",
"Library %1$s with a version lower than %2$s is required - available version %3$s." : "Die Bibliothek %1$s wird in einer früheren Version als %2$s benötigt - verfügbare Version ist %3$s.",
"The following platforms are supported: %s" : "Die folgenden Plattformen werden unterstützt: %s",
"Server version %s or higher is required." : "Server Version %s oder höher wird benötigt.",
"Server version %s or lower is required." : "Server Version %s oder niedriger wird benötigt.",
"Wiping of device %s has started" : "Löschen von Gerät %s wurde gestartet",
"Wiping of device »%s« has started" : "Löschen von Gerät »%s« wurde gestartet",
"»%s« started remote wipe" : "»%s« hat das Löschen aus der Ferne gestartet",
"Device or application »%s« has started the remote wipe process. You will receive another email once the process has finished" : "Gerät oder Anwendung »%s« hat den Vorgang des Löschens aus der Ferne gestartet. Du bekommst eine weitere E-Mail sobald der Vorgang beendet wurde",
"Wiping of device %s has finished" : "Löschen von Gerät %s wurde beendet",
"Wiping of device »%s« has finished" : "Löschen von Gerät »%s« wurde beendet",
"»%s« finished remote wipe" : "»%s« hat das Löschen aus der Ferne beendet",
"Device or application »%s« has finished the remote wipe process." : "Gerät oder Anwendung »%s« hat den Vorgang des Löschens aus der Ferne beendet.",
"Remote wipe started" : "Fernlöschung gestartet",
"A remote wipe was started on device %s" : "Eine Fernlöschung wurde am Gerät %s gestartet",
"Remote wipe finished" : "Fernlöschung fertig",
"The remote wipe on %s has finished" : "Die Fernlöschung auf %s ist fertig",
"Authentication" : "Authentifizierung",
"Unknown filetype" : "Unbekannter Dateityp",
"Invalid image" : "Ungültiges Bild",
"Avatar image is not square" : "Benutzerbild ist nicht quadratisch",
"Files" : "Dateien",
"View profile" : "Profil ansehen",
"Local time: %s" : "Ortszeit: %s",
"today" : "Heute",
"tomorrow" : "Morgen",
"yesterday" : "Gestern",
"_in %n day_::_in %n days_" : ["in %n Tag","in %n Tagen"],
"_%n day ago_::_%n days ago_" : ["Vor %n Tag","Vor %n Tagen"],
"next month" : "Nächsten Monat",
"last month" : "Letzten Monat",
"_in %n month_::_in %n months_" : ["in %n Monat","in %n Monaten"],
"_%n month ago_::_%n months ago_" : ["Vor %n Monat","Vor %n Monaten"],
"next year" : "nächstes Jahr",
"last year" : "Letztes Jahr",
"_in %n year_::_in %n years_" : ["in %n Jahr","in %n Jahren"],
"_%n year ago_::_%n years ago_" : ["Vor %n Jahr","Vor %n Jahren"],
"_in %n hour_::_in %n hours_" : ["in %n Stunde","in %n Stunden"],
"_%n hour ago_::_%n hours ago_" : ["Vor %n Stunde","Vor %n Stunden"],
"_in %n minute_::_in %n minutes_" : ["in %n Minute","in %n Minuten"],
"_%n minute ago_::_%n minutes ago_" : ["Vor %n Minute","Vor %n Minuten"],
"in a few seconds" : "in wenigen Sekunden",
"seconds ago" : "Gerade eben",
"Empty file" : "Leere Datei",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "Das Modul mit der ID: %s existiert nicht. Bitte die App in den App-Einstellungen aktivieren oder den Administrator kontaktieren.",
"File already exists" : "Datei bereits vorhanden",
"Invalid path" : "Ungültiger Pfad",
"Failed to create file from template" : "Fehler beim Erstellen der Datei aus Vorlage",
"Templates" : "Vorlagen",
"File name is a reserved word" : "Der Dateiname ist ein reserviertes Wort",
"File name contains at least one invalid character" : "Der Dateiname enthält mindestens ein ungültiges Zeichen",
"File name is too long" : "Dateiname ist zu lang",
"Dot files are not allowed" : "Dateinamen mit einem Punkt am Anfang sind nicht erlaubt",
"Empty filename is not allowed" : "Ein leerer Dateiname ist nicht erlaubt",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "Die Anwendung \"%s\" kann nicht installiert werden, weil die Anwendungsinfodatei nicht gelesen werden kann.",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "Die App \"%s\" kann nicht installiert werden, da sie mit dieser Serverversion nicht kompatibel ist.",
"__language_name__" : "Deutsch (Persönlich: Du)",
"This is an automatically sent email, please do not reply." : "Dies ist eine automatisch gesendete E-Mail. Bitte antworte nicht auf diese E-Mail.",
"Help" : "Hilfe",
"Appearance and accessibility" : "Erscheinungsbild und Barrierefreiheit",
"Apps" : "Apps",
"Personal settings" : "Persönliche Einstellungen",
"Administration settings" : "Verwaltungseinstellungen",
"Settings" : "Einstellungen",
"Log out" : "Abmelden",
"Users" : "Benutzer",
"Email" : "E-Mail",
"Mail %s" : "E-Mail %s",
"Fediverse" : "Fediverse",
"View %s on the fediverse" : "Zeige %s auf dem Fediverse",
"Phone" : "Telefon",
"Call %s" : "%s anrufen",
"Twitter" : "X",
"View %s on Twitter" : "%s auf X anzeigen",
"Website" : "Webseite",
"Visit %s" : "%s besuchen",
"Address" : "Adresse",
"Profile picture" : "Profilbild",
"About" : "Über",
"Display name" : "Anzeigename",
"Headline" : "Überschrift",
"Organisation" : "Organisation",
"Role" : "Funktion",
"Additional settings" : "Zusätzliche Einstellungen",
"Enter the database name for %s" : "Den Datenbanknamen eingeben für %s",
"You cannot use dots in the database name %s" : "Du kannst keine Punkte im Datenbanknamen %s verwenden.",
"You need to enter details of an existing account." : "Du musst Details von einem existierenden Benutzer einfügen.",
"Oracle connection could not be established" : "Es konnte keine Verbindung zur Oracle-Datenbank hergestellt werden",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "Mac OS X wird nicht unterstützt und %s wird auf dieser Plattform nicht richtig funktionieren. Die Benutzung erfolgt auf eigene Gefahr!",
"For the best results, please consider using a GNU/Linux server instead." : "Zur Gewährleistung eines optimalen Betriebs sollte stattdessen ein GNU/Linux-Server verwendet werden.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Es scheint, dass diese %s-Instanz unter einer 32-Bit-PHP-Umgebung läuft und open_basedir in der Datei php.ini konfiguriert worden ist. Von einem solchen Betrieb wird dringend abgeraten, weil es dabei zu Problemen mit Dateien kommt, deren Größe 4 GB übersteigt.",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Bitte entferne die open_basedir-Einstellung in deiner php.ini oder wechsele zu 64-Bit-PHP.",
"Set an admin password." : "Ein Administrator-Passwort setzen.",
"Cannot create or write into the data directory %s" : "Das Datenverzeichnis %s kann nicht erstellt oder es kann darin nicht geschrieben werden.",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Freigabe-Backend %s muss in der OCP\\Share_Backend - Schnittstelle implementiert werden",
"Sharing backend %s not found" : "Freigabe-Backend %s nicht gefunden",
"Sharing backend for %s not found" : "Freigabe-Backend für %s nicht gefunden",
"%1$s shared »%2$s« with you and wants to add:" : "%1$shat » %2$s«  mit dir geteilt und möchte folgendes hinzufügen:",
"%1$s shared »%2$s« with you and wants to add" : "%1$shat »%2$s« mit dir geteilt und möchte folgendes hinzufügen",
"»%s« added a note to a file shared with you" : "»%s« hat eine Bemerkung zu einer mit dir geteilten Datei hinzugefügt",
"Open »%s«" : "»%s« öffnen",
"%1$s via %2$s" : "%1$s über %2$s",
"You are not allowed to share %s" : "Du bist nicht berechtigt, %s zu teilen.",
"Cannot increase permissions of %s" : "Kann die Berechtigungen von %s nicht erhöhen",
"Files cannot be shared with delete permissions" : "Dateien mit Lösch-Berechtigungen können nicht geteilt werden",
"Files cannot be shared with create permissions" : "Dateien mit Erstell-Berechtigungen können nicht geteilt werden",
"Expiration date is in the past" : "Das Ablaufdatum liegt in der Vergangenheit.",
"_Cannot set expiration date more than %n day in the future_::_Cannot set expiration date more than %n days in the future_" : ["Das Ablaufdatum kann nicht mehr als %n Tag in der Zukunft liegen","Das Ablaufdatum kann nicht mehr als %n Tage in der Zukunft liegen"],
"Sharing is only allowed with group members" : "Teilen ist nur mit Gruppenmitgliedern erlaubt",
"%1$s shared »%2$s« with you" : "%1$s hat »%2$s« mit dir geteilt",
"%1$s shared »%2$s« with you." : "%1$s hat »%2$s« mit dir geteilt.",
"Click the button below to open it." : "Klicke zum Öffnen auf die untere Schaltfläche.",
"The requested share does not exist anymore" : "Die angeforderte Freigabe existiert nicht mehr",
"The requested share comes from a disabled user" : "Die angeforderte Freigabe stammt von einem deaktivierten Benutzer",
"The user was not created because the user limit has been reached. Check your notifications to learn more." : "Der Benutzer wurde nicht erstellt, da das Benutzerlimit erreicht wurde. Überprüfe deine Benachrichtigungen, um mehr zu erfahren.",
"Could not find category \"%s\"" : "Die Kategorie \"%s“ konnte nicht gefunden werden",
"Sunday" : "Sonntag",
"Monday" : "Montag",
"Tuesday" : "Dienstag",
"Wednesday" : "Mittwoch",
"Thursday" : "Donnerstag",
"Friday" : "Freitag",
"Saturday" : "Samstag",
"Sun." : "Son.",
"Mon." : "Mon.",
"Tue." : "Die.",
"Wed." : "Mit.",
"Thu." : "Don.",
"Fri." : "Fre.",
"Sat." : "Sam.",
"Su" : "So",
"Mo" : "Mo",
"Tu" : "Di",
"We" : "Mi",
"Th" : "Do",
"Fr" : "Fr",
"Sa" : "Sa",
"January" : "Januar",
"February" : "Februar",
"March" : "März",
"April" : "April",
"May" : "Mai",
"June" : "Juni",
"July" : "Juli",
"August" : "August",
"September" : "September",
"October" : "Oktober",
"November" : "November",
"December" : "Dezember",
"Jan." : "Jan.",
"Feb." : "Feb.",
"Mar." : "Mär.",
"Apr." : "Apr.",
"May." : "Mai",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Aug.",
"Sep." : "Sep.",
"Oct." : "Okt.",
"Nov." : "Nov.",
"Dec." : "Dez.",
"A valid password must be provided" : "Es muss ein gültiges Passwort eingegeben werden",
"Login canceled by app" : "Anmeldung durch die App abgebrochen",
"App \"%1$s\" cannot be installed because the following dependencies are not fulfilled: %2$s" : "Die App „%1$s“ kann nicht installiert werden, da die folgenden Abhängigkeiten nicht erfüllt sind: %2$s",
"a safe home for all your data" : "ein sicherer Ort für all deine Daten",
"File is currently busy, please try again later" : "Die Datei ist in Benutzung, bitte versuche es später noch einmal",
"Cannot download file" : "Datei kann nicht heruntergeladen werden.",
"Application is not enabled" : "Die Anwendung ist nicht aktiviert",
"Authentication error" : "Authentifizierungsfehler",
"Token expired. Please reload page." : "Token abgelaufen. Bitte lade die Seite neu.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "Keine Datenbanktreiber (SQLite, MySQL oder PostgreSQL) installiert.",
"Cannot write into \"config\" directory." : "Schreiben in das „config“-Verzeichnis ist nicht möglich.",
"This can usually be fixed by giving the web server write access to the config directory. See %s" : "Dies kann zumeist behoben werden, indem dem Webserver Schreibzugriff auf das Konfigurationsverzeichnis eingeräumt wird. Siehe auch %s",
"Or, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it. See %s" : "Oder wenn du lieber möchtest, dass die Datei config.php schreibgeschützt bleiben soll, dann setze die Option \"config_is_read_only\" in der Datei auf true. Siehe %s",
"Cannot write into \"apps\" directory." : "Schreiben in das „apps“-Verzeichnis ist nicht möglich.",
"This can usually be fixed by giving the web server write access to the apps directory or disabling the App Store in the config file." : "Dies kann normalerweise behoben werden, indem dem Webserver Schreibzugriff auf das App-Verzeichnis gegeben wird oder der App-Store in der Konfigurationsdatei deaktiviert wird.",
"Cannot create \"data\" directory." : "Kann das \"Daten\"-Verzeichnis nicht erstellen.",
"This can usually be fixed by giving the web server write access to the root directory. See %s" : "Dies kann zumeist behoben werden, indem dem Webserver Schreibzugriff auf das Wurzel-Verzeichnis eingeräumt wird. Siehe auch %s",
"Permissions can usually be fixed by giving the web server write access to the root directory. See %s." : "Berechtigungen können zumeist korrigiert werden, indem dem Webserver Schreibzugriff auf das Wurzel-Verzeichnis eingeräumt wird. Siehe auch %s. ",
"Your data directory is not writable." : "Dein Datenverzeichnis ist schreibgeschützt.",
"Setting locale to %s failed." : "Das Setzen der Spracheeinstellung auf %s ist fehlgeschlagen.",
"Please install one of these locales on your system and restart your web server." : "Bitte installiere eine dieser Sprachen auf deinem System und starte den Webserver neu.",
"PHP module %s not installed." : "PHP-Modul %s nicht installiert.",
"Please ask your server administrator to install the module." : "Bitte für die Installation des Moduls deinen Server-Administrator kontaktieren.",
"PHP setting \"%s\" is not set to \"%s\"." : "PHP-Einstellung „%s“ ist nicht auf „%s“ gesetzt.",
"Adjusting this setting in php.ini will make Nextcloud run again" : "Eine Änderung dieser Einstellung in der php.ini kann deine Nextcloud wieder lauffähig machen.",
"<code>mbstring.func_overload</code> is set to <code>%s</code> instead of the expected value <code>0</code>." : "<code>mbstring.func_overload</code> ist auf <code>%s</code> gesetzt und nicht auf den erwarteten Wert <code>0</code>.",
"To fix this issue set <code>mbstring.func_overload</code> to <code>0</code> in your php.ini." : "Bitte setze zum Beheben dieses Problems <code>mbstring.func_overload</code> in deiner php.ini auf <code>0</code>.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "PHP ist offenbar so konfiguriert, dass PHPDoc-Blöcke in der Anweisung entfernt werden. Dadurch sind mehrere Kern-Apps nicht erreichbar.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Dies wird wahrscheinlich durch Zwischenspeicher/Beschleuniger wie etwa Zend OPcache oder eAccelerator verursacht.",
"PHP modules have been installed, but they are still listed as missing?" : "PHP-Module wurden installiert, werden aber als noch fehlend gelistet?",
"Please ask your server administrator to restart the web server." : "Bitte kontaktiere deinen Server-Administrator und bitte um den Neustart des Webservers.",
"The required %s config variable is not configured in the config.php file." : "Die erforderliche %s Konfigurationsvariable ist in der config.php nicht konfiguriert.",
"Please ask your server administrator to check the Nextcloud configuration." : "Bitte deinen Server-Administrator, die Nextcloud-Konfiguration zu überprüfen.",
"Your data directory must be an absolute path." : "Dein Datenverzeichnis muss einen eindeutigen Pfad haben",
"Check the value of \"datadirectory\" in your configuration." : "Überprüfe bitte die Angabe unter „datadirectory“ in deiner Konfiguration",
"Your data directory is invalid." : "Dein Datenverzeichnis ist ungültig",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Stelle sicher, dass eine Datei \".ocdata\" im Wurzelverzeichnis des data-Verzeichnisses existiert.",
"Action \"%s\" not supported or implemented." : "Aktion \"%s\" wird nicht unterstützt oder ist nicht implementiert.",
"Authentication failed, wrong token or provider ID given" : "Authentifizierung ist fehlgeschlagen. Falsches Token oder falsche Provider-ID wurde übertragen.",
"Parameters missing in order to complete the request. Missing Parameters: \"%s\"" : "Es fehlen Parameter, um die Anfrage zu bearbeiten. Fehlende Parameter: \"%s\"",
"ID \"%1$s\" already used by cloud federation provider \"%2$s\"" : "ID \"%1$s\" wird bereits von Cloud-Federation-Provider \"%2$s\" verwendet",
"Cloud Federation Provider with ID: \"%s\" does not exist." : "Cloud-Federation-Provider mit ID: \"%s\" ist nicht vorhanden.",
"Could not obtain lock type %d on \"%s\"." : "Sperrtyp %d auf „%s“ konnte nicht ermittelt werden.",
"Storage unauthorized. %s" : "Speicher nicht autorisiert. %s",
"Storage incomplete configuration. %s" : "Speicher-Konfiguration unvollständig. %s",
"Storage connection error. %s" : "Verbindungsfehler zum Speicherplatz. %s",
"Storage is temporarily not available" : "Speicher ist vorübergehend nicht verfügbar",
"Storage connection timeout. %s" : "Zeitüberschreitung der Verbindung zum Speicherplatz. %s",
"Free prompt" : "Freie Eingabeaufforderung",
"Runs an arbitrary prompt through the language model." : "Führt eine beliebige Eingabeaufforderung über das Sprachmodell aus.",
"Generate headline" : "Überschrift erzeugen",
"Generates a possible headline for a text." : "Erzeugt eine mögliche Überschrift für einen Text.",
"Summarize" : "Zusammenfassen",
"Summarizes text by reducing its length without losing key information." : "Fasst Text zusammen, indem die Länge reduziert wird, ohne dass wichtige Informationen verloren gehen.",
"Extract topics" : "Themen extrahieren",
"Extracts topics from a text and outputs them separated by commas." : "Extrahiert Themen aus einem Text und gibt sie durch Kommas getrennt aus.",
"The files of the app %1$s were not replaced correctly. Make sure it is a version compatible with the server." : "Die Dateien der App %1$swurden nicht korrekt ersetzt. Stelle sicher, dass es sich um eine mit dem Server kompatible Version handelt.",
"404" : "404",
"Logged in user must be an admin, a sub admin or gotten special right to access this setting" : "Der angemeldete Benutzer muss ein Administrator, ein Teil-Administrator sein oder ein Sonderrecht haben, um auf diese Einstellung zuzugreifen. ",
"Logged in user must be an admin or sub admin" : "Der angemeldete Benutzer muss ein (Sub-)Administrator sein",
"Logged in user must be an admin" : "Der angemeldete Benutzer muss ein Administrator sein",
"Full name" : "Vollständiger Name",
"Unknown user" : "Unbekannter Benutzer",
"Enter the database username and name for %s" : "Den Datenbankbenutzernamen und den Namen eingeben für %s",
"Enter the database username for %s" : "Den Datenbankbenutzernamen eingeben für %s",
"MySQL username and/or password not valid" : "MySQL-Benutzername und/oder Passwort ungültig",
"Oracle username and/or password not valid" : "Oracle-Benutzername und/oder -Passwort ungültig",
"PostgreSQL username and/or password not valid" : "PostgreSQL-Benutzername und/oder -Passwort ungültig",
"Set an admin username." : "Einen Administrator-Benutzernamen setzen.",
"Sharing %s failed, because this item is already shared with user %s" : "Freigabe von %s fehlgeschlagen, da dieses Element schon mit dem Benutzer %s geteilt wird",
"The username is already being used" : "Dieser Benutzername existiert bereits",
"Could not create user" : "Benutzer konnte nicht erstellt werden",
"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", spaces and \"_.@-'\"" : "Folgende Zeichen sind im Benutzernamen erlaubt: „a-z“, „A-Z“, „0-9“, Leerzeichen und „_.@-'“",
"A valid username must be provided" : "Es muss ein gültiger Benutzername angegeben werden",
"Username contains whitespace at the beginning or at the end" : "Der Benutzername enthält Leerzeichen am Anfang oder am Ende",
"Username must not consist of dots only" : "Der Benutzername darf nicht nur aus Punkten bestehen",
"Username is invalid because files already exist for this user" : "Der Benutzer ist ungültig, da bereits Dateien von diesem Benutzer existieren",
"User disabled" : "Benutzer deaktiviert",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "libxml2 2.7.0 ist mindestestens erforderlich. Im Moment ist %s installiert.",
"To fix this issue update your libxml2 version and restart your web server." : "Um den Fehler zu beheben, musst du die libxml2 Version aktualisieren und den Webserver neustarten.",
"PostgreSQL >= 9 required." : "PostgreSQL >= 9 benötigt",
"Please upgrade your database version." : "Bitte aktualisiere deine Datenbankversion",
"Your data directory is readable by other users." : "Dein Datenverzeichnis kann von anderen Benutzern gelesen werden",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Bitte ändere die Berechtigungen auf 0770, sodass das Verzeichnis nicht von anderen Benutzern angezeigt werden kann."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}
+301
View File
@@ -0,0 +1,301 @@
OC.L10N.register(
"lib",
{
"Cannot write into \"config\" directory!" : "Das Schreiben in das „config“-Verzeichnis ist nicht möglich!",
"This can usually be fixed by giving the web server write access to the config directory." : "Dies kann normalerweise behoben werden, indem dem Webserver Schreibzugriff auf das config-Verzeichnis gegeben wird.",
"But, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it." : "Wenn Sie jedoch möchten, dass die Datei config.php schreibgeschützt bleiben soll, dann setzen Sie die Option \"config_is_read_only\" in der Datei auf true.",
"See %s" : "Siehe %s",
"Application %1$s is not present or has a non-compatible version with this server. Please check the apps directory." : "Die Anwendung %1$s ist nicht vorhanden oder hat eine mit diesem Server nicht kompatible Version. Bitte überprüfen Sie das Apps-Verzeichnis.",
"Sample configuration detected" : "Beispielkonfiguration gefunden",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Es wurde festgestellt, dass die Beispielkonfiguration kopiert wurde. Dies kann Ihre Installation zerstören und wird nicht unterstützt. Bitte die Dokumentation lesen, bevor Änderungen an der config.php vorgenommen werden.",
"The page could not be found on the server." : "Die Seite konnte auf dem Server nicht gefunden werden.",
"%s email verification" : "%s E-Mail-Überprüfung",
"Email verification" : "E-Mail-Überprüfung",
"Click the following button to confirm your email." : "Klicken Sie auf die folgende Schaltfläche, um Ihre E-Mail zu bestätigen.",
"Click the following link to confirm your email." : "Auf den nachfolgenden Link klicken um Ihre E-Mail-Adresse zu bestätigen",
"Confirm your email" : "Ihre E-Mail-Adresse bestätigen",
"Other activities" : "Andere Aktivitäten",
"%1$s and %2$s" : "%1$s und %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s und %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s und %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s und %5$s",
"Education Edition" : "Bildungsausgabe",
"Enterprise bundle" : "Firmen-Paket",
"Groupware bundle" : "Groupware-Paket",
"Hub bundle" : "Hub-Paket",
"Social sharing bundle" : "Paket für das Teilen in sozialen Medien",
"PHP %s or higher is required." : "PHP %s oder höher wird benötigt.",
"PHP with a version lower than %s is required." : "PHP wird in einer früheren Version als %s benötigt.",
"%sbit or higher PHP required." : "%sbit oder höheres PHP wird benötigt.",
"The following architectures are supported: %s" : "Folgende Architekturen werden unterstützt: %s",
"The following databases are supported: %s" : "Folgende Datenbanken werden unterstützt: %s",
"The command line tool %s could not be found" : "Das Kommandozeilenwerkzeug %s konnte nicht gefunden werden",
"The library %s is not available." : "Die Bibliothek %s ist nicht verfügbar.",
"Library %1$s with a version higher than %2$s is required - available version %3$s." : "Die Bibliothek %1$s wird in einer neueren Version als %2$s benötigt - verfügbare Version ist %3$s.",
"Library %1$s with a version lower than %2$s is required - available version %3$s." : "Die Bibliothek %1$s wird in einer früheren Version als %2$s benötigt - verfügbare Version ist %3$s.",
"The following platforms are supported: %s" : "Folgende Plattformen werden unterstützt: %s",
"Server version %s or higher is required." : "Server Version %s oder höher wird benötigt.",
"Server version %s or lower is required." : "Server Version %s oder niedriger wird benötigt.",
"Logged in account must be an admin, a sub admin or gotten special right to access this setting" : "Das angemeldete Konto muss ein Administrator, ein Teil-Administrator sein oder ein Sonderrecht haben, um auf diese Einstellung zuzugreifen",
"Logged in account must be an admin or sub admin" : "Das angemeldete Konto muss ein (Sub-)Administrator sein",
"Logged in account must be an admin" : "Das angemeldete Konto muss ein Administrator sein",
"Wiping of device %s has started" : "Löschen von Gerät %s wurde gestartet",
"Wiping of device »%s« has started" : "Löschen von Gerät »%s« wurde gestartet",
"»%s« started remote wipe" : "»%s« hat das Löschen aus der Ferne gestartet",
"Device or application »%s« has started the remote wipe process. You will receive another email once the process has finished" : "Gerät oder Anwendung »%s« hat den Vorgang des Löschens aus der Ferne gestartet. Sie bekommen eine weitere E-Mail sobald der Vorgang beendet wurde",
"Wiping of device %s has finished" : "Löschen von Gerät %s wurde beendet",
"Wiping of device »%s« has finished" : "Löschen von Gerät »%s« wurde beendet",
"»%s« finished remote wipe" : "»%s« hat das Löschen aus der Ferne beendet",
"Device or application »%s« has finished the remote wipe process." : "Gerät oder Anwendung »%s« hat den Vorgang des Löschens aus der Ferne beendet.",
"Remote wipe started" : "Fernlöschung gestartet",
"A remote wipe was started on device %s" : "Eine Fernlöschung wurde am Gerät %s gestartet",
"Remote wipe finished" : "Fernlöschung fertig",
"The remote wipe on %s has finished" : "Die Fernlöschung auf %s ist fertig",
"Authentication" : "Authentifizierung",
"Unknown filetype" : "Unbekannter Dateityp",
"Invalid image" : "Ungültiges Bild",
"Avatar image is not square" : "Avatar-Bild ist nicht quadratisch",
"Files" : "Dateien",
"View profile" : "Profil ansehen",
"Local time: %s" : "Ortszeit: %s",
"today" : "Heute",
"tomorrow" : "Morgen",
"yesterday" : "Gestern",
"_in %n day_::_in %n days_" : ["In %n Tag","In %n Tagen"],
"_%n day ago_::_%n days ago_" : ["Vor %n Tag","Vor %n Tagen"],
"next month" : "Nächsten Monat",
"last month" : "Letzten Monat",
"_in %n month_::_in %n months_" : ["In %n Monat","In %n Monaten"],
"_%n month ago_::_%n months ago_" : ["Vor %n Monat","Vor %n Monaten"],
"next year" : "Nächstes Jahr",
"last year" : "Letztes Jahr",
"_in %n year_::_in %n years_" : ["In %n Jahr","In %n Jahren"],
"_%n year ago_::_%n years ago_" : ["Vor %n Jahr","Vor %n Jahren"],
"_in %n hour_::_in %n hours_" : ["In %n Stunde","In %n Stunden"],
"_%n hour ago_::_%n hours ago_" : ["Vor %n Stunde","Vor %n Stunden"],
"_in %n minute_::_in %n minutes_" : ["In %n Minute","In %n Minuten"],
"_%n minute ago_::_%n minutes ago_" : ["Vor %n Minute","Vor %n Minuten"],
"in a few seconds" : "In wenigen Sekunden",
"seconds ago" : "Gerade eben",
"Empty file" : "Leere Datei",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "Das Modul mit der ID: %s existiert nicht. Bitte aktivieren Sie es in Ihren Einstellungen oder kontaktieren Sie Ihren Administrator.",
"File already exists" : "Datei bereits vorhanden",
"Invalid path" : "Ungültiger Pfad",
"Failed to create file from template" : "Fehler beim Erstellen der Datei aus Vorlage",
"Templates" : "Vorlagen",
"File name is a reserved word" : "Der Dateiname ist ein reserviertes Wort",
"File name contains at least one invalid character" : "Der Dateiname enthält mindestens ein ungültiges Zeichen",
"File name is too long" : "Dateiname ist zu lang",
"Dot files are not allowed" : "Dateinamen mit einem Punkt am Anfang sind nicht erlaubt",
"Empty filename is not allowed" : "Ein leerer Dateiname ist nicht erlaubt",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "Die Anwendung \"%s\" kann nicht installiert werden, weil die Anwendungsinfodatei nicht gelesen werden kann.",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "Die App \"%s\" kann nicht installiert werden, da sie mit dieser Serverversion nicht kompatibel ist.",
"__language_name__" : "Deutsch (Förmlich: Sie)",
"This is an automatically sent email, please do not reply." : "Dies ist eine automatisch versandte E-Mail, bitte nicht antworten.",
"Help" : "Hilfe",
"Appearance and accessibility" : "Aussehen und Barrierefreiheit",
"Apps" : "Apps",
"Personal settings" : "Persönliche Einstellungen",
"Administration settings" : "Administrationseinstellungen",
"Settings" : "Einstellungen",
"Log out" : "Abmelden",
"Users" : "Benutzer",
"Email" : "E-Mail",
"Mail %s" : "E-Mail %s",
"Fediverse" : "Fediverse",
"View %s on the fediverse" : "Zeige %s auf dem Fediverse",
"Phone" : "Telefon",
"Call %s" : "%s anrufen",
"Twitter" : "Twitter",
"View %s on Twitter" : "%s auf Twitter anzeigen",
"Website" : "Webseite",
"Visit %s" : "%s besuchen",
"Address" : "Adresse",
"Profile picture" : "Profilbild",
"About" : "Über",
"Display name" : "Anzeigename",
"Headline" : "Überschrift",
"Organisation" : "Organisation",
"Role" : "Funktion",
"Unknown account" : "Unbekanntes Konto",
"Additional settings" : "Zusätzliche Einstellungen",
"Enter the database Login and name for %s" : "Den Datenbankanmeldenamen und den Namen für %s eingeben",
"Enter the database Login for %s" : "Anmeldenamen für die Datenbank für %s eingeben",
"Enter the database name for %s" : "Den Datenbanknamen eingeben für %s",
"You cannot use dots in the database name %s" : "Sie dürfen keine Punkte im Datenbanknamen %s verwenden",
"MySQL Login and/or password not valid" : "MySQL Anmeldename und/oder Passwort ungültig",
"You need to enter details of an existing account." : "Sie müssen Details von einem existierenden Benutzer einfügen.",
"Oracle connection could not be established" : "Es konnte keine Verbindung zur Oracle-Datenbank hergestellt werden",
"Oracle Login and/or password not valid" : "Oracle-Anmeldename und/oder -Passwort ungültig",
"PostgreSQL Login and/or password not valid" : "PostgreSQL-Anmeldename und/oder Passwort ungültig",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "Mac OS X wird nicht unterstützt und %s wird auf dieser Plattform nicht richtig funktionieren. Die Benutzung erfolgt auf eigene Gefahr!",
"For the best results, please consider using a GNU/Linux server instead." : "Zur Gewährleistung eines optimalen Betriebs sollte stattdessen ein GNU/Linux-Server verwendet werden.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Es scheint, dass diese %s-Instanz unter einer 32-Bit-PHP-Umgebung läuft und open_basedir in der Datei php.ini konfiguriert worden ist. Von einem solchen Betrieb wird dringend abgeraten, weil es dabei zu Problemen mit Dateien kommt, deren Größe 4 GB übersteigt.",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Bitte entfernen Sie die open_basedir-Einstellung in Ihrer php.ini oder wechseln Sie zu 64-Bit-PHP.",
"Set an admin Login." : "Anmeldename für Andministration setzen.",
"Set an admin password." : "Ein Administrationspasswort setzen.",
"Cannot create or write into the data directory %s" : "Das Datenverzeichnis %s kann nicht erstellt oder es kann darin nicht geschrieben werden.",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Freigabe-Backend %s muss in der OCP\\Share_Backend - Schnittstelle implementiert werden",
"Sharing backend %s not found" : "Freigabe-Backend %s nicht gefunden",
"Sharing backend for %s not found" : "Freigabe-Backend für %s nicht gefunden",
"%1$s shared »%2$s« with you and wants to add:" : "%1$s hat » %2$s« mit Ihnen geteilt und möchte folgendes hinzufügen:",
"%1$s shared »%2$s« with you and wants to add" : "%1$s hat »%2$s« mit Ihnen geteilt und möchte folgendes hinzufügen",
"»%s« added a note to a file shared with you" : "»%s« hat eine Bemerkung zu einer mit Ihnen geteilten Datei hinzugefügt",
"Open »%s«" : "»%s« öffnen",
"%1$s via %2$s" : "%1$s über %2$s",
"You are not allowed to share %s" : "Die Freigabe von %s ist Ihnen nicht erlaubt",
"Cannot increase permissions of %s" : "Kann die Berechtigungen von %s nicht erhöhen",
"Files cannot be shared with delete permissions" : "Dateien mit Lösch-Berechtigungen können nicht geteilt werden",
"Files cannot be shared with create permissions" : "Dateien mit Erstell-Berechtigungen können nicht geteilt werden",
"Expiration date is in the past" : "Das Ablaufdatum liegt in der Vergangenheit.",
"_Cannot set expiration date more than %n day in the future_::_Cannot set expiration date more than %n days in the future_" : ["Das Ablaufdatum kann nicht mehr als %n Tag in der Zukunft liegen","Das Ablaufdatum kann nicht mehr als %n Tage in der Zukunft liegen"],
"Sharing is only allowed with group members" : "Teilen ist nur mit Gruppenmitgliedern erlaubt",
"Sharing %s failed, because this item is already shared with the account %s" : "Freigeben von %s ist fehlgeschlagen, da dieses Element schon mit dem Konto %s geteilt wurde",
"%1$s shared »%2$s« with you" : "%1$s hat »%2$s« mit Ihnen geteilt",
"%1$s shared »%2$s« with you." : "%1$s hat »%2$s« mit Ihnen geteilt.",
"Click the button below to open it." : "Klicken Sie zum Öffnen auf die untere Schaltfläche.",
"The requested share does not exist anymore" : "Die angeforderte Freigabe existiert nicht mehr",
"The requested share comes from a disabled user" : "Die angeforderte Freigabe stammt von einem deaktivierten Benutzer",
"The user was not created because the user limit has been reached. Check your notifications to learn more." : "Der Benutzer wurde nicht erstellt, da das Benutzerlimit erreicht wurde. Überprüfen Sie Ihre Benachrichtigungen, um mehr zu erfahren.",
"Could not find category \"%s\"" : "Die Kategorie \"%s“ konnte nicht gefunden werden",
"Sunday" : "Sonntag",
"Monday" : "Montag",
"Tuesday" : "Dienstag",
"Wednesday" : "Mittwoch",
"Thursday" : "Donnerstag",
"Friday" : "Freitag",
"Saturday" : "Samstag",
"Sun." : "Son.",
"Mon." : "Mon.",
"Tue." : "Die.",
"Wed." : "Mit.",
"Thu." : "Don.",
"Fri." : "Fre.",
"Sat." : "Sam.",
"Su" : "So",
"Mo" : "Mo",
"Tu" : "Di",
"We" : "Mi",
"Th" : "Do",
"Fr" : "Fr",
"Sa" : "Sa",
"January" : "Januar",
"February" : "Februar",
"March" : "März",
"April" : "April",
"May" : "Mai",
"June" : "Juni",
"July" : "Juli",
"August" : "August",
"September" : "September",
"October" : "Oktober",
"November" : "November",
"December" : "Dezember",
"Jan." : "Jan.",
"Feb." : "Feb.",
"Mar." : "Mär.",
"Apr." : "Apr.",
"May." : "Mai",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Aug.",
"Sep." : "Sep.",
"Oct." : "Okt.",
"Nov." : "Nov.",
"Dec." : "Dez.",
"A valid password must be provided" : "Es muss ein gültiges Passwort eingegeben werden",
"The Login is already being used" : "Dieser Anmeldename wird bereits verwendet",
"Could not create account" : "Konto konnte nicht erstellt werden",
"Only the following characters are allowed in an Login: \"a-z\", \"A-Z\", \"0-9\", spaces and \"_.@-'\"" : "Nur die folgenden Zeichen sind in einem Anmeldenamen erlaubt: \"a-z\", \"A-Z\", \"0-9\", Leerzeichen und \"_.@-'\"",
"A valid Login must be provided" : "Ein gültiger Anmeldename muss angegeben werden.",
"Login contains whitespace at the beginning or at the end" : "Anmeldename enthält Leerzeichen am Anfang oder am Ende",
"Login must not consist of dots only" : "Der Anmeldename darf nicht nur aus Punkten bestehen",
"Login is invalid because files already exist for this user" : "Der Anmeldename ist ungültig, da bereits Dateien von diesem Benutzer existieren",
"Account disabled" : "Konto deaktiviert",
"Login canceled by app" : "Anmeldung durch die App abgebrochen",
"App \"%1$s\" cannot be installed because the following dependencies are not fulfilled: %2$s" : "Die App „%1$s“ kann nicht installiert werden, da die folgenden Abhängigkeiten nicht erfüllt sind: %2$s",
"a safe home for all your data" : "ein sicherer Ort für all Ihre Daten",
"File is currently busy, please try again later" : "Die Datei ist in Benutzung, bitte später erneut versuchen.",
"Cannot download file" : "Datei kann nicht heruntergeladen werden",
"Application is not enabled" : "Die Anwendung ist nicht aktiviert",
"Authentication error" : "Authentifizierungsfehler",
"Token expired. Please reload page." : "Token abgelaufen. Bitte laden Sie die Seite neu.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "Keine Datenbanktreiber (SQLite, MySQL oder PostgreSQL) installiert.",
"Cannot write into \"config\" directory." : "Es kann nicht in das Verzeichnis \"config\" geschrieben werden.",
"This can usually be fixed by giving the web server write access to the config directory. See %s" : "Dies kann zumeist behoben werden, indem dem Webserver Schreibzugriff auf das Konfigurationsverzeichnis eingeräumt wird. Siehe auch %s",
"Or, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it. See %s" : "Oder wenn Sie möchten, dass die Datei config.php schreibgeschützt bleiben soll, dann setzen Sie die Option \"config_is_read_only\" in der Datei auf True. Siehe %s",
"Cannot write into \"apps\" directory." : "Es kann nicht in das Verzeichnis \"apps\" geschrieben werden.",
"This can usually be fixed by giving the web server write access to the apps directory or disabling the App Store in the config file." : "Dies kann normalerweise behoben werden, indem dem Webserver Schreibzugriff auf das App-Verzeichnis gegeben wird oder der App-Store in der Konfigurationsdatei deaktiviert wird.",
"Cannot create \"data\" directory." : "Kann das \"Daten\"-Verzeichnis nicht erstellen.",
"This can usually be fixed by giving the web server write access to the root directory. See %s" : "Dies kann normalerweise behoben werden, indem dem Webserver Schreibzugriff auf das Wurzel-Verzeichnis eingeräumt wird. Siehe auch %s",
"Permissions can usually be fixed by giving the web server write access to the root directory. See %s." : "Berechtigungen können normalerweise korrigiert werden, indem dem Webserver Schreibzugriff auf das Wurzel-Verzeichnis eingeräumt wird. Siehe auch %s. ",
"Your data directory is not writable." : "Ihr Datenverzeichnis ist schreibgeschützt.",
"Setting locale to %s failed." : "Das Setzen der Sprache (locale) auf %s ist fehlgeschlagen.",
"Please install one of these locales on your system and restart your web server." : "Bitte installieren Sie eine dieser Sprachen (locales) auf Ihrem System und starten Sie den Webserver neu.",
"PHP module %s not installed." : "PHP-Modul %s nicht installiert.",
"Please ask your server administrator to install the module." : "Bitte kontaktieren Sie Ihre Server-Administration und bitten Sie um die Installation des Moduls.",
"PHP setting \"%s\" is not set to \"%s\"." : "PHP-Einstellung „%s“ ist nicht auf „%s“ gesetzt.",
"Adjusting this setting in php.ini will make Nextcloud run again" : "Eine Änderung dieser Einstellung in der php.ini kann Ihre Nextcloud wieder lauffähig machen.",
"<code>mbstring.func_overload</code> is set to <code>%s</code> instead of the expected value <code>0</code>." : "<code>mbstring.func_overload</code> ist auf <code>%s</code> gesetzt und nicht auf den erwarteten Wert <code>0</code>.",
"To fix this issue set <code>mbstring.func_overload</code> to <code>0</code> in your php.ini." : "Bitte setzen Sie zum Beheben dieses Problems <code>mbstring.func_overload</code> in Ihrer php.ini auf <code>0</code>.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "PHP ist offenbar so konfiguriert, dass PHPDoc-Blöcke in der Anweisung entfernt werden. Dadurch sind mehrere Kern-Apps nicht erreichbar.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Dies wird wahrscheinlich durch Zwischenspeicher/Beschleuniger wie etwa Zend OPcache oder eAccelerator verursacht.",
"PHP modules have been installed, but they are still listed as missing?" : "PHP-Module wurden installiert, werden aber als noch fehlend gelistet?",
"Please ask your server administrator to restart the web server." : "Bitte kontaktieren Sie Ihre Server-Administration und bitten Sie um den Neustart des Webservers.",
"The required %s config variable is not configured in the config.php file." : "Die erforderliche %s Konfigurationsvariable ist in der config.php nicht konfiguriert.",
"Please ask your server administrator to check the Nextcloud configuration." : "Bitten Sie Ihre Server-Administration, die Nextcloud-Konfiguration zu überprüfen.",
"Your data directory is readable by other people." : "Ihr Datenverzeichnis kann von Anderen gelesen werden.",
"Please change the permissions to 0770 so that the directory cannot be listed by other people." : "Bitte ändern Sie die Berechtigungen auf 0770, so dass das Verzeichnis nicht von Anderen angezeigt werden kann.",
"Your data directory must be an absolute path." : "Ihr Datenverzeichnis muss einen absoluten Pfad haben.",
"Check the value of \"datadirectory\" in your configuration." : "Überprüfen Sie den Wert von „datadirectory“ in Ihrer Konfiguration.",
"Your data directory is invalid." : "Ihr Datenverzeichnis ist ungültig.",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Stellen Sie sicher, dass eine Datei \".ocdata\" im Wurzelverzeichnis des Datenverzeichnisses existiert.",
"Action \"%s\" not supported or implemented." : "Aktion \"%s\" wird nicht unterstützt oder ist nicht implementiert.",
"Authentication failed, wrong token or provider ID given" : "Authentifizierung ist fehlgeschlagen. Falsches Token oder Provider-ID wurde übertragen.",
"Parameters missing in order to complete the request. Missing Parameters: \"%s\"" : "Es fehlen Parameter um die Anfrage zu bearbeiten. Fehlende Parameter: \"%s\"",
"ID \"%1$s\" already used by cloud federation provider \"%2$s\"" : "ID \"%1$s\" wird bereits von Cloud-Federation-Provider \"%2$s\" verwendet.",
"Cloud Federation Provider with ID: \"%s\" does not exist." : "Cloud-Federation-Provider mit ID: \"%s\" ist nicht vorhanden.",
"Could not obtain lock type %d on \"%s\"." : "Sperrtyp %d auf „%s“ konnte nicht ermittelt werden.",
"Storage unauthorized. %s" : "Speicher nicht autorisiert. %s",
"Storage incomplete configuration. %s" : "Speicher-Konfiguration unvollständig. %s",
"Storage connection error. %s" : "Verbindungsfehler zum Speicherplatz. %s",
"Storage is temporarily not available" : "Speicher ist vorübergehend nicht verfügbar",
"Storage connection timeout. %s" : "Zeitüberschreitung der Verbindung zum Speicherplatz. %s",
"Free prompt" : "Freie Eingabeaufforderung",
"Runs an arbitrary prompt through the language model." : "Führt eine beliebige Eingabeaufforderung über das Sprachmodell aus.",
"Generate headline" : "Kopfzeile erzeugen",
"Generates a possible headline for a text." : "Erzeugt eine mögliche Überschrift für einen Text.",
"Summarize" : "Zusammenfassen",
"Summarizes text by reducing its length without losing key information." : "Fasst Text zusammen, indem die Länge reduziert wird, ohne dass wichtige Informationen verloren gehen.",
"Extract topics" : "Themen extrahieren",
"Extracts topics from a text and outputs them separated by commas." : "Extrahiert Themen aus einem Text und gibt sie durch Kommas getrennt aus.",
"The files of the app %1$s were not replaced correctly. Make sure it is a version compatible with the server." : "Die Dateien der App %1$s wurden nicht korrekt ersetzt. Stellen Sie sicher, dass es sich um eine mit dem Server kompatible Version handelt.",
"404" : "404",
"Logged in user must be an admin, a sub admin or gotten special right to access this setting" : "Der angemeldete Benutzer muss ein Administrator, ein Teil-Administrator sein oder ein Sonderrecht haben, um auf diese Einstellung zuzugreifen. ",
"Logged in user must be an admin or sub admin" : "Der angemeldete Benutzer muss ein (Sub-)Administrator sein",
"Logged in user must be an admin" : "Der angemeldete Benutzer muss ein Administrator sein",
"Full name" : "Vollständiger Name",
"Unknown user" : "Unbekannter Benutzer",
"Enter the database username and name for %s" : "Den Datenbankbenutzernamen und den Namen eingeben für %s",
"Enter the database username for %s" : "Den Datenbankbenutzernamen eingeben für %s",
"MySQL username and/or password not valid" : "MySQL-Benutzername und/oder Passwort ungültig",
"Oracle username and/or password not valid" : "Oracle-Benutzername und/oder -Passwort ungültig",
"PostgreSQL username and/or password not valid" : "PostgreSQL-Benutzername und/oder -Passwort ungültig",
"Set an admin username." : "Einen Administrations-Benutzernamen setzen.",
"Sharing %s failed, because this item is already shared with user %s" : "Freigabe von %s fehlgeschlagen, da dieses Element schon mit dem Benutzer %s geteilt wird",
"The username is already being used" : "Dieser Benutzername existiert bereits",
"Could not create user" : "Benutzer konnte nicht erstellt werden",
"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", spaces and \"_.@-'\"" : "Folgende Zeichen sind im Benutzernamen erlaubt: „a-z“, „A-Z“, „0-9“, Leerzeichen und „_.@-'“",
"A valid username must be provided" : "Es muss ein gültiger Benutzername angegeben werden",
"Username contains whitespace at the beginning or at the end" : "Der Benutzername enthält Leerzeichen am Anfang oder am Ende",
"Username must not consist of dots only" : "Der Benutzername darf nicht nur aus Punkten bestehen",
"Username is invalid because files already exist for this user" : "Der Benutzer ist ungültig, da bereits Dateien von diesem Benutzer existieren",
"User disabled" : "Benutzer deaktiviert",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "libxml2 2.7.0 ist mindestestens erforderlich. Im Moment ist %s installiert.",
"To fix this issue update your libxml2 version and restart your web server." : "Um den Fehler zu beheben, müssen Sie die libxml2 Version aktualisieren und den Webserver neustarten.",
"PostgreSQL >= 9 required." : "PostgreSQL >= 9 benötigt.",
"Please upgrade your database version." : "Bitte aktualisieren Sie Ihre Datenbankversion.",
"Your data directory is readable by other users." : "Ihr Datenverzeichnis kann von anderen Benutzern gelesen werden.",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Bitte ändern Sie die Berechtigungen auf 0770, so dass das Verzeichnis nicht von anderen Benutzern angezeigt werden kann."
},
"nplurals=2; plural=(n != 1);");
+299
View File
@@ -0,0 +1,299 @@
{ "translations": {
"Cannot write into \"config\" directory!" : "Das Schreiben in das „config“-Verzeichnis ist nicht möglich!",
"This can usually be fixed by giving the web server write access to the config directory." : "Dies kann normalerweise behoben werden, indem dem Webserver Schreibzugriff auf das config-Verzeichnis gegeben wird.",
"But, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it." : "Wenn Sie jedoch möchten, dass die Datei config.php schreibgeschützt bleiben soll, dann setzen Sie die Option \"config_is_read_only\" in der Datei auf true.",
"See %s" : "Siehe %s",
"Application %1$s is not present or has a non-compatible version with this server. Please check the apps directory." : "Die Anwendung %1$s ist nicht vorhanden oder hat eine mit diesem Server nicht kompatible Version. Bitte überprüfen Sie das Apps-Verzeichnis.",
"Sample configuration detected" : "Beispielkonfiguration gefunden",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Es wurde festgestellt, dass die Beispielkonfiguration kopiert wurde. Dies kann Ihre Installation zerstören und wird nicht unterstützt. Bitte die Dokumentation lesen, bevor Änderungen an der config.php vorgenommen werden.",
"The page could not be found on the server." : "Die Seite konnte auf dem Server nicht gefunden werden.",
"%s email verification" : "%s E-Mail-Überprüfung",
"Email verification" : "E-Mail-Überprüfung",
"Click the following button to confirm your email." : "Klicken Sie auf die folgende Schaltfläche, um Ihre E-Mail zu bestätigen.",
"Click the following link to confirm your email." : "Auf den nachfolgenden Link klicken um Ihre E-Mail-Adresse zu bestätigen",
"Confirm your email" : "Ihre E-Mail-Adresse bestätigen",
"Other activities" : "Andere Aktivitäten",
"%1$s and %2$s" : "%1$s und %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s und %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s und %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s und %5$s",
"Education Edition" : "Bildungsausgabe",
"Enterprise bundle" : "Firmen-Paket",
"Groupware bundle" : "Groupware-Paket",
"Hub bundle" : "Hub-Paket",
"Social sharing bundle" : "Paket für das Teilen in sozialen Medien",
"PHP %s or higher is required." : "PHP %s oder höher wird benötigt.",
"PHP with a version lower than %s is required." : "PHP wird in einer früheren Version als %s benötigt.",
"%sbit or higher PHP required." : "%sbit oder höheres PHP wird benötigt.",
"The following architectures are supported: %s" : "Folgende Architekturen werden unterstützt: %s",
"The following databases are supported: %s" : "Folgende Datenbanken werden unterstützt: %s",
"The command line tool %s could not be found" : "Das Kommandozeilenwerkzeug %s konnte nicht gefunden werden",
"The library %s is not available." : "Die Bibliothek %s ist nicht verfügbar.",
"Library %1$s with a version higher than %2$s is required - available version %3$s." : "Die Bibliothek %1$s wird in einer neueren Version als %2$s benötigt - verfügbare Version ist %3$s.",
"Library %1$s with a version lower than %2$s is required - available version %3$s." : "Die Bibliothek %1$s wird in einer früheren Version als %2$s benötigt - verfügbare Version ist %3$s.",
"The following platforms are supported: %s" : "Folgende Plattformen werden unterstützt: %s",
"Server version %s or higher is required." : "Server Version %s oder höher wird benötigt.",
"Server version %s or lower is required." : "Server Version %s oder niedriger wird benötigt.",
"Logged in account must be an admin, a sub admin or gotten special right to access this setting" : "Das angemeldete Konto muss ein Administrator, ein Teil-Administrator sein oder ein Sonderrecht haben, um auf diese Einstellung zuzugreifen",
"Logged in account must be an admin or sub admin" : "Das angemeldete Konto muss ein (Sub-)Administrator sein",
"Logged in account must be an admin" : "Das angemeldete Konto muss ein Administrator sein",
"Wiping of device %s has started" : "Löschen von Gerät %s wurde gestartet",
"Wiping of device »%s« has started" : "Löschen von Gerät »%s« wurde gestartet",
"»%s« started remote wipe" : "»%s« hat das Löschen aus der Ferne gestartet",
"Device or application »%s« has started the remote wipe process. You will receive another email once the process has finished" : "Gerät oder Anwendung »%s« hat den Vorgang des Löschens aus der Ferne gestartet. Sie bekommen eine weitere E-Mail sobald der Vorgang beendet wurde",
"Wiping of device %s has finished" : "Löschen von Gerät %s wurde beendet",
"Wiping of device »%s« has finished" : "Löschen von Gerät »%s« wurde beendet",
"»%s« finished remote wipe" : "»%s« hat das Löschen aus der Ferne beendet",
"Device or application »%s« has finished the remote wipe process." : "Gerät oder Anwendung »%s« hat den Vorgang des Löschens aus der Ferne beendet.",
"Remote wipe started" : "Fernlöschung gestartet",
"A remote wipe was started on device %s" : "Eine Fernlöschung wurde am Gerät %s gestartet",
"Remote wipe finished" : "Fernlöschung fertig",
"The remote wipe on %s has finished" : "Die Fernlöschung auf %s ist fertig",
"Authentication" : "Authentifizierung",
"Unknown filetype" : "Unbekannter Dateityp",
"Invalid image" : "Ungültiges Bild",
"Avatar image is not square" : "Avatar-Bild ist nicht quadratisch",
"Files" : "Dateien",
"View profile" : "Profil ansehen",
"Local time: %s" : "Ortszeit: %s",
"today" : "Heute",
"tomorrow" : "Morgen",
"yesterday" : "Gestern",
"_in %n day_::_in %n days_" : ["In %n Tag","In %n Tagen"],
"_%n day ago_::_%n days ago_" : ["Vor %n Tag","Vor %n Tagen"],
"next month" : "Nächsten Monat",
"last month" : "Letzten Monat",
"_in %n month_::_in %n months_" : ["In %n Monat","In %n Monaten"],
"_%n month ago_::_%n months ago_" : ["Vor %n Monat","Vor %n Monaten"],
"next year" : "Nächstes Jahr",
"last year" : "Letztes Jahr",
"_in %n year_::_in %n years_" : ["In %n Jahr","In %n Jahren"],
"_%n year ago_::_%n years ago_" : ["Vor %n Jahr","Vor %n Jahren"],
"_in %n hour_::_in %n hours_" : ["In %n Stunde","In %n Stunden"],
"_%n hour ago_::_%n hours ago_" : ["Vor %n Stunde","Vor %n Stunden"],
"_in %n minute_::_in %n minutes_" : ["In %n Minute","In %n Minuten"],
"_%n minute ago_::_%n minutes ago_" : ["Vor %n Minute","Vor %n Minuten"],
"in a few seconds" : "In wenigen Sekunden",
"seconds ago" : "Gerade eben",
"Empty file" : "Leere Datei",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "Das Modul mit der ID: %s existiert nicht. Bitte aktivieren Sie es in Ihren Einstellungen oder kontaktieren Sie Ihren Administrator.",
"File already exists" : "Datei bereits vorhanden",
"Invalid path" : "Ungültiger Pfad",
"Failed to create file from template" : "Fehler beim Erstellen der Datei aus Vorlage",
"Templates" : "Vorlagen",
"File name is a reserved word" : "Der Dateiname ist ein reserviertes Wort",
"File name contains at least one invalid character" : "Der Dateiname enthält mindestens ein ungültiges Zeichen",
"File name is too long" : "Dateiname ist zu lang",
"Dot files are not allowed" : "Dateinamen mit einem Punkt am Anfang sind nicht erlaubt",
"Empty filename is not allowed" : "Ein leerer Dateiname ist nicht erlaubt",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "Die Anwendung \"%s\" kann nicht installiert werden, weil die Anwendungsinfodatei nicht gelesen werden kann.",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "Die App \"%s\" kann nicht installiert werden, da sie mit dieser Serverversion nicht kompatibel ist.",
"__language_name__" : "Deutsch (Förmlich: Sie)",
"This is an automatically sent email, please do not reply." : "Dies ist eine automatisch versandte E-Mail, bitte nicht antworten.",
"Help" : "Hilfe",
"Appearance and accessibility" : "Aussehen und Barrierefreiheit",
"Apps" : "Apps",
"Personal settings" : "Persönliche Einstellungen",
"Administration settings" : "Administrationseinstellungen",
"Settings" : "Einstellungen",
"Log out" : "Abmelden",
"Users" : "Benutzer",
"Email" : "E-Mail",
"Mail %s" : "E-Mail %s",
"Fediverse" : "Fediverse",
"View %s on the fediverse" : "Zeige %s auf dem Fediverse",
"Phone" : "Telefon",
"Call %s" : "%s anrufen",
"Twitter" : "Twitter",
"View %s on Twitter" : "%s auf Twitter anzeigen",
"Website" : "Webseite",
"Visit %s" : "%s besuchen",
"Address" : "Adresse",
"Profile picture" : "Profilbild",
"About" : "Über",
"Display name" : "Anzeigename",
"Headline" : "Überschrift",
"Organisation" : "Organisation",
"Role" : "Funktion",
"Unknown account" : "Unbekanntes Konto",
"Additional settings" : "Zusätzliche Einstellungen",
"Enter the database Login and name for %s" : "Den Datenbankanmeldenamen und den Namen für %s eingeben",
"Enter the database Login for %s" : "Anmeldenamen für die Datenbank für %s eingeben",
"Enter the database name for %s" : "Den Datenbanknamen eingeben für %s",
"You cannot use dots in the database name %s" : "Sie dürfen keine Punkte im Datenbanknamen %s verwenden",
"MySQL Login and/or password not valid" : "MySQL Anmeldename und/oder Passwort ungültig",
"You need to enter details of an existing account." : "Sie müssen Details von einem existierenden Benutzer einfügen.",
"Oracle connection could not be established" : "Es konnte keine Verbindung zur Oracle-Datenbank hergestellt werden",
"Oracle Login and/or password not valid" : "Oracle-Anmeldename und/oder -Passwort ungültig",
"PostgreSQL Login and/or password not valid" : "PostgreSQL-Anmeldename und/oder Passwort ungültig",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "Mac OS X wird nicht unterstützt und %s wird auf dieser Plattform nicht richtig funktionieren. Die Benutzung erfolgt auf eigene Gefahr!",
"For the best results, please consider using a GNU/Linux server instead." : "Zur Gewährleistung eines optimalen Betriebs sollte stattdessen ein GNU/Linux-Server verwendet werden.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Es scheint, dass diese %s-Instanz unter einer 32-Bit-PHP-Umgebung läuft und open_basedir in der Datei php.ini konfiguriert worden ist. Von einem solchen Betrieb wird dringend abgeraten, weil es dabei zu Problemen mit Dateien kommt, deren Größe 4 GB übersteigt.",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Bitte entfernen Sie die open_basedir-Einstellung in Ihrer php.ini oder wechseln Sie zu 64-Bit-PHP.",
"Set an admin Login." : "Anmeldename für Andministration setzen.",
"Set an admin password." : "Ein Administrationspasswort setzen.",
"Cannot create or write into the data directory %s" : "Das Datenverzeichnis %s kann nicht erstellt oder es kann darin nicht geschrieben werden.",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Freigabe-Backend %s muss in der OCP\\Share_Backend - Schnittstelle implementiert werden",
"Sharing backend %s not found" : "Freigabe-Backend %s nicht gefunden",
"Sharing backend for %s not found" : "Freigabe-Backend für %s nicht gefunden",
"%1$s shared »%2$s« with you and wants to add:" : "%1$s hat » %2$s« mit Ihnen geteilt und möchte folgendes hinzufügen:",
"%1$s shared »%2$s« with you and wants to add" : "%1$s hat »%2$s« mit Ihnen geteilt und möchte folgendes hinzufügen",
"»%s« added a note to a file shared with you" : "»%s« hat eine Bemerkung zu einer mit Ihnen geteilten Datei hinzugefügt",
"Open »%s«" : "»%s« öffnen",
"%1$s via %2$s" : "%1$s über %2$s",
"You are not allowed to share %s" : "Die Freigabe von %s ist Ihnen nicht erlaubt",
"Cannot increase permissions of %s" : "Kann die Berechtigungen von %s nicht erhöhen",
"Files cannot be shared with delete permissions" : "Dateien mit Lösch-Berechtigungen können nicht geteilt werden",
"Files cannot be shared with create permissions" : "Dateien mit Erstell-Berechtigungen können nicht geteilt werden",
"Expiration date is in the past" : "Das Ablaufdatum liegt in der Vergangenheit.",
"_Cannot set expiration date more than %n day in the future_::_Cannot set expiration date more than %n days in the future_" : ["Das Ablaufdatum kann nicht mehr als %n Tag in der Zukunft liegen","Das Ablaufdatum kann nicht mehr als %n Tage in der Zukunft liegen"],
"Sharing is only allowed with group members" : "Teilen ist nur mit Gruppenmitgliedern erlaubt",
"Sharing %s failed, because this item is already shared with the account %s" : "Freigeben von %s ist fehlgeschlagen, da dieses Element schon mit dem Konto %s geteilt wurde",
"%1$s shared »%2$s« with you" : "%1$s hat »%2$s« mit Ihnen geteilt",
"%1$s shared »%2$s« with you." : "%1$s hat »%2$s« mit Ihnen geteilt.",
"Click the button below to open it." : "Klicken Sie zum Öffnen auf die untere Schaltfläche.",
"The requested share does not exist anymore" : "Die angeforderte Freigabe existiert nicht mehr",
"The requested share comes from a disabled user" : "Die angeforderte Freigabe stammt von einem deaktivierten Benutzer",
"The user was not created because the user limit has been reached. Check your notifications to learn more." : "Der Benutzer wurde nicht erstellt, da das Benutzerlimit erreicht wurde. Überprüfen Sie Ihre Benachrichtigungen, um mehr zu erfahren.",
"Could not find category \"%s\"" : "Die Kategorie \"%s“ konnte nicht gefunden werden",
"Sunday" : "Sonntag",
"Monday" : "Montag",
"Tuesday" : "Dienstag",
"Wednesday" : "Mittwoch",
"Thursday" : "Donnerstag",
"Friday" : "Freitag",
"Saturday" : "Samstag",
"Sun." : "Son.",
"Mon." : "Mon.",
"Tue." : "Die.",
"Wed." : "Mit.",
"Thu." : "Don.",
"Fri." : "Fre.",
"Sat." : "Sam.",
"Su" : "So",
"Mo" : "Mo",
"Tu" : "Di",
"We" : "Mi",
"Th" : "Do",
"Fr" : "Fr",
"Sa" : "Sa",
"January" : "Januar",
"February" : "Februar",
"March" : "März",
"April" : "April",
"May" : "Mai",
"June" : "Juni",
"July" : "Juli",
"August" : "August",
"September" : "September",
"October" : "Oktober",
"November" : "November",
"December" : "Dezember",
"Jan." : "Jan.",
"Feb." : "Feb.",
"Mar." : "Mär.",
"Apr." : "Apr.",
"May." : "Mai",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Aug.",
"Sep." : "Sep.",
"Oct." : "Okt.",
"Nov." : "Nov.",
"Dec." : "Dez.",
"A valid password must be provided" : "Es muss ein gültiges Passwort eingegeben werden",
"The Login is already being used" : "Dieser Anmeldename wird bereits verwendet",
"Could not create account" : "Konto konnte nicht erstellt werden",
"Only the following characters are allowed in an Login: \"a-z\", \"A-Z\", \"0-9\", spaces and \"_.@-'\"" : "Nur die folgenden Zeichen sind in einem Anmeldenamen erlaubt: \"a-z\", \"A-Z\", \"0-9\", Leerzeichen und \"_.@-'\"",
"A valid Login must be provided" : "Ein gültiger Anmeldename muss angegeben werden.",
"Login contains whitespace at the beginning or at the end" : "Anmeldename enthält Leerzeichen am Anfang oder am Ende",
"Login must not consist of dots only" : "Der Anmeldename darf nicht nur aus Punkten bestehen",
"Login is invalid because files already exist for this user" : "Der Anmeldename ist ungültig, da bereits Dateien von diesem Benutzer existieren",
"Account disabled" : "Konto deaktiviert",
"Login canceled by app" : "Anmeldung durch die App abgebrochen",
"App \"%1$s\" cannot be installed because the following dependencies are not fulfilled: %2$s" : "Die App „%1$s“ kann nicht installiert werden, da die folgenden Abhängigkeiten nicht erfüllt sind: %2$s",
"a safe home for all your data" : "ein sicherer Ort für all Ihre Daten",
"File is currently busy, please try again later" : "Die Datei ist in Benutzung, bitte später erneut versuchen.",
"Cannot download file" : "Datei kann nicht heruntergeladen werden",
"Application is not enabled" : "Die Anwendung ist nicht aktiviert",
"Authentication error" : "Authentifizierungsfehler",
"Token expired. Please reload page." : "Token abgelaufen. Bitte laden Sie die Seite neu.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "Keine Datenbanktreiber (SQLite, MySQL oder PostgreSQL) installiert.",
"Cannot write into \"config\" directory." : "Es kann nicht in das Verzeichnis \"config\" geschrieben werden.",
"This can usually be fixed by giving the web server write access to the config directory. See %s" : "Dies kann zumeist behoben werden, indem dem Webserver Schreibzugriff auf das Konfigurationsverzeichnis eingeräumt wird. Siehe auch %s",
"Or, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it. See %s" : "Oder wenn Sie möchten, dass die Datei config.php schreibgeschützt bleiben soll, dann setzen Sie die Option \"config_is_read_only\" in der Datei auf True. Siehe %s",
"Cannot write into \"apps\" directory." : "Es kann nicht in das Verzeichnis \"apps\" geschrieben werden.",
"This can usually be fixed by giving the web server write access to the apps directory or disabling the App Store in the config file." : "Dies kann normalerweise behoben werden, indem dem Webserver Schreibzugriff auf das App-Verzeichnis gegeben wird oder der App-Store in der Konfigurationsdatei deaktiviert wird.",
"Cannot create \"data\" directory." : "Kann das \"Daten\"-Verzeichnis nicht erstellen.",
"This can usually be fixed by giving the web server write access to the root directory. See %s" : "Dies kann normalerweise behoben werden, indem dem Webserver Schreibzugriff auf das Wurzel-Verzeichnis eingeräumt wird. Siehe auch %s",
"Permissions can usually be fixed by giving the web server write access to the root directory. See %s." : "Berechtigungen können normalerweise korrigiert werden, indem dem Webserver Schreibzugriff auf das Wurzel-Verzeichnis eingeräumt wird. Siehe auch %s. ",
"Your data directory is not writable." : "Ihr Datenverzeichnis ist schreibgeschützt.",
"Setting locale to %s failed." : "Das Setzen der Sprache (locale) auf %s ist fehlgeschlagen.",
"Please install one of these locales on your system and restart your web server." : "Bitte installieren Sie eine dieser Sprachen (locales) auf Ihrem System und starten Sie den Webserver neu.",
"PHP module %s not installed." : "PHP-Modul %s nicht installiert.",
"Please ask your server administrator to install the module." : "Bitte kontaktieren Sie Ihre Server-Administration und bitten Sie um die Installation des Moduls.",
"PHP setting \"%s\" is not set to \"%s\"." : "PHP-Einstellung „%s“ ist nicht auf „%s“ gesetzt.",
"Adjusting this setting in php.ini will make Nextcloud run again" : "Eine Änderung dieser Einstellung in der php.ini kann Ihre Nextcloud wieder lauffähig machen.",
"<code>mbstring.func_overload</code> is set to <code>%s</code> instead of the expected value <code>0</code>." : "<code>mbstring.func_overload</code> ist auf <code>%s</code> gesetzt und nicht auf den erwarteten Wert <code>0</code>.",
"To fix this issue set <code>mbstring.func_overload</code> to <code>0</code> in your php.ini." : "Bitte setzen Sie zum Beheben dieses Problems <code>mbstring.func_overload</code> in Ihrer php.ini auf <code>0</code>.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "PHP ist offenbar so konfiguriert, dass PHPDoc-Blöcke in der Anweisung entfernt werden. Dadurch sind mehrere Kern-Apps nicht erreichbar.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Dies wird wahrscheinlich durch Zwischenspeicher/Beschleuniger wie etwa Zend OPcache oder eAccelerator verursacht.",
"PHP modules have been installed, but they are still listed as missing?" : "PHP-Module wurden installiert, werden aber als noch fehlend gelistet?",
"Please ask your server administrator to restart the web server." : "Bitte kontaktieren Sie Ihre Server-Administration und bitten Sie um den Neustart des Webservers.",
"The required %s config variable is not configured in the config.php file." : "Die erforderliche %s Konfigurationsvariable ist in der config.php nicht konfiguriert.",
"Please ask your server administrator to check the Nextcloud configuration." : "Bitten Sie Ihre Server-Administration, die Nextcloud-Konfiguration zu überprüfen.",
"Your data directory is readable by other people." : "Ihr Datenverzeichnis kann von Anderen gelesen werden.",
"Please change the permissions to 0770 so that the directory cannot be listed by other people." : "Bitte ändern Sie die Berechtigungen auf 0770, so dass das Verzeichnis nicht von Anderen angezeigt werden kann.",
"Your data directory must be an absolute path." : "Ihr Datenverzeichnis muss einen absoluten Pfad haben.",
"Check the value of \"datadirectory\" in your configuration." : "Überprüfen Sie den Wert von „datadirectory“ in Ihrer Konfiguration.",
"Your data directory is invalid." : "Ihr Datenverzeichnis ist ungültig.",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Stellen Sie sicher, dass eine Datei \".ocdata\" im Wurzelverzeichnis des Datenverzeichnisses existiert.",
"Action \"%s\" not supported or implemented." : "Aktion \"%s\" wird nicht unterstützt oder ist nicht implementiert.",
"Authentication failed, wrong token or provider ID given" : "Authentifizierung ist fehlgeschlagen. Falsches Token oder Provider-ID wurde übertragen.",
"Parameters missing in order to complete the request. Missing Parameters: \"%s\"" : "Es fehlen Parameter um die Anfrage zu bearbeiten. Fehlende Parameter: \"%s\"",
"ID \"%1$s\" already used by cloud federation provider \"%2$s\"" : "ID \"%1$s\" wird bereits von Cloud-Federation-Provider \"%2$s\" verwendet.",
"Cloud Federation Provider with ID: \"%s\" does not exist." : "Cloud-Federation-Provider mit ID: \"%s\" ist nicht vorhanden.",
"Could not obtain lock type %d on \"%s\"." : "Sperrtyp %d auf „%s“ konnte nicht ermittelt werden.",
"Storage unauthorized. %s" : "Speicher nicht autorisiert. %s",
"Storage incomplete configuration. %s" : "Speicher-Konfiguration unvollständig. %s",
"Storage connection error. %s" : "Verbindungsfehler zum Speicherplatz. %s",
"Storage is temporarily not available" : "Speicher ist vorübergehend nicht verfügbar",
"Storage connection timeout. %s" : "Zeitüberschreitung der Verbindung zum Speicherplatz. %s",
"Free prompt" : "Freie Eingabeaufforderung",
"Runs an arbitrary prompt through the language model." : "Führt eine beliebige Eingabeaufforderung über das Sprachmodell aus.",
"Generate headline" : "Kopfzeile erzeugen",
"Generates a possible headline for a text." : "Erzeugt eine mögliche Überschrift für einen Text.",
"Summarize" : "Zusammenfassen",
"Summarizes text by reducing its length without losing key information." : "Fasst Text zusammen, indem die Länge reduziert wird, ohne dass wichtige Informationen verloren gehen.",
"Extract topics" : "Themen extrahieren",
"Extracts topics from a text and outputs them separated by commas." : "Extrahiert Themen aus einem Text und gibt sie durch Kommas getrennt aus.",
"The files of the app %1$s were not replaced correctly. Make sure it is a version compatible with the server." : "Die Dateien der App %1$s wurden nicht korrekt ersetzt. Stellen Sie sicher, dass es sich um eine mit dem Server kompatible Version handelt.",
"404" : "404",
"Logged in user must be an admin, a sub admin or gotten special right to access this setting" : "Der angemeldete Benutzer muss ein Administrator, ein Teil-Administrator sein oder ein Sonderrecht haben, um auf diese Einstellung zuzugreifen. ",
"Logged in user must be an admin or sub admin" : "Der angemeldete Benutzer muss ein (Sub-)Administrator sein",
"Logged in user must be an admin" : "Der angemeldete Benutzer muss ein Administrator sein",
"Full name" : "Vollständiger Name",
"Unknown user" : "Unbekannter Benutzer",
"Enter the database username and name for %s" : "Den Datenbankbenutzernamen und den Namen eingeben für %s",
"Enter the database username for %s" : "Den Datenbankbenutzernamen eingeben für %s",
"MySQL username and/or password not valid" : "MySQL-Benutzername und/oder Passwort ungültig",
"Oracle username and/or password not valid" : "Oracle-Benutzername und/oder -Passwort ungültig",
"PostgreSQL username and/or password not valid" : "PostgreSQL-Benutzername und/oder -Passwort ungültig",
"Set an admin username." : "Einen Administrations-Benutzernamen setzen.",
"Sharing %s failed, because this item is already shared with user %s" : "Freigabe von %s fehlgeschlagen, da dieses Element schon mit dem Benutzer %s geteilt wird",
"The username is already being used" : "Dieser Benutzername existiert bereits",
"Could not create user" : "Benutzer konnte nicht erstellt werden",
"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", spaces and \"_.@-'\"" : "Folgende Zeichen sind im Benutzernamen erlaubt: „a-z“, „A-Z“, „0-9“, Leerzeichen und „_.@-'“",
"A valid username must be provided" : "Es muss ein gültiger Benutzername angegeben werden",
"Username contains whitespace at the beginning or at the end" : "Der Benutzername enthält Leerzeichen am Anfang oder am Ende",
"Username must not consist of dots only" : "Der Benutzername darf nicht nur aus Punkten bestehen",
"Username is invalid because files already exist for this user" : "Der Benutzer ist ungültig, da bereits Dateien von diesem Benutzer existieren",
"User disabled" : "Benutzer deaktiviert",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "libxml2 2.7.0 ist mindestestens erforderlich. Im Moment ist %s installiert.",
"To fix this issue update your libxml2 version and restart your web server." : "Um den Fehler zu beheben, müssen Sie die libxml2 Version aktualisieren und den Webserver neustarten.",
"PostgreSQL >= 9 required." : "PostgreSQL >= 9 benötigt.",
"Please upgrade your database version." : "Bitte aktualisieren Sie Ihre Datenbankversion.",
"Your data directory is readable by other users." : "Ihr Datenverzeichnis kann von anderen Benutzern gelesen werden.",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Bitte ändern Sie die Berechtigungen auf 0770, so dass das Verzeichnis nicht von anderen Benutzern angezeigt werden kann."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}
+259
View File
@@ -0,0 +1,259 @@
OC.L10N.register(
"lib",
{
"Cannot write into \"config\" directory!" : "Αδυναμία εγγραφής στον κατάλογο \"config\"!",
"This can usually be fixed by giving the web server write access to the config directory." : "Αυτό μπορεί συνήθως να διορθωθεί παρέχοντας δικαιώματα εγγραφής για το φάκελο config στον διακομιστή ιστού.",
"But, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it." : "Ή εάν επιθυμείτε να διατηρήσετε το config.php σε κατάσταση ανάγνωσης μόνο, ορίστε την επιλογή \"config_is_read_only\" σε true.",
"See %s" : "Δείτε %s",
"Sample configuration detected" : "Ανιχνεύθηκε παράδειγμα εγκατάστασης",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Έχει ανιχνευθεί ότι το δείγμα εγκατάστασης έχει αντιγραφεί. Αυτό μπορεί να σπάσει την εγκατάστασή σας και δεν υποστηρίζεται. Παρακαλούμε διαβάστε την τεκμηρίωση πριν εκτελέσετε αλλαγές στο config.php",
"The page could not be found on the server." : "Αυτή η σελίδα δε βρέθηκε στον διακομιστή.",
"%s email verification" : "%s επαλήθευση email",
"Email verification" : "Επαλήθευση email",
"Click the following button to confirm your email." : "Κάντε κλικ στο παρακάτω κουμπί για να επιβεβαιώσετε το email σας.",
"Click the following link to confirm your email." : "Κάντε κλικ στον παρακάτω σύνδεσμο για να επιβεβαιώσετε το email σας.",
"Confirm your email" : "Επιβεβαιώστε το email σας",
"Other activities" : "Άλλες δραστηριότητες",
"%1$s and %2$s" : "%1$s και %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s και %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s και %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s και %5$s",
"Education Edition" : "Εκπαιδευτική Έκδοση",
"Enterprise bundle" : "Πακέτο επιχειρήσεων",
"Groupware bundle" : "Πακέτο Groupware",
"Hub bundle" : "Hub bundle",
"Social sharing bundle" : "Πακέτο κοινωνικού διαμοιρασμού",
"PHP %s or higher is required." : "PHP %s ή νεώτερη απαιτείται.",
"PHP with a version lower than %s is required." : "Απαιτείται PHP παλαιότερη από την έκδοση %s.",
"%sbit or higher PHP required." : "%sbit απαιτείται νεώτερη έκδοση PHP.",
"The following architectures are supported: %s" : "Υποστηρίζονται οι ακόλουθες αρχιτεκτονικές: %s",
"The following databases are supported: %s" : " Υποστηρίζονται οι ακόλουθες βάσεις δεδομένων: %s",
"The command line tool %s could not be found" : "Το εργαλείο γραμμής εντολών %s δεν μπορεί να βρεθεί",
"The library %s is not available." : "Το %s της βιβλιοθήκης δεν είναι διαθέσιμο.",
"Library %1$s with a version higher than %2$s is required - available version %3$s." : "Απαιτείται βιβλιοθήκη %1$s νεότερη από την έκδοση %2$s - διαθέσιμη έκδοση %3$s.",
"Library %1$s with a version lower than %2$s is required - available version %3$s." : "Απαιτείται βιβλιοθήκη %1$s παλαιότερη από την έκδοση %2$s - διαθέσιμη έκδοση %3$s.",
"The following platforms are supported: %s" : "Υποστηρίζονται οι ακόλουθες πλατφόρμες: %s",
"Server version %s or higher is required." : "Απαιτείται έκδοση διακομιστή %s ή νεότερη.",
"Server version %s or lower is required." : "Απαιτείται έκδοση διακομιστή %s ή παλαιότερη.",
"Wiping of device %s has started" : "Η εκκαθάριση συσκευής %s ξεκίνησε",
"Wiping of device »%s« has started" : "Η εκκαθάριση συσκευής »%s« ξεκίνησε",
"»%s« started remote wipe" : "»%s« ξεκίνησε η απομακρυσμένη εκκαθάριση",
"Device or application »%s« has started the remote wipe process. You will receive another email once the process has finished" : "Η συσκευή ή εφαρμογή »%s« ξεκίνησε απομακρυσμένη εκκαθάριση. Θα λάβετε ένα ηλ.μήνυμα μόλις ολοκληρωθεί",
"Wiping of device %s has finished" : "Η εκκαθάριση συσκευής %s ολοκληρώθηκε",
"Wiping of device »%s« has finished" : "Η εκκαθάριση συσκευής »%s« ολοκληρώθηκε",
"»%s« finished remote wipe" : "»%s« ολοκληρώθηκε η απομακρυσμένη εκκαθάριση",
"Device or application »%s« has finished the remote wipe process." : "Η συσκευή ή εφαρμογή »%s« ολοκλήρωσε την απομακρυσμένη εκκαθάριση.",
"Remote wipe started" : "Η απομακρυσμένη εκκαθάριση ξεκίνησε",
"A remote wipe was started on device %s" : "Η απομακρυσμένη εκκαθάριση ξεκίνησε στην συσκευή %s",
"Remote wipe finished" : "Η απομακρυσμένη εκκαθάριση ολοκληρώθηκε",
"The remote wipe on %s has finished" : "Η απομακρυσμένη εκκαθάριση στο %s ολοκληρώθηκε",
"Authentication" : "Πιστοποίηση",
"Unknown filetype" : "Άγνωστος τύπος αρχείου",
"Invalid image" : "Μη έγκυρη εικόνα",
"Avatar image is not square" : "Η εικόνα του άβαταρ δεν είναι τετράγωνη",
"Files" : "Αρχεία",
"View profile" : "Προβολή προφίλ",
"Local time: %s" : "Τοπική ώρα: %s",
"today" : "σήμερα",
"tomorrow" : "αύριο",
"yesterday" : "χθες",
"_in %n day_::_in %n days_" : ["σε %n ημέρα","σε %n ημέρες"],
"_%n day ago_::_%n days ago_" : ["%n ημέρα πριν","%n ημέρες πριν"],
"next month" : "επόμενος μήνας",
"last month" : "τελευταίο μήνα",
"_in %n month_::_in %n months_" : ["σε %n μήνα","σε %n μήνες"],
"_%n month ago_::_%n months ago_" : ["πριν %n μήνα","πριν %n μήνες"],
"next year" : "επόμενος χρόνος",
"last year" : "τελευταίο χρόνο",
"_in %n year_::_in %n years_" : ["σε %n χρόνο","σε %n χρόνια"],
"_%n year ago_::_%n years ago_" : ["%n χρόνο πριν","%n χρόνια πριν"],
"_in %n hour_::_in %n hours_" : ["σε %n ώρα","σε %n ώρες"],
"_%n hour ago_::_%n hours ago_" : ["%n ώρα πριν","%n ώρες πριν"],
"_in %n minute_::_in %n minutes_" : ["σε %n λεπτό","σε %n λεπτά"],
"_%n minute ago_::_%n minutes ago_" : ["%nλεπτό πριν","%nλεπτά πριν"],
"in a few seconds" : "σε λίγα δευτερόλεπτα",
"seconds ago" : "δευτερόλεπτα πριν",
"Empty file" : "Κενό αρχείο",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "Το άρθρωμα με ID: %sδεν υπάρχει. Παρακαλούμε ενεργοποιήστε το στις ρυθμίσεις των εφαρμογών σας ή επικοινωνήστε με τον διαχειριστή.",
"File already exists" : "Το αρχείο υπάρχει ήδη",
"Invalid path" : "Μη έγκυρη διαδρομή",
"Failed to create file from template" : "Η δημιουργία αρχείου από το πρότυπο απέτυχε",
"Templates" : "Πρότυπα",
"File name is a reserved word" : "Το όνομα αρχείου είναι λέξη που έχει δεσμευτεί",
"File name contains at least one invalid character" : "Το όνομα αρχείου περιέχει έναν τουλάχιστον μη έγκυρο χαρακτήρα",
"File name is too long" : "Το όνομα αρχείου είναι πολύ μεγάλο",
"Dot files are not allowed" : "Δεν επιτρέπονται αρχεία που ξεκινούν με τελεία",
"Empty filename is not allowed" : "Δεν επιτρέπεται άδειο όνομα αρχείου",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "Η εφαρμογή \"%s\" δεν μπορεί να εγκατασταθεί διότι δεν είναι δυνατή η ανάγνωση του αρχείου appinfo.",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "Η εφαρμογή \"%s\" δεν μπορεί να εγκατασταθεί διότι δεν είναι συμβατή με την έκδοση του διακομιστή.",
"__language_name__" : "Ελληνικά",
"This is an automatically sent email, please do not reply." : "Αυτό είναι ένα μήνυμα ηλεκτρονικού ταχυδρομείου που στάλθηκε αυτόματα, παρακαλούμε μην απαντήσετε.",
"Help" : "Βοήθεια",
"Appearance and accessibility" : "Εμφάνιση και προσβασιμότητα",
"Apps" : "Εφαρμογές",
"Personal settings" : "Προσωπικές ρυθμίσεις",
"Administration settings" : "Ρυθμίσεις διαχείρισης",
"Settings" : "Ρυθμίσεις",
"Log out" : "Έξοδος",
"Users" : "Χρήστες",
"Email" : "Email",
"Mail %s" : "Mail στο %s",
"Phone" : "Τηλέφωνο",
"Call %s" : "Καλέστε το %s",
"Twitter" : "Twitter",
"View %s on Twitter" : "Προβολή %s στο Twitter",
"Website" : "Ιστοσελίδα",
"Visit %s" : "Επισκεφτείτε το %s",
"Address" : "Διεύθυνση",
"Profile picture" : "Εικόνα προφίλ",
"About" : "Σχετικά με",
"Headline" : "Τίτλος",
"Organisation" : "Οργανισμός",
"Role" : "Ρόλος/Θέση",
"Additional settings" : "Επιπρόσθετες ρυθμίσεις",
"You need to enter details of an existing account." : "Χρειάζεται να εισάγετε λεπτομέρειες από υπάρχοντα λογαριασμό.",
"Oracle connection could not be established" : "Αδυναμία σύνδεσης Oracle",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "Το Mac OS X δεν υποστηρίζεται και το %s δεν θα λειτουργήσει σωστά σε αυτή την πλατφόρμα. Χρησιμοποιείτε με δική σας ευθύνη!",
"For the best results, please consider using a GNU/Linux server instead." : "Για καλύτερα αποτελέσματα, παρακαλούμε εξετάστε την μετατροπή σε έναν διακομιστή GNU/Linux.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Φαίνεται ότι η εγκατάσταση %s εκτελείται σε περιβάλλον 32-bit PHP και η επιλογή open_basedir έχει ρυθμιστεί στο αρχείο php.ini. Αυτό θα οδηγήσει σε προβλήματα με αρχεία πάνω από 4 GB και δεν συνίσταται.",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Παρακαλούμε αφαιρέστε την ρύθμιση open_basedir μέσα στο αρχείο php.ini ή αλλάξτε σε 64-bit PHP.",
"Set an admin password." : "Εισάγετε συνθηματικό διαχειριστή.",
"Cannot create or write into the data directory %s" : "Δεν είναι δυνατή η δημιουργία ή εγγραφή στον κατάλογο δεδομένων %s",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Το σύστημα διαμοιρασμού %s πρέπει να υλοποιεί την διεπαφή OCP\\Share_Backend",
"Sharing backend %s not found" : "Το σύστημα διαμοιρασμού %s δεν βρέθηκε",
"Sharing backend for %s not found" : "Το σύστημα διαμοιρασμού για το %s δεν βρέθηκε",
"%1$s shared »%2$s« with you and wants to add:" : "Ο %1$s διαμοιράστηκε το »%2$s« με εσάς και θέλει να προσθέσει:",
"%1$s shared »%2$s« with you and wants to add" : "Ο %1$s διαμοιράστηκε το »%2$s« με εσάς και θέλει να προσθέσει",
"»%s« added a note to a file shared with you" : "Ο »%s« πρόσθεσε μια σημείωση στο κοινόχρηστο αρχείο",
"Open »%s«" : "Άνοιγμα »%s«",
"%1$s via %2$s" : "%1$s μέσω %2$s",
"You are not allowed to share %s" : "Δεν σας επιτρέπεται ο διαμοιρασμός %s",
"Cannot increase permissions of %s" : "Αδυναμία αύξησης των δικαιωμάτων του/της %s",
"Files cannot be shared with delete permissions" : "Δεν είναι δυνατή η κοινή χρήση αρχείων με δικαιώματα διαγραφής",
"Files cannot be shared with create permissions" : "Δεν είναι δυνατή η κοινή χρήση αρχείων με δικαιώματα δημιουργίας",
"Expiration date is in the past" : "Η ημερομηνία λήξης είναι στο παρελθόν",
"_Cannot set expiration date more than %n day in the future_::_Cannot set expiration date more than %n days in the future_" : ["Δεν είναι δυνατός ο ορισμός ημερομηνίας λήξης για περισσότερο από %n ημέρα στο μέλλον","Δεν είναι δυνατός ο ορισμός ημερομηνίας λήξης για περισσότερες από %n ημέρες στο μέλλον"],
"Sharing is only allowed with group members" : "Η κοινή χρήση επιτρέπεται μόνο με μέλη της ομάδας",
"%1$s shared »%2$s« with you" : "Ο/η %1$s διαμοιράστηκε το »%2$s« με εσάς.",
"%1$s shared »%2$s« with you." : "Ο/η %1$s διαμοιράστηκε »%2$s« με εσάς.",
"Click the button below to open it." : "Κάντε κλικ στο παρακάτω κουμπί για να το ανοίξετε.",
"The requested share does not exist anymore" : "Το διαμοιρασμένο που ζητήθηκε δεν υπάρχει πλέον",
"Could not find category \"%s\"" : "Αδυναμία εύρεσης κατηγορίας \"%s\"",
"Sunday" : "Κυριακή",
"Monday" : "Δευτέρα",
"Tuesday" : "Τρίτη",
"Wednesday" : "Τετάρτη",
"Thursday" : "Πέμπτη",
"Friday" : "Παρασκευή",
"Saturday" : "Σάββατο",
"Sun." : "Κυρ.",
"Mon." : "Δευ.",
"Tue." : "Τρί.",
"Wed." : "Τετ.",
"Thu." : "Πέμ.",
"Fri." : "Παρ.",
"Sat." : "Σαβ.",
"Su" : "Κυ",
"Mo" : "Δε",
"Tu" : "Τρ",
"We" : "Τε",
"Th" : "Πε",
"Fr" : "Πα",
"Sa" : "Σα",
"January" : "Ιανουάριος",
"February" : "Φεβρουάριος",
"March" : "Μάρτιος",
"April" : "Απρίλιος",
"May" : "Μάϊος",
"June" : "Ιούνιος",
"July" : "Ιούλιος",
"August" : "Αύγουστος",
"September" : "Σεπτέμβριος",
"October" : "Οκτώβριος",
"November" : "Νοέμβριος",
"December" : "Δεκέμβριος",
"Jan." : "Ιαν.",
"Feb." : "Φεβ.",
"Mar." : "Μαρ.",
"Apr." : "Απρ.",
"May." : "Μαι.",
"Jun." : "Ιουν.",
"Jul." : "Ιουλ.",
"Aug." : "Αυγ.",
"Sep." : "Σεπ.",
"Oct." : "Οκτ.",
"Nov." : "Νοε.",
"Dec." : "Δεκ.",
"A valid password must be provided" : "Πρέπει να δοθεί έγκυρο συνθηματικό",
"Login canceled by app" : "Η είσοδος ακυρώθηκε από την εφαρμογή",
"App \"%1$s\" cannot be installed because the following dependencies are not fulfilled: %2$s" : "Η εφαρμογή \"%1$s\" δεν μπορεί να εγκατασταθεί επειδή δεν πληρούνται τα προαπαιτούμενα: %2$s",
"a safe home for all your data" : "ένα ασφαλές μέρος για όλα τα δεδομένα σας",
"File is currently busy, please try again later" : "Το αρχείο χρησιμοποιείται αυτή τη στιγμή, παρακαλούμε προσπαθήστε αργότερα",
"Cannot download file" : "Δεν είναι δυνατή η λήψη του αρχείου",
"Application is not enabled" : "Δεν ενεργοποιήθηκε η εφαρμογή",
"Authentication error" : "Σφάλμα πιστοποίησης",
"Token expired. Please reload page." : "Το αναγνωριστικό έληξε. Παρακαλούμε φορτώστε ξανά την σελίδα.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "Δεν βρέθηκαν εγκατεστημένοι οδηγοί βάσεων δεδομένων (sqlite, mysql, or postgresql).",
"Cannot write into \"config\" directory." : "Δεν είναι δυνατή η εγγραφή στον κατάλογο \"config\".",
"This can usually be fixed by giving the web server write access to the config directory. See %s" : "Αυτό μπορεί συνήθως να διορθωθεί δίνοντας στον διακομιστή ιστού δικαιώματα εγγραφής στον κατάλογο config. Δείτε το%s",
"Or, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it. See %s" : "Ή εάν επιθυμείτε να διατηρήσετε το config.php σε κατάσταση ανάγνωσης μόνο, καθορίστε το από τις επιλογές του σε true του \"config_is_read_only\". Δείτε %s",
"Cannot write into \"apps\" directory." : "Δεν είναι δυνατή η εγγραφή στον κατάλογο \"apps\".",
"This can usually be fixed by giving the web server write access to the apps directory or disabling the App Store in the config file." : "Αυτό μπορεί συνήθως να διορθωθεί δίνοντας στον διακομιστή ιστού πρόσβαση εγγραφής στον κατάλογο apps ή απενεργοποιώντας το App Store στο αρχείο διαμόρφωσης config.",
"Cannot create \"data\" directory." : "Δεν είναι δυνατή η δημιουργία καταλόγου \"data\".",
"This can usually be fixed by giving the web server write access to the root directory. See %s" : "Αυτό μπορεί συνήθως να διορθωθεί δίνοντας στον διακομιστή ιστού δικαιώματα εγγραφής στον ριζικό κατάλογο. Δείτε το%s",
"Permissions can usually be fixed by giving the web server write access to the root directory. See %s." : "Τα δικαιώματα μπορούν συνήθως να διορθωθούν δίνοντας στον διακομιστή ιστού πρόσβαση εγγραφής στον ριζικό κατάλογο. Δείτε το%s.",
"Your data directory is not writable." : "Ο κατάλογος δεδομένων σας δεν είναι εγγράψιμος.",
"Setting locale to %s failed." : "Η ρύθμιση τοπικών ρυθμίσεων σε %s απέτυχε.",
"Please install one of these locales on your system and restart your web server." : "Παρακαλούμε να εγκαταστήσετε μία από αυτές τις τοπικές ρυθμίσεις στο σύστημά σας και να επανεκκινήστε τον διακομιστή ιστού σας.",
"PHP module %s not installed." : "Η μονάδα %s PHP δεν είναι εγκατεστημένη. ",
"Please ask your server administrator to install the module." : "Παρακαλούμε ζητήστε από το διαχειριστή του διακομιστή σας να εγκαταστήσει τη μονάδα.",
"PHP setting \"%s\" is not set to \"%s\"." : "Η ρύθμιση \"%s\"της PHP δεν είναι ορισμένη σε \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "Προσαρμόζοντας αυτήν τη ρύθμιση στο php.ini το Nextcloud θα εκτελεστεί ξανά",
"<code>mbstring.func_overload</code> is set to <code>%s</code> instead of the expected value <code>0</code>." : "Το <code>mbstring.func_overload</code> έχει ορισθεί σε <code>%s</code> αντί για την αναμενόμενη τιμή <code>0</code>.",
"To fix this issue set <code>mbstring.func_overload</code> to <code>0</code> in your php.ini." : "Για να διορθώσετε αυτό το πρόβλημα ορίστε το <code>mbstring.func_overload</code> σε <code>0</code> στο αρχείο php.ini.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "Η PHP φαίνεται να είναι ρυθμισμένη ώστε να αφαιρεί inline doc blocks. Αυτό θα καταστήσει πολλές βασικές εφαρμογές μη διαθέσιμες.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Αυτό πιθανόν προκλήθηκε από προσωρινή μνήμη (cache)/επιταχυντή όπως τη Zend OPcache ή τον eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "Κάποια αρθρώματα της PHP έχουν εγκατασταθεί, αλλά είναι ακόμα καταγεγραμμένες ως εκλιπόντα;",
"Please ask your server administrator to restart the web server." : "Παρακαλούμε ζητήστε από το διαχειριστή του διακομιστή σας να επανεκκινήσει το διακομιστή δικτύου σας.",
"Please ask your server administrator to check the Nextcloud configuration." : "Παρακαλούμε ζητήστε από το διαχειριστή του διακομιστή σας να ελέγξει τη διαμόρφωση του Nextcloud.",
"Your data directory must be an absolute path." : "Ο κατάλογος δεδομένων σας πρέπει να είναι μια απόλυτη διαδρομή.",
"Check the value of \"datadirectory\" in your configuration." : "Ελέγξτε την τιμή του \"datadirectory\" στις ρυθμίσεις σας.",
"Your data directory is invalid." : "Ο κατάλογος δεδομένων σας δεν είναι έγκυρος.",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Εξασφαλίστε ότι υπάρχει ένα αρχείο με όνομα \".ocdata\" στον βασικό κατάλογο του καταλόγου δεδομένων.",
"Action \"%s\" not supported or implemented." : "Η ενέργεια \"%s\" δεν υποστηρίζεται ή δεν μπορεί να υλοποιηθεί.",
"Authentication failed, wrong token or provider ID given" : "Ο έλεγχος ταυτότητας απέτυχε, δόθηκε λανθασμένο αναγνωριστικό ή αναγνωριστικό παρόχου",
"Parameters missing in order to complete the request. Missing Parameters: \"%s\"" : "Απουσιάζουν παράμετροι για την ολοκλήρωση του αιτήματος. Ελλιπείς παράμετροι: \"%s\"",
"ID \"%1$s\" already used by cloud federation provider \"%2$s\"" : "Το αναγνωριστικό \"%1$s\" χρησιμοποιείται ήδη από τον ομόσπονδο πάροχο \"%2$s\"",
"Cloud Federation Provider with ID: \"%s\" does not exist." : "Cloud Federation Provider with ID: \"%s\" δεν υπάρχει.",
"Could not obtain lock type %d on \"%s\"." : "Αδυναμία ανάκτησης τύπου κλειδώματος %d στο \"%s\".",
"Storage unauthorized. %s" : "Αποθηκευτικός χώρος χωρίς εξουσιοδότηση. %s",
"Storage incomplete configuration. %s" : "Ελλιπής διαμόρφωση αποθηκευτικού χώρου. %s",
"Storage connection error. %s" : "Σφάλμα σύνδεσης με αποθηκευτικό χώρο. %s",
"Storage is temporarily not available" : "Ο χώρος αποθήκευσης δεν είναι διαθέσιμος προσωρινά",
"Storage connection timeout. %s" : "Λήξη χρονικού ορίου σύνδεσης με αποθηκευτικό χώρο.%s",
"The files of the app %1$s were not replaced correctly. Make sure it is a version compatible with the server." : "Τα αρχεία της εφαρμογής %1$s δεν αντικαταστάθηκαν σωστά. Βεβαιωθείτε ότι πρόκειται για συμβατή έκδοση με το διακομιστή.",
"Logged in user must be an admin, a sub admin or gotten special right to access this setting" : "Ο συνδεδεμένος χρήστης πρέπει να είναι διαχειριστής, υποδιαχειριστής ή να έχει ειδικό δικαίωμα πρόσβασης σε αυτήν τη ρύθμιση",
"Logged in user must be an admin or sub admin" : "Ο συνδεδεμένος χρήστης πρέπει να είναι admin ή subadmin",
"Logged in user must be an admin" : "Ο συνδεδεμένος χρήστης πρέπει να είναι διαχειριστής",
"Full name" : "Πλήρες όνομα",
"Unknown user" : "Άγνωστος χρήστης",
"MySQL username and/or password not valid" : "Το όνομα χρήστη και/'η ο κωδικός πρόσβασης MySQL δεν είναι σωστά",
"Oracle username and/or password not valid" : "Μη έγκυρος χρήστης και/ή συνθηματικό της Oracle",
"PostgreSQL username and/or password not valid" : "Μη έγκυρος χρήστης και/ή συνθηματικό της PostgreSQL",
"Set an admin username." : "Εισάγετε όνομα χρήστη διαχειριστή.",
"Sharing %s failed, because this item is already shared with user %s" : "Η κοινή χρήση του %s απέτυχε, επειδή αυτό το στοιχείο είναι ήδη κοινόχρηστο με τον χρήστη %s",
"The username is already being used" : "Το όνομα χρήστη είναι κατειλημμένο",
"Could not create user" : "Αδυναμία δημιουργίας χρήστη",
"A valid username must be provided" : "Πρέπει να δοθεί έγκυρο όνομα χρήστη",
"Username contains whitespace at the beginning or at the end" : "Το όνομα χρήστη περιέχει κενό διάστημα στην αρχή ή στο τέλος",
"Username must not consist of dots only" : "Το όνομα χρήστη δεν πρέπει να περιέχει μόνο τελείες",
"Username is invalid because files already exist for this user" : "Το όνομα χρήστη δεν είναι έγκυρο, επειδή υπάρχουν ήδη αρχεία για αυτόν τον χρήστη",
"User disabled" : "Ο χρήστης απενεργοποιήθηκε",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Απαιτείται τουλάχιστον το libxml2 2.7.0. Αυτή τη στιγμή είναι εγκατεστημένο το %s.",
"To fix this issue update your libxml2 version and restart your web server." : "Για να διορθώσετε το σφάλμα ενημερώστε την έκδοση του libxml2 και επανεκκινήστε τον διακομιστή.",
"PostgreSQL >= 9 required." : "Απαιτείται PostgreSQL >= 9.",
"Please upgrade your database version." : "Παρακαλούμε αναβαθμίστε την έκδοση της βάσης δεδομένων σας.",
"Your data directory is readable by other users." : "Ο κατάλογος δεδομένων σας είναι αναγνώσιμος από άλλους χρήστες.",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Παρακαλούμε αλλάξτε τις ρυθμίσεις σε 0770 έτσι ώστε ο κατάλογος να μην μπορεί να προβάλλεται από άλλους χρήστες."
},
"nplurals=2; plural=(n != 1);");
+257
View File
@@ -0,0 +1,257 @@
{ "translations": {
"Cannot write into \"config\" directory!" : "Αδυναμία εγγραφής στον κατάλογο \"config\"!",
"This can usually be fixed by giving the web server write access to the config directory." : "Αυτό μπορεί συνήθως να διορθωθεί παρέχοντας δικαιώματα εγγραφής για το φάκελο config στον διακομιστή ιστού.",
"But, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it." : "Ή εάν επιθυμείτε να διατηρήσετε το config.php σε κατάσταση ανάγνωσης μόνο, ορίστε την επιλογή \"config_is_read_only\" σε true.",
"See %s" : "Δείτε %s",
"Sample configuration detected" : "Ανιχνεύθηκε παράδειγμα εγκατάστασης",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Έχει ανιχνευθεί ότι το δείγμα εγκατάστασης έχει αντιγραφεί. Αυτό μπορεί να σπάσει την εγκατάστασή σας και δεν υποστηρίζεται. Παρακαλούμε διαβάστε την τεκμηρίωση πριν εκτελέσετε αλλαγές στο config.php",
"The page could not be found on the server." : "Αυτή η σελίδα δε βρέθηκε στον διακομιστή.",
"%s email verification" : "%s επαλήθευση email",
"Email verification" : "Επαλήθευση email",
"Click the following button to confirm your email." : "Κάντε κλικ στο παρακάτω κουμπί για να επιβεβαιώσετε το email σας.",
"Click the following link to confirm your email." : "Κάντε κλικ στον παρακάτω σύνδεσμο για να επιβεβαιώσετε το email σας.",
"Confirm your email" : "Επιβεβαιώστε το email σας",
"Other activities" : "Άλλες δραστηριότητες",
"%1$s and %2$s" : "%1$s και %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s και %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s και %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s και %5$s",
"Education Edition" : "Εκπαιδευτική Έκδοση",
"Enterprise bundle" : "Πακέτο επιχειρήσεων",
"Groupware bundle" : "Πακέτο Groupware",
"Hub bundle" : "Hub bundle",
"Social sharing bundle" : "Πακέτο κοινωνικού διαμοιρασμού",
"PHP %s or higher is required." : "PHP %s ή νεώτερη απαιτείται.",
"PHP with a version lower than %s is required." : "Απαιτείται PHP παλαιότερη από την έκδοση %s.",
"%sbit or higher PHP required." : "%sbit απαιτείται νεώτερη έκδοση PHP.",
"The following architectures are supported: %s" : "Υποστηρίζονται οι ακόλουθες αρχιτεκτονικές: %s",
"The following databases are supported: %s" : " Υποστηρίζονται οι ακόλουθες βάσεις δεδομένων: %s",
"The command line tool %s could not be found" : "Το εργαλείο γραμμής εντολών %s δεν μπορεί να βρεθεί",
"The library %s is not available." : "Το %s της βιβλιοθήκης δεν είναι διαθέσιμο.",
"Library %1$s with a version higher than %2$s is required - available version %3$s." : "Απαιτείται βιβλιοθήκη %1$s νεότερη από την έκδοση %2$s - διαθέσιμη έκδοση %3$s.",
"Library %1$s with a version lower than %2$s is required - available version %3$s." : "Απαιτείται βιβλιοθήκη %1$s παλαιότερη από την έκδοση %2$s - διαθέσιμη έκδοση %3$s.",
"The following platforms are supported: %s" : "Υποστηρίζονται οι ακόλουθες πλατφόρμες: %s",
"Server version %s or higher is required." : "Απαιτείται έκδοση διακομιστή %s ή νεότερη.",
"Server version %s or lower is required." : "Απαιτείται έκδοση διακομιστή %s ή παλαιότερη.",
"Wiping of device %s has started" : "Η εκκαθάριση συσκευής %s ξεκίνησε",
"Wiping of device »%s« has started" : "Η εκκαθάριση συσκευής »%s« ξεκίνησε",
"»%s« started remote wipe" : "»%s« ξεκίνησε η απομακρυσμένη εκκαθάριση",
"Device or application »%s« has started the remote wipe process. You will receive another email once the process has finished" : "Η συσκευή ή εφαρμογή »%s« ξεκίνησε απομακρυσμένη εκκαθάριση. Θα λάβετε ένα ηλ.μήνυμα μόλις ολοκληρωθεί",
"Wiping of device %s has finished" : "Η εκκαθάριση συσκευής %s ολοκληρώθηκε",
"Wiping of device »%s« has finished" : "Η εκκαθάριση συσκευής »%s« ολοκληρώθηκε",
"»%s« finished remote wipe" : "»%s« ολοκληρώθηκε η απομακρυσμένη εκκαθάριση",
"Device or application »%s« has finished the remote wipe process." : "Η συσκευή ή εφαρμογή »%s« ολοκλήρωσε την απομακρυσμένη εκκαθάριση.",
"Remote wipe started" : "Η απομακρυσμένη εκκαθάριση ξεκίνησε",
"A remote wipe was started on device %s" : "Η απομακρυσμένη εκκαθάριση ξεκίνησε στην συσκευή %s",
"Remote wipe finished" : "Η απομακρυσμένη εκκαθάριση ολοκληρώθηκε",
"The remote wipe on %s has finished" : "Η απομακρυσμένη εκκαθάριση στο %s ολοκληρώθηκε",
"Authentication" : "Πιστοποίηση",
"Unknown filetype" : "Άγνωστος τύπος αρχείου",
"Invalid image" : "Μη έγκυρη εικόνα",
"Avatar image is not square" : "Η εικόνα του άβαταρ δεν είναι τετράγωνη",
"Files" : "Αρχεία",
"View profile" : "Προβολή προφίλ",
"Local time: %s" : "Τοπική ώρα: %s",
"today" : "σήμερα",
"tomorrow" : "αύριο",
"yesterday" : "χθες",
"_in %n day_::_in %n days_" : ["σε %n ημέρα","σε %n ημέρες"],
"_%n day ago_::_%n days ago_" : ["%n ημέρα πριν","%n ημέρες πριν"],
"next month" : "επόμενος μήνας",
"last month" : "τελευταίο μήνα",
"_in %n month_::_in %n months_" : ["σε %n μήνα","σε %n μήνες"],
"_%n month ago_::_%n months ago_" : ["πριν %n μήνα","πριν %n μήνες"],
"next year" : "επόμενος χρόνος",
"last year" : "τελευταίο χρόνο",
"_in %n year_::_in %n years_" : ["σε %n χρόνο","σε %n χρόνια"],
"_%n year ago_::_%n years ago_" : ["%n χρόνο πριν","%n χρόνια πριν"],
"_in %n hour_::_in %n hours_" : ["σε %n ώρα","σε %n ώρες"],
"_%n hour ago_::_%n hours ago_" : ["%n ώρα πριν","%n ώρες πριν"],
"_in %n minute_::_in %n minutes_" : ["σε %n λεπτό","σε %n λεπτά"],
"_%n minute ago_::_%n minutes ago_" : ["%nλεπτό πριν","%nλεπτά πριν"],
"in a few seconds" : "σε λίγα δευτερόλεπτα",
"seconds ago" : "δευτερόλεπτα πριν",
"Empty file" : "Κενό αρχείο",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "Το άρθρωμα με ID: %sδεν υπάρχει. Παρακαλούμε ενεργοποιήστε το στις ρυθμίσεις των εφαρμογών σας ή επικοινωνήστε με τον διαχειριστή.",
"File already exists" : "Το αρχείο υπάρχει ήδη",
"Invalid path" : "Μη έγκυρη διαδρομή",
"Failed to create file from template" : "Η δημιουργία αρχείου από το πρότυπο απέτυχε",
"Templates" : "Πρότυπα",
"File name is a reserved word" : "Το όνομα αρχείου είναι λέξη που έχει δεσμευτεί",
"File name contains at least one invalid character" : "Το όνομα αρχείου περιέχει έναν τουλάχιστον μη έγκυρο χαρακτήρα",
"File name is too long" : "Το όνομα αρχείου είναι πολύ μεγάλο",
"Dot files are not allowed" : "Δεν επιτρέπονται αρχεία που ξεκινούν με τελεία",
"Empty filename is not allowed" : "Δεν επιτρέπεται άδειο όνομα αρχείου",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "Η εφαρμογή \"%s\" δεν μπορεί να εγκατασταθεί διότι δεν είναι δυνατή η ανάγνωση του αρχείου appinfo.",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "Η εφαρμογή \"%s\" δεν μπορεί να εγκατασταθεί διότι δεν είναι συμβατή με την έκδοση του διακομιστή.",
"__language_name__" : "Ελληνικά",
"This is an automatically sent email, please do not reply." : "Αυτό είναι ένα μήνυμα ηλεκτρονικού ταχυδρομείου που στάλθηκε αυτόματα, παρακαλούμε μην απαντήσετε.",
"Help" : "Βοήθεια",
"Appearance and accessibility" : "Εμφάνιση και προσβασιμότητα",
"Apps" : "Εφαρμογές",
"Personal settings" : "Προσωπικές ρυθμίσεις",
"Administration settings" : "Ρυθμίσεις διαχείρισης",
"Settings" : "Ρυθμίσεις",
"Log out" : "Έξοδος",
"Users" : "Χρήστες",
"Email" : "Email",
"Mail %s" : "Mail στο %s",
"Phone" : "Τηλέφωνο",
"Call %s" : "Καλέστε το %s",
"Twitter" : "Twitter",
"View %s on Twitter" : "Προβολή %s στο Twitter",
"Website" : "Ιστοσελίδα",
"Visit %s" : "Επισκεφτείτε το %s",
"Address" : "Διεύθυνση",
"Profile picture" : "Εικόνα προφίλ",
"About" : "Σχετικά με",
"Headline" : "Τίτλος",
"Organisation" : "Οργανισμός",
"Role" : "Ρόλος/Θέση",
"Additional settings" : "Επιπρόσθετες ρυθμίσεις",
"You need to enter details of an existing account." : "Χρειάζεται να εισάγετε λεπτομέρειες από υπάρχοντα λογαριασμό.",
"Oracle connection could not be established" : "Αδυναμία σύνδεσης Oracle",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "Το Mac OS X δεν υποστηρίζεται και το %s δεν θα λειτουργήσει σωστά σε αυτή την πλατφόρμα. Χρησιμοποιείτε με δική σας ευθύνη!",
"For the best results, please consider using a GNU/Linux server instead." : "Για καλύτερα αποτελέσματα, παρακαλούμε εξετάστε την μετατροπή σε έναν διακομιστή GNU/Linux.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Φαίνεται ότι η εγκατάσταση %s εκτελείται σε περιβάλλον 32-bit PHP και η επιλογή open_basedir έχει ρυθμιστεί στο αρχείο php.ini. Αυτό θα οδηγήσει σε προβλήματα με αρχεία πάνω από 4 GB και δεν συνίσταται.",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Παρακαλούμε αφαιρέστε την ρύθμιση open_basedir μέσα στο αρχείο php.ini ή αλλάξτε σε 64-bit PHP.",
"Set an admin password." : "Εισάγετε συνθηματικό διαχειριστή.",
"Cannot create or write into the data directory %s" : "Δεν είναι δυνατή η δημιουργία ή εγγραφή στον κατάλογο δεδομένων %s",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Το σύστημα διαμοιρασμού %s πρέπει να υλοποιεί την διεπαφή OCP\\Share_Backend",
"Sharing backend %s not found" : "Το σύστημα διαμοιρασμού %s δεν βρέθηκε",
"Sharing backend for %s not found" : "Το σύστημα διαμοιρασμού για το %s δεν βρέθηκε",
"%1$s shared »%2$s« with you and wants to add:" : "Ο %1$s διαμοιράστηκε το »%2$s« με εσάς και θέλει να προσθέσει:",
"%1$s shared »%2$s« with you and wants to add" : "Ο %1$s διαμοιράστηκε το »%2$s« με εσάς και θέλει να προσθέσει",
"»%s« added a note to a file shared with you" : "Ο »%s« πρόσθεσε μια σημείωση στο κοινόχρηστο αρχείο",
"Open »%s«" : "Άνοιγμα »%s«",
"%1$s via %2$s" : "%1$s μέσω %2$s",
"You are not allowed to share %s" : "Δεν σας επιτρέπεται ο διαμοιρασμός %s",
"Cannot increase permissions of %s" : "Αδυναμία αύξησης των δικαιωμάτων του/της %s",
"Files cannot be shared with delete permissions" : "Δεν είναι δυνατή η κοινή χρήση αρχείων με δικαιώματα διαγραφής",
"Files cannot be shared with create permissions" : "Δεν είναι δυνατή η κοινή χρήση αρχείων με δικαιώματα δημιουργίας",
"Expiration date is in the past" : "Η ημερομηνία λήξης είναι στο παρελθόν",
"_Cannot set expiration date more than %n day in the future_::_Cannot set expiration date more than %n days in the future_" : ["Δεν είναι δυνατός ο ορισμός ημερομηνίας λήξης για περισσότερο από %n ημέρα στο μέλλον","Δεν είναι δυνατός ο ορισμός ημερομηνίας λήξης για περισσότερες από %n ημέρες στο μέλλον"],
"Sharing is only allowed with group members" : "Η κοινή χρήση επιτρέπεται μόνο με μέλη της ομάδας",
"%1$s shared »%2$s« with you" : "Ο/η %1$s διαμοιράστηκε το »%2$s« με εσάς.",
"%1$s shared »%2$s« with you." : "Ο/η %1$s διαμοιράστηκε »%2$s« με εσάς.",
"Click the button below to open it." : "Κάντε κλικ στο παρακάτω κουμπί για να το ανοίξετε.",
"The requested share does not exist anymore" : "Το διαμοιρασμένο που ζητήθηκε δεν υπάρχει πλέον",
"Could not find category \"%s\"" : "Αδυναμία εύρεσης κατηγορίας \"%s\"",
"Sunday" : "Κυριακή",
"Monday" : "Δευτέρα",
"Tuesday" : "Τρίτη",
"Wednesday" : "Τετάρτη",
"Thursday" : "Πέμπτη",
"Friday" : "Παρασκευή",
"Saturday" : "Σάββατο",
"Sun." : "Κυρ.",
"Mon." : "Δευ.",
"Tue." : "Τρί.",
"Wed." : "Τετ.",
"Thu." : "Πέμ.",
"Fri." : "Παρ.",
"Sat." : "Σαβ.",
"Su" : "Κυ",
"Mo" : "Δε",
"Tu" : "Τρ",
"We" : "Τε",
"Th" : "Πε",
"Fr" : "Πα",
"Sa" : "Σα",
"January" : "Ιανουάριος",
"February" : "Φεβρουάριος",
"March" : "Μάρτιος",
"April" : "Απρίλιος",
"May" : "Μάϊος",
"June" : "Ιούνιος",
"July" : "Ιούλιος",
"August" : "Αύγουστος",
"September" : "Σεπτέμβριος",
"October" : "Οκτώβριος",
"November" : "Νοέμβριος",
"December" : "Δεκέμβριος",
"Jan." : "Ιαν.",
"Feb." : "Φεβ.",
"Mar." : "Μαρ.",
"Apr." : "Απρ.",
"May." : "Μαι.",
"Jun." : "Ιουν.",
"Jul." : "Ιουλ.",
"Aug." : "Αυγ.",
"Sep." : "Σεπ.",
"Oct." : "Οκτ.",
"Nov." : "Νοε.",
"Dec." : "Δεκ.",
"A valid password must be provided" : "Πρέπει να δοθεί έγκυρο συνθηματικό",
"Login canceled by app" : "Η είσοδος ακυρώθηκε από την εφαρμογή",
"App \"%1$s\" cannot be installed because the following dependencies are not fulfilled: %2$s" : "Η εφαρμογή \"%1$s\" δεν μπορεί να εγκατασταθεί επειδή δεν πληρούνται τα προαπαιτούμενα: %2$s",
"a safe home for all your data" : "ένα ασφαλές μέρος για όλα τα δεδομένα σας",
"File is currently busy, please try again later" : "Το αρχείο χρησιμοποιείται αυτή τη στιγμή, παρακαλούμε προσπαθήστε αργότερα",
"Cannot download file" : "Δεν είναι δυνατή η λήψη του αρχείου",
"Application is not enabled" : "Δεν ενεργοποιήθηκε η εφαρμογή",
"Authentication error" : "Σφάλμα πιστοποίησης",
"Token expired. Please reload page." : "Το αναγνωριστικό έληξε. Παρακαλούμε φορτώστε ξανά την σελίδα.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "Δεν βρέθηκαν εγκατεστημένοι οδηγοί βάσεων δεδομένων (sqlite, mysql, or postgresql).",
"Cannot write into \"config\" directory." : "Δεν είναι δυνατή η εγγραφή στον κατάλογο \"config\".",
"This can usually be fixed by giving the web server write access to the config directory. See %s" : "Αυτό μπορεί συνήθως να διορθωθεί δίνοντας στον διακομιστή ιστού δικαιώματα εγγραφής στον κατάλογο config. Δείτε το%s",
"Or, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it. See %s" : "Ή εάν επιθυμείτε να διατηρήσετε το config.php σε κατάσταση ανάγνωσης μόνο, καθορίστε το από τις επιλογές του σε true του \"config_is_read_only\". Δείτε %s",
"Cannot write into \"apps\" directory." : "Δεν είναι δυνατή η εγγραφή στον κατάλογο \"apps\".",
"This can usually be fixed by giving the web server write access to the apps directory or disabling the App Store in the config file." : "Αυτό μπορεί συνήθως να διορθωθεί δίνοντας στον διακομιστή ιστού πρόσβαση εγγραφής στον κατάλογο apps ή απενεργοποιώντας το App Store στο αρχείο διαμόρφωσης config.",
"Cannot create \"data\" directory." : "Δεν είναι δυνατή η δημιουργία καταλόγου \"data\".",
"This can usually be fixed by giving the web server write access to the root directory. See %s" : "Αυτό μπορεί συνήθως να διορθωθεί δίνοντας στον διακομιστή ιστού δικαιώματα εγγραφής στον ριζικό κατάλογο. Δείτε το%s",
"Permissions can usually be fixed by giving the web server write access to the root directory. See %s." : "Τα δικαιώματα μπορούν συνήθως να διορθωθούν δίνοντας στον διακομιστή ιστού πρόσβαση εγγραφής στον ριζικό κατάλογο. Δείτε το%s.",
"Your data directory is not writable." : "Ο κατάλογος δεδομένων σας δεν είναι εγγράψιμος.",
"Setting locale to %s failed." : "Η ρύθμιση τοπικών ρυθμίσεων σε %s απέτυχε.",
"Please install one of these locales on your system and restart your web server." : "Παρακαλούμε να εγκαταστήσετε μία από αυτές τις τοπικές ρυθμίσεις στο σύστημά σας και να επανεκκινήστε τον διακομιστή ιστού σας.",
"PHP module %s not installed." : "Η μονάδα %s PHP δεν είναι εγκατεστημένη. ",
"Please ask your server administrator to install the module." : "Παρακαλούμε ζητήστε από το διαχειριστή του διακομιστή σας να εγκαταστήσει τη μονάδα.",
"PHP setting \"%s\" is not set to \"%s\"." : "Η ρύθμιση \"%s\"της PHP δεν είναι ορισμένη σε \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "Προσαρμόζοντας αυτήν τη ρύθμιση στο php.ini το Nextcloud θα εκτελεστεί ξανά",
"<code>mbstring.func_overload</code> is set to <code>%s</code> instead of the expected value <code>0</code>." : "Το <code>mbstring.func_overload</code> έχει ορισθεί σε <code>%s</code> αντί για την αναμενόμενη τιμή <code>0</code>.",
"To fix this issue set <code>mbstring.func_overload</code> to <code>0</code> in your php.ini." : "Για να διορθώσετε αυτό το πρόβλημα ορίστε το <code>mbstring.func_overload</code> σε <code>0</code> στο αρχείο php.ini.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "Η PHP φαίνεται να είναι ρυθμισμένη ώστε να αφαιρεί inline doc blocks. Αυτό θα καταστήσει πολλές βασικές εφαρμογές μη διαθέσιμες.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Αυτό πιθανόν προκλήθηκε από προσωρινή μνήμη (cache)/επιταχυντή όπως τη Zend OPcache ή τον eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "Κάποια αρθρώματα της PHP έχουν εγκατασταθεί, αλλά είναι ακόμα καταγεγραμμένες ως εκλιπόντα;",
"Please ask your server administrator to restart the web server." : "Παρακαλούμε ζητήστε από το διαχειριστή του διακομιστή σας να επανεκκινήσει το διακομιστή δικτύου σας.",
"Please ask your server administrator to check the Nextcloud configuration." : "Παρακαλούμε ζητήστε από το διαχειριστή του διακομιστή σας να ελέγξει τη διαμόρφωση του Nextcloud.",
"Your data directory must be an absolute path." : "Ο κατάλογος δεδομένων σας πρέπει να είναι μια απόλυτη διαδρομή.",
"Check the value of \"datadirectory\" in your configuration." : "Ελέγξτε την τιμή του \"datadirectory\" στις ρυθμίσεις σας.",
"Your data directory is invalid." : "Ο κατάλογος δεδομένων σας δεν είναι έγκυρος.",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Εξασφαλίστε ότι υπάρχει ένα αρχείο με όνομα \".ocdata\" στον βασικό κατάλογο του καταλόγου δεδομένων.",
"Action \"%s\" not supported or implemented." : "Η ενέργεια \"%s\" δεν υποστηρίζεται ή δεν μπορεί να υλοποιηθεί.",
"Authentication failed, wrong token or provider ID given" : "Ο έλεγχος ταυτότητας απέτυχε, δόθηκε λανθασμένο αναγνωριστικό ή αναγνωριστικό παρόχου",
"Parameters missing in order to complete the request. Missing Parameters: \"%s\"" : "Απουσιάζουν παράμετροι για την ολοκλήρωση του αιτήματος. Ελλιπείς παράμετροι: \"%s\"",
"ID \"%1$s\" already used by cloud federation provider \"%2$s\"" : "Το αναγνωριστικό \"%1$s\" χρησιμοποιείται ήδη από τον ομόσπονδο πάροχο \"%2$s\"",
"Cloud Federation Provider with ID: \"%s\" does not exist." : "Cloud Federation Provider with ID: \"%s\" δεν υπάρχει.",
"Could not obtain lock type %d on \"%s\"." : "Αδυναμία ανάκτησης τύπου κλειδώματος %d στο \"%s\".",
"Storage unauthorized. %s" : "Αποθηκευτικός χώρος χωρίς εξουσιοδότηση. %s",
"Storage incomplete configuration. %s" : "Ελλιπής διαμόρφωση αποθηκευτικού χώρου. %s",
"Storage connection error. %s" : "Σφάλμα σύνδεσης με αποθηκευτικό χώρο. %s",
"Storage is temporarily not available" : "Ο χώρος αποθήκευσης δεν είναι διαθέσιμος προσωρινά",
"Storage connection timeout. %s" : "Λήξη χρονικού ορίου σύνδεσης με αποθηκευτικό χώρο.%s",
"The files of the app %1$s were not replaced correctly. Make sure it is a version compatible with the server." : "Τα αρχεία της εφαρμογής %1$s δεν αντικαταστάθηκαν σωστά. Βεβαιωθείτε ότι πρόκειται για συμβατή έκδοση με το διακομιστή.",
"Logged in user must be an admin, a sub admin or gotten special right to access this setting" : "Ο συνδεδεμένος χρήστης πρέπει να είναι διαχειριστής, υποδιαχειριστής ή να έχει ειδικό δικαίωμα πρόσβασης σε αυτήν τη ρύθμιση",
"Logged in user must be an admin or sub admin" : "Ο συνδεδεμένος χρήστης πρέπει να είναι admin ή subadmin",
"Logged in user must be an admin" : "Ο συνδεδεμένος χρήστης πρέπει να είναι διαχειριστής",
"Full name" : "Πλήρες όνομα",
"Unknown user" : "Άγνωστος χρήστης",
"MySQL username and/or password not valid" : "Το όνομα χρήστη και/'η ο κωδικός πρόσβασης MySQL δεν είναι σωστά",
"Oracle username and/or password not valid" : "Μη έγκυρος χρήστης και/ή συνθηματικό της Oracle",
"PostgreSQL username and/or password not valid" : "Μη έγκυρος χρήστης και/ή συνθηματικό της PostgreSQL",
"Set an admin username." : "Εισάγετε όνομα χρήστη διαχειριστή.",
"Sharing %s failed, because this item is already shared with user %s" : "Η κοινή χρήση του %s απέτυχε, επειδή αυτό το στοιχείο είναι ήδη κοινόχρηστο με τον χρήστη %s",
"The username is already being used" : "Το όνομα χρήστη είναι κατειλημμένο",
"Could not create user" : "Αδυναμία δημιουργίας χρήστη",
"A valid username must be provided" : "Πρέπει να δοθεί έγκυρο όνομα χρήστη",
"Username contains whitespace at the beginning or at the end" : "Το όνομα χρήστη περιέχει κενό διάστημα στην αρχή ή στο τέλος",
"Username must not consist of dots only" : "Το όνομα χρήστη δεν πρέπει να περιέχει μόνο τελείες",
"Username is invalid because files already exist for this user" : "Το όνομα χρήστη δεν είναι έγκυρο, επειδή υπάρχουν ήδη αρχεία για αυτόν τον χρήστη",
"User disabled" : "Ο χρήστης απενεργοποιήθηκε",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Απαιτείται τουλάχιστον το libxml2 2.7.0. Αυτή τη στιγμή είναι εγκατεστημένο το %s.",
"To fix this issue update your libxml2 version and restart your web server." : "Για να διορθώσετε το σφάλμα ενημερώστε την έκδοση του libxml2 και επανεκκινήστε τον διακομιστή.",
"PostgreSQL >= 9 required." : "Απαιτείται PostgreSQL >= 9.",
"Please upgrade your database version." : "Παρακαλούμε αναβαθμίστε την έκδοση της βάσης δεδομένων σας.",
"Your data directory is readable by other users." : "Ο κατάλογος δεδομένων σας είναι αναγνώσιμος από άλλους χρήστες.",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Παρακαλούμε αλλάξτε τις ρυθμίσεις σε 0770 έτσι ώστε ο κατάλογος να μην μπορεί να προβάλλεται από άλλους χρήστες."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}
+301
View File
@@ -0,0 +1,301 @@
OC.L10N.register(
"lib",
{
"Cannot write into \"config\" directory!" : "Cannot write into \"config\" directory!",
"This can usually be fixed by giving the web server write access to the config directory." : "This can usually be fixed by giving the web server write access to the config directory.",
"But, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it." : "But, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it.",
"See %s" : "See %s",
"Application %1$s is not present or has a non-compatible version with this server. Please check the apps directory." : "Application %1$s is not present or has a non-compatible version with this server. Please check the apps directory.",
"Sample configuration detected" : "Sample configuration detected",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php",
"The page could not be found on the server." : "The page could not be found on the server.",
"%s email verification" : "%s email verification",
"Email verification" : "Email verification",
"Click the following button to confirm your email." : "Click the following button to confirm your email.",
"Click the following link to confirm your email." : "Click the following link to confirm your email.",
"Confirm your email" : "Confirm your email",
"Other activities" : "Other activities",
"%1$s and %2$s" : "%1$s and %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s and %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s and %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s and %5$s",
"Education Edition" : "Education Edition",
"Enterprise bundle" : "Enterprise bundle",
"Groupware bundle" : "Groupware bundle",
"Hub bundle" : "Hub bundle",
"Social sharing bundle" : "Social sharing bundle",
"PHP %s or higher is required." : "PHP %s or higher is required.",
"PHP with a version lower than %s is required." : "PHP with a version lower than %s is required.",
"%sbit or higher PHP required." : "%sbit or higher PHP required.",
"The following architectures are supported: %s" : "The following architectures are supported: %s",
"The following databases are supported: %s" : "The following databases are supported: %s",
"The command line tool %s could not be found" : "The command line tool %s could not be found",
"The library %s is not available." : "The library %s is not available.",
"Library %1$s with a version higher than %2$s is required - available version %3$s." : "Library %1$s with a version higher than %2$s is required - available version %3$s.",
"Library %1$s with a version lower than %2$s is required - available version %3$s." : "Library %1$s with a version lower than %2$s is required - available version %3$s.",
"The following platforms are supported: %s" : "The following platforms are supported: %s",
"Server version %s or higher is required." : "Server version %s or higher is required.",
"Server version %s or lower is required." : "Server version %s or lower is required.",
"Logged in account must be an admin, a sub admin or gotten special right to access this setting" : "Logged in account must be an admin, a sub admin or gotten special right to access this setting",
"Logged in account must be an admin or sub admin" : "Logged in account must be an admin or sub admin",
"Logged in account must be an admin" : "Logged in account must be an admin",
"Wiping of device %s has started" : "Wiping of device %s has started",
"Wiping of device »%s« has started" : "Wiping of device »%s« has started",
"»%s« started remote wipe" : "»%s« started remote wipe",
"Device or application »%s« has started the remote wipe process. You will receive another email once the process has finished" : "Device or application »%s« has started the remote wipe process. You will receive another email once the process has finished",
"Wiping of device %s has finished" : "Wiping of device %s has finished",
"Wiping of device »%s« has finished" : "Wiping of device »%s« has finished",
"»%s« finished remote wipe" : "»%s« finished remote wipe",
"Device or application »%s« has finished the remote wipe process." : "Device or application »%s« has finished the remote wipe process.",
"Remote wipe started" : "Remote wipe started",
"A remote wipe was started on device %s" : "A remote wipe was started on device %s",
"Remote wipe finished" : "Remote wipe finished",
"The remote wipe on %s has finished" : "The remote wipe on %s has finished",
"Authentication" : "Authentication",
"Unknown filetype" : "Unknown filetype",
"Invalid image" : "Invalid image",
"Avatar image is not square" : "Avatar image is not square",
"Files" : "Files",
"View profile" : "View profile",
"Local time: %s" : "Local time: %s",
"today" : "today",
"tomorrow" : "tomorrow",
"yesterday" : "yesterday",
"_in %n day_::_in %n days_" : ["in %n day","in %n days"],
"_%n day ago_::_%n days ago_" : ["%n day ago","%n days ago"],
"next month" : "next month",
"last month" : "last month",
"_in %n month_::_in %n months_" : ["in %n month","in %n months"],
"_%n month ago_::_%n months ago_" : ["%n month ago","%n months ago"],
"next year" : "next year",
"last year" : "last year",
"_in %n year_::_in %n years_" : ["in %n year","in %n years"],
"_%n year ago_::_%n years ago_" : ["%n year ago","%n years ago"],
"_in %n hour_::_in %n hours_" : ["in %n hour","in %n hours"],
"_%n hour ago_::_%n hours ago_" : ["%n hour ago","%n hours ago"],
"_in %n minute_::_in %n minutes_" : ["in %n minute","in %n minutes"],
"_%n minute ago_::_%n minutes ago_" : ["%n minute ago","%n minutes ago"],
"in a few seconds" : "in a few seconds",
"seconds ago" : "seconds ago",
"Empty file" : "Empty file",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator.",
"File already exists" : "File already exists",
"Invalid path" : "Invalid path",
"Failed to create file from template" : "Failed to create file from template",
"Templates" : "Templates",
"File name is a reserved word" : "File name is a reserved word",
"File name contains at least one invalid character" : "File name contains at least one invalid character",
"File name is too long" : "File name is too long",
"Dot files are not allowed" : "Dot files are not allowed",
"Empty filename is not allowed" : "Empty filename is not allowed",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "App \"%s\" cannot be installed because appinfo file cannot be read.",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "App \"%s\" cannot be installed. It is not compatible with this version of the server.",
"__language_name__" : "English (British English)",
"This is an automatically sent email, please do not reply." : "This is an automatically sent email, please do not reply.",
"Help" : "Help",
"Appearance and accessibility" : "Appearance and accessibility",
"Apps" : "Apps",
"Personal settings" : "Personal settings",
"Administration settings" : "Administration settings",
"Settings" : "Settings",
"Log out" : "Log out",
"Users" : "Users",
"Email" : "Email",
"Mail %s" : "Mail %s",
"Fediverse" : "Fediverse",
"View %s on the fediverse" : "View %s on the fediverse",
"Phone" : "Phone",
"Call %s" : "Call %s",
"Twitter" : "Twitter",
"View %s on Twitter" : "View %s on Twitter",
"Website" : "Website",
"Visit %s" : "Visit %s",
"Address" : "Address",
"Profile picture" : "Profile picture",
"About" : "About",
"Display name" : "Display name",
"Headline" : "Headline",
"Organisation" : "Organisation",
"Role" : "Role",
"Unknown account" : "Unknown account",
"Additional settings" : "Additional settings",
"Enter the database Login and name for %s" : "Enter the database Login and name for %s",
"Enter the database Login for %s" : "Enter the database Login for %s",
"Enter the database name for %s" : "Enter the database name for %s",
"You cannot use dots in the database name %s" : "You cannot use dots in the database name %s",
"MySQL Login and/or password not valid" : "MySQL Login and/or password not valid",
"You need to enter details of an existing account." : "You need to enter details of an existing account.",
"Oracle connection could not be established" : "Oracle connection could not be established",
"Oracle Login and/or password not valid" : "Oracle Login and/or password not valid",
"PostgreSQL Login and/or password not valid" : "PostgreSQL Login and/or password not valid",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! ",
"For the best results, please consider using a GNU/Linux server instead." : "For the best results, please consider using a GNU/Linux server instead.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir setting has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged.",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP.",
"Set an admin Login." : "Set an admin Login.",
"Set an admin password." : "Set an admin password.",
"Cannot create or write into the data directory %s" : "Cannot create or write into the data directory %s",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Sharing backend %s must implement the interface OCP\\Share_Backend",
"Sharing backend %s not found" : "Sharing backend %s not found",
"Sharing backend for %s not found" : "Sharing backend for %s not found",
"%1$s shared »%2$s« with you and wants to add:" : "%1$s shared »%2$s« with you and wants to add:",
"%1$s shared »%2$s« with you and wants to add" : "%1$s shared »%2$s« with you and wants to add",
"»%s« added a note to a file shared with you" : "»%s« added a note to a file shared with you",
"Open »%s«" : "Open »%s«",
"%1$s via %2$s" : "%1$s via %2$s",
"You are not allowed to share %s" : "You are not allowed to share %s",
"Cannot increase permissions of %s" : "Cannot increase permissions of %s",
"Files cannot be shared with delete permissions" : "Files cannot be shared with delete permissions",
"Files cannot be shared with create permissions" : "Files cannot be shared with create permissions",
"Expiration date is in the past" : "Expiration date is in the past",
"_Cannot set expiration date more than %n day in the future_::_Cannot set expiration date more than %n days in the future_" : ["Cannot set expiration date more than %n day in the future","Cannot set expiration date more than %n days in the future"],
"Sharing is only allowed with group members" : "Sharing is only allowed with group members",
"Sharing %s failed, because this item is already shared with the account %s" : "Sharing %s failed, because this item is already shared with the account %s",
"%1$s shared »%2$s« with you" : "%1$s shared »%2$s« with you",
"%1$s shared »%2$s« with you." : "%1$s shared »%2$s« with you.",
"Click the button below to open it." : "Click the button below to open it.",
"The requested share does not exist anymore" : "The requested share does not exist any more",
"The requested share comes from a disabled user" : "The requested share comes from a disabled user",
"The user was not created because the user limit has been reached. Check your notifications to learn more." : "The user was not created because the user limit has been reached. Check your notifications to learn more.",
"Could not find category \"%s\"" : "Could not find category \"%s\"",
"Sunday" : "Sunday",
"Monday" : "Monday",
"Tuesday" : "Tuesday",
"Wednesday" : "Wednesday",
"Thursday" : "Thursday",
"Friday" : "Friday",
"Saturday" : "Saturday",
"Sun." : "Sun.",
"Mon." : "Mon.",
"Tue." : "Tue.",
"Wed." : "Wed.",
"Thu." : "Thu.",
"Fri." : "Fri.",
"Sat." : "Sat.",
"Su" : "Su",
"Mo" : "Mo",
"Tu" : "Tu",
"We" : "We",
"Th" : "Th",
"Fr" : "Fr",
"Sa" : "Sa",
"January" : "January",
"February" : "February",
"March" : "March",
"April" : "April",
"May" : "May",
"June" : "June",
"July" : "July",
"August" : "August",
"September" : "September",
"October" : "October",
"November" : "November",
"December" : "December",
"Jan." : "Jan.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Apr.",
"May." : "May.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Aug.",
"Sep." : "Sep.",
"Oct." : "Oct.",
"Nov." : "Nov.",
"Dec." : "Dec.",
"A valid password must be provided" : "A valid password must be provided",
"The Login is already being used" : "The Login is already being used",
"Could not create account" : "Could not create account",
"Only the following characters are allowed in an Login: \"a-z\", \"A-Z\", \"0-9\", spaces and \"_.@-'\"" : "Only the following characters are allowed in an Login: \"a-z\", \"A-Z\", \"0-9\", spaces and \"_.@-'\"",
"A valid Login must be provided" : "A valid Login must be provided",
"Login contains whitespace at the beginning or at the end" : "Login contains whitespace at the beginning or at the end",
"Login must not consist of dots only" : "Login must not consist of dots only",
"Login is invalid because files already exist for this user" : "Login is invalid because files already exist for this user",
"Account disabled" : "Account disabled",
"Login canceled by app" : "Login cancelled by app",
"App \"%1$s\" cannot be installed because the following dependencies are not fulfilled: %2$s" : "App \"%1$s\" cannot be installed because the following dependencies are not fulfilled: %2$s",
"a safe home for all your data" : "a safe home for all your data",
"File is currently busy, please try again later" : "File is currently busy, please try again later",
"Cannot download file" : "Cannot download file",
"Application is not enabled" : "Application is not enabled",
"Authentication error" : "Authentication error",
"Token expired. Please reload page." : "Token expired. Please reload page.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "No database drivers (sqlite, mysql, or postgresql) installed.",
"Cannot write into \"config\" directory." : "Cannot write into \"config\" directory.",
"This can usually be fixed by giving the web server write access to the config directory. See %s" : "This can usually be fixed by giving the web server write access to the config directory. See %s",
"Or, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it. See %s" : "Or, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it. See %s",
"Cannot write into \"apps\" directory." : "Cannot write into \"apps\" directory.",
"This can usually be fixed by giving the web server write access to the apps directory or disabling the App Store in the config file." : "This can usually be fixed by giving the web server write access to the apps directory or disabling the App Store in the config file.",
"Cannot create \"data\" directory." : "Cannot create \"data\" directory.",
"This can usually be fixed by giving the web server write access to the root directory. See %s" : "This can usually be fixed by giving the web server write access to the root directory. See %s",
"Permissions can usually be fixed by giving the web server write access to the root directory. See %s." : "Permissions can usually be fixed by giving the web server write access to the root directory. See %s.",
"Your data directory is not writable." : "Your data directory is not writable.",
"Setting locale to %s failed." : "Setting locale to %s failed.",
"Please install one of these locales on your system and restart your web server." : "Please install one of these locales on your system and restart your web server.",
"PHP module %s not installed." : "PHP module %s not installed.",
"Please ask your server administrator to install the module." : "Please ask your server administrator to install the module.",
"PHP setting \"%s\" is not set to \"%s\"." : "PHP setting \"%s\" is not set to \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "Adjusting this setting in php.ini will allow Nextcloud to run",
"<code>mbstring.func_overload</code> is set to <code>%s</code> instead of the expected value <code>0</code>." : "<code>mbstring.func_overload</code> is set to <code>%s</code> instead of the expected value <code>0</code>.",
"To fix this issue set <code>mbstring.func_overload</code> to <code>0</code> in your php.ini." : "To fix this issue set <code>mbstring.func_overload</code> to <code>0</code> in your php.ini.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "PHP modules have been installed, but they are still listed as missing?",
"Please ask your server administrator to restart the web server." : "Please ask your server administrator to restart the web server.",
"The required %s config variable is not configured in the config.php file." : "The required %s config variable is not configured in the config.php file.",
"Please ask your server administrator to check the Nextcloud configuration." : "Please ask your server administrator to check the Nextcloud configuration.",
"Your data directory is readable by other people." : "Your data directory is readable by other people.",
"Please change the permissions to 0770 so that the directory cannot be listed by other people." : "Please change the permissions to 0770 so that the directory cannot be listed by other people.",
"Your data directory must be an absolute path." : "Your data directory must be an absolute path.",
"Check the value of \"datadirectory\" in your configuration." : "Check the value of \"datadirectory\" in your configuration.",
"Your data directory is invalid." : "Your data directory is invalid.",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Ensure there is a file called \".ocdata\" in the root of the data directory.",
"Action \"%s\" not supported or implemented." : "Action \"%s\" not supported or implemented.",
"Authentication failed, wrong token or provider ID given" : "Authentication failed, wrong token or provider ID given",
"Parameters missing in order to complete the request. Missing Parameters: \"%s\"" : "Parameters missing in order to complete the request. Missing Parameters: \"%s\"",
"ID \"%1$s\" already used by cloud federation provider \"%2$s\"" : "ID \"%1$s\" already used by cloud federation provider \"%2$s\"",
"Cloud Federation Provider with ID: \"%s\" does not exist." : "Cloud Federation Provider with ID: \"%s\" does not exist.",
"Could not obtain lock type %d on \"%s\"." : "Could not obtain lock type %d on \"%s\".",
"Storage unauthorized. %s" : "Storage unauthorised. %s",
"Storage incomplete configuration. %s" : "Storage incomplete configuration. %s",
"Storage connection error. %s" : "Storage connection error. %s",
"Storage is temporarily not available" : "Storage is temporarily not available",
"Storage connection timeout. %s" : "Storage connection timeout. %s",
"Free prompt" : "Free prompt",
"Runs an arbitrary prompt through the language model." : "Runs an arbitrary prompt through the language model.",
"Generate headline" : "Generate headline",
"Generates a possible headline for a text." : "Generates a possible headline for a text.",
"Summarize" : "Summarise",
"Summarizes text by reducing its length without losing key information." : "Summarizes text by reducing its length without losing key information.",
"Extract topics" : "Extract topics",
"Extracts topics from a text and outputs them separated by commas." : "Extracts topics from a text and outputs them separated by commas.",
"The files of the app %1$s were not replaced correctly. Make sure it is a version compatible with the server." : "The files of the app %1$s were not replaced correctly. Make sure it is a version compatible with the server.",
"404" : "404",
"Logged in user must be an admin, a sub admin or gotten special right to access this setting" : "Logged in user must be an admin, a sub-admin or has special right to access this setting",
"Logged in user must be an admin or sub admin" : "Logged in user must be an admin or sub admin",
"Logged in user must be an admin" : "Logged in user must be an admin",
"Full name" : "Full name",
"Unknown user" : "Unknown user",
"Enter the database username and name for %s" : "Enter the database username and name for %s",
"Enter the database username for %s" : "Enter the database username for %s",
"MySQL username and/or password not valid" : "MySQL username and/or password not valid",
"Oracle username and/or password not valid" : "Oracle username and/or password not valid",
"PostgreSQL username and/or password not valid" : "PostgreSQL username and/or password not valid",
"Set an admin username." : "Set an admin username.",
"Sharing %s failed, because this item is already shared with user %s" : "Sharing %s failed, because this item is already shared with user %s",
"The username is already being used" : "The username is already being used",
"Could not create user" : "Could not create user",
"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", spaces and \"_.@-'\"" : "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", spaces and \"_.@-'\"",
"A valid username must be provided" : "A valid username must be provided",
"Username contains whitespace at the beginning or at the end" : "Username contains whitespace at the beginning or at the end",
"Username must not consist of dots only" : "Username must not consist of dots only",
"Username is invalid because files already exist for this user" : "Username is invalid because files already exist for this user",
"User disabled" : "User disabled",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "libxml2 2.7.0 is at least required. Currently %s is installed.",
"To fix this issue update your libxml2 version and restart your web server." : "To fix this issue update your libxml2 version and restart your web server.",
"PostgreSQL >= 9 required." : "PostgreSQL >= 9 required.",
"Please upgrade your database version." : "Please upgrade your database version.",
"Your data directory is readable by other users." : "Your data directory is readable by other users.",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Please change the permissions to 0770 so that the directory cannot be listed by other users."
},
"nplurals=2; plural=(n != 1);");
+299
View File
@@ -0,0 +1,299 @@
{ "translations": {
"Cannot write into \"config\" directory!" : "Cannot write into \"config\" directory!",
"This can usually be fixed by giving the web server write access to the config directory." : "This can usually be fixed by giving the web server write access to the config directory.",
"But, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it." : "But, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it.",
"See %s" : "See %s",
"Application %1$s is not present or has a non-compatible version with this server. Please check the apps directory." : "Application %1$s is not present or has a non-compatible version with this server. Please check the apps directory.",
"Sample configuration detected" : "Sample configuration detected",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php",
"The page could not be found on the server." : "The page could not be found on the server.",
"%s email verification" : "%s email verification",
"Email verification" : "Email verification",
"Click the following button to confirm your email." : "Click the following button to confirm your email.",
"Click the following link to confirm your email." : "Click the following link to confirm your email.",
"Confirm your email" : "Confirm your email",
"Other activities" : "Other activities",
"%1$s and %2$s" : "%1$s and %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s and %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s and %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s and %5$s",
"Education Edition" : "Education Edition",
"Enterprise bundle" : "Enterprise bundle",
"Groupware bundle" : "Groupware bundle",
"Hub bundle" : "Hub bundle",
"Social sharing bundle" : "Social sharing bundle",
"PHP %s or higher is required." : "PHP %s or higher is required.",
"PHP with a version lower than %s is required." : "PHP with a version lower than %s is required.",
"%sbit or higher PHP required." : "%sbit or higher PHP required.",
"The following architectures are supported: %s" : "The following architectures are supported: %s",
"The following databases are supported: %s" : "The following databases are supported: %s",
"The command line tool %s could not be found" : "The command line tool %s could not be found",
"The library %s is not available." : "The library %s is not available.",
"Library %1$s with a version higher than %2$s is required - available version %3$s." : "Library %1$s with a version higher than %2$s is required - available version %3$s.",
"Library %1$s with a version lower than %2$s is required - available version %3$s." : "Library %1$s with a version lower than %2$s is required - available version %3$s.",
"The following platforms are supported: %s" : "The following platforms are supported: %s",
"Server version %s or higher is required." : "Server version %s or higher is required.",
"Server version %s or lower is required." : "Server version %s or lower is required.",
"Logged in account must be an admin, a sub admin or gotten special right to access this setting" : "Logged in account must be an admin, a sub admin or gotten special right to access this setting",
"Logged in account must be an admin or sub admin" : "Logged in account must be an admin or sub admin",
"Logged in account must be an admin" : "Logged in account must be an admin",
"Wiping of device %s has started" : "Wiping of device %s has started",
"Wiping of device »%s« has started" : "Wiping of device »%s« has started",
"»%s« started remote wipe" : "»%s« started remote wipe",
"Device or application »%s« has started the remote wipe process. You will receive another email once the process has finished" : "Device or application »%s« has started the remote wipe process. You will receive another email once the process has finished",
"Wiping of device %s has finished" : "Wiping of device %s has finished",
"Wiping of device »%s« has finished" : "Wiping of device »%s« has finished",
"»%s« finished remote wipe" : "»%s« finished remote wipe",
"Device or application »%s« has finished the remote wipe process." : "Device or application »%s« has finished the remote wipe process.",
"Remote wipe started" : "Remote wipe started",
"A remote wipe was started on device %s" : "A remote wipe was started on device %s",
"Remote wipe finished" : "Remote wipe finished",
"The remote wipe on %s has finished" : "The remote wipe on %s has finished",
"Authentication" : "Authentication",
"Unknown filetype" : "Unknown filetype",
"Invalid image" : "Invalid image",
"Avatar image is not square" : "Avatar image is not square",
"Files" : "Files",
"View profile" : "View profile",
"Local time: %s" : "Local time: %s",
"today" : "today",
"tomorrow" : "tomorrow",
"yesterday" : "yesterday",
"_in %n day_::_in %n days_" : ["in %n day","in %n days"],
"_%n day ago_::_%n days ago_" : ["%n day ago","%n days ago"],
"next month" : "next month",
"last month" : "last month",
"_in %n month_::_in %n months_" : ["in %n month","in %n months"],
"_%n month ago_::_%n months ago_" : ["%n month ago","%n months ago"],
"next year" : "next year",
"last year" : "last year",
"_in %n year_::_in %n years_" : ["in %n year","in %n years"],
"_%n year ago_::_%n years ago_" : ["%n year ago","%n years ago"],
"_in %n hour_::_in %n hours_" : ["in %n hour","in %n hours"],
"_%n hour ago_::_%n hours ago_" : ["%n hour ago","%n hours ago"],
"_in %n minute_::_in %n minutes_" : ["in %n minute","in %n minutes"],
"_%n minute ago_::_%n minutes ago_" : ["%n minute ago","%n minutes ago"],
"in a few seconds" : "in a few seconds",
"seconds ago" : "seconds ago",
"Empty file" : "Empty file",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator.",
"File already exists" : "File already exists",
"Invalid path" : "Invalid path",
"Failed to create file from template" : "Failed to create file from template",
"Templates" : "Templates",
"File name is a reserved word" : "File name is a reserved word",
"File name contains at least one invalid character" : "File name contains at least one invalid character",
"File name is too long" : "File name is too long",
"Dot files are not allowed" : "Dot files are not allowed",
"Empty filename is not allowed" : "Empty filename is not allowed",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "App \"%s\" cannot be installed because appinfo file cannot be read.",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "App \"%s\" cannot be installed. It is not compatible with this version of the server.",
"__language_name__" : "English (British English)",
"This is an automatically sent email, please do not reply." : "This is an automatically sent email, please do not reply.",
"Help" : "Help",
"Appearance and accessibility" : "Appearance and accessibility",
"Apps" : "Apps",
"Personal settings" : "Personal settings",
"Administration settings" : "Administration settings",
"Settings" : "Settings",
"Log out" : "Log out",
"Users" : "Users",
"Email" : "Email",
"Mail %s" : "Mail %s",
"Fediverse" : "Fediverse",
"View %s on the fediverse" : "View %s on the fediverse",
"Phone" : "Phone",
"Call %s" : "Call %s",
"Twitter" : "Twitter",
"View %s on Twitter" : "View %s on Twitter",
"Website" : "Website",
"Visit %s" : "Visit %s",
"Address" : "Address",
"Profile picture" : "Profile picture",
"About" : "About",
"Display name" : "Display name",
"Headline" : "Headline",
"Organisation" : "Organisation",
"Role" : "Role",
"Unknown account" : "Unknown account",
"Additional settings" : "Additional settings",
"Enter the database Login and name for %s" : "Enter the database Login and name for %s",
"Enter the database Login for %s" : "Enter the database Login for %s",
"Enter the database name for %s" : "Enter the database name for %s",
"You cannot use dots in the database name %s" : "You cannot use dots in the database name %s",
"MySQL Login and/or password not valid" : "MySQL Login and/or password not valid",
"You need to enter details of an existing account." : "You need to enter details of an existing account.",
"Oracle connection could not be established" : "Oracle connection could not be established",
"Oracle Login and/or password not valid" : "Oracle Login and/or password not valid",
"PostgreSQL Login and/or password not valid" : "PostgreSQL Login and/or password not valid",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! ",
"For the best results, please consider using a GNU/Linux server instead." : "For the best results, please consider using a GNU/Linux server instead.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir setting has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged.",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP.",
"Set an admin Login." : "Set an admin Login.",
"Set an admin password." : "Set an admin password.",
"Cannot create or write into the data directory %s" : "Cannot create or write into the data directory %s",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Sharing backend %s must implement the interface OCP\\Share_Backend",
"Sharing backend %s not found" : "Sharing backend %s not found",
"Sharing backend for %s not found" : "Sharing backend for %s not found",
"%1$s shared »%2$s« with you and wants to add:" : "%1$s shared »%2$s« with you and wants to add:",
"%1$s shared »%2$s« with you and wants to add" : "%1$s shared »%2$s« with you and wants to add",
"»%s« added a note to a file shared with you" : "»%s« added a note to a file shared with you",
"Open »%s«" : "Open »%s«",
"%1$s via %2$s" : "%1$s via %2$s",
"You are not allowed to share %s" : "You are not allowed to share %s",
"Cannot increase permissions of %s" : "Cannot increase permissions of %s",
"Files cannot be shared with delete permissions" : "Files cannot be shared with delete permissions",
"Files cannot be shared with create permissions" : "Files cannot be shared with create permissions",
"Expiration date is in the past" : "Expiration date is in the past",
"_Cannot set expiration date more than %n day in the future_::_Cannot set expiration date more than %n days in the future_" : ["Cannot set expiration date more than %n day in the future","Cannot set expiration date more than %n days in the future"],
"Sharing is only allowed with group members" : "Sharing is only allowed with group members",
"Sharing %s failed, because this item is already shared with the account %s" : "Sharing %s failed, because this item is already shared with the account %s",
"%1$s shared »%2$s« with you" : "%1$s shared »%2$s« with you",
"%1$s shared »%2$s« with you." : "%1$s shared »%2$s« with you.",
"Click the button below to open it." : "Click the button below to open it.",
"The requested share does not exist anymore" : "The requested share does not exist any more",
"The requested share comes from a disabled user" : "The requested share comes from a disabled user",
"The user was not created because the user limit has been reached. Check your notifications to learn more." : "The user was not created because the user limit has been reached. Check your notifications to learn more.",
"Could not find category \"%s\"" : "Could not find category \"%s\"",
"Sunday" : "Sunday",
"Monday" : "Monday",
"Tuesday" : "Tuesday",
"Wednesday" : "Wednesday",
"Thursday" : "Thursday",
"Friday" : "Friday",
"Saturday" : "Saturday",
"Sun." : "Sun.",
"Mon." : "Mon.",
"Tue." : "Tue.",
"Wed." : "Wed.",
"Thu." : "Thu.",
"Fri." : "Fri.",
"Sat." : "Sat.",
"Su" : "Su",
"Mo" : "Mo",
"Tu" : "Tu",
"We" : "We",
"Th" : "Th",
"Fr" : "Fr",
"Sa" : "Sa",
"January" : "January",
"February" : "February",
"March" : "March",
"April" : "April",
"May" : "May",
"June" : "June",
"July" : "July",
"August" : "August",
"September" : "September",
"October" : "October",
"November" : "November",
"December" : "December",
"Jan." : "Jan.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Apr.",
"May." : "May.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Aug.",
"Sep." : "Sep.",
"Oct." : "Oct.",
"Nov." : "Nov.",
"Dec." : "Dec.",
"A valid password must be provided" : "A valid password must be provided",
"The Login is already being used" : "The Login is already being used",
"Could not create account" : "Could not create account",
"Only the following characters are allowed in an Login: \"a-z\", \"A-Z\", \"0-9\", spaces and \"_.@-'\"" : "Only the following characters are allowed in an Login: \"a-z\", \"A-Z\", \"0-9\", spaces and \"_.@-'\"",
"A valid Login must be provided" : "A valid Login must be provided",
"Login contains whitespace at the beginning or at the end" : "Login contains whitespace at the beginning or at the end",
"Login must not consist of dots only" : "Login must not consist of dots only",
"Login is invalid because files already exist for this user" : "Login is invalid because files already exist for this user",
"Account disabled" : "Account disabled",
"Login canceled by app" : "Login cancelled by app",
"App \"%1$s\" cannot be installed because the following dependencies are not fulfilled: %2$s" : "App \"%1$s\" cannot be installed because the following dependencies are not fulfilled: %2$s",
"a safe home for all your data" : "a safe home for all your data",
"File is currently busy, please try again later" : "File is currently busy, please try again later",
"Cannot download file" : "Cannot download file",
"Application is not enabled" : "Application is not enabled",
"Authentication error" : "Authentication error",
"Token expired. Please reload page." : "Token expired. Please reload page.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "No database drivers (sqlite, mysql, or postgresql) installed.",
"Cannot write into \"config\" directory." : "Cannot write into \"config\" directory.",
"This can usually be fixed by giving the web server write access to the config directory. See %s" : "This can usually be fixed by giving the web server write access to the config directory. See %s",
"Or, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it. See %s" : "Or, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it. See %s",
"Cannot write into \"apps\" directory." : "Cannot write into \"apps\" directory.",
"This can usually be fixed by giving the web server write access to the apps directory or disabling the App Store in the config file." : "This can usually be fixed by giving the web server write access to the apps directory or disabling the App Store in the config file.",
"Cannot create \"data\" directory." : "Cannot create \"data\" directory.",
"This can usually be fixed by giving the web server write access to the root directory. See %s" : "This can usually be fixed by giving the web server write access to the root directory. See %s",
"Permissions can usually be fixed by giving the web server write access to the root directory. See %s." : "Permissions can usually be fixed by giving the web server write access to the root directory. See %s.",
"Your data directory is not writable." : "Your data directory is not writable.",
"Setting locale to %s failed." : "Setting locale to %s failed.",
"Please install one of these locales on your system and restart your web server." : "Please install one of these locales on your system and restart your web server.",
"PHP module %s not installed." : "PHP module %s not installed.",
"Please ask your server administrator to install the module." : "Please ask your server administrator to install the module.",
"PHP setting \"%s\" is not set to \"%s\"." : "PHP setting \"%s\" is not set to \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "Adjusting this setting in php.ini will allow Nextcloud to run",
"<code>mbstring.func_overload</code> is set to <code>%s</code> instead of the expected value <code>0</code>." : "<code>mbstring.func_overload</code> is set to <code>%s</code> instead of the expected value <code>0</code>.",
"To fix this issue set <code>mbstring.func_overload</code> to <code>0</code> in your php.ini." : "To fix this issue set <code>mbstring.func_overload</code> to <code>0</code> in your php.ini.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "PHP modules have been installed, but they are still listed as missing?",
"Please ask your server administrator to restart the web server." : "Please ask your server administrator to restart the web server.",
"The required %s config variable is not configured in the config.php file." : "The required %s config variable is not configured in the config.php file.",
"Please ask your server administrator to check the Nextcloud configuration." : "Please ask your server administrator to check the Nextcloud configuration.",
"Your data directory is readable by other people." : "Your data directory is readable by other people.",
"Please change the permissions to 0770 so that the directory cannot be listed by other people." : "Please change the permissions to 0770 so that the directory cannot be listed by other people.",
"Your data directory must be an absolute path." : "Your data directory must be an absolute path.",
"Check the value of \"datadirectory\" in your configuration." : "Check the value of \"datadirectory\" in your configuration.",
"Your data directory is invalid." : "Your data directory is invalid.",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Ensure there is a file called \".ocdata\" in the root of the data directory.",
"Action \"%s\" not supported or implemented." : "Action \"%s\" not supported or implemented.",
"Authentication failed, wrong token or provider ID given" : "Authentication failed, wrong token or provider ID given",
"Parameters missing in order to complete the request. Missing Parameters: \"%s\"" : "Parameters missing in order to complete the request. Missing Parameters: \"%s\"",
"ID \"%1$s\" already used by cloud federation provider \"%2$s\"" : "ID \"%1$s\" already used by cloud federation provider \"%2$s\"",
"Cloud Federation Provider with ID: \"%s\" does not exist." : "Cloud Federation Provider with ID: \"%s\" does not exist.",
"Could not obtain lock type %d on \"%s\"." : "Could not obtain lock type %d on \"%s\".",
"Storage unauthorized. %s" : "Storage unauthorised. %s",
"Storage incomplete configuration. %s" : "Storage incomplete configuration. %s",
"Storage connection error. %s" : "Storage connection error. %s",
"Storage is temporarily not available" : "Storage is temporarily not available",
"Storage connection timeout. %s" : "Storage connection timeout. %s",
"Free prompt" : "Free prompt",
"Runs an arbitrary prompt through the language model." : "Runs an arbitrary prompt through the language model.",
"Generate headline" : "Generate headline",
"Generates a possible headline for a text." : "Generates a possible headline for a text.",
"Summarize" : "Summarise",
"Summarizes text by reducing its length without losing key information." : "Summarizes text by reducing its length without losing key information.",
"Extract topics" : "Extract topics",
"Extracts topics from a text and outputs them separated by commas." : "Extracts topics from a text and outputs them separated by commas.",
"The files of the app %1$s were not replaced correctly. Make sure it is a version compatible with the server." : "The files of the app %1$s were not replaced correctly. Make sure it is a version compatible with the server.",
"404" : "404",
"Logged in user must be an admin, a sub admin or gotten special right to access this setting" : "Logged in user must be an admin, a sub-admin or has special right to access this setting",
"Logged in user must be an admin or sub admin" : "Logged in user must be an admin or sub admin",
"Logged in user must be an admin" : "Logged in user must be an admin",
"Full name" : "Full name",
"Unknown user" : "Unknown user",
"Enter the database username and name for %s" : "Enter the database username and name for %s",
"Enter the database username for %s" : "Enter the database username for %s",
"MySQL username and/or password not valid" : "MySQL username and/or password not valid",
"Oracle username and/or password not valid" : "Oracle username and/or password not valid",
"PostgreSQL username and/or password not valid" : "PostgreSQL username and/or password not valid",
"Set an admin username." : "Set an admin username.",
"Sharing %s failed, because this item is already shared with user %s" : "Sharing %s failed, because this item is already shared with user %s",
"The username is already being used" : "The username is already being used",
"Could not create user" : "Could not create user",
"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", spaces and \"_.@-'\"" : "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", spaces and \"_.@-'\"",
"A valid username must be provided" : "A valid username must be provided",
"Username contains whitespace at the beginning or at the end" : "Username contains whitespace at the beginning or at the end",
"Username must not consist of dots only" : "Username must not consist of dots only",
"Username is invalid because files already exist for this user" : "Username is invalid because files already exist for this user",
"User disabled" : "User disabled",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "libxml2 2.7.0 is at least required. Currently %s is installed.",
"To fix this issue update your libxml2 version and restart your web server." : "To fix this issue update your libxml2 version and restart your web server.",
"PostgreSQL >= 9 required." : "PostgreSQL >= 9 required.",
"Please upgrade your database version." : "Please upgrade your database version.",
"Your data directory is readable by other users." : "Your data directory is readable by other users.",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Please change the permissions to 0770 so that the directory cannot be listed by other users."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}
+214
View File
@@ -0,0 +1,214 @@
OC.L10N.register(
"lib",
{
"Cannot write into \"config\" directory!" : "Ne povas skribi en la dosierujon „config“!",
"See %s" : "Vidi %s",
"Sample configuration detected" : "Ekzempla agordo trovita",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Ekzempla agordo estis kopiita en via sistemo. Tio povas paneigi vian instalaĵon, kaj ne estas subtenata. Bv. legi la dokumentaron antaŭ ol fari ŝanĝojn en config.php",
"The page could not be found on the server." : "La paĝo ne povis esti trovita en la servilo.",
"Other activities" : "Alia aktivado",
"%1$s and %2$s" : "%1$s kaj %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s kaj %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s kaj %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s kaj %5$s",
"Education Edition" : "Eldono por edukado",
"Enterprise bundle" : "Aplikaĵa kuniĝo por firmao",
"Groupware bundle" : "Aplikaĵa kuniĝo por grupa kunlaborado",
"Hub bundle" : "Koncentrita pakaĵo",
"Social sharing bundle" : "Aplikaĵa kuniĝo por socia kuhavigo",
"PHP %s or higher is required." : "PHP %s aŭ pli alta necesas.",
"PHP with a version lower than %s is required." : "Necesas pli malalta eldono de PHP ol %s.",
"%sbit or higher PHP required." : "PHP je %sbitoj aŭ pli alta necesas.",
"The following architectures are supported: %s" : "La sekvaj arkitekturoj estas subtenataj: %s",
"The following databases are supported: %s" : "La sekvaj datumbazoj estas subtenataj: %s",
"The command line tool %s could not be found" : "La komandlinia ilo %s ne troviĝis",
"The library %s is not available." : "La biblioteko %s ne haveblas.",
"Library %1$s with a version higher than %2$s is required - available version %3$s." : "Biblioteko %1$s kun versio pli ol %2$s bezoniĝas. Nuna versio estas %3$s.",
"Library %1$s with a version lower than %2$s is required - available version %3$s." : "Biblioteko %1$s kun versio malpli ol %2$s bezoniĝas. Nuna versio estas %3$s.",
"The following platforms are supported: %s" : "La sekvaj platformoj estas subtenataj: %s",
"Server version %s or higher is required." : "Servilo kun versio %s aŭ pli bezoniĝas.",
"Server version %s or lower is required." : "Servilo kun versio %s aŭ malpli bezoniĝas.",
"Wiping of device %s has started" : "Forviŝado de la aparato %s komencis",
"Wiping of device »%s« has started" : "Forviŝado de la aparato „%s“ komencis",
"»%s« started remote wipe" : "„%s“ komencis foran forviŝadon",
"Device or application »%s« has started the remote wipe process. You will receive another email once the process has finished" : "La aparato aŭ aplikaĵo „%s“ komencis la taskon de fora forviŝado. Vi ricevos plian retmesaĝon, kiam la tasko finiĝos",
"Wiping of device %s has finished" : "La forviŝado de la aparato %s finiĝis",
"Wiping of device »%s« has finished" : "La forviŝado de la aparato „%s“ finiĝis",
"»%s« finished remote wipe" : "„%s“ finis la foran forviŝadon",
"Device or application »%s« has finished the remote wipe process." : "La aparato aŭ aplikaĵo „%s“ finis la taskon de fora forviŝado.",
"Remote wipe started" : "Defora forviŝado komenciĝis",
"A remote wipe was started on device %s" : "Defora forviŝado komenciĝis ĉe aparato %s",
"Remote wipe finished" : "Defora forviŝado finis",
"The remote wipe on %s has finished" : "La defora forviŝado ĉe %s finis",
"Authentication" : "Aŭtentigo",
"Unknown filetype" : "Nekonata dosiertipo",
"Invalid image" : "Nevalida bildo",
"Avatar image is not square" : "Avatarbildo ne estas kvadrata",
"Files" : "Dosieroj",
"View profile" : "Vidi profilon",
"today" : "hodiaŭ",
"tomorrow" : "morgaŭ",
"yesterday" : "hieraŭ",
"_in %n day_::_in %n days_" : ["post %n tago","post %n tagoj"],
"_%n day ago_::_%n days ago_" : ["antaŭ %n tago","antaŭ %n tagoj"],
"next month" : "venontmonate",
"last month" : "lastmonate",
"_in %n month_::_in %n months_" : ["post %n monato","post %n monatoj"],
"_%n month ago_::_%n months ago_" : ["antaŭ %n monato","antaŭ %n monatoj"],
"next year" : "venontjare",
"last year" : "lastjare",
"_in %n year_::_in %n years_" : ["post %n jaro","post %n jaroj"],
"_%n year ago_::_%n years ago_" : ["antaŭ %n jaro","antaŭ %n jaroj"],
"_in %n hour_::_in %n hours_" : ["post %n horo","post %n horoj"],
"_%n hour ago_::_%n hours ago_" : ["antaŭ %n horo","antaŭ %n horoj"],
"_in %n minute_::_in %n minutes_" : ["post %n minuto","post %n minutoj"],
"_%n minute ago_::_%n minutes ago_" : ["antaŭ %n minuto","antaŭ %n minutoj"],
"in a few seconds" : "post kelkaj sekundoj",
"seconds ago" : "antaŭ kelkaj sekundoj",
"Empty file" : "Malplena dosiero",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "Modulo kun identigilo %s ne ekzistas. Bv. ŝalti ĝin en la aplikaĵa agordo aŭ kontakti vian administranton.",
"File already exists" : "La dosiero jam ekzistas",
"Templates" : "Ŝablonoj",
"File name is a reserved word" : "Dosiernomo estas rezervita vorto",
"File name contains at least one invalid character" : "Dosiernomo enhavas almenaŭ unu nevalidan signon",
"File name is too long" : "La dosiernomo estas tro longa",
"Dot files are not allowed" : "Dosiernomo, kiu komenciĝas per punkto, ne estas permesata",
"Empty filename is not allowed" : "Malplena dosiernomo ne estas permesata",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "La aplikaĵo „%s“ ne instaleblas, ĉar ties dosiero „appinfo“ ne legeblis.",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "La aplikaĵo „%s“ ne instaleblas, ĉar ĝi ne kongruas kun tiu servila versio.",
"__language_name__" : "Esperanto",
"This is an automatically sent email, please do not reply." : "Tio estas aŭtomate sendita retpoŝtmesaĝo; bv. ne respondi.",
"Help" : "Helpo",
"Apps" : "Aplikaĵoj",
"Settings" : "Agordo",
"Log out" : "Elsaluti",
"Users" : "Uzantoj",
"Email" : "Retpoŝtadreso",
"Phone" : "Telefono",
"Twitter" : "Twitter",
"Website" : "Retejo",
"Address" : "Adreso",
"Profile picture" : "Profila bildo",
"About" : "Pri",
"Display name" : "Vidiga nomo",
"Additional settings" : "Plia agordo",
"You need to enter details of an existing account." : "Vi entajpu detalojn pri ekzistanta konto.",
"Oracle connection could not be established" : "Konekto al Oracle ne povis stariĝi",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "MacOS X ne estas subtenata kaj %s ne bone funkcios ĉe ĝi. Uzu ĝin je via risko!",
"For the best results, please consider using a GNU/Linux server instead." : "Por pli bona funkciado, bv. pripensi uzi GNU-Linuksan servilon anstataŭe.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Ŝajnas, ke tiu servilo %s uzas 32-bitan PHP-version, kaj ke la agordo „open_basedir“ ekzistas. Tio kaŭzos problemojn pri dosieroj pli grandaj ol 4 GB, kaj do estas tre malrekomendita.",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Bv. forigi la agordon „open_basedir“ de via php.ini, aŭ uzu 64-bitan version de PHP.",
"Set an admin password." : "Agordi pasvorton de administranto.",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Kunhava interna servo %s devas realigi la interfacon „OCP\\Share_Backend“",
"Sharing backend %s not found" : "Kunhava interna servo %s ne troviĝas",
"Sharing backend for %s not found" : "Kunhava interna servo por %s ne troviĝas",
"%1$s shared »%2$s« with you and wants to add:" : "%1$s kunhavigis „%2$s“ kun vi kaj volas aldoni:",
"%1$s shared »%2$s« with you and wants to add" : "%1$s kunhavigis „%2$s“ kun vi kaj volas aldoni",
"»%s« added a note to a file shared with you" : "„%s“ aldonis noton al dosiero kunhavigita kun vi",
"Open »%s«" : "Malfermi „%s“",
"%1$s via %2$s" : "%1$s pere de %2$s",
"You are not allowed to share %s" : "Vi ne permesatas kunhavigi %s",
"Cannot increase permissions of %s" : "Ne eblas pliigi permesojn de %s",
"Expiration date is in the past" : "Limdato troviĝas en la estinteco",
"%1$s shared »%2$s« with you" : "%1$s kunhavigis „%2$s“ kun vi",
"%1$s shared »%2$s« with you." : "%1$s kunhavigis „%2$s“ kun vi.",
"Click the button below to open it." : "Alklaku la butonon ĉi-sube por malfermi ĝin.",
"The requested share does not exist anymore" : "La petita kunhavo ne plu ekzistas",
"Could not find category \"%s\"" : "Ne troviĝis kategorio „%s“",
"Sunday" : "dimanĉo",
"Monday" : "lundo",
"Tuesday" : "mardo",
"Wednesday" : "merkredo",
"Thursday" : "ĵaŭdo",
"Friday" : "vendredo",
"Saturday" : "sabato",
"Sun." : "dim.",
"Mon." : "lun.",
"Tue." : "mar.",
"Wed." : "mer.",
"Thu." : "ĵaŭ.",
"Fri." : "ven.",
"Sat." : "sab.",
"Su" : "Di",
"Mo" : "Lu",
"Tu" : "Ma",
"We" : "Me",
"Th" : "Ĵa",
"Fr" : "Ve",
"Sa" : "Sa",
"January" : "Januaro",
"February" : "Februaro",
"March" : "Marto",
"April" : "Aprilo",
"May" : "Majo",
"June" : "Junio",
"July" : "Julio",
"August" : "Aŭgusto",
"September" : "Septembro",
"October" : "Oktobro",
"November" : "Novembro",
"December" : "Decembro",
"Jan." : "Jan.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Apr.",
"May." : "Maj.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Aŭg.",
"Sep." : "Sep.",
"Oct." : "Okt.",
"Nov." : "Nov.",
"Dec." : "Dec.",
"A valid password must be provided" : "Valida pasvorto devas esti provizita",
"Login canceled by app" : "Ensaluto estis nuligita de aplikaĵo",
"App \"%1$s\" cannot be installed because the following dependencies are not fulfilled: %2$s" : "La aplikaĵo „%1$s“ ne instaliĝas, ĉar la jenaj dependecoj ne plenumiĝas: %2$s",
"a safe home for all your data" : "sekura hejmo por ĉiuj viaj datumoj",
"File is currently busy, please try again later" : "La dosiero estas nun okupita, bv. reprovi poste",
"Application is not enabled" : "La aplikaĵo ne estas ŝaltita",
"Authentication error" : "Aŭtentiga eraro",
"Token expired. Please reload page." : "Ĵetono eksvalidiĝis. Bonvolu reŝargi la paĝon.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "Neniu datumbaza pelilo (sqlite, mysql, or postgresql) instalita.",
"Or, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it. See %s" : "Aŭ, se vi preferas lasi la dosieron config.php nurlega, valorigu la opcion \"config_is_read_only“ al vero („true“) en ĝi. Vidu %s",
"PHP module %s not installed." : "PHP-modulo %s ne instalita.",
"Please ask your server administrator to install the module." : "Bonvolu peti vian sistemadministranton instali la modulon.",
"PHP setting \"%s\" is not set to \"%s\"." : "PHP-agordo „%s“ ne egalas al „%s“.",
"Adjusting this setting in php.ini will make Nextcloud run again" : "Modifo de tiu agordo en „php.ini“ funkciigas Nextcloud-on denove.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "PHP ŝajne estas agordita por senigi la entekstajn dokumentarojn. Tio malfunkciigos plurajn kernajn aplikaĵojn.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Tion kaŭzas probable kaŝilo aŭ plirapidigilo kiel „Zend OPcache“ aŭ „eAccelerator“.",
"PHP modules have been installed, but they are still listed as missing?" : "Ĉu PHP-moduloj estas instalitaj, sed ĉiam montritaj kiel mankantaj?",
"Please ask your server administrator to restart the web server." : "Bonvolu peti vian serviladministranton, ke ŝi aŭ li restartigu la TTT-servilon.",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Certigu, ke estas dosiero nomata „.ocdata“ en la radiko de la dosierujo de datumoj.",
"Action \"%s\" not supported or implemented." : "Ago „%s“ ne estas subtenata aŭ realigita.",
"Authentication failed, wrong token or provider ID given" : "Aŭtentigo malsukcesis: neĝusta ĵetono aŭ provizanto-identigilo specifita",
"Parameters missing in order to complete the request. Missing Parameters: \"%s\"" : "Parametroj mankas por realigi la peton. Mankantaj parametroj: „%s“",
"ID \"%1$s\" already used by cloud federation provider \"%2$s\"" : "Identigilo „%1$s“ jam uziĝas de federnuba provizanto „%2$s“",
"Cloud Federation Provider with ID: \"%s\" does not exist." : "Federnuba provizanto kun identigilo „%s“ ne ekzistas.",
"Could not obtain lock type %d on \"%s\"." : "Ne eblis havi ŝlostipon %d sur „%s“.",
"Storage unauthorized. %s" : "Konservejo ne permesata. %s",
"Storage incomplete configuration. %s" : "Nekompleta agordo de konservejo. %s",
"Storage connection error. %s" : "Konekta eraro al konservejo. %s",
"Storage is temporarily not available" : "Konservejo provizore ne disponeblas",
"Storage connection timeout. %s" : "Konekto al konservejo eltempiĝis. %s",
"The files of the app %1$s were not replaced correctly. Make sure it is a version compatible with the server." : "La dosieroj de la aplikaĵo %1$s ne estis ĝuste anstataŭigitaj. Certigu, ke tiu aplikaĵa versio kongruas la servilon.",
"Logged in user must be an admin or sub admin" : "La ensalutanta uzanto estu administranto aŭ subadministranto",
"Logged in user must be an admin" : "La ensalutanta uzanto estu administranto",
"Full name" : "Plena nomo",
"Unknown user" : "Nekonata uzanto",
"MySQL username and/or password not valid" : "La uzantnomo kaj/aŭ pasvorto de MySQL ne estas valida",
"Oracle username and/or password not valid" : "La uzantnomo kaj/aŭ la pasvorto de Oracle ne estas valida",
"PostgreSQL username and/or password not valid" : "La uzantnomo aŭ la pasvorto de PostgreSQL ne validas",
"Set an admin username." : "Agordi uzantnomon de administranto.",
"Sharing %s failed, because this item is already shared with user %s" : "Kunhavigo de %s malsukcesis, ĉar la ero jam kunhaviĝis kun %s",
"The username is already being used" : "La uzantnomo jam estas uzata",
"Could not create user" : "Ne povis krei uzanton",
"A valid username must be provided" : "Valida uzantnomo devas esti provizita",
"Username contains whitespace at the beginning or at the end" : "Uzantnomo enhavas spaceton ĉe la komenco aŭ la fino",
"Username must not consist of dots only" : "Uzantnomo ne povas enhavi nur punktojn",
"Username is invalid because files already exist for this user" : "La uzantnomo ne estas valida pro dosieroj por la uzanto jam ekzistas",
"User disabled" : "Uzanto malebligita",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "libxml2 2.7.0 almenaŭ necesas. Nun %s estas instalita.",
"To fix this issue update your libxml2 version and restart your web server." : "Por ripari tiun problemon, ĝisdatigu vian version de libxml2, kaj restartigu la TTT-servilon.",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Bv. ŝanĝi la permesojn al 0770, tiel la dosierujo ne listigeblas de aliaj uzantoj."
},
"nplurals=2; plural=(n != 1);");
+212
View File
@@ -0,0 +1,212 @@
{ "translations": {
"Cannot write into \"config\" directory!" : "Ne povas skribi en la dosierujon „config“!",
"See %s" : "Vidi %s",
"Sample configuration detected" : "Ekzempla agordo trovita",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Ekzempla agordo estis kopiita en via sistemo. Tio povas paneigi vian instalaĵon, kaj ne estas subtenata. Bv. legi la dokumentaron antaŭ ol fari ŝanĝojn en config.php",
"The page could not be found on the server." : "La paĝo ne povis esti trovita en la servilo.",
"Other activities" : "Alia aktivado",
"%1$s and %2$s" : "%1$s kaj %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s kaj %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s kaj %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s kaj %5$s",
"Education Edition" : "Eldono por edukado",
"Enterprise bundle" : "Aplikaĵa kuniĝo por firmao",
"Groupware bundle" : "Aplikaĵa kuniĝo por grupa kunlaborado",
"Hub bundle" : "Koncentrita pakaĵo",
"Social sharing bundle" : "Aplikaĵa kuniĝo por socia kuhavigo",
"PHP %s or higher is required." : "PHP %s aŭ pli alta necesas.",
"PHP with a version lower than %s is required." : "Necesas pli malalta eldono de PHP ol %s.",
"%sbit or higher PHP required." : "PHP je %sbitoj aŭ pli alta necesas.",
"The following architectures are supported: %s" : "La sekvaj arkitekturoj estas subtenataj: %s",
"The following databases are supported: %s" : "La sekvaj datumbazoj estas subtenataj: %s",
"The command line tool %s could not be found" : "La komandlinia ilo %s ne troviĝis",
"The library %s is not available." : "La biblioteko %s ne haveblas.",
"Library %1$s with a version higher than %2$s is required - available version %3$s." : "Biblioteko %1$s kun versio pli ol %2$s bezoniĝas. Nuna versio estas %3$s.",
"Library %1$s with a version lower than %2$s is required - available version %3$s." : "Biblioteko %1$s kun versio malpli ol %2$s bezoniĝas. Nuna versio estas %3$s.",
"The following platforms are supported: %s" : "La sekvaj platformoj estas subtenataj: %s",
"Server version %s or higher is required." : "Servilo kun versio %s aŭ pli bezoniĝas.",
"Server version %s or lower is required." : "Servilo kun versio %s aŭ malpli bezoniĝas.",
"Wiping of device %s has started" : "Forviŝado de la aparato %s komencis",
"Wiping of device »%s« has started" : "Forviŝado de la aparato „%s“ komencis",
"»%s« started remote wipe" : "„%s“ komencis foran forviŝadon",
"Device or application »%s« has started the remote wipe process. You will receive another email once the process has finished" : "La aparato aŭ aplikaĵo „%s“ komencis la taskon de fora forviŝado. Vi ricevos plian retmesaĝon, kiam la tasko finiĝos",
"Wiping of device %s has finished" : "La forviŝado de la aparato %s finiĝis",
"Wiping of device »%s« has finished" : "La forviŝado de la aparato „%s“ finiĝis",
"»%s« finished remote wipe" : "„%s“ finis la foran forviŝadon",
"Device or application »%s« has finished the remote wipe process." : "La aparato aŭ aplikaĵo „%s“ finis la taskon de fora forviŝado.",
"Remote wipe started" : "Defora forviŝado komenciĝis",
"A remote wipe was started on device %s" : "Defora forviŝado komenciĝis ĉe aparato %s",
"Remote wipe finished" : "Defora forviŝado finis",
"The remote wipe on %s has finished" : "La defora forviŝado ĉe %s finis",
"Authentication" : "Aŭtentigo",
"Unknown filetype" : "Nekonata dosiertipo",
"Invalid image" : "Nevalida bildo",
"Avatar image is not square" : "Avatarbildo ne estas kvadrata",
"Files" : "Dosieroj",
"View profile" : "Vidi profilon",
"today" : "hodiaŭ",
"tomorrow" : "morgaŭ",
"yesterday" : "hieraŭ",
"_in %n day_::_in %n days_" : ["post %n tago","post %n tagoj"],
"_%n day ago_::_%n days ago_" : ["antaŭ %n tago","antaŭ %n tagoj"],
"next month" : "venontmonate",
"last month" : "lastmonate",
"_in %n month_::_in %n months_" : ["post %n monato","post %n monatoj"],
"_%n month ago_::_%n months ago_" : ["antaŭ %n monato","antaŭ %n monatoj"],
"next year" : "venontjare",
"last year" : "lastjare",
"_in %n year_::_in %n years_" : ["post %n jaro","post %n jaroj"],
"_%n year ago_::_%n years ago_" : ["antaŭ %n jaro","antaŭ %n jaroj"],
"_in %n hour_::_in %n hours_" : ["post %n horo","post %n horoj"],
"_%n hour ago_::_%n hours ago_" : ["antaŭ %n horo","antaŭ %n horoj"],
"_in %n minute_::_in %n minutes_" : ["post %n minuto","post %n minutoj"],
"_%n minute ago_::_%n minutes ago_" : ["antaŭ %n minuto","antaŭ %n minutoj"],
"in a few seconds" : "post kelkaj sekundoj",
"seconds ago" : "antaŭ kelkaj sekundoj",
"Empty file" : "Malplena dosiero",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "Modulo kun identigilo %s ne ekzistas. Bv. ŝalti ĝin en la aplikaĵa agordo aŭ kontakti vian administranton.",
"File already exists" : "La dosiero jam ekzistas",
"Templates" : "Ŝablonoj",
"File name is a reserved word" : "Dosiernomo estas rezervita vorto",
"File name contains at least one invalid character" : "Dosiernomo enhavas almenaŭ unu nevalidan signon",
"File name is too long" : "La dosiernomo estas tro longa",
"Dot files are not allowed" : "Dosiernomo, kiu komenciĝas per punkto, ne estas permesata",
"Empty filename is not allowed" : "Malplena dosiernomo ne estas permesata",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "La aplikaĵo „%s“ ne instaleblas, ĉar ties dosiero „appinfo“ ne legeblis.",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "La aplikaĵo „%s“ ne instaleblas, ĉar ĝi ne kongruas kun tiu servila versio.",
"__language_name__" : "Esperanto",
"This is an automatically sent email, please do not reply." : "Tio estas aŭtomate sendita retpoŝtmesaĝo; bv. ne respondi.",
"Help" : "Helpo",
"Apps" : "Aplikaĵoj",
"Settings" : "Agordo",
"Log out" : "Elsaluti",
"Users" : "Uzantoj",
"Email" : "Retpoŝtadreso",
"Phone" : "Telefono",
"Twitter" : "Twitter",
"Website" : "Retejo",
"Address" : "Adreso",
"Profile picture" : "Profila bildo",
"About" : "Pri",
"Display name" : "Vidiga nomo",
"Additional settings" : "Plia agordo",
"You need to enter details of an existing account." : "Vi entajpu detalojn pri ekzistanta konto.",
"Oracle connection could not be established" : "Konekto al Oracle ne povis stariĝi",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "MacOS X ne estas subtenata kaj %s ne bone funkcios ĉe ĝi. Uzu ĝin je via risko!",
"For the best results, please consider using a GNU/Linux server instead." : "Por pli bona funkciado, bv. pripensi uzi GNU-Linuksan servilon anstataŭe.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Ŝajnas, ke tiu servilo %s uzas 32-bitan PHP-version, kaj ke la agordo „open_basedir“ ekzistas. Tio kaŭzos problemojn pri dosieroj pli grandaj ol 4 GB, kaj do estas tre malrekomendita.",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Bv. forigi la agordon „open_basedir“ de via php.ini, aŭ uzu 64-bitan version de PHP.",
"Set an admin password." : "Agordi pasvorton de administranto.",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Kunhava interna servo %s devas realigi la interfacon „OCP\\Share_Backend“",
"Sharing backend %s not found" : "Kunhava interna servo %s ne troviĝas",
"Sharing backend for %s not found" : "Kunhava interna servo por %s ne troviĝas",
"%1$s shared »%2$s« with you and wants to add:" : "%1$s kunhavigis „%2$s“ kun vi kaj volas aldoni:",
"%1$s shared »%2$s« with you and wants to add" : "%1$s kunhavigis „%2$s“ kun vi kaj volas aldoni",
"»%s« added a note to a file shared with you" : "„%s“ aldonis noton al dosiero kunhavigita kun vi",
"Open »%s«" : "Malfermi „%s“",
"%1$s via %2$s" : "%1$s pere de %2$s",
"You are not allowed to share %s" : "Vi ne permesatas kunhavigi %s",
"Cannot increase permissions of %s" : "Ne eblas pliigi permesojn de %s",
"Expiration date is in the past" : "Limdato troviĝas en la estinteco",
"%1$s shared »%2$s« with you" : "%1$s kunhavigis „%2$s“ kun vi",
"%1$s shared »%2$s« with you." : "%1$s kunhavigis „%2$s“ kun vi.",
"Click the button below to open it." : "Alklaku la butonon ĉi-sube por malfermi ĝin.",
"The requested share does not exist anymore" : "La petita kunhavo ne plu ekzistas",
"Could not find category \"%s\"" : "Ne troviĝis kategorio „%s“",
"Sunday" : "dimanĉo",
"Monday" : "lundo",
"Tuesday" : "mardo",
"Wednesday" : "merkredo",
"Thursday" : "ĵaŭdo",
"Friday" : "vendredo",
"Saturday" : "sabato",
"Sun." : "dim.",
"Mon." : "lun.",
"Tue." : "mar.",
"Wed." : "mer.",
"Thu." : "ĵaŭ.",
"Fri." : "ven.",
"Sat." : "sab.",
"Su" : "Di",
"Mo" : "Lu",
"Tu" : "Ma",
"We" : "Me",
"Th" : "Ĵa",
"Fr" : "Ve",
"Sa" : "Sa",
"January" : "Januaro",
"February" : "Februaro",
"March" : "Marto",
"April" : "Aprilo",
"May" : "Majo",
"June" : "Junio",
"July" : "Julio",
"August" : "Aŭgusto",
"September" : "Septembro",
"October" : "Oktobro",
"November" : "Novembro",
"December" : "Decembro",
"Jan." : "Jan.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Apr.",
"May." : "Maj.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Aŭg.",
"Sep." : "Sep.",
"Oct." : "Okt.",
"Nov." : "Nov.",
"Dec." : "Dec.",
"A valid password must be provided" : "Valida pasvorto devas esti provizita",
"Login canceled by app" : "Ensaluto estis nuligita de aplikaĵo",
"App \"%1$s\" cannot be installed because the following dependencies are not fulfilled: %2$s" : "La aplikaĵo „%1$s“ ne instaliĝas, ĉar la jenaj dependecoj ne plenumiĝas: %2$s",
"a safe home for all your data" : "sekura hejmo por ĉiuj viaj datumoj",
"File is currently busy, please try again later" : "La dosiero estas nun okupita, bv. reprovi poste",
"Application is not enabled" : "La aplikaĵo ne estas ŝaltita",
"Authentication error" : "Aŭtentiga eraro",
"Token expired. Please reload page." : "Ĵetono eksvalidiĝis. Bonvolu reŝargi la paĝon.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "Neniu datumbaza pelilo (sqlite, mysql, or postgresql) instalita.",
"Or, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it. See %s" : "Aŭ, se vi preferas lasi la dosieron config.php nurlega, valorigu la opcion \"config_is_read_only“ al vero („true“) en ĝi. Vidu %s",
"PHP module %s not installed." : "PHP-modulo %s ne instalita.",
"Please ask your server administrator to install the module." : "Bonvolu peti vian sistemadministranton instali la modulon.",
"PHP setting \"%s\" is not set to \"%s\"." : "PHP-agordo „%s“ ne egalas al „%s“.",
"Adjusting this setting in php.ini will make Nextcloud run again" : "Modifo de tiu agordo en „php.ini“ funkciigas Nextcloud-on denove.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "PHP ŝajne estas agordita por senigi la entekstajn dokumentarojn. Tio malfunkciigos plurajn kernajn aplikaĵojn.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Tion kaŭzas probable kaŝilo aŭ plirapidigilo kiel „Zend OPcache“ aŭ „eAccelerator“.",
"PHP modules have been installed, but they are still listed as missing?" : "Ĉu PHP-moduloj estas instalitaj, sed ĉiam montritaj kiel mankantaj?",
"Please ask your server administrator to restart the web server." : "Bonvolu peti vian serviladministranton, ke ŝi aŭ li restartigu la TTT-servilon.",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Certigu, ke estas dosiero nomata „.ocdata“ en la radiko de la dosierujo de datumoj.",
"Action \"%s\" not supported or implemented." : "Ago „%s“ ne estas subtenata aŭ realigita.",
"Authentication failed, wrong token or provider ID given" : "Aŭtentigo malsukcesis: neĝusta ĵetono aŭ provizanto-identigilo specifita",
"Parameters missing in order to complete the request. Missing Parameters: \"%s\"" : "Parametroj mankas por realigi la peton. Mankantaj parametroj: „%s“",
"ID \"%1$s\" already used by cloud federation provider \"%2$s\"" : "Identigilo „%1$s“ jam uziĝas de federnuba provizanto „%2$s“",
"Cloud Federation Provider with ID: \"%s\" does not exist." : "Federnuba provizanto kun identigilo „%s“ ne ekzistas.",
"Could not obtain lock type %d on \"%s\"." : "Ne eblis havi ŝlostipon %d sur „%s“.",
"Storage unauthorized. %s" : "Konservejo ne permesata. %s",
"Storage incomplete configuration. %s" : "Nekompleta agordo de konservejo. %s",
"Storage connection error. %s" : "Konekta eraro al konservejo. %s",
"Storage is temporarily not available" : "Konservejo provizore ne disponeblas",
"Storage connection timeout. %s" : "Konekto al konservejo eltempiĝis. %s",
"The files of the app %1$s were not replaced correctly. Make sure it is a version compatible with the server." : "La dosieroj de la aplikaĵo %1$s ne estis ĝuste anstataŭigitaj. Certigu, ke tiu aplikaĵa versio kongruas la servilon.",
"Logged in user must be an admin or sub admin" : "La ensalutanta uzanto estu administranto aŭ subadministranto",
"Logged in user must be an admin" : "La ensalutanta uzanto estu administranto",
"Full name" : "Plena nomo",
"Unknown user" : "Nekonata uzanto",
"MySQL username and/or password not valid" : "La uzantnomo kaj/aŭ pasvorto de MySQL ne estas valida",
"Oracle username and/or password not valid" : "La uzantnomo kaj/aŭ la pasvorto de Oracle ne estas valida",
"PostgreSQL username and/or password not valid" : "La uzantnomo aŭ la pasvorto de PostgreSQL ne validas",
"Set an admin username." : "Agordi uzantnomon de administranto.",
"Sharing %s failed, because this item is already shared with user %s" : "Kunhavigo de %s malsukcesis, ĉar la ero jam kunhaviĝis kun %s",
"The username is already being used" : "La uzantnomo jam estas uzata",
"Could not create user" : "Ne povis krei uzanton",
"A valid username must be provided" : "Valida uzantnomo devas esti provizita",
"Username contains whitespace at the beginning or at the end" : "Uzantnomo enhavas spaceton ĉe la komenco aŭ la fino",
"Username must not consist of dots only" : "Uzantnomo ne povas enhavi nur punktojn",
"Username is invalid because files already exist for this user" : "La uzantnomo ne estas valida pro dosieroj por la uzanto jam ekzistas",
"User disabled" : "Uzanto malebligita",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "libxml2 2.7.0 almenaŭ necesas. Nun %s estas instalita.",
"To fix this issue update your libxml2 version and restart your web server." : "Por ripari tiun problemon, ĝisdatigu vian version de libxml2, kaj restartigu la TTT-servilon.",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Bv. ŝanĝi la permesojn al 0770, tiel la dosierujo ne listigeblas de aliaj uzantoj."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}
+280
View File
@@ -0,0 +1,280 @@
OC.L10N.register(
"lib",
{
"Cannot write into \"config\" directory!" : "No se puede escribir en la carpeta \"config\"!",
"This can usually be fixed by giving the web server write access to the config directory." : "Normalmente esto se puede arreglar dando al servidor web acceso de escritura a la carpeta config.",
"But, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it." : "Pero, si prefieres mantener el archivo config.php como solo de lectura, establece la opción \"config_is_read_only\" a true en él.",
"See %s" : "Ver %s",
"Application %1$s is not present or has a non-compatible version with this server. Please check the apps directory." : "La aplicación %1$s no está presente o tiene una versión que no es compatible con este servidor. Por favor, chequee la carpeta de apps.",
"Sample configuration detected" : "Configuración de ejemplo detectada",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Se ha detectado que el ejemplo de configuración ha sido copiado. Esto podría afectar a su instalación, por lo que no tiene soporte. Lea la documentación antes de hacer cambios en config.php",
"The page could not be found on the server." : "La página no se ha encontrado en el servidor.",
"%s email verification" : "%s verificación del correo electrónico",
"Email verification" : "Verificación del correo electrónico",
"Click the following button to confirm your email." : "Haz clic en el siguiente botón para confirmar tu correo electrónico.",
"Click the following link to confirm your email." : "Haz clic en el siguiente enlace para confirmar tu correo electrónico.",
"Confirm your email" : "Confirma tu correo electrónico",
"Other activities" : "Otras actividades",
"%1$s and %2$s" : "%1$s y %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s y %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s, y %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s y %5$s",
"Education Edition" : "Edición Educación",
"Enterprise bundle" : "Pack para empresas",
"Groupware bundle" : "Pack groupware",
"Hub bundle" : "Pack para Hub",
"Social sharing bundle" : "Pack para compartir en redes",
"PHP %s or higher is required." : "Se requiere PHP %s o superior.",
"PHP with a version lower than %s is required." : "Se necesita una versión de PHP inferior a %s",
"%sbit or higher PHP required." : "Se requiere PHP %sbit o superior.",
"The following architectures are supported: %s" : "Las siguientes arquitecturas están soportadas: %s",
"The following databases are supported: %s" : "Las siguientes bases de datos están soportadas: %s",
"The command line tool %s could not be found" : "No se encontró la herramienta %s de línea de comandos",
"The library %s is not available." : "La biblioteca %s no está disponible",
"Library %1$s with a version higher than %2$s is required - available version %3$s." : "Se requiere la biblioteca %1$s con una versión mayor que %2$s. Está disponible la versión %3$s.",
"Library %1$s with a version lower than %2$s is required - available version %3$s." : "Se requiera la biblioteca %1$s con una versión menor que %2$s. Está disponible la versión %3$s.",
"The following platforms are supported: %s" : "Las siguientes plataformas están soportadas: %s",
"Server version %s or higher is required." : "Se necesita la versión %s o superior del servidor.",
"Server version %s or lower is required." : "Se necesita la versión %s o inferior del servidor. ",
"Wiping of device %s has started" : "El borrado del dispositivo %s ha empezado",
"Wiping of device »%s« has started" : "El borrado del dispositivo »%s« ha empezado",
"»%s« started remote wipe" : "»%s« ha empezado el borrado a distancia",
"Device or application »%s« has started the remote wipe process. You will receive another email once the process has finished" : "El dispositivo o la aplicación »%s« ha empezado el proceso de borrado a distancia. Vas a recibir otro mensaje por correo una vez que el proceso haya concluido.",
"Wiping of device %s has finished" : "El borrado del dispositivo %s ha concluido",
"Wiping of device »%s« has finished" : "El borrado del dispositivo »%s« ha concluido",
"»%s« finished remote wipe" : "»%s« ha acabado el borrado a distancia",
"Device or application »%s« has finished the remote wipe process." : "El dispositivo o la aplicación »%s« ha concluido el proceso de borrado a distancia.",
"Remote wipe started" : "Borrado remoto comenzado.",
"A remote wipe was started on device %s" : "Se ha iniciado un borrado remoto en el dispositivo %s.",
"Remote wipe finished" : "Borrado remoto finalizado",
"The remote wipe on %s has finished" : "El borrado remoto en %s ha finalizado",
"Authentication" : "Autentificación",
"Unknown filetype" : "Tipo de archivo desconocido",
"Invalid image" : "Imagen no válida",
"Avatar image is not square" : "La imagen de avatar no es cuadrada",
"Files" : "Archivos",
"View profile" : "Ver perfil",
"Local time: %s" : "Hora local: %s",
"today" : "hoy",
"tomorrow" : "mañana",
"yesterday" : "ayer",
"_in %n day_::_in %n days_" : ["dentro de %n día","dentro de %n días","dentro de %n días"],
"_%n day ago_::_%n days ago_" : ["Hace %n día","hace %n días","hace %n días"],
"next month" : "mes siguiente",
"last month" : "mes pasado",
"_in %n month_::_in %n months_" : ["dentro de %n mes","dentro de %n meses","dentro de %n meses"],
"_%n month ago_::_%n months ago_" : ["Hace %n mes","hace %n meses","hace %n meses"],
"next year" : "año que viene",
"last year" : "año pasado",
"_in %n year_::_in %n years_" : ["dentro de %n año","dentro de %n años","dentro de %n años"],
"_%n year ago_::_%n years ago_" : ["Hace %n año","hace %n años","hace %n años"],
"_in %n hour_::_in %n hours_" : ["dentro de %n hora","dentro de %n horas","dentro de %n horas"],
"_%n hour ago_::_%n hours ago_" : ["Hace %n hora","hace %n horas","hace %n horas"],
"_in %n minute_::_in %n minutes_" : ["dentro de %n minuto","dentro de %n minutos","dentro de %n minutos"],
"_%n minute ago_::_%n minutes ago_" : ["Hace %n minuto","hace %n minutos","hace %n minutos"],
"in a few seconds" : "en unos segundos",
"seconds ago" : "hace segundos",
"Empty file" : "Archivo vacío",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "El módulo con ID %s no existe. Por favor, actívalo en la configuración de apps o contacta con tu administrador.",
"File already exists" : "El archivo ya existe",
"Invalid path" : "Ruta no válida",
"Failed to create file from template" : "Fallo al crear el archivo desde plantilla",
"Templates" : "Plantillas",
"File name is a reserved word" : "El nombre de archivo es una palabra reservada",
"File name contains at least one invalid character" : "El nombre del archivo contiene al menos un carácter inválido",
"File name is too long" : "El nombre del archivo es demasiado largo",
"Dot files are not allowed" : "Los archivos Dot no están permitidos",
"Empty filename is not allowed" : "No se puede dejar el nombre en blanco.",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "No se puede instalar la app \"%s\" debido a que no se puede leer la información de la app.",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "No se puede instalar la aplicación \"%s\" porque no es compatible con esta versión del servidor.",
"__language_name__" : "Español (España)",
"This is an automatically sent email, please do not reply." : "Este es un correo enviado automáticamente, por favor no responda.",
"Help" : "Ayuda",
"Appearance and accessibility" : "Apariencia y accesibilidad",
"Apps" : "Aplicaciones",
"Personal settings" : "Ajustes personales",
"Administration settings" : "Configuraciones de administración",
"Settings" : "Ajustes",
"Log out" : "Cerrar sesión",
"Users" : "Usuarios",
"Email" : "Correo electrónico",
"Mail %s" : "Correo %s",
"Fediverse" : "Fediverso",
"View %s on the fediverse" : "Ver %s en el fediverso",
"Phone" : "Teléfono",
"Call %s" : "Llamada %s",
"Twitter" : "Twitter",
"View %s on Twitter" : "Ver %s en Twitter",
"Website" : "Sitio web",
"Visit %s" : "Visita %s",
"Address" : "Dirección",
"Profile picture" : "Imagen de perfil",
"About" : "Acerca de",
"Display name" : "Nombre para mostrar",
"Headline" : "Titular",
"Organisation" : "Organización",
"Role" : "Puesto",
"Additional settings" : "Configuración adicional",
"Enter the database name for %s" : "Introduzca el nombre de la base de datos %s",
"You cannot use dots in the database name %s" : "No puede utilizar puntos para el nombre de base de datos 1%s ",
"You need to enter details of an existing account." : "Tienes que introducir los datos de una cuenta existente.",
"Oracle connection could not be established" : "No se pudo establecer la conexión a Oracle",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "Mac OS X no está soportado y %s no funcionará bien en esta plataforma. ¡Úsala bajo tu propio riesgo! ",
"For the best results, please consider using a GNU/Linux server instead." : "Para obtener los mejores resultados, considera utilizar un servidor GNU/Linux.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Parece que esta instancia %s está funcionando en un entorno PHP de 32-bits y el open_basedir se ha configurado en php.ini. Esto acarreará problemas con archivos de tamaño superior a 4GB y resulta totalmente desaconsejado.",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor, quite el ajuste de open_basedir —dentro de su php.ini— o pásese a PHP de 64 bits.",
"Set an admin password." : "Configurar la contraseña del administrador.",
"Cannot create or write into the data directory %s" : "No se puede crear o escribir en la carpeta de datos %s",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El motor compartido %s debe implementar la interfaz OCP\\Share_Backend",
"Sharing backend %s not found" : "El motor compartido %s no se ha encontrado",
"Sharing backend for %s not found" : "Motor compartido para %s no encontrado",
"%1$s shared »%2$s« with you and wants to add:" : "%1$s ha compartido «%2$s» contigo y quiere añadir:",
"%1$s shared »%2$s« with you and wants to add" : "%1$s ha compartido «%2$s» contigo y quiere añadir",
"»%s« added a note to a file shared with you" : "«%s» ha añadido una nota a un archivo compartido contigo",
"Open »%s«" : "Abrir »%s« ",
"%1$s via %2$s" : "%1$s vía %2$s",
"You are not allowed to share %s" : "Usted no está autorizado para compartir %s",
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
"Files cannot be shared with delete permissions" : "Los archivos no se pueden compartir con permisos de borrado",
"Files cannot be shared with create permissions" : "Los archivos no se pueden compartir con permisos de creación",
"Expiration date is in the past" : "Ha pasado la fecha de caducidad",
"_Cannot set expiration date more than %n day in the future_::_Cannot set expiration date more than %n days in the future_" : ["No se puede fijar la fecha de caducidad más de %n día en el futuro.","No se puede fijar la fecha de caducidad más de %n días en el futuro.","No se puede fijar la fecha de caducidad más de %n días en el futuro."],
"Sharing is only allowed with group members" : "Sólo está permitido compartir a los integrantes del grupo",
"%1$s shared »%2$s« with you" : "%1$s ha compartido «%2$s» contigo",
"%1$s shared »%2$s« with you." : "%1$s ha compartido «%2$s» contigo.",
"Click the button below to open it." : "Haz clic en el botón de abajo para abrirlo.",
"The requested share does not exist anymore" : "El recurso compartido solicitado ya no existe",
"The requested share comes from a disabled user" : "El recurso compartido solicitado proviene de un usuario deshabilitado",
"The user was not created because the user limit has been reached. Check your notifications to learn more." : "El usuario no fue creado ya que el límite de usuarios fue alcanzado. Compruebe sus notificaciones para aprender más.",
"Could not find category \"%s\"" : "No puede encontrar la categoría \"%s\"",
"Sunday" : "Domingo",
"Monday" : "Lunes",
"Tuesday" : "Martes",
"Wednesday" : "Miércoles",
"Thursday" : "Jueves",
"Friday" : "Viernes",
"Saturday" : "Sábado",
"Sun." : "Dom.",
"Mon." : "Lun.",
"Tue." : "Mar.",
"Wed." : "Mié.",
"Thu." : "Jue.",
"Fri." : "Vie.",
"Sat." : "Sáb.",
"Su" : "Do",
"Mo" : "Lu",
"Tu" : "Ma",
"We" : "Mi",
"Th" : "Ju",
"Fr" : "Vi",
"Sa" : "Sa",
"January" : "enero",
"February" : "febrero",
"March" : "marzo",
"April" : "abril",
"May" : "mayo",
"June" : "junio",
"July" : "julio",
"August" : "agosto",
"September" : "septiembre",
"October" : "octubre",
"November" : "noviembre",
"December" : "diciembre",
"Jan." : "Ene.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Abr.",
"May." : "May.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Ago.",
"Sep." : "Sep.",
"Oct." : "Oct.",
"Nov." : "Nov.",
"Dec." : "Dic.",
"A valid password must be provided" : "Se debe proporcionar una contraseña válida",
"Login canceled by app" : "Login cancelado por la app",
"App \"%1$s\" cannot be installed because the following dependencies are not fulfilled: %2$s" : "No se ha podido instlaar la app «%1$s» porque no se cumplen las siguientes dependencias: %2$s",
"a safe home for all your data" : "un hogar seguro para todos tus datos",
"File is currently busy, please try again later" : "El archivo se encuentra actualmente ocupado, por favor inténtelo de nuevo más tarde",
"Cannot download file" : "No se puede descargar archivo",
"Application is not enabled" : "La aplicación no está habilitada",
"Authentication error" : "Error de autenticación",
"Token expired. Please reload page." : "Token caducado. Por favor, recarge la página.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "No están instalados los drivers de BBDD (sqlite, mysql, o postgresql)",
"Cannot write into \"config\" directory." : "No se puede escribir en la carpeta «config».",
"This can usually be fixed by giving the web server write access to the config directory. See %s" : "Normalmente esteo se puede arreglar dando al servidor web acceso de escritura a la carpeta config. Véase %s",
"Or, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it. See %s" : "O, si prefieres mantener el archivo config.php como de solo lectura, marca la opción \"config_is_read_only\" a 'true' en él. Ver %s",
"Cannot write into \"apps\" directory." : "No se puede escribir en la carpeta «apps».",
"This can usually be fixed by giving the web server write access to the apps directory or disabling the App Store in the config file." : "Normalmente esto se puede arreglar dando al servidor web acceso de escritura a la carpeta de apps o desactivando la App Store en el archivo de configuración.",
"Cannot create \"data\" directory." : "No se puede crear la carpeta \"data\"",
"This can usually be fixed by giving the web server write access to the root directory. See %s" : "Normalmente esto se puede arreglar dando al servidor web acceso de escritura a la carpeta raíz. Véase %s",
"Permissions can usually be fixed by giving the web server write access to the root directory. See %s." : "Los permisos normalmente se pueden arreglar dando al servidor web acceso de escritura a la carpeta raíz. Véase %s",
"Your data directory is not writable." : "No se puede escribir en tu carpeta de datos.",
"Setting locale to %s failed." : "Fallo al configurar el idioma a %s.",
"Please install one of these locales on your system and restart your web server." : "Por favor, instala uno de estos idiomas en tu sistema y reinicia tu servidor web.",
"PHP module %s not installed." : "El módulo PHP %s no está instalado.",
"Please ask your server administrator to install the module." : "Consulte al administrador de su servidor para instalar el módulo.",
"PHP setting \"%s\" is not set to \"%s\"." : "La opción PHP \"%s\" no es \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "Ajustar esta configuración en php.ini hará que Nextcloud funcione de nuevo",
"<code>mbstring.func_overload</code> is set to <code>%s</code> instead of the expected value <code>0</code>." : "<code>mbstring.func_overload</code> está establecida como <code>%s</code> en lugar del valor esperado: <code>0</code>.",
"To fix this issue set <code>mbstring.func_overload</code> to <code>0</code> in your php.ini." : "Para arreglar este problema, establezca <code>mbstring.func_overload</code> en<code>0</code> en su php.ini.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "PHP está aparentemente configurado para eliminar bloques de documentos en línea. Esto hará que varias aplicaciones principales estén inaccesibles.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Probablemente esto venga a causa de la caché o un acelerador, tales como Zend OPcache o eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "Los módulos PHP se han instalado, pero aparecen listados como si faltaran",
"Please ask your server administrator to restart the web server." : "Consulte al administrador de su servidor para reiniciar el servidor web.",
"The required %s config variable is not configured in the config.php file." : "La variable de configuración %s requerida no está configurada en el archivo config.php.",
"Please ask your server administrator to check the Nextcloud configuration." : "Por favor, pida al administrador de su servidor que compruebe la configuración de Nextcloud.",
"Your data directory must be an absolute path." : "Tu carpeta de datos debe ser una ruta absoluta.",
"Check the value of \"datadirectory\" in your configuration." : "Comprueba el valor de «datadirectory» en tu configuración.",
"Your data directory is invalid." : "Tu carpeta de datos es inválida.",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Asegúrate de que existe un archivo llamado \".ocdata\" en la raíz del directorio de datos.",
"Action \"%s\" not supported or implemented." : "La acción \"%s\" no está soportada o implementada.",
"Authentication failed, wrong token or provider ID given" : "La autentificación ha fallado. Se ha dado un token o una ID de proveedor erróneos.",
"Parameters missing in order to complete the request. Missing Parameters: \"%s\"" : "Faltan parámetros para completar la petición. Parámetros que faltan: \"%s\"",
"ID \"%1$s\" already used by cloud federation provider \"%2$s\"" : "La ID «%1$s» ya está siendo usada por el proveedor de federación en la nube «%2$s»",
"Cloud Federation Provider with ID: \"%s\" does not exist." : "El proveedor de nube federada con ID \"%s\" no existe.",
"Could not obtain lock type %d on \"%s\"." : "No se pudo realizar el bloqueo %d en \"%s\".",
"Storage unauthorized. %s" : "Almacenamiento no autorizado. %s",
"Storage incomplete configuration. %s" : "Configuración de almacenamiento incompleta. %s",
"Storage connection error. %s" : "Error de conexión de almacenamiento. %s",
"Storage is temporarily not available" : "El almacenamiento no esta disponible temporalmente",
"Storage connection timeout. %s" : "Tiempo de conexión de almacenamiento agotado. %s",
"Free prompt" : "Prompt libre",
"Runs an arbitrary prompt through the language model." : "Ejecuta un prompt arbitrario mediante el modelo de lenguaje integrado.",
"Generate headline" : "Generar titular",
"Generates a possible headline for a text." : "Genera un posible titular para un texto.",
"Summarize" : "Resumir",
"Summarizes text by reducing its length without losing key information." : "Resume el texto reduciendo su longitud sin perder información clave.",
"Extract topics" : "Extraer tópicos",
"Extracts topics from a text and outputs them separated by commas." : "Extrae los tópicos de un texto y genera una salida separada por comas. ",
"The files of the app %1$s were not replaced correctly. Make sure it is a version compatible with the server." : "Los archivos de la app %1$s no se han reemplazado correctamente. Asegúrate de que es una versión compatible con el servidor.",
"404" : "404",
"Logged in user must be an admin, a sub admin or gotten special right to access this setting" : "La sesión del usuario debe corresponder a un administrador, subadministrador, o debe tener derechos especiales para acceder a esta configuración.",
"Logged in user must be an admin or sub admin" : "El usuario activo debe ser un administrador o subadministrador",
"Logged in user must be an admin" : "El usuario registrado debe ser un administrador",
"Full name" : "Nombre completo",
"Unknown user" : "Usuario desconocido",
"Enter the database username and name for %s" : "Introduzca el nombre de usuario y la contraseña para la base de datos %s",
"Enter the database username for %s" : "Introduzca el nombre de usuario para la base datos %s",
"MySQL username and/or password not valid" : "Usuario y/o contraseña de MySQL no válidos",
"Oracle username and/or password not valid" : "Usuario y/o contraseña de Oracle no válidos",
"PostgreSQL username and/or password not valid" : "Usuario y/o contraseña de PostgreSQL no válidos",
"Set an admin username." : "Configurar un nombre de usuario del administrador",
"Sharing %s failed, because this item is already shared with user %s" : "No se pudo compartir %s, porque este elemento ya está compartido con el usuario %s",
"The username is already being used" : "El nombre de usuario ya está en uso",
"Could not create user" : "No se ha podido crear el usuario",
"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", spaces and \"_.@-'\"" : "Solo los siguientes caracteres están permitidos en un nombre de usuario: \"a-z\", \"A-Z\", \"0-9\", espacios y \"_.@-'\"",
"A valid username must be provided" : "Se debe proporcionar un nombre de usuario válido",
"Username contains whitespace at the beginning or at the end" : "El nombre de usuario contiene espacios en blanco al principio o al final",
"Username must not consist of dots only" : "El nombre de usuario no debe consistir solo de puntos",
"Username is invalid because files already exist for this user" : "El nombre de usuario es incorrecto debido a a que los archivos ya existen para este usuario",
"User disabled" : "Usuario deshabilitado",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "libxml2 2.7.0 es requerido en esta o en versiones superiores. Ahora mismo tienes instalada %s.",
"To fix this issue update your libxml2 version and restart your web server." : "Para corregir este problema, actualice su versión de libxml2 y reinicie el servidor web.",
"PostgreSQL >= 9 required." : "PostgreSQL >= 9 requerido.",
"Please upgrade your database version." : "Por favor, actualiza la versión de tu base de datos.",
"Your data directory is readable by other users." : "Tu carpeta de datos puede ser leído por otros usuarios.",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Por favor, cambia los permisos a 0770 para que el directorio no se pueda mostrar a otros usuarios."
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
+278
View File
@@ -0,0 +1,278 @@
{ "translations": {
"Cannot write into \"config\" directory!" : "No se puede escribir en la carpeta \"config\"!",
"This can usually be fixed by giving the web server write access to the config directory." : "Normalmente esto se puede arreglar dando al servidor web acceso de escritura a la carpeta config.",
"But, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it." : "Pero, si prefieres mantener el archivo config.php como solo de lectura, establece la opción \"config_is_read_only\" a true en él.",
"See %s" : "Ver %s",
"Application %1$s is not present or has a non-compatible version with this server. Please check the apps directory." : "La aplicación %1$s no está presente o tiene una versión que no es compatible con este servidor. Por favor, chequee la carpeta de apps.",
"Sample configuration detected" : "Configuración de ejemplo detectada",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Se ha detectado que el ejemplo de configuración ha sido copiado. Esto podría afectar a su instalación, por lo que no tiene soporte. Lea la documentación antes de hacer cambios en config.php",
"The page could not be found on the server." : "La página no se ha encontrado en el servidor.",
"%s email verification" : "%s verificación del correo electrónico",
"Email verification" : "Verificación del correo electrónico",
"Click the following button to confirm your email." : "Haz clic en el siguiente botón para confirmar tu correo electrónico.",
"Click the following link to confirm your email." : "Haz clic en el siguiente enlace para confirmar tu correo electrónico.",
"Confirm your email" : "Confirma tu correo electrónico",
"Other activities" : "Otras actividades",
"%1$s and %2$s" : "%1$s y %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s y %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s, y %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s y %5$s",
"Education Edition" : "Edición Educación",
"Enterprise bundle" : "Pack para empresas",
"Groupware bundle" : "Pack groupware",
"Hub bundle" : "Pack para Hub",
"Social sharing bundle" : "Pack para compartir en redes",
"PHP %s or higher is required." : "Se requiere PHP %s o superior.",
"PHP with a version lower than %s is required." : "Se necesita una versión de PHP inferior a %s",
"%sbit or higher PHP required." : "Se requiere PHP %sbit o superior.",
"The following architectures are supported: %s" : "Las siguientes arquitecturas están soportadas: %s",
"The following databases are supported: %s" : "Las siguientes bases de datos están soportadas: %s",
"The command line tool %s could not be found" : "No se encontró la herramienta %s de línea de comandos",
"The library %s is not available." : "La biblioteca %s no está disponible",
"Library %1$s with a version higher than %2$s is required - available version %3$s." : "Se requiere la biblioteca %1$s con una versión mayor que %2$s. Está disponible la versión %3$s.",
"Library %1$s with a version lower than %2$s is required - available version %3$s." : "Se requiera la biblioteca %1$s con una versión menor que %2$s. Está disponible la versión %3$s.",
"The following platforms are supported: %s" : "Las siguientes plataformas están soportadas: %s",
"Server version %s or higher is required." : "Se necesita la versión %s o superior del servidor.",
"Server version %s or lower is required." : "Se necesita la versión %s o inferior del servidor. ",
"Wiping of device %s has started" : "El borrado del dispositivo %s ha empezado",
"Wiping of device »%s« has started" : "El borrado del dispositivo »%s« ha empezado",
"»%s« started remote wipe" : "»%s« ha empezado el borrado a distancia",
"Device or application »%s« has started the remote wipe process. You will receive another email once the process has finished" : "El dispositivo o la aplicación »%s« ha empezado el proceso de borrado a distancia. Vas a recibir otro mensaje por correo una vez que el proceso haya concluido.",
"Wiping of device %s has finished" : "El borrado del dispositivo %s ha concluido",
"Wiping of device »%s« has finished" : "El borrado del dispositivo »%s« ha concluido",
"»%s« finished remote wipe" : "»%s« ha acabado el borrado a distancia",
"Device or application »%s« has finished the remote wipe process." : "El dispositivo o la aplicación »%s« ha concluido el proceso de borrado a distancia.",
"Remote wipe started" : "Borrado remoto comenzado.",
"A remote wipe was started on device %s" : "Se ha iniciado un borrado remoto en el dispositivo %s.",
"Remote wipe finished" : "Borrado remoto finalizado",
"The remote wipe on %s has finished" : "El borrado remoto en %s ha finalizado",
"Authentication" : "Autentificación",
"Unknown filetype" : "Tipo de archivo desconocido",
"Invalid image" : "Imagen no válida",
"Avatar image is not square" : "La imagen de avatar no es cuadrada",
"Files" : "Archivos",
"View profile" : "Ver perfil",
"Local time: %s" : "Hora local: %s",
"today" : "hoy",
"tomorrow" : "mañana",
"yesterday" : "ayer",
"_in %n day_::_in %n days_" : ["dentro de %n día","dentro de %n días","dentro de %n días"],
"_%n day ago_::_%n days ago_" : ["Hace %n día","hace %n días","hace %n días"],
"next month" : "mes siguiente",
"last month" : "mes pasado",
"_in %n month_::_in %n months_" : ["dentro de %n mes","dentro de %n meses","dentro de %n meses"],
"_%n month ago_::_%n months ago_" : ["Hace %n mes","hace %n meses","hace %n meses"],
"next year" : "año que viene",
"last year" : "año pasado",
"_in %n year_::_in %n years_" : ["dentro de %n año","dentro de %n años","dentro de %n años"],
"_%n year ago_::_%n years ago_" : ["Hace %n año","hace %n años","hace %n años"],
"_in %n hour_::_in %n hours_" : ["dentro de %n hora","dentro de %n horas","dentro de %n horas"],
"_%n hour ago_::_%n hours ago_" : ["Hace %n hora","hace %n horas","hace %n horas"],
"_in %n minute_::_in %n minutes_" : ["dentro de %n minuto","dentro de %n minutos","dentro de %n minutos"],
"_%n minute ago_::_%n minutes ago_" : ["Hace %n minuto","hace %n minutos","hace %n minutos"],
"in a few seconds" : "en unos segundos",
"seconds ago" : "hace segundos",
"Empty file" : "Archivo vacío",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "El módulo con ID %s no existe. Por favor, actívalo en la configuración de apps o contacta con tu administrador.",
"File already exists" : "El archivo ya existe",
"Invalid path" : "Ruta no válida",
"Failed to create file from template" : "Fallo al crear el archivo desde plantilla",
"Templates" : "Plantillas",
"File name is a reserved word" : "El nombre de archivo es una palabra reservada",
"File name contains at least one invalid character" : "El nombre del archivo contiene al menos un carácter inválido",
"File name is too long" : "El nombre del archivo es demasiado largo",
"Dot files are not allowed" : "Los archivos Dot no están permitidos",
"Empty filename is not allowed" : "No se puede dejar el nombre en blanco.",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "No se puede instalar la app \"%s\" debido a que no se puede leer la información de la app.",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "No se puede instalar la aplicación \"%s\" porque no es compatible con esta versión del servidor.",
"__language_name__" : "Español (España)",
"This is an automatically sent email, please do not reply." : "Este es un correo enviado automáticamente, por favor no responda.",
"Help" : "Ayuda",
"Appearance and accessibility" : "Apariencia y accesibilidad",
"Apps" : "Aplicaciones",
"Personal settings" : "Ajustes personales",
"Administration settings" : "Configuraciones de administración",
"Settings" : "Ajustes",
"Log out" : "Cerrar sesión",
"Users" : "Usuarios",
"Email" : "Correo electrónico",
"Mail %s" : "Correo %s",
"Fediverse" : "Fediverso",
"View %s on the fediverse" : "Ver %s en el fediverso",
"Phone" : "Teléfono",
"Call %s" : "Llamada %s",
"Twitter" : "Twitter",
"View %s on Twitter" : "Ver %s en Twitter",
"Website" : "Sitio web",
"Visit %s" : "Visita %s",
"Address" : "Dirección",
"Profile picture" : "Imagen de perfil",
"About" : "Acerca de",
"Display name" : "Nombre para mostrar",
"Headline" : "Titular",
"Organisation" : "Organización",
"Role" : "Puesto",
"Additional settings" : "Configuración adicional",
"Enter the database name for %s" : "Introduzca el nombre de la base de datos %s",
"You cannot use dots in the database name %s" : "No puede utilizar puntos para el nombre de base de datos 1%s ",
"You need to enter details of an existing account." : "Tienes que introducir los datos de una cuenta existente.",
"Oracle connection could not be established" : "No se pudo establecer la conexión a Oracle",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "Mac OS X no está soportado y %s no funcionará bien en esta plataforma. ¡Úsala bajo tu propio riesgo! ",
"For the best results, please consider using a GNU/Linux server instead." : "Para obtener los mejores resultados, considera utilizar un servidor GNU/Linux.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Parece que esta instancia %s está funcionando en un entorno PHP de 32-bits y el open_basedir se ha configurado en php.ini. Esto acarreará problemas con archivos de tamaño superior a 4GB y resulta totalmente desaconsejado.",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor, quite el ajuste de open_basedir —dentro de su php.ini— o pásese a PHP de 64 bits.",
"Set an admin password." : "Configurar la contraseña del administrador.",
"Cannot create or write into the data directory %s" : "No se puede crear o escribir en la carpeta de datos %s",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El motor compartido %s debe implementar la interfaz OCP\\Share_Backend",
"Sharing backend %s not found" : "El motor compartido %s no se ha encontrado",
"Sharing backend for %s not found" : "Motor compartido para %s no encontrado",
"%1$s shared »%2$s« with you and wants to add:" : "%1$s ha compartido «%2$s» contigo y quiere añadir:",
"%1$s shared »%2$s« with you and wants to add" : "%1$s ha compartido «%2$s» contigo y quiere añadir",
"»%s« added a note to a file shared with you" : "«%s» ha añadido una nota a un archivo compartido contigo",
"Open »%s«" : "Abrir »%s« ",
"%1$s via %2$s" : "%1$s vía %2$s",
"You are not allowed to share %s" : "Usted no está autorizado para compartir %s",
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
"Files cannot be shared with delete permissions" : "Los archivos no se pueden compartir con permisos de borrado",
"Files cannot be shared with create permissions" : "Los archivos no se pueden compartir con permisos de creación",
"Expiration date is in the past" : "Ha pasado la fecha de caducidad",
"_Cannot set expiration date more than %n day in the future_::_Cannot set expiration date more than %n days in the future_" : ["No se puede fijar la fecha de caducidad más de %n día en el futuro.","No se puede fijar la fecha de caducidad más de %n días en el futuro.","No se puede fijar la fecha de caducidad más de %n días en el futuro."],
"Sharing is only allowed with group members" : "Sólo está permitido compartir a los integrantes del grupo",
"%1$s shared »%2$s« with you" : "%1$s ha compartido «%2$s» contigo",
"%1$s shared »%2$s« with you." : "%1$s ha compartido «%2$s» contigo.",
"Click the button below to open it." : "Haz clic en el botón de abajo para abrirlo.",
"The requested share does not exist anymore" : "El recurso compartido solicitado ya no existe",
"The requested share comes from a disabled user" : "El recurso compartido solicitado proviene de un usuario deshabilitado",
"The user was not created because the user limit has been reached. Check your notifications to learn more." : "El usuario no fue creado ya que el límite de usuarios fue alcanzado. Compruebe sus notificaciones para aprender más.",
"Could not find category \"%s\"" : "No puede encontrar la categoría \"%s\"",
"Sunday" : "Domingo",
"Monday" : "Lunes",
"Tuesday" : "Martes",
"Wednesday" : "Miércoles",
"Thursday" : "Jueves",
"Friday" : "Viernes",
"Saturday" : "Sábado",
"Sun." : "Dom.",
"Mon." : "Lun.",
"Tue." : "Mar.",
"Wed." : "Mié.",
"Thu." : "Jue.",
"Fri." : "Vie.",
"Sat." : "Sáb.",
"Su" : "Do",
"Mo" : "Lu",
"Tu" : "Ma",
"We" : "Mi",
"Th" : "Ju",
"Fr" : "Vi",
"Sa" : "Sa",
"January" : "enero",
"February" : "febrero",
"March" : "marzo",
"April" : "abril",
"May" : "mayo",
"June" : "junio",
"July" : "julio",
"August" : "agosto",
"September" : "septiembre",
"October" : "octubre",
"November" : "noviembre",
"December" : "diciembre",
"Jan." : "Ene.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Abr.",
"May." : "May.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Ago.",
"Sep." : "Sep.",
"Oct." : "Oct.",
"Nov." : "Nov.",
"Dec." : "Dic.",
"A valid password must be provided" : "Se debe proporcionar una contraseña válida",
"Login canceled by app" : "Login cancelado por la app",
"App \"%1$s\" cannot be installed because the following dependencies are not fulfilled: %2$s" : "No se ha podido instlaar la app «%1$s» porque no se cumplen las siguientes dependencias: %2$s",
"a safe home for all your data" : "un hogar seguro para todos tus datos",
"File is currently busy, please try again later" : "El archivo se encuentra actualmente ocupado, por favor inténtelo de nuevo más tarde",
"Cannot download file" : "No se puede descargar archivo",
"Application is not enabled" : "La aplicación no está habilitada",
"Authentication error" : "Error de autenticación",
"Token expired. Please reload page." : "Token caducado. Por favor, recarge la página.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "No están instalados los drivers de BBDD (sqlite, mysql, o postgresql)",
"Cannot write into \"config\" directory." : "No se puede escribir en la carpeta «config».",
"This can usually be fixed by giving the web server write access to the config directory. See %s" : "Normalmente esteo se puede arreglar dando al servidor web acceso de escritura a la carpeta config. Véase %s",
"Or, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it. See %s" : "O, si prefieres mantener el archivo config.php como de solo lectura, marca la opción \"config_is_read_only\" a 'true' en él. Ver %s",
"Cannot write into \"apps\" directory." : "No se puede escribir en la carpeta «apps».",
"This can usually be fixed by giving the web server write access to the apps directory or disabling the App Store in the config file." : "Normalmente esto se puede arreglar dando al servidor web acceso de escritura a la carpeta de apps o desactivando la App Store en el archivo de configuración.",
"Cannot create \"data\" directory." : "No se puede crear la carpeta \"data\"",
"This can usually be fixed by giving the web server write access to the root directory. See %s" : "Normalmente esto se puede arreglar dando al servidor web acceso de escritura a la carpeta raíz. Véase %s",
"Permissions can usually be fixed by giving the web server write access to the root directory. See %s." : "Los permisos normalmente se pueden arreglar dando al servidor web acceso de escritura a la carpeta raíz. Véase %s",
"Your data directory is not writable." : "No se puede escribir en tu carpeta de datos.",
"Setting locale to %s failed." : "Fallo al configurar el idioma a %s.",
"Please install one of these locales on your system and restart your web server." : "Por favor, instala uno de estos idiomas en tu sistema y reinicia tu servidor web.",
"PHP module %s not installed." : "El módulo PHP %s no está instalado.",
"Please ask your server administrator to install the module." : "Consulte al administrador de su servidor para instalar el módulo.",
"PHP setting \"%s\" is not set to \"%s\"." : "La opción PHP \"%s\" no es \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "Ajustar esta configuración en php.ini hará que Nextcloud funcione de nuevo",
"<code>mbstring.func_overload</code> is set to <code>%s</code> instead of the expected value <code>0</code>." : "<code>mbstring.func_overload</code> está establecida como <code>%s</code> en lugar del valor esperado: <code>0</code>.",
"To fix this issue set <code>mbstring.func_overload</code> to <code>0</code> in your php.ini." : "Para arreglar este problema, establezca <code>mbstring.func_overload</code> en<code>0</code> en su php.ini.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "PHP está aparentemente configurado para eliminar bloques de documentos en línea. Esto hará que varias aplicaciones principales estén inaccesibles.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Probablemente esto venga a causa de la caché o un acelerador, tales como Zend OPcache o eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "Los módulos PHP se han instalado, pero aparecen listados como si faltaran",
"Please ask your server administrator to restart the web server." : "Consulte al administrador de su servidor para reiniciar el servidor web.",
"The required %s config variable is not configured in the config.php file." : "La variable de configuración %s requerida no está configurada en el archivo config.php.",
"Please ask your server administrator to check the Nextcloud configuration." : "Por favor, pida al administrador de su servidor que compruebe la configuración de Nextcloud.",
"Your data directory must be an absolute path." : "Tu carpeta de datos debe ser una ruta absoluta.",
"Check the value of \"datadirectory\" in your configuration." : "Comprueba el valor de «datadirectory» en tu configuración.",
"Your data directory is invalid." : "Tu carpeta de datos es inválida.",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Asegúrate de que existe un archivo llamado \".ocdata\" en la raíz del directorio de datos.",
"Action \"%s\" not supported or implemented." : "La acción \"%s\" no está soportada o implementada.",
"Authentication failed, wrong token or provider ID given" : "La autentificación ha fallado. Se ha dado un token o una ID de proveedor erróneos.",
"Parameters missing in order to complete the request. Missing Parameters: \"%s\"" : "Faltan parámetros para completar la petición. Parámetros que faltan: \"%s\"",
"ID \"%1$s\" already used by cloud federation provider \"%2$s\"" : "La ID «%1$s» ya está siendo usada por el proveedor de federación en la nube «%2$s»",
"Cloud Federation Provider with ID: \"%s\" does not exist." : "El proveedor de nube federada con ID \"%s\" no existe.",
"Could not obtain lock type %d on \"%s\"." : "No se pudo realizar el bloqueo %d en \"%s\".",
"Storage unauthorized. %s" : "Almacenamiento no autorizado. %s",
"Storage incomplete configuration. %s" : "Configuración de almacenamiento incompleta. %s",
"Storage connection error. %s" : "Error de conexión de almacenamiento. %s",
"Storage is temporarily not available" : "El almacenamiento no esta disponible temporalmente",
"Storage connection timeout. %s" : "Tiempo de conexión de almacenamiento agotado. %s",
"Free prompt" : "Prompt libre",
"Runs an arbitrary prompt through the language model." : "Ejecuta un prompt arbitrario mediante el modelo de lenguaje integrado.",
"Generate headline" : "Generar titular",
"Generates a possible headline for a text." : "Genera un posible titular para un texto.",
"Summarize" : "Resumir",
"Summarizes text by reducing its length without losing key information." : "Resume el texto reduciendo su longitud sin perder información clave.",
"Extract topics" : "Extraer tópicos",
"Extracts topics from a text and outputs them separated by commas." : "Extrae los tópicos de un texto y genera una salida separada por comas. ",
"The files of the app %1$s were not replaced correctly. Make sure it is a version compatible with the server." : "Los archivos de la app %1$s no se han reemplazado correctamente. Asegúrate de que es una versión compatible con el servidor.",
"404" : "404",
"Logged in user must be an admin, a sub admin or gotten special right to access this setting" : "La sesión del usuario debe corresponder a un administrador, subadministrador, o debe tener derechos especiales para acceder a esta configuración.",
"Logged in user must be an admin or sub admin" : "El usuario activo debe ser un administrador o subadministrador",
"Logged in user must be an admin" : "El usuario registrado debe ser un administrador",
"Full name" : "Nombre completo",
"Unknown user" : "Usuario desconocido",
"Enter the database username and name for %s" : "Introduzca el nombre de usuario y la contraseña para la base de datos %s",
"Enter the database username for %s" : "Introduzca el nombre de usuario para la base datos %s",
"MySQL username and/or password not valid" : "Usuario y/o contraseña de MySQL no válidos",
"Oracle username and/or password not valid" : "Usuario y/o contraseña de Oracle no válidos",
"PostgreSQL username and/or password not valid" : "Usuario y/o contraseña de PostgreSQL no válidos",
"Set an admin username." : "Configurar un nombre de usuario del administrador",
"Sharing %s failed, because this item is already shared with user %s" : "No se pudo compartir %s, porque este elemento ya está compartido con el usuario %s",
"The username is already being used" : "El nombre de usuario ya está en uso",
"Could not create user" : "No se ha podido crear el usuario",
"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", spaces and \"_.@-'\"" : "Solo los siguientes caracteres están permitidos en un nombre de usuario: \"a-z\", \"A-Z\", \"0-9\", espacios y \"_.@-'\"",
"A valid username must be provided" : "Se debe proporcionar un nombre de usuario válido",
"Username contains whitespace at the beginning or at the end" : "El nombre de usuario contiene espacios en blanco al principio o al final",
"Username must not consist of dots only" : "El nombre de usuario no debe consistir solo de puntos",
"Username is invalid because files already exist for this user" : "El nombre de usuario es incorrecto debido a a que los archivos ya existen para este usuario",
"User disabled" : "Usuario deshabilitado",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "libxml2 2.7.0 es requerido en esta o en versiones superiores. Ahora mismo tienes instalada %s.",
"To fix this issue update your libxml2 version and restart your web server." : "Para corregir este problema, actualice su versión de libxml2 y reinicie el servidor web.",
"PostgreSQL >= 9 required." : "PostgreSQL >= 9 requerido.",
"Please upgrade your database version." : "Por favor, actualiza la versión de tu base de datos.",
"Your data directory is readable by other users." : "Tu carpeta de datos puede ser leído por otros usuarios.",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Por favor, cambia los permisos a 0770 para que el directorio no se pueda mostrar a otros usuarios."
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}
+172
View File
@@ -0,0 +1,172 @@
OC.L10N.register(
"lib",
{
"Cannot write into \"config\" directory!" : "¡No se puede escribir en el directorio \"config\"!",
"See %s" : "Ver %s",
"Sample configuration detected" : "Se ha detectado la configuración de muestra",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Se ha detectado que la configuración de muestra ha sido copiada. Esto puede arruiniar tu instalacón y no está soportado. Por favor lee la documentación antes de hacer cambios en el archivo config.php",
"%1$s and %2$s" : "%1$s y %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s y %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s y %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s y %5$s",
"Education Edition" : "Edición Educativa",
"Enterprise bundle" : "Paquete empresarial",
"Groupware bundle" : "Paquete de Groupware",
"Social sharing bundle" : "Paquete para compartir en redes sociales",
"PHP %s or higher is required." : "Se requiere de PHP %s o superior.",
"PHP with a version lower than %s is required." : "PHP con una versión inferiror a la %s es requerido. ",
"%sbit or higher PHP required." : "se requiere PHP para %sbit o superior.",
"The command line tool %s could not be found" : "No fue posible encontar la herramienta de línea de comando %s",
"The library %s is not available." : "La biblioteca %s no está disponible. ",
"Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ",
"Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ",
"Authentication" : "Autenticación",
"Unknown filetype" : "Tipo de archivo desconocido",
"Invalid image" : "Imagen inválida",
"Avatar image is not square" : "La imagen del avatar no es un cuadrado",
"Files" : "Archivos",
"today" : "hoy",
"tomorrow" : "mañana",
"yesterday" : "ayer",
"_in %n day_::_in %n days_" : ["en %n día","en %n días","en %n días"],
"_%n day ago_::_%n days ago_" : ["hace %n día","hace %n días","hace %n días"],
"next month" : "próximo mes",
"last month" : "mes pasado",
"_in %n month_::_in %n months_" : ["en %n mes","en %n meses","en %n meses"],
"_%n month ago_::_%n months ago_" : ["Hace %n mes","Hace %n meses","Hace %n meses"],
"next year" : "próximo año",
"last year" : "año pasado",
"_in %n year_::_in %n years_" : ["en %n año","en %n años","en %n años"],
"_%n year ago_::_%n years ago_" : ["hace %n año","hace %n años","hace %n años"],
"_in %n hour_::_in %n hours_" : ["en %n hora","en %n horas","en %n horas"],
"_%n hour ago_::_%n hours ago_" : ["Hace %n hora","Hace %n horas","Hace %n horas"],
"_in %n minute_::_in %n minutes_" : ["en %n minuto","en %n minutos","en %n minutos"],
"_%n minute ago_::_%n minutes ago_" : ["Hace %n minuto","Hace %n minutos","Hace %n minutos"],
"in a few seconds" : "en algunos segundos",
"seconds ago" : "hace segundos",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "El módulo con ID: %sno existe. Por favor hablíitalo en tus configuraciones de aplicación o contacta a tu administrador. ",
"File already exists" : "El archivo ya existe",
"File name is a reserved word" : "Nombre de archivo es una palabra reservada",
"File name contains at least one invalid character" : "El nombre del archivo contiene al menos un caracter inválido",
"File name is too long" : "El nombre del archivo es demasiado largo",
"Dot files are not allowed" : "Los archivos Dot no están permitidos",
"Empty filename is not allowed" : "El uso de nombres de archivo vacíos no está permitido",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "La aplicación \"%s\" no puede ser instalada porque el archivo appinfo no se puede leer. ",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "La aplicación \"%s\" no puede ser instalada porque no es compatible con esta versión del servidor. ",
"__language_name__" : "Español (Latin America)",
"This is an automatically sent email, please do not reply." : "Este es un correo enviado automáticamente, por favor no lo contestes. ",
"Help" : "Ayuda",
"Apps" : "Aplicaciones",
"Settings" : "Configuraciones",
"Log out" : "Salir",
"Users" : "Usuarios",
"Email" : "Correo electrónico",
"Phone" : "Teléfono fijo",
"Twitter" : "Twitter",
"Website" : "Sitio web",
"Address" : "Dirección",
"Profile picture" : "Foto de perfil",
"About" : "Acerca de",
"Additional settings" : "Configuraciones adicionales",
"You need to enter details of an existing account." : "Necesitas ingresar los detalles de una cuenta existente.",
"Oracle connection could not be established" : "No fue posible establecer la conexión a Oracle",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "OS X de Mac no está soportado y %s no funcionará correctamente en esta plataforma ¡Úsalo bajo tu propio riesgo!",
"For the best results, please consider using a GNU/Linux server instead." : "Para mejores resultados, por favor cosidera usar en su lugar un servidor GNU/Linux.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
"Set an admin password." : "Establecer la contraseña del administrador.",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
"Open »%s«" : "Abrir »%s«",
"You are not allowed to share %s" : "No tienes permitido compartir %s",
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
"Expiration date is in the past" : "La fecha de expiración se encuentra en el pasado",
"Click the button below to open it." : "Haz click en el botón inferior para abrirlo. ",
"The requested share does not exist anymore" : "El recurso compartido solicitado ya no existe",
"Could not find category \"%s\"" : "No fue posible encontrar la categoria \"%s\"",
"Sunday" : "Domingo",
"Monday" : "Lunes",
"Tuesday" : "Martes",
"Wednesday" : "Miércoles",
"Thursday" : "Jueves",
"Friday" : "Viernes",
"Saturday" : "Sábado",
"Sun." : "Dom.",
"Mon." : "Lun.",
"Tue." : "Mar.",
"Wed." : "Mie.",
"Thu." : "Jue.",
"Fri." : "Vie.",
"Sat." : "Sab.",
"Su" : "Do",
"Mo" : "Lu",
"Tu" : "Ma",
"We" : "Mi",
"Th" : "Ju",
"Fr" : "Vi",
"Sa" : "Sa",
"January" : "Enero",
"February" : "Febrero",
"March" : "Marzo",
"April" : "Abril",
"May" : "Mayo",
"June" : "Junio",
"July" : "Julio",
"August" : "Agosto",
"September" : "Septiembre",
"October" : "Octubre",
"November" : "Noviembre",
"December" : "Diciembre",
"Jan." : "Ene.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Abr.",
"May." : "May.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Ago.",
"Sep." : "Sep.",
"Oct." : "Oct.",
"Nov." : "Nov.",
"Dec." : "Dic.",
"A valid password must be provided" : "Se debe proporcionar una contraseña válida",
"Login canceled by app" : "Inicio de sesión cancelado por la aplicación",
"a safe home for all your data" : "un lugar seguro para todos tus datos",
"File is currently busy, please try again later" : "El archivo se encuentra actualmente en uso, por favor intentalo más tarde. ",
"Application is not enabled" : "La aplicación está deshabilitada",
"Authentication error" : "Error de autenticación",
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "No cuentas con controladores de base de datos (sqlite, mysql o postgresql) instalados. ",
"PHP module %s not installed." : "El módulo de PHP %s no está instalado. ",
"Please ask your server administrator to install the module." : "Por favor solicita a tu adminsitrador la instalación del módulo. ",
"PHP setting \"%s\" is not set to \"%s\"." : "El ajuste PHP \"%s\" no esta establecido a \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "El cambiar este ajuste del archivo php.ini hará que Nextcloud corra de nuevo.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "Al parecer PHP está configurado para quitar los bloques de comentarios internos. Esto hará que varias aplicaciones principales sean inaccesibles. ",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Esto ha sido causado probablemente por un acelerador de caché como Zend OPcache o eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "¿Los módulos de PHP han sido instalados, pero se siguen enlistando como faltantes?",
"Please ask your server administrator to restart the web server." : "Por favor solicita al administrador reiniciar el servidor web. ",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Asegurate de que exista una archivo llamado \".ocdata\" en la raíz del directorio de datos. ",
"Could not obtain lock type %d on \"%s\"." : "No fue posible obtener el tipo de bloqueo %d en \"%s\". ",
"Storage unauthorized. %s" : "Almacenamiento no autorizado. %s",
"Storage incomplete configuration. %s" : "Configuración incompleta del almacenamiento. %s",
"Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s",
"Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible",
"Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s",
"Full name" : "Nombre completo",
"Unknown user" : "Ususario desconocido",
"Oracle username and/or password not valid" : "Usuario y/o contraseña de Oracle inválidos",
"PostgreSQL username and/or password not valid" : "El Usuario y/o Contraseña de PostgreSQL inválido(s)",
"Set an admin username." : "Establecer un Usuario administrador",
"Sharing %s failed, because this item is already shared with user %s" : "Se presento una falla al compartir %s, porque este elemento ya ha sido compartido con el usuario %s",
"The username is already being used" : "Ese usuario ya está en uso",
"Could not create user" : "No fue posible crear el usuario",
"A valid username must be provided" : "Debes proporcionar un nombre de usuario válido",
"Username contains whitespace at the beginning or at the end" : "El usuario contiene un espacio en blanco al inicio o al final",
"Username must not consist of dots only" : "El usuario no debe consistir de solo puntos. ",
"User disabled" : "Usuario deshabilitado",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Se requiere de por lo menos libxml2 2.7.0. Actualmente %s está instalado. ",
"To fix this issue update your libxml2 version and restart your web server." : "Para corregir este tema, por favor actualiza la versión de su libxml2 y reinicia tu servidor web. ",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Por favor cambia los permisos a 0770 para que el directorio no pueda ser enlistado por otros usuarios. "
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
+170
View File
@@ -0,0 +1,170 @@
{ "translations": {
"Cannot write into \"config\" directory!" : "¡No se puede escribir en el directorio \"config\"!",
"See %s" : "Ver %s",
"Sample configuration detected" : "Se ha detectado la configuración de muestra",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Se ha detectado que la configuración de muestra ha sido copiada. Esto puede arruiniar tu instalacón y no está soportado. Por favor lee la documentación antes de hacer cambios en el archivo config.php",
"%1$s and %2$s" : "%1$s y %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s y %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s y %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s y %5$s",
"Education Edition" : "Edición Educativa",
"Enterprise bundle" : "Paquete empresarial",
"Groupware bundle" : "Paquete de Groupware",
"Social sharing bundle" : "Paquete para compartir en redes sociales",
"PHP %s or higher is required." : "Se requiere de PHP %s o superior.",
"PHP with a version lower than %s is required." : "PHP con una versión inferiror a la %s es requerido. ",
"%sbit or higher PHP required." : "se requiere PHP para %sbit o superior.",
"The command line tool %s could not be found" : "No fue posible encontar la herramienta de línea de comando %s",
"The library %s is not available." : "La biblioteca %s no está disponible. ",
"Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ",
"Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ",
"Authentication" : "Autenticación",
"Unknown filetype" : "Tipo de archivo desconocido",
"Invalid image" : "Imagen inválida",
"Avatar image is not square" : "La imagen del avatar no es un cuadrado",
"Files" : "Archivos",
"today" : "hoy",
"tomorrow" : "mañana",
"yesterday" : "ayer",
"_in %n day_::_in %n days_" : ["en %n día","en %n días","en %n días"],
"_%n day ago_::_%n days ago_" : ["hace %n día","hace %n días","hace %n días"],
"next month" : "próximo mes",
"last month" : "mes pasado",
"_in %n month_::_in %n months_" : ["en %n mes","en %n meses","en %n meses"],
"_%n month ago_::_%n months ago_" : ["Hace %n mes","Hace %n meses","Hace %n meses"],
"next year" : "próximo año",
"last year" : "año pasado",
"_in %n year_::_in %n years_" : ["en %n año","en %n años","en %n años"],
"_%n year ago_::_%n years ago_" : ["hace %n año","hace %n años","hace %n años"],
"_in %n hour_::_in %n hours_" : ["en %n hora","en %n horas","en %n horas"],
"_%n hour ago_::_%n hours ago_" : ["Hace %n hora","Hace %n horas","Hace %n horas"],
"_in %n minute_::_in %n minutes_" : ["en %n minuto","en %n minutos","en %n minutos"],
"_%n minute ago_::_%n minutes ago_" : ["Hace %n minuto","Hace %n minutos","Hace %n minutos"],
"in a few seconds" : "en algunos segundos",
"seconds ago" : "hace segundos",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "El módulo con ID: %sno existe. Por favor hablíitalo en tus configuraciones de aplicación o contacta a tu administrador. ",
"File already exists" : "El archivo ya existe",
"File name is a reserved word" : "Nombre de archivo es una palabra reservada",
"File name contains at least one invalid character" : "El nombre del archivo contiene al menos un caracter inválido",
"File name is too long" : "El nombre del archivo es demasiado largo",
"Dot files are not allowed" : "Los archivos Dot no están permitidos",
"Empty filename is not allowed" : "El uso de nombres de archivo vacíos no está permitido",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "La aplicación \"%s\" no puede ser instalada porque el archivo appinfo no se puede leer. ",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "La aplicación \"%s\" no puede ser instalada porque no es compatible con esta versión del servidor. ",
"__language_name__" : "Español (Latin America)",
"This is an automatically sent email, please do not reply." : "Este es un correo enviado automáticamente, por favor no lo contestes. ",
"Help" : "Ayuda",
"Apps" : "Aplicaciones",
"Settings" : "Configuraciones",
"Log out" : "Salir",
"Users" : "Usuarios",
"Email" : "Correo electrónico",
"Phone" : "Teléfono fijo",
"Twitter" : "Twitter",
"Website" : "Sitio web",
"Address" : "Dirección",
"Profile picture" : "Foto de perfil",
"About" : "Acerca de",
"Additional settings" : "Configuraciones adicionales",
"You need to enter details of an existing account." : "Necesitas ingresar los detalles de una cuenta existente.",
"Oracle connection could not be established" : "No fue posible establecer la conexión a Oracle",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "OS X de Mac no está soportado y %s no funcionará correctamente en esta plataforma ¡Úsalo bajo tu propio riesgo!",
"For the best results, please consider using a GNU/Linux server instead." : "Para mejores resultados, por favor cosidera usar en su lugar un servidor GNU/Linux.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
"Set an admin password." : "Establecer la contraseña del administrador.",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
"Open »%s«" : "Abrir »%s«",
"You are not allowed to share %s" : "No tienes permitido compartir %s",
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
"Expiration date is in the past" : "La fecha de expiración se encuentra en el pasado",
"Click the button below to open it." : "Haz click en el botón inferior para abrirlo. ",
"The requested share does not exist anymore" : "El recurso compartido solicitado ya no existe",
"Could not find category \"%s\"" : "No fue posible encontrar la categoria \"%s\"",
"Sunday" : "Domingo",
"Monday" : "Lunes",
"Tuesday" : "Martes",
"Wednesday" : "Miércoles",
"Thursday" : "Jueves",
"Friday" : "Viernes",
"Saturday" : "Sábado",
"Sun." : "Dom.",
"Mon." : "Lun.",
"Tue." : "Mar.",
"Wed." : "Mie.",
"Thu." : "Jue.",
"Fri." : "Vie.",
"Sat." : "Sab.",
"Su" : "Do",
"Mo" : "Lu",
"Tu" : "Ma",
"We" : "Mi",
"Th" : "Ju",
"Fr" : "Vi",
"Sa" : "Sa",
"January" : "Enero",
"February" : "Febrero",
"March" : "Marzo",
"April" : "Abril",
"May" : "Mayo",
"June" : "Junio",
"July" : "Julio",
"August" : "Agosto",
"September" : "Septiembre",
"October" : "Octubre",
"November" : "Noviembre",
"December" : "Diciembre",
"Jan." : "Ene.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Abr.",
"May." : "May.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Ago.",
"Sep." : "Sep.",
"Oct." : "Oct.",
"Nov." : "Nov.",
"Dec." : "Dic.",
"A valid password must be provided" : "Se debe proporcionar una contraseña válida",
"Login canceled by app" : "Inicio de sesión cancelado por la aplicación",
"a safe home for all your data" : "un lugar seguro para todos tus datos",
"File is currently busy, please try again later" : "El archivo se encuentra actualmente en uso, por favor intentalo más tarde. ",
"Application is not enabled" : "La aplicación está deshabilitada",
"Authentication error" : "Error de autenticación",
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "No cuentas con controladores de base de datos (sqlite, mysql o postgresql) instalados. ",
"PHP module %s not installed." : "El módulo de PHP %s no está instalado. ",
"Please ask your server administrator to install the module." : "Por favor solicita a tu adminsitrador la instalación del módulo. ",
"PHP setting \"%s\" is not set to \"%s\"." : "El ajuste PHP \"%s\" no esta establecido a \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "El cambiar este ajuste del archivo php.ini hará que Nextcloud corra de nuevo.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "Al parecer PHP está configurado para quitar los bloques de comentarios internos. Esto hará que varias aplicaciones principales sean inaccesibles. ",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Esto ha sido causado probablemente por un acelerador de caché como Zend OPcache o eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "¿Los módulos de PHP han sido instalados, pero se siguen enlistando como faltantes?",
"Please ask your server administrator to restart the web server." : "Por favor solicita al administrador reiniciar el servidor web. ",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Asegurate de que exista una archivo llamado \".ocdata\" en la raíz del directorio de datos. ",
"Could not obtain lock type %d on \"%s\"." : "No fue posible obtener el tipo de bloqueo %d en \"%s\". ",
"Storage unauthorized. %s" : "Almacenamiento no autorizado. %s",
"Storage incomplete configuration. %s" : "Configuración incompleta del almacenamiento. %s",
"Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s",
"Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible",
"Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s",
"Full name" : "Nombre completo",
"Unknown user" : "Ususario desconocido",
"Oracle username and/or password not valid" : "Usuario y/o contraseña de Oracle inválidos",
"PostgreSQL username and/or password not valid" : "El Usuario y/o Contraseña de PostgreSQL inválido(s)",
"Set an admin username." : "Establecer un Usuario administrador",
"Sharing %s failed, because this item is already shared with user %s" : "Se presento una falla al compartir %s, porque este elemento ya ha sido compartido con el usuario %s",
"The username is already being used" : "Ese usuario ya está en uso",
"Could not create user" : "No fue posible crear el usuario",
"A valid username must be provided" : "Debes proporcionar un nombre de usuario válido",
"Username contains whitespace at the beginning or at the end" : "El usuario contiene un espacio en blanco al inicio o al final",
"Username must not consist of dots only" : "El usuario no debe consistir de solo puntos. ",
"User disabled" : "Usuario deshabilitado",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Se requiere de por lo menos libxml2 2.7.0. Actualmente %s está instalado. ",
"To fix this issue update your libxml2 version and restart your web server." : "Para corregir este tema, por favor actualiza la versión de su libxml2 y reinicia tu servidor web. ",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Por favor cambia los permisos a 0770 para que el directorio no pueda ser enlistado por otros usuarios. "
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}
+158
View File
@@ -0,0 +1,158 @@
OC.L10N.register(
"lib",
{
"Cannot write into \"config\" directory!" : "¡No se puede escribir en el directorio \"config\"!",
"See %s" : "Ver %s",
"Sample configuration detected" : "Se ha detectado la configuración de muestra",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Se ha detectado que la configuración de muestra ha sido copiada. Esto puede descomponer su instalacón y no está soportado. Favor de leer la documentación antes de hacer cambios en el archivo config.php",
"%1$s and %2$s" : "%1$s y %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s y %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s y %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s y %5$s",
"Enterprise bundle" : "Paquete empresarial",
"Groupware bundle" : "Paquete de Groupware",
"Social sharing bundle" : "Paquete para compartir en redes sociales",
"PHP %s or higher is required." : "Se requiere de PHPH %s o superior.",
"PHP with a version lower than %s is required." : "PHP con una versión inferior a la %s es requerido. ",
"%sbit or higher PHP required." : "se requiere PHP para %sbit o superior.",
"The command line tool %s could not be found" : "No fue posible encontar la herramienta de línea de comando %s",
"The library %s is not available." : "La biblioteca %s no está disponible. ",
"Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ",
"Server version %s or lower is required." : "La versión del servidor %s o inferior es requerida. ",
"Authentication" : "Autenticación",
"Unknown filetype" : "Tipo de archivo desconocido",
"Invalid image" : "Imagen inválida",
"Avatar image is not square" : "La imagen del avatar no es un cuadrado",
"Files" : "Archivos",
"today" : "hoy",
"yesterday" : "ayer",
"_%n day ago_::_%n days ago_" : ["hace %n día","hace %n días","hace %n días"],
"last month" : "mes pasado",
"_%n month ago_::_%n months ago_" : ["Hace %n mes","Hace %n meses","Hace %n meses"],
"last year" : "año pasado",
"_%n year ago_::_%n years ago_" : ["hace %n año","hace %n años","hace %n años"],
"_%n hour ago_::_%n hours ago_" : ["Hace %n hora","Hace %n horas","Hace %n horas"],
"_%n minute ago_::_%n minutes ago_" : ["Hace %n minuto","Hace %n minutos","Hace %n minutos"],
"seconds ago" : "hace segundos",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "El módulo con ID: %sno existe. Favor de habilitarlo en sus configuraciones de aplicación o contacte a su administrador. ",
"File name is a reserved word" : "Nombre de archivo es una palabra reservada",
"File name contains at least one invalid character" : "El nombre del archivo contiene al menos un caracter inválido",
"File name is too long" : "El nombre del archivo es demasiado largo",
"Dot files are not allowed" : "Los archivos Dot no están permitidos",
"Empty filename is not allowed" : "El uso de nombres de archivo vacíos no está permitido",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "La aplicación \"%s\" no puede ser instalada porque el archivo appinfo no se puede leer. ",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "La aplicación \"%s\" no puede ser instalada porque no es compatible con esta versión del servidor. ",
"__language_name__" : "Español (Argentina)",
"This is an automatically sent email, please do not reply." : "Este es un correo enviado automáticamente, favor de no contestarlo. ",
"Help" : "Ayuda",
"Apps" : "Aplicaciones",
"Settings" : "Ajustes",
"Log out" : "Cerrar sesión",
"Users" : "Usuarios",
"Email" : "Correo electrónico",
"Phone" : "Teléfono fijo",
"Twitter" : "Twitter",
"Website" : "Sitio web",
"Address" : "Dirección",
"Profile picture" : "Foto de perfil",
"About" : "Acerca de",
"Additional settings" : "Configuraciones adicionales",
"You need to enter details of an existing account." : "Necesita ingresar los detalles de una cuenta existente.",
"Oracle connection could not be established" : "No fue posible establecer la conexión a Oracle",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "OS X de Mac no está soportado y %s no funcionará correctamente en esta plataforma ¡Uselo bajo su propio riesgo!",
"For the best results, please consider using a GNU/Linux server instead." : "Para mejores resultados, favor de cosiderar usar en su lugar un servidor GNU/Linux.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Favor de eliminar el ajuste open_basedir de su archivo php.ini o cambie a PHP de 64 bits. ",
"Set an admin password." : "Establecer la contraseña del administrador.",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
"Open »%s«" : "Abrir »%s«",
"You are not allowed to share %s" : "No tiene permitido compartir %s",
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
"Expiration date is in the past" : "La fecha de expiración ya ha pasado",
"Click the button below to open it." : "Haga click en el botón de abajo para abrirlo.",
"Could not find category \"%s\"" : "No fue posible encontrar la categoria \"%s\"",
"Sunday" : "Domingo",
"Monday" : "Lunes",
"Tuesday" : "Martes",
"Wednesday" : "Miércoles",
"Thursday" : "Jueves",
"Friday" : "Viernes",
"Saturday" : "Sábado",
"Sun." : "Dom.",
"Mon." : "Lun.",
"Tue." : "Mar.",
"Wed." : "Mie.",
"Thu." : "Jue.",
"Fri." : "Vie.",
"Sat." : "Sab.",
"Su" : "Do",
"Mo" : "Lu",
"Tu" : "Ma",
"We" : "Mi",
"Th" : "Ju",
"Fr" : "Vi",
"Sa" : "Sa",
"January" : "Enero",
"February" : "Febrero",
"March" : "Marzo",
"April" : "Abril",
"May" : "Mayo",
"June" : "Junio",
"July" : "Julio",
"August" : "Agosto",
"September" : "Septiembre",
"October" : "Octubre",
"November" : "Noviembre",
"December" : "Diciembre",
"Jan." : "Ene.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Abr.",
"May." : "May.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Ago.",
"Sep." : "Sep.",
"Oct." : "Oct.",
"Nov." : "Nov.",
"Dec." : "Dic.",
"A valid password must be provided" : "Se debe proporcionar una contraseña válida",
"Login canceled by app" : "Inicio de sesión cancelado por la aplicación",
"a safe home for all your data" : "un lugar seguro para todos sus datos",
"File is currently busy, please try again later" : "El archivo se encuentra actualmente en uso, favor de intentarlo más tarde. ",
"Application is not enabled" : "La aplicación está deshabilitada",
"Authentication error" : "Error de autenticación",
"Token expired. Please reload page." : "La ficha ha expirado. Favor de recarga la página.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "No cuenta con controladores de base de datos (sqlite, mysql o postgresql) instalados. ",
"PHP module %s not installed." : "El módulo de PHP %s no está instalado. ",
"Please ask your server administrator to install the module." : "Favor de solicitar a su adminsitrador la instalación del módulo. ",
"PHP setting \"%s\" is not set to \"%s\"." : "El ajuste PHP \"%s\" no esta establecido a \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "El cambiar este ajuste del archivo php.ini hará que Nextcloud corra de nuevo.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "Al parecer PHP está configurado para quitar los bloques de comentarios internos. Esto hará que varias aplicaciones principales sean inaccesibles. ",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Esto ha sido causado probablemente por un acelerador de caché como Zend OPcache o eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "¿Los módulos de PHP han sido instalados, pero se siguen enlistando como faltantes?",
"Please ask your server administrator to restart the web server." : "Favor de solicitar al administrador reiniciar el servidor web. ",
"Could not obtain lock type %d on \"%s\"." : "No fue posible obtener el tipo de bloqueo %d en \"%s\". ",
"Storage unauthorized. %s" : "Almacenamiento no autorizado. %s",
"Storage incomplete configuration. %s" : "Configuración incompleta del almacenamiento. %s",
"Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s",
"Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible",
"Storage connection timeout. %s" : "Se agotó el tiempo de conexión del almacenamiento. %s",
"Full name" : "Nombre completo",
"Unknown user" : "Ususario desconocido",
"Oracle username and/or password not valid" : "El nombre de usuario y/o contraseña de Oracle inválidos",
"PostgreSQL username and/or password not valid" : "El nombre de usuario y/o contraseña de PostgreSQL inválidos",
"Set an admin username." : "Configurar un nombre de usuario del administrador",
"Sharing %s failed, because this item is already shared with user %s" : "Se presento una falla al compartir %s, porque este elemento ya ha sido compartido con el usuario %s",
"The username is already being used" : "Ese nombre de usuario ya está en uso",
"A valid username must be provided" : "Se debe proporcionar un nombre de usuario válido",
"Username contains whitespace at the beginning or at the end" : "El nombre del usuario contiene un espacio en blanco al inicio o al final",
"Username must not consist of dots only" : "El nombre de usuario no debe consistir de solo puntos. ",
"User disabled" : "Usuario deshabilitado",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Se requiere de por lo menos libxml2 2.7.0. Actualmente %s esta instalado. ",
"To fix this issue update your libxml2 version and restart your web server." : "Para corregir este tema, favor de actualizar la versión de su libxml2 y reinicie su servidor web. ",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Favor de cambiar los permisos a 0770 para que el directorio no pueda ser enlistado por otros usuarios. "
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
+156
View File
@@ -0,0 +1,156 @@
{ "translations": {
"Cannot write into \"config\" directory!" : "¡No se puede escribir en el directorio \"config\"!",
"See %s" : "Ver %s",
"Sample configuration detected" : "Se ha detectado la configuración de muestra",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Se ha detectado que la configuración de muestra ha sido copiada. Esto puede descomponer su instalacón y no está soportado. Favor de leer la documentación antes de hacer cambios en el archivo config.php",
"%1$s and %2$s" : "%1$s y %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s y %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s y %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s y %5$s",
"Enterprise bundle" : "Paquete empresarial",
"Groupware bundle" : "Paquete de Groupware",
"Social sharing bundle" : "Paquete para compartir en redes sociales",
"PHP %s or higher is required." : "Se requiere de PHPH %s o superior.",
"PHP with a version lower than %s is required." : "PHP con una versión inferior a la %s es requerido. ",
"%sbit or higher PHP required." : "se requiere PHP para %sbit o superior.",
"The command line tool %s could not be found" : "No fue posible encontar la herramienta de línea de comando %s",
"The library %s is not available." : "La biblioteca %s no está disponible. ",
"Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ",
"Server version %s or lower is required." : "La versión del servidor %s o inferior es requerida. ",
"Authentication" : "Autenticación",
"Unknown filetype" : "Tipo de archivo desconocido",
"Invalid image" : "Imagen inválida",
"Avatar image is not square" : "La imagen del avatar no es un cuadrado",
"Files" : "Archivos",
"today" : "hoy",
"yesterday" : "ayer",
"_%n day ago_::_%n days ago_" : ["hace %n día","hace %n días","hace %n días"],
"last month" : "mes pasado",
"_%n month ago_::_%n months ago_" : ["Hace %n mes","Hace %n meses","Hace %n meses"],
"last year" : "año pasado",
"_%n year ago_::_%n years ago_" : ["hace %n año","hace %n años","hace %n años"],
"_%n hour ago_::_%n hours ago_" : ["Hace %n hora","Hace %n horas","Hace %n horas"],
"_%n minute ago_::_%n minutes ago_" : ["Hace %n minuto","Hace %n minutos","Hace %n minutos"],
"seconds ago" : "hace segundos",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "El módulo con ID: %sno existe. Favor de habilitarlo en sus configuraciones de aplicación o contacte a su administrador. ",
"File name is a reserved word" : "Nombre de archivo es una palabra reservada",
"File name contains at least one invalid character" : "El nombre del archivo contiene al menos un caracter inválido",
"File name is too long" : "El nombre del archivo es demasiado largo",
"Dot files are not allowed" : "Los archivos Dot no están permitidos",
"Empty filename is not allowed" : "El uso de nombres de archivo vacíos no está permitido",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "La aplicación \"%s\" no puede ser instalada porque el archivo appinfo no se puede leer. ",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "La aplicación \"%s\" no puede ser instalada porque no es compatible con esta versión del servidor. ",
"__language_name__" : "Español (Argentina)",
"This is an automatically sent email, please do not reply." : "Este es un correo enviado automáticamente, favor de no contestarlo. ",
"Help" : "Ayuda",
"Apps" : "Aplicaciones",
"Settings" : "Ajustes",
"Log out" : "Cerrar sesión",
"Users" : "Usuarios",
"Email" : "Correo electrónico",
"Phone" : "Teléfono fijo",
"Twitter" : "Twitter",
"Website" : "Sitio web",
"Address" : "Dirección",
"Profile picture" : "Foto de perfil",
"About" : "Acerca de",
"Additional settings" : "Configuraciones adicionales",
"You need to enter details of an existing account." : "Necesita ingresar los detalles de una cuenta existente.",
"Oracle connection could not be established" : "No fue posible establecer la conexión a Oracle",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "OS X de Mac no está soportado y %s no funcionará correctamente en esta plataforma ¡Uselo bajo su propio riesgo!",
"For the best results, please consider using a GNU/Linux server instead." : "Para mejores resultados, favor de cosiderar usar en su lugar un servidor GNU/Linux.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Favor de eliminar el ajuste open_basedir de su archivo php.ini o cambie a PHP de 64 bits. ",
"Set an admin password." : "Establecer la contraseña del administrador.",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
"Open »%s«" : "Abrir »%s«",
"You are not allowed to share %s" : "No tiene permitido compartir %s",
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
"Expiration date is in the past" : "La fecha de expiración ya ha pasado",
"Click the button below to open it." : "Haga click en el botón de abajo para abrirlo.",
"Could not find category \"%s\"" : "No fue posible encontrar la categoria \"%s\"",
"Sunday" : "Domingo",
"Monday" : "Lunes",
"Tuesday" : "Martes",
"Wednesday" : "Miércoles",
"Thursday" : "Jueves",
"Friday" : "Viernes",
"Saturday" : "Sábado",
"Sun." : "Dom.",
"Mon." : "Lun.",
"Tue." : "Mar.",
"Wed." : "Mie.",
"Thu." : "Jue.",
"Fri." : "Vie.",
"Sat." : "Sab.",
"Su" : "Do",
"Mo" : "Lu",
"Tu" : "Ma",
"We" : "Mi",
"Th" : "Ju",
"Fr" : "Vi",
"Sa" : "Sa",
"January" : "Enero",
"February" : "Febrero",
"March" : "Marzo",
"April" : "Abril",
"May" : "Mayo",
"June" : "Junio",
"July" : "Julio",
"August" : "Agosto",
"September" : "Septiembre",
"October" : "Octubre",
"November" : "Noviembre",
"December" : "Diciembre",
"Jan." : "Ene.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Abr.",
"May." : "May.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Ago.",
"Sep." : "Sep.",
"Oct." : "Oct.",
"Nov." : "Nov.",
"Dec." : "Dic.",
"A valid password must be provided" : "Se debe proporcionar una contraseña válida",
"Login canceled by app" : "Inicio de sesión cancelado por la aplicación",
"a safe home for all your data" : "un lugar seguro para todos sus datos",
"File is currently busy, please try again later" : "El archivo se encuentra actualmente en uso, favor de intentarlo más tarde. ",
"Application is not enabled" : "La aplicación está deshabilitada",
"Authentication error" : "Error de autenticación",
"Token expired. Please reload page." : "La ficha ha expirado. Favor de recarga la página.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "No cuenta con controladores de base de datos (sqlite, mysql o postgresql) instalados. ",
"PHP module %s not installed." : "El módulo de PHP %s no está instalado. ",
"Please ask your server administrator to install the module." : "Favor de solicitar a su adminsitrador la instalación del módulo. ",
"PHP setting \"%s\" is not set to \"%s\"." : "El ajuste PHP \"%s\" no esta establecido a \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "El cambiar este ajuste del archivo php.ini hará que Nextcloud corra de nuevo.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "Al parecer PHP está configurado para quitar los bloques de comentarios internos. Esto hará que varias aplicaciones principales sean inaccesibles. ",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Esto ha sido causado probablemente por un acelerador de caché como Zend OPcache o eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "¿Los módulos de PHP han sido instalados, pero se siguen enlistando como faltantes?",
"Please ask your server administrator to restart the web server." : "Favor de solicitar al administrador reiniciar el servidor web. ",
"Could not obtain lock type %d on \"%s\"." : "No fue posible obtener el tipo de bloqueo %d en \"%s\". ",
"Storage unauthorized. %s" : "Almacenamiento no autorizado. %s",
"Storage incomplete configuration. %s" : "Configuración incompleta del almacenamiento. %s",
"Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s",
"Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible",
"Storage connection timeout. %s" : "Se agotó el tiempo de conexión del almacenamiento. %s",
"Full name" : "Nombre completo",
"Unknown user" : "Ususario desconocido",
"Oracle username and/or password not valid" : "El nombre de usuario y/o contraseña de Oracle inválidos",
"PostgreSQL username and/or password not valid" : "El nombre de usuario y/o contraseña de PostgreSQL inválidos",
"Set an admin username." : "Configurar un nombre de usuario del administrador",
"Sharing %s failed, because this item is already shared with user %s" : "Se presento una falla al compartir %s, porque este elemento ya ha sido compartido con el usuario %s",
"The username is already being used" : "Ese nombre de usuario ya está en uso",
"A valid username must be provided" : "Se debe proporcionar un nombre de usuario válido",
"Username contains whitespace at the beginning or at the end" : "El nombre del usuario contiene un espacio en blanco al inicio o al final",
"Username must not consist of dots only" : "El nombre de usuario no debe consistir de solo puntos. ",
"User disabled" : "Usuario deshabilitado",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Se requiere de por lo menos libxml2 2.7.0. Actualmente %s esta instalado. ",
"To fix this issue update your libxml2 version and restart your web server." : "Para corregir este tema, favor de actualizar la versión de su libxml2 y reinicie su servidor web. ",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Favor de cambiar los permisos a 0770 para que el directorio no pueda ser enlistado por otros usuarios. "
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}
+173
View File
@@ -0,0 +1,173 @@
OC.L10N.register(
"lib",
{
"Cannot write into \"config\" directory!" : "¡No se puede escribir en el directorio \"config\"!",
"See %s" : "Ver %s",
"Sample configuration detected" : "Se ha detectado la configuración de muestra",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Se ha detectado que la configuración de muestra ha sido copiada. Esto puede arruiniar tu instalacón y no está soportado. Por favor lee la documentación antes de hacer cambios en el archivo config.php",
"%1$s and %2$s" : "%1$s y %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s y %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s y %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s y %5$s",
"Education Edition" : "Edición Educativa",
"Enterprise bundle" : "Paquete empresarial",
"Groupware bundle" : "Paquete de Groupware",
"Social sharing bundle" : "Paquete para compartir en redes sociales",
"PHP %s or higher is required." : "Se requiere de PHP %s o superior.",
"PHP with a version lower than %s is required." : "PHP con una versión inferiror a la %s es requerido. ",
"%sbit or higher PHP required." : "se requiere PHP para %sbit o superior.",
"The command line tool %s could not be found" : "No fue posible encontar la herramienta de línea de comando %s",
"The library %s is not available." : "La biblioteca %s no está disponible. ",
"Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ",
"Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ",
"Authentication" : "Autenticación",
"Unknown filetype" : "Tipo de archivo desconocido",
"Invalid image" : "Imagen inválida",
"Avatar image is not square" : "La imagen del avatar no es un cuadrado",
"Files" : "Archivos",
"today" : "hoy",
"tomorrow" : "mañana",
"yesterday" : "ayer",
"_in %n day_::_in %n days_" : ["en %n día","en %n días","en %n días"],
"_%n day ago_::_%n days ago_" : ["hace %n día","hace %n días","hace %n días"],
"next month" : "próximo mes",
"last month" : "mes pasado",
"_in %n month_::_in %n months_" : ["en %n mes","en %n meses","en %n meses"],
"_%n month ago_::_%n months ago_" : ["Hace %n mes","Hace %n meses","Hace %n meses"],
"next year" : "próximo año",
"last year" : "año pasado",
"_in %n year_::_in %n years_" : ["en %n año","en %n años","en %n años"],
"_%n year ago_::_%n years ago_" : ["hace %n año","hace %n años","hace %n años"],
"_in %n hour_::_in %n hours_" : ["en %n hora","en %n horas","en %n horas"],
"_%n hour ago_::_%n hours ago_" : ["Hace %n hora","Hace %n horas","Hace %n horas"],
"_in %n minute_::_in %n minutes_" : ["en %n minuto","en %n minutos","en %n minutos"],
"_%n minute ago_::_%n minutes ago_" : ["Hace %n minuto","Hace %n minutos","Hace %n minutos"],
"in a few seconds" : "en algunos segundos",
"seconds ago" : "hace segundos",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "El módulo con ID: %sno existe. Por favor hablíitalo en tus configuraciones de aplicación o contacta a tu administrador. ",
"File already exists" : "El archivo ya existe",
"File name is a reserved word" : "Nombre de archivo es una palabra reservada",
"File name contains at least one invalid character" : "El nombre del archivo contiene al menos un caracter inválido",
"File name is too long" : "El nombre del archivo es demasiado largo",
"Dot files are not allowed" : "Los archivos Dot no están permitidos",
"Empty filename is not allowed" : "El uso de nombres de archivo vacíos no está permitido",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "La aplicación \"%s\" no puede ser instalada porque el archivo appinfo no se puede leer. ",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "La aplicación \"%s\" no puede ser instalada porque no es compatible con esta versión del servidor. ",
"__language_name__" : "Español (Chile)",
"This is an automatically sent email, please do not reply." : "Este es un correo enviado automáticamente, por favor no lo contestes. ",
"Help" : "Ayuda",
"Apps" : "Aplicaciones",
"Settings" : "Configuraciones",
"Log out" : "Cerrar sesión",
"Users" : "Usuarios",
"Email" : "Correo electrónico",
"Phone" : "Teléfono fijo",
"Twitter" : "Twitter",
"Website" : "Sitio web",
"Address" : "Dirección",
"Profile picture" : "Foto de perfil",
"About" : "Acerca de",
"Additional settings" : "Configuraciones adicionales",
"You need to enter details of an existing account." : "Necesitas ingresar los detalles de una cuenta existente.",
"Oracle connection could not be established" : "No fue posible establecer la conexión a Oracle",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "OS X de Mac no está soportado y %s no funcionará correctamente en esta plataforma ¡Úsalo bajo tu propio riesgo!",
"For the best results, please consider using a GNU/Linux server instead." : "Para mejores resultados, por favor cosidera usar en su lugar un servidor GNU/Linux.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
"Set an admin password." : "Establecer la contraseña del administrador.",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
"Open »%s«" : "Abrir »%s«",
"You are not allowed to share %s" : "No tienes permitido compartir %s",
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
"Expiration date is in the past" : "La fecha de expiración se encuentra en el pasado",
"Click the button below to open it." : "Haz click en el botón inferior para abrirlo. ",
"The requested share does not exist anymore" : "El recurso compartido solicitado ya no existe",
"Could not find category \"%s\"" : "No fue posible encontrar la categoria \"%s\"",
"Sunday" : "Domingo",
"Monday" : "Lunes",
"Tuesday" : "Martes",
"Wednesday" : "Miércoles",
"Thursday" : "Jueves",
"Friday" : "Viernes",
"Saturday" : "Sábado",
"Sun." : "Dom.",
"Mon." : "Lun.",
"Tue." : "Mar.",
"Wed." : "Mie.",
"Thu." : "Jue.",
"Fri." : "Vie.",
"Sat." : "Sab.",
"Su" : "Do",
"Mo" : "Lu",
"Tu" : "Ma",
"We" : "Mi",
"Th" : "Ju",
"Fr" : "Vi",
"Sa" : "Sa",
"January" : "Enero",
"February" : "Febrero",
"March" : "Marzo",
"April" : "Abril",
"May" : "Mayo",
"June" : "Junio",
"July" : "Julio",
"August" : "Agosto",
"September" : "Septiembre",
"October" : "Octubre",
"November" : "Noviembre",
"December" : "Diciembre",
"Jan." : "Ene.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Abr.",
"May." : "May.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Ago.",
"Sep." : "Sep.",
"Oct." : "Oct.",
"Nov." : "Nov.",
"Dec." : "Dic.",
"A valid password must be provided" : "Se debe proporcionar una contraseña válida",
"Login canceled by app" : "Inicio de sesión cancelado por la aplicación",
"a safe home for all your data" : "un lugar seguro para todos tus datos",
"File is currently busy, please try again later" : "El archivo se encuentra actualmente en uso, por favor intentalo más tarde. ",
"Application is not enabled" : "La aplicación está deshabilitada",
"Authentication error" : "Error de autenticación",
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "No cuentas con controladores de base de datos (sqlite, mysql o postgresql) instalados. ",
"PHP module %s not installed." : "El módulo de PHP %s no está instalado. ",
"Please ask your server administrator to install the module." : "Por favor solicita a tu adminsitrador la instalación del módulo. ",
"PHP setting \"%s\" is not set to \"%s\"." : "El ajuste PHP \"%s\" no esta establecido a \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "El cambiar este ajuste del archivo php.ini hará que Nextcloud corra de nuevo.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "Al parecer PHP está configurado para quitar los bloques de comentarios internos. Esto hará que varias aplicaciones principales sean inaccesibles. ",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Esto ha sido causado probablemente por un acelerador de caché como Zend OPcache o eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "¿Los módulos de PHP han sido instalados, pero se siguen enlistando como faltantes?",
"Please ask your server administrator to restart the web server." : "Por favor solicita al administrador reiniciar el servidor web. ",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Asegurate de que exista una archivo llamado \".ocdata\" en la raíz del directorio de datos. ",
"Could not obtain lock type %d on \"%s\"." : "No fue posible obtener el tipo de bloqueo %d en \"%s\". ",
"Storage unauthorized. %s" : "Almacenamiento no autorizado. %s",
"Storage incomplete configuration. %s" : "Configuración incompleta del almacenamiento. %s",
"Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s",
"Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible",
"Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s",
"Logged in user must be an admin" : "El usuario firmado debe ser un administrador",
"Full name" : "Nombre completo",
"Unknown user" : "Ususario desconocido",
"Oracle username and/or password not valid" : "Usuario y/o contraseña de Oracle inválidos",
"PostgreSQL username and/or password not valid" : "El Usuario y/o Contraseña de PostgreSQL inválido(s)",
"Set an admin username." : "Establecer un Usuario administrador",
"Sharing %s failed, because this item is already shared with user %s" : "Se presento una falla al compartir %s, porque este elemento ya ha sido compartido con el usuario %s",
"The username is already being used" : "Ese usuario ya está en uso",
"Could not create user" : "No fue posible crear el usuario",
"A valid username must be provided" : "Debes proporcionar un nombre de usuario válido",
"Username contains whitespace at the beginning or at the end" : "El usuario contiene un espacio en blanco al inicio o al final",
"Username must not consist of dots only" : "El usuario no debe consistir de solo puntos. ",
"User disabled" : "Usuario deshabilitado",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Se requiere de por lo menos libxml2 2.7.0. Actualmente %s está instalado. ",
"To fix this issue update your libxml2 version and restart your web server." : "Para corregir este tema, por favor actualiza la versión de su libxml2 y reinicia tu servidor web. ",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Por favor cambia los permisos a 0770 para que el directorio no pueda ser enlistado por otros usuarios. "
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
+171
View File
@@ -0,0 +1,171 @@
{ "translations": {
"Cannot write into \"config\" directory!" : "¡No se puede escribir en el directorio \"config\"!",
"See %s" : "Ver %s",
"Sample configuration detected" : "Se ha detectado la configuración de muestra",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Se ha detectado que la configuración de muestra ha sido copiada. Esto puede arruiniar tu instalacón y no está soportado. Por favor lee la documentación antes de hacer cambios en el archivo config.php",
"%1$s and %2$s" : "%1$s y %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s y %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s y %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s y %5$s",
"Education Edition" : "Edición Educativa",
"Enterprise bundle" : "Paquete empresarial",
"Groupware bundle" : "Paquete de Groupware",
"Social sharing bundle" : "Paquete para compartir en redes sociales",
"PHP %s or higher is required." : "Se requiere de PHP %s o superior.",
"PHP with a version lower than %s is required." : "PHP con una versión inferiror a la %s es requerido. ",
"%sbit or higher PHP required." : "se requiere PHP para %sbit o superior.",
"The command line tool %s could not be found" : "No fue posible encontar la herramienta de línea de comando %s",
"The library %s is not available." : "La biblioteca %s no está disponible. ",
"Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ",
"Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ",
"Authentication" : "Autenticación",
"Unknown filetype" : "Tipo de archivo desconocido",
"Invalid image" : "Imagen inválida",
"Avatar image is not square" : "La imagen del avatar no es un cuadrado",
"Files" : "Archivos",
"today" : "hoy",
"tomorrow" : "mañana",
"yesterday" : "ayer",
"_in %n day_::_in %n days_" : ["en %n día","en %n días","en %n días"],
"_%n day ago_::_%n days ago_" : ["hace %n día","hace %n días","hace %n días"],
"next month" : "próximo mes",
"last month" : "mes pasado",
"_in %n month_::_in %n months_" : ["en %n mes","en %n meses","en %n meses"],
"_%n month ago_::_%n months ago_" : ["Hace %n mes","Hace %n meses","Hace %n meses"],
"next year" : "próximo año",
"last year" : "año pasado",
"_in %n year_::_in %n years_" : ["en %n año","en %n años","en %n años"],
"_%n year ago_::_%n years ago_" : ["hace %n año","hace %n años","hace %n años"],
"_in %n hour_::_in %n hours_" : ["en %n hora","en %n horas","en %n horas"],
"_%n hour ago_::_%n hours ago_" : ["Hace %n hora","Hace %n horas","Hace %n horas"],
"_in %n minute_::_in %n minutes_" : ["en %n minuto","en %n minutos","en %n minutos"],
"_%n minute ago_::_%n minutes ago_" : ["Hace %n minuto","Hace %n minutos","Hace %n minutos"],
"in a few seconds" : "en algunos segundos",
"seconds ago" : "hace segundos",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "El módulo con ID: %sno existe. Por favor hablíitalo en tus configuraciones de aplicación o contacta a tu administrador. ",
"File already exists" : "El archivo ya existe",
"File name is a reserved word" : "Nombre de archivo es una palabra reservada",
"File name contains at least one invalid character" : "El nombre del archivo contiene al menos un caracter inválido",
"File name is too long" : "El nombre del archivo es demasiado largo",
"Dot files are not allowed" : "Los archivos Dot no están permitidos",
"Empty filename is not allowed" : "El uso de nombres de archivo vacíos no está permitido",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "La aplicación \"%s\" no puede ser instalada porque el archivo appinfo no se puede leer. ",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "La aplicación \"%s\" no puede ser instalada porque no es compatible con esta versión del servidor. ",
"__language_name__" : "Español (Chile)",
"This is an automatically sent email, please do not reply." : "Este es un correo enviado automáticamente, por favor no lo contestes. ",
"Help" : "Ayuda",
"Apps" : "Aplicaciones",
"Settings" : "Configuraciones",
"Log out" : "Cerrar sesión",
"Users" : "Usuarios",
"Email" : "Correo electrónico",
"Phone" : "Teléfono fijo",
"Twitter" : "Twitter",
"Website" : "Sitio web",
"Address" : "Dirección",
"Profile picture" : "Foto de perfil",
"About" : "Acerca de",
"Additional settings" : "Configuraciones adicionales",
"You need to enter details of an existing account." : "Necesitas ingresar los detalles de una cuenta existente.",
"Oracle connection could not be established" : "No fue posible establecer la conexión a Oracle",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "OS X de Mac no está soportado y %s no funcionará correctamente en esta plataforma ¡Úsalo bajo tu propio riesgo!",
"For the best results, please consider using a GNU/Linux server instead." : "Para mejores resultados, por favor cosidera usar en su lugar un servidor GNU/Linux.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
"Set an admin password." : "Establecer la contraseña del administrador.",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
"Open »%s«" : "Abrir »%s«",
"You are not allowed to share %s" : "No tienes permitido compartir %s",
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
"Expiration date is in the past" : "La fecha de expiración se encuentra en el pasado",
"Click the button below to open it." : "Haz click en el botón inferior para abrirlo. ",
"The requested share does not exist anymore" : "El recurso compartido solicitado ya no existe",
"Could not find category \"%s\"" : "No fue posible encontrar la categoria \"%s\"",
"Sunday" : "Domingo",
"Monday" : "Lunes",
"Tuesday" : "Martes",
"Wednesday" : "Miércoles",
"Thursday" : "Jueves",
"Friday" : "Viernes",
"Saturday" : "Sábado",
"Sun." : "Dom.",
"Mon." : "Lun.",
"Tue." : "Mar.",
"Wed." : "Mie.",
"Thu." : "Jue.",
"Fri." : "Vie.",
"Sat." : "Sab.",
"Su" : "Do",
"Mo" : "Lu",
"Tu" : "Ma",
"We" : "Mi",
"Th" : "Ju",
"Fr" : "Vi",
"Sa" : "Sa",
"January" : "Enero",
"February" : "Febrero",
"March" : "Marzo",
"April" : "Abril",
"May" : "Mayo",
"June" : "Junio",
"July" : "Julio",
"August" : "Agosto",
"September" : "Septiembre",
"October" : "Octubre",
"November" : "Noviembre",
"December" : "Diciembre",
"Jan." : "Ene.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Abr.",
"May." : "May.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Ago.",
"Sep." : "Sep.",
"Oct." : "Oct.",
"Nov." : "Nov.",
"Dec." : "Dic.",
"A valid password must be provided" : "Se debe proporcionar una contraseña válida",
"Login canceled by app" : "Inicio de sesión cancelado por la aplicación",
"a safe home for all your data" : "un lugar seguro para todos tus datos",
"File is currently busy, please try again later" : "El archivo se encuentra actualmente en uso, por favor intentalo más tarde. ",
"Application is not enabled" : "La aplicación está deshabilitada",
"Authentication error" : "Error de autenticación",
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "No cuentas con controladores de base de datos (sqlite, mysql o postgresql) instalados. ",
"PHP module %s not installed." : "El módulo de PHP %s no está instalado. ",
"Please ask your server administrator to install the module." : "Por favor solicita a tu adminsitrador la instalación del módulo. ",
"PHP setting \"%s\" is not set to \"%s\"." : "El ajuste PHP \"%s\" no esta establecido a \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "El cambiar este ajuste del archivo php.ini hará que Nextcloud corra de nuevo.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "Al parecer PHP está configurado para quitar los bloques de comentarios internos. Esto hará que varias aplicaciones principales sean inaccesibles. ",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Esto ha sido causado probablemente por un acelerador de caché como Zend OPcache o eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "¿Los módulos de PHP han sido instalados, pero se siguen enlistando como faltantes?",
"Please ask your server administrator to restart the web server." : "Por favor solicita al administrador reiniciar el servidor web. ",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Asegurate de que exista una archivo llamado \".ocdata\" en la raíz del directorio de datos. ",
"Could not obtain lock type %d on \"%s\"." : "No fue posible obtener el tipo de bloqueo %d en \"%s\". ",
"Storage unauthorized. %s" : "Almacenamiento no autorizado. %s",
"Storage incomplete configuration. %s" : "Configuración incompleta del almacenamiento. %s",
"Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s",
"Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible",
"Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s",
"Logged in user must be an admin" : "El usuario firmado debe ser un administrador",
"Full name" : "Nombre completo",
"Unknown user" : "Ususario desconocido",
"Oracle username and/or password not valid" : "Usuario y/o contraseña de Oracle inválidos",
"PostgreSQL username and/or password not valid" : "El Usuario y/o Contraseña de PostgreSQL inválido(s)",
"Set an admin username." : "Establecer un Usuario administrador",
"Sharing %s failed, because this item is already shared with user %s" : "Se presento una falla al compartir %s, porque este elemento ya ha sido compartido con el usuario %s",
"The username is already being used" : "Ese usuario ya está en uso",
"Could not create user" : "No fue posible crear el usuario",
"A valid username must be provided" : "Debes proporcionar un nombre de usuario válido",
"Username contains whitespace at the beginning or at the end" : "El usuario contiene un espacio en blanco al inicio o al final",
"Username must not consist of dots only" : "El usuario no debe consistir de solo puntos. ",
"User disabled" : "Usuario deshabilitado",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Se requiere de por lo menos libxml2 2.7.0. Actualmente %s está instalado. ",
"To fix this issue update your libxml2 version and restart your web server." : "Para corregir este tema, por favor actualiza la versión de su libxml2 y reinicia tu servidor web. ",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Por favor cambia los permisos a 0770 para que el directorio no pueda ser enlistado por otros usuarios. "
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}
+173
View File
@@ -0,0 +1,173 @@
OC.L10N.register(
"lib",
{
"Cannot write into \"config\" directory!" : "¡No se puede escribir en el directorio \"config\"!",
"See %s" : "Ver %s",
"Sample configuration detected" : "Se ha detectado la configuración de muestra",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Se ha detectado que la configuración de muestra ha sido copiada. Esto puede arruiniar tu instalacón y no está soportado. Por favor lee la documentación antes de hacer cambios en el archivo config.php",
"%1$s and %2$s" : "%1$s y %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s y %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s y %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s y %5$s",
"Education Edition" : "Edición Educativa",
"Enterprise bundle" : "Paquete empresarial",
"Groupware bundle" : "Paquete de Groupware",
"Social sharing bundle" : "Paquete para compartir en redes sociales",
"PHP %s or higher is required." : "Se requiere de PHP %s o superior.",
"PHP with a version lower than %s is required." : "PHP con una versión inferiror a la %s es requerido. ",
"%sbit or higher PHP required." : "se requiere PHP para %sbit o superior.",
"The command line tool %s could not be found" : "No fue posible encontar la herramienta de línea de comando %s",
"The library %s is not available." : "La biblioteca %s no está disponible. ",
"Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ",
"Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ",
"Authentication" : "Autenticación",
"Unknown filetype" : "Tipo de archivo desconocido",
"Invalid image" : "Imagen inválida",
"Avatar image is not square" : "La imagen del avatar no es un cuadrado",
"Files" : "Archivos",
"today" : "hoy",
"tomorrow" : "mañana",
"yesterday" : "ayer",
"_in %n day_::_in %n days_" : ["en %n día","en %n días","en %n días"],
"_%n day ago_::_%n days ago_" : ["hace %n día","hace %n días","hace %n días"],
"next month" : "próximo mes",
"last month" : "mes pasado",
"_in %n month_::_in %n months_" : ["en %n mes","en %n meses","en %n meses"],
"_%n month ago_::_%n months ago_" : ["Hace %n mes","Hace %n meses","Hace %n meses"],
"next year" : "próximo año",
"last year" : "año pasado",
"_in %n year_::_in %n years_" : ["en %n año","en %n años","en %n años"],
"_%n year ago_::_%n years ago_" : ["hace %n año","hace %n años","hace %n años"],
"_in %n hour_::_in %n hours_" : ["en %n hora","en %n horas","en %n horas"],
"_%n hour ago_::_%n hours ago_" : ["Hace %n hora","Hace %n horas","Hace %n horas"],
"_in %n minute_::_in %n minutes_" : ["en %n minuto","en %n minutos","en %n minutos"],
"_%n minute ago_::_%n minutes ago_" : ["Hace %n minuto","Hace %n minutos","Hace %n minutos"],
"in a few seconds" : "en algunos segundos",
"seconds ago" : "hace segundos",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "El módulo con ID: %sno existe. Por favor hablíitalo en tus configuraciones de aplicación o contacta a tu administrador. ",
"File already exists" : "El archivo ya existe",
"File name is a reserved word" : "Nombre de archivo es una palabra reservada",
"File name contains at least one invalid character" : "El nombre del archivo contiene al menos un caracter inválido",
"File name is too long" : "El nombre del archivo es demasiado largo",
"Dot files are not allowed" : "Los archivos Dot no están permitidos",
"Empty filename is not allowed" : "El uso de nombres de archivo vacíos no está permitido",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "La aplicación \"%s\" no puede ser instalada porque el archivo appinfo no se puede leer. ",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "La aplicación \"%s\" no puede ser instalada porque no es compatible con esta versión del servidor. ",
"__language_name__" : "Español (Colombia)",
"This is an automatically sent email, please do not reply." : "Este es un correo enviado automáticamente, por favor no lo contestes. ",
"Help" : "Ayuda",
"Apps" : "Aplicaciones",
"Settings" : "Configuraciones",
"Log out" : "Cerrar sesión",
"Users" : "Usuarios",
"Email" : "Correo electrónico",
"Phone" : "Teléfono fijo",
"Twitter" : "Twitter",
"Website" : "Sitio web",
"Address" : "Dirección",
"Profile picture" : "Foto de perfil",
"About" : "Acerca de",
"Additional settings" : "Configuraciones adicionales",
"You need to enter details of an existing account." : "Necesitas ingresar los detalles de una cuenta existente.",
"Oracle connection could not be established" : "No fue posible establecer la conexión a Oracle",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "OS X de Mac no está soportado y %s no funcionará correctamente en esta plataforma ¡Úsalo bajo tu propio riesgo!",
"For the best results, please consider using a GNU/Linux server instead." : "Para mejores resultados, por favor cosidera usar en su lugar un servidor GNU/Linux.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
"Set an admin password." : "Establecer la contraseña del administrador.",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
"Open »%s«" : "Abrir »%s«",
"You are not allowed to share %s" : "No tienes permitido compartir %s",
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
"Expiration date is in the past" : "La fecha de expiración se encuentra en el pasado",
"Click the button below to open it." : "Haz click en el botón inferior para abrirlo. ",
"The requested share does not exist anymore" : "El recurso compartido solicitado ya no existe",
"Could not find category \"%s\"" : "No fue posible encontrar la categoria \"%s\"",
"Sunday" : "Domingo",
"Monday" : "Lunes",
"Tuesday" : "Martes",
"Wednesday" : "Miércoles",
"Thursday" : "Jueves",
"Friday" : "Viernes",
"Saturday" : "Sábado",
"Sun." : "Dom.",
"Mon." : "Lun.",
"Tue." : "Mar.",
"Wed." : "Mie.",
"Thu." : "Jue.",
"Fri." : "Vie.",
"Sat." : "Sab.",
"Su" : "Do",
"Mo" : "Lu",
"Tu" : "Ma",
"We" : "Mi",
"Th" : "Ju",
"Fr" : "Vi",
"Sa" : "Sa",
"January" : "Enero",
"February" : "Febrero",
"March" : "Marzo",
"April" : "Abril",
"May" : "Mayo",
"June" : "Junio",
"July" : "Julio",
"August" : "Agosto",
"September" : "Septiembre",
"October" : "Octubre",
"November" : "Noviembre",
"December" : "Diciembre",
"Jan." : "Ene.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Abr.",
"May." : "May.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Ago.",
"Sep." : "Sep.",
"Oct." : "Oct.",
"Nov." : "Nov.",
"Dec." : "Dic.",
"A valid password must be provided" : "Se debe proporcionar una contraseña válida",
"Login canceled by app" : "Inicio de sesión cancelado por la aplicación",
"a safe home for all your data" : "un lugar seguro para todos tus datos",
"File is currently busy, please try again later" : "El archivo se encuentra actualmente en uso, por favor intentalo más tarde. ",
"Application is not enabled" : "La aplicación está deshabilitada",
"Authentication error" : "Error de autenticación",
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "No cuentas con controladores de base de datos (sqlite, mysql o postgresql) instalados. ",
"PHP module %s not installed." : "El módulo de PHP %s no está instalado. ",
"Please ask your server administrator to install the module." : "Por favor solicita a tu adminsitrador la instalación del módulo. ",
"PHP setting \"%s\" is not set to \"%s\"." : "El ajuste PHP \"%s\" no esta establecido a \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "El cambiar este ajuste del archivo php.ini hará que Nextcloud corra de nuevo.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "Al parecer PHP está configurado para quitar los bloques de comentarios internos. Esto hará que varias aplicaciones principales sean inaccesibles. ",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Esto ha sido causado probablemente por un acelerador de caché como Zend OPcache o eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "¿Los módulos de PHP han sido instalados, pero se siguen enlistando como faltantes?",
"Please ask your server administrator to restart the web server." : "Por favor solicita al administrador reiniciar el servidor web. ",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Asegurate de que exista una archivo llamado \".ocdata\" en la raíz del directorio de datos. ",
"Could not obtain lock type %d on \"%s\"." : "No fue posible obtener el tipo de bloqueo %d en \"%s\". ",
"Storage unauthorized. %s" : "Almacenamiento no autorizado. %s",
"Storage incomplete configuration. %s" : "Configuración incompleta del almacenamiento. %s",
"Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s",
"Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible",
"Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s",
"Logged in user must be an admin" : "El usuario firmado debe ser un administrador",
"Full name" : "Nombre completo",
"Unknown user" : "Ususario desconocido",
"Oracle username and/or password not valid" : "Usuario y/o contraseña de Oracle inválidos",
"PostgreSQL username and/or password not valid" : "El Usuario y/o Contraseña de PostgreSQL inválido(s)",
"Set an admin username." : "Establecer un Usuario administrador",
"Sharing %s failed, because this item is already shared with user %s" : "Se presento una falla al compartir %s, porque este elemento ya ha sido compartido con el usuario %s",
"The username is already being used" : "Ese usuario ya está en uso",
"Could not create user" : "No fue posible crear el usuario",
"A valid username must be provided" : "Debes proporcionar un nombre de usuario válido",
"Username contains whitespace at the beginning or at the end" : "El usuario contiene un espacio en blanco al inicio o al final",
"Username must not consist of dots only" : "El usuario no debe consistir de solo puntos. ",
"User disabled" : "Usuario deshabilitado",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Se requiere de por lo menos libxml2 2.7.0. Actualmente %s está instalado. ",
"To fix this issue update your libxml2 version and restart your web server." : "Para corregir este tema, por favor actualiza la versión de su libxml2 y reinicia tu servidor web. ",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Por favor cambia los permisos a 0770 para que el directorio no pueda ser enlistado por otros usuarios. "
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
+171
View File
@@ -0,0 +1,171 @@
{ "translations": {
"Cannot write into \"config\" directory!" : "¡No se puede escribir en el directorio \"config\"!",
"See %s" : "Ver %s",
"Sample configuration detected" : "Se ha detectado la configuración de muestra",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Se ha detectado que la configuración de muestra ha sido copiada. Esto puede arruiniar tu instalacón y no está soportado. Por favor lee la documentación antes de hacer cambios en el archivo config.php",
"%1$s and %2$s" : "%1$s y %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s y %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s y %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s y %5$s",
"Education Edition" : "Edición Educativa",
"Enterprise bundle" : "Paquete empresarial",
"Groupware bundle" : "Paquete de Groupware",
"Social sharing bundle" : "Paquete para compartir en redes sociales",
"PHP %s or higher is required." : "Se requiere de PHP %s o superior.",
"PHP with a version lower than %s is required." : "PHP con una versión inferiror a la %s es requerido. ",
"%sbit or higher PHP required." : "se requiere PHP para %sbit o superior.",
"The command line tool %s could not be found" : "No fue posible encontar la herramienta de línea de comando %s",
"The library %s is not available." : "La biblioteca %s no está disponible. ",
"Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ",
"Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ",
"Authentication" : "Autenticación",
"Unknown filetype" : "Tipo de archivo desconocido",
"Invalid image" : "Imagen inválida",
"Avatar image is not square" : "La imagen del avatar no es un cuadrado",
"Files" : "Archivos",
"today" : "hoy",
"tomorrow" : "mañana",
"yesterday" : "ayer",
"_in %n day_::_in %n days_" : ["en %n día","en %n días","en %n días"],
"_%n day ago_::_%n days ago_" : ["hace %n día","hace %n días","hace %n días"],
"next month" : "próximo mes",
"last month" : "mes pasado",
"_in %n month_::_in %n months_" : ["en %n mes","en %n meses","en %n meses"],
"_%n month ago_::_%n months ago_" : ["Hace %n mes","Hace %n meses","Hace %n meses"],
"next year" : "próximo año",
"last year" : "año pasado",
"_in %n year_::_in %n years_" : ["en %n año","en %n años","en %n años"],
"_%n year ago_::_%n years ago_" : ["hace %n año","hace %n años","hace %n años"],
"_in %n hour_::_in %n hours_" : ["en %n hora","en %n horas","en %n horas"],
"_%n hour ago_::_%n hours ago_" : ["Hace %n hora","Hace %n horas","Hace %n horas"],
"_in %n minute_::_in %n minutes_" : ["en %n minuto","en %n minutos","en %n minutos"],
"_%n minute ago_::_%n minutes ago_" : ["Hace %n minuto","Hace %n minutos","Hace %n minutos"],
"in a few seconds" : "en algunos segundos",
"seconds ago" : "hace segundos",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "El módulo con ID: %sno existe. Por favor hablíitalo en tus configuraciones de aplicación o contacta a tu administrador. ",
"File already exists" : "El archivo ya existe",
"File name is a reserved word" : "Nombre de archivo es una palabra reservada",
"File name contains at least one invalid character" : "El nombre del archivo contiene al menos un caracter inválido",
"File name is too long" : "El nombre del archivo es demasiado largo",
"Dot files are not allowed" : "Los archivos Dot no están permitidos",
"Empty filename is not allowed" : "El uso de nombres de archivo vacíos no está permitido",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "La aplicación \"%s\" no puede ser instalada porque el archivo appinfo no se puede leer. ",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "La aplicación \"%s\" no puede ser instalada porque no es compatible con esta versión del servidor. ",
"__language_name__" : "Español (Colombia)",
"This is an automatically sent email, please do not reply." : "Este es un correo enviado automáticamente, por favor no lo contestes. ",
"Help" : "Ayuda",
"Apps" : "Aplicaciones",
"Settings" : "Configuraciones",
"Log out" : "Cerrar sesión",
"Users" : "Usuarios",
"Email" : "Correo electrónico",
"Phone" : "Teléfono fijo",
"Twitter" : "Twitter",
"Website" : "Sitio web",
"Address" : "Dirección",
"Profile picture" : "Foto de perfil",
"About" : "Acerca de",
"Additional settings" : "Configuraciones adicionales",
"You need to enter details of an existing account." : "Necesitas ingresar los detalles de una cuenta existente.",
"Oracle connection could not be established" : "No fue posible establecer la conexión a Oracle",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "OS X de Mac no está soportado y %s no funcionará correctamente en esta plataforma ¡Úsalo bajo tu propio riesgo!",
"For the best results, please consider using a GNU/Linux server instead." : "Para mejores resultados, por favor cosidera usar en su lugar un servidor GNU/Linux.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
"Set an admin password." : "Establecer la contraseña del administrador.",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
"Open »%s«" : "Abrir »%s«",
"You are not allowed to share %s" : "No tienes permitido compartir %s",
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
"Expiration date is in the past" : "La fecha de expiración se encuentra en el pasado",
"Click the button below to open it." : "Haz click en el botón inferior para abrirlo. ",
"The requested share does not exist anymore" : "El recurso compartido solicitado ya no existe",
"Could not find category \"%s\"" : "No fue posible encontrar la categoria \"%s\"",
"Sunday" : "Domingo",
"Monday" : "Lunes",
"Tuesday" : "Martes",
"Wednesday" : "Miércoles",
"Thursday" : "Jueves",
"Friday" : "Viernes",
"Saturday" : "Sábado",
"Sun." : "Dom.",
"Mon." : "Lun.",
"Tue." : "Mar.",
"Wed." : "Mie.",
"Thu." : "Jue.",
"Fri." : "Vie.",
"Sat." : "Sab.",
"Su" : "Do",
"Mo" : "Lu",
"Tu" : "Ma",
"We" : "Mi",
"Th" : "Ju",
"Fr" : "Vi",
"Sa" : "Sa",
"January" : "Enero",
"February" : "Febrero",
"March" : "Marzo",
"April" : "Abril",
"May" : "Mayo",
"June" : "Junio",
"July" : "Julio",
"August" : "Agosto",
"September" : "Septiembre",
"October" : "Octubre",
"November" : "Noviembre",
"December" : "Diciembre",
"Jan." : "Ene.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Abr.",
"May." : "May.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Ago.",
"Sep." : "Sep.",
"Oct." : "Oct.",
"Nov." : "Nov.",
"Dec." : "Dic.",
"A valid password must be provided" : "Se debe proporcionar una contraseña válida",
"Login canceled by app" : "Inicio de sesión cancelado por la aplicación",
"a safe home for all your data" : "un lugar seguro para todos tus datos",
"File is currently busy, please try again later" : "El archivo se encuentra actualmente en uso, por favor intentalo más tarde. ",
"Application is not enabled" : "La aplicación está deshabilitada",
"Authentication error" : "Error de autenticación",
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "No cuentas con controladores de base de datos (sqlite, mysql o postgresql) instalados. ",
"PHP module %s not installed." : "El módulo de PHP %s no está instalado. ",
"Please ask your server administrator to install the module." : "Por favor solicita a tu adminsitrador la instalación del módulo. ",
"PHP setting \"%s\" is not set to \"%s\"." : "El ajuste PHP \"%s\" no esta establecido a \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "El cambiar este ajuste del archivo php.ini hará que Nextcloud corra de nuevo.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "Al parecer PHP está configurado para quitar los bloques de comentarios internos. Esto hará que varias aplicaciones principales sean inaccesibles. ",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Esto ha sido causado probablemente por un acelerador de caché como Zend OPcache o eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "¿Los módulos de PHP han sido instalados, pero se siguen enlistando como faltantes?",
"Please ask your server administrator to restart the web server." : "Por favor solicita al administrador reiniciar el servidor web. ",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Asegurate de que exista una archivo llamado \".ocdata\" en la raíz del directorio de datos. ",
"Could not obtain lock type %d on \"%s\"." : "No fue posible obtener el tipo de bloqueo %d en \"%s\". ",
"Storage unauthorized. %s" : "Almacenamiento no autorizado. %s",
"Storage incomplete configuration. %s" : "Configuración incompleta del almacenamiento. %s",
"Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s",
"Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible",
"Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s",
"Logged in user must be an admin" : "El usuario firmado debe ser un administrador",
"Full name" : "Nombre completo",
"Unknown user" : "Ususario desconocido",
"Oracle username and/or password not valid" : "Usuario y/o contraseña de Oracle inválidos",
"PostgreSQL username and/or password not valid" : "El Usuario y/o Contraseña de PostgreSQL inválido(s)",
"Set an admin username." : "Establecer un Usuario administrador",
"Sharing %s failed, because this item is already shared with user %s" : "Se presento una falla al compartir %s, porque este elemento ya ha sido compartido con el usuario %s",
"The username is already being used" : "Ese usuario ya está en uso",
"Could not create user" : "No fue posible crear el usuario",
"A valid username must be provided" : "Debes proporcionar un nombre de usuario válido",
"Username contains whitespace at the beginning or at the end" : "El usuario contiene un espacio en blanco al inicio o al final",
"Username must not consist of dots only" : "El usuario no debe consistir de solo puntos. ",
"User disabled" : "Usuario deshabilitado",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Se requiere de por lo menos libxml2 2.7.0. Actualmente %s está instalado. ",
"To fix this issue update your libxml2 version and restart your web server." : "Para corregir este tema, por favor actualiza la versión de su libxml2 y reinicia tu servidor web. ",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Por favor cambia los permisos a 0770 para que el directorio no pueda ser enlistado por otros usuarios. "
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}
+173
View File
@@ -0,0 +1,173 @@
OC.L10N.register(
"lib",
{
"Cannot write into \"config\" directory!" : "¡No se puede escribir en el directorio \"config\"!",
"See %s" : "Ver %s",
"Sample configuration detected" : "Se ha detectado la configuración de muestra",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Se ha detectado que la configuración de muestra ha sido copiada. Esto puede arruiniar tu instalacón y no está soportado. Por favor lee la documentación antes de hacer cambios en el archivo config.php",
"%1$s and %2$s" : "%1$s y %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s y %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s y %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s y %5$s",
"Education Edition" : "Edición Educativa",
"Enterprise bundle" : "Paquete empresarial",
"Groupware bundle" : "Paquete de Groupware",
"Social sharing bundle" : "Paquete para compartir en redes sociales",
"PHP %s or higher is required." : "Se requiere de PHP %s o superior.",
"PHP with a version lower than %s is required." : "PHP con una versión inferiror a la %s es requerido. ",
"%sbit or higher PHP required." : "se requiere PHP para %sbit o superior.",
"The command line tool %s could not be found" : "No fue posible encontar la herramienta de línea de comando %s",
"The library %s is not available." : "La biblioteca %s no está disponible. ",
"Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ",
"Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ",
"Authentication" : "Autenticación",
"Unknown filetype" : "Tipo de archivo desconocido",
"Invalid image" : "Imagen inválida",
"Avatar image is not square" : "La imagen del avatar no es un cuadrado",
"Files" : "Archivos",
"today" : "hoy",
"tomorrow" : "mañana",
"yesterday" : "ayer",
"_in %n day_::_in %n days_" : ["en %n día","en %n días","en %n días"],
"_%n day ago_::_%n days ago_" : ["hace %n día","hace %n días","hace %n días"],
"next month" : "próximo mes",
"last month" : "mes pasado",
"_in %n month_::_in %n months_" : ["en %n mes","en %n meses","en %n meses"],
"_%n month ago_::_%n months ago_" : ["Hace %n mes","Hace %n meses","Hace %n meses"],
"next year" : "próximo año",
"last year" : "año pasado",
"_in %n year_::_in %n years_" : ["en %n año","en %n años","en %n años"],
"_%n year ago_::_%n years ago_" : ["hace %n año","hace %n años","hace %n años"],
"_in %n hour_::_in %n hours_" : ["en %n hora","en %n horas","en %n horas"],
"_%n hour ago_::_%n hours ago_" : ["Hace %n hora","Hace %n horas","Hace %n horas"],
"_in %n minute_::_in %n minutes_" : ["en %n minuto","en %n minutos","en %n minutos"],
"_%n minute ago_::_%n minutes ago_" : ["Hace %n minuto","Hace %n minutos","Hace %n minutos"],
"in a few seconds" : "en algunos segundos",
"seconds ago" : "hace segundos",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "El módulo con ID: %sno existe. Por favor hablíitalo en tus configuraciones de aplicación o contacta a tu administrador. ",
"File already exists" : "El archivo ya existe",
"File name is a reserved word" : "Nombre de archivo es una palabra reservada",
"File name contains at least one invalid character" : "El nombre del archivo contiene al menos un caracter inválido",
"File name is too long" : "El nombre del archivo es demasiado largo",
"Dot files are not allowed" : "Los archivos Dot no están permitidos",
"Empty filename is not allowed" : "El uso de nombres de archivo vacíos no está permitido",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "La aplicación \"%s\" no puede ser instalada porque el archivo appinfo no se puede leer. ",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "La aplicación \"%s\" no puede ser instalada porque no es compatible con esta versión del servidor. ",
"__language_name__" : "Español (Costa Rica)",
"This is an automatically sent email, please do not reply." : "Este es un correo enviado automáticamente, por favor no lo contestes. ",
"Help" : "Ayuda",
"Apps" : "Aplicaciones",
"Settings" : "Configuraciones",
"Log out" : "Cerrar sesión",
"Users" : "Usuarios",
"Email" : "Correo electrónico",
"Phone" : "Teléfono fijo",
"Twitter" : "Twitter",
"Website" : "Sitio web",
"Address" : "Dirección",
"Profile picture" : "Foto de perfil",
"About" : "Acerca de",
"Additional settings" : "Configuraciones adicionales",
"You need to enter details of an existing account." : "Necesitas ingresar los detalles de una cuenta existente.",
"Oracle connection could not be established" : "No fue posible establecer la conexión a Oracle",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "OS X de Mac no está soportado y %s no funcionará correctamente en esta plataforma ¡Úsalo bajo tu propio riesgo!",
"For the best results, please consider using a GNU/Linux server instead." : "Para mejores resultados, por favor cosidera usar en su lugar un servidor GNU/Linux.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
"Set an admin password." : "Establecer la contraseña del administrador.",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
"Open »%s«" : "Abrir »%s«",
"You are not allowed to share %s" : "No tienes permitido compartir %s",
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
"Expiration date is in the past" : "La fecha de expiración se encuentra en el pasado",
"Click the button below to open it." : "Haz click en el botón inferior para abrirlo. ",
"The requested share does not exist anymore" : "El recurso compartido solicitado ya no existe",
"Could not find category \"%s\"" : "No fue posible encontrar la categoria \"%s\"",
"Sunday" : "Domingo",
"Monday" : "Lunes",
"Tuesday" : "Martes",
"Wednesday" : "Miércoles",
"Thursday" : "Jueves",
"Friday" : "Viernes",
"Saturday" : "Sábado",
"Sun." : "Dom.",
"Mon." : "Lun.",
"Tue." : "Mar.",
"Wed." : "Mie.",
"Thu." : "Jue.",
"Fri." : "Vie.",
"Sat." : "Sab.",
"Su" : "Do",
"Mo" : "Lu",
"Tu" : "Ma",
"We" : "Mi",
"Th" : "Ju",
"Fr" : "Vi",
"Sa" : "Sa",
"January" : "Enero",
"February" : "Febrero",
"March" : "Marzo",
"April" : "Abril",
"May" : "Mayo",
"June" : "Junio",
"July" : "Julio",
"August" : "Agosto",
"September" : "Septiembre",
"October" : "Octubre",
"November" : "Noviembre",
"December" : "Diciembre",
"Jan." : "Ene.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Abr.",
"May." : "May.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Ago.",
"Sep." : "Sep.",
"Oct." : "Oct.",
"Nov." : "Nov.",
"Dec." : "Dic.",
"A valid password must be provided" : "Se debe proporcionar una contraseña válida",
"Login canceled by app" : "Inicio de sesión cancelado por la aplicación",
"a safe home for all your data" : "un lugar seguro para todos tus datos",
"File is currently busy, please try again later" : "El archivo se encuentra actualmente en uso, por favor intentalo más tarde. ",
"Application is not enabled" : "La aplicación está deshabilitada",
"Authentication error" : "Error de autenticación",
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "No cuentas con controladores de base de datos (sqlite, mysql o postgresql) instalados. ",
"PHP module %s not installed." : "El módulo de PHP %s no está instalado. ",
"Please ask your server administrator to install the module." : "Por favor solicita a tu adminsitrador la instalación del módulo. ",
"PHP setting \"%s\" is not set to \"%s\"." : "El ajuste PHP \"%s\" no esta establecido a \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "El cambiar este ajuste del archivo php.ini hará que Nextcloud corra de nuevo.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "Al parecer PHP está configurado para quitar los bloques de comentarios internos. Esto hará que varias aplicaciones principales sean inaccesibles. ",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Esto ha sido causado probablemente por un acelerador de caché como Zend OPcache o eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "¿Los módulos de PHP han sido instalados, pero se siguen enlistando como faltantes?",
"Please ask your server administrator to restart the web server." : "Por favor solicita al administrador reiniciar el servidor web. ",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Asegurate de que exista una archivo llamado \".ocdata\" en la raíz del directorio de datos. ",
"Could not obtain lock type %d on \"%s\"." : "No fue posible obtener el tipo de bloqueo %d en \"%s\". ",
"Storage unauthorized. %s" : "Almacenamiento no autorizado. %s",
"Storage incomplete configuration. %s" : "Configuración incompleta del almacenamiento. %s",
"Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s",
"Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible",
"Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s",
"Logged in user must be an admin" : "El usuario firmado debe ser un administrador",
"Full name" : "Nombre completo",
"Unknown user" : "Ususario desconocido",
"Oracle username and/or password not valid" : "Usuario y/o contraseña de Oracle inválidos",
"PostgreSQL username and/or password not valid" : "El Usuario y/o Contraseña de PostgreSQL inválido(s)",
"Set an admin username." : "Establecer un Usuario administrador",
"Sharing %s failed, because this item is already shared with user %s" : "Se presento una falla al compartir %s, porque este elemento ya ha sido compartido con el usuario %s",
"The username is already being used" : "Ese usuario ya está en uso",
"Could not create user" : "No fue posible crear el usuario",
"A valid username must be provided" : "Debes proporcionar un nombre de usuario válido",
"Username contains whitespace at the beginning or at the end" : "El usuario contiene un espacio en blanco al inicio o al final",
"Username must not consist of dots only" : "El usuario no debe consistir de solo puntos. ",
"User disabled" : "Usuario deshabilitado",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Se requiere de por lo menos libxml2 2.7.0. Actualmente %s está instalado. ",
"To fix this issue update your libxml2 version and restart your web server." : "Para corregir este tema, por favor actualiza la versión de su libxml2 y reinicia tu servidor web. ",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Por favor cambia los permisos a 0770 para que el directorio no pueda ser enlistado por otros usuarios. "
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
+171
View File
@@ -0,0 +1,171 @@
{ "translations": {
"Cannot write into \"config\" directory!" : "¡No se puede escribir en el directorio \"config\"!",
"See %s" : "Ver %s",
"Sample configuration detected" : "Se ha detectado la configuración de muestra",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Se ha detectado que la configuración de muestra ha sido copiada. Esto puede arruiniar tu instalacón y no está soportado. Por favor lee la documentación antes de hacer cambios en el archivo config.php",
"%1$s and %2$s" : "%1$s y %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s y %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s y %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s y %5$s",
"Education Edition" : "Edición Educativa",
"Enterprise bundle" : "Paquete empresarial",
"Groupware bundle" : "Paquete de Groupware",
"Social sharing bundle" : "Paquete para compartir en redes sociales",
"PHP %s or higher is required." : "Se requiere de PHP %s o superior.",
"PHP with a version lower than %s is required." : "PHP con una versión inferiror a la %s es requerido. ",
"%sbit or higher PHP required." : "se requiere PHP para %sbit o superior.",
"The command line tool %s could not be found" : "No fue posible encontar la herramienta de línea de comando %s",
"The library %s is not available." : "La biblioteca %s no está disponible. ",
"Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ",
"Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ",
"Authentication" : "Autenticación",
"Unknown filetype" : "Tipo de archivo desconocido",
"Invalid image" : "Imagen inválida",
"Avatar image is not square" : "La imagen del avatar no es un cuadrado",
"Files" : "Archivos",
"today" : "hoy",
"tomorrow" : "mañana",
"yesterday" : "ayer",
"_in %n day_::_in %n days_" : ["en %n día","en %n días","en %n días"],
"_%n day ago_::_%n days ago_" : ["hace %n día","hace %n días","hace %n días"],
"next month" : "próximo mes",
"last month" : "mes pasado",
"_in %n month_::_in %n months_" : ["en %n mes","en %n meses","en %n meses"],
"_%n month ago_::_%n months ago_" : ["Hace %n mes","Hace %n meses","Hace %n meses"],
"next year" : "próximo año",
"last year" : "año pasado",
"_in %n year_::_in %n years_" : ["en %n año","en %n años","en %n años"],
"_%n year ago_::_%n years ago_" : ["hace %n año","hace %n años","hace %n años"],
"_in %n hour_::_in %n hours_" : ["en %n hora","en %n horas","en %n horas"],
"_%n hour ago_::_%n hours ago_" : ["Hace %n hora","Hace %n horas","Hace %n horas"],
"_in %n minute_::_in %n minutes_" : ["en %n minuto","en %n minutos","en %n minutos"],
"_%n minute ago_::_%n minutes ago_" : ["Hace %n minuto","Hace %n minutos","Hace %n minutos"],
"in a few seconds" : "en algunos segundos",
"seconds ago" : "hace segundos",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "El módulo con ID: %sno existe. Por favor hablíitalo en tus configuraciones de aplicación o contacta a tu administrador. ",
"File already exists" : "El archivo ya existe",
"File name is a reserved word" : "Nombre de archivo es una palabra reservada",
"File name contains at least one invalid character" : "El nombre del archivo contiene al menos un caracter inválido",
"File name is too long" : "El nombre del archivo es demasiado largo",
"Dot files are not allowed" : "Los archivos Dot no están permitidos",
"Empty filename is not allowed" : "El uso de nombres de archivo vacíos no está permitido",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "La aplicación \"%s\" no puede ser instalada porque el archivo appinfo no se puede leer. ",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "La aplicación \"%s\" no puede ser instalada porque no es compatible con esta versión del servidor. ",
"__language_name__" : "Español (Costa Rica)",
"This is an automatically sent email, please do not reply." : "Este es un correo enviado automáticamente, por favor no lo contestes. ",
"Help" : "Ayuda",
"Apps" : "Aplicaciones",
"Settings" : "Configuraciones",
"Log out" : "Cerrar sesión",
"Users" : "Usuarios",
"Email" : "Correo electrónico",
"Phone" : "Teléfono fijo",
"Twitter" : "Twitter",
"Website" : "Sitio web",
"Address" : "Dirección",
"Profile picture" : "Foto de perfil",
"About" : "Acerca de",
"Additional settings" : "Configuraciones adicionales",
"You need to enter details of an existing account." : "Necesitas ingresar los detalles de una cuenta existente.",
"Oracle connection could not be established" : "No fue posible establecer la conexión a Oracle",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "OS X de Mac no está soportado y %s no funcionará correctamente en esta plataforma ¡Úsalo bajo tu propio riesgo!",
"For the best results, please consider using a GNU/Linux server instead." : "Para mejores resultados, por favor cosidera usar en su lugar un servidor GNU/Linux.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
"Set an admin password." : "Establecer la contraseña del administrador.",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
"Open »%s«" : "Abrir »%s«",
"You are not allowed to share %s" : "No tienes permitido compartir %s",
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
"Expiration date is in the past" : "La fecha de expiración se encuentra en el pasado",
"Click the button below to open it." : "Haz click en el botón inferior para abrirlo. ",
"The requested share does not exist anymore" : "El recurso compartido solicitado ya no existe",
"Could not find category \"%s\"" : "No fue posible encontrar la categoria \"%s\"",
"Sunday" : "Domingo",
"Monday" : "Lunes",
"Tuesday" : "Martes",
"Wednesday" : "Miércoles",
"Thursday" : "Jueves",
"Friday" : "Viernes",
"Saturday" : "Sábado",
"Sun." : "Dom.",
"Mon." : "Lun.",
"Tue." : "Mar.",
"Wed." : "Mie.",
"Thu." : "Jue.",
"Fri." : "Vie.",
"Sat." : "Sab.",
"Su" : "Do",
"Mo" : "Lu",
"Tu" : "Ma",
"We" : "Mi",
"Th" : "Ju",
"Fr" : "Vi",
"Sa" : "Sa",
"January" : "Enero",
"February" : "Febrero",
"March" : "Marzo",
"April" : "Abril",
"May" : "Mayo",
"June" : "Junio",
"July" : "Julio",
"August" : "Agosto",
"September" : "Septiembre",
"October" : "Octubre",
"November" : "Noviembre",
"December" : "Diciembre",
"Jan." : "Ene.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Abr.",
"May." : "May.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Ago.",
"Sep." : "Sep.",
"Oct." : "Oct.",
"Nov." : "Nov.",
"Dec." : "Dic.",
"A valid password must be provided" : "Se debe proporcionar una contraseña válida",
"Login canceled by app" : "Inicio de sesión cancelado por la aplicación",
"a safe home for all your data" : "un lugar seguro para todos tus datos",
"File is currently busy, please try again later" : "El archivo se encuentra actualmente en uso, por favor intentalo más tarde. ",
"Application is not enabled" : "La aplicación está deshabilitada",
"Authentication error" : "Error de autenticación",
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "No cuentas con controladores de base de datos (sqlite, mysql o postgresql) instalados. ",
"PHP module %s not installed." : "El módulo de PHP %s no está instalado. ",
"Please ask your server administrator to install the module." : "Por favor solicita a tu adminsitrador la instalación del módulo. ",
"PHP setting \"%s\" is not set to \"%s\"." : "El ajuste PHP \"%s\" no esta establecido a \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "El cambiar este ajuste del archivo php.ini hará que Nextcloud corra de nuevo.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "Al parecer PHP está configurado para quitar los bloques de comentarios internos. Esto hará que varias aplicaciones principales sean inaccesibles. ",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Esto ha sido causado probablemente por un acelerador de caché como Zend OPcache o eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "¿Los módulos de PHP han sido instalados, pero se siguen enlistando como faltantes?",
"Please ask your server administrator to restart the web server." : "Por favor solicita al administrador reiniciar el servidor web. ",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Asegurate de que exista una archivo llamado \".ocdata\" en la raíz del directorio de datos. ",
"Could not obtain lock type %d on \"%s\"." : "No fue posible obtener el tipo de bloqueo %d en \"%s\". ",
"Storage unauthorized. %s" : "Almacenamiento no autorizado. %s",
"Storage incomplete configuration. %s" : "Configuración incompleta del almacenamiento. %s",
"Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s",
"Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible",
"Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s",
"Logged in user must be an admin" : "El usuario firmado debe ser un administrador",
"Full name" : "Nombre completo",
"Unknown user" : "Ususario desconocido",
"Oracle username and/or password not valid" : "Usuario y/o contraseña de Oracle inválidos",
"PostgreSQL username and/or password not valid" : "El Usuario y/o Contraseña de PostgreSQL inválido(s)",
"Set an admin username." : "Establecer un Usuario administrador",
"Sharing %s failed, because this item is already shared with user %s" : "Se presento una falla al compartir %s, porque este elemento ya ha sido compartido con el usuario %s",
"The username is already being used" : "Ese usuario ya está en uso",
"Could not create user" : "No fue posible crear el usuario",
"A valid username must be provided" : "Debes proporcionar un nombre de usuario válido",
"Username contains whitespace at the beginning or at the end" : "El usuario contiene un espacio en blanco al inicio o al final",
"Username must not consist of dots only" : "El usuario no debe consistir de solo puntos. ",
"User disabled" : "Usuario deshabilitado",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Se requiere de por lo menos libxml2 2.7.0. Actualmente %s está instalado. ",
"To fix this issue update your libxml2 version and restart your web server." : "Para corregir este tema, por favor actualiza la versión de su libxml2 y reinicia tu servidor web. ",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Por favor cambia los permisos a 0770 para que el directorio no pueda ser enlistado por otros usuarios. "
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}
+173
View File
@@ -0,0 +1,173 @@
OC.L10N.register(
"lib",
{
"Cannot write into \"config\" directory!" : "¡No se puede escribir en el directorio \"config\"!",
"See %s" : "Ver %s",
"Sample configuration detected" : "Se ha detectado la configuración de muestra",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Se ha detectado que la configuración de muestra ha sido copiada. Esto puede arruiniar tu instalacón y no está soportado. Por favor lee la documentación antes de hacer cambios en el archivo config.php",
"%1$s and %2$s" : "%1$s y %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s y %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s y %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s y %5$s",
"Education Edition" : "Edición Educativa",
"Enterprise bundle" : "Paquete empresarial",
"Groupware bundle" : "Paquete de Groupware",
"Social sharing bundle" : "Paquete para compartir en redes sociales",
"PHP %s or higher is required." : "Se requiere de PHP %s o superior.",
"PHP with a version lower than %s is required." : "PHP con una versión inferiror a la %s es requerido. ",
"%sbit or higher PHP required." : "se requiere PHP para %sbit o superior.",
"The command line tool %s could not be found" : "No fue posible encontar la herramienta de línea de comando %s",
"The library %s is not available." : "La biblioteca %s no está disponible. ",
"Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ",
"Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ",
"Authentication" : "Autenticación",
"Unknown filetype" : "Tipo de archivo desconocido",
"Invalid image" : "Imagen inválida",
"Avatar image is not square" : "La imagen del avatar no es un cuadrado",
"Files" : "Archivos",
"today" : "hoy",
"tomorrow" : "mañana",
"yesterday" : "ayer",
"_in %n day_::_in %n days_" : ["en %n día","en %n días","en %n días"],
"_%n day ago_::_%n days ago_" : ["hace %n día","hace %n días","hace %n días"],
"next month" : "próximo mes",
"last month" : "mes pasado",
"_in %n month_::_in %n months_" : ["en %n mes","en %n meses","en %n meses"],
"_%n month ago_::_%n months ago_" : ["Hace %n mes","Hace %n meses","Hace %n meses"],
"next year" : "próximo año",
"last year" : "año pasado",
"_in %n year_::_in %n years_" : ["en %n año","en %n años","en %n años"],
"_%n year ago_::_%n years ago_" : ["hace %n año","hace %n años","hace %n años"],
"_in %n hour_::_in %n hours_" : ["en %n hora","en %n horas","en %n horas"],
"_%n hour ago_::_%n hours ago_" : ["Hace %n hora","Hace %n horas","Hace %n horas"],
"_in %n minute_::_in %n minutes_" : ["en %n minuto","en %n minutos","en %n minutos"],
"_%n minute ago_::_%n minutes ago_" : ["Hace %n minuto","Hace %n minutos","Hace %n minutos"],
"in a few seconds" : "en algunos segundos",
"seconds ago" : "hace segundos",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "El módulo con ID: %sno existe. Por favor hablíitalo en tus configuraciones de aplicación o contacta a tu administrador. ",
"File already exists" : "El archivo ya existe",
"File name is a reserved word" : "Nombre de archivo es una palabra reservada",
"File name contains at least one invalid character" : "El nombre del archivo contiene al menos un caracter inválido",
"File name is too long" : "El nombre del archivo es demasiado largo",
"Dot files are not allowed" : "Los archivos Dot no están permitidos",
"Empty filename is not allowed" : "El uso de nombres de archivo vacíos no está permitido",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "La aplicación \"%s\" no puede ser instalada porque el archivo appinfo no se puede leer. ",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "La aplicación \"%s\" no puede ser instalada porque no es compatible con esta versión del servidor. ",
"__language_name__" : "Español (Dominican Republic)",
"This is an automatically sent email, please do not reply." : "Este es un correo enviado automáticamente, por favor no lo contestes. ",
"Help" : "Ayuda",
"Apps" : "Aplicaciones",
"Settings" : "Configuraciones",
"Log out" : "Cerrar sesión",
"Users" : "Usuarios",
"Email" : "Correo electrónico",
"Phone" : "Teléfono fijo",
"Twitter" : "Twitter",
"Website" : "Sitio web",
"Address" : "Dirección",
"Profile picture" : "Foto de perfil",
"About" : "Acerca de",
"Additional settings" : "Configuraciones adicionales",
"You need to enter details of an existing account." : "Necesitas ingresar los detalles de una cuenta existente.",
"Oracle connection could not be established" : "No fue posible establecer la conexión a Oracle",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "OS X de Mac no está soportado y %s no funcionará correctamente en esta plataforma ¡Úsalo bajo tu propio riesgo!",
"For the best results, please consider using a GNU/Linux server instead." : "Para mejores resultados, por favor cosidera usar en su lugar un servidor GNU/Linux.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
"Set an admin password." : "Establecer la contraseña del administrador.",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
"Open »%s«" : "Abrir »%s«",
"You are not allowed to share %s" : "No tienes permitido compartir %s",
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
"Expiration date is in the past" : "La fecha de expiración se encuentra en el pasado",
"Click the button below to open it." : "Haz click en el botón inferior para abrirlo. ",
"The requested share does not exist anymore" : "El recurso compartido solicitado ya no existe",
"Could not find category \"%s\"" : "No fue posible encontrar la categoria \"%s\"",
"Sunday" : "Domingo",
"Monday" : "Lunes",
"Tuesday" : "Martes",
"Wednesday" : "Miércoles",
"Thursday" : "Jueves",
"Friday" : "Viernes",
"Saturday" : "Sábado",
"Sun." : "Dom.",
"Mon." : "Lun.",
"Tue." : "Mar.",
"Wed." : "Mie.",
"Thu." : "Jue.",
"Fri." : "Vie.",
"Sat." : "Sab.",
"Su" : "Do",
"Mo" : "Lu",
"Tu" : "Ma",
"We" : "Mi",
"Th" : "Ju",
"Fr" : "Vi",
"Sa" : "Sa",
"January" : "Enero",
"February" : "Febrero",
"March" : "Marzo",
"April" : "Abril",
"May" : "Mayo",
"June" : "Junio",
"July" : "Julio",
"August" : "Agosto",
"September" : "Septiembre",
"October" : "Octubre",
"November" : "Noviembre",
"December" : "Diciembre",
"Jan." : "Ene.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Abr.",
"May." : "May.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Ago.",
"Sep." : "Sep.",
"Oct." : "Oct.",
"Nov." : "Nov.",
"Dec." : "Dic.",
"A valid password must be provided" : "Se debe proporcionar una contraseña válida",
"Login canceled by app" : "Inicio de sesión cancelado por la aplicación",
"a safe home for all your data" : "un lugar seguro para todos tus datos",
"File is currently busy, please try again later" : "El archivo se encuentra actualmente en uso, por favor intentalo más tarde. ",
"Application is not enabled" : "La aplicación está deshabilitada",
"Authentication error" : "Error de autenticación",
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "No cuentas con controladores de base de datos (sqlite, mysql o postgresql) instalados. ",
"PHP module %s not installed." : "El módulo de PHP %s no está instalado. ",
"Please ask your server administrator to install the module." : "Por favor solicita a tu adminsitrador la instalación del módulo. ",
"PHP setting \"%s\" is not set to \"%s\"." : "El ajuste PHP \"%s\" no esta establecido a \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "El cambiar este ajuste del archivo php.ini hará que Nextcloud corra de nuevo.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "Al parecer PHP está configurado para quitar los bloques de comentarios internos. Esto hará que varias aplicaciones principales sean inaccesibles. ",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Esto ha sido causado probablemente por un acelerador de caché como Zend OPcache o eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "¿Los módulos de PHP han sido instalados, pero se siguen enlistando como faltantes?",
"Please ask your server administrator to restart the web server." : "Por favor solicita al administrador reiniciar el servidor web. ",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Asegurate de que exista una archivo llamado \".ocdata\" en la raíz del directorio de datos. ",
"Could not obtain lock type %d on \"%s\"." : "No fue posible obtener el tipo de bloqueo %d en \"%s\". ",
"Storage unauthorized. %s" : "Almacenamiento no autorizado. %s",
"Storage incomplete configuration. %s" : "Configuración incompleta del almacenamiento. %s",
"Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s",
"Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible",
"Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s",
"Logged in user must be an admin" : "El usuario firmado debe ser un administrador",
"Full name" : "Nombre completo",
"Unknown user" : "Ususario desconocido",
"Oracle username and/or password not valid" : "Usuario y/o contraseña de Oracle inválidos",
"PostgreSQL username and/or password not valid" : "El Usuario y/o Contraseña de PostgreSQL inválido(s)",
"Set an admin username." : "Establecer un Usuario administrador",
"Sharing %s failed, because this item is already shared with user %s" : "Se presento una falla al compartir %s, porque este elemento ya ha sido compartido con el usuario %s",
"The username is already being used" : "Ese usuario ya está en uso",
"Could not create user" : "No fue posible crear el usuario",
"A valid username must be provided" : "Debes proporcionar un nombre de usuario válido",
"Username contains whitespace at the beginning or at the end" : "El usuario contiene un espacio en blanco al inicio o al final",
"Username must not consist of dots only" : "El usuario no debe consistir de solo puntos. ",
"User disabled" : "Usuario deshabilitado",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Se requiere de por lo menos libxml2 2.7.0. Actualmente %s está instalado. ",
"To fix this issue update your libxml2 version and restart your web server." : "Para corregir este tema, por favor actualiza la versión de su libxml2 y reinicia tu servidor web. ",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Por favor cambia los permisos a 0770 para que el directorio no pueda ser enlistado por otros usuarios. "
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
+171
View File
@@ -0,0 +1,171 @@
{ "translations": {
"Cannot write into \"config\" directory!" : "¡No se puede escribir en el directorio \"config\"!",
"See %s" : "Ver %s",
"Sample configuration detected" : "Se ha detectado la configuración de muestra",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Se ha detectado que la configuración de muestra ha sido copiada. Esto puede arruiniar tu instalacón y no está soportado. Por favor lee la documentación antes de hacer cambios en el archivo config.php",
"%1$s and %2$s" : "%1$s y %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s y %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s y %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s y %5$s",
"Education Edition" : "Edición Educativa",
"Enterprise bundle" : "Paquete empresarial",
"Groupware bundle" : "Paquete de Groupware",
"Social sharing bundle" : "Paquete para compartir en redes sociales",
"PHP %s or higher is required." : "Se requiere de PHP %s o superior.",
"PHP with a version lower than %s is required." : "PHP con una versión inferiror a la %s es requerido. ",
"%sbit or higher PHP required." : "se requiere PHP para %sbit o superior.",
"The command line tool %s could not be found" : "No fue posible encontar la herramienta de línea de comando %s",
"The library %s is not available." : "La biblioteca %s no está disponible. ",
"Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ",
"Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ",
"Authentication" : "Autenticación",
"Unknown filetype" : "Tipo de archivo desconocido",
"Invalid image" : "Imagen inválida",
"Avatar image is not square" : "La imagen del avatar no es un cuadrado",
"Files" : "Archivos",
"today" : "hoy",
"tomorrow" : "mañana",
"yesterday" : "ayer",
"_in %n day_::_in %n days_" : ["en %n día","en %n días","en %n días"],
"_%n day ago_::_%n days ago_" : ["hace %n día","hace %n días","hace %n días"],
"next month" : "próximo mes",
"last month" : "mes pasado",
"_in %n month_::_in %n months_" : ["en %n mes","en %n meses","en %n meses"],
"_%n month ago_::_%n months ago_" : ["Hace %n mes","Hace %n meses","Hace %n meses"],
"next year" : "próximo año",
"last year" : "año pasado",
"_in %n year_::_in %n years_" : ["en %n año","en %n años","en %n años"],
"_%n year ago_::_%n years ago_" : ["hace %n año","hace %n años","hace %n años"],
"_in %n hour_::_in %n hours_" : ["en %n hora","en %n horas","en %n horas"],
"_%n hour ago_::_%n hours ago_" : ["Hace %n hora","Hace %n horas","Hace %n horas"],
"_in %n minute_::_in %n minutes_" : ["en %n minuto","en %n minutos","en %n minutos"],
"_%n minute ago_::_%n minutes ago_" : ["Hace %n minuto","Hace %n minutos","Hace %n minutos"],
"in a few seconds" : "en algunos segundos",
"seconds ago" : "hace segundos",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "El módulo con ID: %sno existe. Por favor hablíitalo en tus configuraciones de aplicación o contacta a tu administrador. ",
"File already exists" : "El archivo ya existe",
"File name is a reserved word" : "Nombre de archivo es una palabra reservada",
"File name contains at least one invalid character" : "El nombre del archivo contiene al menos un caracter inválido",
"File name is too long" : "El nombre del archivo es demasiado largo",
"Dot files are not allowed" : "Los archivos Dot no están permitidos",
"Empty filename is not allowed" : "El uso de nombres de archivo vacíos no está permitido",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "La aplicación \"%s\" no puede ser instalada porque el archivo appinfo no se puede leer. ",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "La aplicación \"%s\" no puede ser instalada porque no es compatible con esta versión del servidor. ",
"__language_name__" : "Español (Dominican Republic)",
"This is an automatically sent email, please do not reply." : "Este es un correo enviado automáticamente, por favor no lo contestes. ",
"Help" : "Ayuda",
"Apps" : "Aplicaciones",
"Settings" : "Configuraciones",
"Log out" : "Cerrar sesión",
"Users" : "Usuarios",
"Email" : "Correo electrónico",
"Phone" : "Teléfono fijo",
"Twitter" : "Twitter",
"Website" : "Sitio web",
"Address" : "Dirección",
"Profile picture" : "Foto de perfil",
"About" : "Acerca de",
"Additional settings" : "Configuraciones adicionales",
"You need to enter details of an existing account." : "Necesitas ingresar los detalles de una cuenta existente.",
"Oracle connection could not be established" : "No fue posible establecer la conexión a Oracle",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "OS X de Mac no está soportado y %s no funcionará correctamente en esta plataforma ¡Úsalo bajo tu propio riesgo!",
"For the best results, please consider using a GNU/Linux server instead." : "Para mejores resultados, por favor cosidera usar en su lugar un servidor GNU/Linux.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
"Set an admin password." : "Establecer la contraseña del administrador.",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
"Open »%s«" : "Abrir »%s«",
"You are not allowed to share %s" : "No tienes permitido compartir %s",
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
"Expiration date is in the past" : "La fecha de expiración se encuentra en el pasado",
"Click the button below to open it." : "Haz click en el botón inferior para abrirlo. ",
"The requested share does not exist anymore" : "El recurso compartido solicitado ya no existe",
"Could not find category \"%s\"" : "No fue posible encontrar la categoria \"%s\"",
"Sunday" : "Domingo",
"Monday" : "Lunes",
"Tuesday" : "Martes",
"Wednesday" : "Miércoles",
"Thursday" : "Jueves",
"Friday" : "Viernes",
"Saturday" : "Sábado",
"Sun." : "Dom.",
"Mon." : "Lun.",
"Tue." : "Mar.",
"Wed." : "Mie.",
"Thu." : "Jue.",
"Fri." : "Vie.",
"Sat." : "Sab.",
"Su" : "Do",
"Mo" : "Lu",
"Tu" : "Ma",
"We" : "Mi",
"Th" : "Ju",
"Fr" : "Vi",
"Sa" : "Sa",
"January" : "Enero",
"February" : "Febrero",
"March" : "Marzo",
"April" : "Abril",
"May" : "Mayo",
"June" : "Junio",
"July" : "Julio",
"August" : "Agosto",
"September" : "Septiembre",
"October" : "Octubre",
"November" : "Noviembre",
"December" : "Diciembre",
"Jan." : "Ene.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Abr.",
"May." : "May.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Ago.",
"Sep." : "Sep.",
"Oct." : "Oct.",
"Nov." : "Nov.",
"Dec." : "Dic.",
"A valid password must be provided" : "Se debe proporcionar una contraseña válida",
"Login canceled by app" : "Inicio de sesión cancelado por la aplicación",
"a safe home for all your data" : "un lugar seguro para todos tus datos",
"File is currently busy, please try again later" : "El archivo se encuentra actualmente en uso, por favor intentalo más tarde. ",
"Application is not enabled" : "La aplicación está deshabilitada",
"Authentication error" : "Error de autenticación",
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "No cuentas con controladores de base de datos (sqlite, mysql o postgresql) instalados. ",
"PHP module %s not installed." : "El módulo de PHP %s no está instalado. ",
"Please ask your server administrator to install the module." : "Por favor solicita a tu adminsitrador la instalación del módulo. ",
"PHP setting \"%s\" is not set to \"%s\"." : "El ajuste PHP \"%s\" no esta establecido a \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "El cambiar este ajuste del archivo php.ini hará que Nextcloud corra de nuevo.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "Al parecer PHP está configurado para quitar los bloques de comentarios internos. Esto hará que varias aplicaciones principales sean inaccesibles. ",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Esto ha sido causado probablemente por un acelerador de caché como Zend OPcache o eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "¿Los módulos de PHP han sido instalados, pero se siguen enlistando como faltantes?",
"Please ask your server administrator to restart the web server." : "Por favor solicita al administrador reiniciar el servidor web. ",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Asegurate de que exista una archivo llamado \".ocdata\" en la raíz del directorio de datos. ",
"Could not obtain lock type %d on \"%s\"." : "No fue posible obtener el tipo de bloqueo %d en \"%s\". ",
"Storage unauthorized. %s" : "Almacenamiento no autorizado. %s",
"Storage incomplete configuration. %s" : "Configuración incompleta del almacenamiento. %s",
"Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s",
"Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible",
"Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s",
"Logged in user must be an admin" : "El usuario firmado debe ser un administrador",
"Full name" : "Nombre completo",
"Unknown user" : "Ususario desconocido",
"Oracle username and/or password not valid" : "Usuario y/o contraseña de Oracle inválidos",
"PostgreSQL username and/or password not valid" : "El Usuario y/o Contraseña de PostgreSQL inválido(s)",
"Set an admin username." : "Establecer un Usuario administrador",
"Sharing %s failed, because this item is already shared with user %s" : "Se presento una falla al compartir %s, porque este elemento ya ha sido compartido con el usuario %s",
"The username is already being used" : "Ese usuario ya está en uso",
"Could not create user" : "No fue posible crear el usuario",
"A valid username must be provided" : "Debes proporcionar un nombre de usuario válido",
"Username contains whitespace at the beginning or at the end" : "El usuario contiene un espacio en blanco al inicio o al final",
"Username must not consist of dots only" : "El usuario no debe consistir de solo puntos. ",
"User disabled" : "Usuario deshabilitado",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Se requiere de por lo menos libxml2 2.7.0. Actualmente %s está instalado. ",
"To fix this issue update your libxml2 version and restart your web server." : "Para corregir este tema, por favor actualiza la versión de su libxml2 y reinicia tu servidor web. ",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Por favor cambia los permisos a 0770 para que el directorio no pueda ser enlistado por otros usuarios. "
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}
+271
View File
@@ -0,0 +1,271 @@
OC.L10N.register(
"lib",
{
"Cannot write into \"config\" directory!" : "¡No se puede escribir en el directorio \"config\"!",
"This can usually be fixed by giving the web server write access to the config directory." : "Esto generalmente se puede solucionar otorgando permisos de escritura al servidor web en el directorio de configuración.",
"But, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it." : "Sin embargo, si prefieres mantener el archivo config.php como de solo lectura, establece la opción \"config_is_read_only\" en true.",
"See %s" : "Ver %s",
"Application %1$s is not present or has a non-compatible version with this server. Please check the apps directory." : "La aplicación %1$s no está presente o tiene una versión no compatible con este servidor. Por favor, revisa el directorio de aplicaciones.",
"Sample configuration detected" : "Se ha detectado la configuración de muestra",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Se ha detectado que la configuración de muestra ha sido copiada. Esto puede arruiniar tu instalacón y no está soportado. Por favor lee la documentación antes de hacer cambios en el archivo config.php",
"The page could not be found on the server." : "No se pudo encontrar la página en el servidor.",
"%s email verification" : "%s verificación de correo electrónico",
"Email verification" : "Verificación de correo electrónico",
"Click the following button to confirm your email." : "Haz clic en el siguiente botón para confirmar tu correo electrónico.",
"Click the following link to confirm your email." : "Haz clic en el siguiente enlace para confirmar tu correo electrónico.",
"Confirm your email" : "Confirma tu correo electrónico",
"Other activities" : "Otras actividades",
"%1$s and %2$s" : "%1$s y %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s y %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s y %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s y %5$s",
"Education Edition" : "Edición Educativa",
"Enterprise bundle" : "Paquete empresarial",
"Groupware bundle" : "Paquete de Groupware",
"Hub bundle" : "Paquete Hub",
"Social sharing bundle" : "Paquete para compartir en redes sociales",
"PHP %s or higher is required." : "Se requiere de PHP %s o superior.",
"PHP with a version lower than %s is required." : "PHP con una versión inferiror a la %s es requerido. ",
"%sbit or higher PHP required." : "se requiere PHP para %sbit o superior.",
"The following architectures are supported: %s" : "Las siguientes arquitecturas son compatibles: %s",
"The following databases are supported: %s" : "Las siguientes bases de datos son compatibles: %s",
"The command line tool %s could not be found" : "No fue posible encontar la herramienta de línea de comando %s",
"The library %s is not available." : "La biblioteca %s no está disponible. ",
"Library %1$s with a version higher than %2$s is required - available version %3$s." : "Se requiere la biblioteca %1$s con una versión superior a %2$s; la versión disponible es %3$s.",
"Library %1$s with a version lower than %2$s is required - available version %3$s." : "Se requiere la biblioteca %1$s con una versión inferior a %2$s; la versión disponible es %3$s.",
"The following platforms are supported: %s" : "Las siguientes plataformas son compatibles: %s",
"Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ",
"Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ",
"Wiping of device %s has started" : "El borrado del dispositivo %s ha comenzado",
"Wiping of device »%s« has started" : "El borrado del dispositivo »%s« ha comenzado",
"»%s« started remote wipe" : "»%s« ha iniciado el borrado remoto",
"Device or application »%s« has started the remote wipe process. You will receive another email once the process has finished" : "El dispositivo o la aplicación »%s« ha iniciado el proceso de borrado remoto. Recibirás otro correo electrónico una vez que el proceso haya finalizado.",
"Wiping of device %s has finished" : "El borrado del dispositivo %s ha finalizado",
"Wiping of device »%s« has finished" : "El borrado del dispositivo »%s« ha finalizado",
"»%s« finished remote wipe" : "»%s« ha finalizado el borrado remoto",
"Device or application »%s« has finished the remote wipe process." : "El dispositivo o la aplicación »%s« ha finalizado el proceso de borrado remoto.",
"Remote wipe started" : "Borrado remoto iniciado",
"A remote wipe was started on device %s" : "Se ha iniciado un borrado remoto en el dispositivo %s",
"Remote wipe finished" : "Borrado remoto finalizado",
"The remote wipe on %s has finished" : "El borrado remoto en %s ha finalizado",
"Authentication" : "Autenticación",
"Unknown filetype" : "Tipo de archivo desconocido",
"Invalid image" : "Imagen inválida",
"Avatar image is not square" : "La imagen del avatar no es un cuadrado",
"Files" : "Archivos",
"View profile" : "Ver perfil",
"Local time: %s" : "Hora local: %s",
"today" : "hoy",
"tomorrow" : "mañana",
"yesterday" : "ayer",
"_in %n day_::_in %n days_" : ["en %n día","en %n días","en %n días"],
"_%n day ago_::_%n days ago_" : ["hace %n día","hace %n días","hace %n días"],
"next month" : "próximo mes",
"last month" : "mes pasado",
"_in %n month_::_in %n months_" : ["en %n mes","en %n meses","en %n meses"],
"_%n month ago_::_%n months ago_" : ["Hace %n mes","Hace %n meses","Hace %n meses"],
"next year" : "próximo año",
"last year" : "año pasado",
"_in %n year_::_in %n years_" : ["en %n año","en %n años","en %n años"],
"_%n year ago_::_%n years ago_" : ["hace %n año","hace %n años","hace %n años"],
"_in %n hour_::_in %n hours_" : ["en %n hora","en %n horas","en %n horas"],
"_%n hour ago_::_%n hours ago_" : ["Hace %n hora","Hace %n horas","Hace %n horas"],
"_in %n minute_::_in %n minutes_" : ["en %n minuto","en %n minutos","en %n minutos"],
"_%n minute ago_::_%n minutes ago_" : ["Hace %n minuto","Hace %n minutos","Hace %n minutos"],
"in a few seconds" : "en algunos segundos",
"seconds ago" : "hace segundos",
"Empty file" : "Archivo vacío",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "El módulo con ID: %sno existe. Por favor hablíitalo en tus configuraciones de aplicación o contacta a tu administrador. ",
"File already exists" : "El archivo ya existe",
"Invalid path" : "Ruta no válida",
"Failed to create file from template" : "Error al crear el archivo a partir de la plantilla",
"Templates" : "Plantillas",
"File name is a reserved word" : "Nombre de archivo es una palabra reservada",
"File name contains at least one invalid character" : "El nombre del archivo contiene al menos un caracter inválido",
"File name is too long" : "El nombre del archivo es demasiado largo",
"Dot files are not allowed" : "Los archivos Dot no están permitidos",
"Empty filename is not allowed" : "El uso de nombres de archivo vacíos no está permitido",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "La aplicación \"%s\" no puede ser instalada porque el archivo appinfo no se puede leer. ",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "La aplicación \"%s\" no puede ser instalada porque no es compatible con esta versión del servidor. ",
"__language_name__" : "Español (Ecuador)",
"This is an automatically sent email, please do not reply." : "Este es un correo enviado automáticamente, por favor no lo contestes. ",
"Help" : "Ayuda",
"Appearance and accessibility" : "Apariencia y accesibilidad",
"Apps" : "Aplicaciones",
"Personal settings" : "Configuración personal",
"Administration settings" : "Configuración de administración",
"Settings" : "Ajustes",
"Log out" : "Cerrar sesión",
"Users" : "Usuarios",
"Email" : "Correo electrónico",
"Mail %s" : "Correo %s",
"Fediverse" : "Fediverse",
"View %s on the fediverse" : "Ver %s en Fediverse",
"Phone" : "Teléfono fijo",
"Call %s" : "Llamar a %s",
"Twitter" : "Twitter",
"View %s on Twitter" : "Ver %s en Twitter",
"Website" : "Sitio web",
"Visit %s" : "Visitar %s",
"Address" : "Dirección",
"Profile picture" : "Foto de perfil",
"About" : "Acerca de",
"Display name" : "Nombre para mostrar",
"Headline" : "Título",
"Organisation" : "Organización",
"Role" : "Rol",
"Additional settings" : "Configuraciones adicionales",
"Enter the database name for %s" : "Introduce el nombre de la base de datos para %s",
"You cannot use dots in the database name %s" : "No se pueden utilizar puntos en el nombre de la base de datos %s",
"You need to enter details of an existing account." : "Necesitas ingresar los detalles de una cuenta existente.",
"Oracle connection could not be established" : "No fue posible establecer la conexión a Oracle",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "OS X de Mac no está soportado y %s no funcionará correctamente en esta plataforma ¡Úsalo bajo tu propio riesgo!",
"For the best results, please consider using a GNU/Linux server instead." : "Para mejores resultados, por favor cosidera usar en su lugar un servidor GNU/Linux.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
"Set an admin password." : "Establecer la contraseña del administrador.",
"Cannot create or write into the data directory %s" : "No se puede crear ni escribir en el directorio de datos %s",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
"%1$s shared »%2$s« with you and wants to add:" : "%1$s compartió »%2$s« contigo y quiere añadir:",
"%1$s shared »%2$s« with you and wants to add" : "%1$s compartió »%2$s« contigo y quiere añadir",
"»%s« added a note to a file shared with you" : "»%s« añadió una nota a un archivo compartido contigo",
"Open »%s«" : "Abrir »%s«",
"%1$s via %2$s" : "%1$s a través de %2$s",
"You are not allowed to share %s" : "No tienes permitido compartir %s",
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
"Files cannot be shared with delete permissions" : "No se pueden compartir archivos con permisos de eliminación",
"Files cannot be shared with create permissions" : "No se pueden compartir archivos con permisos de creación",
"Expiration date is in the past" : "La fecha de expiración se encuentra en el pasado",
"_Cannot set expiration date more than %n day in the future_::_Cannot set expiration date more than %n days in the future_" : ["No se puede establecer una fecha de caducidad más de %n día en el futuro","No se puede establecer una fecha de caducidad más de %n días en el futuro","No se puede establecer una fecha de caducidad más de %n días en el futuro"],
"Sharing is only allowed with group members" : "Solo se permite compartir con miembros del grupo",
"%1$s shared »%2$s« with you" : "%1$s compartió »%2$s« contigo",
"%1$s shared »%2$s« with you." : "%1$s compartió »%2$s« contigo.",
"Click the button below to open it." : "Haz click en el botón inferior para abrirlo. ",
"The requested share does not exist anymore" : "El recurso compartido solicitado ya no existe",
"The user was not created because the user limit has been reached. Check your notifications to learn more." : "No se creó el usuario porque se ha alcanzado el límite de usuarios. Consulta tus notificaciones para obtener más información.",
"Could not find category \"%s\"" : "No fue posible encontrar la categoria \"%s\"",
"Sunday" : "Domingo",
"Monday" : "Lunes",
"Tuesday" : "Martes",
"Wednesday" : "Miércoles",
"Thursday" : "Jueves",
"Friday" : "Viernes",
"Saturday" : "Sábado",
"Sun." : "Dom.",
"Mon." : "Lun.",
"Tue." : "Mar.",
"Wed." : "Mie.",
"Thu." : "Jue.",
"Fri." : "Vie.",
"Sat." : "Sab.",
"Su" : "Do",
"Mo" : "Lu",
"Tu" : "Ma",
"We" : "Mi",
"Th" : "Ju",
"Fr" : "Vi",
"Sa" : "Sa",
"January" : "Enero",
"February" : "Febrero",
"March" : "Marzo",
"April" : "Abril",
"May" : "Mayo",
"June" : "Junio",
"July" : "Julio",
"August" : "Agosto",
"September" : "Septiembre",
"October" : "Octubre",
"November" : "Noviembre",
"December" : "Diciembre",
"Jan." : "Ene.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Abr.",
"May." : "May.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Ago.",
"Sep." : "Sep.",
"Oct." : "Oct.",
"Nov." : "Nov.",
"Dec." : "Dic.",
"A valid password must be provided" : "Se debe proporcionar una contraseña válida",
"Login canceled by app" : "Inicio de sesión cancelado por la aplicación",
"App \"%1$s\" cannot be installed because the following dependencies are not fulfilled: %2$s" : "No se puede instalar la aplicación \"%1$s\" porque no se cumplen las siguientes dependencias: %2$s",
"a safe home for all your data" : "un lugar seguro para todos tus datos",
"File is currently busy, please try again later" : "El archivo se encuentra actualmente en uso, por favor intentalo más tarde. ",
"Cannot download file" : "No se puede descargar el archivo",
"Application is not enabled" : "La aplicación está deshabilitada",
"Authentication error" : "Error de autenticación",
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "No cuentas con controladores de base de datos (sqlite, mysql o postgresql) instalados. ",
"Cannot write into \"config\" directory." : "No se puede escribir en el directorio \"config\".",
"This can usually be fixed by giving the web server write access to the config directory. See %s" : "Generalmente, esto se puede solucionar otorgando permisos de escritura al servidor web en el directorio de configuración. Consulta %s",
"Or, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it. See %s" : "O, si prefieres mantener el archivo config.php como de solo lectura, establece la opción \"config_is_read_only\" en true. Consulta %s",
"Cannot write into \"apps\" directory." : "No se puede escribir en el directorio \"apps\".",
"This can usually be fixed by giving the web server write access to the apps directory or disabling the App Store in the config file." : "Generalmente, esto se puede solucionar otorgando permisos de escritura al servidor web en el directorio de aplicaciones o deshabilitando la tienda de aplicaciones en el archivo de configuración.",
"Cannot create \"data\" directory." : "No se puede crear el directorio \"data\".",
"This can usually be fixed by giving the web server write access to the root directory. See %s" : "Generalmente, esto se puede solucionar otorgando permisos de escritura al servidor web en el directorio raíz. Consulta %s",
"Permissions can usually be fixed by giving the web server write access to the root directory. See %s." : "Los permisos generalmente se pueden solucionar otorgando permisos de escritura al servidor web en el directorio raíz. Consulta %s.",
"Your data directory is not writable." : "El directorio de datos no es escribible.",
"Setting locale to %s failed." : "Error al establecer la configuración regional en %s.",
"Please install one of these locales on your system and restart your web server." : "Instala una de estas configuraciones regionales en tu sistema y reinicia tu servidor web.",
"PHP module %s not installed." : "El módulo de PHP %s no está instalado. ",
"Please ask your server administrator to install the module." : "Por favor solicita a tu adminsitrador la instalación del módulo. ",
"PHP setting \"%s\" is not set to \"%s\"." : "El ajuste PHP \"%s\" no esta establecido a \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "El cambiar este ajuste del archivo php.ini hará que Nextcloud corra de nuevo.",
"<code>mbstring.func_overload</code> is set to <code>%s</code> instead of the expected value <code>0</code>." : "<code>mbstring.func_overload</code> está configurado como <code>%s</code> en lugar del valor esperado <code>0</code>.",
"To fix this issue set <code>mbstring.func_overload</code> to <code>0</code> in your php.ini." : "Para solucionar este problema, establece <code>mbstring.func_overload</code> como <code>0</code> en tu archivo php.ini.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "Al parecer PHP está configurado para quitar los bloques de comentarios internos. Esto hará que varias aplicaciones principales sean inaccesibles. ",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Esto ha sido causado probablemente por un acelerador de caché como Zend OPcache o eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "¿Los módulos de PHP han sido instalados, pero se siguen enlistando como faltantes?",
"Please ask your server administrator to restart the web server." : "Por favor solicita al administrador reiniciar el servidor web. ",
"The required %s config variable is not configured in the config.php file." : "No se ha configurado la variable de configuración %s requerida en el archivo config.php.",
"Please ask your server administrator to check the Nextcloud configuration." : "Pide a tu administrador del servidor que verifique la configuración de Nextcloud.",
"Your data directory must be an absolute path." : "Tu directorio de datos debe ser una ruta absoluta.",
"Check the value of \"datadirectory\" in your configuration." : "Verifica el valor de \"datadirectory\" en tu configuración.",
"Your data directory is invalid." : "Tu directorio de datos no es válido.",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Asegurate de que exista una archivo llamado \".ocdata\" en la raíz del directorio de datos. ",
"Action \"%s\" not supported or implemented." : "La acción \"%s\" no está soportada o no está implementada.",
"Authentication failed, wrong token or provider ID given" : "Falló la autenticación, se proporcionó un token o un ID de proveedor incorrecto",
"Parameters missing in order to complete the request. Missing Parameters: \"%s\"" : "Faltan parámetros para completar la solicitud. Parámetros faltantes: \"%s\"",
"ID \"%1$s\" already used by cloud federation provider \"%2$s\"" : "El ID \"%1$s\" ya está en uso por el proveedor de federación de la nube \"%2$s\"",
"Cloud Federation Provider with ID: \"%s\" does not exist." : "No existe un Proveedor de Federación de la Nube con el ID: \"%s\".",
"Could not obtain lock type %d on \"%s\"." : "No fue posible obtener el tipo de bloqueo %d en \"%s\". ",
"Storage unauthorized. %s" : "Almacenamiento no autorizado. %s",
"Storage incomplete configuration. %s" : "Configuración incompleta del almacenamiento. %s",
"Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s",
"Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible",
"Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s",
"The files of the app %1$s were not replaced correctly. Make sure it is a version compatible with the server." : "Los archivos de la aplicación %1$s no se reemplazaron correctamente. Asegúrate de que sea una versión compatible con el servidor.",
"404" : "404",
"Logged in user must be an admin, a sub admin or gotten special right to access this setting" : "El usuario que ha iniciado sesión debe ser un administrador, un subadministrador o tener permisos especiales para acceder a esta configuración.",
"Logged in user must be an admin or sub admin" : "El usuario que ha iniciado sesión debe ser un administrador o un subadministrador.",
"Logged in user must be an admin" : "El usuario firmado debe ser un administrador",
"Full name" : "Nombre completo",
"Unknown user" : "Ususario desconocido",
"Enter the database username and name for %s" : "Introduce el nombre de usuario y el nombre de la base de datos para %s",
"Enter the database username for %s" : "Introduce el nombre de usuario de la base de datos para %s",
"MySQL username and/or password not valid" : "Nombre de usuario y/o contraseña de MySQL no válidos",
"Oracle username and/or password not valid" : "Usuario y/o contraseña de Oracle inválidos",
"PostgreSQL username and/or password not valid" : "El Usuario y/o Contraseña de PostgreSQL inválido(s)",
"Set an admin username." : "Establecer un Usuario administrador",
"Sharing %s failed, because this item is already shared with user %s" : "Se presento una falla al compartir %s, porque este elemento ya ha sido compartido con el usuario %s",
"The username is already being used" : "Ese usuario ya está en uso",
"Could not create user" : "No fue posible crear el usuario",
"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", spaces and \"_.@-'\"" : "Solo se permiten los siguientes caracteres en un nombre de usuario: \"a-z\", \"A-Z\", \"0-9\", espacios y \"_.@-'\"",
"A valid username must be provided" : "Debes proporcionar un nombre de usuario válido",
"Username contains whitespace at the beginning or at the end" : "El usuario contiene un espacio en blanco al inicio o al final",
"Username must not consist of dots only" : "El usuario no debe consistir de solo puntos. ",
"Username is invalid because files already exist for this user" : "El nombre de usuario no es válido porque ya existen archivos para este usuario",
"User disabled" : "Usuario deshabilitado",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Se requiere de por lo menos libxml2 2.7.0. Actualmente %s está instalado. ",
"To fix this issue update your libxml2 version and restart your web server." : "Para corregir este tema, por favor actualiza la versión de su libxml2 y reinicia tu servidor web. ",
"PostgreSQL >= 9 required." : "Se requiere PostgreSQL >= 9.",
"Please upgrade your database version." : "Actualiza la versión de tu base de datos.",
"Your data directory is readable by other users." : "Tu directorio de datos es legible por otros usuarios.",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Por favor cambia los permisos a 0770 para que el directorio no pueda ser enlistado por otros usuarios. "
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
+269
View File
@@ -0,0 +1,269 @@
{ "translations": {
"Cannot write into \"config\" directory!" : "¡No se puede escribir en el directorio \"config\"!",
"This can usually be fixed by giving the web server write access to the config directory." : "Esto generalmente se puede solucionar otorgando permisos de escritura al servidor web en el directorio de configuración.",
"But, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it." : "Sin embargo, si prefieres mantener el archivo config.php como de solo lectura, establece la opción \"config_is_read_only\" en true.",
"See %s" : "Ver %s",
"Application %1$s is not present or has a non-compatible version with this server. Please check the apps directory." : "La aplicación %1$s no está presente o tiene una versión no compatible con este servidor. Por favor, revisa el directorio de aplicaciones.",
"Sample configuration detected" : "Se ha detectado la configuración de muestra",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Se ha detectado que la configuración de muestra ha sido copiada. Esto puede arruiniar tu instalacón y no está soportado. Por favor lee la documentación antes de hacer cambios en el archivo config.php",
"The page could not be found on the server." : "No se pudo encontrar la página en el servidor.",
"%s email verification" : "%s verificación de correo electrónico",
"Email verification" : "Verificación de correo electrónico",
"Click the following button to confirm your email." : "Haz clic en el siguiente botón para confirmar tu correo electrónico.",
"Click the following link to confirm your email." : "Haz clic en el siguiente enlace para confirmar tu correo electrónico.",
"Confirm your email" : "Confirma tu correo electrónico",
"Other activities" : "Otras actividades",
"%1$s and %2$s" : "%1$s y %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s y %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s y %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s y %5$s",
"Education Edition" : "Edición Educativa",
"Enterprise bundle" : "Paquete empresarial",
"Groupware bundle" : "Paquete de Groupware",
"Hub bundle" : "Paquete Hub",
"Social sharing bundle" : "Paquete para compartir en redes sociales",
"PHP %s or higher is required." : "Se requiere de PHP %s o superior.",
"PHP with a version lower than %s is required." : "PHP con una versión inferiror a la %s es requerido. ",
"%sbit or higher PHP required." : "se requiere PHP para %sbit o superior.",
"The following architectures are supported: %s" : "Las siguientes arquitecturas son compatibles: %s",
"The following databases are supported: %s" : "Las siguientes bases de datos son compatibles: %s",
"The command line tool %s could not be found" : "No fue posible encontar la herramienta de línea de comando %s",
"The library %s is not available." : "La biblioteca %s no está disponible. ",
"Library %1$s with a version higher than %2$s is required - available version %3$s." : "Se requiere la biblioteca %1$s con una versión superior a %2$s; la versión disponible es %3$s.",
"Library %1$s with a version lower than %2$s is required - available version %3$s." : "Se requiere la biblioteca %1$s con una versión inferior a %2$s; la versión disponible es %3$s.",
"The following platforms are supported: %s" : "Las siguientes plataformas son compatibles: %s",
"Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ",
"Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ",
"Wiping of device %s has started" : "El borrado del dispositivo %s ha comenzado",
"Wiping of device »%s« has started" : "El borrado del dispositivo »%s« ha comenzado",
"»%s« started remote wipe" : "»%s« ha iniciado el borrado remoto",
"Device or application »%s« has started the remote wipe process. You will receive another email once the process has finished" : "El dispositivo o la aplicación »%s« ha iniciado el proceso de borrado remoto. Recibirás otro correo electrónico una vez que el proceso haya finalizado.",
"Wiping of device %s has finished" : "El borrado del dispositivo %s ha finalizado",
"Wiping of device »%s« has finished" : "El borrado del dispositivo »%s« ha finalizado",
"»%s« finished remote wipe" : "»%s« ha finalizado el borrado remoto",
"Device or application »%s« has finished the remote wipe process." : "El dispositivo o la aplicación »%s« ha finalizado el proceso de borrado remoto.",
"Remote wipe started" : "Borrado remoto iniciado",
"A remote wipe was started on device %s" : "Se ha iniciado un borrado remoto en el dispositivo %s",
"Remote wipe finished" : "Borrado remoto finalizado",
"The remote wipe on %s has finished" : "El borrado remoto en %s ha finalizado",
"Authentication" : "Autenticación",
"Unknown filetype" : "Tipo de archivo desconocido",
"Invalid image" : "Imagen inválida",
"Avatar image is not square" : "La imagen del avatar no es un cuadrado",
"Files" : "Archivos",
"View profile" : "Ver perfil",
"Local time: %s" : "Hora local: %s",
"today" : "hoy",
"tomorrow" : "mañana",
"yesterday" : "ayer",
"_in %n day_::_in %n days_" : ["en %n día","en %n días","en %n días"],
"_%n day ago_::_%n days ago_" : ["hace %n día","hace %n días","hace %n días"],
"next month" : "próximo mes",
"last month" : "mes pasado",
"_in %n month_::_in %n months_" : ["en %n mes","en %n meses","en %n meses"],
"_%n month ago_::_%n months ago_" : ["Hace %n mes","Hace %n meses","Hace %n meses"],
"next year" : "próximo año",
"last year" : "año pasado",
"_in %n year_::_in %n years_" : ["en %n año","en %n años","en %n años"],
"_%n year ago_::_%n years ago_" : ["hace %n año","hace %n años","hace %n años"],
"_in %n hour_::_in %n hours_" : ["en %n hora","en %n horas","en %n horas"],
"_%n hour ago_::_%n hours ago_" : ["Hace %n hora","Hace %n horas","Hace %n horas"],
"_in %n minute_::_in %n minutes_" : ["en %n minuto","en %n minutos","en %n minutos"],
"_%n minute ago_::_%n minutes ago_" : ["Hace %n minuto","Hace %n minutos","Hace %n minutos"],
"in a few seconds" : "en algunos segundos",
"seconds ago" : "hace segundos",
"Empty file" : "Archivo vacío",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "El módulo con ID: %sno existe. Por favor hablíitalo en tus configuraciones de aplicación o contacta a tu administrador. ",
"File already exists" : "El archivo ya existe",
"Invalid path" : "Ruta no válida",
"Failed to create file from template" : "Error al crear el archivo a partir de la plantilla",
"Templates" : "Plantillas",
"File name is a reserved word" : "Nombre de archivo es una palabra reservada",
"File name contains at least one invalid character" : "El nombre del archivo contiene al menos un caracter inválido",
"File name is too long" : "El nombre del archivo es demasiado largo",
"Dot files are not allowed" : "Los archivos Dot no están permitidos",
"Empty filename is not allowed" : "El uso de nombres de archivo vacíos no está permitido",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "La aplicación \"%s\" no puede ser instalada porque el archivo appinfo no se puede leer. ",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "La aplicación \"%s\" no puede ser instalada porque no es compatible con esta versión del servidor. ",
"__language_name__" : "Español (Ecuador)",
"This is an automatically sent email, please do not reply." : "Este es un correo enviado automáticamente, por favor no lo contestes. ",
"Help" : "Ayuda",
"Appearance and accessibility" : "Apariencia y accesibilidad",
"Apps" : "Aplicaciones",
"Personal settings" : "Configuración personal",
"Administration settings" : "Configuración de administración",
"Settings" : "Ajustes",
"Log out" : "Cerrar sesión",
"Users" : "Usuarios",
"Email" : "Correo electrónico",
"Mail %s" : "Correo %s",
"Fediverse" : "Fediverse",
"View %s on the fediverse" : "Ver %s en Fediverse",
"Phone" : "Teléfono fijo",
"Call %s" : "Llamar a %s",
"Twitter" : "Twitter",
"View %s on Twitter" : "Ver %s en Twitter",
"Website" : "Sitio web",
"Visit %s" : "Visitar %s",
"Address" : "Dirección",
"Profile picture" : "Foto de perfil",
"About" : "Acerca de",
"Display name" : "Nombre para mostrar",
"Headline" : "Título",
"Organisation" : "Organización",
"Role" : "Rol",
"Additional settings" : "Configuraciones adicionales",
"Enter the database name for %s" : "Introduce el nombre de la base de datos para %s",
"You cannot use dots in the database name %s" : "No se pueden utilizar puntos en el nombre de la base de datos %s",
"You need to enter details of an existing account." : "Necesitas ingresar los detalles de una cuenta existente.",
"Oracle connection could not be established" : "No fue posible establecer la conexión a Oracle",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "OS X de Mac no está soportado y %s no funcionará correctamente en esta plataforma ¡Úsalo bajo tu propio riesgo!",
"For the best results, please consider using a GNU/Linux server instead." : "Para mejores resultados, por favor cosidera usar en su lugar un servidor GNU/Linux.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
"Set an admin password." : "Establecer la contraseña del administrador.",
"Cannot create or write into the data directory %s" : "No se puede crear ni escribir en el directorio de datos %s",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
"%1$s shared »%2$s« with you and wants to add:" : "%1$s compartió »%2$s« contigo y quiere añadir:",
"%1$s shared »%2$s« with you and wants to add" : "%1$s compartió »%2$s« contigo y quiere añadir",
"»%s« added a note to a file shared with you" : "»%s« añadió una nota a un archivo compartido contigo",
"Open »%s«" : "Abrir »%s«",
"%1$s via %2$s" : "%1$s a través de %2$s",
"You are not allowed to share %s" : "No tienes permitido compartir %s",
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
"Files cannot be shared with delete permissions" : "No se pueden compartir archivos con permisos de eliminación",
"Files cannot be shared with create permissions" : "No se pueden compartir archivos con permisos de creación",
"Expiration date is in the past" : "La fecha de expiración se encuentra en el pasado",
"_Cannot set expiration date more than %n day in the future_::_Cannot set expiration date more than %n days in the future_" : ["No se puede establecer una fecha de caducidad más de %n día en el futuro","No se puede establecer una fecha de caducidad más de %n días en el futuro","No se puede establecer una fecha de caducidad más de %n días en el futuro"],
"Sharing is only allowed with group members" : "Solo se permite compartir con miembros del grupo",
"%1$s shared »%2$s« with you" : "%1$s compartió »%2$s« contigo",
"%1$s shared »%2$s« with you." : "%1$s compartió »%2$s« contigo.",
"Click the button below to open it." : "Haz click en el botón inferior para abrirlo. ",
"The requested share does not exist anymore" : "El recurso compartido solicitado ya no existe",
"The user was not created because the user limit has been reached. Check your notifications to learn more." : "No se creó el usuario porque se ha alcanzado el límite de usuarios. Consulta tus notificaciones para obtener más información.",
"Could not find category \"%s\"" : "No fue posible encontrar la categoria \"%s\"",
"Sunday" : "Domingo",
"Monday" : "Lunes",
"Tuesday" : "Martes",
"Wednesday" : "Miércoles",
"Thursday" : "Jueves",
"Friday" : "Viernes",
"Saturday" : "Sábado",
"Sun." : "Dom.",
"Mon." : "Lun.",
"Tue." : "Mar.",
"Wed." : "Mie.",
"Thu." : "Jue.",
"Fri." : "Vie.",
"Sat." : "Sab.",
"Su" : "Do",
"Mo" : "Lu",
"Tu" : "Ma",
"We" : "Mi",
"Th" : "Ju",
"Fr" : "Vi",
"Sa" : "Sa",
"January" : "Enero",
"February" : "Febrero",
"March" : "Marzo",
"April" : "Abril",
"May" : "Mayo",
"June" : "Junio",
"July" : "Julio",
"August" : "Agosto",
"September" : "Septiembre",
"October" : "Octubre",
"November" : "Noviembre",
"December" : "Diciembre",
"Jan." : "Ene.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Abr.",
"May." : "May.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Ago.",
"Sep." : "Sep.",
"Oct." : "Oct.",
"Nov." : "Nov.",
"Dec." : "Dic.",
"A valid password must be provided" : "Se debe proporcionar una contraseña válida",
"Login canceled by app" : "Inicio de sesión cancelado por la aplicación",
"App \"%1$s\" cannot be installed because the following dependencies are not fulfilled: %2$s" : "No se puede instalar la aplicación \"%1$s\" porque no se cumplen las siguientes dependencias: %2$s",
"a safe home for all your data" : "un lugar seguro para todos tus datos",
"File is currently busy, please try again later" : "El archivo se encuentra actualmente en uso, por favor intentalo más tarde. ",
"Cannot download file" : "No se puede descargar el archivo",
"Application is not enabled" : "La aplicación está deshabilitada",
"Authentication error" : "Error de autenticación",
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "No cuentas con controladores de base de datos (sqlite, mysql o postgresql) instalados. ",
"Cannot write into \"config\" directory." : "No se puede escribir en el directorio \"config\".",
"This can usually be fixed by giving the web server write access to the config directory. See %s" : "Generalmente, esto se puede solucionar otorgando permisos de escritura al servidor web en el directorio de configuración. Consulta %s",
"Or, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it. See %s" : "O, si prefieres mantener el archivo config.php como de solo lectura, establece la opción \"config_is_read_only\" en true. Consulta %s",
"Cannot write into \"apps\" directory." : "No se puede escribir en el directorio \"apps\".",
"This can usually be fixed by giving the web server write access to the apps directory or disabling the App Store in the config file." : "Generalmente, esto se puede solucionar otorgando permisos de escritura al servidor web en el directorio de aplicaciones o deshabilitando la tienda de aplicaciones en el archivo de configuración.",
"Cannot create \"data\" directory." : "No se puede crear el directorio \"data\".",
"This can usually be fixed by giving the web server write access to the root directory. See %s" : "Generalmente, esto se puede solucionar otorgando permisos de escritura al servidor web en el directorio raíz. Consulta %s",
"Permissions can usually be fixed by giving the web server write access to the root directory. See %s." : "Los permisos generalmente se pueden solucionar otorgando permisos de escritura al servidor web en el directorio raíz. Consulta %s.",
"Your data directory is not writable." : "El directorio de datos no es escribible.",
"Setting locale to %s failed." : "Error al establecer la configuración regional en %s.",
"Please install one of these locales on your system and restart your web server." : "Instala una de estas configuraciones regionales en tu sistema y reinicia tu servidor web.",
"PHP module %s not installed." : "El módulo de PHP %s no está instalado. ",
"Please ask your server administrator to install the module." : "Por favor solicita a tu adminsitrador la instalación del módulo. ",
"PHP setting \"%s\" is not set to \"%s\"." : "El ajuste PHP \"%s\" no esta establecido a \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "El cambiar este ajuste del archivo php.ini hará que Nextcloud corra de nuevo.",
"<code>mbstring.func_overload</code> is set to <code>%s</code> instead of the expected value <code>0</code>." : "<code>mbstring.func_overload</code> está configurado como <code>%s</code> en lugar del valor esperado <code>0</code>.",
"To fix this issue set <code>mbstring.func_overload</code> to <code>0</code> in your php.ini." : "Para solucionar este problema, establece <code>mbstring.func_overload</code> como <code>0</code> en tu archivo php.ini.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "Al parecer PHP está configurado para quitar los bloques de comentarios internos. Esto hará que varias aplicaciones principales sean inaccesibles. ",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Esto ha sido causado probablemente por un acelerador de caché como Zend OPcache o eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "¿Los módulos de PHP han sido instalados, pero se siguen enlistando como faltantes?",
"Please ask your server administrator to restart the web server." : "Por favor solicita al administrador reiniciar el servidor web. ",
"The required %s config variable is not configured in the config.php file." : "No se ha configurado la variable de configuración %s requerida en el archivo config.php.",
"Please ask your server administrator to check the Nextcloud configuration." : "Pide a tu administrador del servidor que verifique la configuración de Nextcloud.",
"Your data directory must be an absolute path." : "Tu directorio de datos debe ser una ruta absoluta.",
"Check the value of \"datadirectory\" in your configuration." : "Verifica el valor de \"datadirectory\" en tu configuración.",
"Your data directory is invalid." : "Tu directorio de datos no es válido.",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Asegurate de que exista una archivo llamado \".ocdata\" en la raíz del directorio de datos. ",
"Action \"%s\" not supported or implemented." : "La acción \"%s\" no está soportada o no está implementada.",
"Authentication failed, wrong token or provider ID given" : "Falló la autenticación, se proporcionó un token o un ID de proveedor incorrecto",
"Parameters missing in order to complete the request. Missing Parameters: \"%s\"" : "Faltan parámetros para completar la solicitud. Parámetros faltantes: \"%s\"",
"ID \"%1$s\" already used by cloud federation provider \"%2$s\"" : "El ID \"%1$s\" ya está en uso por el proveedor de federación de la nube \"%2$s\"",
"Cloud Federation Provider with ID: \"%s\" does not exist." : "No existe un Proveedor de Federación de la Nube con el ID: \"%s\".",
"Could not obtain lock type %d on \"%s\"." : "No fue posible obtener el tipo de bloqueo %d en \"%s\". ",
"Storage unauthorized. %s" : "Almacenamiento no autorizado. %s",
"Storage incomplete configuration. %s" : "Configuración incompleta del almacenamiento. %s",
"Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s",
"Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible",
"Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s",
"The files of the app %1$s were not replaced correctly. Make sure it is a version compatible with the server." : "Los archivos de la aplicación %1$s no se reemplazaron correctamente. Asegúrate de que sea una versión compatible con el servidor.",
"404" : "404",
"Logged in user must be an admin, a sub admin or gotten special right to access this setting" : "El usuario que ha iniciado sesión debe ser un administrador, un subadministrador o tener permisos especiales para acceder a esta configuración.",
"Logged in user must be an admin or sub admin" : "El usuario que ha iniciado sesión debe ser un administrador o un subadministrador.",
"Logged in user must be an admin" : "El usuario firmado debe ser un administrador",
"Full name" : "Nombre completo",
"Unknown user" : "Ususario desconocido",
"Enter the database username and name for %s" : "Introduce el nombre de usuario y el nombre de la base de datos para %s",
"Enter the database username for %s" : "Introduce el nombre de usuario de la base de datos para %s",
"MySQL username and/or password not valid" : "Nombre de usuario y/o contraseña de MySQL no válidos",
"Oracle username and/or password not valid" : "Usuario y/o contraseña de Oracle inválidos",
"PostgreSQL username and/or password not valid" : "El Usuario y/o Contraseña de PostgreSQL inválido(s)",
"Set an admin username." : "Establecer un Usuario administrador",
"Sharing %s failed, because this item is already shared with user %s" : "Se presento una falla al compartir %s, porque este elemento ya ha sido compartido con el usuario %s",
"The username is already being used" : "Ese usuario ya está en uso",
"Could not create user" : "No fue posible crear el usuario",
"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", spaces and \"_.@-'\"" : "Solo se permiten los siguientes caracteres en un nombre de usuario: \"a-z\", \"A-Z\", \"0-9\", espacios y \"_.@-'\"",
"A valid username must be provided" : "Debes proporcionar un nombre de usuario válido",
"Username contains whitespace at the beginning or at the end" : "El usuario contiene un espacio en blanco al inicio o al final",
"Username must not consist of dots only" : "El usuario no debe consistir de solo puntos. ",
"Username is invalid because files already exist for this user" : "El nombre de usuario no es válido porque ya existen archivos para este usuario",
"User disabled" : "Usuario deshabilitado",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Se requiere de por lo menos libxml2 2.7.0. Actualmente %s está instalado. ",
"To fix this issue update your libxml2 version and restart your web server." : "Para corregir este tema, por favor actualiza la versión de su libxml2 y reinicia tu servidor web. ",
"PostgreSQL >= 9 required." : "Se requiere PostgreSQL >= 9.",
"Please upgrade your database version." : "Actualiza la versión de tu base de datos.",
"Your data directory is readable by other users." : "Tu directorio de datos es legible por otros usuarios.",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Por favor cambia los permisos a 0770 para que el directorio no pueda ser enlistado por otros usuarios. "
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}
+173
View File
@@ -0,0 +1,173 @@
OC.L10N.register(
"lib",
{
"Cannot write into \"config\" directory!" : "¡No se puede escribir en el directorio \"config\"!",
"See %s" : "Ver %s",
"Sample configuration detected" : "Se ha detectado la configuración de muestra",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Se ha detectado que la configuración de muestra ha sido copiada. Esto puede arruiniar tu instalacón y no está soportado. Por favor lee la documentación antes de hacer cambios en el archivo config.php",
"%1$s and %2$s" : "%1$s y %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s y %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s y %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s y %5$s",
"Education Edition" : "Edición Educativa",
"Enterprise bundle" : "Paquete empresarial",
"Groupware bundle" : "Paquete de Groupware",
"Social sharing bundle" : "Paquete para compartir en redes sociales",
"PHP %s or higher is required." : "Se requiere de PHP %s o superior.",
"PHP with a version lower than %s is required." : "PHP con una versión inferiror a la %s es requerido. ",
"%sbit or higher PHP required." : "se requiere PHP para %sbit o superior.",
"The command line tool %s could not be found" : "No fue posible encontar la herramienta de línea de comando %s",
"The library %s is not available." : "La biblioteca %s no está disponible. ",
"Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ",
"Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ",
"Authentication" : "Autenticación",
"Unknown filetype" : "Tipo de archivo desconocido",
"Invalid image" : "Imagen inválida",
"Avatar image is not square" : "La imagen del avatar no es un cuadrado",
"Files" : "Archivos",
"today" : "hoy",
"tomorrow" : "mañana",
"yesterday" : "ayer",
"_in %n day_::_in %n days_" : ["en %n día","en %n días","en %n días"],
"_%n day ago_::_%n days ago_" : ["hace %n día","hace %n días","hace %n días"],
"next month" : "próximo mes",
"last month" : "mes pasado",
"_in %n month_::_in %n months_" : ["en %n mes","en %n meses","en %n meses"],
"_%n month ago_::_%n months ago_" : ["Hace %n mes","Hace %n meses","Hace %n meses"],
"next year" : "próximo año",
"last year" : "año pasado",
"_in %n year_::_in %n years_" : ["en %n año","en %n años","en %n años"],
"_%n year ago_::_%n years ago_" : ["hace %n año","hace %n años","hace %n años"],
"_in %n hour_::_in %n hours_" : ["en %n hora","en %n horas","en %n horas"],
"_%n hour ago_::_%n hours ago_" : ["Hace %n hora","Hace %n horas","Hace %n horas"],
"_in %n minute_::_in %n minutes_" : ["en %n minuto","en %n minutos","en %n minutos"],
"_%n minute ago_::_%n minutes ago_" : ["Hace %n minuto","Hace %n minutos","Hace %n minutos"],
"in a few seconds" : "en algunos segundos",
"seconds ago" : "hace segundos",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "El módulo con ID: %sno existe. Por favor hablíitalo en tus configuraciones de aplicación o contacta a tu administrador. ",
"File already exists" : "El archivo ya existe",
"File name is a reserved word" : "Nombre de archivo es una palabra reservada",
"File name contains at least one invalid character" : "El nombre del archivo contiene al menos un caracter inválido",
"File name is too long" : "El nombre del archivo es demasiado largo",
"Dot files are not allowed" : "Los archivos Dot no están permitidos",
"Empty filename is not allowed" : "El uso de nombres de archivo vacíos no está permitido",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "La aplicación \"%s\" no puede ser instalada porque el archivo appinfo no se puede leer. ",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "La aplicación \"%s\" no puede ser instalada porque no es compatible con esta versión del servidor. ",
"__language_name__" : "Español (Guatemala)",
"This is an automatically sent email, please do not reply." : "Este es un correo enviado automáticamente, por favor no lo contestes. ",
"Help" : "Ayuda",
"Apps" : "Aplicaciones",
"Settings" : "Configuraciones",
"Log out" : "Cerrar sesión",
"Users" : "Usuarios",
"Email" : "Correo electrónico",
"Phone" : "Teléfono fijo",
"Twitter" : "Twitter",
"Website" : "Sitio web",
"Address" : "Dirección",
"Profile picture" : "Foto de perfil",
"About" : "Acerca de",
"Additional settings" : "Configuraciones adicionales",
"You need to enter details of an existing account." : "Necesitas ingresar los detalles de una cuenta existente.",
"Oracle connection could not be established" : "No fue posible establecer la conexión a Oracle",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "OS X de Mac no está soportado y %s no funcionará correctamente en esta plataforma ¡Úsalo bajo tu propio riesgo!",
"For the best results, please consider using a GNU/Linux server instead." : "Para mejores resultados, por favor cosidera usar en su lugar un servidor GNU/Linux.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
"Set an admin password." : "Establecer la contraseña del administrador.",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
"Open »%s«" : "Abrir »%s«",
"You are not allowed to share %s" : "No tienes permitido compartir %s",
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
"Expiration date is in the past" : "La fecha de expiración se encuentra en el pasado",
"Click the button below to open it." : "Haz click en el botón inferior para abrirlo. ",
"The requested share does not exist anymore" : "El recurso compartido solicitado ya no existe",
"Could not find category \"%s\"" : "No fue posible encontrar la categoria \"%s\"",
"Sunday" : "Domingo",
"Monday" : "Lunes",
"Tuesday" : "Martes",
"Wednesday" : "Miércoles",
"Thursday" : "Jueves",
"Friday" : "Viernes",
"Saturday" : "Sábado",
"Sun." : "Dom.",
"Mon." : "Lun.",
"Tue." : "Mar.",
"Wed." : "Mie.",
"Thu." : "Jue.",
"Fri." : "Vie.",
"Sat." : "Sab.",
"Su" : "Do",
"Mo" : "Lu",
"Tu" : "Ma",
"We" : "Mi",
"Th" : "Ju",
"Fr" : "Vi",
"Sa" : "Sa",
"January" : "Enero",
"February" : "Febrero",
"March" : "Marzo",
"April" : "Abril",
"May" : "Mayo",
"June" : "Junio",
"July" : "Julio",
"August" : "Agosto",
"September" : "Septiembre",
"October" : "Octubre",
"November" : "Noviembre",
"December" : "Diciembre",
"Jan." : "Ene.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Abr.",
"May." : "May.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Ago.",
"Sep." : "Sep.",
"Oct." : "Oct.",
"Nov." : "Nov.",
"Dec." : "Dic.",
"A valid password must be provided" : "Se debe proporcionar una contraseña válida",
"Login canceled by app" : "Inicio de sesión cancelado por la aplicación",
"a safe home for all your data" : "un lugar seguro para todos tus datos",
"File is currently busy, please try again later" : "El archivo se encuentra actualmente en uso, por favor intentalo más tarde. ",
"Application is not enabled" : "La aplicación está deshabilitada",
"Authentication error" : "Error de autenticación",
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "No cuentas con controladores de base de datos (sqlite, mysql o postgresql) instalados. ",
"PHP module %s not installed." : "El módulo de PHP %s no está instalado. ",
"Please ask your server administrator to install the module." : "Por favor solicita a tu adminsitrador la instalación del módulo. ",
"PHP setting \"%s\" is not set to \"%s\"." : "El ajuste PHP \"%s\" no esta establecido a \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "El cambiar este ajuste del archivo php.ini hará que Nextcloud corra de nuevo.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "Al parecer PHP está configurado para quitar los bloques de comentarios internos. Esto hará que varias aplicaciones principales sean inaccesibles. ",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Esto ha sido causado probablemente por un acelerador de caché como Zend OPcache o eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "¿Los módulos de PHP han sido instalados, pero se siguen enlistando como faltantes?",
"Please ask your server administrator to restart the web server." : "Por favor solicita al administrador reiniciar el servidor web. ",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Asegurate de que exista una archivo llamado \".ocdata\" en la raíz del directorio de datos. ",
"Could not obtain lock type %d on \"%s\"." : "No fue posible obtener el tipo de bloqueo %d en \"%s\". ",
"Storage unauthorized. %s" : "Almacenamiento no autorizado. %s",
"Storage incomplete configuration. %s" : "Configuración incompleta del almacenamiento. %s",
"Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s",
"Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible",
"Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s",
"Logged in user must be an admin" : "El usuario firmado debe ser un administrador",
"Full name" : "Nombre completo",
"Unknown user" : "Ususario desconocido",
"Oracle username and/or password not valid" : "Usuario y/o contraseña de Oracle inválidos",
"PostgreSQL username and/or password not valid" : "El Usuario y/o Contraseña de PostgreSQL inválido(s)",
"Set an admin username." : "Establecer un Usuario administrador",
"Sharing %s failed, because this item is already shared with user %s" : "Se presento una falla al compartir %s, porque este elemento ya ha sido compartido con el usuario %s",
"The username is already being used" : "Ese usuario ya está en uso",
"Could not create user" : "No fue posible crear el usuario",
"A valid username must be provided" : "Debes proporcionar un nombre de usuario válido",
"Username contains whitespace at the beginning or at the end" : "El usuario contiene un espacio en blanco al inicio o al final",
"Username must not consist of dots only" : "El usuario no debe consistir de solo puntos. ",
"User disabled" : "Usuario deshabilitado",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Se requiere de por lo menos libxml2 2.7.0. Actualmente %s está instalado. ",
"To fix this issue update your libxml2 version and restart your web server." : "Para corregir este tema, por favor actualiza la versión de su libxml2 y reinicia tu servidor web. ",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Por favor cambia los permisos a 0770 para que el directorio no pueda ser enlistado por otros usuarios. "
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
+171
View File
@@ -0,0 +1,171 @@
{ "translations": {
"Cannot write into \"config\" directory!" : "¡No se puede escribir en el directorio \"config\"!",
"See %s" : "Ver %s",
"Sample configuration detected" : "Se ha detectado la configuración de muestra",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Se ha detectado que la configuración de muestra ha sido copiada. Esto puede arruiniar tu instalacón y no está soportado. Por favor lee la documentación antes de hacer cambios en el archivo config.php",
"%1$s and %2$s" : "%1$s y %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s y %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s y %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s y %5$s",
"Education Edition" : "Edición Educativa",
"Enterprise bundle" : "Paquete empresarial",
"Groupware bundle" : "Paquete de Groupware",
"Social sharing bundle" : "Paquete para compartir en redes sociales",
"PHP %s or higher is required." : "Se requiere de PHP %s o superior.",
"PHP with a version lower than %s is required." : "PHP con una versión inferiror a la %s es requerido. ",
"%sbit or higher PHP required." : "se requiere PHP para %sbit o superior.",
"The command line tool %s could not be found" : "No fue posible encontar la herramienta de línea de comando %s",
"The library %s is not available." : "La biblioteca %s no está disponible. ",
"Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ",
"Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ",
"Authentication" : "Autenticación",
"Unknown filetype" : "Tipo de archivo desconocido",
"Invalid image" : "Imagen inválida",
"Avatar image is not square" : "La imagen del avatar no es un cuadrado",
"Files" : "Archivos",
"today" : "hoy",
"tomorrow" : "mañana",
"yesterday" : "ayer",
"_in %n day_::_in %n days_" : ["en %n día","en %n días","en %n días"],
"_%n day ago_::_%n days ago_" : ["hace %n día","hace %n días","hace %n días"],
"next month" : "próximo mes",
"last month" : "mes pasado",
"_in %n month_::_in %n months_" : ["en %n mes","en %n meses","en %n meses"],
"_%n month ago_::_%n months ago_" : ["Hace %n mes","Hace %n meses","Hace %n meses"],
"next year" : "próximo año",
"last year" : "año pasado",
"_in %n year_::_in %n years_" : ["en %n año","en %n años","en %n años"],
"_%n year ago_::_%n years ago_" : ["hace %n año","hace %n años","hace %n años"],
"_in %n hour_::_in %n hours_" : ["en %n hora","en %n horas","en %n horas"],
"_%n hour ago_::_%n hours ago_" : ["Hace %n hora","Hace %n horas","Hace %n horas"],
"_in %n minute_::_in %n minutes_" : ["en %n minuto","en %n minutos","en %n minutos"],
"_%n minute ago_::_%n minutes ago_" : ["Hace %n minuto","Hace %n minutos","Hace %n minutos"],
"in a few seconds" : "en algunos segundos",
"seconds ago" : "hace segundos",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "El módulo con ID: %sno existe. Por favor hablíitalo en tus configuraciones de aplicación o contacta a tu administrador. ",
"File already exists" : "El archivo ya existe",
"File name is a reserved word" : "Nombre de archivo es una palabra reservada",
"File name contains at least one invalid character" : "El nombre del archivo contiene al menos un caracter inválido",
"File name is too long" : "El nombre del archivo es demasiado largo",
"Dot files are not allowed" : "Los archivos Dot no están permitidos",
"Empty filename is not allowed" : "El uso de nombres de archivo vacíos no está permitido",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "La aplicación \"%s\" no puede ser instalada porque el archivo appinfo no se puede leer. ",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "La aplicación \"%s\" no puede ser instalada porque no es compatible con esta versión del servidor. ",
"__language_name__" : "Español (Guatemala)",
"This is an automatically sent email, please do not reply." : "Este es un correo enviado automáticamente, por favor no lo contestes. ",
"Help" : "Ayuda",
"Apps" : "Aplicaciones",
"Settings" : "Configuraciones",
"Log out" : "Cerrar sesión",
"Users" : "Usuarios",
"Email" : "Correo electrónico",
"Phone" : "Teléfono fijo",
"Twitter" : "Twitter",
"Website" : "Sitio web",
"Address" : "Dirección",
"Profile picture" : "Foto de perfil",
"About" : "Acerca de",
"Additional settings" : "Configuraciones adicionales",
"You need to enter details of an existing account." : "Necesitas ingresar los detalles de una cuenta existente.",
"Oracle connection could not be established" : "No fue posible establecer la conexión a Oracle",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "OS X de Mac no está soportado y %s no funcionará correctamente en esta plataforma ¡Úsalo bajo tu propio riesgo!",
"For the best results, please consider using a GNU/Linux server instead." : "Para mejores resultados, por favor cosidera usar en su lugar un servidor GNU/Linux.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
"Set an admin password." : "Establecer la contraseña del administrador.",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
"Open »%s«" : "Abrir »%s«",
"You are not allowed to share %s" : "No tienes permitido compartir %s",
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
"Expiration date is in the past" : "La fecha de expiración se encuentra en el pasado",
"Click the button below to open it." : "Haz click en el botón inferior para abrirlo. ",
"The requested share does not exist anymore" : "El recurso compartido solicitado ya no existe",
"Could not find category \"%s\"" : "No fue posible encontrar la categoria \"%s\"",
"Sunday" : "Domingo",
"Monday" : "Lunes",
"Tuesday" : "Martes",
"Wednesday" : "Miércoles",
"Thursday" : "Jueves",
"Friday" : "Viernes",
"Saturday" : "Sábado",
"Sun." : "Dom.",
"Mon." : "Lun.",
"Tue." : "Mar.",
"Wed." : "Mie.",
"Thu." : "Jue.",
"Fri." : "Vie.",
"Sat." : "Sab.",
"Su" : "Do",
"Mo" : "Lu",
"Tu" : "Ma",
"We" : "Mi",
"Th" : "Ju",
"Fr" : "Vi",
"Sa" : "Sa",
"January" : "Enero",
"February" : "Febrero",
"March" : "Marzo",
"April" : "Abril",
"May" : "Mayo",
"June" : "Junio",
"July" : "Julio",
"August" : "Agosto",
"September" : "Septiembre",
"October" : "Octubre",
"November" : "Noviembre",
"December" : "Diciembre",
"Jan." : "Ene.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Abr.",
"May." : "May.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Ago.",
"Sep." : "Sep.",
"Oct." : "Oct.",
"Nov." : "Nov.",
"Dec." : "Dic.",
"A valid password must be provided" : "Se debe proporcionar una contraseña válida",
"Login canceled by app" : "Inicio de sesión cancelado por la aplicación",
"a safe home for all your data" : "un lugar seguro para todos tus datos",
"File is currently busy, please try again later" : "El archivo se encuentra actualmente en uso, por favor intentalo más tarde. ",
"Application is not enabled" : "La aplicación está deshabilitada",
"Authentication error" : "Error de autenticación",
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "No cuentas con controladores de base de datos (sqlite, mysql o postgresql) instalados. ",
"PHP module %s not installed." : "El módulo de PHP %s no está instalado. ",
"Please ask your server administrator to install the module." : "Por favor solicita a tu adminsitrador la instalación del módulo. ",
"PHP setting \"%s\" is not set to \"%s\"." : "El ajuste PHP \"%s\" no esta establecido a \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "El cambiar este ajuste del archivo php.ini hará que Nextcloud corra de nuevo.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "Al parecer PHP está configurado para quitar los bloques de comentarios internos. Esto hará que varias aplicaciones principales sean inaccesibles. ",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Esto ha sido causado probablemente por un acelerador de caché como Zend OPcache o eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "¿Los módulos de PHP han sido instalados, pero se siguen enlistando como faltantes?",
"Please ask your server administrator to restart the web server." : "Por favor solicita al administrador reiniciar el servidor web. ",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Asegurate de que exista una archivo llamado \".ocdata\" en la raíz del directorio de datos. ",
"Could not obtain lock type %d on \"%s\"." : "No fue posible obtener el tipo de bloqueo %d en \"%s\". ",
"Storage unauthorized. %s" : "Almacenamiento no autorizado. %s",
"Storage incomplete configuration. %s" : "Configuración incompleta del almacenamiento. %s",
"Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s",
"Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible",
"Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s",
"Logged in user must be an admin" : "El usuario firmado debe ser un administrador",
"Full name" : "Nombre completo",
"Unknown user" : "Ususario desconocido",
"Oracle username and/or password not valid" : "Usuario y/o contraseña de Oracle inválidos",
"PostgreSQL username and/or password not valid" : "El Usuario y/o Contraseña de PostgreSQL inválido(s)",
"Set an admin username." : "Establecer un Usuario administrador",
"Sharing %s failed, because this item is already shared with user %s" : "Se presento una falla al compartir %s, porque este elemento ya ha sido compartido con el usuario %s",
"The username is already being used" : "Ese usuario ya está en uso",
"Could not create user" : "No fue posible crear el usuario",
"A valid username must be provided" : "Debes proporcionar un nombre de usuario válido",
"Username contains whitespace at the beginning or at the end" : "El usuario contiene un espacio en blanco al inicio o al final",
"Username must not consist of dots only" : "El usuario no debe consistir de solo puntos. ",
"User disabled" : "Usuario deshabilitado",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Se requiere de por lo menos libxml2 2.7.0. Actualmente %s está instalado. ",
"To fix this issue update your libxml2 version and restart your web server." : "Para corregir este tema, por favor actualiza la versión de su libxml2 y reinicia tu servidor web. ",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Por favor cambia los permisos a 0770 para que el directorio no pueda ser enlistado por otros usuarios. "
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}
+172
View File
@@ -0,0 +1,172 @@
OC.L10N.register(
"lib",
{
"Cannot write into \"config\" directory!" : "¡No se puede escribir en el directorio \"config\"!",
"See %s" : "Ver %s",
"Sample configuration detected" : "Se ha detectado la configuración de muestra",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Se ha detectado que la configuración de muestra ha sido copiada. Esto puede arruiniar tu instalacón y no está soportado. Por favor lee la documentación antes de hacer cambios en el archivo config.php",
"%1$s and %2$s" : "%1$s y %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s y %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s y %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s y %5$s",
"Education Edition" : "Edición Educativa",
"Enterprise bundle" : "Paquete empresarial",
"Groupware bundle" : "Paquete de Groupware",
"Social sharing bundle" : "Paquete para compartir en redes sociales",
"PHP %s or higher is required." : "Se requiere de PHP %s o superior.",
"PHP with a version lower than %s is required." : "PHP con una versión inferiror a la %s es requerido. ",
"%sbit or higher PHP required." : "se requiere PHP para %sbit o superior.",
"The command line tool %s could not be found" : "No fue posible encontar la herramienta de línea de comando %s",
"The library %s is not available." : "La biblioteca %s no está disponible. ",
"Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ",
"Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ",
"Authentication" : "Autenticación",
"Unknown filetype" : "Tipo de archivo desconocido",
"Invalid image" : "Imagen inválida",
"Avatar image is not square" : "La imagen del avatar no es un cuadrado",
"Files" : "Archivos",
"today" : "hoy",
"tomorrow" : "mañana",
"yesterday" : "ayer",
"_in %n day_::_in %n days_" : ["en %n día","en %n días","en %n días"],
"_%n day ago_::_%n days ago_" : ["hace %n día","hace %n días","hace %n días"],
"next month" : "próximo mes",
"last month" : "mes pasado",
"_in %n month_::_in %n months_" : ["en %n mes","en %n meses","en %n meses"],
"_%n month ago_::_%n months ago_" : ["Hace %n mes","Hace %n meses","Hace %n meses"],
"next year" : "próximo año",
"last year" : "año pasado",
"_in %n year_::_in %n years_" : ["en %n año","en %n años","en %n años"],
"_%n year ago_::_%n years ago_" : ["hace %n año","hace %n años","hace %n años"],
"_in %n hour_::_in %n hours_" : ["en %n hora","en %n horas","en %n horas"],
"_%n hour ago_::_%n hours ago_" : ["Hace %n hora","Hace %n horas","Hace %n horas"],
"_in %n minute_::_in %n minutes_" : ["en %n minuto","en %n minutos","en %n minutos"],
"_%n minute ago_::_%n minutes ago_" : ["Hace %n minuto","Hace %n minutos","Hace %n minutos"],
"in a few seconds" : "en algunos segundos",
"seconds ago" : "hace segundos",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "El módulo con ID: %sno existe. Por favor hablíitalo en tus configuraciones de aplicación o contacta a tu administrador. ",
"File already exists" : "El archivo ya existe",
"File name is a reserved word" : "Nombre de archivo es una palabra reservada",
"File name contains at least one invalid character" : "El nombre del archivo contiene al menos un caracter inválido",
"File name is too long" : "El nombre del archivo es demasiado largo",
"Dot files are not allowed" : "Los archivos Dot no están permitidos",
"Empty filename is not allowed" : "El uso de nombres de archivo vacíos no está permitido",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "La aplicación \"%s\" no puede ser instalada porque el archivo appinfo no se puede leer. ",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "La aplicación \"%s\" no puede ser instalada porque no es compatible con esta versión del servidor. ",
"__language_name__" : "Español (Honduras)",
"This is an automatically sent email, please do not reply." : "Este es un correo enviado automáticamente, por favor no lo contestes. ",
"Help" : "Ayuda",
"Apps" : "Aplicaciones",
"Settings" : "Configuraciones",
"Log out" : "Salir",
"Users" : "Usuarios",
"Email" : "Correo electrónico",
"Phone" : "Teléfono fijo",
"Twitter" : "Twitter",
"Website" : "Sitio web",
"Address" : "Dirección",
"Profile picture" : "Foto de perfil",
"About" : "Acerca",
"Additional settings" : "Configuraciones adicionales",
"You need to enter details of an existing account." : "Necesitas ingresar los detalles de una cuenta existente.",
"Oracle connection could not be established" : "No fue posible establecer la conexión a Oracle",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "OS X de Mac no está soportado y %s no funcionará correctamente en esta plataforma ¡Úsalo bajo tu propio riesgo!",
"For the best results, please consider using a GNU/Linux server instead." : "Para mejores resultados, por favor cosidera usar en su lugar un servidor GNU/Linux.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
"Set an admin password." : "Establecer la contraseña del administrador.",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
"Open »%s«" : "Abrir »%s«",
"You are not allowed to share %s" : "No tienes permitido compartir %s",
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
"Expiration date is in the past" : "La fecha de expiración se encuentra en el pasado",
"Click the button below to open it." : "Haz click en el botón inferior para abrirlo. ",
"The requested share does not exist anymore" : "El recurso compartido solicitado ya no existe",
"Could not find category \"%s\"" : "No fue posible encontrar la categoria \"%s\"",
"Sunday" : "Domingo",
"Monday" : "Lunes",
"Tuesday" : "Martes",
"Wednesday" : "Miércoles",
"Thursday" : "Jueves",
"Friday" : "Viernes",
"Saturday" : "Sábado",
"Sun." : "Dom.",
"Mon." : "Lun.",
"Tue." : "Mar.",
"Wed." : "Mie.",
"Thu." : "Jue.",
"Fri." : "Vie.",
"Sat." : "Sab.",
"Su" : "Do",
"Mo" : "Lu",
"Tu" : "Ma",
"We" : "Mi",
"Th" : "Ju",
"Fr" : "Vi",
"Sa" : "Sa",
"January" : "Enero",
"February" : "Febrero",
"March" : "Marzo",
"April" : "Abril",
"May" : "Mayo",
"June" : "Junio",
"July" : "Julio",
"August" : "Agosto",
"September" : "Septiembre",
"October" : "Octubre",
"November" : "Noviembre",
"December" : "Diciembre",
"Jan." : "Ene.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Abr.",
"May." : "May.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Ago.",
"Sep." : "Sep.",
"Oct." : "Oct.",
"Nov." : "Nov.",
"Dec." : "Dic.",
"A valid password must be provided" : "Se debe proporcionar una contraseña válida",
"Login canceled by app" : "Inicio de sesión cancelado por la aplicación",
"a safe home for all your data" : "un lugar seguro para todos tus datos",
"File is currently busy, please try again later" : "El archivo se encuentra actualmente en uso, por favor intentalo más tarde. ",
"Application is not enabled" : "La aplicación está deshabilitada",
"Authentication error" : "Error de autenticación",
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "No cuentas con controladores de base de datos (sqlite, mysql o postgresql) instalados. ",
"PHP module %s not installed." : "El módulo de PHP %s no está instalado. ",
"Please ask your server administrator to install the module." : "Por favor solicita a tu adminsitrador la instalación del módulo. ",
"PHP setting \"%s\" is not set to \"%s\"." : "El ajuste PHP \"%s\" no esta establecido a \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "El cambiar este ajuste del archivo php.ini hará que Nextcloud corra de nuevo.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "Al parecer PHP está configurado para quitar los bloques de comentarios internos. Esto hará que varias aplicaciones principales sean inaccesibles. ",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Esto ha sido causado probablemente por un acelerador de caché como Zend OPcache o eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "¿Los módulos de PHP han sido instalados, pero se siguen enlistando como faltantes?",
"Please ask your server administrator to restart the web server." : "Por favor solicita al administrador reiniciar el servidor web. ",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Asegurate de que exista una archivo llamado \".ocdata\" en la raíz del directorio de datos. ",
"Could not obtain lock type %d on \"%s\"." : "No fue posible obtener el tipo de bloqueo %d en \"%s\". ",
"Storage unauthorized. %s" : "Almacenamiento no autorizado. %s",
"Storage incomplete configuration. %s" : "Configuración incompleta del almacenamiento. %s",
"Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s",
"Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible",
"Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s",
"Full name" : "Nombre completo",
"Unknown user" : "Ususario desconocido",
"Oracle username and/or password not valid" : "Usuario y/o contraseña de Oracle inválidos",
"PostgreSQL username and/or password not valid" : "El Usuario y/o Contraseña de PostgreSQL inválido(s)",
"Set an admin username." : "Establecer un Usuario administrador",
"Sharing %s failed, because this item is already shared with user %s" : "Se presento una falla al compartir %s, porque este elemento ya ha sido compartido con el usuario %s",
"The username is already being used" : "Ese usuario ya está en uso",
"Could not create user" : "No fue posible crear el usuario",
"A valid username must be provided" : "Debes proporcionar un nombre de usuario válido",
"Username contains whitespace at the beginning or at the end" : "El usuario contiene un espacio en blanco al inicio o al final",
"Username must not consist of dots only" : "El usuario no debe consistir de solo puntos. ",
"User disabled" : "Usuario deshabilitado",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Se requiere de por lo menos libxml2 2.7.0. Actualmente %s está instalado. ",
"To fix this issue update your libxml2 version and restart your web server." : "Para corregir este tema, por favor actualiza la versión de su libxml2 y reinicia tu servidor web. ",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Por favor cambia los permisos a 0770 para que el directorio no pueda ser enlistado por otros usuarios. "
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
+170
View File
@@ -0,0 +1,170 @@
{ "translations": {
"Cannot write into \"config\" directory!" : "¡No se puede escribir en el directorio \"config\"!",
"See %s" : "Ver %s",
"Sample configuration detected" : "Se ha detectado la configuración de muestra",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Se ha detectado que la configuración de muestra ha sido copiada. Esto puede arruiniar tu instalacón y no está soportado. Por favor lee la documentación antes de hacer cambios en el archivo config.php",
"%1$s and %2$s" : "%1$s y %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s y %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s y %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s y %5$s",
"Education Edition" : "Edición Educativa",
"Enterprise bundle" : "Paquete empresarial",
"Groupware bundle" : "Paquete de Groupware",
"Social sharing bundle" : "Paquete para compartir en redes sociales",
"PHP %s or higher is required." : "Se requiere de PHP %s o superior.",
"PHP with a version lower than %s is required." : "PHP con una versión inferiror a la %s es requerido. ",
"%sbit or higher PHP required." : "se requiere PHP para %sbit o superior.",
"The command line tool %s could not be found" : "No fue posible encontar la herramienta de línea de comando %s",
"The library %s is not available." : "La biblioteca %s no está disponible. ",
"Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ",
"Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ",
"Authentication" : "Autenticación",
"Unknown filetype" : "Tipo de archivo desconocido",
"Invalid image" : "Imagen inválida",
"Avatar image is not square" : "La imagen del avatar no es un cuadrado",
"Files" : "Archivos",
"today" : "hoy",
"tomorrow" : "mañana",
"yesterday" : "ayer",
"_in %n day_::_in %n days_" : ["en %n día","en %n días","en %n días"],
"_%n day ago_::_%n days ago_" : ["hace %n día","hace %n días","hace %n días"],
"next month" : "próximo mes",
"last month" : "mes pasado",
"_in %n month_::_in %n months_" : ["en %n mes","en %n meses","en %n meses"],
"_%n month ago_::_%n months ago_" : ["Hace %n mes","Hace %n meses","Hace %n meses"],
"next year" : "próximo año",
"last year" : "año pasado",
"_in %n year_::_in %n years_" : ["en %n año","en %n años","en %n años"],
"_%n year ago_::_%n years ago_" : ["hace %n año","hace %n años","hace %n años"],
"_in %n hour_::_in %n hours_" : ["en %n hora","en %n horas","en %n horas"],
"_%n hour ago_::_%n hours ago_" : ["Hace %n hora","Hace %n horas","Hace %n horas"],
"_in %n minute_::_in %n minutes_" : ["en %n minuto","en %n minutos","en %n minutos"],
"_%n minute ago_::_%n minutes ago_" : ["Hace %n minuto","Hace %n minutos","Hace %n minutos"],
"in a few seconds" : "en algunos segundos",
"seconds ago" : "hace segundos",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "El módulo con ID: %sno existe. Por favor hablíitalo en tus configuraciones de aplicación o contacta a tu administrador. ",
"File already exists" : "El archivo ya existe",
"File name is a reserved word" : "Nombre de archivo es una palabra reservada",
"File name contains at least one invalid character" : "El nombre del archivo contiene al menos un caracter inválido",
"File name is too long" : "El nombre del archivo es demasiado largo",
"Dot files are not allowed" : "Los archivos Dot no están permitidos",
"Empty filename is not allowed" : "El uso de nombres de archivo vacíos no está permitido",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "La aplicación \"%s\" no puede ser instalada porque el archivo appinfo no se puede leer. ",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "La aplicación \"%s\" no puede ser instalada porque no es compatible con esta versión del servidor. ",
"__language_name__" : "Español (Honduras)",
"This is an automatically sent email, please do not reply." : "Este es un correo enviado automáticamente, por favor no lo contestes. ",
"Help" : "Ayuda",
"Apps" : "Aplicaciones",
"Settings" : "Configuraciones",
"Log out" : "Salir",
"Users" : "Usuarios",
"Email" : "Correo electrónico",
"Phone" : "Teléfono fijo",
"Twitter" : "Twitter",
"Website" : "Sitio web",
"Address" : "Dirección",
"Profile picture" : "Foto de perfil",
"About" : "Acerca",
"Additional settings" : "Configuraciones adicionales",
"You need to enter details of an existing account." : "Necesitas ingresar los detalles de una cuenta existente.",
"Oracle connection could not be established" : "No fue posible establecer la conexión a Oracle",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "OS X de Mac no está soportado y %s no funcionará correctamente en esta plataforma ¡Úsalo bajo tu propio riesgo!",
"For the best results, please consider using a GNU/Linux server instead." : "Para mejores resultados, por favor cosidera usar en su lugar un servidor GNU/Linux.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
"Set an admin password." : "Establecer la contraseña del administrador.",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
"Open »%s«" : "Abrir »%s«",
"You are not allowed to share %s" : "No tienes permitido compartir %s",
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
"Expiration date is in the past" : "La fecha de expiración se encuentra en el pasado",
"Click the button below to open it." : "Haz click en el botón inferior para abrirlo. ",
"The requested share does not exist anymore" : "El recurso compartido solicitado ya no existe",
"Could not find category \"%s\"" : "No fue posible encontrar la categoria \"%s\"",
"Sunday" : "Domingo",
"Monday" : "Lunes",
"Tuesday" : "Martes",
"Wednesday" : "Miércoles",
"Thursday" : "Jueves",
"Friday" : "Viernes",
"Saturday" : "Sábado",
"Sun." : "Dom.",
"Mon." : "Lun.",
"Tue." : "Mar.",
"Wed." : "Mie.",
"Thu." : "Jue.",
"Fri." : "Vie.",
"Sat." : "Sab.",
"Su" : "Do",
"Mo" : "Lu",
"Tu" : "Ma",
"We" : "Mi",
"Th" : "Ju",
"Fr" : "Vi",
"Sa" : "Sa",
"January" : "Enero",
"February" : "Febrero",
"March" : "Marzo",
"April" : "Abril",
"May" : "Mayo",
"June" : "Junio",
"July" : "Julio",
"August" : "Agosto",
"September" : "Septiembre",
"October" : "Octubre",
"November" : "Noviembre",
"December" : "Diciembre",
"Jan." : "Ene.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Abr.",
"May." : "May.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Ago.",
"Sep." : "Sep.",
"Oct." : "Oct.",
"Nov." : "Nov.",
"Dec." : "Dic.",
"A valid password must be provided" : "Se debe proporcionar una contraseña válida",
"Login canceled by app" : "Inicio de sesión cancelado por la aplicación",
"a safe home for all your data" : "un lugar seguro para todos tus datos",
"File is currently busy, please try again later" : "El archivo se encuentra actualmente en uso, por favor intentalo más tarde. ",
"Application is not enabled" : "La aplicación está deshabilitada",
"Authentication error" : "Error de autenticación",
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "No cuentas con controladores de base de datos (sqlite, mysql o postgresql) instalados. ",
"PHP module %s not installed." : "El módulo de PHP %s no está instalado. ",
"Please ask your server administrator to install the module." : "Por favor solicita a tu adminsitrador la instalación del módulo. ",
"PHP setting \"%s\" is not set to \"%s\"." : "El ajuste PHP \"%s\" no esta establecido a \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "El cambiar este ajuste del archivo php.ini hará que Nextcloud corra de nuevo.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "Al parecer PHP está configurado para quitar los bloques de comentarios internos. Esto hará que varias aplicaciones principales sean inaccesibles. ",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Esto ha sido causado probablemente por un acelerador de caché como Zend OPcache o eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "¿Los módulos de PHP han sido instalados, pero se siguen enlistando como faltantes?",
"Please ask your server administrator to restart the web server." : "Por favor solicita al administrador reiniciar el servidor web. ",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Asegurate de que exista una archivo llamado \".ocdata\" en la raíz del directorio de datos. ",
"Could not obtain lock type %d on \"%s\"." : "No fue posible obtener el tipo de bloqueo %d en \"%s\". ",
"Storage unauthorized. %s" : "Almacenamiento no autorizado. %s",
"Storage incomplete configuration. %s" : "Configuración incompleta del almacenamiento. %s",
"Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s",
"Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible",
"Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s",
"Full name" : "Nombre completo",
"Unknown user" : "Ususario desconocido",
"Oracle username and/or password not valid" : "Usuario y/o contraseña de Oracle inválidos",
"PostgreSQL username and/or password not valid" : "El Usuario y/o Contraseña de PostgreSQL inválido(s)",
"Set an admin username." : "Establecer un Usuario administrador",
"Sharing %s failed, because this item is already shared with user %s" : "Se presento una falla al compartir %s, porque este elemento ya ha sido compartido con el usuario %s",
"The username is already being used" : "Ese usuario ya está en uso",
"Could not create user" : "No fue posible crear el usuario",
"A valid username must be provided" : "Debes proporcionar un nombre de usuario válido",
"Username contains whitespace at the beginning or at the end" : "El usuario contiene un espacio en blanco al inicio o al final",
"Username must not consist of dots only" : "El usuario no debe consistir de solo puntos. ",
"User disabled" : "Usuario deshabilitado",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Se requiere de por lo menos libxml2 2.7.0. Actualmente %s está instalado. ",
"To fix this issue update your libxml2 version and restart your web server." : "Para corregir este tema, por favor actualiza la versión de su libxml2 y reinicia tu servidor web. ",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Por favor cambia los permisos a 0770 para que el directorio no pueda ser enlistado por otros usuarios. "
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}
+290
View File
@@ -0,0 +1,290 @@
OC.L10N.register(
"lib",
{
"Cannot write into \"config\" directory!" : "¡No se puede escribir en el directorio \"config\"!",
"This can usually be fixed by giving the web server write access to the config directory." : "Normalmente, esto se puede arreglar dando al servidor web permiso de escritura al directorio de configuración.",
"But, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it." : "Sin embargo, si prefiere mantener el archivo config.php como sólo lectura, establezca la opción \"config_is_read_only\" como verdadero.",
"See %s" : "Ver %s",
"Application %1$s is not present or has a non-compatible version with this server. Please check the apps directory." : "La aplicación %1$s no está presente o tiene una versión no compatible con este servidor. Por favor, revise el directorio de aplicaciones.",
"Sample configuration detected" : "Se ha detectado la configuración de muestra",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Se ha detectado que la configuración de muestra ha sido copiada. Esto puede arruiniar tu instalacón y no está soportado. Por favor lee la documentación antes de hacer cambios en el archivo config.php",
"The page could not be found on the server." : "No se pudo encontrar la página en el servidor.",
"%s email verification" : "%s verificación de correo electrónico",
"Email verification" : "Verificación de correo electrónico",
"Click the following button to confirm your email." : "Haga clic en el siguiente botón para confirmar su correo electrónico.",
"Click the following link to confirm your email." : "Haga clic en el siguiente enlace para confirmar su correo electrónico.",
"Confirm your email" : "Confirmar su correo electrónico",
"Other activities" : "Otras actividades",
"%1$s and %2$s" : "%1$s y %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s y %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s y %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s y %5$s",
"Education Edition" : "Edición Educativa",
"Enterprise bundle" : "Paquete empresarial",
"Groupware bundle" : "Paquete de Groupware",
"Hub bundle" : "Paquete Hub",
"Social sharing bundle" : "Paquete para compartir en redes sociales",
"PHP %s or higher is required." : "Se requiere de PHP %s o superior.",
"PHP with a version lower than %s is required." : "PHP con una versión inferiror a la %s es requerido. ",
"%sbit or higher PHP required." : "se requiere PHP para %sbit o superior.",
"The following architectures are supported: %s" : "Las siguientes arquitecturas están soportadas: %s",
"The following databases are supported: %s" : "Las siguientes bases de datos están soportadas: %s",
"The command line tool %s could not be found" : "No fue posible encontar la herramienta de línea de comando %s",
"The library %s is not available." : "La biblioteca %s no está disponible. ",
"Library %1$s with a version higher than %2$s is required - available version %3$s." : "Se requiere la librería %1$scon una versión superior a %2$s- versión disponible %3$s.",
"Library %1$s with a version lower than %2$s is required - available version %3$s." : "Se requiere la librería %1$s con una versión inferior a %2$s- versión disponible %3$s.",
"The following platforms are supported: %s" : "Las siguientes plataformas están soportadas: %s",
"Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ",
"Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ",
"Logged in account must be an admin, a sub admin or gotten special right to access this setting" : "El usuario que ha iniciado sesión debe ser un administrador, un subadministrador o tener permisos especiales para acceder a esta configuración",
"Logged in account must be an admin or sub admin" : "El usuario conectado debe ser un administrador o un subadministrador",
"Logged in account must be an admin" : "El usuario conectado debe ser un administrador",
"Wiping of device %s has started" : "La limpieza del dispositivo %s ha comenzado",
"Wiping of device »%s« has started" : "La limpieza del dispositivo »%s« ha comenzado",
"»%s« started remote wipe" : "»%s« ha iniciado la limpieza remota",
"Device or application »%s« has started the remote wipe process. You will receive another email once the process has finished" : "El dispositivo o la aplicación »%s« ha iniciado el proceso de limpieza remoto. Recibirá otro correo electrónico cuando el proceso haya finalizado",
"Wiping of device %s has finished" : "La limpieza del dispositivo %s ha finalizado",
"Wiping of device »%s« has finished" : "La limpieza del dispositivo »%s« ha finalizado",
"»%s« finished remote wipe" : "»%s« ha finalizado la limpieza remota",
"Device or application »%s« has finished the remote wipe process." : "El dispositivo o la aplicación »%s« ha finalizado el proceso de limpieza remoto.",
"Remote wipe started" : "La limpieza remota ha iniciado",
"A remote wipe was started on device %s" : "Se ha iniciado la limpieza remota en el dispositivo %s",
"Remote wipe finished" : "La limpieza remota ha finalizado",
"The remote wipe on %s has finished" : "La limpieza remota en %s ha finalizado",
"Authentication" : "Autenticación",
"Unknown filetype" : "Tipo de archivo desconocido",
"Invalid image" : "Imagen inválida",
"Avatar image is not square" : "La imagen del avatar no es un cuadrado",
"Files" : "Archivos",
"View profile" : "Ver perfil",
"Local time: %s" : "Hora local: %s",
"today" : "hoy",
"tomorrow" : "mañana",
"yesterday" : "ayer",
"_in %n day_::_in %n days_" : ["en %n día","en %n días","en %n días"],
"_%n day ago_::_%n days ago_" : ["hace %n día","hace %n días","hace %n días"],
"next month" : "próximo mes",
"last month" : "mes pasado",
"_in %n month_::_in %n months_" : ["en %n mes","en %n meses","en %n meses"],
"_%n month ago_::_%n months ago_" : ["Hace %n mes","Hace %n meses","Hace %n meses"],
"next year" : "próximo año",
"last year" : "año pasado",
"_in %n year_::_in %n years_" : ["en %n año","en %n años","en %n años"],
"_%n year ago_::_%n years ago_" : ["hace %n año","hace %n años","hace %n años"],
"_in %n hour_::_in %n hours_" : ["en %n hora","en %n horas","en %n horas"],
"_%n hour ago_::_%n hours ago_" : ["Hace %n hora","Hace %n horas","Hace %n horas"],
"_in %n minute_::_in %n minutes_" : ["en %n minuto","en %n minutos","en %n minutos"],
"_%n minute ago_::_%n minutes ago_" : ["Hace %n minuto","Hace %n minutos","Hace %n minutos"],
"in a few seconds" : "en algunos segundos",
"seconds ago" : "hace segundos",
"Empty file" : "Archivo vacío",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "El módulo con ID: %sno existe. Por favor hablíitalo en tus configuraciones de aplicación o contacta a tu administrador. ",
"File already exists" : "El archivo ya existe",
"Invalid path" : "Ruta inválida",
"Failed to create file from template" : "No se pudo crear un archivo desde la plantilla",
"Templates" : "Plantillas",
"File name is a reserved word" : "Nombre de archivo es una palabra reservada",
"File name contains at least one invalid character" : "El nombre del archivo contiene al menos un caracter inválido",
"File name is too long" : "El nombre del archivo es demasiado largo",
"Dot files are not allowed" : "Los archivos Dot no están permitidos",
"Empty filename is not allowed" : "El uso de nombres de archivo vacíos no está permitido",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "La aplicación \"%s\" no puede ser instalada porque el archivo appinfo no se puede leer. ",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "La aplicación \"%s\" no puede ser instalada porque no es compatible con esta versión del servidor. ",
"__language_name__" : "Español (México)",
"This is an automatically sent email, please do not reply." : "Este es un correo enviado automáticamente, por favor no lo contestes. ",
"Help" : "Ayuda",
"Appearance and accessibility" : "Apariencia y accesibilidad",
"Apps" : "Aplicaciones",
"Personal settings" : "Configuración personal",
"Administration settings" : "Configuración de administración",
"Settings" : "Ajustes",
"Log out" : "Cerrar sesión",
"Users" : "Usuarios",
"Email" : "Correo electrónico",
"Mail %s" : "Correo %s",
"Fediverse" : "Fediverso",
"View %s on the fediverse" : "Ver %s en el fediverso",
"Phone" : "Teléfono fijo",
"Call %s" : "Llamar a %s",
"Twitter" : "Twitter",
"View %s on Twitter" : "Ver %s en Twitter",
"Website" : "Sitio web",
"Visit %s" : "Visitar %s",
"Address" : "Dirección",
"Profile picture" : "Foto de perfil",
"About" : "Acerca de",
"Display name" : "Nombre para mostrar",
"Headline" : "Título",
"Organisation" : "Organización",
"Role" : "Cargo",
"Unknown account" : "Cuenta desconocida",
"Additional settings" : "Configuraciones adicionales",
"Enter the database Login and name for %s" : "Introduzca el usuario y el nombre para la base de datos %s",
"Enter the database Login for %s" : "Introduzca el usuario de la base de datos %s",
"Enter the database name for %s" : "Introduzca el nombre de la base de datos %s",
"You cannot use dots in the database name %s" : "No puede utilizar puntos para el nombre de base de datos %s ",
"MySQL Login and/or password not valid" : "Usuario y/o contraseña de MySQL inválidos",
"You need to enter details of an existing account." : "Necesitas ingresar los detalles de una cuenta existente.",
"Oracle connection could not be established" : "No fue posible establecer la conexión a Oracle",
"Oracle Login and/or password not valid" : "Usuario y/o contraseña de Oracle inválidos",
"PostgreSQL Login and/or password not valid" : "Usuario y/o contraseña de PostgreSQL inválidos",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "OS X de Mac no está soportado y %s no funcionará correctamente en esta plataforma ¡Úsalo bajo tu propio riesgo!",
"For the best results, please consider using a GNU/Linux server instead." : "Para mejores resultados, por favor cosidera usar en su lugar un servidor GNU/Linux.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
"Set an admin Login." : "Establecer un usuario administrador.",
"Set an admin password." : "Establecer la contraseña del administrador.",
"Cannot create or write into the data directory %s" : "No se puede crear o escribir en el directorio de datos %s",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
"%1$s shared »%2$s« with you and wants to add:" : "%1$s compartió »%2$s« contigo y quiere añadir:",
"%1$s shared »%2$s« with you and wants to add" : "%1$s compartió »%2$s« contigo y quiere añadir",
"»%s« added a note to a file shared with you" : "»%s« añadió una nota a un archivo compartido contigo",
"Open »%s«" : "Abrir »%s«",
"%1$s via %2$s" : "%1$s vía %2$s",
"You are not allowed to share %s" : "No tienes permitido compartir %s",
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
"Files cannot be shared with delete permissions" : "No se pueden compartir archivos con permisos de eliminación",
"Files cannot be shared with create permissions" : "No se pueden compartir archivos con permisos de creación",
"Expiration date is in the past" : "La fecha de expiración se encuentra en el pasado",
"_Cannot set expiration date more than %n day in the future_::_Cannot set expiration date more than %n days in the future_" : ["No se puede fijar la fecha de caducidad más de %n día en el futuro","No se puede fijar la fecha de caducidad más de %n días en el futuro","No se puede fijar la fecha de caducidad más de %n días en el futuro"],
"Sharing is only allowed with group members" : "Sólo está permitido compartir a los miembros del grupo",
"Sharing %s failed, because this item is already shared with the account %s" : "No se pudo compartir %s porque este elemento ya está compartido con el usuario %s",
"%1$s shared »%2$s« with you" : "%1$s compartió »%2$s« contigo",
"%1$s shared »%2$s« with you." : "%1$s compartió »%2$s« contigo.",
"Click the button below to open it." : "Haz click en el botón inferior para abrirlo. ",
"The requested share does not exist anymore" : "El recurso compartido solicitado ya no existe",
"The requested share comes from a disabled user" : "El recurso compartido solicitado proviene de un usuario deshabilitado",
"The user was not created because the user limit has been reached. Check your notifications to learn more." : "No se creó el usuario porque se ha alcanzado el límite de usuarios. Consulta tus notificaciones para obtener más información.",
"Could not find category \"%s\"" : "No fue posible encontrar la categoria \"%s\"",
"Sunday" : "Domingo",
"Monday" : "Lunes",
"Tuesday" : "Martes",
"Wednesday" : "Miércoles",
"Thursday" : "Jueves",
"Friday" : "Viernes",
"Saturday" : "Sábado",
"Sun." : "Dom.",
"Mon." : "Lun.",
"Tue." : "Mar.",
"Wed." : "Mie.",
"Thu." : "Jue.",
"Fri." : "Vie.",
"Sat." : "Sab.",
"Su" : "Do",
"Mo" : "Lu",
"Tu" : "Ma",
"We" : "Mi",
"Th" : "Ju",
"Fr" : "Vi",
"Sa" : "Sa",
"January" : "Enero",
"February" : "Febrero",
"March" : "Marzo",
"April" : "Abril",
"May" : "Mayo",
"June" : "Junio",
"July" : "Julio",
"August" : "Agosto",
"September" : "Septiembre",
"October" : "Octubre",
"November" : "Noviembre",
"December" : "Diciembre",
"Jan." : "Ene.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Abr.",
"May." : "May.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Ago.",
"Sep." : "Sep.",
"Oct." : "Oct.",
"Nov." : "Nov.",
"Dec." : "Dic.",
"A valid password must be provided" : "Se debe proporcionar una contraseña válida",
"The Login is already being used" : "El usuario ya está en uso",
"Could not create account" : "No se pudo crear la cuenta",
"Only the following characters are allowed in an Login: \"a-z\", \"A-Z\", \"0-9\", spaces and \"_.@-'\"" : "Sólo los siguientes caracteres están permitidos en un nombre de usuario: \"a-z\", \"A-Z\", \"0-9\", espacios y \"_.@-'\"",
"A valid Login must be provided" : "Se debe proporcionar un usuario válido",
"Login contains whitespace at the beginning or at the end" : "El usuario contiene espacios en blanco al inicio o al final",
"Login must not consist of dots only" : "El usuario no debe consistir sólo de puntos",
"Login is invalid because files already exist for this user" : "El usuario es inválido porque ya existen archivos para éste",
"Account disabled" : "Cuenta deshabilitada",
"Login canceled by app" : "Inicio de sesión cancelado por la aplicación",
"App \"%1$s\" cannot be installed because the following dependencies are not fulfilled: %2$s" : "No se puede instalar la aplicación \"%1$s\" porque no se cumple con las siguientes dependencias: %2$s ",
"a safe home for all your data" : "un lugar seguro para todos tus datos",
"File is currently busy, please try again later" : "El archivo se encuentra actualmente en uso, por favor intentalo más tarde. ",
"Cannot download file" : "No se puede descargar el archivo",
"Application is not enabled" : "La aplicación está deshabilitada",
"Authentication error" : "Error de autenticación",
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "No cuentas con controladores de base de datos (sqlite, mysql o postgresql) instalados. ",
"Cannot write into \"config\" directory." : "No se puede escribir en el directorio \"config\".",
"This can usually be fixed by giving the web server write access to the config directory. See %s" : "Normalmente, esto se puede arreglar al darle al servidor web permiso de escritura al directorio de configuración. Vea %s",
"Or, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it. See %s" : "Sin embargo, si prefiere mantener el archivo config.php como sólo lectura, establezca la opción \"config_is_read_only\" como verdadero. Vea %s",
"Cannot write into \"apps\" directory." : "No se puede escribir en el directorio \"apps\".",
"This can usually be fixed by giving the web server write access to the apps directory or disabling the App Store in the config file." : "Normalmente, esto se puede arreglar al darle al servidor web permiso de escritura al directorio de aplicaciones o deshabilitando la tienda de aplicaciones del archivo de configuración.",
"Cannot create \"data\" directory." : "No se puede crear el directorio \"data\".",
"This can usually be fixed by giving the web server write access to the root directory. See %s" : "Normalmente, esto se puede arreglar dando al servidor web permiso de escritura al directorio raíz. Vea %s",
"Permissions can usually be fixed by giving the web server write access to the root directory. See %s." : "Los permisos normalmente se pueden arreglar dando al servidor web permiso de escritura al directorio raíz. Vea %s.",
"Your data directory is not writable." : "No se puede escribir en su carpeta de datos.",
"Setting locale to %s failed." : "Falló al establecer la configuración regional a %s.",
"Please install one of these locales on your system and restart your web server." : "Por favor, instale una de estas configuraciones regionales en su sistema y reinicie el servidor web.",
"PHP module %s not installed." : "El módulo de PHP %s no está instalado. ",
"Please ask your server administrator to install the module." : "Por favor solicita a tu adminsitrador la instalación del módulo. ",
"PHP setting \"%s\" is not set to \"%s\"." : "El ajuste PHP \"%s\" no esta establecido a \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "El cambiar este ajuste del archivo php.ini hará que Nextcloud corra de nuevo.",
"<code>mbstring.func_overload</code> is set to <code>%s</code> instead of the expected value <code>0</code>." : "<code>mbstring.func_overload</code> está configurado como <code>%s</code> en lugar del valor esperado <code>0</code>.",
"To fix this issue set <code>mbstring.func_overload</code> to <code>0</code> in your php.ini." : "Para arreglar este problema, establezca <code>mbstring.func_overload</code> como<code>0</code> en su php.ini.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "Al parecer PHP está configurado para quitar los bloques de comentarios internos. Esto hará que varias aplicaciones principales sean inaccesibles. ",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Esto ha sido causado probablemente por un acelerador de caché como Zend OPcache o eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "¿Los módulos de PHP han sido instalados, pero se siguen enlistando como faltantes?",
"Please ask your server administrator to restart the web server." : "Por favor solicita al administrador reiniciar el servidor web. ",
"The required %s config variable is not configured in the config.php file." : "La variable de configuración requerida %s no está configurada en el archivo config.php.",
"Please ask your server administrator to check the Nextcloud configuration." : "Por favor, pida al administrador del servidor que verifique la configuración de Nextcloud.",
"Your data directory is readable by other people." : "Su directorio de datos puede ser leído por otros usuarios.",
"Please change the permissions to 0770 so that the directory cannot be listed by other people." : "Por favor, cambie los permisos a 0770 para que el directorio no se pueda listar por otros usuarios.",
"Your data directory must be an absolute path." : "Su directorio de datos debe ser una ruta absoluta.",
"Check the value of \"datadirectory\" in your configuration." : "Revise el valor de \"datadirectory\" en su configuración.",
"Your data directory is invalid." : "Su directorio de datos es inválido.",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Asegurate de que exista una archivo llamado \".ocdata\" en la raíz del directorio de datos. ",
"Action \"%s\" not supported or implemented." : "La acción \"%s\" no está soportada o no está implementada.",
"Authentication failed, wrong token or provider ID given" : "Falló la autentificación, se proporcionó un token o un identificador de proveedor incorrecto",
"Parameters missing in order to complete the request. Missing Parameters: \"%s\"" : "Faltan parámetros para completar la solicitud. Parámetros faltantes: \"%s\"",
"ID \"%1$s\" already used by cloud federation provider \"%2$s\"" : "El identificador \"%1$s\" ya está en uso por el proveedor de federación de la nube \"%2$s\"",
"Cloud Federation Provider with ID: \"%s\" does not exist." : "El proveedor de federación de la nube con identificador \"%s\" no existe.",
"Could not obtain lock type %d on \"%s\"." : "No fue posible obtener el tipo de bloqueo %d en \"%s\". ",
"Storage unauthorized. %s" : "Almacenamiento no autorizado. %s",
"Storage incomplete configuration. %s" : "Configuración incompleta del almacenamiento. %s",
"Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s",
"Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible",
"Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s",
"Free prompt" : "Liberar prompt",
"Runs an arbitrary prompt through the language model." : "Ejecuta un prompt arbitrario a través del modelo de lenguaje.",
"Generate headline" : "Generar titular",
"Generates a possible headline for a text." : "Genera un posible titular para un texto.",
"Summarize" : "Resumir",
"Summarizes text by reducing its length without losing key information." : "Resume el texto reduciendo su longitud sin perder información clave.",
"Extract topics" : "Extraer temas",
"Extracts topics from a text and outputs them separated by commas." : "Extrae los temas de un texto y genera una salida separada por comas. ",
"404" : "404",
"Logged in user must be an admin" : "El usuario firmado debe ser un administrador",
"Full name" : "Nombre completo",
"Unknown user" : "Ususario desconocido",
"Oracle username and/or password not valid" : "Usuario y/o contraseña de Oracle inválidos",
"PostgreSQL username and/or password not valid" : "El Usuario y/o Contraseña de PostgreSQL inválido(s)",
"Set an admin username." : "Establecer un Usuario administrador",
"Sharing %s failed, because this item is already shared with user %s" : "Se presento una falla al compartir %s, porque este elemento ya ha sido compartido con el usuario %s",
"The username is already being used" : "Ese usuario ya está en uso",
"Could not create user" : "No fue posible crear el usuario",
"A valid username must be provided" : "Debes proporcionar un nombre de usuario válido",
"Username contains whitespace at the beginning or at the end" : "El usuario contiene un espacio en blanco al inicio o al final",
"Username must not consist of dots only" : "El usuario no debe consistir de solo puntos. ",
"User disabled" : "Usuario deshabilitado",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Se requiere de por lo menos libxml2 2.7.0. Actualmente %s está instalado. ",
"To fix this issue update your libxml2 version and restart your web server." : "Para corregir este tema, por favor actualiza la versión de su libxml2 y reinicia tu servidor web. ",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Por favor cambia los permisos a 0770 para que el directorio no pueda ser enlistado por otros usuarios. "
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
+288
View File
@@ -0,0 +1,288 @@
{ "translations": {
"Cannot write into \"config\" directory!" : "¡No se puede escribir en el directorio \"config\"!",
"This can usually be fixed by giving the web server write access to the config directory." : "Normalmente, esto se puede arreglar dando al servidor web permiso de escritura al directorio de configuración.",
"But, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it." : "Sin embargo, si prefiere mantener el archivo config.php como sólo lectura, establezca la opción \"config_is_read_only\" como verdadero.",
"See %s" : "Ver %s",
"Application %1$s is not present or has a non-compatible version with this server. Please check the apps directory." : "La aplicación %1$s no está presente o tiene una versión no compatible con este servidor. Por favor, revise el directorio de aplicaciones.",
"Sample configuration detected" : "Se ha detectado la configuración de muestra",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Se ha detectado que la configuración de muestra ha sido copiada. Esto puede arruiniar tu instalacón y no está soportado. Por favor lee la documentación antes de hacer cambios en el archivo config.php",
"The page could not be found on the server." : "No se pudo encontrar la página en el servidor.",
"%s email verification" : "%s verificación de correo electrónico",
"Email verification" : "Verificación de correo electrónico",
"Click the following button to confirm your email." : "Haga clic en el siguiente botón para confirmar su correo electrónico.",
"Click the following link to confirm your email." : "Haga clic en el siguiente enlace para confirmar su correo electrónico.",
"Confirm your email" : "Confirmar su correo electrónico",
"Other activities" : "Otras actividades",
"%1$s and %2$s" : "%1$s y %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s y %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s y %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s y %5$s",
"Education Edition" : "Edición Educativa",
"Enterprise bundle" : "Paquete empresarial",
"Groupware bundle" : "Paquete de Groupware",
"Hub bundle" : "Paquete Hub",
"Social sharing bundle" : "Paquete para compartir en redes sociales",
"PHP %s or higher is required." : "Se requiere de PHP %s o superior.",
"PHP with a version lower than %s is required." : "PHP con una versión inferiror a la %s es requerido. ",
"%sbit or higher PHP required." : "se requiere PHP para %sbit o superior.",
"The following architectures are supported: %s" : "Las siguientes arquitecturas están soportadas: %s",
"The following databases are supported: %s" : "Las siguientes bases de datos están soportadas: %s",
"The command line tool %s could not be found" : "No fue posible encontar la herramienta de línea de comando %s",
"The library %s is not available." : "La biblioteca %s no está disponible. ",
"Library %1$s with a version higher than %2$s is required - available version %3$s." : "Se requiere la librería %1$scon una versión superior a %2$s- versión disponible %3$s.",
"Library %1$s with a version lower than %2$s is required - available version %3$s." : "Se requiere la librería %1$s con una versión inferior a %2$s- versión disponible %3$s.",
"The following platforms are supported: %s" : "Las siguientes plataformas están soportadas: %s",
"Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ",
"Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ",
"Logged in account must be an admin, a sub admin or gotten special right to access this setting" : "El usuario que ha iniciado sesión debe ser un administrador, un subadministrador o tener permisos especiales para acceder a esta configuración",
"Logged in account must be an admin or sub admin" : "El usuario conectado debe ser un administrador o un subadministrador",
"Logged in account must be an admin" : "El usuario conectado debe ser un administrador",
"Wiping of device %s has started" : "La limpieza del dispositivo %s ha comenzado",
"Wiping of device »%s« has started" : "La limpieza del dispositivo »%s« ha comenzado",
"»%s« started remote wipe" : "»%s« ha iniciado la limpieza remota",
"Device or application »%s« has started the remote wipe process. You will receive another email once the process has finished" : "El dispositivo o la aplicación »%s« ha iniciado el proceso de limpieza remoto. Recibirá otro correo electrónico cuando el proceso haya finalizado",
"Wiping of device %s has finished" : "La limpieza del dispositivo %s ha finalizado",
"Wiping of device »%s« has finished" : "La limpieza del dispositivo »%s« ha finalizado",
"»%s« finished remote wipe" : "»%s« ha finalizado la limpieza remota",
"Device or application »%s« has finished the remote wipe process." : "El dispositivo o la aplicación »%s« ha finalizado el proceso de limpieza remoto.",
"Remote wipe started" : "La limpieza remota ha iniciado",
"A remote wipe was started on device %s" : "Se ha iniciado la limpieza remota en el dispositivo %s",
"Remote wipe finished" : "La limpieza remota ha finalizado",
"The remote wipe on %s has finished" : "La limpieza remota en %s ha finalizado",
"Authentication" : "Autenticación",
"Unknown filetype" : "Tipo de archivo desconocido",
"Invalid image" : "Imagen inválida",
"Avatar image is not square" : "La imagen del avatar no es un cuadrado",
"Files" : "Archivos",
"View profile" : "Ver perfil",
"Local time: %s" : "Hora local: %s",
"today" : "hoy",
"tomorrow" : "mañana",
"yesterday" : "ayer",
"_in %n day_::_in %n days_" : ["en %n día","en %n días","en %n días"],
"_%n day ago_::_%n days ago_" : ["hace %n día","hace %n días","hace %n días"],
"next month" : "próximo mes",
"last month" : "mes pasado",
"_in %n month_::_in %n months_" : ["en %n mes","en %n meses","en %n meses"],
"_%n month ago_::_%n months ago_" : ["Hace %n mes","Hace %n meses","Hace %n meses"],
"next year" : "próximo año",
"last year" : "año pasado",
"_in %n year_::_in %n years_" : ["en %n año","en %n años","en %n años"],
"_%n year ago_::_%n years ago_" : ["hace %n año","hace %n años","hace %n años"],
"_in %n hour_::_in %n hours_" : ["en %n hora","en %n horas","en %n horas"],
"_%n hour ago_::_%n hours ago_" : ["Hace %n hora","Hace %n horas","Hace %n horas"],
"_in %n minute_::_in %n minutes_" : ["en %n minuto","en %n minutos","en %n minutos"],
"_%n minute ago_::_%n minutes ago_" : ["Hace %n minuto","Hace %n minutos","Hace %n minutos"],
"in a few seconds" : "en algunos segundos",
"seconds ago" : "hace segundos",
"Empty file" : "Archivo vacío",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "El módulo con ID: %sno existe. Por favor hablíitalo en tus configuraciones de aplicación o contacta a tu administrador. ",
"File already exists" : "El archivo ya existe",
"Invalid path" : "Ruta inválida",
"Failed to create file from template" : "No se pudo crear un archivo desde la plantilla",
"Templates" : "Plantillas",
"File name is a reserved word" : "Nombre de archivo es una palabra reservada",
"File name contains at least one invalid character" : "El nombre del archivo contiene al menos un caracter inválido",
"File name is too long" : "El nombre del archivo es demasiado largo",
"Dot files are not allowed" : "Los archivos Dot no están permitidos",
"Empty filename is not allowed" : "El uso de nombres de archivo vacíos no está permitido",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "La aplicación \"%s\" no puede ser instalada porque el archivo appinfo no se puede leer. ",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "La aplicación \"%s\" no puede ser instalada porque no es compatible con esta versión del servidor. ",
"__language_name__" : "Español (México)",
"This is an automatically sent email, please do not reply." : "Este es un correo enviado automáticamente, por favor no lo contestes. ",
"Help" : "Ayuda",
"Appearance and accessibility" : "Apariencia y accesibilidad",
"Apps" : "Aplicaciones",
"Personal settings" : "Configuración personal",
"Administration settings" : "Configuración de administración",
"Settings" : "Ajustes",
"Log out" : "Cerrar sesión",
"Users" : "Usuarios",
"Email" : "Correo electrónico",
"Mail %s" : "Correo %s",
"Fediverse" : "Fediverso",
"View %s on the fediverse" : "Ver %s en el fediverso",
"Phone" : "Teléfono fijo",
"Call %s" : "Llamar a %s",
"Twitter" : "Twitter",
"View %s on Twitter" : "Ver %s en Twitter",
"Website" : "Sitio web",
"Visit %s" : "Visitar %s",
"Address" : "Dirección",
"Profile picture" : "Foto de perfil",
"About" : "Acerca de",
"Display name" : "Nombre para mostrar",
"Headline" : "Título",
"Organisation" : "Organización",
"Role" : "Cargo",
"Unknown account" : "Cuenta desconocida",
"Additional settings" : "Configuraciones adicionales",
"Enter the database Login and name for %s" : "Introduzca el usuario y el nombre para la base de datos %s",
"Enter the database Login for %s" : "Introduzca el usuario de la base de datos %s",
"Enter the database name for %s" : "Introduzca el nombre de la base de datos %s",
"You cannot use dots in the database name %s" : "No puede utilizar puntos para el nombre de base de datos %s ",
"MySQL Login and/or password not valid" : "Usuario y/o contraseña de MySQL inválidos",
"You need to enter details of an existing account." : "Necesitas ingresar los detalles de una cuenta existente.",
"Oracle connection could not be established" : "No fue posible establecer la conexión a Oracle",
"Oracle Login and/or password not valid" : "Usuario y/o contraseña de Oracle inválidos",
"PostgreSQL Login and/or password not valid" : "Usuario y/o contraseña de PostgreSQL inválidos",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "OS X de Mac no está soportado y %s no funcionará correctamente en esta plataforma ¡Úsalo bajo tu propio riesgo!",
"For the best results, please consider using a GNU/Linux server instead." : "Para mejores resultados, por favor cosidera usar en su lugar un servidor GNU/Linux.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
"Set an admin Login." : "Establecer un usuario administrador.",
"Set an admin password." : "Establecer la contraseña del administrador.",
"Cannot create or write into the data directory %s" : "No se puede crear o escribir en el directorio de datos %s",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
"%1$s shared »%2$s« with you and wants to add:" : "%1$s compartió »%2$s« contigo y quiere añadir:",
"%1$s shared »%2$s« with you and wants to add" : "%1$s compartió »%2$s« contigo y quiere añadir",
"»%s« added a note to a file shared with you" : "»%s« añadió una nota a un archivo compartido contigo",
"Open »%s«" : "Abrir »%s«",
"%1$s via %2$s" : "%1$s vía %2$s",
"You are not allowed to share %s" : "No tienes permitido compartir %s",
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
"Files cannot be shared with delete permissions" : "No se pueden compartir archivos con permisos de eliminación",
"Files cannot be shared with create permissions" : "No se pueden compartir archivos con permisos de creación",
"Expiration date is in the past" : "La fecha de expiración se encuentra en el pasado",
"_Cannot set expiration date more than %n day in the future_::_Cannot set expiration date more than %n days in the future_" : ["No se puede fijar la fecha de caducidad más de %n día en el futuro","No se puede fijar la fecha de caducidad más de %n días en el futuro","No se puede fijar la fecha de caducidad más de %n días en el futuro"],
"Sharing is only allowed with group members" : "Sólo está permitido compartir a los miembros del grupo",
"Sharing %s failed, because this item is already shared with the account %s" : "No se pudo compartir %s porque este elemento ya está compartido con el usuario %s",
"%1$s shared »%2$s« with you" : "%1$s compartió »%2$s« contigo",
"%1$s shared »%2$s« with you." : "%1$s compartió »%2$s« contigo.",
"Click the button below to open it." : "Haz click en el botón inferior para abrirlo. ",
"The requested share does not exist anymore" : "El recurso compartido solicitado ya no existe",
"The requested share comes from a disabled user" : "El recurso compartido solicitado proviene de un usuario deshabilitado",
"The user was not created because the user limit has been reached. Check your notifications to learn more." : "No se creó el usuario porque se ha alcanzado el límite de usuarios. Consulta tus notificaciones para obtener más información.",
"Could not find category \"%s\"" : "No fue posible encontrar la categoria \"%s\"",
"Sunday" : "Domingo",
"Monday" : "Lunes",
"Tuesday" : "Martes",
"Wednesday" : "Miércoles",
"Thursday" : "Jueves",
"Friday" : "Viernes",
"Saturday" : "Sábado",
"Sun." : "Dom.",
"Mon." : "Lun.",
"Tue." : "Mar.",
"Wed." : "Mie.",
"Thu." : "Jue.",
"Fri." : "Vie.",
"Sat." : "Sab.",
"Su" : "Do",
"Mo" : "Lu",
"Tu" : "Ma",
"We" : "Mi",
"Th" : "Ju",
"Fr" : "Vi",
"Sa" : "Sa",
"January" : "Enero",
"February" : "Febrero",
"March" : "Marzo",
"April" : "Abril",
"May" : "Mayo",
"June" : "Junio",
"July" : "Julio",
"August" : "Agosto",
"September" : "Septiembre",
"October" : "Octubre",
"November" : "Noviembre",
"December" : "Diciembre",
"Jan." : "Ene.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Abr.",
"May." : "May.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Ago.",
"Sep." : "Sep.",
"Oct." : "Oct.",
"Nov." : "Nov.",
"Dec." : "Dic.",
"A valid password must be provided" : "Se debe proporcionar una contraseña válida",
"The Login is already being used" : "El usuario ya está en uso",
"Could not create account" : "No se pudo crear la cuenta",
"Only the following characters are allowed in an Login: \"a-z\", \"A-Z\", \"0-9\", spaces and \"_.@-'\"" : "Sólo los siguientes caracteres están permitidos en un nombre de usuario: \"a-z\", \"A-Z\", \"0-9\", espacios y \"_.@-'\"",
"A valid Login must be provided" : "Se debe proporcionar un usuario válido",
"Login contains whitespace at the beginning or at the end" : "El usuario contiene espacios en blanco al inicio o al final",
"Login must not consist of dots only" : "El usuario no debe consistir sólo de puntos",
"Login is invalid because files already exist for this user" : "El usuario es inválido porque ya existen archivos para éste",
"Account disabled" : "Cuenta deshabilitada",
"Login canceled by app" : "Inicio de sesión cancelado por la aplicación",
"App \"%1$s\" cannot be installed because the following dependencies are not fulfilled: %2$s" : "No se puede instalar la aplicación \"%1$s\" porque no se cumple con las siguientes dependencias: %2$s ",
"a safe home for all your data" : "un lugar seguro para todos tus datos",
"File is currently busy, please try again later" : "El archivo se encuentra actualmente en uso, por favor intentalo más tarde. ",
"Cannot download file" : "No se puede descargar el archivo",
"Application is not enabled" : "La aplicación está deshabilitada",
"Authentication error" : "Error de autenticación",
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "No cuentas con controladores de base de datos (sqlite, mysql o postgresql) instalados. ",
"Cannot write into \"config\" directory." : "No se puede escribir en el directorio \"config\".",
"This can usually be fixed by giving the web server write access to the config directory. See %s" : "Normalmente, esto se puede arreglar al darle al servidor web permiso de escritura al directorio de configuración. Vea %s",
"Or, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it. See %s" : "Sin embargo, si prefiere mantener el archivo config.php como sólo lectura, establezca la opción \"config_is_read_only\" como verdadero. Vea %s",
"Cannot write into \"apps\" directory." : "No se puede escribir en el directorio \"apps\".",
"This can usually be fixed by giving the web server write access to the apps directory or disabling the App Store in the config file." : "Normalmente, esto se puede arreglar al darle al servidor web permiso de escritura al directorio de aplicaciones o deshabilitando la tienda de aplicaciones del archivo de configuración.",
"Cannot create \"data\" directory." : "No se puede crear el directorio \"data\".",
"This can usually be fixed by giving the web server write access to the root directory. See %s" : "Normalmente, esto se puede arreglar dando al servidor web permiso de escritura al directorio raíz. Vea %s",
"Permissions can usually be fixed by giving the web server write access to the root directory. See %s." : "Los permisos normalmente se pueden arreglar dando al servidor web permiso de escritura al directorio raíz. Vea %s.",
"Your data directory is not writable." : "No se puede escribir en su carpeta de datos.",
"Setting locale to %s failed." : "Falló al establecer la configuración regional a %s.",
"Please install one of these locales on your system and restart your web server." : "Por favor, instale una de estas configuraciones regionales en su sistema y reinicie el servidor web.",
"PHP module %s not installed." : "El módulo de PHP %s no está instalado. ",
"Please ask your server administrator to install the module." : "Por favor solicita a tu adminsitrador la instalación del módulo. ",
"PHP setting \"%s\" is not set to \"%s\"." : "El ajuste PHP \"%s\" no esta establecido a \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "El cambiar este ajuste del archivo php.ini hará que Nextcloud corra de nuevo.",
"<code>mbstring.func_overload</code> is set to <code>%s</code> instead of the expected value <code>0</code>." : "<code>mbstring.func_overload</code> está configurado como <code>%s</code> en lugar del valor esperado <code>0</code>.",
"To fix this issue set <code>mbstring.func_overload</code> to <code>0</code> in your php.ini." : "Para arreglar este problema, establezca <code>mbstring.func_overload</code> como<code>0</code> en su php.ini.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "Al parecer PHP está configurado para quitar los bloques de comentarios internos. Esto hará que varias aplicaciones principales sean inaccesibles. ",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Esto ha sido causado probablemente por un acelerador de caché como Zend OPcache o eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "¿Los módulos de PHP han sido instalados, pero se siguen enlistando como faltantes?",
"Please ask your server administrator to restart the web server." : "Por favor solicita al administrador reiniciar el servidor web. ",
"The required %s config variable is not configured in the config.php file." : "La variable de configuración requerida %s no está configurada en el archivo config.php.",
"Please ask your server administrator to check the Nextcloud configuration." : "Por favor, pida al administrador del servidor que verifique la configuración de Nextcloud.",
"Your data directory is readable by other people." : "Su directorio de datos puede ser leído por otros usuarios.",
"Please change the permissions to 0770 so that the directory cannot be listed by other people." : "Por favor, cambie los permisos a 0770 para que el directorio no se pueda listar por otros usuarios.",
"Your data directory must be an absolute path." : "Su directorio de datos debe ser una ruta absoluta.",
"Check the value of \"datadirectory\" in your configuration." : "Revise el valor de \"datadirectory\" en su configuración.",
"Your data directory is invalid." : "Su directorio de datos es inválido.",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Asegurate de que exista una archivo llamado \".ocdata\" en la raíz del directorio de datos. ",
"Action \"%s\" not supported or implemented." : "La acción \"%s\" no está soportada o no está implementada.",
"Authentication failed, wrong token or provider ID given" : "Falló la autentificación, se proporcionó un token o un identificador de proveedor incorrecto",
"Parameters missing in order to complete the request. Missing Parameters: \"%s\"" : "Faltan parámetros para completar la solicitud. Parámetros faltantes: \"%s\"",
"ID \"%1$s\" already used by cloud federation provider \"%2$s\"" : "El identificador \"%1$s\" ya está en uso por el proveedor de federación de la nube \"%2$s\"",
"Cloud Federation Provider with ID: \"%s\" does not exist." : "El proveedor de federación de la nube con identificador \"%s\" no existe.",
"Could not obtain lock type %d on \"%s\"." : "No fue posible obtener el tipo de bloqueo %d en \"%s\". ",
"Storage unauthorized. %s" : "Almacenamiento no autorizado. %s",
"Storage incomplete configuration. %s" : "Configuración incompleta del almacenamiento. %s",
"Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s",
"Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible",
"Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s",
"Free prompt" : "Liberar prompt",
"Runs an arbitrary prompt through the language model." : "Ejecuta un prompt arbitrario a través del modelo de lenguaje.",
"Generate headline" : "Generar titular",
"Generates a possible headline for a text." : "Genera un posible titular para un texto.",
"Summarize" : "Resumir",
"Summarizes text by reducing its length without losing key information." : "Resume el texto reduciendo su longitud sin perder información clave.",
"Extract topics" : "Extraer temas",
"Extracts topics from a text and outputs them separated by commas." : "Extrae los temas de un texto y genera una salida separada por comas. ",
"404" : "404",
"Logged in user must be an admin" : "El usuario firmado debe ser un administrador",
"Full name" : "Nombre completo",
"Unknown user" : "Ususario desconocido",
"Oracle username and/or password not valid" : "Usuario y/o contraseña de Oracle inválidos",
"PostgreSQL username and/or password not valid" : "El Usuario y/o Contraseña de PostgreSQL inválido(s)",
"Set an admin username." : "Establecer un Usuario administrador",
"Sharing %s failed, because this item is already shared with user %s" : "Se presento una falla al compartir %s, porque este elemento ya ha sido compartido con el usuario %s",
"The username is already being used" : "Ese usuario ya está en uso",
"Could not create user" : "No fue posible crear el usuario",
"A valid username must be provided" : "Debes proporcionar un nombre de usuario válido",
"Username contains whitespace at the beginning or at the end" : "El usuario contiene un espacio en blanco al inicio o al final",
"Username must not consist of dots only" : "El usuario no debe consistir de solo puntos. ",
"User disabled" : "Usuario deshabilitado",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Se requiere de por lo menos libxml2 2.7.0. Actualmente %s está instalado. ",
"To fix this issue update your libxml2 version and restart your web server." : "Para corregir este tema, por favor actualiza la versión de su libxml2 y reinicia tu servidor web. ",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Por favor cambia los permisos a 0770 para que el directorio no pueda ser enlistado por otros usuarios. "
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}
+172
View File
@@ -0,0 +1,172 @@
OC.L10N.register(
"lib",
{
"Cannot write into \"config\" directory!" : "¡No se puede escribir en el directorio \"config\"!",
"See %s" : "Ver %s",
"Sample configuration detected" : "Se ha detectado la configuración de muestra",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Se ha detectado que la configuración de muestra ha sido copiada. Esto puede arruiniar tu instalacón y no está soportado. Por favor lee la documentación antes de hacer cambios en el archivo config.php",
"%1$s and %2$s" : "%1$s y %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s y %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s y %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s y %5$s",
"Education Edition" : "Edición Educativa",
"Enterprise bundle" : "Paquete empresarial",
"Groupware bundle" : "Paquete de Groupware",
"Social sharing bundle" : "Paquete para compartir en redes sociales",
"PHP %s or higher is required." : "Se requiere de PHP %s o superior.",
"PHP with a version lower than %s is required." : "PHP con una versión inferiror a la %s es requerido. ",
"%sbit or higher PHP required." : "se requiere PHP para %sbit o superior.",
"The command line tool %s could not be found" : "No fue posible encontar la herramienta de línea de comando %s",
"The library %s is not available." : "La biblioteca %s no está disponible. ",
"Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ",
"Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ",
"Authentication" : "Autenticación",
"Unknown filetype" : "Tipo de archivo desconocido",
"Invalid image" : "Imagen inválida",
"Avatar image is not square" : "La imagen del avatar no es un cuadrado",
"Files" : "Archivos",
"today" : "hoy",
"tomorrow" : "mañana",
"yesterday" : "ayer",
"_in %n day_::_in %n days_" : ["en %n día","en %n días","en %n días"],
"_%n day ago_::_%n days ago_" : ["hace %n día","hace %n días","hace %n días"],
"next month" : "próximo mes",
"last month" : "mes pasado",
"_in %n month_::_in %n months_" : ["en %n mes","en %n meses","en %n meses"],
"_%n month ago_::_%n months ago_" : ["Hace %n mes","Hace %n meses","Hace %n meses"],
"next year" : "próximo año",
"last year" : "año pasado",
"_in %n year_::_in %n years_" : ["en %n año","en %n años","en %n años"],
"_%n year ago_::_%n years ago_" : ["hace %n año","hace %n años","hace %n años"],
"_in %n hour_::_in %n hours_" : ["en %n hora","en %n horas","en %n horas"],
"_%n hour ago_::_%n hours ago_" : ["Hace %n hora","Hace %n horas","Hace %n horas"],
"_in %n minute_::_in %n minutes_" : ["en %n minuto","en %n minutos","en %n minutos"],
"_%n minute ago_::_%n minutes ago_" : ["Hace %n minuto","Hace %n minutos","Hace %n minutos"],
"in a few seconds" : "en algunos segundos",
"seconds ago" : "hace segundos",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "El módulo con ID: %sno existe. Por favor hablíitalo en tus configuraciones de aplicación o contacta a tu administrador. ",
"File already exists" : "El archivo ya existe",
"File name is a reserved word" : "Nombre de archivo es una palabra reservada",
"File name contains at least one invalid character" : "El nombre del archivo contiene al menos un caracter inválido",
"File name is too long" : "El nombre del archivo es demasiado largo",
"Dot files are not allowed" : "Los archivos Dot no están permitidos",
"Empty filename is not allowed" : "El uso de nombres de archivo vacíos no está permitido",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "La aplicación \"%s\" no puede ser instalada porque el archivo appinfo no se puede leer. ",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "La aplicación \"%s\" no puede ser instalada porque no es compatible con esta versión del servidor. ",
"__language_name__" : "Español (Nicaragua)",
"This is an automatically sent email, please do not reply." : "Este es un correo enviado automáticamente, por favor no lo contestes. ",
"Help" : "Ayuda",
"Apps" : "Aplicaciones",
"Settings" : "Configuraciones",
"Log out" : "Salir",
"Users" : "Usuarios",
"Email" : "Correo electrónico",
"Phone" : "Teléfono fijo",
"Twitter" : "Twitter",
"Website" : "Sitio web",
"Address" : "Dirección",
"Profile picture" : "Foto de perfil",
"About" : "Acerca",
"Additional settings" : "Configuraciones adicionales",
"You need to enter details of an existing account." : "Necesitas ingresar los detalles de una cuenta existente.",
"Oracle connection could not be established" : "No fue posible establecer la conexión a Oracle",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "OS X de Mac no está soportado y %s no funcionará correctamente en esta plataforma ¡Úsalo bajo tu propio riesgo!",
"For the best results, please consider using a GNU/Linux server instead." : "Para mejores resultados, por favor cosidera usar en su lugar un servidor GNU/Linux.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
"Set an admin password." : "Establecer la contraseña del administrador.",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
"Open »%s«" : "Abrir »%s«",
"You are not allowed to share %s" : "No tienes permitido compartir %s",
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
"Expiration date is in the past" : "La fecha de expiración se encuentra en el pasado",
"Click the button below to open it." : "Haz click en el botón inferior para abrirlo. ",
"The requested share does not exist anymore" : "El recurso compartido solicitado ya no existe",
"Could not find category \"%s\"" : "No fue posible encontrar la categoria \"%s\"",
"Sunday" : "Domingo",
"Monday" : "Lunes",
"Tuesday" : "Martes",
"Wednesday" : "Miércoles",
"Thursday" : "Jueves",
"Friday" : "Viernes",
"Saturday" : "Sábado",
"Sun." : "Dom.",
"Mon." : "Lun.",
"Tue." : "Mar.",
"Wed." : "Mie.",
"Thu." : "Jue.",
"Fri." : "Vie.",
"Sat." : "Sab.",
"Su" : "Do",
"Mo" : "Lu",
"Tu" : "Ma",
"We" : "Mi",
"Th" : "Ju",
"Fr" : "Vi",
"Sa" : "Sa",
"January" : "Enero",
"February" : "Febrero",
"March" : "Marzo",
"April" : "Abril",
"May" : "Mayo",
"June" : "Junio",
"July" : "Julio",
"August" : "Agosto",
"September" : "Septiembre",
"October" : "Octubre",
"November" : "Noviembre",
"December" : "Diciembre",
"Jan." : "Ene.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Abr.",
"May." : "May.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Ago.",
"Sep." : "Sep.",
"Oct." : "Oct.",
"Nov." : "Nov.",
"Dec." : "Dic.",
"A valid password must be provided" : "Se debe proporcionar una contraseña válida",
"Login canceled by app" : "Inicio de sesión cancelado por la aplicación",
"a safe home for all your data" : "un lugar seguro para todos tus datos",
"File is currently busy, please try again later" : "El archivo se encuentra actualmente en uso, por favor intentalo más tarde. ",
"Application is not enabled" : "La aplicación está deshabilitada",
"Authentication error" : "Error de autenticación",
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "No cuentas con controladores de base de datos (sqlite, mysql o postgresql) instalados. ",
"PHP module %s not installed." : "El módulo de PHP %s no está instalado. ",
"Please ask your server administrator to install the module." : "Por favor solicita a tu adminsitrador la instalación del módulo. ",
"PHP setting \"%s\" is not set to \"%s\"." : "El ajuste PHP \"%s\" no esta establecido a \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "El cambiar este ajuste del archivo php.ini hará que Nextcloud corra de nuevo.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "Al parecer PHP está configurado para quitar los bloques de comentarios internos. Esto hará que varias aplicaciones principales sean inaccesibles. ",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Esto ha sido causado probablemente por un acelerador de caché como Zend OPcache o eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "¿Los módulos de PHP han sido instalados, pero se siguen enlistando como faltantes?",
"Please ask your server administrator to restart the web server." : "Por favor solicita al administrador reiniciar el servidor web. ",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Asegurate de que exista una archivo llamado \".ocdata\" en la raíz del directorio de datos. ",
"Could not obtain lock type %d on \"%s\"." : "No fue posible obtener el tipo de bloqueo %d en \"%s\". ",
"Storage unauthorized. %s" : "Almacenamiento no autorizado. %s",
"Storage incomplete configuration. %s" : "Configuración incompleta del almacenamiento. %s",
"Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s",
"Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible",
"Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s",
"Full name" : "Nombre completo",
"Unknown user" : "Ususario desconocido",
"Oracle username and/or password not valid" : "Usuario y/o contraseña de Oracle inválidos",
"PostgreSQL username and/or password not valid" : "El Usuario y/o Contraseña de PostgreSQL inválido(s)",
"Set an admin username." : "Establecer un Usuario administrador",
"Sharing %s failed, because this item is already shared with user %s" : "Se presento una falla al compartir %s, porque este elemento ya ha sido compartido con el usuario %s",
"The username is already being used" : "Ese usuario ya está en uso",
"Could not create user" : "No fue posible crear el usuario",
"A valid username must be provided" : "Debes proporcionar un nombre de usuario válido",
"Username contains whitespace at the beginning or at the end" : "El usuario contiene un espacio en blanco al inicio o al final",
"Username must not consist of dots only" : "El usuario no debe consistir de solo puntos. ",
"User disabled" : "Usuario deshabilitado",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Se requiere de por lo menos libxml2 2.7.0. Actualmente %s está instalado. ",
"To fix this issue update your libxml2 version and restart your web server." : "Para corregir este tema, por favor actualiza la versión de su libxml2 y reinicia tu servidor web. ",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Por favor cambia los permisos a 0770 para que el directorio no pueda ser enlistado por otros usuarios. "
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
+170
View File
@@ -0,0 +1,170 @@
{ "translations": {
"Cannot write into \"config\" directory!" : "¡No se puede escribir en el directorio \"config\"!",
"See %s" : "Ver %s",
"Sample configuration detected" : "Se ha detectado la configuración de muestra",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Se ha detectado que la configuración de muestra ha sido copiada. Esto puede arruiniar tu instalacón y no está soportado. Por favor lee la documentación antes de hacer cambios en el archivo config.php",
"%1$s and %2$s" : "%1$s y %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s y %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s y %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s y %5$s",
"Education Edition" : "Edición Educativa",
"Enterprise bundle" : "Paquete empresarial",
"Groupware bundle" : "Paquete de Groupware",
"Social sharing bundle" : "Paquete para compartir en redes sociales",
"PHP %s or higher is required." : "Se requiere de PHP %s o superior.",
"PHP with a version lower than %s is required." : "PHP con una versión inferiror a la %s es requerido. ",
"%sbit or higher PHP required." : "se requiere PHP para %sbit o superior.",
"The command line tool %s could not be found" : "No fue posible encontar la herramienta de línea de comando %s",
"The library %s is not available." : "La biblioteca %s no está disponible. ",
"Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ",
"Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ",
"Authentication" : "Autenticación",
"Unknown filetype" : "Tipo de archivo desconocido",
"Invalid image" : "Imagen inválida",
"Avatar image is not square" : "La imagen del avatar no es un cuadrado",
"Files" : "Archivos",
"today" : "hoy",
"tomorrow" : "mañana",
"yesterday" : "ayer",
"_in %n day_::_in %n days_" : ["en %n día","en %n días","en %n días"],
"_%n day ago_::_%n days ago_" : ["hace %n día","hace %n días","hace %n días"],
"next month" : "próximo mes",
"last month" : "mes pasado",
"_in %n month_::_in %n months_" : ["en %n mes","en %n meses","en %n meses"],
"_%n month ago_::_%n months ago_" : ["Hace %n mes","Hace %n meses","Hace %n meses"],
"next year" : "próximo año",
"last year" : "año pasado",
"_in %n year_::_in %n years_" : ["en %n año","en %n años","en %n años"],
"_%n year ago_::_%n years ago_" : ["hace %n año","hace %n años","hace %n años"],
"_in %n hour_::_in %n hours_" : ["en %n hora","en %n horas","en %n horas"],
"_%n hour ago_::_%n hours ago_" : ["Hace %n hora","Hace %n horas","Hace %n horas"],
"_in %n minute_::_in %n minutes_" : ["en %n minuto","en %n minutos","en %n minutos"],
"_%n minute ago_::_%n minutes ago_" : ["Hace %n minuto","Hace %n minutos","Hace %n minutos"],
"in a few seconds" : "en algunos segundos",
"seconds ago" : "hace segundos",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "El módulo con ID: %sno existe. Por favor hablíitalo en tus configuraciones de aplicación o contacta a tu administrador. ",
"File already exists" : "El archivo ya existe",
"File name is a reserved word" : "Nombre de archivo es una palabra reservada",
"File name contains at least one invalid character" : "El nombre del archivo contiene al menos un caracter inválido",
"File name is too long" : "El nombre del archivo es demasiado largo",
"Dot files are not allowed" : "Los archivos Dot no están permitidos",
"Empty filename is not allowed" : "El uso de nombres de archivo vacíos no está permitido",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "La aplicación \"%s\" no puede ser instalada porque el archivo appinfo no se puede leer. ",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "La aplicación \"%s\" no puede ser instalada porque no es compatible con esta versión del servidor. ",
"__language_name__" : "Español (Nicaragua)",
"This is an automatically sent email, please do not reply." : "Este es un correo enviado automáticamente, por favor no lo contestes. ",
"Help" : "Ayuda",
"Apps" : "Aplicaciones",
"Settings" : "Configuraciones",
"Log out" : "Salir",
"Users" : "Usuarios",
"Email" : "Correo electrónico",
"Phone" : "Teléfono fijo",
"Twitter" : "Twitter",
"Website" : "Sitio web",
"Address" : "Dirección",
"Profile picture" : "Foto de perfil",
"About" : "Acerca",
"Additional settings" : "Configuraciones adicionales",
"You need to enter details of an existing account." : "Necesitas ingresar los detalles de una cuenta existente.",
"Oracle connection could not be established" : "No fue posible establecer la conexión a Oracle",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "OS X de Mac no está soportado y %s no funcionará correctamente en esta plataforma ¡Úsalo bajo tu propio riesgo!",
"For the best results, please consider using a GNU/Linux server instead." : "Para mejores resultados, por favor cosidera usar en su lugar un servidor GNU/Linux.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
"Set an admin password." : "Establecer la contraseña del administrador.",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
"Open »%s«" : "Abrir »%s«",
"You are not allowed to share %s" : "No tienes permitido compartir %s",
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
"Expiration date is in the past" : "La fecha de expiración se encuentra en el pasado",
"Click the button below to open it." : "Haz click en el botón inferior para abrirlo. ",
"The requested share does not exist anymore" : "El recurso compartido solicitado ya no existe",
"Could not find category \"%s\"" : "No fue posible encontrar la categoria \"%s\"",
"Sunday" : "Domingo",
"Monday" : "Lunes",
"Tuesday" : "Martes",
"Wednesday" : "Miércoles",
"Thursday" : "Jueves",
"Friday" : "Viernes",
"Saturday" : "Sábado",
"Sun." : "Dom.",
"Mon." : "Lun.",
"Tue." : "Mar.",
"Wed." : "Mie.",
"Thu." : "Jue.",
"Fri." : "Vie.",
"Sat." : "Sab.",
"Su" : "Do",
"Mo" : "Lu",
"Tu" : "Ma",
"We" : "Mi",
"Th" : "Ju",
"Fr" : "Vi",
"Sa" : "Sa",
"January" : "Enero",
"February" : "Febrero",
"March" : "Marzo",
"April" : "Abril",
"May" : "Mayo",
"June" : "Junio",
"July" : "Julio",
"August" : "Agosto",
"September" : "Septiembre",
"October" : "Octubre",
"November" : "Noviembre",
"December" : "Diciembre",
"Jan." : "Ene.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Abr.",
"May." : "May.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Ago.",
"Sep." : "Sep.",
"Oct." : "Oct.",
"Nov." : "Nov.",
"Dec." : "Dic.",
"A valid password must be provided" : "Se debe proporcionar una contraseña válida",
"Login canceled by app" : "Inicio de sesión cancelado por la aplicación",
"a safe home for all your data" : "un lugar seguro para todos tus datos",
"File is currently busy, please try again later" : "El archivo se encuentra actualmente en uso, por favor intentalo más tarde. ",
"Application is not enabled" : "La aplicación está deshabilitada",
"Authentication error" : "Error de autenticación",
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "No cuentas con controladores de base de datos (sqlite, mysql o postgresql) instalados. ",
"PHP module %s not installed." : "El módulo de PHP %s no está instalado. ",
"Please ask your server administrator to install the module." : "Por favor solicita a tu adminsitrador la instalación del módulo. ",
"PHP setting \"%s\" is not set to \"%s\"." : "El ajuste PHP \"%s\" no esta establecido a \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "El cambiar este ajuste del archivo php.ini hará que Nextcloud corra de nuevo.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "Al parecer PHP está configurado para quitar los bloques de comentarios internos. Esto hará que varias aplicaciones principales sean inaccesibles. ",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Esto ha sido causado probablemente por un acelerador de caché como Zend OPcache o eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "¿Los módulos de PHP han sido instalados, pero se siguen enlistando como faltantes?",
"Please ask your server administrator to restart the web server." : "Por favor solicita al administrador reiniciar el servidor web. ",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Asegurate de que exista una archivo llamado \".ocdata\" en la raíz del directorio de datos. ",
"Could not obtain lock type %d on \"%s\"." : "No fue posible obtener el tipo de bloqueo %d en \"%s\". ",
"Storage unauthorized. %s" : "Almacenamiento no autorizado. %s",
"Storage incomplete configuration. %s" : "Configuración incompleta del almacenamiento. %s",
"Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s",
"Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible",
"Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s",
"Full name" : "Nombre completo",
"Unknown user" : "Ususario desconocido",
"Oracle username and/or password not valid" : "Usuario y/o contraseña de Oracle inválidos",
"PostgreSQL username and/or password not valid" : "El Usuario y/o Contraseña de PostgreSQL inválido(s)",
"Set an admin username." : "Establecer un Usuario administrador",
"Sharing %s failed, because this item is already shared with user %s" : "Se presento una falla al compartir %s, porque este elemento ya ha sido compartido con el usuario %s",
"The username is already being used" : "Ese usuario ya está en uso",
"Could not create user" : "No fue posible crear el usuario",
"A valid username must be provided" : "Debes proporcionar un nombre de usuario válido",
"Username contains whitespace at the beginning or at the end" : "El usuario contiene un espacio en blanco al inicio o al final",
"Username must not consist of dots only" : "El usuario no debe consistir de solo puntos. ",
"User disabled" : "Usuario deshabilitado",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Se requiere de por lo menos libxml2 2.7.0. Actualmente %s está instalado. ",
"To fix this issue update your libxml2 version and restart your web server." : "Para corregir este tema, por favor actualiza la versión de su libxml2 y reinicia tu servidor web. ",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Por favor cambia los permisos a 0770 para que el directorio no pueda ser enlistado por otros usuarios. "
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}
+172
View File
@@ -0,0 +1,172 @@
OC.L10N.register(
"lib",
{
"Cannot write into \"config\" directory!" : "¡No se puede escribir en el directorio \"config\"!",
"See %s" : "Ver %s",
"Sample configuration detected" : "Se ha detectado la configuración de muestra",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Se ha detectado que la configuración de muestra ha sido copiada. Esto puede arruiniar tu instalacón y no está soportado. Por favor lee la documentación antes de hacer cambios en el archivo config.php",
"%1$s and %2$s" : "%1$s y %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s y %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s y %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s y %5$s",
"Education Edition" : "Edición Educativa",
"Enterprise bundle" : "Paquete empresarial",
"Groupware bundle" : "Paquete de Groupware",
"Social sharing bundle" : "Paquete para compartir en redes sociales",
"PHP %s or higher is required." : "Se requiere de PHP %s o superior.",
"PHP with a version lower than %s is required." : "PHP con una versión inferiror a la %s es requerido. ",
"%sbit or higher PHP required." : "se requiere PHP para %sbit o superior.",
"The command line tool %s could not be found" : "No fue posible encontar la herramienta de línea de comando %s",
"The library %s is not available." : "La biblioteca %s no está disponible. ",
"Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ",
"Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ",
"Authentication" : "Autenticación",
"Unknown filetype" : "Tipo de archivo desconocido",
"Invalid image" : "Imagen inválida",
"Avatar image is not square" : "La imagen del avatar no es un cuadrado",
"Files" : "Archivos",
"today" : "hoy",
"tomorrow" : "mañana",
"yesterday" : "ayer",
"_in %n day_::_in %n days_" : ["en %n día","en %n días","en %n días"],
"_%n day ago_::_%n days ago_" : ["hace %n día","hace %n días","hace %n días"],
"next month" : "próximo mes",
"last month" : "mes pasado",
"_in %n month_::_in %n months_" : ["en %n mes","en %n meses","en %n meses"],
"_%n month ago_::_%n months ago_" : ["Hace %n mes","Hace %n meses","Hace %n meses"],
"next year" : "próximo año",
"last year" : "año pasado",
"_in %n year_::_in %n years_" : ["en %n año","en %n años","en %n años"],
"_%n year ago_::_%n years ago_" : ["hace %n año","hace %n años","hace %n años"],
"_in %n hour_::_in %n hours_" : ["en %n hora","en %n horas","en %n horas"],
"_%n hour ago_::_%n hours ago_" : ["Hace %n hora","Hace %n horas","Hace %n horas"],
"_in %n minute_::_in %n minutes_" : ["en %n minuto","en %n minutos","en %n minutos"],
"_%n minute ago_::_%n minutes ago_" : ["Hace %n minuto","Hace %n minutos","Hace %n minutos"],
"in a few seconds" : "en algunos segundos",
"seconds ago" : "hace segundos",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "El módulo con ID: %sno existe. Por favor hablíitalo en tus configuraciones de aplicación o contacta a tu administrador. ",
"File already exists" : "El archivo ya existe",
"File name is a reserved word" : "Nombre de archivo es una palabra reservada",
"File name contains at least one invalid character" : "El nombre del archivo contiene al menos un caracter inválido",
"File name is too long" : "El nombre del archivo es demasiado largo",
"Dot files are not allowed" : "Los archivos Dot no están permitidos",
"Empty filename is not allowed" : "El uso de nombres de archivo vacíos no está permitido",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "La aplicación \"%s\" no puede ser instalada porque el archivo appinfo no se puede leer. ",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "La aplicación \"%s\" no puede ser instalada porque no es compatible con esta versión del servidor. ",
"__language_name__" : "Español (Panama)",
"This is an automatically sent email, please do not reply." : "Este es un correo enviado automáticamente, por favor no lo contestes. ",
"Help" : "Ayuda",
"Apps" : "Aplicaciones",
"Settings" : "Configuraciones",
"Log out" : "Salir",
"Users" : "Usuarios",
"Email" : "Correo electrónico",
"Phone" : "Teléfono fijo",
"Twitter" : "Twitter",
"Website" : "Sitio web",
"Address" : "Dirección",
"Profile picture" : "Foto de perfil",
"About" : "Acerca",
"Additional settings" : "Configuraciones adicionales",
"You need to enter details of an existing account." : "Necesitas ingresar los detalles de una cuenta existente.",
"Oracle connection could not be established" : "No fue posible establecer la conexión a Oracle",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "OS X de Mac no está soportado y %s no funcionará correctamente en esta plataforma ¡Úsalo bajo tu propio riesgo!",
"For the best results, please consider using a GNU/Linux server instead." : "Para mejores resultados, por favor cosidera usar en su lugar un servidor GNU/Linux.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
"Set an admin password." : "Establecer la contraseña del administrador.",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
"Open »%s«" : "Abrir »%s«",
"You are not allowed to share %s" : "No tienes permitido compartir %s",
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
"Expiration date is in the past" : "La fecha de expiración se encuentra en el pasado",
"Click the button below to open it." : "Haz click en el botón inferior para abrirlo. ",
"The requested share does not exist anymore" : "El recurso compartido solicitado ya no existe",
"Could not find category \"%s\"" : "No fue posible encontrar la categoria \"%s\"",
"Sunday" : "Domingo",
"Monday" : "Lunes",
"Tuesday" : "Martes",
"Wednesday" : "Miércoles",
"Thursday" : "Jueves",
"Friday" : "Viernes",
"Saturday" : "Sábado",
"Sun." : "Dom.",
"Mon." : "Lun.",
"Tue." : "Mar.",
"Wed." : "Mie.",
"Thu." : "Jue.",
"Fri." : "Vie.",
"Sat." : "Sab.",
"Su" : "Do",
"Mo" : "Lu",
"Tu" : "Ma",
"We" : "Mi",
"Th" : "Ju",
"Fr" : "Vi",
"Sa" : "Sa",
"January" : "Enero",
"February" : "Febrero",
"March" : "Marzo",
"April" : "Abril",
"May" : "Mayo",
"June" : "Junio",
"July" : "Julio",
"August" : "Agosto",
"September" : "Septiembre",
"October" : "Octubre",
"November" : "Noviembre",
"December" : "Diciembre",
"Jan." : "Ene.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Abr.",
"May." : "May.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Ago.",
"Sep." : "Sep.",
"Oct." : "Oct.",
"Nov." : "Nov.",
"Dec." : "Dic.",
"A valid password must be provided" : "Se debe proporcionar una contraseña válida",
"Login canceled by app" : "Inicio de sesión cancelado por la aplicación",
"a safe home for all your data" : "un lugar seguro para todos tus datos",
"File is currently busy, please try again later" : "El archivo se encuentra actualmente en uso, por favor intentalo más tarde. ",
"Application is not enabled" : "La aplicación está deshabilitada",
"Authentication error" : "Error de autenticación",
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "No cuentas con controladores de base de datos (sqlite, mysql o postgresql) instalados. ",
"PHP module %s not installed." : "El módulo de PHP %s no está instalado. ",
"Please ask your server administrator to install the module." : "Por favor solicita a tu adminsitrador la instalación del módulo. ",
"PHP setting \"%s\" is not set to \"%s\"." : "El ajuste PHP \"%s\" no esta establecido a \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "El cambiar este ajuste del archivo php.ini hará que Nextcloud corra de nuevo.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "Al parecer PHP está configurado para quitar los bloques de comentarios internos. Esto hará que varias aplicaciones principales sean inaccesibles. ",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Esto ha sido causado probablemente por un acelerador de caché como Zend OPcache o eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "¿Los módulos de PHP han sido instalados, pero se siguen enlistando como faltantes?",
"Please ask your server administrator to restart the web server." : "Por favor solicita al administrador reiniciar el servidor web. ",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Asegurate de que exista una archivo llamado \".ocdata\" en la raíz del directorio de datos. ",
"Could not obtain lock type %d on \"%s\"." : "No fue posible obtener el tipo de bloqueo %d en \"%s\". ",
"Storage unauthorized. %s" : "Almacenamiento no autorizado. %s",
"Storage incomplete configuration. %s" : "Configuración incompleta del almacenamiento. %s",
"Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s",
"Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible",
"Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s",
"Full name" : "Nombre completo",
"Unknown user" : "Ususario desconocido",
"Oracle username and/or password not valid" : "Usuario y/o contraseña de Oracle inválidos",
"PostgreSQL username and/or password not valid" : "El Usuario y/o Contraseña de PostgreSQL inválido(s)",
"Set an admin username." : "Establecer un Usuario administrador",
"Sharing %s failed, because this item is already shared with user %s" : "Se presento una falla al compartir %s, porque este elemento ya ha sido compartido con el usuario %s",
"The username is already being used" : "Ese usuario ya está en uso",
"Could not create user" : "No fue posible crear el usuario",
"A valid username must be provided" : "Debes proporcionar un nombre de usuario válido",
"Username contains whitespace at the beginning or at the end" : "El usuario contiene un espacio en blanco al inicio o al final",
"Username must not consist of dots only" : "El usuario no debe consistir de solo puntos. ",
"User disabled" : "Usuario deshabilitado",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Se requiere de por lo menos libxml2 2.7.0. Actualmente %s está instalado. ",
"To fix this issue update your libxml2 version and restart your web server." : "Para corregir este tema, por favor actualiza la versión de su libxml2 y reinicia tu servidor web. ",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Por favor cambia los permisos a 0770 para que el directorio no pueda ser enlistado por otros usuarios. "
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
+170
View File
@@ -0,0 +1,170 @@
{ "translations": {
"Cannot write into \"config\" directory!" : "¡No se puede escribir en el directorio \"config\"!",
"See %s" : "Ver %s",
"Sample configuration detected" : "Se ha detectado la configuración de muestra",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Se ha detectado que la configuración de muestra ha sido copiada. Esto puede arruiniar tu instalacón y no está soportado. Por favor lee la documentación antes de hacer cambios en el archivo config.php",
"%1$s and %2$s" : "%1$s y %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s y %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s y %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s y %5$s",
"Education Edition" : "Edición Educativa",
"Enterprise bundle" : "Paquete empresarial",
"Groupware bundle" : "Paquete de Groupware",
"Social sharing bundle" : "Paquete para compartir en redes sociales",
"PHP %s or higher is required." : "Se requiere de PHP %s o superior.",
"PHP with a version lower than %s is required." : "PHP con una versión inferiror a la %s es requerido. ",
"%sbit or higher PHP required." : "se requiere PHP para %sbit o superior.",
"The command line tool %s could not be found" : "No fue posible encontar la herramienta de línea de comando %s",
"The library %s is not available." : "La biblioteca %s no está disponible. ",
"Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ",
"Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ",
"Authentication" : "Autenticación",
"Unknown filetype" : "Tipo de archivo desconocido",
"Invalid image" : "Imagen inválida",
"Avatar image is not square" : "La imagen del avatar no es un cuadrado",
"Files" : "Archivos",
"today" : "hoy",
"tomorrow" : "mañana",
"yesterday" : "ayer",
"_in %n day_::_in %n days_" : ["en %n día","en %n días","en %n días"],
"_%n day ago_::_%n days ago_" : ["hace %n día","hace %n días","hace %n días"],
"next month" : "próximo mes",
"last month" : "mes pasado",
"_in %n month_::_in %n months_" : ["en %n mes","en %n meses","en %n meses"],
"_%n month ago_::_%n months ago_" : ["Hace %n mes","Hace %n meses","Hace %n meses"],
"next year" : "próximo año",
"last year" : "año pasado",
"_in %n year_::_in %n years_" : ["en %n año","en %n años","en %n años"],
"_%n year ago_::_%n years ago_" : ["hace %n año","hace %n años","hace %n años"],
"_in %n hour_::_in %n hours_" : ["en %n hora","en %n horas","en %n horas"],
"_%n hour ago_::_%n hours ago_" : ["Hace %n hora","Hace %n horas","Hace %n horas"],
"_in %n minute_::_in %n minutes_" : ["en %n minuto","en %n minutos","en %n minutos"],
"_%n minute ago_::_%n minutes ago_" : ["Hace %n minuto","Hace %n minutos","Hace %n minutos"],
"in a few seconds" : "en algunos segundos",
"seconds ago" : "hace segundos",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "El módulo con ID: %sno existe. Por favor hablíitalo en tus configuraciones de aplicación o contacta a tu administrador. ",
"File already exists" : "El archivo ya existe",
"File name is a reserved word" : "Nombre de archivo es una palabra reservada",
"File name contains at least one invalid character" : "El nombre del archivo contiene al menos un caracter inválido",
"File name is too long" : "El nombre del archivo es demasiado largo",
"Dot files are not allowed" : "Los archivos Dot no están permitidos",
"Empty filename is not allowed" : "El uso de nombres de archivo vacíos no está permitido",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "La aplicación \"%s\" no puede ser instalada porque el archivo appinfo no se puede leer. ",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "La aplicación \"%s\" no puede ser instalada porque no es compatible con esta versión del servidor. ",
"__language_name__" : "Español (Panama)",
"This is an automatically sent email, please do not reply." : "Este es un correo enviado automáticamente, por favor no lo contestes. ",
"Help" : "Ayuda",
"Apps" : "Aplicaciones",
"Settings" : "Configuraciones",
"Log out" : "Salir",
"Users" : "Usuarios",
"Email" : "Correo electrónico",
"Phone" : "Teléfono fijo",
"Twitter" : "Twitter",
"Website" : "Sitio web",
"Address" : "Dirección",
"Profile picture" : "Foto de perfil",
"About" : "Acerca",
"Additional settings" : "Configuraciones adicionales",
"You need to enter details of an existing account." : "Necesitas ingresar los detalles de una cuenta existente.",
"Oracle connection could not be established" : "No fue posible establecer la conexión a Oracle",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "OS X de Mac no está soportado y %s no funcionará correctamente en esta plataforma ¡Úsalo bajo tu propio riesgo!",
"For the best results, please consider using a GNU/Linux server instead." : "Para mejores resultados, por favor cosidera usar en su lugar un servidor GNU/Linux.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
"Set an admin password." : "Establecer la contraseña del administrador.",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
"Open »%s«" : "Abrir »%s«",
"You are not allowed to share %s" : "No tienes permitido compartir %s",
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
"Expiration date is in the past" : "La fecha de expiración se encuentra en el pasado",
"Click the button below to open it." : "Haz click en el botón inferior para abrirlo. ",
"The requested share does not exist anymore" : "El recurso compartido solicitado ya no existe",
"Could not find category \"%s\"" : "No fue posible encontrar la categoria \"%s\"",
"Sunday" : "Domingo",
"Monday" : "Lunes",
"Tuesday" : "Martes",
"Wednesday" : "Miércoles",
"Thursday" : "Jueves",
"Friday" : "Viernes",
"Saturday" : "Sábado",
"Sun." : "Dom.",
"Mon." : "Lun.",
"Tue." : "Mar.",
"Wed." : "Mie.",
"Thu." : "Jue.",
"Fri." : "Vie.",
"Sat." : "Sab.",
"Su" : "Do",
"Mo" : "Lu",
"Tu" : "Ma",
"We" : "Mi",
"Th" : "Ju",
"Fr" : "Vi",
"Sa" : "Sa",
"January" : "Enero",
"February" : "Febrero",
"March" : "Marzo",
"April" : "Abril",
"May" : "Mayo",
"June" : "Junio",
"July" : "Julio",
"August" : "Agosto",
"September" : "Septiembre",
"October" : "Octubre",
"November" : "Noviembre",
"December" : "Diciembre",
"Jan." : "Ene.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Abr.",
"May." : "May.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Ago.",
"Sep." : "Sep.",
"Oct." : "Oct.",
"Nov." : "Nov.",
"Dec." : "Dic.",
"A valid password must be provided" : "Se debe proporcionar una contraseña válida",
"Login canceled by app" : "Inicio de sesión cancelado por la aplicación",
"a safe home for all your data" : "un lugar seguro para todos tus datos",
"File is currently busy, please try again later" : "El archivo se encuentra actualmente en uso, por favor intentalo más tarde. ",
"Application is not enabled" : "La aplicación está deshabilitada",
"Authentication error" : "Error de autenticación",
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "No cuentas con controladores de base de datos (sqlite, mysql o postgresql) instalados. ",
"PHP module %s not installed." : "El módulo de PHP %s no está instalado. ",
"Please ask your server administrator to install the module." : "Por favor solicita a tu adminsitrador la instalación del módulo. ",
"PHP setting \"%s\" is not set to \"%s\"." : "El ajuste PHP \"%s\" no esta establecido a \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "El cambiar este ajuste del archivo php.ini hará que Nextcloud corra de nuevo.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "Al parecer PHP está configurado para quitar los bloques de comentarios internos. Esto hará que varias aplicaciones principales sean inaccesibles. ",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Esto ha sido causado probablemente por un acelerador de caché como Zend OPcache o eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "¿Los módulos de PHP han sido instalados, pero se siguen enlistando como faltantes?",
"Please ask your server administrator to restart the web server." : "Por favor solicita al administrador reiniciar el servidor web. ",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Asegurate de que exista una archivo llamado \".ocdata\" en la raíz del directorio de datos. ",
"Could not obtain lock type %d on \"%s\"." : "No fue posible obtener el tipo de bloqueo %d en \"%s\". ",
"Storage unauthorized. %s" : "Almacenamiento no autorizado. %s",
"Storage incomplete configuration. %s" : "Configuración incompleta del almacenamiento. %s",
"Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s",
"Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible",
"Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s",
"Full name" : "Nombre completo",
"Unknown user" : "Ususario desconocido",
"Oracle username and/or password not valid" : "Usuario y/o contraseña de Oracle inválidos",
"PostgreSQL username and/or password not valid" : "El Usuario y/o Contraseña de PostgreSQL inválido(s)",
"Set an admin username." : "Establecer un Usuario administrador",
"Sharing %s failed, because this item is already shared with user %s" : "Se presento una falla al compartir %s, porque este elemento ya ha sido compartido con el usuario %s",
"The username is already being used" : "Ese usuario ya está en uso",
"Could not create user" : "No fue posible crear el usuario",
"A valid username must be provided" : "Debes proporcionar un nombre de usuario válido",
"Username contains whitespace at the beginning or at the end" : "El usuario contiene un espacio en blanco al inicio o al final",
"Username must not consist of dots only" : "El usuario no debe consistir de solo puntos. ",
"User disabled" : "Usuario deshabilitado",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Se requiere de por lo menos libxml2 2.7.0. Actualmente %s está instalado. ",
"To fix this issue update your libxml2 version and restart your web server." : "Para corregir este tema, por favor actualiza la versión de su libxml2 y reinicia tu servidor web. ",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Por favor cambia los permisos a 0770 para que el directorio no pueda ser enlistado por otros usuarios. "
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}
+172
View File
@@ -0,0 +1,172 @@
OC.L10N.register(
"lib",
{
"Cannot write into \"config\" directory!" : "¡No se puede escribir en el directorio \"config\"!",
"See %s" : "Ver %s",
"Sample configuration detected" : "Se ha detectado la configuración de muestra",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Se ha detectado que la configuración de muestra ha sido copiada. Esto puede arruiniar tu instalacón y no está soportado. Por favor lee la documentación antes de hacer cambios en el archivo config.php",
"%1$s and %2$s" : "%1$s y %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s y %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s y %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s y %5$s",
"Education Edition" : "Edición Educativa",
"Enterprise bundle" : "Paquete empresarial",
"Groupware bundle" : "Paquete de Groupware",
"Social sharing bundle" : "Paquete para compartir en redes sociales",
"PHP %s or higher is required." : "Se requiere de PHP %s o superior.",
"PHP with a version lower than %s is required." : "PHP con una versión inferiror a la %s es requerido. ",
"%sbit or higher PHP required." : "se requiere PHP para %sbit o superior.",
"The command line tool %s could not be found" : "No fue posible encontar la herramienta de línea de comando %s",
"The library %s is not available." : "La biblioteca %s no está disponible. ",
"Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ",
"Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ",
"Authentication" : "Autenticación",
"Unknown filetype" : "Tipo de archivo desconocido",
"Invalid image" : "Imagen inválida",
"Avatar image is not square" : "La imagen del avatar no es un cuadrado",
"Files" : "Archivos",
"today" : "hoy",
"tomorrow" : "mañana",
"yesterday" : "ayer",
"_in %n day_::_in %n days_" : ["en %n día","en %n días","en %n días"],
"_%n day ago_::_%n days ago_" : ["hace %n día","hace %n días","hace %n días"],
"next month" : "próximo mes",
"last month" : "mes pasado",
"_in %n month_::_in %n months_" : ["en %n mes","en %n meses","en %n meses"],
"_%n month ago_::_%n months ago_" : ["Hace %n mes","Hace %n meses","Hace %n meses"],
"next year" : "próximo año",
"last year" : "año pasado",
"_in %n year_::_in %n years_" : ["en %n año","en %n años","en %n años"],
"_%n year ago_::_%n years ago_" : ["hace %n año","hace %n años","hace %n años"],
"_in %n hour_::_in %n hours_" : ["en %n hora","en %n horas","en %n horas"],
"_%n hour ago_::_%n hours ago_" : ["Hace %n hora","Hace %n horas","Hace %n horas"],
"_in %n minute_::_in %n minutes_" : ["en %n minuto","en %n minutos","en %n minutos"],
"_%n minute ago_::_%n minutes ago_" : ["Hace %n minuto","Hace %n minutos","Hace %n minutos"],
"in a few seconds" : "en algunos segundos",
"seconds ago" : "hace segundos",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "El módulo con ID: %sno existe. Por favor hablíitalo en tus configuraciones de aplicación o contacta a tu administrador. ",
"File already exists" : "El archivo ya existe",
"File name is a reserved word" : "Nombre de archivo es una palabra reservada",
"File name contains at least one invalid character" : "El nombre del archivo contiene al menos un caracter inválido",
"File name is too long" : "El nombre del archivo es demasiado largo",
"Dot files are not allowed" : "Los archivos Dot no están permitidos",
"Empty filename is not allowed" : "El uso de nombres de archivo vacíos no está permitido",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "La aplicación \"%s\" no puede ser instalada porque el archivo appinfo no se puede leer. ",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "La aplicación \"%s\" no puede ser instalada porque no es compatible con esta versión del servidor. ",
"__language_name__" : "Español (Peru)",
"This is an automatically sent email, please do not reply." : "Este es un correo enviado automáticamente, por favor no lo contestes. ",
"Help" : "Ayuda",
"Apps" : "Aplicaciones",
"Settings" : "Ajustes",
"Log out" : "Salir",
"Users" : "Usuarios",
"Email" : "Correo electrónico",
"Phone" : "Teléfono fijo",
"Twitter" : "Twitter",
"Website" : "Sitio web",
"Address" : "Dirección",
"Profile picture" : "Foto de perfil",
"About" : "Acerca",
"Additional settings" : "Configuraciones adicionales",
"You need to enter details of an existing account." : "Necesitas ingresar los detalles de una cuenta existente.",
"Oracle connection could not be established" : "No fue posible establecer la conexión a Oracle",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "OS X de Mac no está soportado y %s no funcionará correctamente en esta plataforma ¡Úsalo bajo tu propio riesgo!",
"For the best results, please consider using a GNU/Linux server instead." : "Para mejores resultados, por favor cosidera usar en su lugar un servidor GNU/Linux.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
"Set an admin password." : "Establecer la contraseña del administrador.",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
"Open »%s«" : "Abrir »%s«",
"You are not allowed to share %s" : "No tienes permitido compartir %s",
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
"Expiration date is in the past" : "La fecha de expiración se encuentra en el pasado",
"Click the button below to open it." : "Haz click en el botón inferior para abrirlo. ",
"The requested share does not exist anymore" : "El recurso compartido solicitado ya no existe",
"Could not find category \"%s\"" : "No fue posible encontrar la categoria \"%s\"",
"Sunday" : "Domingo",
"Monday" : "Lunes",
"Tuesday" : "Martes",
"Wednesday" : "Miércoles",
"Thursday" : "Jueves",
"Friday" : "Viernes",
"Saturday" : "Sábado",
"Sun." : "Dom.",
"Mon." : "Lun.",
"Tue." : "Mar.",
"Wed." : "Mie.",
"Thu." : "Jue.",
"Fri." : "Vie.",
"Sat." : "Sab.",
"Su" : "Do",
"Mo" : "Lu",
"Tu" : "Ma",
"We" : "Mi",
"Th" : "Ju",
"Fr" : "Vi",
"Sa" : "Sa",
"January" : "Enero",
"February" : "Febrero",
"March" : "Marzo",
"April" : "Abril",
"May" : "Mayo",
"June" : "Junio",
"July" : "Julio",
"August" : "Agosto",
"September" : "Septiembre",
"October" : "Octubre",
"November" : "Noviembre",
"December" : "Diciembre",
"Jan." : "Ene.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Abr.",
"May." : "May.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Ago.",
"Sep." : "Sep.",
"Oct." : "Oct.",
"Nov." : "Nov.",
"Dec." : "Dic.",
"A valid password must be provided" : "Se debe proporcionar una contraseña válida",
"Login canceled by app" : "Inicio de sesión cancelado por la aplicación",
"a safe home for all your data" : "un lugar seguro para todos tus datos",
"File is currently busy, please try again later" : "El archivo se encuentra actualmente en uso, por favor intentalo más tarde. ",
"Application is not enabled" : "La aplicación está deshabilitada",
"Authentication error" : "Error de autenticación",
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "No cuentas con controladores de base de datos (sqlite, mysql o postgresql) instalados. ",
"PHP module %s not installed." : "El módulo de PHP %s no está instalado. ",
"Please ask your server administrator to install the module." : "Por favor solicita a tu adminsitrador la instalación del módulo. ",
"PHP setting \"%s\" is not set to \"%s\"." : "El ajuste PHP \"%s\" no esta establecido a \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "El cambiar este ajuste del archivo php.ini hará que Nextcloud corra de nuevo.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "Al parecer PHP está configurado para quitar los bloques de comentarios internos. Esto hará que varias aplicaciones principales sean inaccesibles. ",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Esto ha sido causado probablemente por un acelerador de caché como Zend OPcache o eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "¿Los módulos de PHP han sido instalados, pero se siguen enlistando como faltantes?",
"Please ask your server administrator to restart the web server." : "Por favor solicita al administrador reiniciar el servidor web. ",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Asegurate de que exista una archivo llamado \".ocdata\" en la raíz del directorio de datos. ",
"Could not obtain lock type %d on \"%s\"." : "No fue posible obtener el tipo de bloqueo %d en \"%s\". ",
"Storage unauthorized. %s" : "Almacenamiento no autorizado. %s",
"Storage incomplete configuration. %s" : "Configuración incompleta del almacenamiento. %s",
"Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s",
"Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible",
"Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s",
"Full name" : "Nombre completo",
"Unknown user" : "Ususario desconocido",
"Oracle username and/or password not valid" : "Usuario y/o contraseña de Oracle inválidos",
"PostgreSQL username and/or password not valid" : "El Usuario y/o Contraseña de PostgreSQL inválido(s)",
"Set an admin username." : "Establecer un Usuario administrador",
"Sharing %s failed, because this item is already shared with user %s" : "Se presento una falla al compartir %s, porque este elemento ya ha sido compartido con el usuario %s",
"The username is already being used" : "Ese usuario ya está en uso",
"Could not create user" : "No fue posible crear el usuario",
"A valid username must be provided" : "Debes proporcionar un nombre de usuario válido",
"Username contains whitespace at the beginning or at the end" : "El usuario contiene un espacio en blanco al inicio o al final",
"Username must not consist of dots only" : "El usuario no debe consistir de solo puntos. ",
"User disabled" : "Usuario deshabilitado",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Se requiere de por lo menos libxml2 2.7.0. Actualmente %s está instalado. ",
"To fix this issue update your libxml2 version and restart your web server." : "Para corregir este tema, por favor actualiza la versión de su libxml2 y reinicia tu servidor web. ",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Por favor cambia los permisos a 0770 para que el directorio no pueda ser enlistado por otros usuarios. "
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
+170
View File
@@ -0,0 +1,170 @@
{ "translations": {
"Cannot write into \"config\" directory!" : "¡No se puede escribir en el directorio \"config\"!",
"See %s" : "Ver %s",
"Sample configuration detected" : "Se ha detectado la configuración de muestra",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Se ha detectado que la configuración de muestra ha sido copiada. Esto puede arruiniar tu instalacón y no está soportado. Por favor lee la documentación antes de hacer cambios en el archivo config.php",
"%1$s and %2$s" : "%1$s y %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s y %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s y %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s y %5$s",
"Education Edition" : "Edición Educativa",
"Enterprise bundle" : "Paquete empresarial",
"Groupware bundle" : "Paquete de Groupware",
"Social sharing bundle" : "Paquete para compartir en redes sociales",
"PHP %s or higher is required." : "Se requiere de PHP %s o superior.",
"PHP with a version lower than %s is required." : "PHP con una versión inferiror a la %s es requerido. ",
"%sbit or higher PHP required." : "se requiere PHP para %sbit o superior.",
"The command line tool %s could not be found" : "No fue posible encontar la herramienta de línea de comando %s",
"The library %s is not available." : "La biblioteca %s no está disponible. ",
"Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ",
"Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ",
"Authentication" : "Autenticación",
"Unknown filetype" : "Tipo de archivo desconocido",
"Invalid image" : "Imagen inválida",
"Avatar image is not square" : "La imagen del avatar no es un cuadrado",
"Files" : "Archivos",
"today" : "hoy",
"tomorrow" : "mañana",
"yesterday" : "ayer",
"_in %n day_::_in %n days_" : ["en %n día","en %n días","en %n días"],
"_%n day ago_::_%n days ago_" : ["hace %n día","hace %n días","hace %n días"],
"next month" : "próximo mes",
"last month" : "mes pasado",
"_in %n month_::_in %n months_" : ["en %n mes","en %n meses","en %n meses"],
"_%n month ago_::_%n months ago_" : ["Hace %n mes","Hace %n meses","Hace %n meses"],
"next year" : "próximo año",
"last year" : "año pasado",
"_in %n year_::_in %n years_" : ["en %n año","en %n años","en %n años"],
"_%n year ago_::_%n years ago_" : ["hace %n año","hace %n años","hace %n años"],
"_in %n hour_::_in %n hours_" : ["en %n hora","en %n horas","en %n horas"],
"_%n hour ago_::_%n hours ago_" : ["Hace %n hora","Hace %n horas","Hace %n horas"],
"_in %n minute_::_in %n minutes_" : ["en %n minuto","en %n minutos","en %n minutos"],
"_%n minute ago_::_%n minutes ago_" : ["Hace %n minuto","Hace %n minutos","Hace %n minutos"],
"in a few seconds" : "en algunos segundos",
"seconds ago" : "hace segundos",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "El módulo con ID: %sno existe. Por favor hablíitalo en tus configuraciones de aplicación o contacta a tu administrador. ",
"File already exists" : "El archivo ya existe",
"File name is a reserved word" : "Nombre de archivo es una palabra reservada",
"File name contains at least one invalid character" : "El nombre del archivo contiene al menos un caracter inválido",
"File name is too long" : "El nombre del archivo es demasiado largo",
"Dot files are not allowed" : "Los archivos Dot no están permitidos",
"Empty filename is not allowed" : "El uso de nombres de archivo vacíos no está permitido",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "La aplicación \"%s\" no puede ser instalada porque el archivo appinfo no se puede leer. ",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "La aplicación \"%s\" no puede ser instalada porque no es compatible con esta versión del servidor. ",
"__language_name__" : "Español (Peru)",
"This is an automatically sent email, please do not reply." : "Este es un correo enviado automáticamente, por favor no lo contestes. ",
"Help" : "Ayuda",
"Apps" : "Aplicaciones",
"Settings" : "Ajustes",
"Log out" : "Salir",
"Users" : "Usuarios",
"Email" : "Correo electrónico",
"Phone" : "Teléfono fijo",
"Twitter" : "Twitter",
"Website" : "Sitio web",
"Address" : "Dirección",
"Profile picture" : "Foto de perfil",
"About" : "Acerca",
"Additional settings" : "Configuraciones adicionales",
"You need to enter details of an existing account." : "Necesitas ingresar los detalles de una cuenta existente.",
"Oracle connection could not be established" : "No fue posible establecer la conexión a Oracle",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "OS X de Mac no está soportado y %s no funcionará correctamente en esta plataforma ¡Úsalo bajo tu propio riesgo!",
"For the best results, please consider using a GNU/Linux server instead." : "Para mejores resultados, por favor cosidera usar en su lugar un servidor GNU/Linux.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
"Set an admin password." : "Establecer la contraseña del administrador.",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
"Open »%s«" : "Abrir »%s«",
"You are not allowed to share %s" : "No tienes permitido compartir %s",
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
"Expiration date is in the past" : "La fecha de expiración se encuentra en el pasado",
"Click the button below to open it." : "Haz click en el botón inferior para abrirlo. ",
"The requested share does not exist anymore" : "El recurso compartido solicitado ya no existe",
"Could not find category \"%s\"" : "No fue posible encontrar la categoria \"%s\"",
"Sunday" : "Domingo",
"Monday" : "Lunes",
"Tuesday" : "Martes",
"Wednesday" : "Miércoles",
"Thursday" : "Jueves",
"Friday" : "Viernes",
"Saturday" : "Sábado",
"Sun." : "Dom.",
"Mon." : "Lun.",
"Tue." : "Mar.",
"Wed." : "Mie.",
"Thu." : "Jue.",
"Fri." : "Vie.",
"Sat." : "Sab.",
"Su" : "Do",
"Mo" : "Lu",
"Tu" : "Ma",
"We" : "Mi",
"Th" : "Ju",
"Fr" : "Vi",
"Sa" : "Sa",
"January" : "Enero",
"February" : "Febrero",
"March" : "Marzo",
"April" : "Abril",
"May" : "Mayo",
"June" : "Junio",
"July" : "Julio",
"August" : "Agosto",
"September" : "Septiembre",
"October" : "Octubre",
"November" : "Noviembre",
"December" : "Diciembre",
"Jan." : "Ene.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Abr.",
"May." : "May.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Ago.",
"Sep." : "Sep.",
"Oct." : "Oct.",
"Nov." : "Nov.",
"Dec." : "Dic.",
"A valid password must be provided" : "Se debe proporcionar una contraseña válida",
"Login canceled by app" : "Inicio de sesión cancelado por la aplicación",
"a safe home for all your data" : "un lugar seguro para todos tus datos",
"File is currently busy, please try again later" : "El archivo se encuentra actualmente en uso, por favor intentalo más tarde. ",
"Application is not enabled" : "La aplicación está deshabilitada",
"Authentication error" : "Error de autenticación",
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "No cuentas con controladores de base de datos (sqlite, mysql o postgresql) instalados. ",
"PHP module %s not installed." : "El módulo de PHP %s no está instalado. ",
"Please ask your server administrator to install the module." : "Por favor solicita a tu adminsitrador la instalación del módulo. ",
"PHP setting \"%s\" is not set to \"%s\"." : "El ajuste PHP \"%s\" no esta establecido a \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "El cambiar este ajuste del archivo php.ini hará que Nextcloud corra de nuevo.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "Al parecer PHP está configurado para quitar los bloques de comentarios internos. Esto hará que varias aplicaciones principales sean inaccesibles. ",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Esto ha sido causado probablemente por un acelerador de caché como Zend OPcache o eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "¿Los módulos de PHP han sido instalados, pero se siguen enlistando como faltantes?",
"Please ask your server administrator to restart the web server." : "Por favor solicita al administrador reiniciar el servidor web. ",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Asegurate de que exista una archivo llamado \".ocdata\" en la raíz del directorio de datos. ",
"Could not obtain lock type %d on \"%s\"." : "No fue posible obtener el tipo de bloqueo %d en \"%s\". ",
"Storage unauthorized. %s" : "Almacenamiento no autorizado. %s",
"Storage incomplete configuration. %s" : "Configuración incompleta del almacenamiento. %s",
"Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s",
"Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible",
"Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s",
"Full name" : "Nombre completo",
"Unknown user" : "Ususario desconocido",
"Oracle username and/or password not valid" : "Usuario y/o contraseña de Oracle inválidos",
"PostgreSQL username and/or password not valid" : "El Usuario y/o Contraseña de PostgreSQL inválido(s)",
"Set an admin username." : "Establecer un Usuario administrador",
"Sharing %s failed, because this item is already shared with user %s" : "Se presento una falla al compartir %s, porque este elemento ya ha sido compartido con el usuario %s",
"The username is already being used" : "Ese usuario ya está en uso",
"Could not create user" : "No fue posible crear el usuario",
"A valid username must be provided" : "Debes proporcionar un nombre de usuario válido",
"Username contains whitespace at the beginning or at the end" : "El usuario contiene un espacio en blanco al inicio o al final",
"Username must not consist of dots only" : "El usuario no debe consistir de solo puntos. ",
"User disabled" : "Usuario deshabilitado",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Se requiere de por lo menos libxml2 2.7.0. Actualmente %s está instalado. ",
"To fix this issue update your libxml2 version and restart your web server." : "Para corregir este tema, por favor actualiza la versión de su libxml2 y reinicia tu servidor web. ",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Por favor cambia los permisos a 0770 para que el directorio no pueda ser enlistado por otros usuarios. "
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}
+172
View File
@@ -0,0 +1,172 @@
OC.L10N.register(
"lib",
{
"Cannot write into \"config\" directory!" : "¡No se puede escribir en el directorio \"config\"!",
"See %s" : "Ver %s",
"Sample configuration detected" : "Se ha detectado la configuración de muestra",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Se ha detectado que la configuración de muestra ha sido copiada. Esto puede arruiniar tu instalacón y no está soportado. Por favor lee la documentación antes de hacer cambios en el archivo config.php",
"%1$s and %2$s" : "%1$s y %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s y %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s y %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s y %5$s",
"Education Edition" : "Edición Educativa",
"Enterprise bundle" : "Paquete empresarial",
"Groupware bundle" : "Paquete de Groupware",
"Social sharing bundle" : "Paquete para compartir en redes sociales",
"PHP %s or higher is required." : "Se requiere de PHP %s o superior.",
"PHP with a version lower than %s is required." : "PHP con una versión inferiror a la %s es requerido. ",
"%sbit or higher PHP required." : "se requiere PHP para %sbit o superior.",
"The command line tool %s could not be found" : "No fue posible encontar la herramienta de línea de comando %s",
"The library %s is not available." : "La biblioteca %s no está disponible. ",
"Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ",
"Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ",
"Authentication" : "Autenticación",
"Unknown filetype" : "Tipo de archivo desconocido",
"Invalid image" : "Imagen inválida",
"Avatar image is not square" : "La imagen del avatar no es un cuadrado",
"Files" : "Archivos",
"today" : "hoy",
"tomorrow" : "mañana",
"yesterday" : "ayer",
"_in %n day_::_in %n days_" : ["en %n día","en %n días","en %n días"],
"_%n day ago_::_%n days ago_" : ["hace %n día","hace %n días","hace %n días"],
"next month" : "próximo mes",
"last month" : "mes pasado",
"_in %n month_::_in %n months_" : ["en %n mes","en %n meses","en %n meses"],
"_%n month ago_::_%n months ago_" : ["Hace %n mes","Hace %n meses","Hace %n meses"],
"next year" : "próximo año",
"last year" : "año pasado",
"_in %n year_::_in %n years_" : ["en %n año","en %n años","en %n años"],
"_%n year ago_::_%n years ago_" : ["hace %n año","hace %n años","hace %n años"],
"_in %n hour_::_in %n hours_" : ["en %n hora","en %n horas","en %n horas"],
"_%n hour ago_::_%n hours ago_" : ["Hace %n hora","Hace %n horas","Hace %n horas"],
"_in %n minute_::_in %n minutes_" : ["en %n minuto","en %n minutos","en %n minutos"],
"_%n minute ago_::_%n minutes ago_" : ["Hace %n minuto","Hace %n minutos","Hace %n minutos"],
"in a few seconds" : "en algunos segundos",
"seconds ago" : "hace segundos",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "El módulo con ID: %sno existe. Por favor hablíitalo en tus configuraciones de aplicación o contacta a tu administrador. ",
"File already exists" : "El archivo ya existe",
"File name is a reserved word" : "Nombre de archivo es una palabra reservada",
"File name contains at least one invalid character" : "El nombre del archivo contiene al menos un caracter inválido",
"File name is too long" : "El nombre del archivo es demasiado largo",
"Dot files are not allowed" : "Los archivos Dot no están permitidos",
"Empty filename is not allowed" : "El uso de nombres de archivo vacíos no está permitido",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "La aplicación \"%s\" no puede ser instalada porque el archivo appinfo no se puede leer. ",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "La aplicación \"%s\" no puede ser instalada porque no es compatible con esta versión del servidor. ",
"__language_name__" : "Español (Puerto Rico)",
"This is an automatically sent email, please do not reply." : "Este es un correo enviado automáticamente, por favor no lo contestes. ",
"Help" : "Ayuda",
"Apps" : "Aplicaciones",
"Settings" : "Configuraciones",
"Log out" : "Salir",
"Users" : "Usuarios",
"Email" : "Correo electrónico",
"Phone" : "Teléfono fijo",
"Twitter" : "Twitter",
"Website" : "Sitio web",
"Address" : "Dirección",
"Profile picture" : "Foto de perfil",
"About" : "Acerca",
"Additional settings" : "Configuraciones adicionales",
"You need to enter details of an existing account." : "Necesitas ingresar los detalles de una cuenta existente.",
"Oracle connection could not be established" : "No fue posible establecer la conexión a Oracle",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "OS X de Mac no está soportado y %s no funcionará correctamente en esta plataforma ¡Úsalo bajo tu propio riesgo!",
"For the best results, please consider using a GNU/Linux server instead." : "Para mejores resultados, por favor cosidera usar en su lugar un servidor GNU/Linux.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
"Set an admin password." : "Establecer la contraseña del administrador.",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
"Open »%s«" : "Abrir »%s«",
"You are not allowed to share %s" : "No tienes permitido compartir %s",
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
"Expiration date is in the past" : "La fecha de expiración se encuentra en el pasado",
"Click the button below to open it." : "Haz click en el botón inferior para abrirlo. ",
"The requested share does not exist anymore" : "El recurso compartido solicitado ya no existe",
"Could not find category \"%s\"" : "No fue posible encontrar la categoria \"%s\"",
"Sunday" : "Domingo",
"Monday" : "Lunes",
"Tuesday" : "Martes",
"Wednesday" : "Miércoles",
"Thursday" : "Jueves",
"Friday" : "Viernes",
"Saturday" : "Sábado",
"Sun." : "Dom.",
"Mon." : "Lun.",
"Tue." : "Mar.",
"Wed." : "Mie.",
"Thu." : "Jue.",
"Fri." : "Vie.",
"Sat." : "Sab.",
"Su" : "Do",
"Mo" : "Lu",
"Tu" : "Ma",
"We" : "Mi",
"Th" : "Ju",
"Fr" : "Vi",
"Sa" : "Sa",
"January" : "Enero",
"February" : "Febrero",
"March" : "Marzo",
"April" : "Abril",
"May" : "Mayo",
"June" : "Junio",
"July" : "Julio",
"August" : "Agosto",
"September" : "Septiembre",
"October" : "Octubre",
"November" : "Noviembre",
"December" : "Diciembre",
"Jan." : "Ene.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Abr.",
"May." : "May.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Ago.",
"Sep." : "Sep.",
"Oct." : "Oct.",
"Nov." : "Nov.",
"Dec." : "Dic.",
"A valid password must be provided" : "Se debe proporcionar una contraseña válida",
"Login canceled by app" : "Inicio de sesión cancelado por la aplicación",
"a safe home for all your data" : "un lugar seguro para todos tus datos",
"File is currently busy, please try again later" : "El archivo se encuentra actualmente en uso, por favor intentalo más tarde. ",
"Application is not enabled" : "La aplicación está deshabilitada",
"Authentication error" : "Error de autenticación",
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "No cuentas con controladores de base de datos (sqlite, mysql o postgresql) instalados. ",
"PHP module %s not installed." : "El módulo de PHP %s no está instalado. ",
"Please ask your server administrator to install the module." : "Por favor solicita a tu adminsitrador la instalación del módulo. ",
"PHP setting \"%s\" is not set to \"%s\"." : "El ajuste PHP \"%s\" no esta establecido a \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "El cambiar este ajuste del archivo php.ini hará que Nextcloud corra de nuevo.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "Al parecer PHP está configurado para quitar los bloques de comentarios internos. Esto hará que varias aplicaciones principales sean inaccesibles. ",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Esto ha sido causado probablemente por un acelerador de caché como Zend OPcache o eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "¿Los módulos de PHP han sido instalados, pero se siguen enlistando como faltantes?",
"Please ask your server administrator to restart the web server." : "Por favor solicita al administrador reiniciar el servidor web. ",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Asegurate de que exista una archivo llamado \".ocdata\" en la raíz del directorio de datos. ",
"Could not obtain lock type %d on \"%s\"." : "No fue posible obtener el tipo de bloqueo %d en \"%s\". ",
"Storage unauthorized. %s" : "Almacenamiento no autorizado. %s",
"Storage incomplete configuration. %s" : "Configuración incompleta del almacenamiento. %s",
"Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s",
"Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible",
"Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s",
"Full name" : "Nombre completo",
"Unknown user" : "Ususario desconocido",
"Oracle username and/or password not valid" : "Usuario y/o contraseña de Oracle inválidos",
"PostgreSQL username and/or password not valid" : "El Usuario y/o Contraseña de PostgreSQL inválido(s)",
"Set an admin username." : "Establecer un Usuario administrador",
"Sharing %s failed, because this item is already shared with user %s" : "Se presento una falla al compartir %s, porque este elemento ya ha sido compartido con el usuario %s",
"The username is already being used" : "Ese usuario ya está en uso",
"Could not create user" : "No fue posible crear el usuario",
"A valid username must be provided" : "Debes proporcionar un nombre de usuario válido",
"Username contains whitespace at the beginning or at the end" : "El usuario contiene un espacio en blanco al inicio o al final",
"Username must not consist of dots only" : "El usuario no debe consistir de solo puntos. ",
"User disabled" : "Usuario deshabilitado",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Se requiere de por lo menos libxml2 2.7.0. Actualmente %s está instalado. ",
"To fix this issue update your libxml2 version and restart your web server." : "Para corregir este tema, por favor actualiza la versión de su libxml2 y reinicia tu servidor web. ",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Por favor cambia los permisos a 0770 para que el directorio no pueda ser enlistado por otros usuarios. "
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
+170
View File
@@ -0,0 +1,170 @@
{ "translations": {
"Cannot write into \"config\" directory!" : "¡No se puede escribir en el directorio \"config\"!",
"See %s" : "Ver %s",
"Sample configuration detected" : "Se ha detectado la configuración de muestra",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Se ha detectado que la configuración de muestra ha sido copiada. Esto puede arruiniar tu instalacón y no está soportado. Por favor lee la documentación antes de hacer cambios en el archivo config.php",
"%1$s and %2$s" : "%1$s y %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s y %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s y %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s y %5$s",
"Education Edition" : "Edición Educativa",
"Enterprise bundle" : "Paquete empresarial",
"Groupware bundle" : "Paquete de Groupware",
"Social sharing bundle" : "Paquete para compartir en redes sociales",
"PHP %s or higher is required." : "Se requiere de PHP %s o superior.",
"PHP with a version lower than %s is required." : "PHP con una versión inferiror a la %s es requerido. ",
"%sbit or higher PHP required." : "se requiere PHP para %sbit o superior.",
"The command line tool %s could not be found" : "No fue posible encontar la herramienta de línea de comando %s",
"The library %s is not available." : "La biblioteca %s no está disponible. ",
"Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ",
"Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ",
"Authentication" : "Autenticación",
"Unknown filetype" : "Tipo de archivo desconocido",
"Invalid image" : "Imagen inválida",
"Avatar image is not square" : "La imagen del avatar no es un cuadrado",
"Files" : "Archivos",
"today" : "hoy",
"tomorrow" : "mañana",
"yesterday" : "ayer",
"_in %n day_::_in %n days_" : ["en %n día","en %n días","en %n días"],
"_%n day ago_::_%n days ago_" : ["hace %n día","hace %n días","hace %n días"],
"next month" : "próximo mes",
"last month" : "mes pasado",
"_in %n month_::_in %n months_" : ["en %n mes","en %n meses","en %n meses"],
"_%n month ago_::_%n months ago_" : ["Hace %n mes","Hace %n meses","Hace %n meses"],
"next year" : "próximo año",
"last year" : "año pasado",
"_in %n year_::_in %n years_" : ["en %n año","en %n años","en %n años"],
"_%n year ago_::_%n years ago_" : ["hace %n año","hace %n años","hace %n años"],
"_in %n hour_::_in %n hours_" : ["en %n hora","en %n horas","en %n horas"],
"_%n hour ago_::_%n hours ago_" : ["Hace %n hora","Hace %n horas","Hace %n horas"],
"_in %n minute_::_in %n minutes_" : ["en %n minuto","en %n minutos","en %n minutos"],
"_%n minute ago_::_%n minutes ago_" : ["Hace %n minuto","Hace %n minutos","Hace %n minutos"],
"in a few seconds" : "en algunos segundos",
"seconds ago" : "hace segundos",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "El módulo con ID: %sno existe. Por favor hablíitalo en tus configuraciones de aplicación o contacta a tu administrador. ",
"File already exists" : "El archivo ya existe",
"File name is a reserved word" : "Nombre de archivo es una palabra reservada",
"File name contains at least one invalid character" : "El nombre del archivo contiene al menos un caracter inválido",
"File name is too long" : "El nombre del archivo es demasiado largo",
"Dot files are not allowed" : "Los archivos Dot no están permitidos",
"Empty filename is not allowed" : "El uso de nombres de archivo vacíos no está permitido",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "La aplicación \"%s\" no puede ser instalada porque el archivo appinfo no se puede leer. ",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "La aplicación \"%s\" no puede ser instalada porque no es compatible con esta versión del servidor. ",
"__language_name__" : "Español (Puerto Rico)",
"This is an automatically sent email, please do not reply." : "Este es un correo enviado automáticamente, por favor no lo contestes. ",
"Help" : "Ayuda",
"Apps" : "Aplicaciones",
"Settings" : "Configuraciones",
"Log out" : "Salir",
"Users" : "Usuarios",
"Email" : "Correo electrónico",
"Phone" : "Teléfono fijo",
"Twitter" : "Twitter",
"Website" : "Sitio web",
"Address" : "Dirección",
"Profile picture" : "Foto de perfil",
"About" : "Acerca",
"Additional settings" : "Configuraciones adicionales",
"You need to enter details of an existing account." : "Necesitas ingresar los detalles de una cuenta existente.",
"Oracle connection could not be established" : "No fue posible establecer la conexión a Oracle",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "OS X de Mac no está soportado y %s no funcionará correctamente en esta plataforma ¡Úsalo bajo tu propio riesgo!",
"For the best results, please consider using a GNU/Linux server instead." : "Para mejores resultados, por favor cosidera usar en su lugar un servidor GNU/Linux.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
"Set an admin password." : "Establecer la contraseña del administrador.",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
"Open »%s«" : "Abrir »%s«",
"You are not allowed to share %s" : "No tienes permitido compartir %s",
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
"Expiration date is in the past" : "La fecha de expiración se encuentra en el pasado",
"Click the button below to open it." : "Haz click en el botón inferior para abrirlo. ",
"The requested share does not exist anymore" : "El recurso compartido solicitado ya no existe",
"Could not find category \"%s\"" : "No fue posible encontrar la categoria \"%s\"",
"Sunday" : "Domingo",
"Monday" : "Lunes",
"Tuesday" : "Martes",
"Wednesday" : "Miércoles",
"Thursday" : "Jueves",
"Friday" : "Viernes",
"Saturday" : "Sábado",
"Sun." : "Dom.",
"Mon." : "Lun.",
"Tue." : "Mar.",
"Wed." : "Mie.",
"Thu." : "Jue.",
"Fri." : "Vie.",
"Sat." : "Sab.",
"Su" : "Do",
"Mo" : "Lu",
"Tu" : "Ma",
"We" : "Mi",
"Th" : "Ju",
"Fr" : "Vi",
"Sa" : "Sa",
"January" : "Enero",
"February" : "Febrero",
"March" : "Marzo",
"April" : "Abril",
"May" : "Mayo",
"June" : "Junio",
"July" : "Julio",
"August" : "Agosto",
"September" : "Septiembre",
"October" : "Octubre",
"November" : "Noviembre",
"December" : "Diciembre",
"Jan." : "Ene.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Abr.",
"May." : "May.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Ago.",
"Sep." : "Sep.",
"Oct." : "Oct.",
"Nov." : "Nov.",
"Dec." : "Dic.",
"A valid password must be provided" : "Se debe proporcionar una contraseña válida",
"Login canceled by app" : "Inicio de sesión cancelado por la aplicación",
"a safe home for all your data" : "un lugar seguro para todos tus datos",
"File is currently busy, please try again later" : "El archivo se encuentra actualmente en uso, por favor intentalo más tarde. ",
"Application is not enabled" : "La aplicación está deshabilitada",
"Authentication error" : "Error de autenticación",
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "No cuentas con controladores de base de datos (sqlite, mysql o postgresql) instalados. ",
"PHP module %s not installed." : "El módulo de PHP %s no está instalado. ",
"Please ask your server administrator to install the module." : "Por favor solicita a tu adminsitrador la instalación del módulo. ",
"PHP setting \"%s\" is not set to \"%s\"." : "El ajuste PHP \"%s\" no esta establecido a \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "El cambiar este ajuste del archivo php.ini hará que Nextcloud corra de nuevo.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "Al parecer PHP está configurado para quitar los bloques de comentarios internos. Esto hará que varias aplicaciones principales sean inaccesibles. ",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Esto ha sido causado probablemente por un acelerador de caché como Zend OPcache o eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "¿Los módulos de PHP han sido instalados, pero se siguen enlistando como faltantes?",
"Please ask your server administrator to restart the web server." : "Por favor solicita al administrador reiniciar el servidor web. ",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Asegurate de que exista una archivo llamado \".ocdata\" en la raíz del directorio de datos. ",
"Could not obtain lock type %d on \"%s\"." : "No fue posible obtener el tipo de bloqueo %d en \"%s\". ",
"Storage unauthorized. %s" : "Almacenamiento no autorizado. %s",
"Storage incomplete configuration. %s" : "Configuración incompleta del almacenamiento. %s",
"Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s",
"Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible",
"Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s",
"Full name" : "Nombre completo",
"Unknown user" : "Ususario desconocido",
"Oracle username and/or password not valid" : "Usuario y/o contraseña de Oracle inválidos",
"PostgreSQL username and/or password not valid" : "El Usuario y/o Contraseña de PostgreSQL inválido(s)",
"Set an admin username." : "Establecer un Usuario administrador",
"Sharing %s failed, because this item is already shared with user %s" : "Se presento una falla al compartir %s, porque este elemento ya ha sido compartido con el usuario %s",
"The username is already being used" : "Ese usuario ya está en uso",
"Could not create user" : "No fue posible crear el usuario",
"A valid username must be provided" : "Debes proporcionar un nombre de usuario válido",
"Username contains whitespace at the beginning or at the end" : "El usuario contiene un espacio en blanco al inicio o al final",
"Username must not consist of dots only" : "El usuario no debe consistir de solo puntos. ",
"User disabled" : "Usuario deshabilitado",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Se requiere de por lo menos libxml2 2.7.0. Actualmente %s está instalado. ",
"To fix this issue update your libxml2 version and restart your web server." : "Para corregir este tema, por favor actualiza la versión de su libxml2 y reinicia tu servidor web. ",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Por favor cambia los permisos a 0770 para que el directorio no pueda ser enlistado por otros usuarios. "
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}
+172
View File
@@ -0,0 +1,172 @@
OC.L10N.register(
"lib",
{
"Cannot write into \"config\" directory!" : "¡No se puede escribir en el directorio \"config\"!",
"See %s" : "Ver %s",
"Sample configuration detected" : "Se ha detectado la configuración de muestra",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Se ha detectado que la configuración de muestra ha sido copiada. Esto puede arruiniar tu instalacón y no está soportado. Por favor lee la documentación antes de hacer cambios en el archivo config.php",
"%1$s and %2$s" : "%1$s y %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s y %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s y %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s y %5$s",
"Education Edition" : "Edición Educativa",
"Enterprise bundle" : "Paquete empresarial",
"Groupware bundle" : "Paquete de Groupware",
"Social sharing bundle" : "Paquete para compartir en redes sociales",
"PHP %s or higher is required." : "Se requiere de PHP %s o superior.",
"PHP with a version lower than %s is required." : "PHP con una versión inferiror a la %s es requerido. ",
"%sbit or higher PHP required." : "se requiere PHP para %sbit o superior.",
"The command line tool %s could not be found" : "No fue posible encontar la herramienta de línea de comando %s",
"The library %s is not available." : "La biblioteca %s no está disponible. ",
"Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ",
"Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ",
"Authentication" : "Autenticación",
"Unknown filetype" : "Tipo de archivo desconocido",
"Invalid image" : "Imagen inválida",
"Avatar image is not square" : "La imagen del avatar no es un cuadrado",
"Files" : "Archivos",
"today" : "hoy",
"tomorrow" : "mañana",
"yesterday" : "ayer",
"_in %n day_::_in %n days_" : ["en %n día","en %n días","en %n días"],
"_%n day ago_::_%n days ago_" : ["hace %n día","hace %n días","hace %n días"],
"next month" : "próximo mes",
"last month" : "mes pasado",
"_in %n month_::_in %n months_" : ["en %n mes","en %n meses","en %n meses"],
"_%n month ago_::_%n months ago_" : ["Hace %n mes","Hace %n meses","Hace %n meses"],
"next year" : "próximo año",
"last year" : "año pasado",
"_in %n year_::_in %n years_" : ["en %n año","en %n años","en %n años"],
"_%n year ago_::_%n years ago_" : ["hace %n año","hace %n años","hace %n años"],
"_in %n hour_::_in %n hours_" : ["en %n hora","en %n horas","en %n horas"],
"_%n hour ago_::_%n hours ago_" : ["Hace %n hora","Hace %n horas","Hace %n horas"],
"_in %n minute_::_in %n minutes_" : ["en %n minuto","en %n minutos","en %n minutos"],
"_%n minute ago_::_%n minutes ago_" : ["Hace %n minuto","Hace %n minutos","Hace %n minutos"],
"in a few seconds" : "en algunos segundos",
"seconds ago" : "hace segundos",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "El módulo con ID: %sno existe. Por favor hablíitalo en tus configuraciones de aplicación o contacta a tu administrador. ",
"File already exists" : "El archivo ya existe",
"File name is a reserved word" : "Nombre de archivo es una palabra reservada",
"File name contains at least one invalid character" : "El nombre del archivo contiene al menos un caracter inválido",
"File name is too long" : "El nombre del archivo es demasiado largo",
"Dot files are not allowed" : "Los archivos Dot no están permitidos",
"Empty filename is not allowed" : "El uso de nombres de archivo vacíos no está permitido",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "La aplicación \"%s\" no puede ser instalada porque el archivo appinfo no se puede leer. ",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "La aplicación \"%s\" no puede ser instalada porque no es compatible con esta versión del servidor. ",
"__language_name__" : "Español (Paraguay)",
"This is an automatically sent email, please do not reply." : "Este es un correo enviado automáticamente, por favor no lo contestes. ",
"Help" : "Ayuda",
"Apps" : "Aplicaciones",
"Settings" : "Configuraciones",
"Log out" : "Salir",
"Users" : "Usuarios",
"Email" : "Correo electrónico",
"Phone" : "Teléfono fijo",
"Twitter" : "Twitter",
"Website" : "Sitio web",
"Address" : "Dirección",
"Profile picture" : "Foto de perfil",
"About" : "Acerca",
"Additional settings" : "Configuraciones adicionales",
"You need to enter details of an existing account." : "Necesitas ingresar los detalles de una cuenta existente.",
"Oracle connection could not be established" : "No fue posible establecer la conexión a Oracle",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "OS X de Mac no está soportado y %s no funcionará correctamente en esta plataforma ¡Úsalo bajo tu propio riesgo!",
"For the best results, please consider using a GNU/Linux server instead." : "Para mejores resultados, por favor cosidera usar en su lugar un servidor GNU/Linux.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
"Set an admin password." : "Establecer la contraseña del administrador.",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
"Open »%s«" : "Abrir »%s«",
"You are not allowed to share %s" : "No tienes permitido compartir %s",
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
"Expiration date is in the past" : "La fecha de expiración se encuentra en el pasado",
"Click the button below to open it." : "Haz click en el botón inferior para abrirlo. ",
"The requested share does not exist anymore" : "El recurso compartido solicitado ya no existe",
"Could not find category \"%s\"" : "No fue posible encontrar la categoria \"%s\"",
"Sunday" : "Domingo",
"Monday" : "Lunes",
"Tuesday" : "Martes",
"Wednesday" : "Miércoles",
"Thursday" : "Jueves",
"Friday" : "Viernes",
"Saturday" : "Sábado",
"Sun." : "Dom.",
"Mon." : "Lun.",
"Tue." : "Mar.",
"Wed." : "Mie.",
"Thu." : "Jue.",
"Fri." : "Vie.",
"Sat." : "Sab.",
"Su" : "Do",
"Mo" : "Lu",
"Tu" : "Ma",
"We" : "Mi",
"Th" : "Ju",
"Fr" : "Vi",
"Sa" : "Sa",
"January" : "Enero",
"February" : "Febrero",
"March" : "Marzo",
"April" : "Abril",
"May" : "Mayo",
"June" : "Junio",
"July" : "Julio",
"August" : "Agosto",
"September" : "Septiembre",
"October" : "Octubre",
"November" : "Noviembre",
"December" : "Diciembre",
"Jan." : "Ene.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Abr.",
"May." : "May.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Ago.",
"Sep." : "Sep.",
"Oct." : "Oct.",
"Nov." : "Nov.",
"Dec." : "Dic.",
"A valid password must be provided" : "Se debe proporcionar una contraseña válida",
"Login canceled by app" : "Inicio de sesión cancelado por la aplicación",
"a safe home for all your data" : "un lugar seguro para todos tus datos",
"File is currently busy, please try again later" : "El archivo se encuentra actualmente en uso, por favor intentalo más tarde. ",
"Application is not enabled" : "La aplicación está deshabilitada",
"Authentication error" : "Error de autenticación",
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "No cuentas con controladores de base de datos (sqlite, mysql o postgresql) instalados. ",
"PHP module %s not installed." : "El módulo de PHP %s no está instalado. ",
"Please ask your server administrator to install the module." : "Por favor solicita a tu adminsitrador la instalación del módulo. ",
"PHP setting \"%s\" is not set to \"%s\"." : "El ajuste PHP \"%s\" no esta establecido a \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "El cambiar este ajuste del archivo php.ini hará que Nextcloud corra de nuevo.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "Al parecer PHP está configurado para quitar los bloques de comentarios internos. Esto hará que varias aplicaciones principales sean inaccesibles. ",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Esto ha sido causado probablemente por un acelerador de caché como Zend OPcache o eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "¿Los módulos de PHP han sido instalados, pero se siguen enlistando como faltantes?",
"Please ask your server administrator to restart the web server." : "Por favor solicita al administrador reiniciar el servidor web. ",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Asegurate de que exista una archivo llamado \".ocdata\" en la raíz del directorio de datos. ",
"Could not obtain lock type %d on \"%s\"." : "No fue posible obtener el tipo de bloqueo %d en \"%s\". ",
"Storage unauthorized. %s" : "Almacenamiento no autorizado. %s",
"Storage incomplete configuration. %s" : "Configuración incompleta del almacenamiento. %s",
"Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s",
"Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible",
"Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s",
"Full name" : "Nombre completo",
"Unknown user" : "Ususario desconocido",
"Oracle username and/or password not valid" : "Usuario y/o contraseña de Oracle inválidos",
"PostgreSQL username and/or password not valid" : "El Usuario y/o Contraseña de PostgreSQL inválido(s)",
"Set an admin username." : "Establecer un Usuario administrador",
"Sharing %s failed, because this item is already shared with user %s" : "Se presento una falla al compartir %s, porque este elemento ya ha sido compartido con el usuario %s",
"The username is already being used" : "Ese usuario ya está en uso",
"Could not create user" : "No fue posible crear el usuario",
"A valid username must be provided" : "Debes proporcionar un nombre de usuario válido",
"Username contains whitespace at the beginning or at the end" : "El usuario contiene un espacio en blanco al inicio o al final",
"Username must not consist of dots only" : "El usuario no debe consistir de solo puntos. ",
"User disabled" : "Usuario deshabilitado",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Se requiere de por lo menos libxml2 2.7.0. Actualmente %s está instalado. ",
"To fix this issue update your libxml2 version and restart your web server." : "Para corregir este tema, por favor actualiza la versión de su libxml2 y reinicia tu servidor web. ",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Por favor cambia los permisos a 0770 para que el directorio no pueda ser enlistado por otros usuarios. "
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
+170
View File
@@ -0,0 +1,170 @@
{ "translations": {
"Cannot write into \"config\" directory!" : "¡No se puede escribir en el directorio \"config\"!",
"See %s" : "Ver %s",
"Sample configuration detected" : "Se ha detectado la configuración de muestra",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Se ha detectado que la configuración de muestra ha sido copiada. Esto puede arruiniar tu instalacón y no está soportado. Por favor lee la documentación antes de hacer cambios en el archivo config.php",
"%1$s and %2$s" : "%1$s y %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s y %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s y %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s y %5$s",
"Education Edition" : "Edición Educativa",
"Enterprise bundle" : "Paquete empresarial",
"Groupware bundle" : "Paquete de Groupware",
"Social sharing bundle" : "Paquete para compartir en redes sociales",
"PHP %s or higher is required." : "Se requiere de PHP %s o superior.",
"PHP with a version lower than %s is required." : "PHP con una versión inferiror a la %s es requerido. ",
"%sbit or higher PHP required." : "se requiere PHP para %sbit o superior.",
"The command line tool %s could not be found" : "No fue posible encontar la herramienta de línea de comando %s",
"The library %s is not available." : "La biblioteca %s no está disponible. ",
"Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ",
"Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ",
"Authentication" : "Autenticación",
"Unknown filetype" : "Tipo de archivo desconocido",
"Invalid image" : "Imagen inválida",
"Avatar image is not square" : "La imagen del avatar no es un cuadrado",
"Files" : "Archivos",
"today" : "hoy",
"tomorrow" : "mañana",
"yesterday" : "ayer",
"_in %n day_::_in %n days_" : ["en %n día","en %n días","en %n días"],
"_%n day ago_::_%n days ago_" : ["hace %n día","hace %n días","hace %n días"],
"next month" : "próximo mes",
"last month" : "mes pasado",
"_in %n month_::_in %n months_" : ["en %n mes","en %n meses","en %n meses"],
"_%n month ago_::_%n months ago_" : ["Hace %n mes","Hace %n meses","Hace %n meses"],
"next year" : "próximo año",
"last year" : "año pasado",
"_in %n year_::_in %n years_" : ["en %n año","en %n años","en %n años"],
"_%n year ago_::_%n years ago_" : ["hace %n año","hace %n años","hace %n años"],
"_in %n hour_::_in %n hours_" : ["en %n hora","en %n horas","en %n horas"],
"_%n hour ago_::_%n hours ago_" : ["Hace %n hora","Hace %n horas","Hace %n horas"],
"_in %n minute_::_in %n minutes_" : ["en %n minuto","en %n minutos","en %n minutos"],
"_%n minute ago_::_%n minutes ago_" : ["Hace %n minuto","Hace %n minutos","Hace %n minutos"],
"in a few seconds" : "en algunos segundos",
"seconds ago" : "hace segundos",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "El módulo con ID: %sno existe. Por favor hablíitalo en tus configuraciones de aplicación o contacta a tu administrador. ",
"File already exists" : "El archivo ya existe",
"File name is a reserved word" : "Nombre de archivo es una palabra reservada",
"File name contains at least one invalid character" : "El nombre del archivo contiene al menos un caracter inválido",
"File name is too long" : "El nombre del archivo es demasiado largo",
"Dot files are not allowed" : "Los archivos Dot no están permitidos",
"Empty filename is not allowed" : "El uso de nombres de archivo vacíos no está permitido",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "La aplicación \"%s\" no puede ser instalada porque el archivo appinfo no se puede leer. ",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "La aplicación \"%s\" no puede ser instalada porque no es compatible con esta versión del servidor. ",
"__language_name__" : "Español (Paraguay)",
"This is an automatically sent email, please do not reply." : "Este es un correo enviado automáticamente, por favor no lo contestes. ",
"Help" : "Ayuda",
"Apps" : "Aplicaciones",
"Settings" : "Configuraciones",
"Log out" : "Salir",
"Users" : "Usuarios",
"Email" : "Correo electrónico",
"Phone" : "Teléfono fijo",
"Twitter" : "Twitter",
"Website" : "Sitio web",
"Address" : "Dirección",
"Profile picture" : "Foto de perfil",
"About" : "Acerca",
"Additional settings" : "Configuraciones adicionales",
"You need to enter details of an existing account." : "Necesitas ingresar los detalles de una cuenta existente.",
"Oracle connection could not be established" : "No fue posible establecer la conexión a Oracle",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "OS X de Mac no está soportado y %s no funcionará correctamente en esta plataforma ¡Úsalo bajo tu propio riesgo!",
"For the best results, please consider using a GNU/Linux server instead." : "Para mejores resultados, por favor cosidera usar en su lugar un servidor GNU/Linux.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
"Set an admin password." : "Establecer la contraseña del administrador.",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
"Open »%s«" : "Abrir »%s«",
"You are not allowed to share %s" : "No tienes permitido compartir %s",
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
"Expiration date is in the past" : "La fecha de expiración se encuentra en el pasado",
"Click the button below to open it." : "Haz click en el botón inferior para abrirlo. ",
"The requested share does not exist anymore" : "El recurso compartido solicitado ya no existe",
"Could not find category \"%s\"" : "No fue posible encontrar la categoria \"%s\"",
"Sunday" : "Domingo",
"Monday" : "Lunes",
"Tuesday" : "Martes",
"Wednesday" : "Miércoles",
"Thursday" : "Jueves",
"Friday" : "Viernes",
"Saturday" : "Sábado",
"Sun." : "Dom.",
"Mon." : "Lun.",
"Tue." : "Mar.",
"Wed." : "Mie.",
"Thu." : "Jue.",
"Fri." : "Vie.",
"Sat." : "Sab.",
"Su" : "Do",
"Mo" : "Lu",
"Tu" : "Ma",
"We" : "Mi",
"Th" : "Ju",
"Fr" : "Vi",
"Sa" : "Sa",
"January" : "Enero",
"February" : "Febrero",
"March" : "Marzo",
"April" : "Abril",
"May" : "Mayo",
"June" : "Junio",
"July" : "Julio",
"August" : "Agosto",
"September" : "Septiembre",
"October" : "Octubre",
"November" : "Noviembre",
"December" : "Diciembre",
"Jan." : "Ene.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Abr.",
"May." : "May.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Ago.",
"Sep." : "Sep.",
"Oct." : "Oct.",
"Nov." : "Nov.",
"Dec." : "Dic.",
"A valid password must be provided" : "Se debe proporcionar una contraseña válida",
"Login canceled by app" : "Inicio de sesión cancelado por la aplicación",
"a safe home for all your data" : "un lugar seguro para todos tus datos",
"File is currently busy, please try again later" : "El archivo se encuentra actualmente en uso, por favor intentalo más tarde. ",
"Application is not enabled" : "La aplicación está deshabilitada",
"Authentication error" : "Error de autenticación",
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "No cuentas con controladores de base de datos (sqlite, mysql o postgresql) instalados. ",
"PHP module %s not installed." : "El módulo de PHP %s no está instalado. ",
"Please ask your server administrator to install the module." : "Por favor solicita a tu adminsitrador la instalación del módulo. ",
"PHP setting \"%s\" is not set to \"%s\"." : "El ajuste PHP \"%s\" no esta establecido a \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "El cambiar este ajuste del archivo php.ini hará que Nextcloud corra de nuevo.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "Al parecer PHP está configurado para quitar los bloques de comentarios internos. Esto hará que varias aplicaciones principales sean inaccesibles. ",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Esto ha sido causado probablemente por un acelerador de caché como Zend OPcache o eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "¿Los módulos de PHP han sido instalados, pero se siguen enlistando como faltantes?",
"Please ask your server administrator to restart the web server." : "Por favor solicita al administrador reiniciar el servidor web. ",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Asegurate de que exista una archivo llamado \".ocdata\" en la raíz del directorio de datos. ",
"Could not obtain lock type %d on \"%s\"." : "No fue posible obtener el tipo de bloqueo %d en \"%s\". ",
"Storage unauthorized. %s" : "Almacenamiento no autorizado. %s",
"Storage incomplete configuration. %s" : "Configuración incompleta del almacenamiento. %s",
"Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s",
"Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible",
"Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s",
"Full name" : "Nombre completo",
"Unknown user" : "Ususario desconocido",
"Oracle username and/or password not valid" : "Usuario y/o contraseña de Oracle inválidos",
"PostgreSQL username and/or password not valid" : "El Usuario y/o Contraseña de PostgreSQL inválido(s)",
"Set an admin username." : "Establecer un Usuario administrador",
"Sharing %s failed, because this item is already shared with user %s" : "Se presento una falla al compartir %s, porque este elemento ya ha sido compartido con el usuario %s",
"The username is already being used" : "Ese usuario ya está en uso",
"Could not create user" : "No fue posible crear el usuario",
"A valid username must be provided" : "Debes proporcionar un nombre de usuario válido",
"Username contains whitespace at the beginning or at the end" : "El usuario contiene un espacio en blanco al inicio o al final",
"Username must not consist of dots only" : "El usuario no debe consistir de solo puntos. ",
"User disabled" : "Usuario deshabilitado",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Se requiere de por lo menos libxml2 2.7.0. Actualmente %s está instalado. ",
"To fix this issue update your libxml2 version and restart your web server." : "Para corregir este tema, por favor actualiza la versión de su libxml2 y reinicia tu servidor web. ",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Por favor cambia los permisos a 0770 para que el directorio no pueda ser enlistado por otros usuarios. "
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}
+173
View File
@@ -0,0 +1,173 @@
OC.L10N.register(
"lib",
{
"Cannot write into \"config\" directory!" : "¡No se puede escribir en el directorio \"config\"!",
"See %s" : "Ver %s",
"Sample configuration detected" : "Se ha detectado la configuración de muestra",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Se ha detectado que la configuración de muestra ha sido copiada. Esto puede arruiniar tu instalacón y no está soportado. Por favor lee la documentación antes de hacer cambios en el archivo config.php",
"%1$s and %2$s" : "%1$s y %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s y %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s y %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s y %5$s",
"Education Edition" : "Edición Educativa",
"Enterprise bundle" : "Paquete empresarial",
"Groupware bundle" : "Paquete de Groupware",
"Social sharing bundle" : "Paquete para compartir en redes sociales",
"PHP %s or higher is required." : "Se requiere de PHP %s o superior.",
"PHP with a version lower than %s is required." : "PHP con una versión inferiror a la %s es requerido. ",
"%sbit or higher PHP required." : "se requiere PHP para %sbit o superior.",
"The command line tool %s could not be found" : "No fue posible encontar la herramienta de línea de comando %s",
"The library %s is not available." : "La biblioteca %s no está disponible. ",
"Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ",
"Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ",
"Authentication" : "Autenticación",
"Unknown filetype" : "Tipo de archivo desconocido",
"Invalid image" : "Imagen inválida",
"Avatar image is not square" : "La imagen del avatar no es un cuadrado",
"Files" : "Archivos",
"today" : "hoy",
"tomorrow" : "mañana",
"yesterday" : "ayer",
"_in %n day_::_in %n days_" : ["en %n día","en %n días","en %n días"],
"_%n day ago_::_%n days ago_" : ["hace %n día","hace %n días","hace %n días"],
"next month" : "próximo mes",
"last month" : "mes pasado",
"_in %n month_::_in %n months_" : ["en %n mes","en %n meses","en %n meses"],
"_%n month ago_::_%n months ago_" : ["Hace %n mes","Hace %n meses","Hace %n meses"],
"next year" : "próximo año",
"last year" : "año pasado",
"_in %n year_::_in %n years_" : ["en %n año","en %n años","en %n años"],
"_%n year ago_::_%n years ago_" : ["hace %n año","hace %n años","hace %n años"],
"_in %n hour_::_in %n hours_" : ["en %n hora","en %n horas","en %n horas"],
"_%n hour ago_::_%n hours ago_" : ["Hace %n hora","Hace %n horas","Hace %n horas"],
"_in %n minute_::_in %n minutes_" : ["en %n minuto","en %n minutos","en %n minutos"],
"_%n minute ago_::_%n minutes ago_" : ["Hace %n minuto","Hace %n minutos","Hace %n minutos"],
"in a few seconds" : "en algunos segundos",
"seconds ago" : "hace segundos",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "El módulo con ID: %sno existe. Por favor hablíitalo en tus configuraciones de aplicación o contacta a tu administrador. ",
"File already exists" : "El archivo ya existe",
"File name is a reserved word" : "Nombre de archivo es una palabra reservada",
"File name contains at least one invalid character" : "El nombre del archivo contiene al menos un caracter inválido",
"File name is too long" : "El nombre del archivo es demasiado largo",
"Dot files are not allowed" : "Los archivos Dot no están permitidos",
"Empty filename is not allowed" : "El uso de nombres de archivo vacíos no está permitido",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "La aplicación \"%s\" no puede ser instalada porque el archivo appinfo no se puede leer. ",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "La aplicación \"%s\" no puede ser instalada porque no es compatible con esta versión del servidor. ",
"__language_name__" : "Español (El Salvador)",
"This is an automatically sent email, please do not reply." : "Este es un correo enviado automáticamente, por favor no lo contestes. ",
"Help" : "Ayuda",
"Apps" : "Aplicaciones",
"Settings" : "Configuraciones",
"Log out" : "Cerrar sesión",
"Users" : "Usuarios",
"Email" : "Correo electrónico",
"Phone" : "Teléfono fijo",
"Twitter" : "Twitter",
"Website" : "Sitio web",
"Address" : "Dirección",
"Profile picture" : "Foto de perfil",
"About" : "Acerca de",
"Additional settings" : "Configuraciones adicionales",
"You need to enter details of an existing account." : "Necesitas ingresar los detalles de una cuenta existente.",
"Oracle connection could not be established" : "No fue posible establecer la conexión a Oracle",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "OS X de Mac no está soportado y %s no funcionará correctamente en esta plataforma ¡Úsalo bajo tu propio riesgo!",
"For the best results, please consider using a GNU/Linux server instead." : "Para mejores resultados, por favor cosidera usar en su lugar un servidor GNU/Linux.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
"Set an admin password." : "Establecer la contraseña del administrador.",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
"Open »%s«" : "Abrir »%s«",
"You are not allowed to share %s" : "No tienes permitido compartir %s",
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
"Expiration date is in the past" : "La fecha de expiración se encuentra en el pasado",
"Click the button below to open it." : "Haz click en el botón inferior para abrirlo. ",
"The requested share does not exist anymore" : "El recurso compartido solicitado ya no existe",
"Could not find category \"%s\"" : "No fue posible encontrar la categoria \"%s\"",
"Sunday" : "Domingo",
"Monday" : "Lunes",
"Tuesday" : "Martes",
"Wednesday" : "Miércoles",
"Thursday" : "Jueves",
"Friday" : "Viernes",
"Saturday" : "Sábado",
"Sun." : "Dom.",
"Mon." : "Lun.",
"Tue." : "Mar.",
"Wed." : "Mie.",
"Thu." : "Jue.",
"Fri." : "Vie.",
"Sat." : "Sab.",
"Su" : "Do",
"Mo" : "Lu",
"Tu" : "Ma",
"We" : "Mi",
"Th" : "Ju",
"Fr" : "Vi",
"Sa" : "Sa",
"January" : "Enero",
"February" : "Febrero",
"March" : "Marzo",
"April" : "Abril",
"May" : "Mayo",
"June" : "Junio",
"July" : "Julio",
"August" : "Agosto",
"September" : "Septiembre",
"October" : "Octubre",
"November" : "Noviembre",
"December" : "Diciembre",
"Jan." : "Ene.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Abr.",
"May." : "May.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Ago.",
"Sep." : "Sep.",
"Oct." : "Oct.",
"Nov." : "Nov.",
"Dec." : "Dic.",
"A valid password must be provided" : "Se debe proporcionar una contraseña válida",
"Login canceled by app" : "Inicio de sesión cancelado por la aplicación",
"a safe home for all your data" : "un lugar seguro para todos tus datos",
"File is currently busy, please try again later" : "El archivo se encuentra actualmente en uso, por favor intentalo más tarde. ",
"Application is not enabled" : "La aplicación está deshabilitada",
"Authentication error" : "Error de autenticación",
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "No cuentas con controladores de base de datos (sqlite, mysql o postgresql) instalados. ",
"PHP module %s not installed." : "El módulo de PHP %s no está instalado. ",
"Please ask your server administrator to install the module." : "Por favor solicita a tu adminsitrador la instalación del módulo. ",
"PHP setting \"%s\" is not set to \"%s\"." : "El ajuste PHP \"%s\" no esta establecido a \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "El cambiar este ajuste del archivo php.ini hará que Nextcloud corra de nuevo.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "Al parecer PHP está configurado para quitar los bloques de comentarios internos. Esto hará que varias aplicaciones principales sean inaccesibles. ",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Esto ha sido causado probablemente por un acelerador de caché como Zend OPcache o eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "¿Los módulos de PHP han sido instalados, pero se siguen enlistando como faltantes?",
"Please ask your server administrator to restart the web server." : "Por favor solicita al administrador reiniciar el servidor web. ",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Asegurate de que exista una archivo llamado \".ocdata\" en la raíz del directorio de datos. ",
"Could not obtain lock type %d on \"%s\"." : "No fue posible obtener el tipo de bloqueo %d en \"%s\". ",
"Storage unauthorized. %s" : "Almacenamiento no autorizado. %s",
"Storage incomplete configuration. %s" : "Configuración incompleta del almacenamiento. %s",
"Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s",
"Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible",
"Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s",
"Logged in user must be an admin" : "El usuario firmado debe ser un administrador",
"Full name" : "Nombre completo",
"Unknown user" : "Ususario desconocido",
"Oracle username and/or password not valid" : "Usuario y/o contraseña de Oracle inválidos",
"PostgreSQL username and/or password not valid" : "El Usuario y/o Contraseña de PostgreSQL inválido(s)",
"Set an admin username." : "Establecer un Usuario administrador",
"Sharing %s failed, because this item is already shared with user %s" : "Se presento una falla al compartir %s, porque este elemento ya ha sido compartido con el usuario %s",
"The username is already being used" : "Ese usuario ya está en uso",
"Could not create user" : "No fue posible crear el usuario",
"A valid username must be provided" : "Debes proporcionar un nombre de usuario válido",
"Username contains whitespace at the beginning or at the end" : "El usuario contiene un espacio en blanco al inicio o al final",
"Username must not consist of dots only" : "El usuario no debe consistir de solo puntos. ",
"User disabled" : "Usuario deshabilitado",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Se requiere de por lo menos libxml2 2.7.0. Actualmente %s está instalado. ",
"To fix this issue update your libxml2 version and restart your web server." : "Para corregir este tema, por favor actualiza la versión de su libxml2 y reinicia tu servidor web. ",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Por favor cambia los permisos a 0770 para que el directorio no pueda ser enlistado por otros usuarios. "
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
+171
View File
@@ -0,0 +1,171 @@
{ "translations": {
"Cannot write into \"config\" directory!" : "¡No se puede escribir en el directorio \"config\"!",
"See %s" : "Ver %s",
"Sample configuration detected" : "Se ha detectado la configuración de muestra",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Se ha detectado que la configuración de muestra ha sido copiada. Esto puede arruiniar tu instalacón y no está soportado. Por favor lee la documentación antes de hacer cambios en el archivo config.php",
"%1$s and %2$s" : "%1$s y %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s y %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s y %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s y %5$s",
"Education Edition" : "Edición Educativa",
"Enterprise bundle" : "Paquete empresarial",
"Groupware bundle" : "Paquete de Groupware",
"Social sharing bundle" : "Paquete para compartir en redes sociales",
"PHP %s or higher is required." : "Se requiere de PHP %s o superior.",
"PHP with a version lower than %s is required." : "PHP con una versión inferiror a la %s es requerido. ",
"%sbit or higher PHP required." : "se requiere PHP para %sbit o superior.",
"The command line tool %s could not be found" : "No fue posible encontar la herramienta de línea de comando %s",
"The library %s is not available." : "La biblioteca %s no está disponible. ",
"Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ",
"Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ",
"Authentication" : "Autenticación",
"Unknown filetype" : "Tipo de archivo desconocido",
"Invalid image" : "Imagen inválida",
"Avatar image is not square" : "La imagen del avatar no es un cuadrado",
"Files" : "Archivos",
"today" : "hoy",
"tomorrow" : "mañana",
"yesterday" : "ayer",
"_in %n day_::_in %n days_" : ["en %n día","en %n días","en %n días"],
"_%n day ago_::_%n days ago_" : ["hace %n día","hace %n días","hace %n días"],
"next month" : "próximo mes",
"last month" : "mes pasado",
"_in %n month_::_in %n months_" : ["en %n mes","en %n meses","en %n meses"],
"_%n month ago_::_%n months ago_" : ["Hace %n mes","Hace %n meses","Hace %n meses"],
"next year" : "próximo año",
"last year" : "año pasado",
"_in %n year_::_in %n years_" : ["en %n año","en %n años","en %n años"],
"_%n year ago_::_%n years ago_" : ["hace %n año","hace %n años","hace %n años"],
"_in %n hour_::_in %n hours_" : ["en %n hora","en %n horas","en %n horas"],
"_%n hour ago_::_%n hours ago_" : ["Hace %n hora","Hace %n horas","Hace %n horas"],
"_in %n minute_::_in %n minutes_" : ["en %n minuto","en %n minutos","en %n minutos"],
"_%n minute ago_::_%n minutes ago_" : ["Hace %n minuto","Hace %n minutos","Hace %n minutos"],
"in a few seconds" : "en algunos segundos",
"seconds ago" : "hace segundos",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "El módulo con ID: %sno existe. Por favor hablíitalo en tus configuraciones de aplicación o contacta a tu administrador. ",
"File already exists" : "El archivo ya existe",
"File name is a reserved word" : "Nombre de archivo es una palabra reservada",
"File name contains at least one invalid character" : "El nombre del archivo contiene al menos un caracter inválido",
"File name is too long" : "El nombre del archivo es demasiado largo",
"Dot files are not allowed" : "Los archivos Dot no están permitidos",
"Empty filename is not allowed" : "El uso de nombres de archivo vacíos no está permitido",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "La aplicación \"%s\" no puede ser instalada porque el archivo appinfo no se puede leer. ",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "La aplicación \"%s\" no puede ser instalada porque no es compatible con esta versión del servidor. ",
"__language_name__" : "Español (El Salvador)",
"This is an automatically sent email, please do not reply." : "Este es un correo enviado automáticamente, por favor no lo contestes. ",
"Help" : "Ayuda",
"Apps" : "Aplicaciones",
"Settings" : "Configuraciones",
"Log out" : "Cerrar sesión",
"Users" : "Usuarios",
"Email" : "Correo electrónico",
"Phone" : "Teléfono fijo",
"Twitter" : "Twitter",
"Website" : "Sitio web",
"Address" : "Dirección",
"Profile picture" : "Foto de perfil",
"About" : "Acerca de",
"Additional settings" : "Configuraciones adicionales",
"You need to enter details of an existing account." : "Necesitas ingresar los detalles de una cuenta existente.",
"Oracle connection could not be established" : "No fue posible establecer la conexión a Oracle",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "OS X de Mac no está soportado y %s no funcionará correctamente en esta plataforma ¡Úsalo bajo tu propio riesgo!",
"For the best results, please consider using a GNU/Linux server instead." : "Para mejores resultados, por favor cosidera usar en su lugar un servidor GNU/Linux.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
"Set an admin password." : "Establecer la contraseña del administrador.",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
"Open »%s«" : "Abrir »%s«",
"You are not allowed to share %s" : "No tienes permitido compartir %s",
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
"Expiration date is in the past" : "La fecha de expiración se encuentra en el pasado",
"Click the button below to open it." : "Haz click en el botón inferior para abrirlo. ",
"The requested share does not exist anymore" : "El recurso compartido solicitado ya no existe",
"Could not find category \"%s\"" : "No fue posible encontrar la categoria \"%s\"",
"Sunday" : "Domingo",
"Monday" : "Lunes",
"Tuesday" : "Martes",
"Wednesday" : "Miércoles",
"Thursday" : "Jueves",
"Friday" : "Viernes",
"Saturday" : "Sábado",
"Sun." : "Dom.",
"Mon." : "Lun.",
"Tue." : "Mar.",
"Wed." : "Mie.",
"Thu." : "Jue.",
"Fri." : "Vie.",
"Sat." : "Sab.",
"Su" : "Do",
"Mo" : "Lu",
"Tu" : "Ma",
"We" : "Mi",
"Th" : "Ju",
"Fr" : "Vi",
"Sa" : "Sa",
"January" : "Enero",
"February" : "Febrero",
"March" : "Marzo",
"April" : "Abril",
"May" : "Mayo",
"June" : "Junio",
"July" : "Julio",
"August" : "Agosto",
"September" : "Septiembre",
"October" : "Octubre",
"November" : "Noviembre",
"December" : "Diciembre",
"Jan." : "Ene.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Abr.",
"May." : "May.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Ago.",
"Sep." : "Sep.",
"Oct." : "Oct.",
"Nov." : "Nov.",
"Dec." : "Dic.",
"A valid password must be provided" : "Se debe proporcionar una contraseña válida",
"Login canceled by app" : "Inicio de sesión cancelado por la aplicación",
"a safe home for all your data" : "un lugar seguro para todos tus datos",
"File is currently busy, please try again later" : "El archivo se encuentra actualmente en uso, por favor intentalo más tarde. ",
"Application is not enabled" : "La aplicación está deshabilitada",
"Authentication error" : "Error de autenticación",
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "No cuentas con controladores de base de datos (sqlite, mysql o postgresql) instalados. ",
"PHP module %s not installed." : "El módulo de PHP %s no está instalado. ",
"Please ask your server administrator to install the module." : "Por favor solicita a tu adminsitrador la instalación del módulo. ",
"PHP setting \"%s\" is not set to \"%s\"." : "El ajuste PHP \"%s\" no esta establecido a \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "El cambiar este ajuste del archivo php.ini hará que Nextcloud corra de nuevo.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "Al parecer PHP está configurado para quitar los bloques de comentarios internos. Esto hará que varias aplicaciones principales sean inaccesibles. ",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Esto ha sido causado probablemente por un acelerador de caché como Zend OPcache o eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "¿Los módulos de PHP han sido instalados, pero se siguen enlistando como faltantes?",
"Please ask your server administrator to restart the web server." : "Por favor solicita al administrador reiniciar el servidor web. ",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Asegurate de que exista una archivo llamado \".ocdata\" en la raíz del directorio de datos. ",
"Could not obtain lock type %d on \"%s\"." : "No fue posible obtener el tipo de bloqueo %d en \"%s\". ",
"Storage unauthorized. %s" : "Almacenamiento no autorizado. %s",
"Storage incomplete configuration. %s" : "Configuración incompleta del almacenamiento. %s",
"Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s",
"Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible",
"Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s",
"Logged in user must be an admin" : "El usuario firmado debe ser un administrador",
"Full name" : "Nombre completo",
"Unknown user" : "Ususario desconocido",
"Oracle username and/or password not valid" : "Usuario y/o contraseña de Oracle inválidos",
"PostgreSQL username and/or password not valid" : "El Usuario y/o Contraseña de PostgreSQL inválido(s)",
"Set an admin username." : "Establecer un Usuario administrador",
"Sharing %s failed, because this item is already shared with user %s" : "Se presento una falla al compartir %s, porque este elemento ya ha sido compartido con el usuario %s",
"The username is already being used" : "Ese usuario ya está en uso",
"Could not create user" : "No fue posible crear el usuario",
"A valid username must be provided" : "Debes proporcionar un nombre de usuario válido",
"Username contains whitespace at the beginning or at the end" : "El usuario contiene un espacio en blanco al inicio o al final",
"Username must not consist of dots only" : "El usuario no debe consistir de solo puntos. ",
"User disabled" : "Usuario deshabilitado",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Se requiere de por lo menos libxml2 2.7.0. Actualmente %s está instalado. ",
"To fix this issue update your libxml2 version and restart your web server." : "Para corregir este tema, por favor actualiza la versión de su libxml2 y reinicia tu servidor web. ",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Por favor cambia los permisos a 0770 para que el directorio no pueda ser enlistado por otros usuarios. "
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}
+172
View File
@@ -0,0 +1,172 @@
OC.L10N.register(
"lib",
{
"Cannot write into \"config\" directory!" : "¡No se puede escribir en el directorio \"config\"!",
"See %s" : "Ver %s",
"Sample configuration detected" : "Se ha detectado la configuración de muestra",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Se ha detectado que la configuración de muestra ha sido copiada. Esto puede arruiniar tu instalacón y no está soportado. Por favor lee la documentación antes de hacer cambios en el archivo config.php",
"%1$s and %2$s" : "%1$s y %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s y %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s y %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s y %5$s",
"Education Edition" : "Edición Educativa",
"Enterprise bundle" : "Paquete empresarial",
"Groupware bundle" : "Paquete de Groupware",
"Social sharing bundle" : "Paquete para compartir en redes sociales",
"PHP %s or higher is required." : "Se requiere de PHP %s o superior.",
"PHP with a version lower than %s is required." : "PHP con una versión inferiror a la %s es requerido. ",
"%sbit or higher PHP required." : "se requiere PHP para %sbit o superior.",
"The command line tool %s could not be found" : "No fue posible encontar la herramienta de línea de comando %s",
"The library %s is not available." : "La biblioteca %s no está disponible. ",
"Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ",
"Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ",
"Authentication" : "Autenticación",
"Unknown filetype" : "Tipo de archivo desconocido",
"Invalid image" : "Imagen inválida",
"Avatar image is not square" : "La imagen del avatar no es un cuadrado",
"Files" : "Archivos",
"today" : "hoy",
"tomorrow" : "mañana",
"yesterday" : "ayer",
"_in %n day_::_in %n days_" : ["en %n día","en %n días","en %n días"],
"_%n day ago_::_%n days ago_" : ["hace %n día","hace %n días","hace %n días"],
"next month" : "próximo mes",
"last month" : "mes pasado",
"_in %n month_::_in %n months_" : ["en %n mes","en %n meses","en %n meses"],
"_%n month ago_::_%n months ago_" : ["Hace %n mes","Hace %n meses","Hace %n meses"],
"next year" : "próximo año",
"last year" : "año pasado",
"_in %n year_::_in %n years_" : ["en %n año","en %n años","en %n años"],
"_%n year ago_::_%n years ago_" : ["hace %n año","hace %n años","hace %n años"],
"_in %n hour_::_in %n hours_" : ["en %n hora","en %n horas","en %n horas"],
"_%n hour ago_::_%n hours ago_" : ["Hace %n hora","Hace %n horas","Hace %n horas"],
"_in %n minute_::_in %n minutes_" : ["en %n minuto","en %n minutos","en %n minutos"],
"_%n minute ago_::_%n minutes ago_" : ["Hace %n minuto","Hace %n minutos","Hace %n minutos"],
"in a few seconds" : "en algunos segundos",
"seconds ago" : "hace segundos",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "El módulo con ID: %sno existe. Por favor hablíitalo en tus configuraciones de aplicación o contacta a tu administrador. ",
"File already exists" : "El archivo ya existe",
"File name is a reserved word" : "Nombre de archivo es una palabra reservada",
"File name contains at least one invalid character" : "El nombre del archivo contiene al menos un caracter inválido",
"File name is too long" : "El nombre del archivo es demasiado largo",
"Dot files are not allowed" : "Los archivos Dot no están permitidos",
"Empty filename is not allowed" : "El uso de nombres de archivo vacíos no está permitido",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "La aplicación \"%s\" no puede ser instalada porque el archivo appinfo no se puede leer. ",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "La aplicación \"%s\" no puede ser instalada porque no es compatible con esta versión del servidor. ",
"__language_name__" : "Español (Uruguay)",
"This is an automatically sent email, please do not reply." : "Este es un correo enviado automáticamente, por favor no lo contestes. ",
"Help" : "Ayuda",
"Apps" : "Aplicaciones",
"Settings" : "Configuraciones",
"Log out" : "Salir",
"Users" : "Usuarios",
"Email" : "Correo electrónico",
"Phone" : "Teléfono fijo",
"Twitter" : "Twitter",
"Website" : "Sitio web",
"Address" : "Dirección",
"Profile picture" : "Foto de perfil",
"About" : "Acerca",
"Additional settings" : "Configuraciones adicionales",
"You need to enter details of an existing account." : "Necesitas ingresar los detalles de una cuenta existente.",
"Oracle connection could not be established" : "No fue posible establecer la conexión a Oracle",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "OS X de Mac no está soportado y %s no funcionará correctamente en esta plataforma ¡Úsalo bajo tu propio riesgo!",
"For the best results, please consider using a GNU/Linux server instead." : "Para mejores resultados, por favor cosidera usar en su lugar un servidor GNU/Linux.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
"Set an admin password." : "Establecer la contraseña del administrador.",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
"Open »%s«" : "Abrir »%s«",
"You are not allowed to share %s" : "No tienes permitido compartir %s",
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
"Expiration date is in the past" : "La fecha de expiración se encuentra en el pasado",
"Click the button below to open it." : "Haz click en el botón inferior para abrirlo. ",
"The requested share does not exist anymore" : "El recurso compartido solicitado ya no existe",
"Could not find category \"%s\"" : "No fue posible encontrar la categoria \"%s\"",
"Sunday" : "Domingo",
"Monday" : "Lunes",
"Tuesday" : "Martes",
"Wednesday" : "Miércoles",
"Thursday" : "Jueves",
"Friday" : "Viernes",
"Saturday" : "Sábado",
"Sun." : "Dom.",
"Mon." : "Lun.",
"Tue." : "Mar.",
"Wed." : "Mie.",
"Thu." : "Jue.",
"Fri." : "Vie.",
"Sat." : "Sab.",
"Su" : "Do",
"Mo" : "Lu",
"Tu" : "Ma",
"We" : "Mi",
"Th" : "Ju",
"Fr" : "Vi",
"Sa" : "Sa",
"January" : "Enero",
"February" : "Febrero",
"March" : "Marzo",
"April" : "Abril",
"May" : "Mayo",
"June" : "Junio",
"July" : "Julio",
"August" : "Agosto",
"September" : "Septiembre",
"October" : "Octubre",
"November" : "Noviembre",
"December" : "Diciembre",
"Jan." : "Ene.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Abr.",
"May." : "May.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Ago.",
"Sep." : "Sep.",
"Oct." : "Oct.",
"Nov." : "Nov.",
"Dec." : "Dic.",
"A valid password must be provided" : "Se debe proporcionar una contraseña válida",
"Login canceled by app" : "Inicio de sesión cancelado por la aplicación",
"a safe home for all your data" : "un lugar seguro para todos tus datos",
"File is currently busy, please try again later" : "El archivo se encuentra actualmente en uso, por favor intentalo más tarde. ",
"Application is not enabled" : "La aplicación está deshabilitada",
"Authentication error" : "Error de autenticación",
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "No cuentas con controladores de base de datos (sqlite, mysql o postgresql) instalados. ",
"PHP module %s not installed." : "El módulo de PHP %s no está instalado. ",
"Please ask your server administrator to install the module." : "Por favor solicita a tu adminsitrador la instalación del módulo. ",
"PHP setting \"%s\" is not set to \"%s\"." : "El ajuste PHP \"%s\" no esta establecido a \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "El cambiar este ajuste del archivo php.ini hará que Nextcloud corra de nuevo.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "Al parecer PHP está configurado para quitar los bloques de comentarios internos. Esto hará que varias aplicaciones principales sean inaccesibles. ",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Esto ha sido causado probablemente por un acelerador de caché como Zend OPcache o eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "¿Los módulos de PHP han sido instalados, pero se siguen enlistando como faltantes?",
"Please ask your server administrator to restart the web server." : "Por favor solicita al administrador reiniciar el servidor web. ",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Asegurate de que exista una archivo llamado \".ocdata\" en la raíz del directorio de datos. ",
"Could not obtain lock type %d on \"%s\"." : "No fue posible obtener el tipo de bloqueo %d en \"%s\". ",
"Storage unauthorized. %s" : "Almacenamiento no autorizado. %s",
"Storage incomplete configuration. %s" : "Configuración incompleta del almacenamiento. %s",
"Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s",
"Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible",
"Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s",
"Full name" : "Nombre completo",
"Unknown user" : "Ususario desconocido",
"Oracle username and/or password not valid" : "Usuario y/o contraseña de Oracle inválidos",
"PostgreSQL username and/or password not valid" : "El Usuario y/o Contraseña de PostgreSQL inválido(s)",
"Set an admin username." : "Establecer un Usuario administrador",
"Sharing %s failed, because this item is already shared with user %s" : "Se presento una falla al compartir %s, porque este elemento ya ha sido compartido con el usuario %s",
"The username is already being used" : "Ese usuario ya está en uso",
"Could not create user" : "No fue posible crear el usuario",
"A valid username must be provided" : "Debes proporcionar un nombre de usuario válido",
"Username contains whitespace at the beginning or at the end" : "El usuario contiene un espacio en blanco al inicio o al final",
"Username must not consist of dots only" : "El usuario no debe consistir de solo puntos. ",
"User disabled" : "Usuario deshabilitado",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Se requiere de por lo menos libxml2 2.7.0. Actualmente %s está instalado. ",
"To fix this issue update your libxml2 version and restart your web server." : "Para corregir este tema, por favor actualiza la versión de su libxml2 y reinicia tu servidor web. ",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Por favor cambia los permisos a 0770 para que el directorio no pueda ser enlistado por otros usuarios. "
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
+170
View File
@@ -0,0 +1,170 @@
{ "translations": {
"Cannot write into \"config\" directory!" : "¡No se puede escribir en el directorio \"config\"!",
"See %s" : "Ver %s",
"Sample configuration detected" : "Se ha detectado la configuración de muestra",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Se ha detectado que la configuración de muestra ha sido copiada. Esto puede arruiniar tu instalacón y no está soportado. Por favor lee la documentación antes de hacer cambios en el archivo config.php",
"%1$s and %2$s" : "%1$s y %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s y %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s y %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s y %5$s",
"Education Edition" : "Edición Educativa",
"Enterprise bundle" : "Paquete empresarial",
"Groupware bundle" : "Paquete de Groupware",
"Social sharing bundle" : "Paquete para compartir en redes sociales",
"PHP %s or higher is required." : "Se requiere de PHP %s o superior.",
"PHP with a version lower than %s is required." : "PHP con una versión inferiror a la %s es requerido. ",
"%sbit or higher PHP required." : "se requiere PHP para %sbit o superior.",
"The command line tool %s could not be found" : "No fue posible encontar la herramienta de línea de comando %s",
"The library %s is not available." : "La biblioteca %s no está disponible. ",
"Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ",
"Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ",
"Authentication" : "Autenticación",
"Unknown filetype" : "Tipo de archivo desconocido",
"Invalid image" : "Imagen inválida",
"Avatar image is not square" : "La imagen del avatar no es un cuadrado",
"Files" : "Archivos",
"today" : "hoy",
"tomorrow" : "mañana",
"yesterday" : "ayer",
"_in %n day_::_in %n days_" : ["en %n día","en %n días","en %n días"],
"_%n day ago_::_%n days ago_" : ["hace %n día","hace %n días","hace %n días"],
"next month" : "próximo mes",
"last month" : "mes pasado",
"_in %n month_::_in %n months_" : ["en %n mes","en %n meses","en %n meses"],
"_%n month ago_::_%n months ago_" : ["Hace %n mes","Hace %n meses","Hace %n meses"],
"next year" : "próximo año",
"last year" : "año pasado",
"_in %n year_::_in %n years_" : ["en %n año","en %n años","en %n años"],
"_%n year ago_::_%n years ago_" : ["hace %n año","hace %n años","hace %n años"],
"_in %n hour_::_in %n hours_" : ["en %n hora","en %n horas","en %n horas"],
"_%n hour ago_::_%n hours ago_" : ["Hace %n hora","Hace %n horas","Hace %n horas"],
"_in %n minute_::_in %n minutes_" : ["en %n minuto","en %n minutos","en %n minutos"],
"_%n minute ago_::_%n minutes ago_" : ["Hace %n minuto","Hace %n minutos","Hace %n minutos"],
"in a few seconds" : "en algunos segundos",
"seconds ago" : "hace segundos",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "El módulo con ID: %sno existe. Por favor hablíitalo en tus configuraciones de aplicación o contacta a tu administrador. ",
"File already exists" : "El archivo ya existe",
"File name is a reserved word" : "Nombre de archivo es una palabra reservada",
"File name contains at least one invalid character" : "El nombre del archivo contiene al menos un caracter inválido",
"File name is too long" : "El nombre del archivo es demasiado largo",
"Dot files are not allowed" : "Los archivos Dot no están permitidos",
"Empty filename is not allowed" : "El uso de nombres de archivo vacíos no está permitido",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "La aplicación \"%s\" no puede ser instalada porque el archivo appinfo no se puede leer. ",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "La aplicación \"%s\" no puede ser instalada porque no es compatible con esta versión del servidor. ",
"__language_name__" : "Español (Uruguay)",
"This is an automatically sent email, please do not reply." : "Este es un correo enviado automáticamente, por favor no lo contestes. ",
"Help" : "Ayuda",
"Apps" : "Aplicaciones",
"Settings" : "Configuraciones",
"Log out" : "Salir",
"Users" : "Usuarios",
"Email" : "Correo electrónico",
"Phone" : "Teléfono fijo",
"Twitter" : "Twitter",
"Website" : "Sitio web",
"Address" : "Dirección",
"Profile picture" : "Foto de perfil",
"About" : "Acerca",
"Additional settings" : "Configuraciones adicionales",
"You need to enter details of an existing account." : "Necesitas ingresar los detalles de una cuenta existente.",
"Oracle connection could not be established" : "No fue posible establecer la conexión a Oracle",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "OS X de Mac no está soportado y %s no funcionará correctamente en esta plataforma ¡Úsalo bajo tu propio riesgo!",
"For the best results, please consider using a GNU/Linux server instead." : "Para mejores resultados, por favor cosidera usar en su lugar un servidor GNU/Linux.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
"Set an admin password." : "Establecer la contraseña del administrador.",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
"Open »%s«" : "Abrir »%s«",
"You are not allowed to share %s" : "No tienes permitido compartir %s",
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
"Expiration date is in the past" : "La fecha de expiración se encuentra en el pasado",
"Click the button below to open it." : "Haz click en el botón inferior para abrirlo. ",
"The requested share does not exist anymore" : "El recurso compartido solicitado ya no existe",
"Could not find category \"%s\"" : "No fue posible encontrar la categoria \"%s\"",
"Sunday" : "Domingo",
"Monday" : "Lunes",
"Tuesday" : "Martes",
"Wednesday" : "Miércoles",
"Thursday" : "Jueves",
"Friday" : "Viernes",
"Saturday" : "Sábado",
"Sun." : "Dom.",
"Mon." : "Lun.",
"Tue." : "Mar.",
"Wed." : "Mie.",
"Thu." : "Jue.",
"Fri." : "Vie.",
"Sat." : "Sab.",
"Su" : "Do",
"Mo" : "Lu",
"Tu" : "Ma",
"We" : "Mi",
"Th" : "Ju",
"Fr" : "Vi",
"Sa" : "Sa",
"January" : "Enero",
"February" : "Febrero",
"March" : "Marzo",
"April" : "Abril",
"May" : "Mayo",
"June" : "Junio",
"July" : "Julio",
"August" : "Agosto",
"September" : "Septiembre",
"October" : "Octubre",
"November" : "Noviembre",
"December" : "Diciembre",
"Jan." : "Ene.",
"Feb." : "Feb.",
"Mar." : "Mar.",
"Apr." : "Abr.",
"May." : "May.",
"Jun." : "Jun.",
"Jul." : "Jul.",
"Aug." : "Ago.",
"Sep." : "Sep.",
"Oct." : "Oct.",
"Nov." : "Nov.",
"Dec." : "Dic.",
"A valid password must be provided" : "Se debe proporcionar una contraseña válida",
"Login canceled by app" : "Inicio de sesión cancelado por la aplicación",
"a safe home for all your data" : "un lugar seguro para todos tus datos",
"File is currently busy, please try again later" : "El archivo se encuentra actualmente en uso, por favor intentalo más tarde. ",
"Application is not enabled" : "La aplicación está deshabilitada",
"Authentication error" : "Error de autenticación",
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "No cuentas con controladores de base de datos (sqlite, mysql o postgresql) instalados. ",
"PHP module %s not installed." : "El módulo de PHP %s no está instalado. ",
"Please ask your server administrator to install the module." : "Por favor solicita a tu adminsitrador la instalación del módulo. ",
"PHP setting \"%s\" is not set to \"%s\"." : "El ajuste PHP \"%s\" no esta establecido a \"%s\".",
"Adjusting this setting in php.ini will make Nextcloud run again" : "El cambiar este ajuste del archivo php.ini hará que Nextcloud corra de nuevo.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "Al parecer PHP está configurado para quitar los bloques de comentarios internos. Esto hará que varias aplicaciones principales sean inaccesibles. ",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Esto ha sido causado probablemente por un acelerador de caché como Zend OPcache o eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "¿Los módulos de PHP han sido instalados, pero se siguen enlistando como faltantes?",
"Please ask your server administrator to restart the web server." : "Por favor solicita al administrador reiniciar el servidor web. ",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Asegurate de que exista una archivo llamado \".ocdata\" en la raíz del directorio de datos. ",
"Could not obtain lock type %d on \"%s\"." : "No fue posible obtener el tipo de bloqueo %d en \"%s\". ",
"Storage unauthorized. %s" : "Almacenamiento no autorizado. %s",
"Storage incomplete configuration. %s" : "Configuración incompleta del almacenamiento. %s",
"Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s",
"Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible",
"Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s",
"Full name" : "Nombre completo",
"Unknown user" : "Ususario desconocido",
"Oracle username and/or password not valid" : "Usuario y/o contraseña de Oracle inválidos",
"PostgreSQL username and/or password not valid" : "El Usuario y/o Contraseña de PostgreSQL inválido(s)",
"Set an admin username." : "Establecer un Usuario administrador",
"Sharing %s failed, because this item is already shared with user %s" : "Se presento una falla al compartir %s, porque este elemento ya ha sido compartido con el usuario %s",
"The username is already being used" : "Ese usuario ya está en uso",
"Could not create user" : "No fue posible crear el usuario",
"A valid username must be provided" : "Debes proporcionar un nombre de usuario válido",
"Username contains whitespace at the beginning or at the end" : "El usuario contiene un espacio en blanco al inicio o al final",
"Username must not consist of dots only" : "El usuario no debe consistir de solo puntos. ",
"User disabled" : "Usuario deshabilitado",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Se requiere de por lo menos libxml2 2.7.0. Actualmente %s está instalado. ",
"To fix this issue update your libxml2 version and restart your web server." : "Para corregir este tema, por favor actualiza la versión de su libxml2 y reinicia tu servidor web. ",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Por favor cambia los permisos a 0770 para que el directorio no pueda ser enlistado por otros usuarios. "
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}
+158
View File
@@ -0,0 +1,158 @@
OC.L10N.register(
"lib",
{
"Cannot write into \"config\" directory!" : "Ei saa kirjutada \"config\" kataloogi!",
"See %s" : "Vaata %s",
"Sample configuration detected" : "Tuvastati näidisseaded",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Tuvastati, et kopeeriti näidisseaded. See võib lõhkuda sinu saidi ja see pole toetatud. Palun loe enne faili config.php muutmist dokumentatsiooni",
"%1$s and %2$s" : "%1$s ja %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s ja %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s ja %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s ja %5$s",
"PHP %s or higher is required." : "PHP %s või uuem on nõutav.",
"PHP with a version lower than %s is required." : "Nõutud on PHP madalama versiooniga kui %s.",
"The command line tool %s could not be found" : "Käsurea töövahendit %s ei leitud",
"The library %s is not available." : "Teek %s pole saadaval.",
"Server version %s or higher is required." : "Serveri versioon %s või kõrgem on nõutav.",
"Server version %s or lower is required." : "Serveri versioon %s või madalam on nõutav.",
"Authentication" : "Autentimine",
"Unknown filetype" : "Tundmatu failitüüp",
"Invalid image" : "Vigane pilt",
"Avatar image is not square" : "Avatari pilt pole ruut",
"Files" : "Failid",
"View profile" : "Vaata profiili",
"today" : "täna",
"tomorrow" : "homme",
"yesterday" : "eile",
"_%n day ago_::_%n days ago_" : ["%n päev tagasi","%n päeva tagasi"],
"next month" : "järgmine kuu",
"last month" : "viimasel kuul",
"next year" : "järgmine aasta",
"last year" : "viimasel aastal",
"_%n year ago_::_%n years ago_" : ["%n aasta tagasi","%n aastat tagasi"],
"_%n hour ago_::_%n hours ago_" : ["%n tund tagasi","%n tundi tagasi"],
"in a few seconds" : "mõne sekundi jooksul",
"seconds ago" : "sekundit tagasi",
"Empty file" : "Tühi fail",
"File already exists" : "Fail on juba olemas",
"Invalid path" : "Vigane kataloogirada",
"Failed to create file from template" : "Ei saa luua mallist faili",
"Templates" : "Mallid",
"File name is a reserved word" : "Failinimi sisaldab keelatud sõna",
"File name contains at least one invalid character" : "Faili nimesonvähemalt üks keelatud märk",
"File name is too long" : "Faili nimi on liiga pikk",
"Dot files are not allowed" : "Punktiga failid pole lubatud",
"Empty filename is not allowed" : "Tühi failinimi pole lubatud",
"__language_name__" : "Eesti",
"This is an automatically sent email, please do not reply." : "See on automaatselt saadetud e-kiri, palun ära vasta.",
"Help" : "Abi",
"Apps" : "Rakendused",
"Personal settings" : "Isiklikud seaded",
"Administration settings" : "Administreerimise seaded",
"Settings" : "Seaded",
"Log out" : "Logi välja",
"Users" : "Kasutajad",
"Email" : "Epost",
"Phone" : "Telefon",
"Twitter" : "Twitter",
"Website" : "Veebileht",
"Address" : "Aadress",
"Profile picture" : "Profiili pilt",
"About" : "Info",
"Display name" : "Kuvatav nimi",
"Organisation" : "Organisatsioon",
"Role" : "Roll",
"Additional settings" : "Lisaseaded",
"You need to enter details of an existing account." : "Sa pead sisestama olemasoleva konto andmed.",
"Oracle connection could not be established" : "Ei suuda luua ühendust Oracle baasiga",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "Mac OS X ei ole toetatud ja %s ei pruugi korralikult toimida sellel platvormil. Kasuta seda omal vastutusel!",
"For the best results, please consider using a GNU/Linux server instead." : "Parema tulemuse saavitamiseks palun kaalu serveris GNU/Linux kasutamist.",
"Set an admin password." : "Määra admini parool.",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Jagamise tagarakend %s peab kasutusele võtma OCP\\Share_Backend liidese",
"Sharing backend %s not found" : "Jagamise tagarakendit %s ei leitud",
"Sharing backend for %s not found" : "Jagamise tagarakendit %s jaoks ei leitud",
"Open »%s«" : "Ava »%s«",
"You are not allowed to share %s" : "Sul pole lubatud %s jagada",
"Cannot increase permissions of %s" : "Ei saa %s õigusi suurendada",
"Expiration date is in the past" : "Aegumise kuupäev on minevikus",
"Click the button below to open it." : "Vajuta allolevat nuppu, et see avada.",
"The requested share does not exist anymore" : "Soovitud jagamist enam ei eksisteeri",
"Could not find category \"%s\"" : "Ei leia kategooriat \"%s\"",
"Sunday" : "Pühapäev",
"Monday" : "Esmaspäev",
"Tuesday" : "Teisipäev",
"Wednesday" : "Kolmapäev",
"Thursday" : "Neljapäev",
"Friday" : "Reede",
"Saturday" : "Laupäev",
"Sun." : "P",
"Mon." : "E",
"Tue." : "T",
"Wed." : "K",
"Thu." : "N",
"Fri." : "R",
"Sat." : "L",
"Su" : "P",
"Mo" : "E",
"Tu" : "T",
"We" : "K",
"Th" : "N",
"Fr" : "R",
"Sa" : "L",
"January" : "Jaanuar",
"February" : "Veebruar",
"March" : "Märts",
"April" : "Aprill",
"May" : "Mai",
"June" : "Juuni",
"July" : "Juuli",
"August" : "August",
"September" : "September",
"October" : "Oktoober",
"November" : "November",
"December" : "Detsember",
"Jan." : "Jaan.",
"Feb." : "Veebr.",
"Mar." : "Märts.",
"Apr." : "Apr.",
"May." : "Mai.",
"Jun." : "Juuni.",
"Jul." : "Juuli.",
"Aug." : "Aug.",
"Sep." : "Sept.",
"Oct." : "Okt.",
"Nov." : "Nov.",
"Dec." : "Dets.",
"A valid password must be provided" : "Sisesta nõuetele vastav parool",
"a safe home for all your data" : "turvaline koht sinu andmetele",
"File is currently busy, please try again later" : "Fail on hetkel kasutuses, proovi hiljem uuesti",
"Application is not enabled" : "Rakendus pole sisse lülitatud",
"Authentication error" : "Autentimise viga",
"Token expired. Please reload page." : "Kontrollkood aegus. Paelun lae leht uuesti.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "Ühtegi andmebaasi (sqlite, mysql või postgresql) draiverit pole paigaldatud.",
"PHP module %s not installed." : "PHP moodulit %s pole paigaldatud.",
"Please ask your server administrator to install the module." : "Palu oma serveri haldajal moodul paigadalda.",
"PHP setting \"%s\" is not set to \"%s\"." : "PHP seade \"%s\" ei ole \"%s\".",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "See on tõenäoliselt põhjustatud puhver/kiirendist nagu Zend OPcache või eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "PHP moodulid on paigaldatud, kuid neid näitatakse endiselt kui puuduolevad?",
"Please ask your server administrator to restart the web server." : "Palu oma serveri haldajal veebiserver taaskäivitada.",
"Your data directory is invalid." : "Sinu andmekataloog on vigane",
"Could not obtain lock type %d on \"%s\"." : "Ei suutnud hankida %d tüüpi lukustust \"%s\".",
"Storage is temporarily not available" : "Salvestusruum pole ajutiselt kättesaadav",
"Full name" : "Täisnimi",
"Unknown user" : "Tundmatu kasutaja",
"Oracle username and/or password not valid" : "Oracle kasutajatunnus ja/või parool pole õiged",
"PostgreSQL username and/or password not valid" : "PostgreSQL kasutajatunnus ja/või parool pole õiged",
"Set an admin username." : "Määra admin kasutajanimi.",
"Sharing %s failed, because this item is already shared with user %s" : "%s jagamine ebaõnnestus, kuna see üksus on juba jagatud kasutajaga %s",
"The username is already being used" : "Kasutajanimi on juba kasutuses",
"Could not create user" : "Ei saanud kasutajat luua",
"A valid username must be provided" : "Sisesta nõuetele vastav kasutajatunnus",
"Username contains whitespace at the beginning or at the end" : "Kasutajanime alguses või lõpus on tühik",
"Username must not consist of dots only" : "Kasutajanimi ei tohi koosneda ainult punktidest",
"User disabled" : "Kasutaja deaktiveeritud",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Vaja on vähemalt libxml2 2.7.0. Hetkel on installitud %s.",
"Please upgrade your database version." : "Palun uuenda oma andmebaasi versioon",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Palun muuda kataloogi õigused 0770-ks, et kataloogi sisu poleks teistele kasutajatele nähtav"
},
"nplurals=2; plural=(n != 1);");
+156
View File
@@ -0,0 +1,156 @@
{ "translations": {
"Cannot write into \"config\" directory!" : "Ei saa kirjutada \"config\" kataloogi!",
"See %s" : "Vaata %s",
"Sample configuration detected" : "Tuvastati näidisseaded",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Tuvastati, et kopeeriti näidisseaded. See võib lõhkuda sinu saidi ja see pole toetatud. Palun loe enne faili config.php muutmist dokumentatsiooni",
"%1$s and %2$s" : "%1$s ja %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s ja %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s ja %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s ja %5$s",
"PHP %s or higher is required." : "PHP %s või uuem on nõutav.",
"PHP with a version lower than %s is required." : "Nõutud on PHP madalama versiooniga kui %s.",
"The command line tool %s could not be found" : "Käsurea töövahendit %s ei leitud",
"The library %s is not available." : "Teek %s pole saadaval.",
"Server version %s or higher is required." : "Serveri versioon %s või kõrgem on nõutav.",
"Server version %s or lower is required." : "Serveri versioon %s või madalam on nõutav.",
"Authentication" : "Autentimine",
"Unknown filetype" : "Tundmatu failitüüp",
"Invalid image" : "Vigane pilt",
"Avatar image is not square" : "Avatari pilt pole ruut",
"Files" : "Failid",
"View profile" : "Vaata profiili",
"today" : "täna",
"tomorrow" : "homme",
"yesterday" : "eile",
"_%n day ago_::_%n days ago_" : ["%n päev tagasi","%n päeva tagasi"],
"next month" : "järgmine kuu",
"last month" : "viimasel kuul",
"next year" : "järgmine aasta",
"last year" : "viimasel aastal",
"_%n year ago_::_%n years ago_" : ["%n aasta tagasi","%n aastat tagasi"],
"_%n hour ago_::_%n hours ago_" : ["%n tund tagasi","%n tundi tagasi"],
"in a few seconds" : "mõne sekundi jooksul",
"seconds ago" : "sekundit tagasi",
"Empty file" : "Tühi fail",
"File already exists" : "Fail on juba olemas",
"Invalid path" : "Vigane kataloogirada",
"Failed to create file from template" : "Ei saa luua mallist faili",
"Templates" : "Mallid",
"File name is a reserved word" : "Failinimi sisaldab keelatud sõna",
"File name contains at least one invalid character" : "Faili nimesonvähemalt üks keelatud märk",
"File name is too long" : "Faili nimi on liiga pikk",
"Dot files are not allowed" : "Punktiga failid pole lubatud",
"Empty filename is not allowed" : "Tühi failinimi pole lubatud",
"__language_name__" : "Eesti",
"This is an automatically sent email, please do not reply." : "See on automaatselt saadetud e-kiri, palun ära vasta.",
"Help" : "Abi",
"Apps" : "Rakendused",
"Personal settings" : "Isiklikud seaded",
"Administration settings" : "Administreerimise seaded",
"Settings" : "Seaded",
"Log out" : "Logi välja",
"Users" : "Kasutajad",
"Email" : "Epost",
"Phone" : "Telefon",
"Twitter" : "Twitter",
"Website" : "Veebileht",
"Address" : "Aadress",
"Profile picture" : "Profiili pilt",
"About" : "Info",
"Display name" : "Kuvatav nimi",
"Organisation" : "Organisatsioon",
"Role" : "Roll",
"Additional settings" : "Lisaseaded",
"You need to enter details of an existing account." : "Sa pead sisestama olemasoleva konto andmed.",
"Oracle connection could not be established" : "Ei suuda luua ühendust Oracle baasiga",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "Mac OS X ei ole toetatud ja %s ei pruugi korralikult toimida sellel platvormil. Kasuta seda omal vastutusel!",
"For the best results, please consider using a GNU/Linux server instead." : "Parema tulemuse saavitamiseks palun kaalu serveris GNU/Linux kasutamist.",
"Set an admin password." : "Määra admini parool.",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Jagamise tagarakend %s peab kasutusele võtma OCP\\Share_Backend liidese",
"Sharing backend %s not found" : "Jagamise tagarakendit %s ei leitud",
"Sharing backend for %s not found" : "Jagamise tagarakendit %s jaoks ei leitud",
"Open »%s«" : "Ava »%s«",
"You are not allowed to share %s" : "Sul pole lubatud %s jagada",
"Cannot increase permissions of %s" : "Ei saa %s õigusi suurendada",
"Expiration date is in the past" : "Aegumise kuupäev on minevikus",
"Click the button below to open it." : "Vajuta allolevat nuppu, et see avada.",
"The requested share does not exist anymore" : "Soovitud jagamist enam ei eksisteeri",
"Could not find category \"%s\"" : "Ei leia kategooriat \"%s\"",
"Sunday" : "Pühapäev",
"Monday" : "Esmaspäev",
"Tuesday" : "Teisipäev",
"Wednesday" : "Kolmapäev",
"Thursday" : "Neljapäev",
"Friday" : "Reede",
"Saturday" : "Laupäev",
"Sun." : "P",
"Mon." : "E",
"Tue." : "T",
"Wed." : "K",
"Thu." : "N",
"Fri." : "R",
"Sat." : "L",
"Su" : "P",
"Mo" : "E",
"Tu" : "T",
"We" : "K",
"Th" : "N",
"Fr" : "R",
"Sa" : "L",
"January" : "Jaanuar",
"February" : "Veebruar",
"March" : "Märts",
"April" : "Aprill",
"May" : "Mai",
"June" : "Juuni",
"July" : "Juuli",
"August" : "August",
"September" : "September",
"October" : "Oktoober",
"November" : "November",
"December" : "Detsember",
"Jan." : "Jaan.",
"Feb." : "Veebr.",
"Mar." : "Märts.",
"Apr." : "Apr.",
"May." : "Mai.",
"Jun." : "Juuni.",
"Jul." : "Juuli.",
"Aug." : "Aug.",
"Sep." : "Sept.",
"Oct." : "Okt.",
"Nov." : "Nov.",
"Dec." : "Dets.",
"A valid password must be provided" : "Sisesta nõuetele vastav parool",
"a safe home for all your data" : "turvaline koht sinu andmetele",
"File is currently busy, please try again later" : "Fail on hetkel kasutuses, proovi hiljem uuesti",
"Application is not enabled" : "Rakendus pole sisse lülitatud",
"Authentication error" : "Autentimise viga",
"Token expired. Please reload page." : "Kontrollkood aegus. Paelun lae leht uuesti.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "Ühtegi andmebaasi (sqlite, mysql või postgresql) draiverit pole paigaldatud.",
"PHP module %s not installed." : "PHP moodulit %s pole paigaldatud.",
"Please ask your server administrator to install the module." : "Palu oma serveri haldajal moodul paigadalda.",
"PHP setting \"%s\" is not set to \"%s\"." : "PHP seade \"%s\" ei ole \"%s\".",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "See on tõenäoliselt põhjustatud puhver/kiirendist nagu Zend OPcache või eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "PHP moodulid on paigaldatud, kuid neid näitatakse endiselt kui puuduolevad?",
"Please ask your server administrator to restart the web server." : "Palu oma serveri haldajal veebiserver taaskäivitada.",
"Your data directory is invalid." : "Sinu andmekataloog on vigane",
"Could not obtain lock type %d on \"%s\"." : "Ei suutnud hankida %d tüüpi lukustust \"%s\".",
"Storage is temporarily not available" : "Salvestusruum pole ajutiselt kättesaadav",
"Full name" : "Täisnimi",
"Unknown user" : "Tundmatu kasutaja",
"Oracle username and/or password not valid" : "Oracle kasutajatunnus ja/või parool pole õiged",
"PostgreSQL username and/or password not valid" : "PostgreSQL kasutajatunnus ja/või parool pole õiged",
"Set an admin username." : "Määra admin kasutajanimi.",
"Sharing %s failed, because this item is already shared with user %s" : "%s jagamine ebaõnnestus, kuna see üksus on juba jagatud kasutajaga %s",
"The username is already being used" : "Kasutajanimi on juba kasutuses",
"Could not create user" : "Ei saanud kasutajat luua",
"A valid username must be provided" : "Sisesta nõuetele vastav kasutajatunnus",
"Username contains whitespace at the beginning or at the end" : "Kasutajanime alguses või lõpus on tühik",
"Username must not consist of dots only" : "Kasutajanimi ei tohi koosneda ainult punktidest",
"User disabled" : "Kasutaja deaktiveeritud",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Vaja on vähemalt libxml2 2.7.0. Hetkel on installitud %s.",
"Please upgrade your database version." : "Palun uuenda oma andmebaasi versioon",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Palun muuda kataloogi õigused 0770-ks, et kataloogi sisu poleks teistele kasutajatele nähtav"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}
+280
View File
@@ -0,0 +1,280 @@
OC.L10N.register(
"lib",
{
"Cannot write into \"config\" directory!" : "Ezin da idatzi \"config\" karpetan!",
"This can usually be fixed by giving the web server write access to the config directory." : "Hau normalean konpon daiteke web zerbitzariari konfigurazio direktoriorako idazteko sarbidea emanez.",
"But, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it." : "Bestela, config.php fitxategia irakurtzeko soilik mantendu nahi baduzu, ezarri bertan \"config_is_read_only\" aukerari 'egia' balioa.",
"See %s" : "Ikusi %s",
"Application %1$s is not present or has a non-compatible version with this server. Please check the apps directory." : "%1$s aplikazioa ez dago edo zerbitzari honekiko bertsio bateraezina du. Mesedez egiaztatu aplikazioen karpeta.",
"Sample configuration detected" : "Adibide-ezarpena detektatua",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Adibide-ezarpena kopiatu dela detektatu da. Honek zure instalazioa apur dezake eta ez da onartzen. Irakurri dokumentazioa config.php fitxategia aldatu aurretik.",
"The page could not be found on the server." : "Orria ez da zerbitzarian aurkitu.",
"%s email verification" : "%sposta elektronikoaren egiaztapena",
"Email verification" : "Posta elektronikoaren egiaztapena",
"Click the following button to confirm your email." : "Egin klik hurrengo botoian zure posta elektronikoa berresteko.",
"Click the following link to confirm your email." : "Egin klik esteka honetan zure posta elektronikoa berresteko.",
"Confirm your email" : "Berretsi zure posta elektronikoa",
"Other activities" : "Beste jarduerak",
"%1$s and %2$s" : "%1$s eta %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s eta %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s eta %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s eta %5$s",
"Education Edition" : "Hezkuntza edizioa",
"Enterprise bundle" : "Enpresa multzoa",
"Groupware bundle" : "Talderanerako multzoa",
"Hub bundle" : "Hub sorta",
"Social sharing bundle" : "Partekatze sozial multzoa",
"PHP %s or higher is required." : "PHP %s edo berriagoa behar da.",
"PHP with a version lower than %s is required." : "PHPren bertsioa %s baino txikiagoa izan behar da.",
"%sbit or higher PHP required." : "%sbiteko edo PHP bertsio berriagoa behar da. ",
"The following architectures are supported: %s" : "Hurrengo arkitekturak onartzen dira: %s",
"The following databases are supported: %s" : "Hurrengo datu-baseak onartzen dira: %s",
"The command line tool %s could not be found" : "Komando lerroko %s tresna ezin da aurkitu",
"The library %s is not available." : "%s liburutegia ez dago eskuragarri.",
"Library %1$s with a version higher than %2$s is required - available version %3$s." : "%1$sliburutegiaren %2$s bertsioa baino berriagoa behar da - %3$s bertsioa eskuragarri.",
"Library %1$s with a version lower than %2$s is required - available version %3$s." : "%1$s liburutegiaren %2$sbertsioa baino txikiagoa behar da - %3$s bertsioa eskuragarri.",
"The following platforms are supported: %s" : "Hurrengo plataformak onartzen dira: %s",
"Server version %s or higher is required." : "Zerbitzariaren %s bertsioa edo berriagoa behar da.",
"Server version %s or lower is required." : "Zerbitzariaren %s bertsioa edo zaharragoa behar da.",
"Wiping of device %s has started" : "%s gailuaren garbiketa hasi da",
"Wiping of device »%s« has started" : "»%s« gailuaren garbiketa hasi da",
"»%s« started remote wipe" : "»%s«(e)k urruneko garbiketa hasi du",
"Device or application »%s« has started the remote wipe process. You will receive another email once the process has finished" : "»%s« gailuak edo aplikazioak urruneko garbiketa prozesua hasi du. Prozesua amaitutakoan beste mezu elektroniko bat jasoko duzu",
"Wiping of device %s has finished" : "%s gailuaren garbiketa amaitu da",
"Wiping of device »%s« has finished" : "»%s« gailuaren garbiketa amaitu da",
"»%s« finished remote wipe" : "»%s«(e)k urruneko garbiketa amaitu du",
"Device or application »%s« has finished the remote wipe process." : "»%s« gailuak edo aplikazioak urruneko garbiketa prozesua amaitu du.",
"Remote wipe started" : "Urruneko garbiketa hasi da",
"A remote wipe was started on device %s" : "Urruneko garbiketa hasi da %s gailuan",
"Remote wipe finished" : "Urruneko garbiketa bukatu da",
"The remote wipe on %s has finished" : "Urruneko garbiketa amaitu da %s(e)n",
"Authentication" : "Autentifikazioa",
"Unknown filetype" : "Fitxategi mota ezezaguna",
"Invalid image" : "Baliogabeko irudia",
"Avatar image is not square" : "Abatarreko irudia ez da karratua",
"Files" : "Fitxategiak",
"View profile" : "Ikusi profila",
"Local time: %s" : "Ordu lokala: %s",
"today" : "gaur",
"tomorrow" : "bihar",
"yesterday" : "atzo",
"_in %n day_::_in %n days_" : ["egun %nean","%n egunetan"],
"_%n day ago_::_%n days ago_" : ["orain dela egun %n","orain dela %n egun"],
"next month" : "datorren hilabetea",
"last month" : "joan den hilabetean",
"_in %n month_::_in %n months_" : ["hilabete %nean","%n hilabete barru"],
"_%n month ago_::_%n months ago_" : ["orain dela hilabete %n","orain dela %n hilabete"],
"next year" : "datorren urtean",
"last year" : "joan den urtean",
"_in %n year_::_in %n years_" : ["urte %nean","%n urte barru"],
"_%n year ago_::_%n years ago_" : ["orain dela urte %n","orain dela %n urte"],
"_in %n hour_::_in %n hours_" : ["ordu %n barru","%n ordu barru"],
"_%n hour ago_::_%n hours ago_" : ["orain dela ordu %n","orain dela %n ordu"],
"_in %n minute_::_in %n minutes_" : ["minutu %nean","%n minutu barru"],
"_%n minute ago_::_%n minutes ago_" : ["orain dela minutu %n","orain dela %n minutu"],
"in a few seconds" : "segundo gutxitan",
"seconds ago" : "duela segundo batzuk",
"Empty file" : "Fitxategi hutsa",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "%s IDa duen modulua ez da existitzen. Gaitu zure aplikazioen ezarpenetan edo jarri harremanetan administratzailearekin.",
"File already exists" : "Badago izen bereko fitxategi bat",
"Invalid path" : "Bide-izen baliogabea",
"Failed to create file from template" : "Fitxategi berria txantiloitik sortzeak huts egin du",
"Templates" : "Txantiloiak",
"File name is a reserved word" : "Fitxategi izena hitz erreserbatua da",
"File name contains at least one invalid character" : "Fitxategi izenak karaktere baliogabe bat du gutxienez ",
"File name is too long" : "Fitxategi-izena luzeegia da",
"Dot files are not allowed" : "Dot fitxategiak ez dira onartzen",
"Empty filename is not allowed" : "Fitxategiaren izena ezin da hutsa izan",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "«%s» aplikazioa ezin da instalatu appinfo fitxategia ezin delako irakurri.",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "\"%s\" aplikazioa ezin da instalatu ez delako zerbitzariaren bertsio honekin bateragarria.",
"__language_name__" : "Euskara",
"This is an automatically sent email, please do not reply." : "Hau automatikoki bidalitako mezua da, ez erantzun mesedez.",
"Help" : "Laguntza",
"Appearance and accessibility" : "Itxura eta irisgarritasuna",
"Apps" : "Aplikazioak",
"Personal settings" : "Ezarpen pertsonalak",
"Administration settings" : "Administrazio ezarpenak",
"Settings" : "Ezarpenak",
"Log out" : "Amaitu saioa",
"Users" : "Erabiltzaileak",
"Email" : "Posta elektronikoa",
"Mail %s" : "Idatzi %s(r)i",
"Fediverse" : "Fedibertsoa",
"View %s on the fediverse" : "Ikusi %s fedibertsoan",
"Phone" : "Telefonoa",
"Call %s" : "Deitu %s(r)i",
"Twitter" : "Twitter",
"View %s on Twitter" : "Ikusi %s Twitterren",
"Website" : "Webgunea",
"Visit %s" : "Bisitatu %s",
"Address" : "Helbidea",
"Profile picture" : "Profil-irudia",
"About" : "Honi buruz",
"Display name" : "Erakusteko izena",
"Headline" : "Izenburua",
"Organisation" : "Erakundea",
"Role" : "Zeregina",
"Additional settings" : "Ezarpen gehiago",
"Enter the database name for %s" : "Sartu %s(r)en datu-base izena",
"You cannot use dots in the database name %s" : "Ezin duzu punturik erabili %s datu-base izenean",
"You need to enter details of an existing account." : "Existitzen den kontu baten xehetasunak sartu behar dituzu.",
"Oracle connection could not be established" : "Ezin da Oracle konexioa sortu",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "Mac OS X ez da onartzen eta %s gaizki ibiliko da plataforma honetan. Erabiltzekotan, zure ardurapean.",
"For the best results, please consider using a GNU/Linux server instead." : "Emaitza hobeak izateko, mesedez kontsideratu GNU/Linux zerbitzari bat erabiltzea.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Badirudi %s instantzia hau 32 biteko PHP ingurune bat exekutatzen ari dela eta open_basedir aldagaia php.ini fitxategian konfiguratu dela. Honek arazoak sortuko ditu 4 GB baino gehiagoko fitxategiekin eta ez da batere gomendagarria.",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Mesedez kendu open_basedir ezarpena zure php.ini-tik edo aldatu 64-biteko PHPra.",
"Set an admin password." : "Ezarri administraziorako pasahitza.",
"Cannot create or write into the data directory %s" : "Ezin da sortu edo idatzi %s datu-direktorioan ",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "%s partekatze motorrak OCP\\Share_Backend interfazea inplementatu behar du ",
"Sharing backend %s not found" : "Ez da %s partekatze motorra aurkitu",
"Sharing backend for %s not found" : "Ez da %s(e)rako partekatze motorrik aurkitu",
"%1$s shared »%2$s« with you and wants to add:" : "%1$serabiltzaileak »%2$s« partekatu du zurekin eta hau gehitu nahi du:",
"%1$s shared »%2$s« with you and wants to add" : "%1$serabiltzaileak »%2$s« partekatu du zurekin eta hau gehitu nahi du",
"»%s« added a note to a file shared with you" : "»%s« erabiltzaileak ohar bat gehitu du partekatu dizun fitxategi batean",
"Open »%s«" : "Ireki »%s«",
"%1$s via %2$s" : "%2$s bidez, %1$s",
"You are not allowed to share %s" : "Ez duzu %s partekatzeko baimenik",
"Cannot increase permissions of %s" : "Ezin dira %s(r)en baimenak handitu",
"Files cannot be shared with delete permissions" : "Fitxategiak ezin dira ezabatze baimenarekin partekatu",
"Files cannot be shared with create permissions" : "Fitxategiak ezin dira sortze baimenarekin partekatu",
"Expiration date is in the past" : "Iraungitze-data iraganean dago",
"_Cannot set expiration date more than %n day in the future_::_Cannot set expiration date more than %n days in the future_" : ["Ezin da iraungitze-data etorkizunean %n egun baino gehiagora jarri","Ezin da iraungitze-data etorkizunean %n egun baino gehiagora jarri"],
"Sharing is only allowed with group members" : "Taldeko kideekin bakarrik parteka daiteke",
"%1$s shared »%2$s« with you" : "%1$serabiltzaileak »%2$s« partekatu du zurekin",
"%1$s shared »%2$s« with you." : "%1$serabiltzaileak »%2$s« partekatu du zurekin.",
"Click the button below to open it." : "Egin klik beheko botoian hura irekitzeko.",
"The requested share does not exist anymore" : "Eskatutako partekatzea ez da existitzen dagoeneko",
"The requested share comes from a disabled user" : "Eskatutako partekatzea desgaitutako erabiltzaile batengatik dator",
"The user was not created because the user limit has been reached. Check your notifications to learn more." : "Ezin izan da erabiltzailea sortu, erabiltzaile muga gainditu delako. Egiaztatu zure jakinarazpenak gehiago jakiteko.",
"Could not find category \"%s\"" : "Ezin da \"%s\" kategoria aurkitu",
"Sunday" : "Igandea",
"Monday" : "Astelehena",
"Tuesday" : "Asteartea",
"Wednesday" : "Asteazkena",
"Thursday" : "Osteguna",
"Friday" : "Ostirala",
"Saturday" : "Larunbata",
"Sun." : "Ig.",
"Mon." : "Al.",
"Tue." : "Ar.",
"Wed." : "Az.",
"Thu." : "Og.",
"Fri." : "Ol.",
"Sat." : "Lr.",
"Su" : "Ig",
"Mo" : "Al",
"Tu" : "Ar",
"We" : "Az",
"Th" : "Og",
"Fr" : "Ol",
"Sa" : "Lr",
"January" : "Urtarrila",
"February" : "Otsaila",
"March" : "Martxoa",
"April" : "Apirila",
"May" : "Maiatza",
"June" : "Ekaina",
"July" : "Uztaila",
"August" : "Abuztua",
"September" : "Iraila",
"October" : "Urria",
"November" : "Azaroa",
"December" : "Abendua",
"Jan." : "Urt.",
"Feb." : "Ots.",
"Mar." : "Mar.",
"Apr." : "Api.",
"May." : "Mai.",
"Jun." : "Eka.",
"Jul." : "Uzt.",
"Aug." : "Abu.",
"Sep." : "Ira.",
"Oct." : "Urr.",
"Nov." : "Aza.",
"Dec." : "Abe.",
"A valid password must be provided" : "Baliozko pasahitza eman behar da",
"Login canceled by app" : "Aplikazioak saioa bertan behera utzi du",
"App \"%1$s\" cannot be installed because the following dependencies are not fulfilled: %2$s" : "\"%1$s\" aplikazioa ezin da instalatu, menpekotasun hauek betetzen ez direlako:%2$s",
"a safe home for all your data" : "zure datu guztientzako toki segurua",
"File is currently busy, please try again later" : "Fitxategia lanpetuta dago, saiatu berriro geroago",
"Cannot download file" : "Ezin da fitxategia deskargatu",
"Application is not enabled" : "Aplikazioa ez dago gaituta",
"Authentication error" : "Autentifikazio errorea",
"Token expired. Please reload page." : "Tokena iraungitu da. Mesedez birkargatu orria.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "Ez dago datubaseen (sqlite, mysql edo postgresql) driverrik instalatuta.",
"Cannot write into \"config\" directory." : "Ezin da \"config\" karpetan idatzi.",
"This can usually be fixed by giving the web server write access to the config directory. See %s" : "Hau normalean konpondu daiteke web zerbitzariari konfigurazio direktoriorako sarbidea emanez. Ikus %s",
"Or, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it. See %s" : "Bestela, config.php fitxategia irakurtzeko soilik mantendu nahi baduzu, ezarri bertan \"config_is_read_only\" aukerari 'egia' balioa. Ikusi %s",
"Cannot write into \"apps\" directory." : "Ezin da idatzi \"apps\" fitxategian.",
"This can usually be fixed by giving the web server write access to the apps directory or disabling the App Store in the config file." : "Hau normalean konpondu daiteke web zerbitzariari aplikazioen direktorioko sarbidea emanez edo konfigurazioko fitxategian aplikazioen biltegia (App Store) desgaituz.",
"Cannot create \"data\" directory." : "Ezin da \"data\" direktorioa sortu.",
"This can usually be fixed by giving the web server write access to the root directory. See %s" : "Hau normalean konpondu daiteke web zerbitzariari root direktorioko idazketa sarbidea emanez. Ikus %s",
"Permissions can usually be fixed by giving the web server write access to the root directory. See %s." : "Normalean baimenak konpondu daitezke web zerbitzariari root direktorioko sarbidea emanez. Ikus%s.",
"Your data directory is not writable." : "Zure datuen karpeta ez da idazgarria.",
"Setting locale to %s failed." : "Eskualde-ezarpenak %s(e)ra ezartzeak huts egin du",
"Please install one of these locales on your system and restart your web server." : "Mesedez, instalatu eskualde-ezarpen hauetako bat zure sisteman eta berrabiarazi zure web zerbitzaria.",
"PHP module %s not installed." : "PHPren %s modulua ez dago instalaturik.",
"Please ask your server administrator to install the module." : "Mesedez eskatu zure zerbitzariaren administratzaileari modulua instalatzeko.",
"PHP setting \"%s\" is not set to \"%s\"." : "\"%s\" PHP ezarpena ez dago \"%s\" gisa jarrita.",
"Adjusting this setting in php.ini will make Nextcloud run again" : "Ezarpen hau php.ini fitxategian doitzen bada, Nextcloud berriro exekutatuko da",
"<code>mbstring.func_overload</code> is set to <code>%s</code> instead of the expected value <code>0</code>." : "<code>mbstring.func_overload</code><code>%s</code>-en ezarrita dago, espero zen <code>0</code> balioaren ordez.",
"To fix this issue set <code>mbstring.func_overload</code> to <code>0</code> in your php.ini." : "Arazo hau konpontzeko, ezarri<code>mbstring.func_overload</code> <code>0</code>-en zure php.ini fitxategian.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "PHP lerro bakarreko blokeak mozteko konfiguratua dagoela dirudi. Oinarrizko app batzuk eskuraezin bihurtuko dira.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Hau ziur aski cache/accelerator batek eragin du, hala nola Zend OPcache edo eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "PHP moduluak instalatu dira, baina oraindik falta direla jartzen du?",
"Please ask your server administrator to restart the web server." : "Mesedez eskatu zerbitzariaren administratzaileari web zerbitzaria berrabiarazteko.",
"The required %s config variable is not configured in the config.php file." : "Beharrezko %s config aldagaia ez dago konfiguratuta config.php fitxategian.",
"Please ask your server administrator to check the Nextcloud configuration." : "Mesedez, eskatu zure zerbitzari administratzaileari Nextclouden konfigurazioa egiaztatzeko.",
"Your data directory must be an absolute path." : "Zure datuen karpeta bide-izen absolutua izan behar da.",
"Check the value of \"datadirectory\" in your configuration." : "Egiaztatu \"datadirectory\"-ren balioa zure konfigurazioan.",
"Your data directory is invalid." : "Zure datuen karpeta baliogabea da.",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Ziurtatu datu direktorioaren erroan \".ocdata\" izeneko fitxategia dagoela.",
"Action \"%s\" not supported or implemented." : "\"%s\" ekintza ez da onartzen edo ez dago inplementaturik.",
"Authentication failed, wrong token or provider ID given" : "Autentifikazioak huts egin du, token edo hornitzaile ID okerra eman da",
"Parameters missing in order to complete the request. Missing Parameters: \"%s\"" : "Eskaera osatzeko parametroak falta dira. Falta diren parametroak: \"%s\"",
"ID \"%1$s\" already used by cloud federation provider \"%2$s\"" : " \"%1$s\" IDa dagoeneko erabiltzen du \"%2$s\" hodei federazio hornitzaileak",
"Cloud Federation Provider with ID: \"%s\" does not exist." : "Hodei federazio hornitzaile IDa: \"%s\" ez da existitzen.",
"Could not obtain lock type %d on \"%s\"." : "Ezin da lortu %d sarraila mota \"%s\"(e)n.",
"Storage unauthorized. %s" : "Biltegiratzea ez dago baimenduta. %s",
"Storage incomplete configuration. %s" : "Biltegiratzea guztiz konfiguratu gabe dago. %s",
"Storage connection error. %s" : "Biltegiratze-konexioaren errorea. %s",
"Storage is temporarily not available" : "Biltegia ez dago erabilgarri aldi baterako",
"Storage connection timeout. %s" : "Biltegiratze-konexioa denboraz kanpo geratu da. %s",
"Free prompt" : "Gonbita librea",
"Runs an arbitrary prompt through the language model." : "Hizkuntza ereduaren zehar esaldi arbitrario bat exekutatzen du.",
"Generate headline" : "Sortu izenburua",
"Generates a possible headline for a text." : "Testu baten izenburu posiblea sortzen du.",
"Summarize" : "Laburtu",
"Summarizes text by reducing its length without losing key information." : "Testua laburtzen du bere luzera murrizten informazio baliotsua galdu gabe.",
"Extract topics" : "Atera gaiak",
"Extracts topics from a text and outputs them separated by commas." : "Gaiak ateratzen ditu testu batetik eta komaz banatuta erakusten ditu.",
"The files of the app %1$s were not replaced correctly. Make sure it is a version compatible with the server." : "%1$s aplikazioaren fitxategiak ez dira behar bezala ordezkatu. Ziurtatu zerbitzariarekin bateragarria den bertsioa dela.",
"404" : "404",
"Logged in user must be an admin, a sub admin or gotten special right to access this setting" : "Saioa hasitako erabiltzailea administratzailea, azpi-administratzailea edo baimen berezi bat duena izan behar da ezarpen hau aldatzeko.",
"Logged in user must be an admin or sub admin" : "Saioa hasitako erabiltzailea administratzaile edo azpi-administratzailea izan behar du",
"Logged in user must be an admin" : "Saioa hasitako erabiltzailea administratzailea izan behar da",
"Full name" : "Izen osoa",
"Unknown user" : "Erabiltzaile ezezaguna",
"Enter the database username and name for %s" : "%s sartu datu-basearen izena eta erabiltzaile-izena",
"Enter the database username for %s" : "Sartu %s(r)en datu-base erabiltzaile-izena",
"MySQL username and/or password not valid" : "MySQL erabiltzaile-izen edota pasahitza baliogabea",
"Oracle username and/or password not valid" : "Oracle erabiltzaile edo/eta pasahitza ez dira baliozkoak.",
"PostgreSQL username and/or password not valid" : "PostgreSQL erabiltzailea edo/eta pasahitza ez dira baliozkoak.",
"Set an admin username." : "Ezarri administraziorako erabiltzaile izena.",
"Sharing %s failed, because this item is already shared with user %s" : "%s partekatzeak huts egin du dagoeneko %serabiltzailearekin partekatuta dagoelako",
"The username is already being used" : "Erabiltzaile izena dagoeneko erabilita dago",
"Could not create user" : "Ezin izan da erabiltzailea sortu",
"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", spaces and \"_.@-'\"" : "Honako karaktereak bakarrik onartzen dira erabiltzaile izenetan: \"a-z\", \"A-Z\", \"0-9\", zuriuneak eta \"_.@-'\"",
"A valid username must be provided" : "Baliozko erabiltzaile izena eman behar da",
"Username contains whitespace at the beginning or at the end" : "Erabiltzaile-izenak zuriuneren bat du hasieran edo amaieran",
"Username must not consist of dots only" : "Erabiltzaile-izena ezin da puntuz osatuta soilik egon",
"Username is invalid because files already exist for this user" : "Erabiltzaile-izena ez da baliozkoa erabiltzaile honentzako fitxategiak dagoeneko existitzen direlako",
"User disabled" : "Erabiltzaile desgaituta",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "libxml2 2.7.0 bertsioa edo berriagoa behar da. Orain %s dago instalatuta.",
"To fix this issue update your libxml2 version and restart your web server." : "Arazo hori konpontzeko, eguneratu zure libxml2 bertsioa eta berrabiarazi web zerbitzaria.",
"PostgreSQL >= 9 required." : "PostgreSQL >= 9 behar da",
"Please upgrade your database version." : "Mesedez eguneratu zure datu-basearen bertsioa.",
"Your data directory is readable by other users." : "Zure datuen karpeta beste erabiltzaileek irakur dezakete.",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Aldatu baimenak 0770ra beste erabiltzaileek karpetan sartu ezin izateko."
},
"nplurals=2; plural=(n != 1);");
+278
View File
@@ -0,0 +1,278 @@
{ "translations": {
"Cannot write into \"config\" directory!" : "Ezin da idatzi \"config\" karpetan!",
"This can usually be fixed by giving the web server write access to the config directory." : "Hau normalean konpon daiteke web zerbitzariari konfigurazio direktoriorako idazteko sarbidea emanez.",
"But, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it." : "Bestela, config.php fitxategia irakurtzeko soilik mantendu nahi baduzu, ezarri bertan \"config_is_read_only\" aukerari 'egia' balioa.",
"See %s" : "Ikusi %s",
"Application %1$s is not present or has a non-compatible version with this server. Please check the apps directory." : "%1$s aplikazioa ez dago edo zerbitzari honekiko bertsio bateraezina du. Mesedez egiaztatu aplikazioen karpeta.",
"Sample configuration detected" : "Adibide-ezarpena detektatua",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Adibide-ezarpena kopiatu dela detektatu da. Honek zure instalazioa apur dezake eta ez da onartzen. Irakurri dokumentazioa config.php fitxategia aldatu aurretik.",
"The page could not be found on the server." : "Orria ez da zerbitzarian aurkitu.",
"%s email verification" : "%sposta elektronikoaren egiaztapena",
"Email verification" : "Posta elektronikoaren egiaztapena",
"Click the following button to confirm your email." : "Egin klik hurrengo botoian zure posta elektronikoa berresteko.",
"Click the following link to confirm your email." : "Egin klik esteka honetan zure posta elektronikoa berresteko.",
"Confirm your email" : "Berretsi zure posta elektronikoa",
"Other activities" : "Beste jarduerak",
"%1$s and %2$s" : "%1$s eta %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s eta %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s eta %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s eta %5$s",
"Education Edition" : "Hezkuntza edizioa",
"Enterprise bundle" : "Enpresa multzoa",
"Groupware bundle" : "Talderanerako multzoa",
"Hub bundle" : "Hub sorta",
"Social sharing bundle" : "Partekatze sozial multzoa",
"PHP %s or higher is required." : "PHP %s edo berriagoa behar da.",
"PHP with a version lower than %s is required." : "PHPren bertsioa %s baino txikiagoa izan behar da.",
"%sbit or higher PHP required." : "%sbiteko edo PHP bertsio berriagoa behar da. ",
"The following architectures are supported: %s" : "Hurrengo arkitekturak onartzen dira: %s",
"The following databases are supported: %s" : "Hurrengo datu-baseak onartzen dira: %s",
"The command line tool %s could not be found" : "Komando lerroko %s tresna ezin da aurkitu",
"The library %s is not available." : "%s liburutegia ez dago eskuragarri.",
"Library %1$s with a version higher than %2$s is required - available version %3$s." : "%1$sliburutegiaren %2$s bertsioa baino berriagoa behar da - %3$s bertsioa eskuragarri.",
"Library %1$s with a version lower than %2$s is required - available version %3$s." : "%1$s liburutegiaren %2$sbertsioa baino txikiagoa behar da - %3$s bertsioa eskuragarri.",
"The following platforms are supported: %s" : "Hurrengo plataformak onartzen dira: %s",
"Server version %s or higher is required." : "Zerbitzariaren %s bertsioa edo berriagoa behar da.",
"Server version %s or lower is required." : "Zerbitzariaren %s bertsioa edo zaharragoa behar da.",
"Wiping of device %s has started" : "%s gailuaren garbiketa hasi da",
"Wiping of device »%s« has started" : "»%s« gailuaren garbiketa hasi da",
"»%s« started remote wipe" : "»%s«(e)k urruneko garbiketa hasi du",
"Device or application »%s« has started the remote wipe process. You will receive another email once the process has finished" : "»%s« gailuak edo aplikazioak urruneko garbiketa prozesua hasi du. Prozesua amaitutakoan beste mezu elektroniko bat jasoko duzu",
"Wiping of device %s has finished" : "%s gailuaren garbiketa amaitu da",
"Wiping of device »%s« has finished" : "»%s« gailuaren garbiketa amaitu da",
"»%s« finished remote wipe" : "»%s«(e)k urruneko garbiketa amaitu du",
"Device or application »%s« has finished the remote wipe process." : "»%s« gailuak edo aplikazioak urruneko garbiketa prozesua amaitu du.",
"Remote wipe started" : "Urruneko garbiketa hasi da",
"A remote wipe was started on device %s" : "Urruneko garbiketa hasi da %s gailuan",
"Remote wipe finished" : "Urruneko garbiketa bukatu da",
"The remote wipe on %s has finished" : "Urruneko garbiketa amaitu da %s(e)n",
"Authentication" : "Autentifikazioa",
"Unknown filetype" : "Fitxategi mota ezezaguna",
"Invalid image" : "Baliogabeko irudia",
"Avatar image is not square" : "Abatarreko irudia ez da karratua",
"Files" : "Fitxategiak",
"View profile" : "Ikusi profila",
"Local time: %s" : "Ordu lokala: %s",
"today" : "gaur",
"tomorrow" : "bihar",
"yesterday" : "atzo",
"_in %n day_::_in %n days_" : ["egun %nean","%n egunetan"],
"_%n day ago_::_%n days ago_" : ["orain dela egun %n","orain dela %n egun"],
"next month" : "datorren hilabetea",
"last month" : "joan den hilabetean",
"_in %n month_::_in %n months_" : ["hilabete %nean","%n hilabete barru"],
"_%n month ago_::_%n months ago_" : ["orain dela hilabete %n","orain dela %n hilabete"],
"next year" : "datorren urtean",
"last year" : "joan den urtean",
"_in %n year_::_in %n years_" : ["urte %nean","%n urte barru"],
"_%n year ago_::_%n years ago_" : ["orain dela urte %n","orain dela %n urte"],
"_in %n hour_::_in %n hours_" : ["ordu %n barru","%n ordu barru"],
"_%n hour ago_::_%n hours ago_" : ["orain dela ordu %n","orain dela %n ordu"],
"_in %n minute_::_in %n minutes_" : ["minutu %nean","%n minutu barru"],
"_%n minute ago_::_%n minutes ago_" : ["orain dela minutu %n","orain dela %n minutu"],
"in a few seconds" : "segundo gutxitan",
"seconds ago" : "duela segundo batzuk",
"Empty file" : "Fitxategi hutsa",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "%s IDa duen modulua ez da existitzen. Gaitu zure aplikazioen ezarpenetan edo jarri harremanetan administratzailearekin.",
"File already exists" : "Badago izen bereko fitxategi bat",
"Invalid path" : "Bide-izen baliogabea",
"Failed to create file from template" : "Fitxategi berria txantiloitik sortzeak huts egin du",
"Templates" : "Txantiloiak",
"File name is a reserved word" : "Fitxategi izena hitz erreserbatua da",
"File name contains at least one invalid character" : "Fitxategi izenak karaktere baliogabe bat du gutxienez ",
"File name is too long" : "Fitxategi-izena luzeegia da",
"Dot files are not allowed" : "Dot fitxategiak ez dira onartzen",
"Empty filename is not allowed" : "Fitxategiaren izena ezin da hutsa izan",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "«%s» aplikazioa ezin da instalatu appinfo fitxategia ezin delako irakurri.",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "\"%s\" aplikazioa ezin da instalatu ez delako zerbitzariaren bertsio honekin bateragarria.",
"__language_name__" : "Euskara",
"This is an automatically sent email, please do not reply." : "Hau automatikoki bidalitako mezua da, ez erantzun mesedez.",
"Help" : "Laguntza",
"Appearance and accessibility" : "Itxura eta irisgarritasuna",
"Apps" : "Aplikazioak",
"Personal settings" : "Ezarpen pertsonalak",
"Administration settings" : "Administrazio ezarpenak",
"Settings" : "Ezarpenak",
"Log out" : "Amaitu saioa",
"Users" : "Erabiltzaileak",
"Email" : "Posta elektronikoa",
"Mail %s" : "Idatzi %s(r)i",
"Fediverse" : "Fedibertsoa",
"View %s on the fediverse" : "Ikusi %s fedibertsoan",
"Phone" : "Telefonoa",
"Call %s" : "Deitu %s(r)i",
"Twitter" : "Twitter",
"View %s on Twitter" : "Ikusi %s Twitterren",
"Website" : "Webgunea",
"Visit %s" : "Bisitatu %s",
"Address" : "Helbidea",
"Profile picture" : "Profil-irudia",
"About" : "Honi buruz",
"Display name" : "Erakusteko izena",
"Headline" : "Izenburua",
"Organisation" : "Erakundea",
"Role" : "Zeregina",
"Additional settings" : "Ezarpen gehiago",
"Enter the database name for %s" : "Sartu %s(r)en datu-base izena",
"You cannot use dots in the database name %s" : "Ezin duzu punturik erabili %s datu-base izenean",
"You need to enter details of an existing account." : "Existitzen den kontu baten xehetasunak sartu behar dituzu.",
"Oracle connection could not be established" : "Ezin da Oracle konexioa sortu",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "Mac OS X ez da onartzen eta %s gaizki ibiliko da plataforma honetan. Erabiltzekotan, zure ardurapean.",
"For the best results, please consider using a GNU/Linux server instead." : "Emaitza hobeak izateko, mesedez kontsideratu GNU/Linux zerbitzari bat erabiltzea.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Badirudi %s instantzia hau 32 biteko PHP ingurune bat exekutatzen ari dela eta open_basedir aldagaia php.ini fitxategian konfiguratu dela. Honek arazoak sortuko ditu 4 GB baino gehiagoko fitxategiekin eta ez da batere gomendagarria.",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Mesedez kendu open_basedir ezarpena zure php.ini-tik edo aldatu 64-biteko PHPra.",
"Set an admin password." : "Ezarri administraziorako pasahitza.",
"Cannot create or write into the data directory %s" : "Ezin da sortu edo idatzi %s datu-direktorioan ",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "%s partekatze motorrak OCP\\Share_Backend interfazea inplementatu behar du ",
"Sharing backend %s not found" : "Ez da %s partekatze motorra aurkitu",
"Sharing backend for %s not found" : "Ez da %s(e)rako partekatze motorrik aurkitu",
"%1$s shared »%2$s« with you and wants to add:" : "%1$serabiltzaileak »%2$s« partekatu du zurekin eta hau gehitu nahi du:",
"%1$s shared »%2$s« with you and wants to add" : "%1$serabiltzaileak »%2$s« partekatu du zurekin eta hau gehitu nahi du",
"»%s« added a note to a file shared with you" : "»%s« erabiltzaileak ohar bat gehitu du partekatu dizun fitxategi batean",
"Open »%s«" : "Ireki »%s«",
"%1$s via %2$s" : "%2$s bidez, %1$s",
"You are not allowed to share %s" : "Ez duzu %s partekatzeko baimenik",
"Cannot increase permissions of %s" : "Ezin dira %s(r)en baimenak handitu",
"Files cannot be shared with delete permissions" : "Fitxategiak ezin dira ezabatze baimenarekin partekatu",
"Files cannot be shared with create permissions" : "Fitxategiak ezin dira sortze baimenarekin partekatu",
"Expiration date is in the past" : "Iraungitze-data iraganean dago",
"_Cannot set expiration date more than %n day in the future_::_Cannot set expiration date more than %n days in the future_" : ["Ezin da iraungitze-data etorkizunean %n egun baino gehiagora jarri","Ezin da iraungitze-data etorkizunean %n egun baino gehiagora jarri"],
"Sharing is only allowed with group members" : "Taldeko kideekin bakarrik parteka daiteke",
"%1$s shared »%2$s« with you" : "%1$serabiltzaileak »%2$s« partekatu du zurekin",
"%1$s shared »%2$s« with you." : "%1$serabiltzaileak »%2$s« partekatu du zurekin.",
"Click the button below to open it." : "Egin klik beheko botoian hura irekitzeko.",
"The requested share does not exist anymore" : "Eskatutako partekatzea ez da existitzen dagoeneko",
"The requested share comes from a disabled user" : "Eskatutako partekatzea desgaitutako erabiltzaile batengatik dator",
"The user was not created because the user limit has been reached. Check your notifications to learn more." : "Ezin izan da erabiltzailea sortu, erabiltzaile muga gainditu delako. Egiaztatu zure jakinarazpenak gehiago jakiteko.",
"Could not find category \"%s\"" : "Ezin da \"%s\" kategoria aurkitu",
"Sunday" : "Igandea",
"Monday" : "Astelehena",
"Tuesday" : "Asteartea",
"Wednesday" : "Asteazkena",
"Thursday" : "Osteguna",
"Friday" : "Ostirala",
"Saturday" : "Larunbata",
"Sun." : "Ig.",
"Mon." : "Al.",
"Tue." : "Ar.",
"Wed." : "Az.",
"Thu." : "Og.",
"Fri." : "Ol.",
"Sat." : "Lr.",
"Su" : "Ig",
"Mo" : "Al",
"Tu" : "Ar",
"We" : "Az",
"Th" : "Og",
"Fr" : "Ol",
"Sa" : "Lr",
"January" : "Urtarrila",
"February" : "Otsaila",
"March" : "Martxoa",
"April" : "Apirila",
"May" : "Maiatza",
"June" : "Ekaina",
"July" : "Uztaila",
"August" : "Abuztua",
"September" : "Iraila",
"October" : "Urria",
"November" : "Azaroa",
"December" : "Abendua",
"Jan." : "Urt.",
"Feb." : "Ots.",
"Mar." : "Mar.",
"Apr." : "Api.",
"May." : "Mai.",
"Jun." : "Eka.",
"Jul." : "Uzt.",
"Aug." : "Abu.",
"Sep." : "Ira.",
"Oct." : "Urr.",
"Nov." : "Aza.",
"Dec." : "Abe.",
"A valid password must be provided" : "Baliozko pasahitza eman behar da",
"Login canceled by app" : "Aplikazioak saioa bertan behera utzi du",
"App \"%1$s\" cannot be installed because the following dependencies are not fulfilled: %2$s" : "\"%1$s\" aplikazioa ezin da instalatu, menpekotasun hauek betetzen ez direlako:%2$s",
"a safe home for all your data" : "zure datu guztientzako toki segurua",
"File is currently busy, please try again later" : "Fitxategia lanpetuta dago, saiatu berriro geroago",
"Cannot download file" : "Ezin da fitxategia deskargatu",
"Application is not enabled" : "Aplikazioa ez dago gaituta",
"Authentication error" : "Autentifikazio errorea",
"Token expired. Please reload page." : "Tokena iraungitu da. Mesedez birkargatu orria.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "Ez dago datubaseen (sqlite, mysql edo postgresql) driverrik instalatuta.",
"Cannot write into \"config\" directory." : "Ezin da \"config\" karpetan idatzi.",
"This can usually be fixed by giving the web server write access to the config directory. See %s" : "Hau normalean konpondu daiteke web zerbitzariari konfigurazio direktoriorako sarbidea emanez. Ikus %s",
"Or, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it. See %s" : "Bestela, config.php fitxategia irakurtzeko soilik mantendu nahi baduzu, ezarri bertan \"config_is_read_only\" aukerari 'egia' balioa. Ikusi %s",
"Cannot write into \"apps\" directory." : "Ezin da idatzi \"apps\" fitxategian.",
"This can usually be fixed by giving the web server write access to the apps directory or disabling the App Store in the config file." : "Hau normalean konpondu daiteke web zerbitzariari aplikazioen direktorioko sarbidea emanez edo konfigurazioko fitxategian aplikazioen biltegia (App Store) desgaituz.",
"Cannot create \"data\" directory." : "Ezin da \"data\" direktorioa sortu.",
"This can usually be fixed by giving the web server write access to the root directory. See %s" : "Hau normalean konpondu daiteke web zerbitzariari root direktorioko idazketa sarbidea emanez. Ikus %s",
"Permissions can usually be fixed by giving the web server write access to the root directory. See %s." : "Normalean baimenak konpondu daitezke web zerbitzariari root direktorioko sarbidea emanez. Ikus%s.",
"Your data directory is not writable." : "Zure datuen karpeta ez da idazgarria.",
"Setting locale to %s failed." : "Eskualde-ezarpenak %s(e)ra ezartzeak huts egin du",
"Please install one of these locales on your system and restart your web server." : "Mesedez, instalatu eskualde-ezarpen hauetako bat zure sisteman eta berrabiarazi zure web zerbitzaria.",
"PHP module %s not installed." : "PHPren %s modulua ez dago instalaturik.",
"Please ask your server administrator to install the module." : "Mesedez eskatu zure zerbitzariaren administratzaileari modulua instalatzeko.",
"PHP setting \"%s\" is not set to \"%s\"." : "\"%s\" PHP ezarpena ez dago \"%s\" gisa jarrita.",
"Adjusting this setting in php.ini will make Nextcloud run again" : "Ezarpen hau php.ini fitxategian doitzen bada, Nextcloud berriro exekutatuko da",
"<code>mbstring.func_overload</code> is set to <code>%s</code> instead of the expected value <code>0</code>." : "<code>mbstring.func_overload</code><code>%s</code>-en ezarrita dago, espero zen <code>0</code> balioaren ordez.",
"To fix this issue set <code>mbstring.func_overload</code> to <code>0</code> in your php.ini." : "Arazo hau konpontzeko, ezarri<code>mbstring.func_overload</code> <code>0</code>-en zure php.ini fitxategian.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "PHP lerro bakarreko blokeak mozteko konfiguratua dagoela dirudi. Oinarrizko app batzuk eskuraezin bihurtuko dira.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Hau ziur aski cache/accelerator batek eragin du, hala nola Zend OPcache edo eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "PHP moduluak instalatu dira, baina oraindik falta direla jartzen du?",
"Please ask your server administrator to restart the web server." : "Mesedez eskatu zerbitzariaren administratzaileari web zerbitzaria berrabiarazteko.",
"The required %s config variable is not configured in the config.php file." : "Beharrezko %s config aldagaia ez dago konfiguratuta config.php fitxategian.",
"Please ask your server administrator to check the Nextcloud configuration." : "Mesedez, eskatu zure zerbitzari administratzaileari Nextclouden konfigurazioa egiaztatzeko.",
"Your data directory must be an absolute path." : "Zure datuen karpeta bide-izen absolutua izan behar da.",
"Check the value of \"datadirectory\" in your configuration." : "Egiaztatu \"datadirectory\"-ren balioa zure konfigurazioan.",
"Your data directory is invalid." : "Zure datuen karpeta baliogabea da.",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Ziurtatu datu direktorioaren erroan \".ocdata\" izeneko fitxategia dagoela.",
"Action \"%s\" not supported or implemented." : "\"%s\" ekintza ez da onartzen edo ez dago inplementaturik.",
"Authentication failed, wrong token or provider ID given" : "Autentifikazioak huts egin du, token edo hornitzaile ID okerra eman da",
"Parameters missing in order to complete the request. Missing Parameters: \"%s\"" : "Eskaera osatzeko parametroak falta dira. Falta diren parametroak: \"%s\"",
"ID \"%1$s\" already used by cloud federation provider \"%2$s\"" : " \"%1$s\" IDa dagoeneko erabiltzen du \"%2$s\" hodei federazio hornitzaileak",
"Cloud Federation Provider with ID: \"%s\" does not exist." : "Hodei federazio hornitzaile IDa: \"%s\" ez da existitzen.",
"Could not obtain lock type %d on \"%s\"." : "Ezin da lortu %d sarraila mota \"%s\"(e)n.",
"Storage unauthorized. %s" : "Biltegiratzea ez dago baimenduta. %s",
"Storage incomplete configuration. %s" : "Biltegiratzea guztiz konfiguratu gabe dago. %s",
"Storage connection error. %s" : "Biltegiratze-konexioaren errorea. %s",
"Storage is temporarily not available" : "Biltegia ez dago erabilgarri aldi baterako",
"Storage connection timeout. %s" : "Biltegiratze-konexioa denboraz kanpo geratu da. %s",
"Free prompt" : "Gonbita librea",
"Runs an arbitrary prompt through the language model." : "Hizkuntza ereduaren zehar esaldi arbitrario bat exekutatzen du.",
"Generate headline" : "Sortu izenburua",
"Generates a possible headline for a text." : "Testu baten izenburu posiblea sortzen du.",
"Summarize" : "Laburtu",
"Summarizes text by reducing its length without losing key information." : "Testua laburtzen du bere luzera murrizten informazio baliotsua galdu gabe.",
"Extract topics" : "Atera gaiak",
"Extracts topics from a text and outputs them separated by commas." : "Gaiak ateratzen ditu testu batetik eta komaz banatuta erakusten ditu.",
"The files of the app %1$s were not replaced correctly. Make sure it is a version compatible with the server." : "%1$s aplikazioaren fitxategiak ez dira behar bezala ordezkatu. Ziurtatu zerbitzariarekin bateragarria den bertsioa dela.",
"404" : "404",
"Logged in user must be an admin, a sub admin or gotten special right to access this setting" : "Saioa hasitako erabiltzailea administratzailea, azpi-administratzailea edo baimen berezi bat duena izan behar da ezarpen hau aldatzeko.",
"Logged in user must be an admin or sub admin" : "Saioa hasitako erabiltzailea administratzaile edo azpi-administratzailea izan behar du",
"Logged in user must be an admin" : "Saioa hasitako erabiltzailea administratzailea izan behar da",
"Full name" : "Izen osoa",
"Unknown user" : "Erabiltzaile ezezaguna",
"Enter the database username and name for %s" : "%s sartu datu-basearen izena eta erabiltzaile-izena",
"Enter the database username for %s" : "Sartu %s(r)en datu-base erabiltzaile-izena",
"MySQL username and/or password not valid" : "MySQL erabiltzaile-izen edota pasahitza baliogabea",
"Oracle username and/or password not valid" : "Oracle erabiltzaile edo/eta pasahitza ez dira baliozkoak.",
"PostgreSQL username and/or password not valid" : "PostgreSQL erabiltzailea edo/eta pasahitza ez dira baliozkoak.",
"Set an admin username." : "Ezarri administraziorako erabiltzaile izena.",
"Sharing %s failed, because this item is already shared with user %s" : "%s partekatzeak huts egin du dagoeneko %serabiltzailearekin partekatuta dagoelako",
"The username is already being used" : "Erabiltzaile izena dagoeneko erabilita dago",
"Could not create user" : "Ezin izan da erabiltzailea sortu",
"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", spaces and \"_.@-'\"" : "Honako karaktereak bakarrik onartzen dira erabiltzaile izenetan: \"a-z\", \"A-Z\", \"0-9\", zuriuneak eta \"_.@-'\"",
"A valid username must be provided" : "Baliozko erabiltzaile izena eman behar da",
"Username contains whitespace at the beginning or at the end" : "Erabiltzaile-izenak zuriuneren bat du hasieran edo amaieran",
"Username must not consist of dots only" : "Erabiltzaile-izena ezin da puntuz osatuta soilik egon",
"Username is invalid because files already exist for this user" : "Erabiltzaile-izena ez da baliozkoa erabiltzaile honentzako fitxategiak dagoeneko existitzen direlako",
"User disabled" : "Erabiltzaile desgaituta",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "libxml2 2.7.0 bertsioa edo berriagoa behar da. Orain %s dago instalatuta.",
"To fix this issue update your libxml2 version and restart your web server." : "Arazo hori konpontzeko, eguneratu zure libxml2 bertsioa eta berrabiarazi web zerbitzaria.",
"PostgreSQL >= 9 required." : "PostgreSQL >= 9 behar da",
"Please upgrade your database version." : "Mesedez eguneratu zure datu-basearen bertsioa.",
"Your data directory is readable by other users." : "Zure datuen karpeta beste erabiltzaileek irakur dezakete.",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Aldatu baimenak 0770ra beste erabiltzaileek karpetan sartu ezin izateko."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}
+279
View File
@@ -0,0 +1,279 @@
OC.L10N.register(
"lib",
{
"Cannot write into \"config\" directory!" : "نمیتوانید داخل دایرکتوری \"config\" تغییراتی ایجاد کنید",
"This can usually be fixed by giving the web server write access to the config directory." : "This can usually be fixed by giving the web server write access to the config directory.",
"But, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it." : "But, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it.",
"See %s" : "مشاهده %s",
"Application %1$s is not present or has a non-compatible version with this server. Please check the apps directory." : "Application %1$s is not present or has a non-compatible version with this server. Please check the apps directory.",
"Sample configuration detected" : "فایل پیکربندی نمونه پیدا شد",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "تشخیص داده شده است که پیکربندی نمونه کپی شده است. این می تواند نصب شما را خراب کند و پشتیبانی نمی شود. لطفاً قبل از انجام تغییرات در config.php ، اسناد را بخوانید",
"The page could not be found on the server." : "The page could not be found on the server.",
"%s email verification" : "%s email verification",
"Email verification" : "Email verification",
"Click the following button to confirm your email." : "Click the following button to confirm your email.",
"Click the following link to confirm your email." : "Click the following link to confirm your email.",
"Confirm your email" : "Confirm your email",
"Other activities" : "Other activities",
"%1$s and %2$s" : "%1$sو%2$s",
"%1$s, %2$s and %3$s" : "%1$s،%2$sو%3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s،%2$s،%3$sو%4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s،%2$s،%3$s،%4$sو%5$s",
"Education Edition" : "نگارش آموزشی",
"Enterprise bundle" : "بستهٔ سازمانی",
"Groupware bundle" : "بستهٔ کار گروهی",
"Hub bundle" : "بستهٔ هسته‌ای",
"Social sharing bundle" : "بستهٔ هم‌رسانی اجتماعی",
"PHP %s or higher is required." : "PHP نسخه‌ی %s یا بالاتر نیاز است.",
"PHP with a version lower than %s is required." : "نیاز به نگارش پایین‌تر از %s پی‌اچ‌پی.",
"%sbit or higher PHP required." : "نیاز به پی‌اچ‌پی %sبیتی یا بالاتر.",
"The following architectures are supported: %s" : "معماری‌های زیر پشتیبانی می‌شوند: %s",
"The following databases are supported: %s" : "پایگاه داده‌های زیر پشتیبانی می‌شوند: %s",
"The command line tool %s could not be found" : "ابزار کامندلاین %s پیدا نشد",
"The library %s is not available." : "کتابخانه‌ی %s در دسترس نیست.",
"Library %1$s with a version higher than %2$s is required - available version %3$s." : "کتاب‌خانهٔ %1$s با نگارشی بالاتر از %2$s مورد نیاز است - نگارش موجود %3$s.",
"Library %1$s with a version lower than %2$s is required - available version %3$s." : "کتاب‌خانهٔ %1$s با نگارشی پایین‌تر از %2$s مورد نیاز است - نگارش موجود %3$s.",
"The following platforms are supported: %s" : "بن‌سازه‌های زیر پشتیبانی می‌شوند: %s",
"Server version %s or higher is required." : "نیاز به کارساز با نگارش %s یا بالاتر.",
"Server version %s or lower is required." : "نیاز به کارساز با نگارش %s یا پایین‌تر.",
"Wiping of device %s has started" : "پاک کردن دستگاه%s شروع شده است",
"Wiping of device »%s« has started" : "پاک کردن دستگاه%s شروع شده است",
"»%s« started remote wipe" : "%sپاک کردن از راه دور",
"Device or application »%s« has started the remote wipe process. You will receive another email once the process has finished" : "دستگاه یا برنامه%s فرآیند پاک کردن از راه دور را آغاز کرده است. پس از اتمام مراحل ، ایمیل دیگری دریافت خواهید کرد",
"Wiping of device %s has finished" : "پاک کردن دستگاه %sبه پایان رسیده است",
"Wiping of device »%s« has finished" : "پاک کردن دستگاه %sبه پایان رسیده است",
"»%s« finished remote wipe" : "%sپاک کردن از راه دور",
"Device or application »%s« has finished the remote wipe process." : "دستگاه یا برنامه %sفرآیند پاک کردن از راه دور را به پایان رسانده است.",
"Remote wipe started" : "پاک کردن از راه دور شروع شد",
"A remote wipe was started on device %s" : "پاک کردن از راه دور روی دستگاه شروع شد%s",
"Remote wipe finished" : "پاک کردن از راه دور به پایان رسید",
"The remote wipe on %s has finished" : "پاک کردن از راه دور روی%s کار تمام شد",
"Authentication" : "احراز هویت",
"Unknown filetype" : "نوع فایل ناشناخته",
"Invalid image" : "عکس نامعتبر",
"Avatar image is not square" : "تصویر آواتار مربع نیست",
"Files" : "پوشه‌ها",
"View profile" : "مشاهدهٔ نمایه",
"Local time: %s" : "Local time: %s",
"today" : "امروز",
"tomorrow" : "فردا",
"yesterday" : "دیروز",
"_in %n day_::_in %n days_" : ["در ۱ روز","در %n روز"],
"_%n day ago_::_%n days ago_" : ["%n روز پیش","%n روز پیش"],
"next month" : "ماه آینده",
"last month" : "ماه قبل",
"_in %n month_::_in %n months_" : ["در ۱ ماه","در %n ماه"],
"_%n month ago_::_%n months ago_" : ["%n ماه قبل","%n ماه قبل"],
"next year" : "سال آینده",
"last year" : "سال قبل",
"_in %n year_::_in %n years_" : ["در ۱ سال","در %nسال"],
"_%n year ago_::_%n years ago_" : ["%n سال پیش","%n سال پیش"],
"_in %n hour_::_in %n hours_" : ["در ۱ ساعت","در %n ساعت"],
"_%n hour ago_::_%n hours ago_" : ["%n ساعت قبل","%n ساعت قبل"],
"_in %n minute_::_in %n minutes_" : ["در ۱ دقیقه","در %n دقیقه"],
"_%n minute ago_::_%n minutes ago_" : ["%n دقیقه قبل","%n دقیقه قبل"],
"in a few seconds" : "در چند ثانیه",
"seconds ago" : "ثانیه‌ها پیش",
"Empty file" : "پروندهٔ خالی",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "ماژول با شناسه:%s وجود ندارد. لطفاً آن را در تنظیمات برنامه خود فعال کنید یا با سرپرست خود تماس بگیرید",
"File already exists" : "پرونده از پیش موجود است",
"Invalid path" : "مسیر نامعتبر",
"Failed to create file from template" : "شکست در ایجاد پرونده از قالب",
"Templates" : "قالب‌ها",
"File name is a reserved word" : "این نام فایل جزو کلمات رزرو می‌باشد",
"File name contains at least one invalid character" : "نام فایل دارای حداقل یک کاراکتر نامعتبر است",
"File name is too long" : "نام فایل خیلی بزرگ است",
"Dot files are not allowed" : "پرونده‌های نقطه‌دار مجاز نیستند",
"Empty filename is not allowed" : "نام فایل نمی‌تواند خالی باشد",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "کارهٔ «%s» به دلیل ناتوانی در خواندن پروندهٔ appinfo نمی‌تواند نصب شود.",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "کارهٔ «%s» به دلیل سازگار نبودن با این نگارش از کارساز نمی‌تواند نصب شود.",
"__language_name__" : "فارسى",
"This is an automatically sent email, please do not reply." : "این یک رایانامهٔ خودکار است. لطفاً پاسخ ندهید.",
"Help" : "راه‌نما",
"Appearance and accessibility" : "ظاهر و دسترسی‌پذیری",
"Apps" : " برنامه ها",
"Personal settings" : "تنظیمات شخصی",
"Administration settings" : "تنظمیات مدیریتی",
"Settings" : "تنظیمات",
"Log out" : "خروج",
"Users" : "کاربران",
"Email" : "رایانامه",
"Mail %s" : "نامه به %s",
"Fediverse" : "Fediverse",
"View %s on the fediverse" : "View %s on the fediverse",
"Phone" : "تلفن",
"Call %s" : "تماس با %s",
"Twitter" : "توییتر",
"View %s on Twitter" : "دیدن %s روی توییتر",
"Website" : "پایگاه وب",
"Visit %s" : "سر زدن به %s",
"Address" : "نشانی",
"Profile picture" : "تصویر نمایه",
"About" : "درباره",
"Display name" : "Display name",
"Headline" : "عنوان",
"Organisation" : "سازمان",
"Role" : "نقش",
"Additional settings" : "تنظیمات اضافی",
"Enter the database name for %s" : "ورود نام پایگاه داده برای %s",
"You cannot use dots in the database name %s" : "نمی‌توانید در در نام پایگاه دادهٔ %s از نقطه استفاده کنید",
"You need to enter details of an existing account." : "لازم است جزییات یک حساب موحود را وارد کنید.",
"Oracle connection could not be established" : "ارتباط اراکل نمیتواند برقرار باشد.",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "مک‌اواس ۱۰ پشتیبانی نشده و %s روی این بن‌سازه درست کار نخواهد کرد. با مسئولیت خودتان استفاده کنید!",
"For the best results, please consider using a GNU/Linux server instead." : "برای بهترین نتیجه، استفاده از یک کارساز گنو/لینوکسی را در نظر داشته باشید.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "به نظر می رسد%s که این نمونه در یک محیط PHP 32 بیتی در حال اجرا است و open_baseir در php.ini پیکربندی شده است. این مسئله به پرونده هایی با بیش از 4 گیگ منجر می شود و بسیار دلسرد می شود",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "لطفاً تنظیمات open_baseir را درون php.ini خود حذف کنید یا به PHP 64 بیتی تغییر دهید.",
"Set an admin password." : "یک رمزعبور برای مدیر تنظیم نمایید.",
"Cannot create or write into the data directory %s" : "Cannot create or write into the data directory %s",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "به اشتراک گذاشتن باطن باید رابط OCP \\ Share_Backend %sرا پیاده سازی کند",
"Sharing backend %s not found" : "به اشتراک گذاشتن باطن%s یافت نشد",
"Sharing backend for %s not found" : "به اشتراک گذاشتن باطن برای%s یافت نشد",
"%1$s shared »%2$s« with you and wants to add:" : "%1$s به اشتراک گذاشته شده »%2$s« با شماست و می خواهد اضافه کند:",
"%1$s shared »%2$s« with you and wants to add" : "%1$s به اشتراک گذاشته شده »%2$s« با شماست و می خواهد اضافه کند:",
"»%s« added a note to a file shared with you" : "»%s« یادداشتی را به پرونده ای که با شما به اشتراک گذاشته شده است اضافه کرد",
"Open »%s«" : "باز کن »%s«",
"%1$s via %2$s" : "%1$s از طریق %2$s",
"You are not allowed to share %s" : "شما مجاز به اشتراک گذاری نیستید%s",
"Cannot increase permissions of %s" : "Cannot increase permissions of %s",
"Files cannot be shared with delete permissions" : "Files cannot be shared with delete permissions",
"Files cannot be shared with create permissions" : "Files cannot be shared with create permissions",
"Expiration date is in the past" : "تاریخ انقضا در گذشته است",
"_Cannot set expiration date more than %n day in the future_::_Cannot set expiration date more than %n days in the future_" : ["Cannot set expiration date more than %n day in the future","Cannot set expiration date more than %n days in the future"],
"Sharing is only allowed with group members" : "Sharing is only allowed with group members",
"%1$s shared »%2$s« with you" : "%1$s به اشتراک گذاشته » %2$s« با شما",
"%1$s shared »%2$s« with you." : "%1$s به اشتراک گذاشته » %2$s« با شما",
"Click the button below to open it." : "برای باز کردن آن روی دکمه زیر کلیک کنید.",
"The requested share does not exist anymore" : "سهم درخواست شده دیگر وجود ندارد",
"The user was not created because the user limit has been reached. Check your notifications to learn more." : "The user was not created because the user limit has been reached. Check your notifications to learn more.",
"Could not find category \"%s\"" : "دسته بندی %s یافت نشد",
"Sunday" : "یک‌شنبه",
"Monday" : "دوشنبه",
"Tuesday" : "سه‌شنبه",
"Wednesday" : "چهارشنبه",
"Thursday" : "پنج‌شنبه",
"Friday" : "آدینه",
"Saturday" : "شنبه",
"Sun." : "یک.",
"Mon." : "دو.",
"Tue." : "سه.",
"Wed." : "چهار.",
"Thu." : "پنج.",
"Fri." : "آد.",
"Sat." : "شن.",
"Su" : "ی",
"Mo" : "د",
"Tu" : "س",
"We" : "چ",
"Th" : "پ",
"Fr" : "آ",
"Sa" : "ش",
"January" : "ژانویه",
"February" : "فوریه",
"March" : "مارس",
"April" : "آوریل",
"May" : "مه",
"June" : "ژوئن",
"July" : "جولای",
"August" : "اوت",
"September" : "سپتامبر",
"October" : "اکتبر",
"November" : "نوامبر",
"December" : "دسامبر",
"Jan." : "ژان.",
"Feb." : "فو.",
"Mar." : "مار.",
"Apr." : "آو.",
"May." : "مه.",
"Jun." : "ژو.",
"Jul." : "جول.",
"Aug." : "اوت.",
"Sep." : "سپ.",
"Oct." : "اکت.",
"Nov." : "نو.",
"Dec." : "دس.",
"A valid password must be provided" : "رمز عبور صحیح باید وارد شود",
"Login canceled by app" : "ورود به دست کاره لغو شد",
"App \"%1$s\" cannot be installed because the following dependencies are not fulfilled: %2$s" : "کارهٔ «%1$s» نمی‌تواند نصب شود؛ چرا که وابستگی زیر تأمین نشده: %2$s",
"a safe home for all your data" : "خانه‌ای امن برای تمامی داده‌هایتان",
"File is currently busy, please try again later" : "فایل در حال حاضر مشغول است، لطفا مجددا تلاش کنید",
"Cannot download file" : "نمی‌توان پرونده را بارگرفت",
"Application is not enabled" : "برنامه فعال نشده است",
"Authentication error" : "خطا در اعتبار سنجی",
"Token expired. Please reload page." : "Token منقضی شده است. لطفا دوباره صفحه را بارگذاری نمایید.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "هیچ درایور پایگاه داده (sqlite ، mysql یا postgresql) نصب نشده است.",
"Cannot write into \"config\" directory." : "Cannot write into \"config\" directory.",
"This can usually be fixed by giving the web server write access to the config directory. See %s" : "This can usually be fixed by giving the web server write access to the config directory. See %s",
"Or, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it. See %s" : "یا اگر ترجیح می دهید پرونده config.php را فقط بخوانید ، گزینه \"config_is_read_only\" را در آن تنظیم کنید. دیدن%s",
"Cannot write into \"apps\" directory." : "Cannot write into \"apps\" directory.",
"This can usually be fixed by giving the web server write access to the apps directory or disabling the App Store in the config file." : "This can usually be fixed by giving the web server write access to the apps directory or disabling the App Store in the config file.",
"Cannot create \"data\" directory." : "Cannot create \"data\" directory.",
"This can usually be fixed by giving the web server write access to the root directory. See %s" : "This can usually be fixed by giving the web server write access to the root directory. See %s",
"Permissions can usually be fixed by giving the web server write access to the root directory. See %s." : "Permissions can usually be fixed by giving the web server write access to the root directory. See %s.",
"Your data directory is not writable." : "Your data directory is not writable.",
"Setting locale to %s failed." : "Setting locale to %s failed.",
"Please install one of these locales on your system and restart your web server." : "Please install one of these locales on your system and restart your web server.",
"PHP module %s not installed." : "ماژول PHP %s نصب نشده است.",
"Please ask your server administrator to install the module." : "لطفا از مدیر سیستم بخواهید تا ماژول را نصب کند.",
"PHP setting \"%s\" is not set to \"%s\"." : "تنظیمات PHP%s تنظیم نشده است%s",
"Adjusting this setting in php.ini will make Nextcloud run again" : "تنظیم این تنظیمات در php.ini باعث می شود Nextcloud دوباره اجرا شود",
"<code>mbstring.func_overload</code> is set to <code>%s</code> instead of the expected value <code>0</code>." : "<code>mbstring.func_overload</code> is set to <code>%s</code> instead of the expected value <code>0</code>.",
"To fix this issue set <code>mbstring.func_overload</code> to <code>0</code> in your php.ini." : "To fix this issue set <code>mbstring.func_overload</code> to <code>0</code> in your php.ini.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "PHP ظاهراً برای خنثی کردن بلوک های اسناد درون خطی تنظیم شده است. این کار چندین برنامه اصلی را غیرقابل دسترسی خواهد کرد.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "این احتمالاً توسط حافظه پنهان / کش مانند Zend OPcache یا eAccelerator ایجاد شده است.",
"PHP modules have been installed, but they are still listed as missing?" : "ماژول های پی اچ پی نصب شده اند ، اما هنوز هم به عنوان مفقود شده ذکر شده اند؟",
"Please ask your server administrator to restart the web server." : "لطفاً از سرور سرور خود بخواهید که وب سرور را مجدداً راه اندازی کند.",
"The required %s config variable is not configured in the config.php file." : "The required %s config variable is not configured in the config.php file.",
"Please ask your server administrator to check the Nextcloud configuration." : "Please ask your server administrator to check the Nextcloud configuration.",
"Your data directory must be an absolute path." : "Your data directory must be an absolute path.",
"Check the value of \"datadirectory\" in your configuration." : "Check the value of \"datadirectory\" in your configuration.",
"Your data directory is invalid." : "Your data directory is invalid.",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "اطمینان حاصل کنید که فایلی به نام \".ocdata\" در ریشه دایرکتوری داده وجود دارد.",
"Action \"%s\" not supported or implemented." : "عملی%s پشتیبانی یا اجرا نشده است.",
"Authentication failed, wrong token or provider ID given" : "تأیید اعتبار انجام نشد ، نشانه اشتباه یا شناسه ارائه دهنده داده شد",
"Parameters missing in order to complete the request. Missing Parameters: \"%s\"" : "پارامترهای موجود برای تکمیل درخواست. پارامترهای موجود نیست%s",
"ID \"%1$s\" already used by cloud federation provider \"%2$s\"" : "شناسه%1$s قبلاً توسط ارائه دهنده فدراسیون ابر استفاده شده است%2$s",
"Cloud Federation Provider with ID: \"%s\" does not exist." : "ارائه دهنده فدراسیون Cloud با شناسه:%s وجود ندارد.",
"Could not obtain lock type %d on \"%s\"." : "نمی توان نوع%d قفل را به دست آورد%s",
"Storage unauthorized. %s" : "ذخیره سازی غیر مجاز.%s",
"Storage incomplete configuration. %s" : "پیکربندی ناقص ذخیره سازی.%s<br>",
"Storage connection error. %s" : "خطای اتصال ذخیره سازی%s",
"Storage is temporarily not available" : "ذخیره سازی به طور موقت در دسترس نیست",
"Storage connection timeout. %s" : "مدت زمان اتصال ذخیره سازی%s",
"Free prompt" : "Free prompt",
"Runs an arbitrary prompt through the language model." : "Runs an arbitrary prompt through the language model.",
"Generate headline" : "Generate headline",
"Generates a possible headline for a text." : "Generates a possible headline for a text.",
"Summarize" : "Summarize",
"Summarizes text by reducing its length without losing key information." : "Summarizes text by reducing its length without losing key information.",
"Extract topics" : "Extract topics",
"Extracts topics from a text and outputs them separated by commas." : "Extracts topics from a text and outputs them separated by commas.",
"The files of the app %1$s were not replaced correctly. Make sure it is a version compatible with the server." : "فایل های برنامه %1$sبه درستی تعویض نشد. اطمینان حاصل کنید که این یک نسخه سازگار با سرور است.",
"404" : "۴۰۴",
"Logged in user must be an admin, a sub admin or gotten special right to access this setting" : "Logged in user must be an admin, a sub admin or gotten special right to access this setting",
"Logged in user must be an admin or sub admin" : "ورود به سیستم کاربر باید یک مدیر یا مدیر فرعی باشد",
"Logged in user must be an admin" : "ورود به سیستم کاربر باید مدیر سایت باشد",
"Full name" : "نام کامل",
"Unknown user" : "کاربر نامعلوم",
"Enter the database username and name for %s" : "ورود نام و نام کاربری پایگاه داده برای %s",
"Enter the database username for %s" : "ورود نام کاربری پایگاه داده برای %s",
"MySQL username and/or password not valid" : "نام کاربری یا گذرواژهٔ مای‌سکول معتبر نیست",
"Oracle username and/or password not valid" : "نام کاربری و / یا رمزعبور اراکل معتبر نیست.",
"PostgreSQL username and/or password not valid" : "PostgreSQL نام کاربری و / یا رمزعبور معتبر نیست.",
"Set an admin username." : "یک نام کاربری برای مدیر تنظیم نمایید.",
"Sharing %s failed, because this item is already shared with user %s" : "Sharing %s failed, because this item is already shared with user %s",
"The username is already being used" : "نام‌کاربری قبلا استفاده شده است",
"Could not create user" : "نتواسنت کاربر را ایجاد کند",
"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", spaces and \"_.@-'\"" : "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", spaces and \"_.@-'\"",
"A valid username must be provided" : "نام کاربری صحیح باید وارد شود",
"Username contains whitespace at the beginning or at the end" : "نام کاربری دارای فضای سفید در ابتدا یا انتهای آن است",
"Username must not consist of dots only" : "نام کاربری نباید فقط از نقاط تشکیل شده باشد",
"Username is invalid because files already exist for this user" : "Username is invalid because files already exist for this user",
"User disabled" : "کاربر از کار افتاده",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "libxml2 2.7.0 حداقل مورد نیاز است. در حال حاضر %sنصب شده است",
"To fix this issue update your libxml2 version and restart your web server." : "برای رفع این مشکل نسخه libxml2 خود را به روز کنید و سرور وب خود را مجدداً راه اندازی کنید.",
"PostgreSQL >= 9 required." : "PostgreSQL >= 9 required.",
"Please upgrade your database version." : "Please upgrade your database version.",
"Your data directory is readable by other users." : "Your data directory is readable by other users.",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "لطفاً مجوزها را به 0770 تغییر دهید تا فهرست توسط سایر کاربران فهرست نشود."
},
"nplurals=2; plural=(n > 1);");
+277
View File
@@ -0,0 +1,277 @@
{ "translations": {
"Cannot write into \"config\" directory!" : "نمیتوانید داخل دایرکتوری \"config\" تغییراتی ایجاد کنید",
"This can usually be fixed by giving the web server write access to the config directory." : "This can usually be fixed by giving the web server write access to the config directory.",
"But, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it." : "But, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it.",
"See %s" : "مشاهده %s",
"Application %1$s is not present or has a non-compatible version with this server. Please check the apps directory." : "Application %1$s is not present or has a non-compatible version with this server. Please check the apps directory.",
"Sample configuration detected" : "فایل پیکربندی نمونه پیدا شد",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "تشخیص داده شده است که پیکربندی نمونه کپی شده است. این می تواند نصب شما را خراب کند و پشتیبانی نمی شود. لطفاً قبل از انجام تغییرات در config.php ، اسناد را بخوانید",
"The page could not be found on the server." : "The page could not be found on the server.",
"%s email verification" : "%s email verification",
"Email verification" : "Email verification",
"Click the following button to confirm your email." : "Click the following button to confirm your email.",
"Click the following link to confirm your email." : "Click the following link to confirm your email.",
"Confirm your email" : "Confirm your email",
"Other activities" : "Other activities",
"%1$s and %2$s" : "%1$sو%2$s",
"%1$s, %2$s and %3$s" : "%1$s،%2$sو%3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s،%2$s،%3$sو%4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s،%2$s،%3$s،%4$sو%5$s",
"Education Edition" : "نگارش آموزشی",
"Enterprise bundle" : "بستهٔ سازمانی",
"Groupware bundle" : "بستهٔ کار گروهی",
"Hub bundle" : "بستهٔ هسته‌ای",
"Social sharing bundle" : "بستهٔ هم‌رسانی اجتماعی",
"PHP %s or higher is required." : "PHP نسخه‌ی %s یا بالاتر نیاز است.",
"PHP with a version lower than %s is required." : "نیاز به نگارش پایین‌تر از %s پی‌اچ‌پی.",
"%sbit or higher PHP required." : "نیاز به پی‌اچ‌پی %sبیتی یا بالاتر.",
"The following architectures are supported: %s" : "معماری‌های زیر پشتیبانی می‌شوند: %s",
"The following databases are supported: %s" : "پایگاه داده‌های زیر پشتیبانی می‌شوند: %s",
"The command line tool %s could not be found" : "ابزار کامندلاین %s پیدا نشد",
"The library %s is not available." : "کتابخانه‌ی %s در دسترس نیست.",
"Library %1$s with a version higher than %2$s is required - available version %3$s." : "کتاب‌خانهٔ %1$s با نگارشی بالاتر از %2$s مورد نیاز است - نگارش موجود %3$s.",
"Library %1$s with a version lower than %2$s is required - available version %3$s." : "کتاب‌خانهٔ %1$s با نگارشی پایین‌تر از %2$s مورد نیاز است - نگارش موجود %3$s.",
"The following platforms are supported: %s" : "بن‌سازه‌های زیر پشتیبانی می‌شوند: %s",
"Server version %s or higher is required." : "نیاز به کارساز با نگارش %s یا بالاتر.",
"Server version %s or lower is required." : "نیاز به کارساز با نگارش %s یا پایین‌تر.",
"Wiping of device %s has started" : "پاک کردن دستگاه%s شروع شده است",
"Wiping of device »%s« has started" : "پاک کردن دستگاه%s شروع شده است",
"»%s« started remote wipe" : "%sپاک کردن از راه دور",
"Device or application »%s« has started the remote wipe process. You will receive another email once the process has finished" : "دستگاه یا برنامه%s فرآیند پاک کردن از راه دور را آغاز کرده است. پس از اتمام مراحل ، ایمیل دیگری دریافت خواهید کرد",
"Wiping of device %s has finished" : "پاک کردن دستگاه %sبه پایان رسیده است",
"Wiping of device »%s« has finished" : "پاک کردن دستگاه %sبه پایان رسیده است",
"»%s« finished remote wipe" : "%sپاک کردن از راه دور",
"Device or application »%s« has finished the remote wipe process." : "دستگاه یا برنامه %sفرآیند پاک کردن از راه دور را به پایان رسانده است.",
"Remote wipe started" : "پاک کردن از راه دور شروع شد",
"A remote wipe was started on device %s" : "پاک کردن از راه دور روی دستگاه شروع شد%s",
"Remote wipe finished" : "پاک کردن از راه دور به پایان رسید",
"The remote wipe on %s has finished" : "پاک کردن از راه دور روی%s کار تمام شد",
"Authentication" : "احراز هویت",
"Unknown filetype" : "نوع فایل ناشناخته",
"Invalid image" : "عکس نامعتبر",
"Avatar image is not square" : "تصویر آواتار مربع نیست",
"Files" : "پوشه‌ها",
"View profile" : "مشاهدهٔ نمایه",
"Local time: %s" : "Local time: %s",
"today" : "امروز",
"tomorrow" : "فردا",
"yesterday" : "دیروز",
"_in %n day_::_in %n days_" : ["در ۱ روز","در %n روز"],
"_%n day ago_::_%n days ago_" : ["%n روز پیش","%n روز پیش"],
"next month" : "ماه آینده",
"last month" : "ماه قبل",
"_in %n month_::_in %n months_" : ["در ۱ ماه","در %n ماه"],
"_%n month ago_::_%n months ago_" : ["%n ماه قبل","%n ماه قبل"],
"next year" : "سال آینده",
"last year" : "سال قبل",
"_in %n year_::_in %n years_" : ["در ۱ سال","در %nسال"],
"_%n year ago_::_%n years ago_" : ["%n سال پیش","%n سال پیش"],
"_in %n hour_::_in %n hours_" : ["در ۱ ساعت","در %n ساعت"],
"_%n hour ago_::_%n hours ago_" : ["%n ساعت قبل","%n ساعت قبل"],
"_in %n minute_::_in %n minutes_" : ["در ۱ دقیقه","در %n دقیقه"],
"_%n minute ago_::_%n minutes ago_" : ["%n دقیقه قبل","%n دقیقه قبل"],
"in a few seconds" : "در چند ثانیه",
"seconds ago" : "ثانیه‌ها پیش",
"Empty file" : "پروندهٔ خالی",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "ماژول با شناسه:%s وجود ندارد. لطفاً آن را در تنظیمات برنامه خود فعال کنید یا با سرپرست خود تماس بگیرید",
"File already exists" : "پرونده از پیش موجود است",
"Invalid path" : "مسیر نامعتبر",
"Failed to create file from template" : "شکست در ایجاد پرونده از قالب",
"Templates" : "قالب‌ها",
"File name is a reserved word" : "این نام فایل جزو کلمات رزرو می‌باشد",
"File name contains at least one invalid character" : "نام فایل دارای حداقل یک کاراکتر نامعتبر است",
"File name is too long" : "نام فایل خیلی بزرگ است",
"Dot files are not allowed" : "پرونده‌های نقطه‌دار مجاز نیستند",
"Empty filename is not allowed" : "نام فایل نمی‌تواند خالی باشد",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "کارهٔ «%s» به دلیل ناتوانی در خواندن پروندهٔ appinfo نمی‌تواند نصب شود.",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "کارهٔ «%s» به دلیل سازگار نبودن با این نگارش از کارساز نمی‌تواند نصب شود.",
"__language_name__" : "فارسى",
"This is an automatically sent email, please do not reply." : "این یک رایانامهٔ خودکار است. لطفاً پاسخ ندهید.",
"Help" : "راه‌نما",
"Appearance and accessibility" : "ظاهر و دسترسی‌پذیری",
"Apps" : " برنامه ها",
"Personal settings" : "تنظیمات شخصی",
"Administration settings" : "تنظمیات مدیریتی",
"Settings" : "تنظیمات",
"Log out" : "خروج",
"Users" : "کاربران",
"Email" : "رایانامه",
"Mail %s" : "نامه به %s",
"Fediverse" : "Fediverse",
"View %s on the fediverse" : "View %s on the fediverse",
"Phone" : "تلفن",
"Call %s" : "تماس با %s",
"Twitter" : "توییتر",
"View %s on Twitter" : "دیدن %s روی توییتر",
"Website" : "پایگاه وب",
"Visit %s" : "سر زدن به %s",
"Address" : "نشانی",
"Profile picture" : "تصویر نمایه",
"About" : "درباره",
"Display name" : "Display name",
"Headline" : "عنوان",
"Organisation" : "سازمان",
"Role" : "نقش",
"Additional settings" : "تنظیمات اضافی",
"Enter the database name for %s" : "ورود نام پایگاه داده برای %s",
"You cannot use dots in the database name %s" : "نمی‌توانید در در نام پایگاه دادهٔ %s از نقطه استفاده کنید",
"You need to enter details of an existing account." : "لازم است جزییات یک حساب موحود را وارد کنید.",
"Oracle connection could not be established" : "ارتباط اراکل نمیتواند برقرار باشد.",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "مک‌اواس ۱۰ پشتیبانی نشده و %s روی این بن‌سازه درست کار نخواهد کرد. با مسئولیت خودتان استفاده کنید!",
"For the best results, please consider using a GNU/Linux server instead." : "برای بهترین نتیجه، استفاده از یک کارساز گنو/لینوکسی را در نظر داشته باشید.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "به نظر می رسد%s که این نمونه در یک محیط PHP 32 بیتی در حال اجرا است و open_baseir در php.ini پیکربندی شده است. این مسئله به پرونده هایی با بیش از 4 گیگ منجر می شود و بسیار دلسرد می شود",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "لطفاً تنظیمات open_baseir را درون php.ini خود حذف کنید یا به PHP 64 بیتی تغییر دهید.",
"Set an admin password." : "یک رمزعبور برای مدیر تنظیم نمایید.",
"Cannot create or write into the data directory %s" : "Cannot create or write into the data directory %s",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "به اشتراک گذاشتن باطن باید رابط OCP \\ Share_Backend %sرا پیاده سازی کند",
"Sharing backend %s not found" : "به اشتراک گذاشتن باطن%s یافت نشد",
"Sharing backend for %s not found" : "به اشتراک گذاشتن باطن برای%s یافت نشد",
"%1$s shared »%2$s« with you and wants to add:" : "%1$s به اشتراک گذاشته شده »%2$s« با شماست و می خواهد اضافه کند:",
"%1$s shared »%2$s« with you and wants to add" : "%1$s به اشتراک گذاشته شده »%2$s« با شماست و می خواهد اضافه کند:",
"»%s« added a note to a file shared with you" : "»%s« یادداشتی را به پرونده ای که با شما به اشتراک گذاشته شده است اضافه کرد",
"Open »%s«" : "باز کن »%s«",
"%1$s via %2$s" : "%1$s از طریق %2$s",
"You are not allowed to share %s" : "شما مجاز به اشتراک گذاری نیستید%s",
"Cannot increase permissions of %s" : "Cannot increase permissions of %s",
"Files cannot be shared with delete permissions" : "Files cannot be shared with delete permissions",
"Files cannot be shared with create permissions" : "Files cannot be shared with create permissions",
"Expiration date is in the past" : "تاریخ انقضا در گذشته است",
"_Cannot set expiration date more than %n day in the future_::_Cannot set expiration date more than %n days in the future_" : ["Cannot set expiration date more than %n day in the future","Cannot set expiration date more than %n days in the future"],
"Sharing is only allowed with group members" : "Sharing is only allowed with group members",
"%1$s shared »%2$s« with you" : "%1$s به اشتراک گذاشته » %2$s« با شما",
"%1$s shared »%2$s« with you." : "%1$s به اشتراک گذاشته » %2$s« با شما",
"Click the button below to open it." : "برای باز کردن آن روی دکمه زیر کلیک کنید.",
"The requested share does not exist anymore" : "سهم درخواست شده دیگر وجود ندارد",
"The user was not created because the user limit has been reached. Check your notifications to learn more." : "The user was not created because the user limit has been reached. Check your notifications to learn more.",
"Could not find category \"%s\"" : "دسته بندی %s یافت نشد",
"Sunday" : "یک‌شنبه",
"Monday" : "دوشنبه",
"Tuesday" : "سه‌شنبه",
"Wednesday" : "چهارشنبه",
"Thursday" : "پنج‌شنبه",
"Friday" : "آدینه",
"Saturday" : "شنبه",
"Sun." : "یک.",
"Mon." : "دو.",
"Tue." : "سه.",
"Wed." : "چهار.",
"Thu." : "پنج.",
"Fri." : "آد.",
"Sat." : "شن.",
"Su" : "ی",
"Mo" : "د",
"Tu" : "س",
"We" : "چ",
"Th" : "پ",
"Fr" : "آ",
"Sa" : "ش",
"January" : "ژانویه",
"February" : "فوریه",
"March" : "مارس",
"April" : "آوریل",
"May" : "مه",
"June" : "ژوئن",
"July" : "جولای",
"August" : "اوت",
"September" : "سپتامبر",
"October" : "اکتبر",
"November" : "نوامبر",
"December" : "دسامبر",
"Jan." : "ژان.",
"Feb." : "فو.",
"Mar." : "مار.",
"Apr." : "آو.",
"May." : "مه.",
"Jun." : "ژو.",
"Jul." : "جول.",
"Aug." : "اوت.",
"Sep." : "سپ.",
"Oct." : "اکت.",
"Nov." : "نو.",
"Dec." : "دس.",
"A valid password must be provided" : "رمز عبور صحیح باید وارد شود",
"Login canceled by app" : "ورود به دست کاره لغو شد",
"App \"%1$s\" cannot be installed because the following dependencies are not fulfilled: %2$s" : "کارهٔ «%1$s» نمی‌تواند نصب شود؛ چرا که وابستگی زیر تأمین نشده: %2$s",
"a safe home for all your data" : "خانه‌ای امن برای تمامی داده‌هایتان",
"File is currently busy, please try again later" : "فایل در حال حاضر مشغول است، لطفا مجددا تلاش کنید",
"Cannot download file" : "نمی‌توان پرونده را بارگرفت",
"Application is not enabled" : "برنامه فعال نشده است",
"Authentication error" : "خطا در اعتبار سنجی",
"Token expired. Please reload page." : "Token منقضی شده است. لطفا دوباره صفحه را بارگذاری نمایید.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "هیچ درایور پایگاه داده (sqlite ، mysql یا postgresql) نصب نشده است.",
"Cannot write into \"config\" directory." : "Cannot write into \"config\" directory.",
"This can usually be fixed by giving the web server write access to the config directory. See %s" : "This can usually be fixed by giving the web server write access to the config directory. See %s",
"Or, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it. See %s" : "یا اگر ترجیح می دهید پرونده config.php را فقط بخوانید ، گزینه \"config_is_read_only\" را در آن تنظیم کنید. دیدن%s",
"Cannot write into \"apps\" directory." : "Cannot write into \"apps\" directory.",
"This can usually be fixed by giving the web server write access to the apps directory or disabling the App Store in the config file." : "This can usually be fixed by giving the web server write access to the apps directory or disabling the App Store in the config file.",
"Cannot create \"data\" directory." : "Cannot create \"data\" directory.",
"This can usually be fixed by giving the web server write access to the root directory. See %s" : "This can usually be fixed by giving the web server write access to the root directory. See %s",
"Permissions can usually be fixed by giving the web server write access to the root directory. See %s." : "Permissions can usually be fixed by giving the web server write access to the root directory. See %s.",
"Your data directory is not writable." : "Your data directory is not writable.",
"Setting locale to %s failed." : "Setting locale to %s failed.",
"Please install one of these locales on your system and restart your web server." : "Please install one of these locales on your system and restart your web server.",
"PHP module %s not installed." : "ماژول PHP %s نصب نشده است.",
"Please ask your server administrator to install the module." : "لطفا از مدیر سیستم بخواهید تا ماژول را نصب کند.",
"PHP setting \"%s\" is not set to \"%s\"." : "تنظیمات PHP%s تنظیم نشده است%s",
"Adjusting this setting in php.ini will make Nextcloud run again" : "تنظیم این تنظیمات در php.ini باعث می شود Nextcloud دوباره اجرا شود",
"<code>mbstring.func_overload</code> is set to <code>%s</code> instead of the expected value <code>0</code>." : "<code>mbstring.func_overload</code> is set to <code>%s</code> instead of the expected value <code>0</code>.",
"To fix this issue set <code>mbstring.func_overload</code> to <code>0</code> in your php.ini." : "To fix this issue set <code>mbstring.func_overload</code> to <code>0</code> in your php.ini.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "PHP ظاهراً برای خنثی کردن بلوک های اسناد درون خطی تنظیم شده است. این کار چندین برنامه اصلی را غیرقابل دسترسی خواهد کرد.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "این احتمالاً توسط حافظه پنهان / کش مانند Zend OPcache یا eAccelerator ایجاد شده است.",
"PHP modules have been installed, but they are still listed as missing?" : "ماژول های پی اچ پی نصب شده اند ، اما هنوز هم به عنوان مفقود شده ذکر شده اند؟",
"Please ask your server administrator to restart the web server." : "لطفاً از سرور سرور خود بخواهید که وب سرور را مجدداً راه اندازی کند.",
"The required %s config variable is not configured in the config.php file." : "The required %s config variable is not configured in the config.php file.",
"Please ask your server administrator to check the Nextcloud configuration." : "Please ask your server administrator to check the Nextcloud configuration.",
"Your data directory must be an absolute path." : "Your data directory must be an absolute path.",
"Check the value of \"datadirectory\" in your configuration." : "Check the value of \"datadirectory\" in your configuration.",
"Your data directory is invalid." : "Your data directory is invalid.",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "اطمینان حاصل کنید که فایلی به نام \".ocdata\" در ریشه دایرکتوری داده وجود دارد.",
"Action \"%s\" not supported or implemented." : "عملی%s پشتیبانی یا اجرا نشده است.",
"Authentication failed, wrong token or provider ID given" : "تأیید اعتبار انجام نشد ، نشانه اشتباه یا شناسه ارائه دهنده داده شد",
"Parameters missing in order to complete the request. Missing Parameters: \"%s\"" : "پارامترهای موجود برای تکمیل درخواست. پارامترهای موجود نیست%s",
"ID \"%1$s\" already used by cloud federation provider \"%2$s\"" : "شناسه%1$s قبلاً توسط ارائه دهنده فدراسیون ابر استفاده شده است%2$s",
"Cloud Federation Provider with ID: \"%s\" does not exist." : "ارائه دهنده فدراسیون Cloud با شناسه:%s وجود ندارد.",
"Could not obtain lock type %d on \"%s\"." : "نمی توان نوع%d قفل را به دست آورد%s",
"Storage unauthorized. %s" : "ذخیره سازی غیر مجاز.%s",
"Storage incomplete configuration. %s" : "پیکربندی ناقص ذخیره سازی.%s<br>",
"Storage connection error. %s" : "خطای اتصال ذخیره سازی%s",
"Storage is temporarily not available" : "ذخیره سازی به طور موقت در دسترس نیست",
"Storage connection timeout. %s" : "مدت زمان اتصال ذخیره سازی%s",
"Free prompt" : "Free prompt",
"Runs an arbitrary prompt through the language model." : "Runs an arbitrary prompt through the language model.",
"Generate headline" : "Generate headline",
"Generates a possible headline for a text." : "Generates a possible headline for a text.",
"Summarize" : "Summarize",
"Summarizes text by reducing its length without losing key information." : "Summarizes text by reducing its length without losing key information.",
"Extract topics" : "Extract topics",
"Extracts topics from a text and outputs them separated by commas." : "Extracts topics from a text and outputs them separated by commas.",
"The files of the app %1$s were not replaced correctly. Make sure it is a version compatible with the server." : "فایل های برنامه %1$sبه درستی تعویض نشد. اطمینان حاصل کنید که این یک نسخه سازگار با سرور است.",
"404" : "۴۰۴",
"Logged in user must be an admin, a sub admin or gotten special right to access this setting" : "Logged in user must be an admin, a sub admin or gotten special right to access this setting",
"Logged in user must be an admin or sub admin" : "ورود به سیستم کاربر باید یک مدیر یا مدیر فرعی باشد",
"Logged in user must be an admin" : "ورود به سیستم کاربر باید مدیر سایت باشد",
"Full name" : "نام کامل",
"Unknown user" : "کاربر نامعلوم",
"Enter the database username and name for %s" : "ورود نام و نام کاربری پایگاه داده برای %s",
"Enter the database username for %s" : "ورود نام کاربری پایگاه داده برای %s",
"MySQL username and/or password not valid" : "نام کاربری یا گذرواژهٔ مای‌سکول معتبر نیست",
"Oracle username and/or password not valid" : "نام کاربری و / یا رمزعبور اراکل معتبر نیست.",
"PostgreSQL username and/or password not valid" : "PostgreSQL نام کاربری و / یا رمزعبور معتبر نیست.",
"Set an admin username." : "یک نام کاربری برای مدیر تنظیم نمایید.",
"Sharing %s failed, because this item is already shared with user %s" : "Sharing %s failed, because this item is already shared with user %s",
"The username is already being used" : "نام‌کاربری قبلا استفاده شده است",
"Could not create user" : "نتواسنت کاربر را ایجاد کند",
"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", spaces and \"_.@-'\"" : "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", spaces and \"_.@-'\"",
"A valid username must be provided" : "نام کاربری صحیح باید وارد شود",
"Username contains whitespace at the beginning or at the end" : "نام کاربری دارای فضای سفید در ابتدا یا انتهای آن است",
"Username must not consist of dots only" : "نام کاربری نباید فقط از نقاط تشکیل شده باشد",
"Username is invalid because files already exist for this user" : "Username is invalid because files already exist for this user",
"User disabled" : "کاربر از کار افتاده",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "libxml2 2.7.0 حداقل مورد نیاز است. در حال حاضر %sنصب شده است",
"To fix this issue update your libxml2 version and restart your web server." : "برای رفع این مشکل نسخه libxml2 خود را به روز کنید و سرور وب خود را مجدداً راه اندازی کنید.",
"PostgreSQL >= 9 required." : "PostgreSQL >= 9 required.",
"Please upgrade your database version." : "Please upgrade your database version.",
"Your data directory is readable by other users." : "Your data directory is readable by other users.",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "لطفاً مجوزها را به 0770 تغییر دهید تا فهرست توسط سایر کاربران فهرست نشود."
},"pluralForm" :"nplurals=2; plural=(n > 1);"
}
+235
View File
@@ -0,0 +1,235 @@
OC.L10N.register(
"lib",
{
"Cannot write into \"config\" directory!" : "Hakemistoon \"config\" kirjoittaminen ei onnistu!",
"But, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it." : "Jos haluat pitää config.php-tiedoston vain luku -muodossa, aseta valinnan \"config_is_read_only\" arvoksi true.",
"See %s" : "Katso %s",
"Sample configuration detected" : "Esimerkkimääritykset havaittu",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "On havaittu, että esimerkkimäärityksen on kopioitu. Se voi rikkoa asennuksesi, eikä sitä tueta. Lue ohjeet ennen kuin muutat config.php tiedostoa.",
"The page could not be found on the server." : "Sivua ei löytynyt palvelimelta.",
"Email verification" : "Sähköpostin vahvistus",
"Click the following button to confirm your email." : "Napsauta seuraavaa painiketta vahvistaaksesi sähköpostiosoitteesi.",
"Click the following link to confirm your email." : "Napsauta seuraavaa linkkiä vahvistaaksesi sähköpostiosoitteesi.",
"Confirm your email" : "Vahvista sähköpostiosoitteesi",
"Other activities" : "Muut toimet",
"%1$s and %2$s" : "%1$s ja %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s ja %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s ja %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s ja %5$s",
"PHP %s or higher is required." : "PHP %s tai sitä uudempi vaaditaan.",
"PHP with a version lower than %s is required." : "PHP versiota %s alempi tarvitaan.",
"%sbit or higher PHP required." : "%s-bit tai korkeampi PHP vaaditaan.",
"The following architectures are supported: %s" : "Seuraavat arkkitehtuurit ovat tuettuja: %s",
"The following databases are supported: %s" : "Seuraavat tietokannat ovat tuettuja: %s",
"The command line tool %s could not be found" : "Komentorivityökalua %s ei löytynyt",
"The library %s is not available." : "Kirjastoa %s ei ole käytettävissä.",
"The following platforms are supported: %s" : "Seuraavat alustat ovat tuettuja: %s",
"Server version %s or higher is required." : "Palvelinversio %s tai sitä uudempi vaaditaan.",
"Server version %s or lower is required." : "Palvelinversio %s tai alhaisempi vaaditaan.",
"Wiping of device %s has started" : "Laitteen %s tyhjennys aloitettiin",
"Wiping of device »%s« has started" : "Laitteen »%s« tyhjennys aloitettiin",
"»%s« started remote wipe" : "»%s« aloitti etätyhjennyksen",
"Device or application »%s« has started the remote wipe process. You will receive another email once the process has finished" : "Laite tai sovellus »%s« käynnisti etätyhjennyksen. Saat sähköpostin, kun toimenpide on valmistunut",
"Wiping of device %s has finished" : "Laitteen %s tyhjennys valmistui",
"Wiping of device »%s« has finished" : "Laitteen »%s« tyhjennys valmistui",
"»%s« finished remote wipe" : "»%s« suoritti etätyhjennyksen",
"Device or application »%s« has finished the remote wipe process." : "Laite tai sovellus »%s« on suorittanut etätyhjennyksen.",
"Remote wipe started" : "Etätyhjennys aloitettiin",
"A remote wipe was started on device %s" : "Laitteen %s etätyhjennys aloitettiin",
"Remote wipe finished" : "Etätyhjennys valmistui",
"The remote wipe on %s has finished" : "Etätyhjennys laitteella %s valmistui",
"Authentication" : "Tunnistautuminen",
"Unknown filetype" : "Tuntematon tiedostotyyppi",
"Invalid image" : "Virheellinen kuva",
"Avatar image is not square" : "Avatar-kuva ei ole neliö",
"Files" : "Tiedostot",
"View profile" : "Näytä profiili",
"Local time: %s" : "Paikallinen aika: %s",
"today" : "tänään",
"tomorrow" : "huomenna",
"yesterday" : "eilen",
"_in %n day_::_in %n days_" : ["%n päivän päästä","%n päivän päästä"],
"_%n day ago_::_%n days ago_" : ["%n päivä sitten","%n päivää sitten"],
"next month" : "ensi kuussa",
"last month" : "viime kuussa",
"_in %n month_::_in %n months_" : ["%n kuukauden päästä","%n kuukauden päästä"],
"_%n month ago_::_%n months ago_" : ["%n kuukausi sitten","%n kuukautta sitten"],
"next year" : "ensi vuonna",
"last year" : "viime vuonna",
"_in %n year_::_in %n years_" : ["%n vuoden päästä","%n vuoden päästä"],
"_%n year ago_::_%n years ago_" : ["%n vuosi sitten","%n vuotta sitten"],
"_in %n hour_::_in %n hours_" : ["%n tunnin päästä","%n tunnin päästä"],
"_%n hour ago_::_%n hours ago_" : ["%n tunti sitten","%n tuntia sitten"],
"_in %n minute_::_in %n minutes_" : ["%n minuutin päästä","%n minuutin päästä"],
"_%n minute ago_::_%n minutes ago_" : ["%n minuutti sitten","%n minuuttia sitten"],
"in a few seconds" : "muutaman sekunnin päästä",
"seconds ago" : "sekunteja sitten",
"Empty file" : "Tyhjä tiedosto",
"File already exists" : "Tiedosto on jo olemassa",
"Invalid path" : "Virheellinen polku",
"Failed to create file from template" : "Tiedoston luominen mallipohjasta epäonnistui",
"Templates" : "Mallipohjat",
"File name is a reserved word" : "Tiedoston nimi on varattu sana",
"File name contains at least one invalid character" : "Tiedoston nimi sisältää ainakin yhden virheellisen merkin",
"File name is too long" : "Tiedoston nimi on liian pitkä",
"Dot files are not allowed" : "Pistetiedostot eivät ole sallittuja",
"Empty filename is not allowed" : "Tiedostonimi ei voi olla tyhjä",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "Sovellusta \"%s\" ei voi asentaa, koska appinfo-tiedostoa ei voi loi lukea.",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "Sovellusta \"%s\" ei voi asentaa, koska se ei ole yhteensopiva tämän palvelinversion kanssa.",
"__language_name__" : "suomi",
"This is an automatically sent email, please do not reply." : "Tämä on automaattisesti lähetetty viesti. Älä vastaa tähän viestiin.",
"Help" : "Ohje",
"Appearance and accessibility" : "Ulkoasu ja saavutettavuus",
"Apps" : "Sovellukset",
"Personal settings" : "Henkilökohtaiset asetukset",
"Administration settings" : "Ylläpitäjän asetukset",
"Settings" : "Asetukset",
"Log out" : "Kirjaudu ulos",
"Users" : "Käyttäjät",
"Email" : "Sähköposti",
"Mail %s" : "Lähetä sähköpostia %s",
"Phone" : "Puhelin",
"Call %s" : "Soita %s",
"Twitter" : "Twitter",
"View %s on Twitter" : "Näytä %s Twitterissä",
"Website" : "Verkkosivu",
"Visit %s" : "Käy sivustolla %s",
"Address" : "Osoite",
"Profile picture" : "Profiilikuva",
"About" : "Tietoja",
"Display name" : "Näyttönimi",
"Headline" : "Otsikko",
"Organisation" : "Organisaatio",
"Role" : "Rooli",
"Additional settings" : "Lisäasetukset",
"You need to enter details of an existing account." : "Anna olemassa olevan tilin tiedot.",
"Oracle connection could not be established" : "Oracle-yhteyttä ei voitu muodostaa",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "Mac OS X ei ole tuettu, joten %s ei toimi kunnolla tällä alustalla. Käytä omalla vastuulla!",
"For the best results, please consider using a GNU/Linux server instead." : "Käytä parhaan lopputuloksen saamiseksi GNU/Linux-palvelinta.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Vaikuttaa siltä, että tämä %s-instanssi toimii 32-bittisessä PHP-ympäristössä ja open_basedir-asetus on määritetty php.ini-tiedostossa. Tämä johtaa ongelmiin yli 4 gigatavun tiedostojen kanssa, eikä siksi ole suositeltavaa.",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Poista open_basedir-asetus php.ini-tiedostosta tai vaihda 64-bittiseen PHP:hen.",
"Set an admin password." : "Aseta ylläpitäjän salasana.",
"Sharing backend %s not found" : "Jakamisen taustaosaa %s ei löytynyt",
"Sharing backend for %s not found" : "Jakamisen taustaosaa kohteelle %s ei löytynyt",
"%1$s shared »%2$s« with you and wants to add:" : "%1$s jakoi kohteen »%2$s« kanssasi ja haluaa lisätä:",
"%1$s shared »%2$s« with you and wants to add" : "%1$s jakoi kohteen »%2$s« kanssasi ja haluaa lisätä",
"»%s« added a note to a file shared with you" : "»%s« lisäsi huomion jakamaasi tiedostoon",
"Open »%s«" : "Avaa »%s«",
"%1$s via %2$s" : "%1$s palvelun %2$s kautta",
"You are not allowed to share %s" : "Oikeutesi eivät riitä kohteen %s jakamiseen.",
"Cannot increase permissions of %s" : "Kohteen %s käyttöoikeuksien lisääminen ei onnistu",
"Files cannot be shared with delete permissions" : "Tiedostoja ei voi jakaa poistamisoikeuksilla",
"Files cannot be shared with create permissions" : "Tiedostoja ei voi jakaa luomisoikeuksilla",
"Expiration date is in the past" : "Vanhenemispäivä on menneisyydessä",
"_Cannot set expiration date more than %n day in the future_::_Cannot set expiration date more than %n days in the future_" : ["Vanhenemispäivän voi asettaa korkeintaan %n päivään tulevaisuuteen","Vanhenemispäivän voi asettaa korkeintaan %n päivään tulevaisuuteen"],
"Sharing is only allowed with group members" : "Jakaminen on sallittu vain ryhmäjäsenten kesken",
"%1$s shared »%2$s« with you" : "%1$s jakoi kohteen »%2$s« kanssasi",
"%1$s shared »%2$s« with you." : "%1$s jakoi kohteen »%2$s« kanssasi.",
"Click the button below to open it." : "Napsauta alla olevaa painiketta avataksesi sen.",
"The requested share does not exist anymore" : "Pyydettyä jakoa ei ole enää olemassa",
"The user was not created because the user limit has been reached. Check your notifications to learn more." : "Käyttäjää ei luotu, koska käyttäjäraja on tullut täyteen. Tarkista ilmoitukset saadaksesi lisätietoja.",
"Could not find category \"%s\"" : "Luokkaa \"%s\" ei löytynyt",
"Sunday" : "sunnuntai",
"Monday" : "maanantai",
"Tuesday" : "tiistai",
"Wednesday" : "keskiviikko",
"Thursday" : "torstai",
"Friday" : "perjantai",
"Saturday" : "lauantai",
"Sun." : "Su",
"Mon." : "Ma",
"Tue." : "Ti",
"Wed." : "Ke",
"Thu." : "To",
"Fri." : "Pe",
"Sat." : "La",
"Su" : "Su",
"Mo" : "Ma",
"Tu" : "Ti",
"We" : "Ke",
"Th" : "To",
"Fr" : "Pe",
"Sa" : "La",
"January" : "tammikuu",
"February" : "helmikuu",
"March" : "maaliskuu",
"April" : "huhtikuu",
"May" : "toukokuu",
"June" : "kesäkuu",
"July" : "heinäkuu",
"August" : "elokuu",
"September" : "syyskuu",
"October" : "lokakuu",
"November" : "marraskuu",
"December" : "joulukuu",
"Jan." : "Tammi",
"Feb." : "Helmi",
"Mar." : "Maalis",
"Apr." : "Huhti",
"May." : "Touko",
"Jun." : "Kesä",
"Jul." : "Heinä",
"Aug." : "Elo",
"Sep." : "Syys",
"Oct." : "Loka",
"Nov." : "Marras",
"Dec." : "Joulu",
"A valid password must be provided" : "Anna kelvollinen salasana",
"Login canceled by app" : "Kirjautuminen peruttiin sovelluksen toimesta",
"App \"%1$s\" cannot be installed because the following dependencies are not fulfilled: %2$s" : "Sovellusta \"%1$s\" ei voi asentaa, koska seuraavat riippuvuudet eivät täyty: %2$s",
"a safe home for all your data" : "turvallinen koti kaikille tiedostoillesi",
"File is currently busy, please try again later" : "Tiedosto on parhaillaan käytössä, yritä myöhemmin uudelleen",
"Cannot download file" : "Tiedostoa ei voi ladata",
"Application is not enabled" : "Sovellusta ei ole otettu käyttöön",
"Authentication error" : "Tunnistautumisvirhe",
"Token expired. Please reload page." : "Valtuutus vanheni. Lataa sivu uudelleen.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "Tietokanta-ajureita (sqlite, mysql tai postgresql) ei ole asennettu.",
"Cannot write into \"config\" directory." : "Ei voi kirjoittaa \"config\"-hakemistoon",
"Cannot write into \"apps\" directory." : "Ei voi kirjoittaa \"apps\"-hakemistoon",
"Cannot create \"data\" directory." : "Ei voi luoda \"data\"-hakemistoa",
"Your data directory is not writable." : "Datahakemistosi ei ole kirjoitettavissa.",
"Setting locale to %s failed." : "Maa-asetuston %s asettaminen epäonnistui.",
"Please install one of these locales on your system and restart your web server." : "Asenna ainakin yksi näistä maa-asetuksista järjestelmään ja käynnistä http-palvelin uudelleen.",
"PHP module %s not installed." : "PHP-moduulia %s ei ole asennettu.",
"Please ask your server administrator to install the module." : "Pyydä palvelimen ylläpitäjää asentamaan moduulin.",
"PHP setting \"%s\" is not set to \"%s\"." : "PHP-asetusta \"%s\" ei ole asetettu arvoon \"%s\".",
"<code>mbstring.func_overload</code> is set to <code>%s</code> instead of the expected value <code>0</code>." : "<code>mbstring.func_overload</code> on asetettu arvoon <code>%s</code> odotetun arvon <code>0</code> sijaan.",
"To fix this issue set <code>mbstring.func_overload</code> to <code>0</code> in your php.ini." : "Korjaa ongelma asettamalla ominaisuuden <code>mbstring.func_overload</code> arvoksi <code>0</code> php.ini-tiedostossa.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Tämä johtuu todennäköisesti välimuistista tai kiihdyttimestä kuten Zend OPcachesta tai eAcceleratorista.",
"PHP modules have been installed, but they are still listed as missing?" : "PHP-moduulit on asennettu, mutta ovatko ne vieläkin listattu puuttuviksi?",
"Please ask your server administrator to restart the web server." : "Pyydä palvelimen ylläpitäjää käynnistämään web-palvelin uudelleen.",
"Please ask your server administrator to check the Nextcloud configuration." : "Pyydä palvelimen ylläpitäjää tarkastamaan Nextcloudin määritykset.",
"Your data directory must be an absolute path." : "Datahakemiston tulee olla absoluuttinen polku.",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Varmista että datahakemiston juuressa on tiedosto nimeltä \".ocdata\".",
"Action \"%s\" not supported or implemented." : "Toiminto \"%s\" ei ole tuettu tai sitä ei ole toteutettu.",
"Could not obtain lock type %d on \"%s\"." : "Lukitustapaa %d ei saatu kohteelle \"%s\".",
"Storage unauthorized. %s" : "Tallennustila ei ole valtuutettu. %s",
"Storage incomplete configuration. %s" : "Tallennustilan puutteellinen määritys. %s",
"Storage connection error. %s" : "Tallennustilan yhteysvirhe. %s",
"Storage is temporarily not available" : "Tallennustila on tilapäisesti pois käytöstä",
"Storage connection timeout. %s" : "Tallennustilan yhteyden aikakatkaisu. %s",
"The files of the app %1$s were not replaced correctly. Make sure it is a version compatible with the server." : "Sovelluksen %1$s tiedostoja ei korvattu oikein Varmista, että sen versio on yhteensopiva palvelimen kanssa.",
"404" : "404",
"Logged in user must be an admin" : "Sisäänkirjautuneen käyttäjän tulee olla ylläpitäjä",
"Full name" : "Koko nimi",
"Unknown user" : "Tuntematon käyttäjä",
"MySQL username and/or password not valid" : "MySQL-käyttäjätunnus ja/tai -salasana on väärin",
"Oracle username and/or password not valid" : "Oraclen käyttäjätunnus ja/tai salasana on väärin",
"PostgreSQL username and/or password not valid" : "PostgreSQL:n käyttäjätunnus ja/tai salasana on väärin",
"Set an admin username." : "Aseta ylläpitäjän käyttäjätunnus.",
"Sharing %s failed, because this item is already shared with user %s" : "Kohteen %s jakaminen epäonnistui, koska kohde on jo jaettu käyttäjän %s kanssa",
"The username is already being used" : "Käyttäjätunnus on jo käytössä",
"Could not create user" : "Ei voitu luoda käyttäjää",
"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", spaces and \"_.@-'\"" : "Vain seuraavat merkit ovat sallittuja käyttäjätunnuksessa: \"a-z\", \"A-Z\", \"0-9\", välilyönnit ja \"_.@-'\"",
"A valid username must be provided" : "Anna kelvollinen käyttäjätunnus",
"Username contains whitespace at the beginning or at the end" : "Käyttäjätunnus sisältää tyhjätilaa joko alussa tai lopussa",
"Username must not consist of dots only" : "Käyttäjänimi ei voi koostua vain pisteistä",
"Username is invalid because files already exist for this user" : "Käyttäjänimi on virheellinen koska tiedostoja on olemassa tälle käyttäjälle",
"User disabled" : "Käyttäjä poistettu käytöstä",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Vähintään libxml2 2.7.0 vaaditaan. %s on asennettu.",
"To fix this issue update your libxml2 version and restart your web server." : "Päivitä libxml2:n versio ja käynnistä http-palvelin uudelleen.",
"PostgreSQL >= 9 required." : "PostgreSQL >= 9 vaaditaan.",
"Please upgrade your database version." : "Päivitä tietokannan versio.",
"Your data directory is readable by other users." : "Datahakemistosi on muiden käyttäjien luettavissa."
},
"nplurals=2; plural=(n != 1);");
+233
View File
@@ -0,0 +1,233 @@
{ "translations": {
"Cannot write into \"config\" directory!" : "Hakemistoon \"config\" kirjoittaminen ei onnistu!",
"But, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it." : "Jos haluat pitää config.php-tiedoston vain luku -muodossa, aseta valinnan \"config_is_read_only\" arvoksi true.",
"See %s" : "Katso %s",
"Sample configuration detected" : "Esimerkkimääritykset havaittu",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "On havaittu, että esimerkkimäärityksen on kopioitu. Se voi rikkoa asennuksesi, eikä sitä tueta. Lue ohjeet ennen kuin muutat config.php tiedostoa.",
"The page could not be found on the server." : "Sivua ei löytynyt palvelimelta.",
"Email verification" : "Sähköpostin vahvistus",
"Click the following button to confirm your email." : "Napsauta seuraavaa painiketta vahvistaaksesi sähköpostiosoitteesi.",
"Click the following link to confirm your email." : "Napsauta seuraavaa linkkiä vahvistaaksesi sähköpostiosoitteesi.",
"Confirm your email" : "Vahvista sähköpostiosoitteesi",
"Other activities" : "Muut toimet",
"%1$s and %2$s" : "%1$s ja %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s ja %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s ja %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s ja %5$s",
"PHP %s or higher is required." : "PHP %s tai sitä uudempi vaaditaan.",
"PHP with a version lower than %s is required." : "PHP versiota %s alempi tarvitaan.",
"%sbit or higher PHP required." : "%s-bit tai korkeampi PHP vaaditaan.",
"The following architectures are supported: %s" : "Seuraavat arkkitehtuurit ovat tuettuja: %s",
"The following databases are supported: %s" : "Seuraavat tietokannat ovat tuettuja: %s",
"The command line tool %s could not be found" : "Komentorivityökalua %s ei löytynyt",
"The library %s is not available." : "Kirjastoa %s ei ole käytettävissä.",
"The following platforms are supported: %s" : "Seuraavat alustat ovat tuettuja: %s",
"Server version %s or higher is required." : "Palvelinversio %s tai sitä uudempi vaaditaan.",
"Server version %s or lower is required." : "Palvelinversio %s tai alhaisempi vaaditaan.",
"Wiping of device %s has started" : "Laitteen %s tyhjennys aloitettiin",
"Wiping of device »%s« has started" : "Laitteen »%s« tyhjennys aloitettiin",
"»%s« started remote wipe" : "»%s« aloitti etätyhjennyksen",
"Device or application »%s« has started the remote wipe process. You will receive another email once the process has finished" : "Laite tai sovellus »%s« käynnisti etätyhjennyksen. Saat sähköpostin, kun toimenpide on valmistunut",
"Wiping of device %s has finished" : "Laitteen %s tyhjennys valmistui",
"Wiping of device »%s« has finished" : "Laitteen »%s« tyhjennys valmistui",
"»%s« finished remote wipe" : "»%s« suoritti etätyhjennyksen",
"Device or application »%s« has finished the remote wipe process." : "Laite tai sovellus »%s« on suorittanut etätyhjennyksen.",
"Remote wipe started" : "Etätyhjennys aloitettiin",
"A remote wipe was started on device %s" : "Laitteen %s etätyhjennys aloitettiin",
"Remote wipe finished" : "Etätyhjennys valmistui",
"The remote wipe on %s has finished" : "Etätyhjennys laitteella %s valmistui",
"Authentication" : "Tunnistautuminen",
"Unknown filetype" : "Tuntematon tiedostotyyppi",
"Invalid image" : "Virheellinen kuva",
"Avatar image is not square" : "Avatar-kuva ei ole neliö",
"Files" : "Tiedostot",
"View profile" : "Näytä profiili",
"Local time: %s" : "Paikallinen aika: %s",
"today" : "tänään",
"tomorrow" : "huomenna",
"yesterday" : "eilen",
"_in %n day_::_in %n days_" : ["%n päivän päästä","%n päivän päästä"],
"_%n day ago_::_%n days ago_" : ["%n päivä sitten","%n päivää sitten"],
"next month" : "ensi kuussa",
"last month" : "viime kuussa",
"_in %n month_::_in %n months_" : ["%n kuukauden päästä","%n kuukauden päästä"],
"_%n month ago_::_%n months ago_" : ["%n kuukausi sitten","%n kuukautta sitten"],
"next year" : "ensi vuonna",
"last year" : "viime vuonna",
"_in %n year_::_in %n years_" : ["%n vuoden päästä","%n vuoden päästä"],
"_%n year ago_::_%n years ago_" : ["%n vuosi sitten","%n vuotta sitten"],
"_in %n hour_::_in %n hours_" : ["%n tunnin päästä","%n tunnin päästä"],
"_%n hour ago_::_%n hours ago_" : ["%n tunti sitten","%n tuntia sitten"],
"_in %n minute_::_in %n minutes_" : ["%n minuutin päästä","%n minuutin päästä"],
"_%n minute ago_::_%n minutes ago_" : ["%n minuutti sitten","%n minuuttia sitten"],
"in a few seconds" : "muutaman sekunnin päästä",
"seconds ago" : "sekunteja sitten",
"Empty file" : "Tyhjä tiedosto",
"File already exists" : "Tiedosto on jo olemassa",
"Invalid path" : "Virheellinen polku",
"Failed to create file from template" : "Tiedoston luominen mallipohjasta epäonnistui",
"Templates" : "Mallipohjat",
"File name is a reserved word" : "Tiedoston nimi on varattu sana",
"File name contains at least one invalid character" : "Tiedoston nimi sisältää ainakin yhden virheellisen merkin",
"File name is too long" : "Tiedoston nimi on liian pitkä",
"Dot files are not allowed" : "Pistetiedostot eivät ole sallittuja",
"Empty filename is not allowed" : "Tiedostonimi ei voi olla tyhjä",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "Sovellusta \"%s\" ei voi asentaa, koska appinfo-tiedostoa ei voi loi lukea.",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "Sovellusta \"%s\" ei voi asentaa, koska se ei ole yhteensopiva tämän palvelinversion kanssa.",
"__language_name__" : "suomi",
"This is an automatically sent email, please do not reply." : "Tämä on automaattisesti lähetetty viesti. Älä vastaa tähän viestiin.",
"Help" : "Ohje",
"Appearance and accessibility" : "Ulkoasu ja saavutettavuus",
"Apps" : "Sovellukset",
"Personal settings" : "Henkilökohtaiset asetukset",
"Administration settings" : "Ylläpitäjän asetukset",
"Settings" : "Asetukset",
"Log out" : "Kirjaudu ulos",
"Users" : "Käyttäjät",
"Email" : "Sähköposti",
"Mail %s" : "Lähetä sähköpostia %s",
"Phone" : "Puhelin",
"Call %s" : "Soita %s",
"Twitter" : "Twitter",
"View %s on Twitter" : "Näytä %s Twitterissä",
"Website" : "Verkkosivu",
"Visit %s" : "Käy sivustolla %s",
"Address" : "Osoite",
"Profile picture" : "Profiilikuva",
"About" : "Tietoja",
"Display name" : "Näyttönimi",
"Headline" : "Otsikko",
"Organisation" : "Organisaatio",
"Role" : "Rooli",
"Additional settings" : "Lisäasetukset",
"You need to enter details of an existing account." : "Anna olemassa olevan tilin tiedot.",
"Oracle connection could not be established" : "Oracle-yhteyttä ei voitu muodostaa",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "Mac OS X ei ole tuettu, joten %s ei toimi kunnolla tällä alustalla. Käytä omalla vastuulla!",
"For the best results, please consider using a GNU/Linux server instead." : "Käytä parhaan lopputuloksen saamiseksi GNU/Linux-palvelinta.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Vaikuttaa siltä, että tämä %s-instanssi toimii 32-bittisessä PHP-ympäristössä ja open_basedir-asetus on määritetty php.ini-tiedostossa. Tämä johtaa ongelmiin yli 4 gigatavun tiedostojen kanssa, eikä siksi ole suositeltavaa.",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Poista open_basedir-asetus php.ini-tiedostosta tai vaihda 64-bittiseen PHP:hen.",
"Set an admin password." : "Aseta ylläpitäjän salasana.",
"Sharing backend %s not found" : "Jakamisen taustaosaa %s ei löytynyt",
"Sharing backend for %s not found" : "Jakamisen taustaosaa kohteelle %s ei löytynyt",
"%1$s shared »%2$s« with you and wants to add:" : "%1$s jakoi kohteen »%2$s« kanssasi ja haluaa lisätä:",
"%1$s shared »%2$s« with you and wants to add" : "%1$s jakoi kohteen »%2$s« kanssasi ja haluaa lisätä",
"»%s« added a note to a file shared with you" : "»%s« lisäsi huomion jakamaasi tiedostoon",
"Open »%s«" : "Avaa »%s«",
"%1$s via %2$s" : "%1$s palvelun %2$s kautta",
"You are not allowed to share %s" : "Oikeutesi eivät riitä kohteen %s jakamiseen.",
"Cannot increase permissions of %s" : "Kohteen %s käyttöoikeuksien lisääminen ei onnistu",
"Files cannot be shared with delete permissions" : "Tiedostoja ei voi jakaa poistamisoikeuksilla",
"Files cannot be shared with create permissions" : "Tiedostoja ei voi jakaa luomisoikeuksilla",
"Expiration date is in the past" : "Vanhenemispäivä on menneisyydessä",
"_Cannot set expiration date more than %n day in the future_::_Cannot set expiration date more than %n days in the future_" : ["Vanhenemispäivän voi asettaa korkeintaan %n päivään tulevaisuuteen","Vanhenemispäivän voi asettaa korkeintaan %n päivään tulevaisuuteen"],
"Sharing is only allowed with group members" : "Jakaminen on sallittu vain ryhmäjäsenten kesken",
"%1$s shared »%2$s« with you" : "%1$s jakoi kohteen »%2$s« kanssasi",
"%1$s shared »%2$s« with you." : "%1$s jakoi kohteen »%2$s« kanssasi.",
"Click the button below to open it." : "Napsauta alla olevaa painiketta avataksesi sen.",
"The requested share does not exist anymore" : "Pyydettyä jakoa ei ole enää olemassa",
"The user was not created because the user limit has been reached. Check your notifications to learn more." : "Käyttäjää ei luotu, koska käyttäjäraja on tullut täyteen. Tarkista ilmoitukset saadaksesi lisätietoja.",
"Could not find category \"%s\"" : "Luokkaa \"%s\" ei löytynyt",
"Sunday" : "sunnuntai",
"Monday" : "maanantai",
"Tuesday" : "tiistai",
"Wednesday" : "keskiviikko",
"Thursday" : "torstai",
"Friday" : "perjantai",
"Saturday" : "lauantai",
"Sun." : "Su",
"Mon." : "Ma",
"Tue." : "Ti",
"Wed." : "Ke",
"Thu." : "To",
"Fri." : "Pe",
"Sat." : "La",
"Su" : "Su",
"Mo" : "Ma",
"Tu" : "Ti",
"We" : "Ke",
"Th" : "To",
"Fr" : "Pe",
"Sa" : "La",
"January" : "tammikuu",
"February" : "helmikuu",
"March" : "maaliskuu",
"April" : "huhtikuu",
"May" : "toukokuu",
"June" : "kesäkuu",
"July" : "heinäkuu",
"August" : "elokuu",
"September" : "syyskuu",
"October" : "lokakuu",
"November" : "marraskuu",
"December" : "joulukuu",
"Jan." : "Tammi",
"Feb." : "Helmi",
"Mar." : "Maalis",
"Apr." : "Huhti",
"May." : "Touko",
"Jun." : "Kesä",
"Jul." : "Heinä",
"Aug." : "Elo",
"Sep." : "Syys",
"Oct." : "Loka",
"Nov." : "Marras",
"Dec." : "Joulu",
"A valid password must be provided" : "Anna kelvollinen salasana",
"Login canceled by app" : "Kirjautuminen peruttiin sovelluksen toimesta",
"App \"%1$s\" cannot be installed because the following dependencies are not fulfilled: %2$s" : "Sovellusta \"%1$s\" ei voi asentaa, koska seuraavat riippuvuudet eivät täyty: %2$s",
"a safe home for all your data" : "turvallinen koti kaikille tiedostoillesi",
"File is currently busy, please try again later" : "Tiedosto on parhaillaan käytössä, yritä myöhemmin uudelleen",
"Cannot download file" : "Tiedostoa ei voi ladata",
"Application is not enabled" : "Sovellusta ei ole otettu käyttöön",
"Authentication error" : "Tunnistautumisvirhe",
"Token expired. Please reload page." : "Valtuutus vanheni. Lataa sivu uudelleen.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "Tietokanta-ajureita (sqlite, mysql tai postgresql) ei ole asennettu.",
"Cannot write into \"config\" directory." : "Ei voi kirjoittaa \"config\"-hakemistoon",
"Cannot write into \"apps\" directory." : "Ei voi kirjoittaa \"apps\"-hakemistoon",
"Cannot create \"data\" directory." : "Ei voi luoda \"data\"-hakemistoa",
"Your data directory is not writable." : "Datahakemistosi ei ole kirjoitettavissa.",
"Setting locale to %s failed." : "Maa-asetuston %s asettaminen epäonnistui.",
"Please install one of these locales on your system and restart your web server." : "Asenna ainakin yksi näistä maa-asetuksista järjestelmään ja käynnistä http-palvelin uudelleen.",
"PHP module %s not installed." : "PHP-moduulia %s ei ole asennettu.",
"Please ask your server administrator to install the module." : "Pyydä palvelimen ylläpitäjää asentamaan moduulin.",
"PHP setting \"%s\" is not set to \"%s\"." : "PHP-asetusta \"%s\" ei ole asetettu arvoon \"%s\".",
"<code>mbstring.func_overload</code> is set to <code>%s</code> instead of the expected value <code>0</code>." : "<code>mbstring.func_overload</code> on asetettu arvoon <code>%s</code> odotetun arvon <code>0</code> sijaan.",
"To fix this issue set <code>mbstring.func_overload</code> to <code>0</code> in your php.ini." : "Korjaa ongelma asettamalla ominaisuuden <code>mbstring.func_overload</code> arvoksi <code>0</code> php.ini-tiedostossa.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Tämä johtuu todennäköisesti välimuistista tai kiihdyttimestä kuten Zend OPcachesta tai eAcceleratorista.",
"PHP modules have been installed, but they are still listed as missing?" : "PHP-moduulit on asennettu, mutta ovatko ne vieläkin listattu puuttuviksi?",
"Please ask your server administrator to restart the web server." : "Pyydä palvelimen ylläpitäjää käynnistämään web-palvelin uudelleen.",
"Please ask your server administrator to check the Nextcloud configuration." : "Pyydä palvelimen ylläpitäjää tarkastamaan Nextcloudin määritykset.",
"Your data directory must be an absolute path." : "Datahakemiston tulee olla absoluuttinen polku.",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Varmista että datahakemiston juuressa on tiedosto nimeltä \".ocdata\".",
"Action \"%s\" not supported or implemented." : "Toiminto \"%s\" ei ole tuettu tai sitä ei ole toteutettu.",
"Could not obtain lock type %d on \"%s\"." : "Lukitustapaa %d ei saatu kohteelle \"%s\".",
"Storage unauthorized. %s" : "Tallennustila ei ole valtuutettu. %s",
"Storage incomplete configuration. %s" : "Tallennustilan puutteellinen määritys. %s",
"Storage connection error. %s" : "Tallennustilan yhteysvirhe. %s",
"Storage is temporarily not available" : "Tallennustila on tilapäisesti pois käytöstä",
"Storage connection timeout. %s" : "Tallennustilan yhteyden aikakatkaisu. %s",
"The files of the app %1$s were not replaced correctly. Make sure it is a version compatible with the server." : "Sovelluksen %1$s tiedostoja ei korvattu oikein Varmista, että sen versio on yhteensopiva palvelimen kanssa.",
"404" : "404",
"Logged in user must be an admin" : "Sisäänkirjautuneen käyttäjän tulee olla ylläpitäjä",
"Full name" : "Koko nimi",
"Unknown user" : "Tuntematon käyttäjä",
"MySQL username and/or password not valid" : "MySQL-käyttäjätunnus ja/tai -salasana on väärin",
"Oracle username and/or password not valid" : "Oraclen käyttäjätunnus ja/tai salasana on väärin",
"PostgreSQL username and/or password not valid" : "PostgreSQL:n käyttäjätunnus ja/tai salasana on väärin",
"Set an admin username." : "Aseta ylläpitäjän käyttäjätunnus.",
"Sharing %s failed, because this item is already shared with user %s" : "Kohteen %s jakaminen epäonnistui, koska kohde on jo jaettu käyttäjän %s kanssa",
"The username is already being used" : "Käyttäjätunnus on jo käytössä",
"Could not create user" : "Ei voitu luoda käyttäjää",
"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", spaces and \"_.@-'\"" : "Vain seuraavat merkit ovat sallittuja käyttäjätunnuksessa: \"a-z\", \"A-Z\", \"0-9\", välilyönnit ja \"_.@-'\"",
"A valid username must be provided" : "Anna kelvollinen käyttäjätunnus",
"Username contains whitespace at the beginning or at the end" : "Käyttäjätunnus sisältää tyhjätilaa joko alussa tai lopussa",
"Username must not consist of dots only" : "Käyttäjänimi ei voi koostua vain pisteistä",
"Username is invalid because files already exist for this user" : "Käyttäjänimi on virheellinen koska tiedostoja on olemassa tälle käyttäjälle",
"User disabled" : "Käyttäjä poistettu käytöstä",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "Vähintään libxml2 2.7.0 vaaditaan. %s on asennettu.",
"To fix this issue update your libxml2 version and restart your web server." : "Päivitä libxml2:n versio ja käynnistä http-palvelin uudelleen.",
"PostgreSQL >= 9 required." : "PostgreSQL >= 9 vaaditaan.",
"Please upgrade your database version." : "Päivitä tietokannan versio.",
"Your data directory is readable by other users." : "Datahakemistosi on muiden käyttäjien luettavissa."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}
+13
View File
@@ -0,0 +1,13 @@
OC.L10N.register(
"lib",
{
"Files" : "fílur",
"Email" : "T-post",
"Twitter" : "Twitter",
"Website" : "Heimasíða",
"Address" : "Adressa",
"Profile picture" : "Profil mynd",
"Authentication error" : "Samgildis feilur",
"Full name" : "Fulla navn"
},
"nplurals=2; plural=(n != 1);");
+11
View File
@@ -0,0 +1,11 @@
{ "translations": {
"Files" : "fílur",
"Email" : "T-post",
"Twitter" : "Twitter",
"Website" : "Heimasíða",
"Address" : "Adressa",
"Profile picture" : "Profil mynd",
"Authentication error" : "Samgildis feilur",
"Full name" : "Fulla navn"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}
+301
View File
@@ -0,0 +1,301 @@
OC.L10N.register(
"lib",
{
"Cannot write into \"config\" directory!" : "Impossible d’écrire dans le répertoire « config » !",
"This can usually be fixed by giving the web server write access to the config directory." : "Ce problème est généralement résolu en donnant au serveur web un accès en écriture au répertoire de configuration.",
"But, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it." : "Ou, si vous préférez conserver le fichier config.php en lecture seule, définissez l'option « config_is_read_only » sur true.",
"See %s" : "Voir %s",
"Application %1$s is not present or has a non-compatible version with this server. Please check the apps directory." : "L'application %1$s n'est pas présente ou n'est pas compatible avec cette version du serveur. Veuillez vérifier le répertoire des applications.",
"Sample configuration detected" : "Configuration d'exemple détectée",
"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "Il a été détecté que la configuration donnée à titre d'exemple a été copiée. Cela peut rendre votre installation inopérante et n'est pas pris en charge. Veuillez lire la documentation avant d'effectuer des modifications dans config.php",
"The page could not be found on the server." : "La page n'a pas pu être trouvée sur le serveur.",
"%s email verification" : "Vérification de l'e-mail %s",
"Email verification" : "Vérification de l'e-mail",
"Click the following button to confirm your email." : "Cliquez sur le bouton ci-dessous pour confirmer votre e-mail.",
"Click the following link to confirm your email." : "Cliquez sur le lien ci-dessous pour confirmer votre e-mail.",
"Confirm your email" : "Confirmer votre e-mail",
"Other activities" : "Autres activités",
"%1$s and %2$s" : "%1$s et %2$s",
"%1$s, %2$s and %3$s" : "%1$s, %2$s et %3$s",
"%1$s, %2$s, %3$s and %4$s" : "%1$s, %2$s, %3$s et %4$s",
"%1$s, %2$s, %3$s, %4$s and %5$s" : "%1$s, %2$s, %3$s, %4$s et %5$s",
"Education Edition" : "Édition pour l'éducation ",
"Enterprise bundle" : "Pack pour entreprise",
"Groupware bundle" : "Pack Groupware",
"Hub bundle" : "Pack Nextcloud Hub",
"Social sharing bundle" : "Pack pour partage social",
"PHP %s or higher is required." : "PHP %s ou supérieur est requis.",
"PHP with a version lower than %s is required." : "PHP avec une version antérieure à %s est requis.",
"%sbit or higher PHP required." : "PHP %sbits ou supérieur est requis.",
"The following architectures are supported: %s" : "Les architectures suivantes sont prises en charge : %s",
"The following databases are supported: %s" : "Les bases de données suivantes sont prises en charge : %s",
"The command line tool %s could not be found" : "La commande %s est introuvable",
"The library %s is not available." : "La librairie %s n'est pas disponible.",
"Library %1$s with a version higher than %2$s is required - available version %3$s." : "La librairie %1$s doit être au moins à la version %2$s. Version disponible : %3$s.",
"Library %1$s with a version lower than %2$s is required - available version %3$s." : "La librairie %1$s doit avoir une version antérieure à %2$s. Version disponible : %3$s.",
"The following platforms are supported: %s" : "Les plateformes suivantes sont prises en charge : %s",
"Server version %s or higher is required." : "Un serveur de version %s ou supérieure est requis.",
"Server version %s or lower is required." : "Un serveur de version %s ou inférieure est requis.",
"Logged in account must be an admin, a sub admin or gotten special right to access this setting" : "Le compte connecté doit être un administrateur, un sous-administrateur ou se voir accorder des droits spéciaux pour accéder à ce réglage",
"Logged in account must be an admin or sub admin" : "Le compte connecté doit être administrateur ou sous-administrateur",
"Logged in account must be an admin" : "Le compte connecté doit être un administrateur",
"Wiping of device %s has started" : "L'effaçage de l'appareil %s a démarré",
"Wiping of device »%s« has started" : "L'effaçage de l'appareil « %s » a démarré",
"»%s« started remote wipe" : "« %s » a démarré l'effaçage distant",
"Device or application »%s« has started the remote wipe process. You will receive another email once the process has finished" : "L'appareil ou l'application « %s » a démarré le processus d'effaçage distant. Vous recevrez un autre e-mail une fois le processus terminé",
"Wiping of device %s has finished" : "L'effaçage de l'appareil %s est terminé",
"Wiping of device »%s« has finished" : "L'effaçage de l'appareil « %s » est terminé",
"»%s« finished remote wipe" : "« %s » a terminé l'effaçage distant",
"Device or application »%s« has finished the remote wipe process." : "L'appareil ou l'application « %s » a terminé le processus d'effaçage distant.",
"Remote wipe started" : "Nettoyage à distance lancé",
"A remote wipe was started on device %s" : "Un nettoyage à distance a été lancé sur l'appareil %s",
"Remote wipe finished" : "Nettoyage à distance terminé",
"The remote wipe on %s has finished" : "Le nettoyage à distance de %s est terminé",
"Authentication" : "Authentification",
"Unknown filetype" : "Type de fichier inconnu",
"Invalid image" : "Image invalide",
"Avatar image is not square" : "L'image d'avatar n'est pas carrée",
"Files" : "Fichiers",
"View profile" : "Voir le profil",
"Local time: %s" : "Heure locale : %s",
"today" : "aujourd'hui",
"tomorrow" : "demain",
"yesterday" : "hier",
"_in %n day_::_in %n days_" : ["dans %n jour","dans %n jours","dans %n jours"],
"_%n day ago_::_%n days ago_" : ["il y a %n jour","il y a %n jours","il y a %n jours"],
"next month" : "mois suivant",
"last month" : "le mois dernier",
"_in %n month_::_in %n months_" : ["dans %n mois","dans %n mois","dans %n mois"],
"_%n month ago_::_%n months ago_" : ["Il y a %n mois","Il y a %n mois","Il y a %n mois"],
"next year" : "année suivante",
"last year" : "l'année dernière",
"_in %n year_::_in %n years_" : ["dans %n an","dans %n ans","dans %n ans"],
"_%n year ago_::_%n years ago_" : ["il y a %n an","il y a %n ans","il y a %n ans"],
"_in %n hour_::_in %n hours_" : ["dans %n heure","dans %n heures","dans %n heures"],
"_%n hour ago_::_%n hours ago_" : ["Il y a %n heure","Il y a %n heures","Il y a %n heures"],
"_in %n minute_::_in %n minutes_" : ["dans %n minute","dans %n minutes","dans %n minutes"],
"_%n minute ago_::_%n minutes ago_" : ["il y a %n minute","il y a %n minutes","il y a %n minutes"],
"in a few seconds" : "dans quelques secondes",
"seconds ago" : "il y a quelques secondes",
"Empty file" : "Fichier vide",
"Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "Le module avec l'ID: %s n'existe pas. Merci de l'activer dans les paramètres d'applications ou de contacter votre administrateur.",
"File already exists" : "Le fichier existe déjà",
"Invalid path" : "Chemin incorrect",
"Failed to create file from template" : "Impossible de créer le fichier à partir du modèle",
"Templates" : "Modèles",
"File name is a reserved word" : "Ce nom de fichier est un mot réservé",
"File name contains at least one invalid character" : "Le nom de fichier contient au moins un caractère invalide",
"File name is too long" : "Nom de fichier trop long",
"Dot files are not allowed" : "Le nom de fichier ne peut pas commencer par un point",
"Empty filename is not allowed" : "Le nom de fichier n'est pas autorisé",
"App \"%s\" cannot be installed because appinfo file cannot be read." : "L'application « %s » ne peut pas être installée car le fichier appinfo ne peut pas être lu.",
"App \"%s\" cannot be installed because it is not compatible with this version of the server." : "L'application « %s » ne peut être installée car elle n'est pas compatible avec cette version du serveur.",
"__language_name__" : "Français",
"This is an automatically sent email, please do not reply." : "Ceci est un e-mail envoyé automatiquement, veuillez ne pas y répondre.",
"Help" : "Aide",
"Appearance and accessibility" : "Apparence et accessibilité",
"Apps" : "Applications",
"Personal settings" : "Paramètres personnels",
"Administration settings" : "Paramètres d'administration",
"Settings" : "Paramètres",
"Log out" : "Se déconnecter",
"Users" : "Utilisateurs",
"Email" : "E-mail",
"Mail %s" : "Courrier %s",
"Fediverse" : "Fediverse",
"View %s on the fediverse" : "Voir %s sur le Fediverse",
"Phone" : "Téléphone",
"Call %s" : "Appel %s",
"Twitter" : "Twitter",
"View %s on Twitter" : "Voir %s sur Twitter",
"Website" : "Site web",
"Visit %s" : "Visiter %s",
"Address" : "Adresse",
"Profile picture" : "Photo de profil",
"About" : "À propos",
"Display name" : "Nom d'affichage",
"Headline" : "Titre",
"Organisation" : "Organisme",
"Role" : "Fonction",
"Unknown account" : "Compte inconnu",
"Additional settings" : "Paramètres supplémentaires",
"Enter the database Login and name for %s" : "Saisissez l'identifiant et le nom de la base de données pour %s",
"Enter the database Login for %s" : "Saisissez l'identifiant de la base de données pour %s",
"Enter the database name for %s" : "Entrez le nom de la base de données pour %s",
"You cannot use dots in the database name %s" : "Vous ne pouvez pas utiliser de points dans le nom de la base de données %s",
"MySQL Login and/or password not valid" : "Identifiant et/ou mot de passe MySQL invalide",
"You need to enter details of an existing account." : "Vous devez indiquer les détails d'un compte existant.",
"Oracle connection could not be established" : "La connexion Oracle ne peut être établie",
"Oracle Login and/or password not valid" : "Identifiant et/ou mot de passe Oracle invalide",
"PostgreSQL Login and/or password not valid" : "Identifiant et/ou mot de passe PostgreSQL invalide",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "Mac OS X n'est pas pris en charge et %s ne fonctionnera pas correctement sur cette plate-forme. Son utilisation est à vos risques et périls !",
"For the best results, please consider using a GNU/Linux server instead." : "Pour obtenir les meilleurs résultats, vous devriez utiliser un serveur GNU/Linux.",
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Il semble que cette instance %s fonctionne sur un environnement PHP 32 bits et open_basedir a été configuré dans php.ini. Cela engendre des problèmes avec les fichiers de taille supérieure à 4 Go et est donc fortement déconseillé.",
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Veuillez retirer la configuration open_basedir de votre php.ini ou utiliser une version PHP 64-bit.",
"Set an admin Login." : "Définissez un identifiant administrateur.",
"Set an admin password." : "Spécifiez un mot de passe pour l'administrateur.",
"Cannot create or write into the data directory %s" : "Impossible de créer ou d'écrire dans le répertoire des données %s",
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Le service de partage %s doit implémenter l'interface OCP\\Share_Backend",
"Sharing backend %s not found" : "Service de partage %s non trouvé",
"Sharing backend for %s not found" : "Le service de partage pour %s est introuvable",
"%1$s shared »%2$s« with you and wants to add:" : "%1$s a partagé « %2$s » avec vous et souhaite ajouter :",
"%1$s shared »%2$s« with you and wants to add" : "%1$s a partagé « %2$s » avec vous et souhaite ajouter",
"»%s« added a note to a file shared with you" : "%s a ajouté une note à un fichier partagé avec vous",
"Open »%s«" : "Ouvrir « %s »",
"%1$s via %2$s" : "%1$s via %2$s",
"You are not allowed to share %s" : "Vous n'êtes pas autorisé à partager %s",
"Cannot increase permissions of %s" : "Impossible d'augmenter les permissions de %s",
"Files cannot be shared with delete permissions" : "Les fichiers ne peuvent pas être partagés avec les autorisations de suppression",
"Files cannot be shared with create permissions" : "Les fichiers ne peuvent pas être partagés avec les autorisations de création",
"Expiration date is in the past" : "La date d'expiration est dans le passé",
"_Cannot set expiration date more than %n day in the future_::_Cannot set expiration date more than %n days in the future_" : ["Impossible de définir la date d'expiration à dans plus de %n jour","Impossible de définir la date d'expiration à dans plus de %n jours","Impossible de définir la date d'expiration à dans plus de %n jours"],
"Sharing is only allowed with group members" : "Le partage n'est que possible qu'avec les membres du groupe",
"Sharing %s failed, because this item is already shared with the account %s" : "Impossible de partager %s car il est déjà partagé avec le compte %s",
"%1$s shared »%2$s« with you" : "%1$s a partagé « %2$s » avec vous",
"%1$s shared »%2$s« with you." : "%1$s a partagé « %2$s » avec vous.",
"Click the button below to open it." : "Cliquez sur le bouton ci-dessous pour l'ouvrir",
"The requested share does not exist anymore" : "Le partage demandé n'existe plus",
"The requested share comes from a disabled user" : "Le partage demandé provient d'un utilisateur désactivé",
"The user was not created because the user limit has been reached. Check your notifications to learn more." : "L'utilisateur n'a pas été créé car la limite du nombre d'utilisateurs a été atteinte. Consultez vos notifications pour en savoir plus.",
"Could not find category \"%s\"" : "Impossible de trouver la catégorie « %s »",
"Sunday" : "Dimanche",
"Monday" : "Lundi",
"Tuesday" : "Mardi",
"Wednesday" : "Mercredi",
"Thursday" : "Jeudi",
"Friday" : "Vendredi",
"Saturday" : "Samedi",
"Sun." : "Dim.",
"Mon." : "Lun.",
"Tue." : "Mar.",
"Wed." : "Mer.",
"Thu." : "Jeu.",
"Fri." : "Ven.",
"Sat." : "Sam.",
"Su" : "Di",
"Mo" : "Lu",
"Tu" : "Ma",
"We" : "Me",
"Th" : "Je",
"Fr" : "Ve",
"Sa" : "Sa",
"January" : "Janvier",
"February" : "Février",
"March" : "Mars",
"April" : "Avril",
"May" : "Mai",
"June" : "Juin",
"July" : "Juillet",
"August" : "Août",
"September" : "Septembre",
"October" : "Octobre",
"November" : "Novembre",
"December" : "Décembre",
"Jan." : "Jan.",
"Feb." : "Fév.",
"Mar." : "Mars",
"Apr." : "Avr.",
"May." : "Mai",
"Jun." : "Juin",
"Jul." : "Juil.",
"Aug." : "Août",
"Sep." : "Sep.",
"Oct." : "Oct.",
"Nov." : "Nov.",
"Dec." : "Déc.",
"A valid password must be provided" : "Un mot de passe valide doit être saisi",
"The Login is already being used" : "L'identifiant est déjà utilisé",
"Could not create account" : "Impossible de créer le compte",
"Only the following characters are allowed in an Login: \"a-z\", \"A-Z\", \"0-9\", spaces and \"_.@-'\"" : "Seuls les caractères suivants sont autorisés dans un identifiant : \"a-z\", \"A-Z\", \"0-9\", espaces et \"_.@-'\"",
"A valid Login must be provided" : "Un identifiant valide doit être saisi",
"Login contains whitespace at the beginning or at the end" : "L'identifiant contient des espaces au début ou à la fin",
"Login must not consist of dots only" : "L'identifiant ne doit pas être composé uniquement de points",
"Login is invalid because files already exist for this user" : "Lidentifiant n'est pas valide car des fichiers existent déjà pour cet utilisateur",
"Account disabled" : "Compte désactivé",
"Login canceled by app" : "L'authentification a été annulée par l'application",
"App \"%1$s\" cannot be installed because the following dependencies are not fulfilled: %2$s" : "L'application « %1$s » ne peut pas être installée à cause des dépendances suivantes non satisfaites : %2$s",
"a safe home for all your data" : "un lieu sûr pour toutes vos données",
"File is currently busy, please try again later" : "Le fichier est actuellement utilisé, veuillez réessayer plus tard",
"Cannot download file" : "Impossible de télécharger le fichier",
"Application is not enabled" : "L'application n'est pas activée",
"Authentication error" : "Erreur d'authentification",
"Token expired. Please reload page." : "La session a expiré. Veuillez recharger la page.",
"No database drivers (sqlite, mysql, or postgresql) installed." : "Aucun pilote de base de données nest installé (sqlite, mysql ou postgresql).",
"Cannot write into \"config\" directory." : "Impossible d’écrire dans le répertoire « config ».",
"This can usually be fixed by giving the web server write access to the config directory. See %s" : "Ce problème est généralement résolu en donnant au serveur web un accès en écriture au répertoire « config ». Voir %s",
"Or, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it. See %s" : "Ou, si vous préférez conserver le fichier config.php en lecture seule, définissez l'option « config_is_read_only » sur true. Voir %s",
"Cannot write into \"apps\" directory." : "Impossible d'écrire dans le répertoire « apps ».",
"This can usually be fixed by giving the web server write access to the apps directory or disabling the App Store in the config file." : "Ce problème est généralement résolu en donnant au serveur web un accès en écriture au répertoire des applications ou en désactivant le magasin d'applications dans le fichier de configuration.",
"Cannot create \"data\" directory." : "Impossible de créer le dossier \"data\".",
"This can usually be fixed by giving the web server write access to the root directory. See %s" : "Ce problème est généralement résolu en donnant au serveur web un accès en écriture au répertoire racine. Voir %s",
"Permissions can usually be fixed by giving the web server write access to the root directory. See %s." : "Le problème de permissions peut généralement être résolu en donnant au serveur web un accès en écriture au répertoire racine. Voir %s.",
"Your data directory is not writable." : "Votre répertoire des données n'est pas accessible en écriture.",
"Setting locale to %s failed." : "Échec de la spécification des paramètres régionaux à %s.",
"Please install one of these locales on your system and restart your web server." : "Veuillez installer l'un de ces paramètres régionaux sur votre système et redémarrer votre serveur web.",
"PHP module %s not installed." : "Le module PHP %s nest pas installé.",
"Please ask your server administrator to install the module." : "Veuillez demander à votre administrateur dinstaller le module.",
"PHP setting \"%s\" is not set to \"%s\"." : "Le paramètre PHP « %s » n'est pas « %s ».",
"Adjusting this setting in php.ini will make Nextcloud run again" : "Ajuster ce paramètre dans php.ini fera fonctionner Nextcould à nouveau",
"<code>mbstring.func_overload</code> is set to <code>%s</code> instead of the expected value <code>0</code>." : "<code>mbstring.func_overload</code> est défini à <code>%s</code> alors que la valeur <code>0</code> est attendue.",
"To fix this issue set <code>mbstring.func_overload</code> to <code>0</code> in your php.ini." : "Pour corriger ce problème définissez <code>mbstring.func_overload</code> à <code>0</code> dans votre php.ini.",
"PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "PHP semble configuré de manière à supprimer les blocs PHPdoc du code. Cela rendra plusieurs applications de base inaccessibles.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "La raison est probablement l'utilisation d'un cache / accélérateur tel que Zend OPcache ou eAccelerator.",
"PHP modules have been installed, but they are still listed as missing?" : "Les modules PHP ont été installés mais sont toujours indiqués comme manquants ?",
"Please ask your server administrator to restart the web server." : "Veuillez demander à votre administrateur serveur de redémarrer le serveur web.",
"The required %s config variable is not configured in the config.php file." : "La valeur de configuration requise %s n'est pas configurée dans votre fichier config.php.",
"Please ask your server administrator to check the Nextcloud configuration." : "Veuillez demander à votre administrateur serveur de vérifier la configuration de Nextcloud.",
"Your data directory is readable by other people." : "Votre répertoire de données est lisible par d'autres personnes.",
"Please change the permissions to 0770 so that the directory cannot be listed by other people." : "Veuillez changer les permissions du répertoire en mode 0770 afin que son contenu ne puisse pas être listé par les autres personnes.",
"Your data directory must be an absolute path." : "Le chemin de votre répertoire doit être un chemin absolu.",
"Check the value of \"datadirectory\" in your configuration." : "Verifiez la valeur de \"datadirectory\" dans votre configuration.",
"Your data directory is invalid." : "Votre répertoire des données n'est pas valide.",
"Ensure there is a file called \".ocdata\" in the root of the data directory." : "Assurez-vous que le répertoire de données contient un fichier \".ocdata\" à sa racine.",
"Action \"%s\" not supported or implemented." : "Action \"%s\" non supportée ou implémentée.",
"Authentication failed, wrong token or provider ID given" : "Échec de l'authentification, jeton erroné ou identification du fournisseur donnée",
"Parameters missing in order to complete the request. Missing Parameters: \"%s\"" : "Paramètres manquants pour compléter la requête. Paramètres manquants : \"%s\"",
"ID \"%1$s\" already used by cloud federation provider \"%2$s\"" : "L'identifiant \"%1$s\" est déjà utilisé par l'instance de Cloud Fédéré \"%2$s\"",
"Cloud Federation Provider with ID: \"%s\" does not exist." : "L'instance de Cloud Fédéré dont l'identifiant est \"%s\" n'existe pas.",
"Could not obtain lock type %d on \"%s\"." : "Impossible d'obtenir le verrouillage de type %d sur « %s ».",
"Storage unauthorized. %s" : "Espace de stockage non autorisé. %s",
"Storage incomplete configuration. %s" : "Configuration de l'espace de stockage incomplète. %s",
"Storage connection error. %s" : "Erreur de connexion à l'espace stockage. %s",
"Storage is temporarily not available" : "Le support de stockage est temporairement indisponible",
"Storage connection timeout. %s" : "Le délai d'attente pour la connexion à l'espace de stockage a été dépassé. %s",
"Free prompt" : "Prompt",
"Runs an arbitrary prompt through the language model." : "Exécute une commande arbitraire via le modèle de langage.",
"Generate headline" : "Générer un titre",
"Generates a possible headline for a text." : "Génère un titre possible pour un texte.",
"Summarize" : "Résumer",
"Summarizes text by reducing its length without losing key information." : "Résume un texte en réduisant sa longueur sans perdre d'informations essentielles.",
"Extract topics" : "Extraire des thèmes",
"Extracts topics from a text and outputs them separated by commas." : "Extrait les thèmes d'un texte et les restitue séparés par des virgules.",
"The files of the app %1$s were not replaced correctly. Make sure it is a version compatible with the server." : "Les fichiers de l'application %1$s n'ont pas été remplacés correctement. Veuillez vérifier que c'est une version compatible avec le serveur.",
"404" : "404",
"Logged in user must be an admin, a sub admin or gotten special right to access this setting" : "L'utilisateur connecté doit être un administrateur, un sous-administrateur ou se voir accorder des droits spéciaux pour accéder à ce réglage",
"Logged in user must be an admin or sub admin" : "L'utilisateur connecté doit être administrateur ou sous-administrateur",
"Logged in user must be an admin" : "L'utilisateur connecté doit être un administrateur",
"Full name" : "Nom complet",
"Unknown user" : "Utilisateur inconnu",
"Enter the database username and name for %s" : "Entrez le nom d'utilisateur et le nom de la base de données pour %s",
"Enter the database username for %s" : "Entrez le nom d'utilisateur de la base de données pour %s",
"MySQL username and/or password not valid" : "Nom d'utilisateur et/ou mot de passe de la base MySQL non valide(s)",
"Oracle username and/or password not valid" : "Nom d'utilisateur et/ou mot de passe de la base Oracle non valide(s)",
"PostgreSQL username and/or password not valid" : "Nom d'utilisateur et/ou mot de passe de la base PostgreSQL non valide(s)",
"Set an admin username." : "Spécifiez un nom d'utilisateur pour l'administrateur.",
"Sharing %s failed, because this item is already shared with user %s" : "Impossible de partager %s car il est déjà partagé avec l'utilisateur %s",
"The username is already being used" : "Ce nom d'utilisateur est déjà utilisé",
"Could not create user" : "Impossible de créer l'utilisateur",
"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", spaces and \"_.@-'\"" : "Seuls les caractères suivants sont autorisés dans un nom d'utilisateur : \"a-z\", \"A-Z\", \"0-9\", espaces et \"_.@-'\"",
"A valid username must be provided" : "Un nom d'utilisateur valide doit être saisi",
"Username contains whitespace at the beginning or at the end" : "Le nom d'utilisateur contient des espaces au début ou à la fin",
"Username must not consist of dots only" : "Le nom d'utilisateur ne doit pas être composé uniquement de points",
"Username is invalid because files already exist for this user" : "Ce nom d'utilisateur n'est pas valide car des fichiers existent déjà pour cet utilisateur",
"User disabled" : "Utilisateur désactivé",
"libxml2 2.7.0 is at least required. Currently %s is installed." : "libxml2 2.7.0 au moins est requis. Actuellement %s est installé.",
"To fix this issue update your libxml2 version and restart your web server." : "Pour régler ce problème, mettez à jour votre version de libxml2 et redémarrez votre serveur web.",
"PostgreSQL >= 9 required." : "PostgreSQL >= 9 requis.",
"Please upgrade your database version." : "Veuillez mettre à jour votre gestionnaire de base de données.",
"Your data directory is readable by other users." : "Votre répertoire est lisible par d'autres utilisateurs.",
"Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Veuillez changer les permissions du répertoire en mode 0770 afin que son contenu ne puisse pas être listé par les autres utilisateurs."
},
"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");

Some files were not shown because too many files have changed in this diff Show More