Compare commits

..

20 Commits

Author SHA1 Message Date
Josh 0de4631714 chore: normalize trailing slash handling
Signed-off-by: Josh <josh.t.richards@gmail.com>
2026-01-10 12:13:46 -05:00
Josh ff6d2fc353 refactor(Filesystem): use PathHelper for canonical normalization
Signed-off-by: Josh <josh.t.richards@gmail.com>
2026-01-09 22:22:53 -05:00
Nextcloud bot d341c2011f fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2026-01-10 00:27:12 +00:00
Raphael Gradenwitz 7eea3b7742 Merge pull request #55433 from nextcloud/ernolf/enh/http2-brotli-client
perf(client): enable HTTP/2 and brotli support in internal HTTP client
2026-01-10 01:09:17 +01:00
Raphael Gradenwitz 7c526b4de3 Merge branch 'master' into ernolf/enh/http2-brotli-client 2026-01-10 00:00:47 +01:00
Sebastian Krupinski 635e26dfdc Merge pull request #57231 from nextcloud/feat/restrict-calendar-invitation-users
feat: restrict calendar invitation participants
2026-01-09 13:42:12 -05:00
Robin Appelman c2cd236411 Merge pull request #57191 from nextcloud/dav-x-user-id
feat: also send x-user-id for dav responses
2026-01-09 18:43:36 +01:00
SebastianKrupinski acfec22652 feat: restrict calendar invitation participants
Signed-off-by: SebastianKrupinski <krupinskis05@gmail.com>
2026-01-09 12:07:18 -05:00
Robin Appelman 328a4608aa Merge pull request #57454 from nextcloud/fix/session/handle-null-logger
fix(session): handle null logger
2026-01-09 17:51:04 +01:00
Christoph Wurst 7e188433a1 fix(session): handle null logger
Signed-off-by: Christoph Wurst <1374172+ChristophWurst@users.noreply.github.com>
2026-01-09 16:42:39 +01:00
Benjamin Gaussorgues acb3e68a93 Merge pull request #56725 from nextcloud/rakekniven-patch-3 2026-01-09 14:38:37 +01:00
nextcloud-command fbb551311e chore(assets): Recompile assets
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2026-01-09 09:24:00 +00:00
rakekniven c2ae99a668 chore(i18n): Remove strings from i18n and adapted casing
Reported at Transifex

Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com>
Signed-off-by: Benjamin Gaussorgues <benjamin.gaussorgues@nextcloud.com>
2026-01-09 10:13:22 +01:00
ernolf 932523e844 style(tests): apply cs-fixer formatting to ClientTest
Signed-off-by: ernolf <raphael.gradenwitz@googlemail.com>
2026-01-09 01:29:59 +01:00
Nextcloud bot 6fd76bfa0e fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2026-01-09 00:14:00 +00:00
Raphael Gradenwitz 510c203dfe Merge branch 'master' into ernolf/enh/http2-brotli-client
Signed-off-by: Raphael Gradenwitz <39901936+ernolf@users.noreply.github.com>
2026-01-08 21:02:07 +01:00
Robin Appelman 69249a3ce3 feat: also send x-user-id for dav responses
Signed-off-by: Robin Appelman <robin@icewind.nl>
2025-12-19 18:20:01 +01:00
ernolf b6ea2bc0f5 refactor(http-client): use direct HTTP/2 cURL hint and align tests
Signed-off-by: ernolf <raphael.gradenwitz@googlemail.com>
2025-10-22 12:17:17 +02:00
ernolf 65aa731ef3 test: add unit test for Accept-Encoding with Brotli support
Signed-off-by: ernolf <raphael.gradenwitz@googlemail.com>
2025-09-30 18:01:38 +02:00
ernolf 812f12ecc4 perf(client): enable HTTP/2 and brotli support in internal HTTP client
- Prefer HTTP/2 by setting RequestOptions::VERSION => "2.0" so clients
  that respect PSR-7 request version will prefer HTTP/2.
- Add a curl hint (CURLOPT_HTTP_VERSION) to prefer HTTP/2 via ALPN
  (CURL_HTTP_VERSION_2TLS or CURL_HTTP_VERSION_2_0 fallback) while allowing
  automatic fallback to HTTP/1.1.
- Advertise Brotli ("br") in Accept-Encoding when the php-brotli extension
  is available (detected via function_exists('brotli_uncompress')), otherwise
  fall back to gzip.

Notes:
- The PSR-7 request version is used as a hint for HTTP client libraries;
  setting the version to "2.0" signals a preference for HTTP/2 at the request
  abstraction level.
- The curl option is defensive: it prefers HTTP/2 where libcurl supports it
  (via ALPN), but will not break on older libcurl/builds (uses defined()).

Compatibility:
- Fully backwards compatible: if the php-brotli extension is not present,
  no Brotli usage will occur and behaviour remains equivalent to previous
  (gzip).

Signed-off-by: ernolf <raphael.gradenwitz@googlemail.com>
2025-09-30 17:01:07 +02:00
188 changed files with 855 additions and 386 deletions
@@ -254,6 +254,7 @@ return array(
'OCA\\DAV\\Connector\\Sabre\\SharesPlugin' => $baseDir . '/../lib/Connector/Sabre/SharesPlugin.php',
'OCA\\DAV\\Connector\\Sabre\\TagList' => $baseDir . '/../lib/Connector/Sabre/TagList.php',
'OCA\\DAV\\Connector\\Sabre\\TagsPlugin' => $baseDir . '/../lib/Connector/Sabre/TagsPlugin.php',
'OCA\\DAV\\Connector\\Sabre\\UserIdHeaderPlugin' => $baseDir . '/../lib/Connector/Sabre/UserIdHeaderPlugin.php',
'OCA\\DAV\\Connector\\Sabre\\ZipFolderPlugin' => $baseDir . '/../lib/Connector/Sabre/ZipFolderPlugin.php',
'OCA\\DAV\\Controller\\BirthdayCalendarController' => $baseDir . '/../lib/Controller/BirthdayCalendarController.php',
'OCA\\DAV\\Controller\\DirectController' => $baseDir . '/../lib/Controller/DirectController.php',
@@ -269,6 +269,7 @@ class ComposerStaticInitDAV
'OCA\\DAV\\Connector\\Sabre\\SharesPlugin' => __DIR__ . '/..' . '/../lib/Connector/Sabre/SharesPlugin.php',
'OCA\\DAV\\Connector\\Sabre\\TagList' => __DIR__ . '/..' . '/../lib/Connector/Sabre/TagList.php',
'OCA\\DAV\\Connector\\Sabre\\TagsPlugin' => __DIR__ . '/..' . '/../lib/Connector/Sabre/TagsPlugin.php',
'OCA\\DAV\\Connector\\Sabre\\UserIdHeaderPlugin' => __DIR__ . '/..' . '/../lib/Connector/Sabre/UserIdHeaderPlugin.php',
'OCA\\DAV\\Connector\\Sabre\\ZipFolderPlugin' => __DIR__ . '/..' . '/../lib/Connector/Sabre/ZipFolderPlugin.php',
'OCA\\DAV\\Controller\\BirthdayCalendarController' => __DIR__ . '/..' . '/../lib/Controller/BirthdayCalendarController.php',
'OCA\\DAV\\Controller\\DirectController' => __DIR__ . '/..' . '/../lib/Controller/DirectController.php',
@@ -126,6 +126,18 @@ class IMipPlugin extends SabreIMipPlugin {
$iTipMessage->scheduleStatus = '5.0; EMail delivery failed';
return;
}
// Check if external attendees are disabled
$externalAttendeesDisabled = $this->config->getValueBool('dav', 'caldav_external_attendees_disabled', false);
if ($externalAttendeesDisabled && !$this->imipService->isSystemUser($recipient)) {
$this->logger->debug('Invitation not sent to external attendee (external attendees disabled)', [
'uid' => $iTipMessage->uid,
'attendee' => $recipient,
]);
$iTipMessage->scheduleStatus = '5.0; External attendees are disabled';
return;
}
$recipientName = $iTipMessage->recipientName ? (string)$iTipMessage->recipientName : null;
$newEvents = $iTipMessage->message;
@@ -875,6 +875,16 @@ class IMipService {
return $dtStart->getDateTime()->getTimeStamp();
}
/**
* Check if an email address belongs to a system user
*
* @param string $email
* @return bool True if the email belongs to a system user, false otherwise
*/
public function isSystemUser(string $email): bool {
return !empty($this->userManager->getByEmail($email));
}
/**
* @param Property $attendee
*/
@@ -103,6 +103,7 @@ class ServerFactory {
$server->addPlugin(new LockPlugin());
$server->addPlugin(new RequestIdHeaderPlugin($this->request));
$server->addPlugin(new UserIdHeaderPlugin($this->userSession));
$server->addPlugin(new ZipFolderPlugin(
$tree,
@@ -0,0 +1,36 @@
<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\DAV\Connector\Sabre;
use OCP\IUserSession;
use Sabre\HTTP\RequestInterface;
use Sabre\HTTP\ResponseInterface;
class UserIdHeaderPlugin extends \Sabre\DAV\ServerPlugin {
public function __construct(
private readonly IUserSession $userSession,
) {
}
public function initialize(\Sabre\DAV\Server $server): void {
$server->on('afterMethod:*', [$this, 'afterMethod']);
}
/**
* Add the request id as a header in the response
*
* @param RequestInterface $request request
* @param ResponseInterface $response response
*/
public function afterMethod(RequestInterface $request, ResponseInterface $response): void {
if ($user = $this->userSession->getUser()) {
$response->setHeader('X-User-Id', $user->getUID());
}
}
}
+2
View File
@@ -51,6 +51,7 @@ use OCA\DAV\Connector\Sabre\QuotaPlugin;
use OCA\DAV\Connector\Sabre\RequestIdHeaderPlugin;
use OCA\DAV\Connector\Sabre\SharesPlugin;
use OCA\DAV\Connector\Sabre\TagsPlugin;
use OCA\DAV\Connector\Sabre\UserIdHeaderPlugin;
use OCA\DAV\Connector\Sabre\ZipFolderPlugin;
use OCA\DAV\DAV\CustomPropertiesBackend;
use OCA\DAV\DAV\PublicAuth;
@@ -244,6 +245,7 @@ class Server {
// performance improvement plugins
$this->server->addPlugin(new CopyEtagHeaderPlugin());
$this->server->addPlugin(new RequestIdHeaderPlugin(\OCP\Server::get(IRequest::class)));
$this->server->addPlugin(new UserIdHeaderPlugin(\OCP\Server::get(IUserSession::class)));
$this->server->addPlugin(new UploadAutoMkcolPlugin());
$this->server->addPlugin(new ChunkingV2Plugin(\OCP\Server::get(ICacheFactory::class)));
$this->server->addPlugin(new ChunkingPlugin());
@@ -130,6 +130,10 @@ class IMipPluginTest extends TestCase {
$message->senderName = 'Mr. Wizard';
$message->recipient = 'mailto:' . 'frodo@hobb.it';
$message->significantChange = false;
$this->config->expects(self::never())
->method('getValueBool');
$this->plugin->schedule($message);
$this->assertEquals('1.0', $message->getScheduleStatus());
}
@@ -177,6 +181,12 @@ class IMipPluginTest extends TestCase {
$this->service->expects(self::once())
->method('getLastOccurrence')
->willReturn(1496912700);
$this->config->expects(self::exactly(2))
->method('getValueBool')
->willReturnMap([
['dav', 'caldav_external_attendees_disabled', false, false],
['core', 'mail_providers_enabled', true, false],
]);
$this->eventComparisonService->expects(self::once())
->method('findModified')
->willReturn(['new' => [$newVevent], 'old' => [$oldVEvent]]);
@@ -280,6 +290,10 @@ class IMipPluginTest extends TestCase {
$this->service->expects(self::once())
->method('getLastOccurrence')
->willReturn(1496912700);
$this->config->expects(self::once())
->method('getValueBool')
->with('dav', 'caldav_external_attendees_disabled', false)
->willReturn(false);
$this->eventComparisonService->expects(self::once())
->method('findModified')
->willReturn(['new' => [$newVevent], 'old' => [$oldVEvent]]);
@@ -354,6 +368,10 @@ class IMipPluginTest extends TestCase {
$this->service->expects(self::once())
->method('getLastOccurrence')
->willReturn(1496912700);
$this->config->expects(self::once())
->method('getValueBool')
->with('dav', 'caldav_external_attendees_disabled', false)
->willReturn(false);
$this->eventComparisonService->expects(self::once())
->method('findModified')
->willReturn(['new' => [$newVevent], 'old' => null]);
@@ -455,6 +473,12 @@ class IMipPluginTest extends TestCase {
$this->service->expects(self::once())
->method('getLastOccurrence')
->willReturn(1496912700);
$this->config->expects(self::exactly(2))
->method('getValueBool')
->willReturnMap([
['dav', 'caldav_external_attendees_disabled', false, false],
['core', 'mail_providers_enabled', true, false],
]);
$this->eventComparisonService->expects(self::once())
->method('findModified')
->willReturn(['old' => [] ,'new' => [$newVevent]]);
@@ -695,6 +719,12 @@ class IMipPluginTest extends TestCase {
$this->service->expects(self::once())
->method('getLastOccurrence')
->willReturn(1496912700);
$this->config->expects(self::exactly(2))
->method('getValueBool')
->willReturnMap([
['dav', 'caldav_external_attendees_disabled', false, false],
['core', 'mail_providers_enabled', true, true],
]);
$this->service->expects(self::once())
->method('getCurrentAttendee')
->with($message)
@@ -837,10 +867,12 @@ class IMipPluginTest extends TestCase {
->method('getValueString')
->with('dav', 'invitation_link_recipients', 'yes')
->willReturn('yes');
$this->config->expects(self::once())
$this->config->expects(self::exactly(2))
->method('getValueBool')
->with('core', 'mail_providers_enabled', true)
->willReturn(false);
->willReturnMap([
['dav', 'caldav_external_attendees_disabled', false, false],
['core', 'mail_providers_enabled', true, false],
]);
$this->service->expects(self::once())
->method('createInvitationToken')
->with($message, $newVevent, 1496912700)
@@ -888,6 +920,12 @@ class IMipPluginTest extends TestCase {
$this->service->expects(self::once())
->method('getLastOccurrence')
->willReturn(1496912700);
$this->config->expects(self::exactly(2))
->method('getValueBool')
->willReturnMap([
['dav', 'caldav_external_attendees_disabled', false, false],
['core', 'mail_providers_enabled', true, false],
]);
$this->eventComparisonService->expects(self::once())
->method('findModified')
->with($newVCalendar, null)
@@ -981,6 +1019,12 @@ class IMipPluginTest extends TestCase {
$this->service->expects(self::once())
->method('getLastOccurrence')
->willReturn(1496912700);
$this->config->expects(self::exactly(2))
->method('getValueBool')
->willReturnMap([
['dav', 'caldav_external_attendees_disabled', false, false],
['core', 'mail_providers_enabled', true, false],
]);
$this->eventComparisonService->expects(self::once())
->method('findModified')
->with($newVCalendar, null)
@@ -1040,4 +1084,156 @@ class IMipPluginTest extends TestCase {
$this->plugin->schedule($message);
$this->assertEquals('1.1', $message->getScheduleStatus());
}
public function testExternalAttendeesDisabledForExternalUser(): void {
$message = new Message();
$message->method = 'REQUEST';
$newVCalendar = new VCalendar();
$newVevent = new VEvent($newVCalendar, 'one', array_merge([
'UID' => 'uid-1234',
'SEQUENCE' => 1,
'SUMMARY' => 'Fellowship meeting',
'DTSTART' => new \DateTime('2016-01-01 00:00:00')
], []));
$newVevent->add('ORGANIZER', 'mailto:gandalf@wiz.ard');
$newVevent->add('ATTENDEE', 'mailto:external@example.com', ['RSVP' => 'TRUE', 'CN' => 'External User']);
$message->message = $newVCalendar;
$message->sender = 'mailto:gandalf@wiz.ard';
$message->senderName = 'Mr. Wizard';
$message->recipient = 'mailto:external@example.com';
$this->service->expects(self::once())
->method('getLastOccurrence')
->willReturn(1496912700);
$this->config->expects(self::once())
->method('getValueBool')
->with('dav', 'caldav_external_attendees_disabled', false)
->willReturn(true);
$this->service->expects(self::once())
->method('isSystemUser')
->with('external@example.com')
->willReturn(false);
$this->eventComparisonService->expects(self::never())
->method('findModified');
$this->service->expects(self::never())
->method('getCurrentAttendee');
$this->mailer->expects(self::never())
->method('send');
$this->plugin->schedule($message);
$this->assertEquals('5.0', $message->getScheduleStatus());
}
public function testExternalAttendeesDisabledForSystemUser(): void {
$message = new Message();
$message->method = 'REQUEST';
$newVCalendar = new VCalendar();
$newVevent = new VEvent($newVCalendar, 'one', array_merge([
'UID' => 'uid-1234',
'SEQUENCE' => 1,
'SUMMARY' => 'Fellowship meeting',
'DTSTART' => new \DateTime('2016-01-01 00:00:00')
], []));
$newVevent->add('ORGANIZER', 'mailto:gandalf@wiz.ard');
$newVevent->add('ATTENDEE', 'mailto:frodo@hobb.it', ['RSVP' => 'TRUE', 'CN' => 'Frodo']);
$message->message = $newVCalendar;
$message->sender = 'mailto:gandalf@wiz.ard';
$message->senderName = 'Mr. Wizard';
$message->recipient = 'mailto:frodo@hobb.it';
$oldVCalendar = new VCalendar();
$oldVEvent = new VEvent($oldVCalendar, 'one', [
'UID' => 'uid-1234',
'SEQUENCE' => 0,
'SUMMARY' => 'Fellowship meeting',
'DTSTART' => new \DateTime('2016-01-01 00:00:00')
]);
$oldVEvent->add('ORGANIZER', 'mailto:gandalf@wiz.ard');
$oldVEvent->add('ATTENDEE', 'mailto:frodo@hobb.it', ['RSVP' => 'TRUE', 'CN' => 'Frodo']);
$oldVCalendar->add($oldVEvent);
$data = ['invitee_name' => 'Mr. Wizard',
'meeting_title' => 'Fellowship meeting',
'attendee_name' => 'frodo@hobb.it'
];
$attendees = $newVevent->select('ATTENDEE');
$atnd = '';
foreach ($attendees as $attendee) {
if (strcasecmp($attendee->getValue(), $message->recipient) === 0) {
$atnd = $attendee;
}
}
$this->plugin->setVCalendar($oldVCalendar);
$this->service->expects(self::once())
->method('getLastOccurrence')
->willReturn(1496912700);
$this->config->expects(self::exactly(2))
->method('getValueBool')
->willReturnMap([
['dav', 'caldav_external_attendees_disabled', false, true],
['core', 'mail_providers_enabled', true, false],
]);
$this->service->expects(self::once())
->method('isSystemUser')
->with('frodo@hobb.it')
->willReturn(true);
$this->eventComparisonService->expects(self::once())
->method('findModified')
->willReturn(['new' => [$newVevent], 'old' => [$oldVEvent]]);
$this->service->expects(self::once())
->method('getCurrentAttendee')
->with($message)
->willReturn($atnd);
$this->service->expects(self::once())
->method('isRoomOrResource')
->with($atnd)
->willReturn(false);
$this->service->expects(self::once())
->method('isCircle')
->with($atnd)
->willReturn(false);
$this->service->expects(self::once())
->method('buildBodyData')
->with($newVevent, $oldVEvent)
->willReturn($data);
$this->user->expects(self::any())
->method('getUID')
->willReturn('user1');
$this->user->expects(self::any())
->method('getDisplayName')
->willReturn('Mr. Wizard');
$this->userSession->expects(self::any())
->method('getUser')
->willReturn($this->user);
$this->service->expects(self::once())
->method('getFrom');
$this->service->expects(self::once())
->method('addSubjectAndHeading')
->with($this->emailTemplate, 'request', 'Mr. Wizard', 'Fellowship meeting', true);
$this->service->expects(self::once())
->method('addBulletList')
->with($this->emailTemplate, $newVevent, $data);
$this->service->expects(self::once())
->method('getAttendeeRsvpOrReqForParticipant')
->willReturn(true);
$this->config->expects(self::once())
->method('getValueString')
->with('dav', 'invitation_link_recipients', 'yes')
->willReturn('yes');
$this->service->expects(self::once())
->method('createInvitationToken')
->with($message, $newVevent, 1496912700)
->willReturn('token');
$this->service->expects(self::once())
->method('addResponseButtons')
->with($this->emailTemplate, 'token');
$this->service->expects(self::once())
->method('addMoreOptionsButton')
->with($this->emailTemplate, 'token');
$this->mailer->expects(self::once())
->method('send')
->willReturn([]);
$this->plugin->schedule($message);
$this->assertEquals('1.1', $message->getScheduleStatus());
}
}
@@ -161,6 +161,31 @@ class IMipServiceTest extends TestCase {
$this->assertEquals($expected, $actual);
}
public function testIsSystemUserWhenUserExists(): void {
$email = 'user@example.com';
$user = $this->createMock(\OCP\IUser::class);
$this->userManager->expects(self::once())
->method('getByEmail')
->with($email)
->willReturn([$user]);
$result = $this->service->isSystemUser($email);
$this->assertTrue($result);
}
public function testIsSystemUserWhenUserDoesNotExist(): void {
$email = 'external@example.com';
$this->userManager->expects(self::once())
->method('getByEmail')
->with($email)
->willReturn([]);
$result = $this->service->isSystemUser($email);
$this->assertFalse($result);
}
public function testBuildBodyDataCreated(): void {
// construct l10n return(s)
+11
View File
@@ -11,7 +11,18 @@ OC.L10N.register(
"Federation" : "Federazioa",
"Federation allows you to connect with other trusted servers to exchange the account directory." : "Federazioak fidagarriak diren beste zerbitzariekin kontu-direktorioa konektatzea ahalbidetzen dizu.",
"Federation allows you to connect with other trusted servers to exchange the account directory. For example this will be used to auto-complete external accounts for federated sharing." : "Federazioaren bidez fidagarriak diren zerbitzariekin kontu-direktorioa trukatzeko aukera dago. Adibidez, kanpo erabiltzaileak automatikoki betetzeko erabil daiteke, federatze partekatuan. ",
"Could not add trusted server. Please try again later." : "Ezin izan da gehitu zerbitzari fidagarria. Saiatu beranduago.",
"Add trusted server" : "Gehitu zerbitzari fidagarria",
"Server url" : "Zerbitzariaren URLa",
"Add" : "Gehitu",
"Server ok" : "Zerbitzaria ondo dago",
"User list was exchanged at least once successfully with the remote server." : "Erabiltzaileen zerrenda gutxienez behin trukatu da urruneko zerbitzariarekin.",
"Server pending" : "Zerbitzariaren zain",
"Waiting for shared secret or initial user list exchange." : "Sekretu partekatua edo hasierako erabiltzaileen zerrenda trukatzearen zain.",
"Server access revoked" : "Zerbitzariaren sarbidea ezeztatuta",
"Server failure" : "Zerbitzariaren hutsegitea",
"Connection to the remote server failed or the remote server is misconfigured." : "Urruneko zerbitzariarekin konektatzeak huts egin du edo urruneko zerbitzaria gaizki konfiguratuta dago.",
"Failed to delete trusted server. Please try again later." : "Huts egin du zerbitzari fidagarria ezabatu. Saiatu berriro geroago.",
"Delete" : "Ezabatu",
"Federation allows you to connect with other trusted servers to exchange the account directory. For example this will be used to auto-complete external accounts for federated sharing. It is not necessary to add a server as trusted server in order to create a federated share." : "Federazioaren bidez fidagarriak diren zerbitzariekin kontu-direktorioa trukatzeko aukera dago. Adibidez, kanpo erabiltzaileak automatikoki betetzeko erabil daiteke, federatze partekatuan. Federatze partekatua egiteko ez da beharrezkoa zerbitzari bat gehitzea zerbitzari fidagarri gisa.",
"Each server must validate the other. This process may require a few cron cycles." : "Zerbitzari bakoitza bestea balioztatu behar du. Prozesu honek cron ziklo batzuk beharko ditu.",
+11
View File
@@ -9,7 +9,18 @@
"Federation" : "Federazioa",
"Federation allows you to connect with other trusted servers to exchange the account directory." : "Federazioak fidagarriak diren beste zerbitzariekin kontu-direktorioa konektatzea ahalbidetzen dizu.",
"Federation allows you to connect with other trusted servers to exchange the account directory. For example this will be used to auto-complete external accounts for federated sharing." : "Federazioaren bidez fidagarriak diren zerbitzariekin kontu-direktorioa trukatzeko aukera dago. Adibidez, kanpo erabiltzaileak automatikoki betetzeko erabil daiteke, federatze partekatuan. ",
"Could not add trusted server. Please try again later." : "Ezin izan da gehitu zerbitzari fidagarria. Saiatu beranduago.",
"Add trusted server" : "Gehitu zerbitzari fidagarria",
"Server url" : "Zerbitzariaren URLa",
"Add" : "Gehitu",
"Server ok" : "Zerbitzaria ondo dago",
"User list was exchanged at least once successfully with the remote server." : "Erabiltzaileen zerrenda gutxienez behin trukatu da urruneko zerbitzariarekin.",
"Server pending" : "Zerbitzariaren zain",
"Waiting for shared secret or initial user list exchange." : "Sekretu partekatua edo hasierako erabiltzaileen zerrenda trukatzearen zain.",
"Server access revoked" : "Zerbitzariaren sarbidea ezeztatuta",
"Server failure" : "Zerbitzariaren hutsegitea",
"Connection to the remote server failed or the remote server is misconfigured." : "Urruneko zerbitzariarekin konektatzeak huts egin du edo urruneko zerbitzaria gaizki konfiguratuta dago.",
"Failed to delete trusted server. Please try again later." : "Huts egin du zerbitzari fidagarria ezabatu. Saiatu berriro geroago.",
"Delete" : "Ezabatu",
"Federation allows you to connect with other trusted servers to exchange the account directory. For example this will be used to auto-complete external accounts for federated sharing. It is not necessary to add a server as trusted server in order to create a federated share." : "Federazioaren bidez fidagarriak diren zerbitzariekin kontu-direktorioa trukatzeko aukera dago. Adibidez, kanpo erabiltzaileak automatikoki betetzeko erabil daiteke, federatze partekatuan. Federatze partekatua egiteko ez da beharrezkoa zerbitzari bat gehitzea zerbitzari fidagarri gisa.",
"Each server must validate the other. This process may require a few cron cycles." : "Zerbitzari bakoitza bestea balioztatu behar du. Prozesu honek cron ziklo batzuk beharko ditu.",
+11
View File
@@ -11,7 +11,18 @@ OC.L10N.register(
"Federation" : "聯盟",
"Federation allows you to connect with other trusted servers to exchange the account directory." : "聯盟功能允許您與信任的伺服器連結,交換帳戶目錄。",
"Federation allows you to connect with other trusted servers to exchange the account directory. For example this will be used to auto-complete external accounts for federated sharing." : "聯盟功能允許您與信任的伺服器連結,交換帳戶目錄。舉例來說,與其他雲端聯盟的帳戶分享檔案時,有了這一份列表,就可以在輸入框搜尋他們的帳戶名稱。",
"Could not add trusted server. Please try again later." : "無法新增受信任的伺服器。請稍後再試。",
"Add trusted server" : "新增受信任的伺服器",
"Server url" : "伺服器 URL",
"Add" : "新增",
"Server ok" : "伺服器 OK",
"User list was exchanged at least once successfully with the remote server." : "使用者清單已至少成功與遠端伺服器交換一次。",
"Server pending" : "伺服器擱置中",
"Waiting for shared secret or initial user list exchange." : "等待共享祕密或初始使用者清單交換。",
"Server access revoked" : "伺服器存取權限已撤銷",
"Server failure" : "伺服器故障",
"Connection to the remote server failed or the remote server is misconfigured." : "連線至遠端伺服器失敗,或遠端伺服器設定錯誤。",
"Failed to delete trusted server. Please try again later." : "無法刪除受信任伺服器。請稍後再試。",
"Delete" : "刪除",
"Federation allows you to connect with other trusted servers to exchange the account directory. For example this will be used to auto-complete external accounts for federated sharing. It is not necessary to add a server as trusted server in order to create a federated share." : "聯盟功能允許您與信任的伺服器連結,交換帳戶目錄。舉例來說,與其他雲端聯盟的用戶分享檔案時,有了這一份目錄,就可以在輸入框搜尋他們的帳戶名稱。不必將伺服器新增為受信任的伺服器就可以建立聯盟分享。",
"Each server must validate the other. This process may require a few cron cycles." : "每個伺服器必須彼此驗證。此過程可能需要幾個 cron 周期。",
+11
View File
@@ -9,7 +9,18 @@
"Federation" : "聯盟",
"Federation allows you to connect with other trusted servers to exchange the account directory." : "聯盟功能允許您與信任的伺服器連結,交換帳戶目錄。",
"Federation allows you to connect with other trusted servers to exchange the account directory. For example this will be used to auto-complete external accounts for federated sharing." : "聯盟功能允許您與信任的伺服器連結,交換帳戶目錄。舉例來說,與其他雲端聯盟的帳戶分享檔案時,有了這一份列表,就可以在輸入框搜尋他們的帳戶名稱。",
"Could not add trusted server. Please try again later." : "無法新增受信任的伺服器。請稍後再試。",
"Add trusted server" : "新增受信任的伺服器",
"Server url" : "伺服器 URL",
"Add" : "新增",
"Server ok" : "伺服器 OK",
"User list was exchanged at least once successfully with the remote server." : "使用者清單已至少成功與遠端伺服器交換一次。",
"Server pending" : "伺服器擱置中",
"Waiting for shared secret or initial user list exchange." : "等待共享祕密或初始使用者清單交換。",
"Server access revoked" : "伺服器存取權限已撤銷",
"Server failure" : "伺服器故障",
"Connection to the remote server failed or the remote server is misconfigured." : "連線至遠端伺服器失敗,或遠端伺服器設定錯誤。",
"Failed to delete trusted server. Please try again later." : "無法刪除受信任伺服器。請稍後再試。",
"Delete" : "刪除",
"Federation allows you to connect with other trusted servers to exchange the account directory. For example this will be used to auto-complete external accounts for federated sharing. It is not necessary to add a server as trusted server in order to create a federated share." : "聯盟功能允許您與信任的伺服器連結,交換帳戶目錄。舉例來說,與其他雲端聯盟的用戶分享檔案時,有了這一份目錄,就可以在輸入框搜尋他們的帳戶名稱。不必將伺服器新增為受信任的伺服器就可以建立聯盟分享。",
"Each server must validate the other. This process may require a few cron cycles." : "每個伺服器必須彼此驗證。此過程可能需要幾個 cron 周期。",
+1
View File
@@ -320,6 +320,7 @@ OC.L10N.register(
"Open online" : "Open online",
"Rename" : "Rename",
"Details" : "Details",
"Unfavorite" : "Unfavourite",
"View in folder" : "View in folder",
"Today" : "Today",
"Last 7 days" : "Last 7 days",
+1
View File
@@ -318,6 +318,7 @@
"Open online" : "Open online",
"Rename" : "Rename",
"Details" : "Details",
"Unfavorite" : "Unfavourite",
"View in folder" : "View in folder",
"Today" : "Today",
"Last 7 days" : "Last 7 days",
+18
View File
@@ -116,6 +116,7 @@ OC.L10N.register(
"General" : "Orokorra",
"Sort favorites first" : "Ordenatu gogokoak lehenengo",
"Sort folders before files" : "Ordenatu karpetak fitxategien aurretik",
"Enable folder tree view" : "Gaitu karpeten zuhaitz ikuspegia",
"Default view" : "Ikuspegi lehenetsia",
"All files" : "Fitxategi guztiak",
"Personal files" : "Fitxategi pertsonalak",
@@ -139,7 +140,10 @@ OC.L10N.register(
"Show those shortcuts" : "Erakutsi lasterbide horiek",
"Warnings" : "Oharrak",
"Warn before changing a file extension" : "Abisatu fitxategiaren luzapena aldatu aurretik",
"Warn before deleting a file" : "Abisatu fitxategi bat ezabatu aurretik",
"WebDAV URL" : "WebDAV URLa",
"Create an app password" : "Sortu aplikazioaren pasahitza",
"Required for WebDAV authentication because Two-Factor Authentication is enabled for this account." : "WebDAV autentifikaziorako beharrezkoa da, kontu honetan bi faktoreko autentifikazioa gaituta dagoelako.",
"How to access files using WebDAV" : "Nola sartu fitxategietara WebDAV erabiliz",
"Total rows summary" : "Errenkaden guztirako laburpena",
"Toggle selection for all files and folders" : "Ordeztu hautatutako fitxategi eta karpeta guztiak",
@@ -156,6 +160,8 @@ OC.L10N.register(
"This list is not fully rendered for performance reasons. The files will be rendered as you navigate through the list." : "Zerrenda hau ez da guztiz ikusten errendimendu arrazoiengatik. Fitxategiak zerrendan zehar nabigatzen duten heinean bistaratuko dira.",
"File not found" : "Ez da fitxategia aurkitu",
"_{count} selected_::_{count} selected_" : ["{count} hautatuta","{count} hautatuta"],
"Search everywhere …" : "Bilatu nonahi …",
"Search here …" : "Bilatu hemen …",
"Search scope options" : "Bilaketa-eremuaren aukerak",
"Search here" : "Bilatu hemen",
"Owner" : "Jabea",
@@ -175,6 +181,7 @@ OC.L10N.register(
"Failed to refresh filename sanitization status." : "Ezin izan da fitxategi-izenen garbiketa egoera freskatu.",
"Filename sanitization in progress." : "Fitxategi-izenen garbiketa martxan da.",
"Currently {processedUsers} of {totalUsers} accounts are already processed." : "Une honetan {totalUsers}kontuetatik {processedUsers}prozesatu dira.",
"Preparing …" : "Prestatzen …",
"Refresh" : "Freskatu",
"All files have been santized for Windows filename support." : "Fitxategi guztiak garbitu dira Windows-en fitxategi-izenaren onarpenerako.",
"Some files could not be sanitized, please check your logs." : "Fitxategi batzuk ezin izan dira garbitu, begiratu erregistroak.",
@@ -189,6 +196,7 @@ OC.L10N.register(
"Sanitize filenames" : "Garbitu fitxategi-izenak",
"(starting)" : "(abiatzen)",
"Fill template fields" : "Bete txantiloien eremuak",
"Submitting fields …" : "Eremuak bidaltzen …",
"Submit" : "Bidali",
"Choose a file or folder to transfer" : "Aukeratu fitxategi edo karpeta bat transferitzeko",
"Transfer" : "Transferitu",
@@ -231,6 +239,7 @@ OC.L10N.register(
"Upload some content or sync with your devices!" : "Igo edukiren bat edo sinkronizatu zure gailuekin!",
"Go back" : "Atzera",
"Views" : "Ikuspegiak",
"Loading …" : "Kargatzen …",
"Your files" : "Zure fitxategiak",
"Open in files" : "Ireki Fitxategiak aplikazioan",
"File cannot be accessed" : "Ezin da fitxategia atzitu",
@@ -249,10 +258,16 @@ OC.L10N.register(
"Create a new file with the selected template" : "Sortu fitxategi berria hautatutako txantiloiarekin",
"Creating file" : "Fitxategia sortzen",
"Save as {displayName}" : "Gorde honela: {displayName}",
"Save as …" : "Gorde honela …",
"Converting files …" : "Fitxategiak bihurtzen …",
"Failed to convert files: {message}" : "Huts egin du fitxategiak bihurtzeak: {message}",
"All files failed to be converted" : "Huts egin du fitxategi guztiak bihurtzean",
"One file could not be converted: {message}" : "Fitxategi bat ezin izan da bihurtu: {message}",
"_%n file could not be converted_::_%n files could not be converted_" : ["Fitxategi %n ezin izan da bihurtu","%n fitxategi ezin izan dira bihurtu"],
"_%n file converted_::_%n files converted_" : ["Fitxategi %n bihurtu da","%n fitxategi bihurtu dira"],
"Files converted" : "Fitxategiak bihurtu dira",
"Failed to convert files" : "Huts egin du fitxategien bihurtzeak",
"Converting file …" : "Fitxategia bihurtzen …",
"File successfully converted" : "Fitxategia behar bezala bihurtu da",
"Failed to convert file: {message}" : "Fitxategi honen bihurtzeak huts egin du: {message}",
"Failed to convert file" : "Huts egin du fitxategiaren bihurtzeak",
@@ -277,6 +292,8 @@ OC.L10N.register(
"Add to favorites" : "Gehitu gogokoetara",
"Remove from favorites" : "Kendu gogokoetatik",
"Add or remove favorite" : "Gehitu edo kendu gogokoetatik",
"Moving \"{source}\" to \"{destination}\" …" : "\"{source}\" \"{destination}\"-ra eramaten …",
"Copying \"{source}\" to \"{destination}\" …" : " \"{source}\" \"{destination}\"-ra kopiatzen …",
"Destination is not a folder" : "Helburua ez da karpeta bat",
"This file/folder is already in that directory" : "Fitxategi/karpeta hau dagoeneko karpeta horretan dago",
"You cannot move a file/folder onto itself or into a subfolder of itself" : "Ezin duzu fitxategi/karpeta bat berera edo bere azpikarpeta batera mugitu",
@@ -303,6 +320,7 @@ OC.L10N.register(
"Open online" : "Ireki linean",
"Rename" : "Berrizendatu",
"Details" : "Xehetasunak",
"Unfavorite" : "Kendu gogokoetatik",
"View in folder" : "Ikusi karpetan",
"Today" : "Gaur",
"Last 7 days" : "Azken 7 egunetan",
+18
View File
@@ -114,6 +114,7 @@
"General" : "Orokorra",
"Sort favorites first" : "Ordenatu gogokoak lehenengo",
"Sort folders before files" : "Ordenatu karpetak fitxategien aurretik",
"Enable folder tree view" : "Gaitu karpeten zuhaitz ikuspegia",
"Default view" : "Ikuspegi lehenetsia",
"All files" : "Fitxategi guztiak",
"Personal files" : "Fitxategi pertsonalak",
@@ -137,7 +138,10 @@
"Show those shortcuts" : "Erakutsi lasterbide horiek",
"Warnings" : "Oharrak",
"Warn before changing a file extension" : "Abisatu fitxategiaren luzapena aldatu aurretik",
"Warn before deleting a file" : "Abisatu fitxategi bat ezabatu aurretik",
"WebDAV URL" : "WebDAV URLa",
"Create an app password" : "Sortu aplikazioaren pasahitza",
"Required for WebDAV authentication because Two-Factor Authentication is enabled for this account." : "WebDAV autentifikaziorako beharrezkoa da, kontu honetan bi faktoreko autentifikazioa gaituta dagoelako.",
"How to access files using WebDAV" : "Nola sartu fitxategietara WebDAV erabiliz",
"Total rows summary" : "Errenkaden guztirako laburpena",
"Toggle selection for all files and folders" : "Ordeztu hautatutako fitxategi eta karpeta guztiak",
@@ -154,6 +158,8 @@
"This list is not fully rendered for performance reasons. The files will be rendered as you navigate through the list." : "Zerrenda hau ez da guztiz ikusten errendimendu arrazoiengatik. Fitxategiak zerrendan zehar nabigatzen duten heinean bistaratuko dira.",
"File not found" : "Ez da fitxategia aurkitu",
"_{count} selected_::_{count} selected_" : ["{count} hautatuta","{count} hautatuta"],
"Search everywhere …" : "Bilatu nonahi …",
"Search here …" : "Bilatu hemen …",
"Search scope options" : "Bilaketa-eremuaren aukerak",
"Search here" : "Bilatu hemen",
"Owner" : "Jabea",
@@ -173,6 +179,7 @@
"Failed to refresh filename sanitization status." : "Ezin izan da fitxategi-izenen garbiketa egoera freskatu.",
"Filename sanitization in progress." : "Fitxategi-izenen garbiketa martxan da.",
"Currently {processedUsers} of {totalUsers} accounts are already processed." : "Une honetan {totalUsers}kontuetatik {processedUsers}prozesatu dira.",
"Preparing …" : "Prestatzen …",
"Refresh" : "Freskatu",
"All files have been santized for Windows filename support." : "Fitxategi guztiak garbitu dira Windows-en fitxategi-izenaren onarpenerako.",
"Some files could not be sanitized, please check your logs." : "Fitxategi batzuk ezin izan dira garbitu, begiratu erregistroak.",
@@ -187,6 +194,7 @@
"Sanitize filenames" : "Garbitu fitxategi-izenak",
"(starting)" : "(abiatzen)",
"Fill template fields" : "Bete txantiloien eremuak",
"Submitting fields …" : "Eremuak bidaltzen …",
"Submit" : "Bidali",
"Choose a file or folder to transfer" : "Aukeratu fitxategi edo karpeta bat transferitzeko",
"Transfer" : "Transferitu",
@@ -229,6 +237,7 @@
"Upload some content or sync with your devices!" : "Igo edukiren bat edo sinkronizatu zure gailuekin!",
"Go back" : "Atzera",
"Views" : "Ikuspegiak",
"Loading …" : "Kargatzen …",
"Your files" : "Zure fitxategiak",
"Open in files" : "Ireki Fitxategiak aplikazioan",
"File cannot be accessed" : "Ezin da fitxategia atzitu",
@@ -247,10 +256,16 @@
"Create a new file with the selected template" : "Sortu fitxategi berria hautatutako txantiloiarekin",
"Creating file" : "Fitxategia sortzen",
"Save as {displayName}" : "Gorde honela: {displayName}",
"Save as …" : "Gorde honela …",
"Converting files …" : "Fitxategiak bihurtzen …",
"Failed to convert files: {message}" : "Huts egin du fitxategiak bihurtzeak: {message}",
"All files failed to be converted" : "Huts egin du fitxategi guztiak bihurtzean",
"One file could not be converted: {message}" : "Fitxategi bat ezin izan da bihurtu: {message}",
"_%n file could not be converted_::_%n files could not be converted_" : ["Fitxategi %n ezin izan da bihurtu","%n fitxategi ezin izan dira bihurtu"],
"_%n file converted_::_%n files converted_" : ["Fitxategi %n bihurtu da","%n fitxategi bihurtu dira"],
"Files converted" : "Fitxategiak bihurtu dira",
"Failed to convert files" : "Huts egin du fitxategien bihurtzeak",
"Converting file …" : "Fitxategia bihurtzen …",
"File successfully converted" : "Fitxategia behar bezala bihurtu da",
"Failed to convert file: {message}" : "Fitxategi honen bihurtzeak huts egin du: {message}",
"Failed to convert file" : "Huts egin du fitxategiaren bihurtzeak",
@@ -275,6 +290,8 @@
"Add to favorites" : "Gehitu gogokoetara",
"Remove from favorites" : "Kendu gogokoetatik",
"Add or remove favorite" : "Gehitu edo kendu gogokoetatik",
"Moving \"{source}\" to \"{destination}\" …" : "\"{source}\" \"{destination}\"-ra eramaten …",
"Copying \"{source}\" to \"{destination}\" …" : " \"{source}\" \"{destination}\"-ra kopiatzen …",
"Destination is not a folder" : "Helburua ez da karpeta bat",
"This file/folder is already in that directory" : "Fitxategi/karpeta hau dagoeneko karpeta horretan dago",
"You cannot move a file/folder onto itself or into a subfolder of itself" : "Ezin duzu fitxategi/karpeta bat berera edo bere azpikarpeta batera mugitu",
@@ -301,6 +318,7 @@
"Open online" : "Ireki linean",
"Rename" : "Berrizendatu",
"Details" : "Xehetasunak",
"Unfavorite" : "Kendu gogokoetatik",
"View in folder" : "Ikusi karpetan",
"Today" : "Gaur",
"Last 7 days" : "Azken 7 egunetan",
+1
View File
@@ -141,6 +141,7 @@ OC.L10N.register(
"Upload some content or sync with your devices!" : "Įkelkite failus arba sinchronizuokite su savo įrenginiais!",
"Go back" : "Grįžti",
"Views" : "Rodiniai",
"Loading …" : "Įkeliama …",
"Your files" : "Jūsų failai",
"File cannot be accessed" : "Nepavyksta gauti prieigos prie failo",
"The file could not be found or you do not have permissions to view it. Ask the sender to share it." : "Nepavyko surasti failo arba jūs neturite leidimo jo peržiūrėti. Paprašykite siuntėjo, kad pradėtų jį su jumis bendrinti.",
+1
View File
@@ -139,6 +139,7 @@
"Upload some content or sync with your devices!" : "Įkelkite failus arba sinchronizuokite su savo įrenginiais!",
"Go back" : "Grįžti",
"Views" : "Rodiniai",
"Loading …" : "Įkeliama …",
"Your files" : "Jūsų failai",
"File cannot be accessed" : "Nepavyksta gauti prieigos prie failo",
"The file could not be found or you do not have permissions to view it. Ask the sender to share it." : "Nepavyko surasti failo arba jūs neturite leidimo jo peržiūrėti. Paprašykite siuntėjo, kad pradėtų jį su jumis bendrinti.",
+2
View File
@@ -139,6 +139,7 @@ OC.L10N.register(
"Show those shortcuts" : "Toon die snelkoppelingen",
"Warnings" : "Waarschuwingen",
"Warn before changing a file extension" : "Waarschuw voordat een bestand extensie wordt gewijzigd",
"Warn before deleting a file" : "Waarschuwen voor verwijderen bestand",
"WebDAV URL" : "WebDAV URL",
"How to access files using WebDAV" : "Hoe bestanden te benaderen met WebDAV",
"Total rows summary" : "Aantal rijen samenvatting",
@@ -235,6 +236,7 @@ OC.L10N.register(
"Upload some content or sync with your devices!" : "Upload je inhoud of synchroniseer met je apparaten!",
"Go back" : "Ga terug",
"Views" : "Bekeken",
"Loading …" : "Aan het laden...",
"Your files" : "Jouw bestanden",
"Open in files" : "Open in bestanden",
"File cannot be accessed" : "Bestand kan niet worden benaderd",
+2
View File
@@ -137,6 +137,7 @@
"Show those shortcuts" : "Toon die snelkoppelingen",
"Warnings" : "Waarschuwingen",
"Warn before changing a file extension" : "Waarschuw voordat een bestand extensie wordt gewijzigd",
"Warn before deleting a file" : "Waarschuwen voor verwijderen bestand",
"WebDAV URL" : "WebDAV URL",
"How to access files using WebDAV" : "Hoe bestanden te benaderen met WebDAV",
"Total rows summary" : "Aantal rijen samenvatting",
@@ -233,6 +234,7 @@
"Upload some content or sync with your devices!" : "Upload je inhoud of synchroniseer met je apparaten!",
"Go back" : "Ga terug",
"Views" : "Bekeken",
"Loading …" : "Aan het laden...",
"Your files" : "Jouw bestanden",
"Open in files" : "Open in bestanden",
"File cannot be accessed" : "Bestand kan niet worden benaderd",
+1 -1
View File
@@ -277,7 +277,7 @@ OC.L10N.register(
"Manage tags for a file" : "Gerir etiquetas para um ficheiro",
"Select or deselect a file" : "Selecionar ou desselecionar um ficheiro",
"Select a range of files" : "Selecionar um intervalo de ficheiros",
"You" : "Vovê",
"You" : "Você",
"Tags" : "Etiquetas",
"Edit locally" : "Editar localmente",
"This directory is unavailable, please check the logs or contact the administrator" : "Esta diretoria está indisponível, por favor, verifique os registos ou contacte o administrador",
+1 -1
View File
@@ -275,7 +275,7 @@
"Manage tags for a file" : "Gerir etiquetas para um ficheiro",
"Select or deselect a file" : "Selecionar ou desselecionar um ficheiro",
"Select a range of files" : "Selecionar um intervalo de ficheiros",
"You" : "Vovê",
"You" : "Você",
"Tags" : "Etiquetas",
"Edit locally" : "Editar localmente",
"This directory is unavailable, please check the logs or contact the administrator" : "Esta diretoria está indisponível, por favor, verifique os registos ou contacte o administrador",
+1
View File
@@ -320,6 +320,7 @@ OC.L10N.register(
"Open online" : "線上開啟",
"Rename" : "重新命名",
"Details" : "詳細資料",
"Unfavorite" : "取消收藏",
"View in folder" : "在資料夾中檢視",
"Today" : "今日",
"Last 7 days" : "過去7日",
+1
View File
@@ -318,6 +318,7 @@
"Open online" : "線上開啟",
"Rename" : "重新命名",
"Details" : "詳細資料",
"Unfavorite" : "取消收藏",
"View in folder" : "在資料夾中檢視",
"Today" : "今日",
"Last 7 days" : "過去7日",
+3
View File
@@ -236,6 +236,8 @@ OC.L10N.register(
"Can edit" : "Editatu dezake",
"Custom permissions" : "Baimen pertsonalizatuak",
"Resharing is not allowed" : "Birpartekatzea ez da onartzen",
"Name or email …" : "Izena edo posta elektronikoa …",
"Name, email, or Federated Cloud ID …" : "Izena, posta elektronikoa edo federatutako hodiaren identifikazioa …",
"Searching …" : "Bilatzen …",
"No elements found." : "Ez da elementurik aurkitu.",
"Search everywhere" : "Bilatu nonahi",
@@ -303,6 +305,7 @@ OC.L10N.register(
"Link shares" : "Lotu partekatzeak",
"Shares" : "Partekatzeak",
"Share files within your organization. Recipients who can already view the file can also use this link for easy access." : "Partekatu fitxategiak zure erakundean. Fitxategia dagoeneko ikus dezaketen hartzaileek esteka hau ere erabil dezakete erraz atzitzeko.",
"Share files with others outside your organization via public links and email addresses. You can also share to {productName} accounts on other instances using their federated cloud ID." : "Partekatu fitxategiak zure erakundetik kanpoko beste batzuekin esteka publikoen eta posta elektronikoen bidez. Beste instantzia batzuetako {productName} kontuekin ere parteka dezakezu haien federatutako hodeiaren identifikazioa erabiliz.",
"Shares from apps or other sources which are not included in internal or external shares." : "Barneko edo kanpoko partekatzeetan sartzen ez diren aplikazio edo beste iturri batzuetako partekatzeak.",
"Type names, teams, federated cloud IDs" : "Idatzi izenak, lantaldeak, federatutako hodeien iDak",
"Type names or teams" : "Idatzi izenak edo lantaldeak",
+3
View File
@@ -234,6 +234,8 @@
"Can edit" : "Editatu dezake",
"Custom permissions" : "Baimen pertsonalizatuak",
"Resharing is not allowed" : "Birpartekatzea ez da onartzen",
"Name or email …" : "Izena edo posta elektronikoa …",
"Name, email, or Federated Cloud ID …" : "Izena, posta elektronikoa edo federatutako hodiaren identifikazioa …",
"Searching …" : "Bilatzen …",
"No elements found." : "Ez da elementurik aurkitu.",
"Search everywhere" : "Bilatu nonahi",
@@ -301,6 +303,7 @@
"Link shares" : "Lotu partekatzeak",
"Shares" : "Partekatzeak",
"Share files within your organization. Recipients who can already view the file can also use this link for easy access." : "Partekatu fitxategiak zure erakundean. Fitxategia dagoeneko ikus dezaketen hartzaileek esteka hau ere erabil dezakete erraz atzitzeko.",
"Share files with others outside your organization via public links and email addresses. You can also share to {productName} accounts on other instances using their federated cloud ID." : "Partekatu fitxategiak zure erakundetik kanpoko beste batzuekin esteka publikoen eta posta elektronikoen bidez. Beste instantzia batzuetako {productName} kontuekin ere parteka dezakezu haien federatutako hodeiaren identifikazioa erabiliz.",
"Shares from apps or other sources which are not included in internal or external shares." : "Barneko edo kanpoko partekatzeetan sartzen ez diren aplikazio edo beste iturri batzuetako partekatzeak.",
"Type names, teams, federated cloud IDs" : "Idatzi izenak, lantaldeak, federatutako hodeien iDak",
"Type names or teams" : "Idatzi izenak edo lantaldeak",
+1 -1
View File
@@ -12,7 +12,7 @@ OC.L10N.register(
"Deleted" : "Eliminado",
"Unknown" : "Desconhecido",
"All files" : "Todos os ficheiros",
"You" : "Vovê",
"You" : "Você",
"List of files that have been deleted." : "Lista de ficheiros que foram eliminados.",
"No deleted files" : "Sem ficheiros eliminados",
"Files and folders you have deleted will show up here" : "Ficheiros e pastas que você eliminou aparecerão aqui",
+1 -1
View File
@@ -10,7 +10,7 @@
"Deleted" : "Eliminado",
"Unknown" : "Desconhecido",
"All files" : "Todos os ficheiros",
"You" : "Vovê",
"You" : "Você",
"List of files that have been deleted." : "Lista de ficheiros que foram eliminados.",
"No deleted files" : "Sem ficheiros eliminados",
"Files and folders you have deleted will show up here" : "Ficheiros e pastas que você eliminou aparecerão aqui",
+2
View File
@@ -8,10 +8,12 @@ OC.L10N.register(
"The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2 aplikazioak, zerbitzu hori eskaintzen duten beste web aplikazio batzuen bidez autentikazioa egiten konfiguratzeko aukera eskaintzen die sistemaren kudeatzaileei.",
"Secret key" : "Gako sekretua",
"Delete" : "Ezabatu",
"An unknown error occurred." : "Akats ezezagun bat gertatu da",
"OAuth 2.0 clients" : "OAuth 2.0 bezeroak",
"OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0k kanpo zerbitzuei {instanceName} instantziara sartzeko baimena eskatzea baimentzen die.",
"Name" : "Izena",
"Redirection URI" : "Birbideraketaren URI",
"Client identifier" : "Bezeroaren identifikatzailea",
"Delete client" : "Ezabatu bezeroa",
"Make sure you store the secret key, it cannot be recovered." : "Ziurtatu gako sekretua gordetzen duzula, ezin da berreskuratu.",
"Add client" : "Gehitu bezeroa",
+2
View File
@@ -6,10 +6,12 @@
"The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2 aplikazioak, zerbitzu hori eskaintzen duten beste web aplikazio batzuen bidez autentikazioa egiten konfiguratzeko aukera eskaintzen die sistemaren kudeatzaileei.",
"Secret key" : "Gako sekretua",
"Delete" : "Ezabatu",
"An unknown error occurred." : "Akats ezezagun bat gertatu da",
"OAuth 2.0 clients" : "OAuth 2.0 bezeroak",
"OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0k kanpo zerbitzuei {instanceName} instantziara sartzeko baimena eskatzea baimentzen die.",
"Name" : "Izena",
"Redirection URI" : "Birbideraketaren URI",
"Client identifier" : "Bezeroaren identifikatzailea",
"Delete client" : "Ezabatu bezeroa",
"Make sure you store the secret key, it cannot be recovered." : "Ziurtatu gako sekretua gordetzen duzula, ezin da berreskuratu.",
"Add client" : "Gehitu bezeroa",
+1
View File
@@ -6,6 +6,7 @@ OC.L10N.register(
"OAuth 2.0" : "OAuth 2.0",
"Secret key" : "Slaptasis raktas",
"Delete" : "Ištrinti",
"An unknown error occurred." : "Įvyko nežinoma klaida.",
"OAuth 2.0 clients" : "OAuth 2.0 klientai",
"OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 leidžia išorinėms tarnyboms užklausti prieigą prie {instanceName}.",
"Name" : "Pavadinimas",
+1
View File
@@ -4,6 +4,7 @@
"OAuth 2.0" : "OAuth 2.0",
"Secret key" : "Slaptasis raktas",
"Delete" : "Ištrinti",
"An unknown error occurred." : "Įvyko nežinoma klaida.",
"OAuth 2.0 clients" : "OAuth 2.0 klientai",
"OAuth 2.0 allows external services to request access to {instanceName}." : "OAuth 2.0 leidžia išorinėms tarnyboms užklausti prieigą prie {instanceName}.",
"Name" : "Pavadinimas",
+24
View File
@@ -94,6 +94,7 @@ OC.L10N.register(
"Set your password" : "Ezarri zure pasahitza",
"Go to %s" : "%s-ra joan",
"Install Client" : "Instalatu bezeroa",
"Logged in account must be a sub admin" : "Saioa hasitako erabiltzaileak azpi-administratzailea izan behar du",
"Apps" : "Aplikazioak",
"Personal" : "Pertsonala",
"Administration" : "Administrazioa",
@@ -103,6 +104,7 @@ OC.L10N.register(
"Administration privileges" : "Administrazio pribilegioak",
"Groupware" : "Taldelanerako tresnak",
"Overview" : "Ikuspegi orokorra",
"Quick presets" : "Aurrezarpen bizkorrak",
"Basic settings" : "Oinarrizko ezarpenak",
"Sharing" : "Partekatzea",
"Availability" : "Eskuragarritasuna",
@@ -124,6 +126,7 @@ OC.L10N.register(
"Verifying …" : "Egiaztatzen...",
"Verify" : "Egiaztatu",
"Allowed admin IP ranges" : "Onartzen diren admin IP tarteak",
"Admin IP filtering isn't applied." : "Admin IP-en iragazketa ez da aplikatu.",
"Configuration key \"%1$s\" expects an array (%2$s found). Admin IP range validation will not be applied." : "\"%1$s\" konfigurazio-gakoak array bat espero du (%2$s aurkitu da). Admin IP barrutiaren baliozkotzea ez da aplikatuko.",
"Configuration key \"%1$s\" contains invalid IP range(s): \"%2$s\"" : "\"%1$s\" konfigurazio-gakoak IP barruti baliogabea(k) d(it)u: \"%2$s\"",
"Admin IP filtering is correctly configured." : "Admin IP iragazkia behar bezala konfiguratuta dago.",
@@ -158,6 +161,7 @@ OC.L10N.register(
"Database missing indices" : "Datu-basean indizeak falta dira",
"Missing indices:" : "Indizeak faltan:",
"\"%s\" in table \"%s\"" : "\"%s\" \"%s\" taulan",
"Detected some missing optional indices. Occasionally new indices are added (by Nextcloud or installed applications) to improve database performance. Adding indices can sometimes take awhile and temporarily hurt performance so this is not done automatically during upgrades. Once the indices are added, queries to those tables should be faster. Use the command `occ db:add-missing-indices` to add them." : "Falta diren hautazko indize batzuk detektatu dira. Noizean behin indize berriak gehitzen dira (Nextcloud-ek edo instalatutako aplikazioek) datu-basearen errendimendua hobetzeko. Indizeak gehitzeak denbora pixka bat iraun dezake eta aldi baterako errendimendua kaltetu dezake; beraz, hau ez da automatikoki egiten bertsio berritzetan. Indizeak gehitu ondoren, taula horietarako kontsultak azkarragoak izan beharko lirateke. Erabili `occ db:add-missing-indices` komandoa horiek gehitzeko.",
"Database missing primary keys" : "Datu-basean lehen mailako gakoak falta dira",
"Missing primary key on table \"%s\"." : "Lehen mailako gakoa falta da \"%s\" taulan.",
"The database is missing some primary keys. Due to the fact that adding primary keys on big tables could take some time they were not added automatically. By running \"occ db:add-missing-primary-keys\" those missing primary keys could be added manually while the instance keeps running." : "Datu-baseak zenbait gako nagusi falta ditu. Taula handietan datu nagusiak gehitzeak denbora dezente har dezakeenez ez dira automatikoki gehitu. \"occ db:add-missing-primary-keys\" exekutatuz falta diren gako nagusi horiek eskuz gehitu daitezke instantzia martxan dagoen bitartean.",
@@ -198,7 +202,10 @@ OC.L10N.register(
"Old server-side-encryption" : "Zerbitzariaren aldeko zifratze zaharra",
"Disabled" : "Desgaituta",
"The old server-side-encryption format is enabled. We recommend disabling this." : "Zerbitzariaren aldeko enkriptatze formatu zaharra gaituta dago. Hau desgaitzea gomendatzen dugu.",
"Logging level" : "Erregistro maila",
"The %1$s configuration option must be a valid integer value." : "%1$s konfigurazio aukerak baliozko zenbaki osoa izan behar du.",
"The logging level is set to debug level. Use debug level only when you have a problem to diagnose, and then reset your log level to a less-verbose level as it outputs a lot of information, and can affect your server performance." : "Erregistro-maila arazketa-mailan ezarrita dago. Erabili arazketa-maila diagnostikatzeko arazoren bat duzunean soilik, eta, ondoren, berrezarri zure erregistro-maila hitz gutxiko maila batera, informazio asko ateratzen baitu eta zure zerbitzariaren errendimenduan eragina izan dezake.",
"Logging level configured correctly." : "Erregistro maila behar bezala konfiguratu da.",
"Maintenance window start" : "Mantentze-aldiaren testua",
"Server has no maintenance window start time configured. This means resource intensive daily background jobs will also be executed during your main usage time. We recommend to set it to a time of low usage, so users are less impacted by the load caused from these heavy tasks." : "Zerbitzariak ez du mantentze-leihoaren hasiera-ordurik konfiguratuta. Horrek esan nahi du baliabide intentsiboko eguneroko atzeko planoko lanak zure erabilera-denbora nagusian ere exekutatuko direla. Erabilera baxuko garai batean ezartzea gomendatzen dugu, erabiltzaileek zeregin astun horiek eragiten duten kargak eragin txikiagoa izan dezaten.",
"Maintenance window to execute heavy background jobs is between {start}:00 UTC and {end}:00 UTC" : "Atzeko planoko lan astunak exekutatzeko mantentze-leihoa {start}:00 UTC eta {end}:00 UTC artean dago",
@@ -248,6 +255,7 @@ OC.L10N.register(
"PHP modules" : "PHP moduluak",
"increases language translation performance and fixes sorting of non-ASCII characters" : "hizkuntza-itzulpenaren errendimendua areagotzen du eta ASCII ez diren karaktereen sailkapena konpontzen du",
"for Argon2 for password hashing" : "Argon2-rako pasahitzen hasha egiteko",
"required for SFTP storage and recommended for WebAuthn performance" : "beharrezkoa da SFTP biltegiratzeko eta WebAuthn errendimendurako gomendatua",
"for picture rotation in server and metadata extraction in the Photos app" : "zerbitzarian irudiak biratzeko eta metadatuak ateratzeko Argazkiak aplikazioan",
"This instance is missing some required PHP modules. It is required to install them: %s." : "Instantzia honetan beharrezkoak diren PHP modulu batzuk falta zaizkio. Hauek instalatzea beharrezkoa da: %s.",
"This instance is missing some recommended PHP modules. For improved performance and better compatibility it is highly recommended to install them:\n%s" : "Instantzia honek gomendatutako PHP modulu batzuk falta ditu. Biziki gomendatzen da horiek instalatzea, errendimendua eta bateragarritasuna hobetzeko:\n%s",
@@ -265,6 +273,7 @@ OC.L10N.register(
"The PHP OPcache module is not properly configured. %s." : "PHP OPCache modulua ez dago ondo konfiguratuta. %s.",
"Correctly configured" : "Ondo konfiguratuta",
"PHP version" : "PHP bertsioa",
"You are currently running PHP %1$s. PHP %2$s is deprecated since Nextcloud %3$s. Nextcloud %4$s may require at least PHP %5$s. Please upgrade to one of the officially supported PHP versions provided by the PHP Group as soon as possible." : "PHP %1$s exekutatzen ari zara. PHP %2$s zaharkituta dago Nextcloud %3$s bertsiotik. Nextcloud %4$sk gutxienez PHP %5$s behar izango du. Mesedez, eguneratu PHP Group-ek ofizialki onartzen dituen PHP bertsiora ahalik eta lasterren.",
"You are currently running PHP %s." : "Une honetan %s PHPa darabilzu.",
"PHP \"output_buffering\" option" : "PHP \"output_buffering\" ezarpena",
"PHP configuration option \"output_buffering\" must be disabled" : "PHP \"output_buffering\" konfigurazio aukera desgaituta egon behar da",
@@ -292,16 +301,28 @@ OC.L10N.register(
"Could not check that your web server serves security headers correctly. Please check manually." : "Ezin izan da egiaztatu zure web zerbitzariak segurtasun-goiburuak behar bezala zerbitzatzen dituela. Mesedez, egiaztatu ezazu eskuz.",
"Could not check that your web server serves security headers correctly, unable to query `%s`" : "Ezin izan da egiaztatu zure web zerbitzariak segurtasun-goiburuak behar bezala zerbitzatzen dituela, ezin izan da `%s` kontsultatu",
"Your server is correctly configured to send security headers." : "Zure zerbitzaria segurtasun goiburuak bidaltzeko ondo konfiguratuta dago.",
"Configuration server ID" : "Konfigurazio zerbitzariaren IDa",
"Server identifier isnt configured. It is recommended if your Nextcloud instance is running on several PHP servers. Add a server ID in your configuration." : "Zerbitzariaren identifikatzailea ez dago konfiguratuta. Gomendagarria da zure Nextcloud instantzia PHP zerbitzari desberdinetan funtzionatzen badu. Gehitu zerbitzari baten IDa zure ezarpenetan.",
"\"%d\" is not a valid server identifier. It must be between 0 and 1023." : "\"%d\" ez da baliozko zerbitzari identifikatzailea. 0 eta 1023 artean egon behar du.",
"Server identifier is configured and valid." : "Zerbitzariaren identifikatzailea konfiguratuta dago eta baliozkoa da.",
"Database version" : "Datu-basearen bertsioa",
"MariaDB version 10.3 detected, this version is end-of-life and only supported as part of Ubuntu 20.04. MariaDB >=%1$s and <=%2$s is suggested for best performance, stability and functionality with this version of Nextcloud." : "MariaDB 10.3 bertsioa detektatu da, bertsio hau bizitzaren amaieran dago eta Ubuntu 20.04ren zati gisa soilik onartzen da. MariaDB >= '%1$s' eta <= '%2$s' iradokitzen da Nextcloud-en bertsio honekin errendimendu, egonkortasun eta funtzionalitate onena lortzeko.",
"MariaDB version \"%1$s\" detected. MariaDB >=%2$s and <=%3$s is suggested for best performance, stability and functionality with this version of Nextcloud." : "MariaDB '%1$s' bertsioa detektatu da. MariaDB >= '%2$s' eta <= '%3$s' iradokitzen da Nextcloud-en bertsio honekin errendimendu, egonkortasun eta funtzionalitate onena lortzeko.",
"MySQL version \"%1$s\" detected. MySQL >=%2$s and <=%3$s is suggested for best performance, stability and functionality with this version of Nextcloud." : "MySQL '%1$s' bertsioa detektatu da. MySQL >='%2$s' eta <= '%3$s' iradokitzen da errendimendu, egonkortasun eta funtzionalitate onena lortzeko Nextcloud-en bertsio honekin.",
"PostgreSQL version \"%1$s\" detected. PostgreSQL >=%2$s and <=%3$s is suggested for best performance, stability and functionality with this version of Nextcloud." : "PostgreSQL «%1$s» bertsioa hauteman da. PostgreSQL >=%2$s eta <=%3$s iradokitzen da errendimendu, egonkortasun eta funtzionalitate onenak lortzeko Nextcloud bertsio honekin.",
"Nextcloud %d does not support your current version, so be sure to update the database before updating your Nextcloud Server." : "Nextcloud-ek %d ez du zure uneko bertsioa onartzen, beraz, ziurtatu datu-basea eguneratzen duzula Nextcloud zerbitzaria eguneratu aurretik.",
"Oracle version \"%1$s\" detected. Oracle >=%2$s and <=%3$s is suggested for best performance, stability and functionality with this version of Nextcloud." : "Oracle \"%1$s\" bertsioa detektatu da. Oracle >= %2$s eta <= %3$s iradokitzen da Nextcloud-en bertsio honekin errendimendu, egonkortasun eta funtzionalitate onena lortzeko.",
"SQLite is currently being used as the backend database. For larger installations we recommend that you switch to a different database backend. This is particularly recommended when using the desktop client for file synchronisation. To migrate to another database use the command line tool: \"occ db:convert-type\"." : "Une honetan atzeko planoak SQLite datu-base gisa erabiltzen ari da. Instalazio handiagoetarako atzeko planoko datu-base ezberdin batera aldatzea gomendatzen dugu. Hau bereziki gomendatzen da fitxategiak sinkronizatzeko mahaigaineko bezeroa erabiltzean. Beste datu-base batera migratzeko, erabili komando lerroko tresna: \"occ db:convert-type\".",
"Unknown database platform" : "Datu-base plataforma ezezaguna",
"Architecture" : "Arkitektura",
"64-bit" : "64-bit",
"It seems like you are running a 32-bit PHP version. Nextcloud needs 64-bit to run well. Please upgrade your OS and PHP to 64-bit!" : "32 biteko PHP bertsioa exekutatzen ari zarela dirudi. Nextcloud-ek 64 bitekoa behar du ondo exekutatzeko. Eguneratu zure SE eta PHP 64 bitekora!",
"Task Processing pickup speed" : "Zereginak prozesatzeko jasotzeko abiadura",
"_No scheduled tasks in the last day._::_No scheduled tasks in the last %n days._" : ["Ez dago programatutako zereginik azken egunean.","Ez dago programatutako zereginik azken %n egunetan."],
"_The task pickup speed has been ok in the last day._::_The task pickup speed has been ok in the last %n days._" : ["Zereginak jasotzeko abiadura ona izan da azken egunean.","Zereginak jasotzeko abiadura ona izan da azken %n egunetan."],
"_The task pickup speed has been slow in the last day. Many tasks took longer than 4 minutes to be picked up. Consider setting up a worker to process tasks in the background._::_The task pickup speed has been slow in the last %n days. Many tasks took longer than 4 minutes to be picked up. Consider setting up a worker to process tasks in the background._" : ["Zereginak jasotzeko abiadura motela izan da azken egunean. Zeregin askok 4 minutu baino gehiago behar izan dituzte jasoak izateko. Baloratu ezartzea langile bat zereginak atzeko planoan prozesatzeko.","Zereginak jasotzeko abiadura motela izan da azken %n egunetan. Zeregin askok 4 minutu baino gehiago behar izan dituzte jasoak izateko. Baloratu ezartzea langile bat zereginak atzeko planoan prozesatzeko."],
"_Most tasks were successful in the last day._::_Most tasks were successful in the last %n days._" : ["Zeregin gehienak arrakastatsuak izan dira azken egunean.","Zeregin gehienak arrakastatsuak izan dira azken %n egunetan."],
"_A lot of tasks failed in the last day. Consider checking the nextcloud log for errors and investigating whether the AI provider apps have been set up correctly._::_A lot of tasks failed in the last %n days. Consider checking the nextcloud log for errors and investigating whether the AI provider apps have been set up correctly._" : ["Zeregin askok huts egin dute azken egunean. Baloratu hodei-erregistroan akatsak dauden egiaztatzea eta AI hornitzailearen aplikazioak behar bezala konfiguratu diren ikertzea.","Zeregin askok huts egin dute azken %n egunetan. Baloratu hodei-erregistroan akatsak dauden egiaztatzea eta AI hornitzailearen aplikazioak behar bezala konfiguratu diren ikertzea."],
"Temporary space available" : "Aldi baterako lekua eskura",
"Error while checking the temporary PHP path - it was not properly set to a directory. Returned value: %s" : "Errore bat gertatu da behin-behineko PHP bidea egiaztatzean - ez dago direktorio batera behar bezala ezarrita. Itzulitako balioa: %s",
"The PHP function \"disk_free_space\" is disabled, which prevents the check for enough space in the temporary directories." : "PHP \"disk_free_space\" funtzioa desgaituta dago, eta horrek aldi baterako direktorioetan leku nahikoa egiaztatzea eragozten du.",
@@ -352,8 +373,11 @@ OC.L10N.register(
"Restrict users to only share with users in their groups" : "Mugatu partekatzeak taldeko erabiltzaileetara",
"Ignore the following groups when checking group membership" : "Ezikusi hurrengo taldeak talde-kidetasuna egiaztatzean",
"Allow users to preview files even if download is disabled" : "Baimendu erabiltzaileei fitxategiak aurreikustea deskarga desaktibatuta badago ere",
"Users will still be able to screenshot or record the screen. This does not provide any definitive protection." : "Erabiltzaileek pantaila-argazkiak egiteko edo pantaila grabatzeko aukera izango dute oraindik. Horrek ez du behin betiko babesik ematen.",
"Allow users to share via link and emails" : "Baimendu erabiltzaileak esteka eta e-postaren bidez partekatzea",
"Allow public uploads" : "Baimendu igoera publikoak",
"Allow public shares to be added to other clouds by federation." : "Baimendu partekatze publikoak federazio bidez beste hodei batzuetan gehitzea.",
"This will add share permissions to all newly created link shares." : "Honek partekatzeko baimenak gehituko dizkie sortu berri diren esteken partekatze guztiei.",
"Always ask for a password" : "Beti eskatu pasahitza",
"Enforce password protection" : "Betearazi pasahitzaren babesa",
"Exclude groups from password requirements" : "Baztertu taldeak pasahitz eskakizunetatik",
+24
View File
@@ -92,6 +92,7 @@
"Set your password" : "Ezarri zure pasahitza",
"Go to %s" : "%s-ra joan",
"Install Client" : "Instalatu bezeroa",
"Logged in account must be a sub admin" : "Saioa hasitako erabiltzaileak azpi-administratzailea izan behar du",
"Apps" : "Aplikazioak",
"Personal" : "Pertsonala",
"Administration" : "Administrazioa",
@@ -101,6 +102,7 @@
"Administration privileges" : "Administrazio pribilegioak",
"Groupware" : "Taldelanerako tresnak",
"Overview" : "Ikuspegi orokorra",
"Quick presets" : "Aurrezarpen bizkorrak",
"Basic settings" : "Oinarrizko ezarpenak",
"Sharing" : "Partekatzea",
"Availability" : "Eskuragarritasuna",
@@ -122,6 +124,7 @@
"Verifying …" : "Egiaztatzen...",
"Verify" : "Egiaztatu",
"Allowed admin IP ranges" : "Onartzen diren admin IP tarteak",
"Admin IP filtering isn't applied." : "Admin IP-en iragazketa ez da aplikatu.",
"Configuration key \"%1$s\" expects an array (%2$s found). Admin IP range validation will not be applied." : "\"%1$s\" konfigurazio-gakoak array bat espero du (%2$s aurkitu da). Admin IP barrutiaren baliozkotzea ez da aplikatuko.",
"Configuration key \"%1$s\" contains invalid IP range(s): \"%2$s\"" : "\"%1$s\" konfigurazio-gakoak IP barruti baliogabea(k) d(it)u: \"%2$s\"",
"Admin IP filtering is correctly configured." : "Admin IP iragazkia behar bezala konfiguratuta dago.",
@@ -156,6 +159,7 @@
"Database missing indices" : "Datu-basean indizeak falta dira",
"Missing indices:" : "Indizeak faltan:",
"\"%s\" in table \"%s\"" : "\"%s\" \"%s\" taulan",
"Detected some missing optional indices. Occasionally new indices are added (by Nextcloud or installed applications) to improve database performance. Adding indices can sometimes take awhile and temporarily hurt performance so this is not done automatically during upgrades. Once the indices are added, queries to those tables should be faster. Use the command `occ db:add-missing-indices` to add them." : "Falta diren hautazko indize batzuk detektatu dira. Noizean behin indize berriak gehitzen dira (Nextcloud-ek edo instalatutako aplikazioek) datu-basearen errendimendua hobetzeko. Indizeak gehitzeak denbora pixka bat iraun dezake eta aldi baterako errendimendua kaltetu dezake; beraz, hau ez da automatikoki egiten bertsio berritzetan. Indizeak gehitu ondoren, taula horietarako kontsultak azkarragoak izan beharko lirateke. Erabili `occ db:add-missing-indices` komandoa horiek gehitzeko.",
"Database missing primary keys" : "Datu-basean lehen mailako gakoak falta dira",
"Missing primary key on table \"%s\"." : "Lehen mailako gakoa falta da \"%s\" taulan.",
"The database is missing some primary keys. Due to the fact that adding primary keys on big tables could take some time they were not added automatically. By running \"occ db:add-missing-primary-keys\" those missing primary keys could be added manually while the instance keeps running." : "Datu-baseak zenbait gako nagusi falta ditu. Taula handietan datu nagusiak gehitzeak denbora dezente har dezakeenez ez dira automatikoki gehitu. \"occ db:add-missing-primary-keys\" exekutatuz falta diren gako nagusi horiek eskuz gehitu daitezke instantzia martxan dagoen bitartean.",
@@ -196,7 +200,10 @@
"Old server-side-encryption" : "Zerbitzariaren aldeko zifratze zaharra",
"Disabled" : "Desgaituta",
"The old server-side-encryption format is enabled. We recommend disabling this." : "Zerbitzariaren aldeko enkriptatze formatu zaharra gaituta dago. Hau desgaitzea gomendatzen dugu.",
"Logging level" : "Erregistro maila",
"The %1$s configuration option must be a valid integer value." : "%1$s konfigurazio aukerak baliozko zenbaki osoa izan behar du.",
"The logging level is set to debug level. Use debug level only when you have a problem to diagnose, and then reset your log level to a less-verbose level as it outputs a lot of information, and can affect your server performance." : "Erregistro-maila arazketa-mailan ezarrita dago. Erabili arazketa-maila diagnostikatzeko arazoren bat duzunean soilik, eta, ondoren, berrezarri zure erregistro-maila hitz gutxiko maila batera, informazio asko ateratzen baitu eta zure zerbitzariaren errendimenduan eragina izan dezake.",
"Logging level configured correctly." : "Erregistro maila behar bezala konfiguratu da.",
"Maintenance window start" : "Mantentze-aldiaren testua",
"Server has no maintenance window start time configured. This means resource intensive daily background jobs will also be executed during your main usage time. We recommend to set it to a time of low usage, so users are less impacted by the load caused from these heavy tasks." : "Zerbitzariak ez du mantentze-leihoaren hasiera-ordurik konfiguratuta. Horrek esan nahi du baliabide intentsiboko eguneroko atzeko planoko lanak zure erabilera-denbora nagusian ere exekutatuko direla. Erabilera baxuko garai batean ezartzea gomendatzen dugu, erabiltzaileek zeregin astun horiek eragiten duten kargak eragin txikiagoa izan dezaten.",
"Maintenance window to execute heavy background jobs is between {start}:00 UTC and {end}:00 UTC" : "Atzeko planoko lan astunak exekutatzeko mantentze-leihoa {start}:00 UTC eta {end}:00 UTC artean dago",
@@ -246,6 +253,7 @@
"PHP modules" : "PHP moduluak",
"increases language translation performance and fixes sorting of non-ASCII characters" : "hizkuntza-itzulpenaren errendimendua areagotzen du eta ASCII ez diren karaktereen sailkapena konpontzen du",
"for Argon2 for password hashing" : "Argon2-rako pasahitzen hasha egiteko",
"required for SFTP storage and recommended for WebAuthn performance" : "beharrezkoa da SFTP biltegiratzeko eta WebAuthn errendimendurako gomendatua",
"for picture rotation in server and metadata extraction in the Photos app" : "zerbitzarian irudiak biratzeko eta metadatuak ateratzeko Argazkiak aplikazioan",
"This instance is missing some required PHP modules. It is required to install them: %s." : "Instantzia honetan beharrezkoak diren PHP modulu batzuk falta zaizkio. Hauek instalatzea beharrezkoa da: %s.",
"This instance is missing some recommended PHP modules. For improved performance and better compatibility it is highly recommended to install them:\n%s" : "Instantzia honek gomendatutako PHP modulu batzuk falta ditu. Biziki gomendatzen da horiek instalatzea, errendimendua eta bateragarritasuna hobetzeko:\n%s",
@@ -263,6 +271,7 @@
"The PHP OPcache module is not properly configured. %s." : "PHP OPCache modulua ez dago ondo konfiguratuta. %s.",
"Correctly configured" : "Ondo konfiguratuta",
"PHP version" : "PHP bertsioa",
"You are currently running PHP %1$s. PHP %2$s is deprecated since Nextcloud %3$s. Nextcloud %4$s may require at least PHP %5$s. Please upgrade to one of the officially supported PHP versions provided by the PHP Group as soon as possible." : "PHP %1$s exekutatzen ari zara. PHP %2$s zaharkituta dago Nextcloud %3$s bertsiotik. Nextcloud %4$sk gutxienez PHP %5$s behar izango du. Mesedez, eguneratu PHP Group-ek ofizialki onartzen dituen PHP bertsiora ahalik eta lasterren.",
"You are currently running PHP %s." : "Une honetan %s PHPa darabilzu.",
"PHP \"output_buffering\" option" : "PHP \"output_buffering\" ezarpena",
"PHP configuration option \"output_buffering\" must be disabled" : "PHP \"output_buffering\" konfigurazio aukera desgaituta egon behar da",
@@ -290,16 +299,28 @@
"Could not check that your web server serves security headers correctly. Please check manually." : "Ezin izan da egiaztatu zure web zerbitzariak segurtasun-goiburuak behar bezala zerbitzatzen dituela. Mesedez, egiaztatu ezazu eskuz.",
"Could not check that your web server serves security headers correctly, unable to query `%s`" : "Ezin izan da egiaztatu zure web zerbitzariak segurtasun-goiburuak behar bezala zerbitzatzen dituela, ezin izan da `%s` kontsultatu",
"Your server is correctly configured to send security headers." : "Zure zerbitzaria segurtasun goiburuak bidaltzeko ondo konfiguratuta dago.",
"Configuration server ID" : "Konfigurazio zerbitzariaren IDa",
"Server identifier isnt configured. It is recommended if your Nextcloud instance is running on several PHP servers. Add a server ID in your configuration." : "Zerbitzariaren identifikatzailea ez dago konfiguratuta. Gomendagarria da zure Nextcloud instantzia PHP zerbitzari desberdinetan funtzionatzen badu. Gehitu zerbitzari baten IDa zure ezarpenetan.",
"\"%d\" is not a valid server identifier. It must be between 0 and 1023." : "\"%d\" ez da baliozko zerbitzari identifikatzailea. 0 eta 1023 artean egon behar du.",
"Server identifier is configured and valid." : "Zerbitzariaren identifikatzailea konfiguratuta dago eta baliozkoa da.",
"Database version" : "Datu-basearen bertsioa",
"MariaDB version 10.3 detected, this version is end-of-life and only supported as part of Ubuntu 20.04. MariaDB >=%1$s and <=%2$s is suggested for best performance, stability and functionality with this version of Nextcloud." : "MariaDB 10.3 bertsioa detektatu da, bertsio hau bizitzaren amaieran dago eta Ubuntu 20.04ren zati gisa soilik onartzen da. MariaDB >= '%1$s' eta <= '%2$s' iradokitzen da Nextcloud-en bertsio honekin errendimendu, egonkortasun eta funtzionalitate onena lortzeko.",
"MariaDB version \"%1$s\" detected. MariaDB >=%2$s and <=%3$s is suggested for best performance, stability and functionality with this version of Nextcloud." : "MariaDB '%1$s' bertsioa detektatu da. MariaDB >= '%2$s' eta <= '%3$s' iradokitzen da Nextcloud-en bertsio honekin errendimendu, egonkortasun eta funtzionalitate onena lortzeko.",
"MySQL version \"%1$s\" detected. MySQL >=%2$s and <=%3$s is suggested for best performance, stability and functionality with this version of Nextcloud." : "MySQL '%1$s' bertsioa detektatu da. MySQL >='%2$s' eta <= '%3$s' iradokitzen da errendimendu, egonkortasun eta funtzionalitate onena lortzeko Nextcloud-en bertsio honekin.",
"PostgreSQL version \"%1$s\" detected. PostgreSQL >=%2$s and <=%3$s is suggested for best performance, stability and functionality with this version of Nextcloud." : "PostgreSQL «%1$s» bertsioa hauteman da. PostgreSQL >=%2$s eta <=%3$s iradokitzen da errendimendu, egonkortasun eta funtzionalitate onenak lortzeko Nextcloud bertsio honekin.",
"Nextcloud %d does not support your current version, so be sure to update the database before updating your Nextcloud Server." : "Nextcloud-ek %d ez du zure uneko bertsioa onartzen, beraz, ziurtatu datu-basea eguneratzen duzula Nextcloud zerbitzaria eguneratu aurretik.",
"Oracle version \"%1$s\" detected. Oracle >=%2$s and <=%3$s is suggested for best performance, stability and functionality with this version of Nextcloud." : "Oracle \"%1$s\" bertsioa detektatu da. Oracle >= %2$s eta <= %3$s iradokitzen da Nextcloud-en bertsio honekin errendimendu, egonkortasun eta funtzionalitate onena lortzeko.",
"SQLite is currently being used as the backend database. For larger installations we recommend that you switch to a different database backend. This is particularly recommended when using the desktop client for file synchronisation. To migrate to another database use the command line tool: \"occ db:convert-type\"." : "Une honetan atzeko planoak SQLite datu-base gisa erabiltzen ari da. Instalazio handiagoetarako atzeko planoko datu-base ezberdin batera aldatzea gomendatzen dugu. Hau bereziki gomendatzen da fitxategiak sinkronizatzeko mahaigaineko bezeroa erabiltzean. Beste datu-base batera migratzeko, erabili komando lerroko tresna: \"occ db:convert-type\".",
"Unknown database platform" : "Datu-base plataforma ezezaguna",
"Architecture" : "Arkitektura",
"64-bit" : "64-bit",
"It seems like you are running a 32-bit PHP version. Nextcloud needs 64-bit to run well. Please upgrade your OS and PHP to 64-bit!" : "32 biteko PHP bertsioa exekutatzen ari zarela dirudi. Nextcloud-ek 64 bitekoa behar du ondo exekutatzeko. Eguneratu zure SE eta PHP 64 bitekora!",
"Task Processing pickup speed" : "Zereginak prozesatzeko jasotzeko abiadura",
"_No scheduled tasks in the last day._::_No scheduled tasks in the last %n days._" : ["Ez dago programatutako zereginik azken egunean.","Ez dago programatutako zereginik azken %n egunetan."],
"_The task pickup speed has been ok in the last day._::_The task pickup speed has been ok in the last %n days._" : ["Zereginak jasotzeko abiadura ona izan da azken egunean.","Zereginak jasotzeko abiadura ona izan da azken %n egunetan."],
"_The task pickup speed has been slow in the last day. Many tasks took longer than 4 minutes to be picked up. Consider setting up a worker to process tasks in the background._::_The task pickup speed has been slow in the last %n days. Many tasks took longer than 4 minutes to be picked up. Consider setting up a worker to process tasks in the background._" : ["Zereginak jasotzeko abiadura motela izan da azken egunean. Zeregin askok 4 minutu baino gehiago behar izan dituzte jasoak izateko. Baloratu ezartzea langile bat zereginak atzeko planoan prozesatzeko.","Zereginak jasotzeko abiadura motela izan da azken %n egunetan. Zeregin askok 4 minutu baino gehiago behar izan dituzte jasoak izateko. Baloratu ezartzea langile bat zereginak atzeko planoan prozesatzeko."],
"_Most tasks were successful in the last day._::_Most tasks were successful in the last %n days._" : ["Zeregin gehienak arrakastatsuak izan dira azken egunean.","Zeregin gehienak arrakastatsuak izan dira azken %n egunetan."],
"_A lot of tasks failed in the last day. Consider checking the nextcloud log for errors and investigating whether the AI provider apps have been set up correctly._::_A lot of tasks failed in the last %n days. Consider checking the nextcloud log for errors and investigating whether the AI provider apps have been set up correctly._" : ["Zeregin askok huts egin dute azken egunean. Baloratu hodei-erregistroan akatsak dauden egiaztatzea eta AI hornitzailearen aplikazioak behar bezala konfiguratu diren ikertzea.","Zeregin askok huts egin dute azken %n egunetan. Baloratu hodei-erregistroan akatsak dauden egiaztatzea eta AI hornitzailearen aplikazioak behar bezala konfiguratu diren ikertzea."],
"Temporary space available" : "Aldi baterako lekua eskura",
"Error while checking the temporary PHP path - it was not properly set to a directory. Returned value: %s" : "Errore bat gertatu da behin-behineko PHP bidea egiaztatzean - ez dago direktorio batera behar bezala ezarrita. Itzulitako balioa: %s",
"The PHP function \"disk_free_space\" is disabled, which prevents the check for enough space in the temporary directories." : "PHP \"disk_free_space\" funtzioa desgaituta dago, eta horrek aldi baterako direktorioetan leku nahikoa egiaztatzea eragozten du.",
@@ -350,8 +371,11 @@
"Restrict users to only share with users in their groups" : "Mugatu partekatzeak taldeko erabiltzaileetara",
"Ignore the following groups when checking group membership" : "Ezikusi hurrengo taldeak talde-kidetasuna egiaztatzean",
"Allow users to preview files even if download is disabled" : "Baimendu erabiltzaileei fitxategiak aurreikustea deskarga desaktibatuta badago ere",
"Users will still be able to screenshot or record the screen. This does not provide any definitive protection." : "Erabiltzaileek pantaila-argazkiak egiteko edo pantaila grabatzeko aukera izango dute oraindik. Horrek ez du behin betiko babesik ematen.",
"Allow users to share via link and emails" : "Baimendu erabiltzaileak esteka eta e-postaren bidez partekatzea",
"Allow public uploads" : "Baimendu igoera publikoak",
"Allow public shares to be added to other clouds by federation." : "Baimendu partekatze publikoak federazio bidez beste hodei batzuetan gehitzea.",
"This will add share permissions to all newly created link shares." : "Honek partekatzeko baimenak gehituko dizkie sortu berri diren esteken partekatze guztiei.",
"Always ask for a password" : "Beti eskatu pasahitza",
"Enforce password protection" : "Betearazi pasahitzaren babesa",
"Exclude groups from password requirements" : "Baztertu taldeak pasahitz eskakizunetatik",
+8
View File
@@ -56,6 +56,7 @@ OC.L10N.register(
"Failed to delete tag" : "Etiketa ezabatzeak huts egin du",
"Create or edit tags" : "Sortu edo editatu etiketak",
"Search for a tag to edit" : "Bilatu editatzeko etiketa",
"Collaborative tags …" : "Elkarlaneko etiketak …",
"No tags to select" : "Ez da etiketarik hautatu",
"Tag name" : "Etiketaren izena",
"Tag level" : "Etiketaren maila",
@@ -63,8 +64,12 @@ OC.L10N.register(
"Update" : "Eguneratu",
"Delete" : "Ezabatu",
"Reset" : "Berrezarri",
"Loading …" : "Kargatzen …",
"_{tag1} will be set and {tag2} will be removed from 1 file._::_{tag1} will be set and {tag2} will be removed from {count} files._" : ["{tag1} ezarriko zaio eta {tag2} kenduko zaio fitxategi bati.","{tag1} ezarriko zaie eta {tag2} kenduko zaie {count} fitxategitik."],
"_{tag} will be set to 1 file._::_{tag} will be set to {count} files._" : ["{tag} ezarriko zaio fitxategi bati.","{tag} ezarriko zaie {count} fitxategiri."],
"_{tag} will be removed from 1 file._::_{tag} will be removed from {count} files._" : ["{tag} kenduko zaio fitxategi bati.","{tag} kenduko zaie {count} fitxategiri."],
"_{tags} and {lastTag} will be set to 1 file._::_{tags} and {lastTag} will be set to {count} files._" : ["{tags} eta {lastTag} ezarriko zaizkio fitxategi bati.","{tags} eta {lastTag} ezarriko zaizkie {count} fitxategiri."],
"_{tags} and {lastTag} will be removed from 1 file._::_{tags} and {lastTag} will be removed from {count} files._" : ["{tags} eta {lastTag} kenduko zaizkio fitxategi bati..","{tags} eta {lastTag} zenduko zaizkie {count} fitxategiri."],
"{displayName} (hidden)" : "{displayName} (ezkutua)",
"{displayName} (restricted)" : "{displayName} (mugatua)",
"Only admins can create new tags" : "Soilik administratzaileek sor ditzakete etiketa berriak",
@@ -82,8 +87,11 @@ OC.L10N.register(
"Failed to load tags" : "Etiketak kargatzeak huts egin du",
"Failed to select tag" : "Etiketa hautatzeak huts egin du",
"System admin disabled tag creation. You can only use existing ones." : "Sistemaren administratzaileak desgaitu du etiketen sortzea. Daudenak bakarrik erabili ditzakezu.",
"Loading collaborative tags …" : "Elkarlaneko etiketak kargatzen …",
"Search or create collaborative tags" : "Bilatu edo sortu elkarlaneko etiketak",
"No tags to select, type to create a new tag" : "Ez dago hautatzeko etiketarik, idatzi etiketa berria sortzeko",
"Unable to update setting" : "Ezin izan dira ezarpenak eguneratu",
"System tag creation is now restricted to administrators" : "Sistema-etiketen sortzea administratzaileei mugatuta dago orain",
"System tag creation is now allowed for everybody" : "Orain edonork sor ditzake etiketak",
"System tag management" : "Sistemaren etiketen kudeaketa",
"If enabled, only administrators can create and edit tags. Accounts can still assign and remove them from files." : "Aktiboa badago, bakarrik administratzaileek sortu eta editatu ditzakete etiketak. Kontuek soilik esleitu edo kentzen ahal diete fitxategiei.",
+8
View File
@@ -54,6 +54,7 @@
"Failed to delete tag" : "Etiketa ezabatzeak huts egin du",
"Create or edit tags" : "Sortu edo editatu etiketak",
"Search for a tag to edit" : "Bilatu editatzeko etiketa",
"Collaborative tags …" : "Elkarlaneko etiketak …",
"No tags to select" : "Ez da etiketarik hautatu",
"Tag name" : "Etiketaren izena",
"Tag level" : "Etiketaren maila",
@@ -61,8 +62,12 @@
"Update" : "Eguneratu",
"Delete" : "Ezabatu",
"Reset" : "Berrezarri",
"Loading …" : "Kargatzen …",
"_{tag1} will be set and {tag2} will be removed from 1 file._::_{tag1} will be set and {tag2} will be removed from {count} files._" : ["{tag1} ezarriko zaio eta {tag2} kenduko zaio fitxategi bati.","{tag1} ezarriko zaie eta {tag2} kenduko zaie {count} fitxategitik."],
"_{tag} will be set to 1 file._::_{tag} will be set to {count} files._" : ["{tag} ezarriko zaio fitxategi bati.","{tag} ezarriko zaie {count} fitxategiri."],
"_{tag} will be removed from 1 file._::_{tag} will be removed from {count} files._" : ["{tag} kenduko zaio fitxategi bati.","{tag} kenduko zaie {count} fitxategiri."],
"_{tags} and {lastTag} will be set to 1 file._::_{tags} and {lastTag} will be set to {count} files._" : ["{tags} eta {lastTag} ezarriko zaizkio fitxategi bati.","{tags} eta {lastTag} ezarriko zaizkie {count} fitxategiri."],
"_{tags} and {lastTag} will be removed from 1 file._::_{tags} and {lastTag} will be removed from {count} files._" : ["{tags} eta {lastTag} kenduko zaizkio fitxategi bati..","{tags} eta {lastTag} zenduko zaizkie {count} fitxategiri."],
"{displayName} (hidden)" : "{displayName} (ezkutua)",
"{displayName} (restricted)" : "{displayName} (mugatua)",
"Only admins can create new tags" : "Soilik administratzaileek sor ditzakete etiketa berriak",
@@ -80,8 +85,11 @@
"Failed to load tags" : "Etiketak kargatzeak huts egin du",
"Failed to select tag" : "Etiketa hautatzeak huts egin du",
"System admin disabled tag creation. You can only use existing ones." : "Sistemaren administratzaileak desgaitu du etiketen sortzea. Daudenak bakarrik erabili ditzakezu.",
"Loading collaborative tags …" : "Elkarlaneko etiketak kargatzen …",
"Search or create collaborative tags" : "Bilatu edo sortu elkarlaneko etiketak",
"No tags to select, type to create a new tag" : "Ez dago hautatzeko etiketarik, idatzi etiketa berria sortzeko",
"Unable to update setting" : "Ezin izan dira ezarpenak eguneratu",
"System tag creation is now restricted to administrators" : "Sistema-etiketen sortzea administratzaileei mugatuta dago orain",
"System tag creation is now allowed for everybody" : "Orain edonork sor ditzake etiketak",
"System tag management" : "Sistemaren etiketen kudeaketa",
"If enabled, only administrators can create and edit tags. Accounts can still assign and remove them from files." : "Aktiboa badago, bakarrik administratzaileek sortu eta editatu ditzakete etiketak. Kontuek soilik esleitu edo kentzen ahal diete fitxategiei.",
+1
View File
@@ -55,6 +55,7 @@ OC.L10N.register(
"Update" : "Atnaujinti",
"Delete" : "Ištrinti",
"Reset" : "Atstatyti",
"Loading …" : "Įkeliama …",
"Failed to apply tags changes" : "Nepavyko pritaikyti žymų pakeitimų",
"Manage tags" : "Tvarkyti žymas",
"Applying tags changes…" : "Taikomi pakeitimai žymoms…",
+1
View File
@@ -53,6 +53,7 @@
"Update" : "Atnaujinti",
"Delete" : "Ištrinti",
"Reset" : "Atstatyti",
"Loading …" : "Įkeliama …",
"Failed to apply tags changes" : "Nepavyko pritaikyti žymų pakeitimų",
"Manage tags" : "Tvarkyti žymas",
"Applying tags changes…" : "Taikomi pakeitimai žymoms…",
+1
View File
@@ -50,6 +50,7 @@ OC.L10N.register(
"Update" : "Update",
"Delete" : "Verwijder",
"Reset" : "Herstellen",
"Loading …" : "Aan het laden...",
"Manage tags" : "Berichttags",
"Search or create tag" : "Zoek of maak een tag",
"Search tag" : "Zoek tag",
+1
View File
@@ -48,6 +48,7 @@
"Update" : "Update",
"Delete" : "Verwijder",
"Reset" : "Herstellen",
"Loading …" : "Aan het laden...",
"Manage tags" : "Berichttags",
"Search or create tag" : "Zoek of maak een tag",
"Search tag" : "Zoek tag",
+1 -1
View File
@@ -60,7 +60,7 @@ OC.L10N.register(
"Changelog for app {app}" : "Änderungsübersicht für App {app}",
"What's new in {app} version {version}" : "Neuigkeiten in {app} Version {version}",
"{version} is available. Get more information on how to update." : "{version} ist verfügbar. Weitere Informationen zur Aktualisierung.",
"<strong>All</strong> apps have a compatible version for this Nextcloud version available." : "Für <strong>alle</strong> Apps steht eine kompatible Version zur Verfügung.",
"<strong>All</strong> apps have a compatible version for this Nextcloud version available." : "Für <strong>alle</strong> Apps stehen kompatible Versionen für diese Nextcloud-Version zur Verfügung.",
"_<strong>%n</strong> app has no compatible version for this Nextcloud version available._::_<strong>%n</strong> apps have no compatible version for this Nextcloud version available._" : ["Für <strong>%n</strong> App steht keine kompatible Version zur Verfügung.","Für <strong>%n</strong> Apps stehen keine kompatible Versionen zur Verfügung."],
"For enterprise use. Provides always the latest patch level, but will not update to the next major release immediately. That update happens once Nextcloud GmbH has done additional hardening and testing for large-scale and mission-critical deployments. This channel is only available to customers and provides the Nextcloud Enterprise package." : "Für den Einsatz in Unternehmen. Stellt immer die neueste Patch-Version bereit, wird jedoch nicht sofort auf die nächste Hauptversion aktualisiert. Diese Aktualisierung wird durchgeführt, sobald die Nextcloud GmbH zusätzliche Vorbereitungen und Tests für umfangreiche und unternehmenskritische Software-Verteilungen durchgeführt hat. Dieser Kanal steht nur Kunden zur Verfügung und enthält das Nextcloud Firmen-Paket ."
},
+1 -1
View File
@@ -58,7 +58,7 @@
"Changelog for app {app}" : "Änderungsübersicht für App {app}",
"What's new in {app} version {version}" : "Neuigkeiten in {app} Version {version}",
"{version} is available. Get more information on how to update." : "{version} ist verfügbar. Weitere Informationen zur Aktualisierung.",
"<strong>All</strong> apps have a compatible version for this Nextcloud version available." : "Für <strong>alle</strong> Apps steht eine kompatible Version zur Verfügung.",
"<strong>All</strong> apps have a compatible version for this Nextcloud version available." : "Für <strong>alle</strong> Apps stehen kompatible Versionen für diese Nextcloud-Version zur Verfügung.",
"_<strong>%n</strong> app has no compatible version for this Nextcloud version available._::_<strong>%n</strong> apps have no compatible version for this Nextcloud version available._" : ["Für <strong>%n</strong> App steht keine kompatible Version zur Verfügung.","Für <strong>%n</strong> Apps stehen keine kompatible Versionen zur Verfügung."],
"For enterprise use. Provides always the latest patch level, but will not update to the next major release immediately. That update happens once Nextcloud GmbH has done additional hardening and testing for large-scale and mission-critical deployments. This channel is only available to customers and provides the Nextcloud Enterprise package." : "Für den Einsatz in Unternehmen. Stellt immer die neueste Patch-Version bereit, wird jedoch nicht sofort auf die nächste Hauptversion aktualisiert. Diese Aktualisierung wird durchgeführt, sobald die Nextcloud GmbH zusätzliche Vorbereitungen und Tests für umfangreiche und unternehmenskritische Software-Verteilungen durchgeführt hat. Dieser Kanal steht nur Kunden zur Verfügung und enthält das Nextcloud Firmen-Paket ."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
+1 -1
View File
@@ -60,7 +60,7 @@ OC.L10N.register(
"Changelog for app {app}" : "Änderungsübersicht für App {app}",
"What's new in {app} version {version}" : "Neuigkeiten in {app} Version {version}",
"{version} is available. Get more information on how to update." : "{version} ist verfügbar. Weitere Informationen zur Aktualisierung.",
"<strong>All</strong> apps have a compatible version for this Nextcloud version available." : "Für <strong>alle</strong> Apps steht eine kompatible Version zur Verfügung.",
"<strong>All</strong> apps have a compatible version for this Nextcloud version available." : "Für <strong>alle</strong> Apps stehen kompatible Versionen für diese Nextcloud-Version zur Verfügung.",
"_<strong>%n</strong> app has no compatible version for this Nextcloud version available._::_<strong>%n</strong> apps have no compatible version for this Nextcloud version available._" : ["Für <strong>%n</strong> App steht keine kompatible Version zur Verfügung.","Für <strong>%n</strong> Apps steht keine kompatible Version zur Verfügung."],
"For enterprise use. Provides always the latest patch level, but will not update to the next major release immediately. That update happens once Nextcloud GmbH has done additional hardening and testing for large-scale and mission-critical deployments. This channel is only available to customers and provides the Nextcloud Enterprise package." : "Für den Einsatz in Unternehmen. Stellt immer die neueste Patch-Version bereit, wird jedoch nicht sofort auf die nächste Hauptversion aktualisiert. Diese Aktualisierung wird durchgeführt, sobald die Nextcloud GmbH zusätzliche Vorbereitungen und Tests für umfangreiche und unternehmenskritische Software-Verteilungen durchgeführt hat. Dieser Kanal steht nur Kunden zur Verfügung und enthält das Nextcloud Firmen-Paket ."
},
+1 -1
View File
@@ -58,7 +58,7 @@
"Changelog for app {app}" : "Änderungsübersicht für App {app}",
"What's new in {app} version {version}" : "Neuigkeiten in {app} Version {version}",
"{version} is available. Get more information on how to update." : "{version} ist verfügbar. Weitere Informationen zur Aktualisierung.",
"<strong>All</strong> apps have a compatible version for this Nextcloud version available." : "Für <strong>alle</strong> Apps steht eine kompatible Version zur Verfügung.",
"<strong>All</strong> apps have a compatible version for this Nextcloud version available." : "Für <strong>alle</strong> Apps stehen kompatible Versionen für diese Nextcloud-Version zur Verfügung.",
"_<strong>%n</strong> app has no compatible version for this Nextcloud version available._::_<strong>%n</strong> apps have no compatible version for this Nextcloud version available._" : ["Für <strong>%n</strong> App steht keine kompatible Version zur Verfügung.","Für <strong>%n</strong> Apps steht keine kompatible Version zur Verfügung."],
"For enterprise use. Provides always the latest patch level, but will not update to the next major release immediately. That update happens once Nextcloud GmbH has done additional hardening and testing for large-scale and mission-critical deployments. This channel is only available to customers and provides the Nextcloud Enterprise package." : "Für den Einsatz in Unternehmen. Stellt immer die neueste Patch-Version bereit, wird jedoch nicht sofort auf die nächste Hauptversion aktualisiert. Diese Aktualisierung wird durchgeführt, sobald die Nextcloud GmbH zusätzliche Vorbereitungen und Tests für umfangreiche und unternehmenskritische Software-Verteilungen durchgeführt hat. Dieser Kanal steht nur Kunden zur Verfügung und enthält das Nextcloud Firmen-Paket ."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
+2 -2
View File
@@ -131,7 +131,6 @@ OC.L10N.register(
"No object found in the given Base DN. Please revise." : "لم يتم العثور على أي كائن object في الاسم المميز الأساسي Base DN المحدد. يُرجي المُراجعة.",
"More than 1,000 directory entries available." : "يُوجد أكثر من 1,000 مُدخل في الدليل directory entries.",
"When unchecked, this configuration will be skipped." : "عندما لا يتم تحديده، سوف يتم تخطي هذه التهيئة.",
"Configuration Active" : "الإعداد نشط",
"Copy current configuration into new directory binding" : "نسخ التهيئة الحالية إلى دليل جديد مرتبط",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "يمكنك التغاضي عن البروتوكول، ما لم يكن SSL مطلوب. إذا كان الأمر كذلك، فابدأ بـ ldaps",
"Host" : "المضيف",
@@ -140,7 +139,6 @@ OC.L10N.register(
"User DN" : "الاسم المميز للمستخدم DN",
"For anonymous access, leave DN and Password empty." : "للوصول المجهول anonymous access، اترك خانتيْ الاسم المميز وكلمة المرور فارغتين.",
"Password" : "كلمة المرور",
"Save Credentials" : "حفظ بيانات تسجيل الدخول",
"One Base DN per line" : "اسم مميز واحد أساسي Base DN لكل سطر",
"You can specify Base DN for users and groups in the Advanced tab" : "يمكنك تحديد الاسم المميز الأساسي Base DN للمستخدمين والمجموعات من علامة تبويب الإعدادات المتقدمة",
"Detect Base DN" : "اكتشاف الاسم المميز الأساسي Base DN",
@@ -221,6 +219,7 @@ OC.L10N.register(
"Add a new configuration" : "إضافة تكوين جديد",
"Delete the current configuration" : "حذف التهيئة الحالية",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "الاسم المميز للعميل المستخدم DN الذي يجب الربط معه. على سبيل المثال، uid=agent,dc=example,dc=com. للوصول مجهول الهوية anonymous access، اترك خانتيْ الاسم المميز وكلمة المرور فارغتين.",
"Save Credentials" : "حفظ بيانات تسجيل الدخول",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "يُلغي طلبات LDAP التلقائية. يُفضّل استعماله في حالة الخوادم التي تخدم أعداداً كبيرة، ولكنه يتطلب بعض المعرفة فيما يخص بروتوكول LDAP.",
"Manually enter LDAP filters (recommended for large directories)" : "الإدخال اليدوي لفلاتر بروتوكول LDAP (يُنصح به في حالة الأدلة الكبيرة)",
"The filter specifies which LDAP users shall have access to the %s instance." : "يُحدِّد عامل التصفية أيّ مستخدمي LDAP يمكنه الوصول إلى الخادم %s.",
@@ -228,6 +227,7 @@ OC.L10N.register(
"Back" : "رجوع",
"Continue" : "متابعة",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>تحذير:</b> وِحدة PHP LDAP غير مُنصبّة؛ لذا فإن الخلفية لن تعمل. يرجى طلب تنصيبها من مسؤول النظام.",
"Configuration Active" : "الإعداد نشط",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "لا يوصي به، استخدمه للاختبار فقط! إذا كان الاتصال يعمل فقط مع هذا الخيار، فقم باستيراد شهادة SSL لخادم LDAP في الخادم %s.",
"\"$home\" Placeholder Field" : "حقل العنصر النائب \"$home\"",
"Pronouns Field" : "حقل الضمائر",
+2 -2
View File
@@ -129,7 +129,6 @@
"No object found in the given Base DN. Please revise." : "لم يتم العثور على أي كائن object في الاسم المميز الأساسي Base DN المحدد. يُرجي المُراجعة.",
"More than 1,000 directory entries available." : "يُوجد أكثر من 1,000 مُدخل في الدليل directory entries.",
"When unchecked, this configuration will be skipped." : "عندما لا يتم تحديده، سوف يتم تخطي هذه التهيئة.",
"Configuration Active" : "الإعداد نشط",
"Copy current configuration into new directory binding" : "نسخ التهيئة الحالية إلى دليل جديد مرتبط",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "يمكنك التغاضي عن البروتوكول، ما لم يكن SSL مطلوب. إذا كان الأمر كذلك، فابدأ بـ ldaps",
"Host" : "المضيف",
@@ -138,7 +137,6 @@
"User DN" : "الاسم المميز للمستخدم DN",
"For anonymous access, leave DN and Password empty." : "للوصول المجهول anonymous access، اترك خانتيْ الاسم المميز وكلمة المرور فارغتين.",
"Password" : "كلمة المرور",
"Save Credentials" : "حفظ بيانات تسجيل الدخول",
"One Base DN per line" : "اسم مميز واحد أساسي Base DN لكل سطر",
"You can specify Base DN for users and groups in the Advanced tab" : "يمكنك تحديد الاسم المميز الأساسي Base DN للمستخدمين والمجموعات من علامة تبويب الإعدادات المتقدمة",
"Detect Base DN" : "اكتشاف الاسم المميز الأساسي Base DN",
@@ -219,6 +217,7 @@
"Add a new configuration" : "إضافة تكوين جديد",
"Delete the current configuration" : "حذف التهيئة الحالية",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "الاسم المميز للعميل المستخدم DN الذي يجب الربط معه. على سبيل المثال، uid=agent,dc=example,dc=com. للوصول مجهول الهوية anonymous access، اترك خانتيْ الاسم المميز وكلمة المرور فارغتين.",
"Save Credentials" : "حفظ بيانات تسجيل الدخول",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "يُلغي طلبات LDAP التلقائية. يُفضّل استعماله في حالة الخوادم التي تخدم أعداداً كبيرة، ولكنه يتطلب بعض المعرفة فيما يخص بروتوكول LDAP.",
"Manually enter LDAP filters (recommended for large directories)" : "الإدخال اليدوي لفلاتر بروتوكول LDAP (يُنصح به في حالة الأدلة الكبيرة)",
"The filter specifies which LDAP users shall have access to the %s instance." : "يُحدِّد عامل التصفية أيّ مستخدمي LDAP يمكنه الوصول إلى الخادم %s.",
@@ -226,6 +225,7 @@
"Back" : "رجوع",
"Continue" : "متابعة",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>تحذير:</b> وِحدة PHP LDAP غير مُنصبّة؛ لذا فإن الخلفية لن تعمل. يرجى طلب تنصيبها من مسؤول النظام.",
"Configuration Active" : "الإعداد نشط",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "لا يوصي به، استخدمه للاختبار فقط! إذا كان الاتصال يعمل فقط مع هذا الخيار، فقم باستيراد شهادة SSL لخادم LDAP في الخادم %s.",
"\"$home\" Placeholder Field" : "حقل العنصر النائب \"$home\"",
"Pronouns Field" : "حقل الضمائر",
+2 -2
View File
@@ -114,7 +114,6 @@ OC.L10N.register(
"No object found in the given Base DN. Please revise." : "Няма намерен обект в даденото базово DN. Моля, ревизирайте.",
"More than 1,000 directory entries available." : "Налични са повече от 1000 записа в директорията.",
"When unchecked, this configuration will be skipped." : "Когато не е отметнато, тази конфигурация ще бъде прескочена.",
"Configuration Active" : "Конфигурацията е Активна",
"Copy current configuration into new directory binding" : "Копиране на текущата конфигурация в ново обвързване на директория",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Можете да пропуснете протокола, освен ако не изисквате SSL. Ако е така, започнете с ldaps://",
"Host" : "Хост",
@@ -123,7 +122,6 @@ OC.L10N.register(
"User DN" : "User DN",
"For anonymous access, leave DN and Password empty." : "За анонимен достъп, остави DN и Парола празни.",
"Password" : "Парола",
"Save Credentials" : "Запиши идентификационни данни",
"One Base DN per line" : "По един Base DN на ред",
"You can specify Base DN for users and groups in the Advanced tab" : "Можете да настроите Base DN за отделни потребители/групи в раздела \"Допълнителни\"",
"Detect Base DN" : "Откриване на базов DN",
@@ -203,6 +201,7 @@ OC.L10N.register(
"Add a new configuration" : "Добавяне на нова конфигурация",
"Delete the current configuration" : "Изтриване на текущата конфигурация",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "DN на потребителят, с който ще стане свързването, пр. uid=agent,dc=example,dc=com. За анонимен достъп, остави DN и Парола празни.",
"Save Credentials" : "Запиши идентификационни данни",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Избягва автоматични LDAP заявки. По-добра опция за големи инсталации, но изисква LDAP познания.",
"Manually enter LDAP filters (recommended for large directories)" : "Ръчно въвеждана на LDAP филтри(препоръчано за по-големи папки)",
"The filter specifies which LDAP users shall have access to the %s instance." : "Филтърът посочва кои LDAP потребители ще имат достъп до %s инсталацията.",
@@ -210,6 +209,7 @@ OC.L10N.register(
"Back" : "Назад",
"Continue" : "Продължи",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Предупреждение:</b> PHP LDAP модулът не е инсталиран, сървърът няма да работи. Моля, поискай системният админстратор да го инсталира.",
"Configuration Active" : "Конфигурацията е Активна",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "Не е препоръчително! Ползвайте само за тестване. Ако връзката работи само с тази опция, внесете SSL сертификата на LDAP сървъра във вашия %s сървър.",
"\"$home\" Placeholder Field" : "„$home“ Заместващо поле",
"Pronouns Field" : "Поле за обръщение",
+2 -2
View File
@@ -112,7 +112,6 @@
"No object found in the given Base DN. Please revise." : "Няма намерен обект в даденото базово DN. Моля, ревизирайте.",
"More than 1,000 directory entries available." : "Налични са повече от 1000 записа в директорията.",
"When unchecked, this configuration will be skipped." : "Когато не е отметнато, тази конфигурация ще бъде прескочена.",
"Configuration Active" : "Конфигурацията е Активна",
"Copy current configuration into new directory binding" : "Копиране на текущата конфигурация в ново обвързване на директория",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Можете да пропуснете протокола, освен ако не изисквате SSL. Ако е така, започнете с ldaps://",
"Host" : "Хост",
@@ -121,7 +120,6 @@
"User DN" : "User DN",
"For anonymous access, leave DN and Password empty." : "За анонимен достъп, остави DN и Парола празни.",
"Password" : "Парола",
"Save Credentials" : "Запиши идентификационни данни",
"One Base DN per line" : "По един Base DN на ред",
"You can specify Base DN for users and groups in the Advanced tab" : "Можете да настроите Base DN за отделни потребители/групи в раздела \"Допълнителни\"",
"Detect Base DN" : "Откриване на базов DN",
@@ -201,6 +199,7 @@
"Add a new configuration" : "Добавяне на нова конфигурация",
"Delete the current configuration" : "Изтриване на текущата конфигурация",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "DN на потребителят, с който ще стане свързването, пр. uid=agent,dc=example,dc=com. За анонимен достъп, остави DN и Парола празни.",
"Save Credentials" : "Запиши идентификационни данни",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Избягва автоматични LDAP заявки. По-добра опция за големи инсталации, но изисква LDAP познания.",
"Manually enter LDAP filters (recommended for large directories)" : "Ръчно въвеждана на LDAP филтри(препоръчано за по-големи папки)",
"The filter specifies which LDAP users shall have access to the %s instance." : "Филтърът посочва кои LDAP потребители ще имат достъп до %s инсталацията.",
@@ -208,6 +207,7 @@
"Back" : "Назад",
"Continue" : "Продължи",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Предупреждение:</b> PHP LDAP модулът не е инсталиран, сървърът няма да работи. Моля, поискай системният админстратор да го инсталира.",
"Configuration Active" : "Конфигурацията е Активна",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "Не е препоръчително! Ползвайте само за тестване. Ако връзката работи само с тази опция, внесете SSL сертификата на LDAP сървъра във вашия %s сървър.",
"\"$home\" Placeholder Field" : "„$home“ Заместващо поле",
"Pronouns Field" : "Поле за обръщение",
+2 -2
View File
@@ -131,7 +131,6 @@ OC.L10N.register(
"No object found in the given Base DN. Please revise." : "No s'ha trobat cap objecte a la Base DN donada. Reviseu.",
"More than 1,000 directory entries available." : "Hi ha més de 1.000 entrades de directori disponibles.",
"When unchecked, this configuration will be skipped." : "Si està desmarcat, aquesta configuració s'ometrà.",
"Configuration Active" : "Configuració activa",
"Copy current configuration into new directory binding" : "Copia l'actual configuració en la nova connexió al directori",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Podeu ometre el protocol, si no requeriu SSL. Si ho requeriu llavors comenceu amb ldaps://",
"Host" : "Servidor",
@@ -140,7 +139,6 @@ OC.L10N.register(
"User DN" : "DN Usuari",
"For anonymous access, leave DN and Password empty." : "Per un accés anònim, deixeu la DN i la contrasenya en blanc.",
"Password" : "Contrasenya",
"Save Credentials" : "Desa credencials",
"One Base DN per line" : "Una DN Base per línia",
"You can specify Base DN for users and groups in the Advanced tab" : "Podeu especificar DN Base per usuaris i grups a la pestanya Avançat",
"Detect Base DN" : "Detecta el DN de base",
@@ -221,6 +219,7 @@ OC.L10N.register(
"Add a new configuration" : "Afegeix una nova configuració",
"Delete the current configuration" : "Suprimeix la configuració actual",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "La DN de l'usuari client amb la que s'haurà de fer, per exemple uid=agent,dc=exemple,dc=com. Per un accés anònim, deixeu la DN i la contrasenya en blanc.",
"Save Credentials" : "Desa credencials",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Evita peticions LDAP automàtiques. És millor per configuracions grans, però requereix tenir certs coneixements de LDAP.",
"Manually enter LDAP filters (recommended for large directories)" : "Introducció manual de filtres LDAP (recomanat per a directoris grans)",
"The filter specifies which LDAP users shall have access to the %s instance." : "El filtre especifica quins usuaris LDAP haurien de tenir accés a la instància %s.",
@@ -228,6 +227,7 @@ OC.L10N.register(
"Back" : "Enrere",
"Continue" : "Continua",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Avís:</b> El mòdul PHP LDAP no està instal·lat, el rerefons no funcionarà. Demaneu a l'administrador del sistema que l'instal·li.",
"Configuration Active" : "Configuració activa",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "No es recomana, useu-ho només com a prova! Importeu el certificat SSL del servidor LDAP al servidor %s només si la connexió funciona amb aquesta opció.",
"\"$home\" Placeholder Field" : "Camp de marcador de posició \"$home\"",
"Pronouns Field" : "Camp de pronoms",
+2 -2
View File
@@ -129,7 +129,6 @@
"No object found in the given Base DN. Please revise." : "No s'ha trobat cap objecte a la Base DN donada. Reviseu.",
"More than 1,000 directory entries available." : "Hi ha més de 1.000 entrades de directori disponibles.",
"When unchecked, this configuration will be skipped." : "Si està desmarcat, aquesta configuració s'ometrà.",
"Configuration Active" : "Configuració activa",
"Copy current configuration into new directory binding" : "Copia l'actual configuració en la nova connexió al directori",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Podeu ometre el protocol, si no requeriu SSL. Si ho requeriu llavors comenceu amb ldaps://",
"Host" : "Servidor",
@@ -138,7 +137,6 @@
"User DN" : "DN Usuari",
"For anonymous access, leave DN and Password empty." : "Per un accés anònim, deixeu la DN i la contrasenya en blanc.",
"Password" : "Contrasenya",
"Save Credentials" : "Desa credencials",
"One Base DN per line" : "Una DN Base per línia",
"You can specify Base DN for users and groups in the Advanced tab" : "Podeu especificar DN Base per usuaris i grups a la pestanya Avançat",
"Detect Base DN" : "Detecta el DN de base",
@@ -219,6 +217,7 @@
"Add a new configuration" : "Afegeix una nova configuració",
"Delete the current configuration" : "Suprimeix la configuració actual",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "La DN de l'usuari client amb la que s'haurà de fer, per exemple uid=agent,dc=exemple,dc=com. Per un accés anònim, deixeu la DN i la contrasenya en blanc.",
"Save Credentials" : "Desa credencials",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Evita peticions LDAP automàtiques. És millor per configuracions grans, però requereix tenir certs coneixements de LDAP.",
"Manually enter LDAP filters (recommended for large directories)" : "Introducció manual de filtres LDAP (recomanat per a directoris grans)",
"The filter specifies which LDAP users shall have access to the %s instance." : "El filtre especifica quins usuaris LDAP haurien de tenir accés a la instància %s.",
@@ -226,6 +225,7 @@
"Back" : "Enrere",
"Continue" : "Continua",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Avís:</b> El mòdul PHP LDAP no està instal·lat, el rerefons no funcionarà. Demaneu a l'administrador del sistema que l'instal·li.",
"Configuration Active" : "Configuració activa",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "No es recomana, useu-ho només com a prova! Importeu el certificat SSL del servidor LDAP al servidor %s només si la connexió funciona amb aquesta opció.",
"\"$home\" Placeholder Field" : "Camp de marcador de posició \"$home\"",
"Pronouns Field" : "Camp de pronoms",
+2 -5
View File
@@ -147,22 +147,17 @@ OC.L10N.register(
"More than 1,000 directory entries available." : "Je dostupných více než 1000 položek adresáře kontaktů.",
"_{ldapTestBase} entry available within the provided Base DN_::_{ldapTestBase} entries available within the provided Base DN_" : ["{ldapTestBase} položka k dispozici v rámci poskytnuté Base DN","{ldapTestBase} položky k dispozici v rámci poskytnuté Base DN","{ldapTestBase} položek k dispozici v rámci poskytnuté Base DN","{ldapTestBase} položky k dispozici v rámci poskytnuté Base DN"],
"When unchecked, this configuration will be skipped." : "Pokud není zaškrtnuto, bude toto nastavení přeskočeno.",
"Configuration Active" : "Nastavení aktivní",
"Copy current configuration into new directory binding" : "Zkopírovat stávající nastavení do nového adresářového propojení",
"Copy configuration" : "Zkopírovat nastavení",
"Delete configuration" : "Smazat nastavení",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Pokud nevyžadujete SSL, můžete protokol vynechat. Pokud ano, začněte ldaps://",
"Host" : "Hostitel",
"ldaps://localhost" : "ldaps://localhost",
"Port" : "Port",
"389" : "389",
"Detect Port" : "Zjistit port",
"The DN of the client user with which the bind shall be done. For anonymous access, leave DN and Password empty." : "DN klientského uživatele, ke kterému má být vytvořena vazba. Pro anonymní přístup ponechte DN a heslo prázdné.",
"User DN" : "Uživatelské DN",
"uid=agent,dc=example,dc=com" : "uid=agent,dc=example,dc=com",
"For anonymous access, leave DN and Password empty." : "Pro anonymní přístup ponechte údaje DN and heslo prázdné.",
"Password" : "Heslo",
"Save Credentials" : "Uložit přihlašovací údaje",
"Base DN" : "Základ DN",
"One Base DN per line" : "Každé základní DN na samostatném řádku",
"You can specify Base DN for users and groups in the Advanced tab" : "Základ DN pro uživatele a skupiny je možné zadat v panelu Pokročilé",
@@ -256,6 +251,7 @@ OC.L10N.register(
"Add a new configuration" : "Přidat nové nastavení",
"Delete the current configuration" : "Smazat stávající nastavení",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "DN klientského uživatele, ke kterému má být vytvořena vazba, např. uid=agent,dc=example,dc=com. Pro anonymní přístup ponechte DN a heslo prázdné.",
"Save Credentials" : "Uložit přihlašovací údaje",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Zabraňuje automatickým LDAP požadavkům. Výhodné pro velká nasazení, ale vyžaduje znalosti o LDAP.",
"Manually enter LDAP filters (recommended for large directories)" : "Ručně vložit LDAP filtry (doporučeno pro obsáhlé adresáře kontaktů)",
"The filter specifies which LDAP users shall have access to the %s instance." : "Filtr určuje, kteří uživatelé z LDAP mají mít přístup k instanci %s.",
@@ -263,6 +259,7 @@ OC.L10N.register(
"Back" : "Zpět",
"Continue" : "Pokračovat",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Varování:</b> není nainstalován LDAP modul pro PHP, podpůrná vrstva nebude fungovat. Požádejte správce systému, aby ho nainstaloval.",
"Configuration Active" : "Nastavení aktivní",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "Nedoporučuje se, určeno pouze k použití pro testy! Pokud spojení funguje pouze s touto volbou, naimportujte SSL certifikát vašeho LDAP serveru na %s server.",
"\"$home\" Placeholder Field" : "Výplňová kolonka „$home“",
"Pronouns Field" : "Kolonka pro zájmena",
+2 -5
View File
@@ -145,22 +145,17 @@
"More than 1,000 directory entries available." : "Je dostupných více než 1000 položek adresáře kontaktů.",
"_{ldapTestBase} entry available within the provided Base DN_::_{ldapTestBase} entries available within the provided Base DN_" : ["{ldapTestBase} položka k dispozici v rámci poskytnuté Base DN","{ldapTestBase} položky k dispozici v rámci poskytnuté Base DN","{ldapTestBase} položek k dispozici v rámci poskytnuté Base DN","{ldapTestBase} položky k dispozici v rámci poskytnuté Base DN"],
"When unchecked, this configuration will be skipped." : "Pokud není zaškrtnuto, bude toto nastavení přeskočeno.",
"Configuration Active" : "Nastavení aktivní",
"Copy current configuration into new directory binding" : "Zkopírovat stávající nastavení do nového adresářového propojení",
"Copy configuration" : "Zkopírovat nastavení",
"Delete configuration" : "Smazat nastavení",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Pokud nevyžadujete SSL, můžete protokol vynechat. Pokud ano, začněte ldaps://",
"Host" : "Hostitel",
"ldaps://localhost" : "ldaps://localhost",
"Port" : "Port",
"389" : "389",
"Detect Port" : "Zjistit port",
"The DN of the client user with which the bind shall be done. For anonymous access, leave DN and Password empty." : "DN klientského uživatele, ke kterému má být vytvořena vazba. Pro anonymní přístup ponechte DN a heslo prázdné.",
"User DN" : "Uživatelské DN",
"uid=agent,dc=example,dc=com" : "uid=agent,dc=example,dc=com",
"For anonymous access, leave DN and Password empty." : "Pro anonymní přístup ponechte údaje DN and heslo prázdné.",
"Password" : "Heslo",
"Save Credentials" : "Uložit přihlašovací údaje",
"Base DN" : "Základ DN",
"One Base DN per line" : "Každé základní DN na samostatném řádku",
"You can specify Base DN for users and groups in the Advanced tab" : "Základ DN pro uživatele a skupiny je možné zadat v panelu Pokročilé",
@@ -254,6 +249,7 @@
"Add a new configuration" : "Přidat nové nastavení",
"Delete the current configuration" : "Smazat stávající nastavení",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "DN klientského uživatele, ke kterému má být vytvořena vazba, např. uid=agent,dc=example,dc=com. Pro anonymní přístup ponechte DN a heslo prázdné.",
"Save Credentials" : "Uložit přihlašovací údaje",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Zabraňuje automatickým LDAP požadavkům. Výhodné pro velká nasazení, ale vyžaduje znalosti o LDAP.",
"Manually enter LDAP filters (recommended for large directories)" : "Ručně vložit LDAP filtry (doporučeno pro obsáhlé adresáře kontaktů)",
"The filter specifies which LDAP users shall have access to the %s instance." : "Filtr určuje, kteří uživatelé z LDAP mají mít přístup k instanci %s.",
@@ -261,6 +257,7 @@
"Back" : "Zpět",
"Continue" : "Pokračovat",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Varování:</b> není nainstalován LDAP modul pro PHP, podpůrná vrstva nebude fungovat. Požádejte správce systému, aby ho nainstaloval.",
"Configuration Active" : "Nastavení aktivní",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "Nedoporučuje se, určeno pouze k použití pro testy! Pokud spojení funguje pouze s touto volbou, naimportujte SSL certifikát vašeho LDAP serveru na %s server.",
"\"$home\" Placeholder Field" : "Výplňová kolonka „$home“",
"Pronouns Field" : "Kolonka pro zájmena",
+2 -2
View File
@@ -137,7 +137,6 @@ OC.L10N.register(
"No object found in the given Base DN. Please revise." : "Intet objekt fundet i den givne base DN. Gennemse venligst.",
"More than 1,000 directory entries available." : "Mere end 1.000 mappeindgange til rådighed.",
"When unchecked, this configuration will be skipped." : "Når denne konfiguration ikke er markeret, så vil den blive sprunget over.",
"Configuration Active" : "Konfiguration aktiv",
"Copy current configuration into new directory binding" : "Kopiér nuværende konfiguration til ny mappebinding",
"Copy configuration" : "Kopiér konfiguration",
"Delete configuration" : "Slet konfiguration",
@@ -148,7 +147,6 @@ OC.L10N.register(
"User DN" : "Bruger DN",
"For anonymous access, leave DN and Password empty." : "For anonym adgang, lad DN og adgangskode være tom.",
"Password" : "Adgangskode",
"Save Credentials" : "Gem legitimationsoplysninger",
"Base DN" : "Basis DN",
"One Base DN per line" : "En Base DN per linje",
"You can specify Base DN for users and groups in the Advanced tab" : "Du kan angive Base DN for brugere og grupper under fanebladet Avanceret",
@@ -237,6 +235,7 @@ OC.L10N.register(
"Add a new configuration" : "Tilføj en ny konfiguration",
"Delete the current configuration" : "Slet den aktuelle konfiguration",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "DN for klientbrugeren, som bindingen skal udføres med, f.eks. uid=agent,dc=eksempel,dc=com. For anonym adgang, lad DN og adgangskode være tom.",
"Save Credentials" : "Gem legitimationsoplysninger",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Undgår automatisk LDAP anmodninger. Bedre for større opsætninger, men kræver noget LDAP viden.",
"Manually enter LDAP filters (recommended for large directories)" : "Indtast manuelt LDAP filtre (anbefales til store mapper)",
"The filter specifies which LDAP users shall have access to the %s instance." : "Filteret angiver, hvilke LDAP-brugere der skal have adgang til %s instansen.",
@@ -244,6 +243,7 @@ OC.L10N.register(
"Back" : "Tilbage",
"Continue" : "Fortsæt",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Advarsel:</b> PHP LDAP modulet er ikke installeret, backend vil ikke virke. Bed din systemadministrator om at installere den.",
"Configuration Active" : "Konfiguration aktiv",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "Ikke anbefalet, brug det kun til test! Hvis forbindelsen kun virker med denne indstilling, så importer LDAP serverens SSL certifikat til din %s server.",
"\"$home\" Placeholder Field" : "\"$home\" pladsholderfeltField",
"Pronouns Field" : "Pronomenfelt",
+2 -2
View File
@@ -135,7 +135,6 @@
"No object found in the given Base DN. Please revise." : "Intet objekt fundet i den givne base DN. Gennemse venligst.",
"More than 1,000 directory entries available." : "Mere end 1.000 mappeindgange til rådighed.",
"When unchecked, this configuration will be skipped." : "Når denne konfiguration ikke er markeret, så vil den blive sprunget over.",
"Configuration Active" : "Konfiguration aktiv",
"Copy current configuration into new directory binding" : "Kopiér nuværende konfiguration til ny mappebinding",
"Copy configuration" : "Kopiér konfiguration",
"Delete configuration" : "Slet konfiguration",
@@ -146,7 +145,6 @@
"User DN" : "Bruger DN",
"For anonymous access, leave DN and Password empty." : "For anonym adgang, lad DN og adgangskode være tom.",
"Password" : "Adgangskode",
"Save Credentials" : "Gem legitimationsoplysninger",
"Base DN" : "Basis DN",
"One Base DN per line" : "En Base DN per linje",
"You can specify Base DN for users and groups in the Advanced tab" : "Du kan angive Base DN for brugere og grupper under fanebladet Avanceret",
@@ -235,6 +233,7 @@
"Add a new configuration" : "Tilføj en ny konfiguration",
"Delete the current configuration" : "Slet den aktuelle konfiguration",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "DN for klientbrugeren, som bindingen skal udføres med, f.eks. uid=agent,dc=eksempel,dc=com. For anonym adgang, lad DN og adgangskode være tom.",
"Save Credentials" : "Gem legitimationsoplysninger",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Undgår automatisk LDAP anmodninger. Bedre for større opsætninger, men kræver noget LDAP viden.",
"Manually enter LDAP filters (recommended for large directories)" : "Indtast manuelt LDAP filtre (anbefales til store mapper)",
"The filter specifies which LDAP users shall have access to the %s instance." : "Filteret angiver, hvilke LDAP-brugere der skal have adgang til %s instansen.",
@@ -242,6 +241,7 @@
"Back" : "Tilbage",
"Continue" : "Fortsæt",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Advarsel:</b> PHP LDAP modulet er ikke installeret, backend vil ikke virke. Bed din systemadministrator om at installere den.",
"Configuration Active" : "Konfiguration aktiv",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "Ikke anbefalet, brug det kun til test! Hvis forbindelsen kun virker med denne indstilling, så importer LDAP serverens SSL certifikat til din %s server.",
"\"$home\" Placeholder Field" : "\"$home\" pladsholderfeltField",
"Pronouns Field" : "Pronomenfelt",
+2 -5
View File
@@ -147,22 +147,17 @@ OC.L10N.register(
"More than 1,000 directory entries available." : "Mehr als 1.000 Einträge stehen zur Verfügung.",
"_{ldapTestBase} entry available within the provided Base DN_::_{ldapTestBase} entries available within the provided Base DN_" : ["{ldapTestBase} Eintrag in der angegebenen Base DN verfügbar","{ldapTestBase} Einträge in der angegebenen Base DN verfügbar"],
"When unchecked, this configuration will be skipped." : "Konfiguration wird übersprungen, wenn nicht angehakt.",
"Configuration Active" : "Konfiguration aktiv",
"Copy current configuration into new directory binding" : "Aktuelle Konfiguration in eine neues Verzeichnis-Bind kopieren",
"Copy configuration" : "Konfiguration kopieren",
"Delete configuration" : "Konfiguration löschen",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Du kannst das Protokoll auslassen, es sei denn, du benötigst SSL. In diesem Fall mit ldaps:// beginnen.",
"Host" : "Host",
"ldaps://localhost" : "ldaps://localhost",
"Port" : "Port",
"389" : "389",
"Detect Port" : "Port ermitteln",
"The DN of the client user with which the bind shall be done. For anonymous access, leave DN and Password empty." : "Der DN des Client-Benutzers, mit dem die Bindung erfolgen soll. Für anonymen Zugriff DN und Passwort leer lassen.",
"User DN" : "Benutzer-DN",
"uid=agent,dc=example,dc=com" : "uid=agent,dc=example,dc=com",
"For anonymous access, leave DN and Password empty." : "Lasse die Felder DN und Passwort für anonymen Zugang leer.",
"Password" : "Passwort",
"Save Credentials" : "Zugangsdaten speichern",
"Base DN" : "Base DN",
"One Base DN per line" : "Einen Basis-DN pro Zeile",
"You can specify Base DN for users and groups in the Advanced tab" : "Die Basis-DN für Benutzer und Gruppen kann im Reiter \"Fortgeschritten\" eingegeben werden",
@@ -256,6 +251,7 @@ OC.L10N.register(
"Add a new configuration" : "Neue Konfiguration hinzufügen",
"Delete the current configuration" : "Aktuelle Konfiguration löschen",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "Der DN des Benutzers, mit dem der LDAP-Bind durchgeführt werden soll, z. B. uid=agent,dc=example,dc=com. Für anonymen Zugriff DN und Passwort leerlassen.",
"Save Credentials" : "Zugangsdaten speichern",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Verhindert automatische LDAP-Anfragen. Besser geeignet für größere Installationen, benötigt aber erweiterte LDAP-Kenntnisse.",
"Manually enter LDAP filters (recommended for large directories)" : "LDAP-Filter manuell eingeben (empfohlen für große Verzeichnisse)",
"The filter specifies which LDAP users shall have access to the %s instance." : "Der Filter gibt an, welche LDAP-Benutzer Zugriff auf die %s-Instanz haben sollen.",
@@ -263,6 +259,7 @@ OC.L10N.register(
"Back" : "Zurück",
"Continue" : "Fortsetzen",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Warnung:</b> Da das PHP-Modul für LDAP nicht installiert ist, wird das Backend nicht funktionieren. Bitte die Systemadministration kontaktieren und diese um die Installation des Moduls bitten.",
"Configuration Active" : "Konfiguration aktiv",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "Nur für Testzwecke geeignet, sollte Standardmäßig nicht verwendet werden. Falls die Verbindung nur mit dieser Option funktioniert, das SSL-Zertifikat des LDAP-Servers in deinen %s Server importieren.",
"\"$home\" Placeholder Field" : "\"$home\" Platzhalter-Feld",
"Pronouns Field" : "Pronomenfeld",
+2 -5
View File
@@ -145,22 +145,17 @@
"More than 1,000 directory entries available." : "Mehr als 1.000 Einträge stehen zur Verfügung.",
"_{ldapTestBase} entry available within the provided Base DN_::_{ldapTestBase} entries available within the provided Base DN_" : ["{ldapTestBase} Eintrag in der angegebenen Base DN verfügbar","{ldapTestBase} Einträge in der angegebenen Base DN verfügbar"],
"When unchecked, this configuration will be skipped." : "Konfiguration wird übersprungen, wenn nicht angehakt.",
"Configuration Active" : "Konfiguration aktiv",
"Copy current configuration into new directory binding" : "Aktuelle Konfiguration in eine neues Verzeichnis-Bind kopieren",
"Copy configuration" : "Konfiguration kopieren",
"Delete configuration" : "Konfiguration löschen",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Du kannst das Protokoll auslassen, es sei denn, du benötigst SSL. In diesem Fall mit ldaps:// beginnen.",
"Host" : "Host",
"ldaps://localhost" : "ldaps://localhost",
"Port" : "Port",
"389" : "389",
"Detect Port" : "Port ermitteln",
"The DN of the client user with which the bind shall be done. For anonymous access, leave DN and Password empty." : "Der DN des Client-Benutzers, mit dem die Bindung erfolgen soll. Für anonymen Zugriff DN und Passwort leer lassen.",
"User DN" : "Benutzer-DN",
"uid=agent,dc=example,dc=com" : "uid=agent,dc=example,dc=com",
"For anonymous access, leave DN and Password empty." : "Lasse die Felder DN und Passwort für anonymen Zugang leer.",
"Password" : "Passwort",
"Save Credentials" : "Zugangsdaten speichern",
"Base DN" : "Base DN",
"One Base DN per line" : "Einen Basis-DN pro Zeile",
"You can specify Base DN for users and groups in the Advanced tab" : "Die Basis-DN für Benutzer und Gruppen kann im Reiter \"Fortgeschritten\" eingegeben werden",
@@ -254,6 +249,7 @@
"Add a new configuration" : "Neue Konfiguration hinzufügen",
"Delete the current configuration" : "Aktuelle Konfiguration löschen",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "Der DN des Benutzers, mit dem der LDAP-Bind durchgeführt werden soll, z. B. uid=agent,dc=example,dc=com. Für anonymen Zugriff DN und Passwort leerlassen.",
"Save Credentials" : "Zugangsdaten speichern",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Verhindert automatische LDAP-Anfragen. Besser geeignet für größere Installationen, benötigt aber erweiterte LDAP-Kenntnisse.",
"Manually enter LDAP filters (recommended for large directories)" : "LDAP-Filter manuell eingeben (empfohlen für große Verzeichnisse)",
"The filter specifies which LDAP users shall have access to the %s instance." : "Der Filter gibt an, welche LDAP-Benutzer Zugriff auf die %s-Instanz haben sollen.",
@@ -261,6 +257,7 @@
"Back" : "Zurück",
"Continue" : "Fortsetzen",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Warnung:</b> Da das PHP-Modul für LDAP nicht installiert ist, wird das Backend nicht funktionieren. Bitte die Systemadministration kontaktieren und diese um die Installation des Moduls bitten.",
"Configuration Active" : "Konfiguration aktiv",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "Nur für Testzwecke geeignet, sollte Standardmäßig nicht verwendet werden. Falls die Verbindung nur mit dieser Option funktioniert, das SSL-Zertifikat des LDAP-Servers in deinen %s Server importieren.",
"\"$home\" Placeholder Field" : "\"$home\" Platzhalter-Feld",
"Pronouns Field" : "Pronomenfeld",
+2 -5
View File
@@ -147,22 +147,17 @@ OC.L10N.register(
"More than 1,000 directory entries available." : "Es sind mehr als 1.000 Verzeichniseinträge verfügbar.",
"_{ldapTestBase} entry available within the provided Base DN_::_{ldapTestBase} entries available within the provided Base DN_" : ["{ldapTestBase} Eintrag in der angegebenen Base DN verfügbar","{ldapTestBase} Einträge in der angegebenen Base DN verfügbar"],
"When unchecked, this configuration will be skipped." : "Konfiguration wird übersprungen, wenn nicht angehakt.",
"Configuration Active" : "Konfiguration aktiv",
"Copy current configuration into new directory binding" : "Aktuelle Konfiguration in eine neues Verzeichnis-Bind kopieren ",
"Copy configuration" : "Konfiguration kopieren",
"Delete configuration" : "Konfiguration löschen",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Sie können das Protokoll auslassen, wenn sie SSL nicht benötigen. Falls doch, so starten Sie mit ldaps://",
"Host" : "Host",
"ldaps://localhost" : "ldaps://localhost",
"Port" : "Port",
"389" : "389",
"Detect Port" : "Port ermitteln",
"The DN of the client user with which the bind shall be done. For anonymous access, leave DN and Password empty." : "Der DN des Client-Benutzers, mit dem die Bindung erfolgen soll. Für anonymen Zugriff DN und Passwort leer lassen.",
"User DN" : "Benutzer-DN",
"uid=agent,dc=example,dc=com" : "uid=agent,dc=Beispiel,dc=de",
"For anonymous access, leave DN and Password empty." : "Lassen Sie die Felder DN und Passwort für einen anonymen Zugang leer.",
"Password" : "Passwort",
"Save Credentials" : "Zugangsdaten speichern",
"Base DN" : "Base DN",
"One Base DN per line" : "Einen Basis-DN pro Zeile",
"You can specify Base DN for users and groups in the Advanced tab" : " Sie können die Basis-DN für Benutzer und Gruppen im Reiter \"Fortgeschritten\" angeben",
@@ -256,6 +251,7 @@ OC.L10N.register(
"Add a new configuration" : "Fügen Sie eine neue Konfiguration hinzu.",
"Delete the current configuration" : "Aktuelle Konfiguration löschen",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "Der DN des Benutzers, mit dem der LDAP-Bind durchgeführt werden soll, z.B. uid=agent,dc=example,dc=com. Für einen anonymen Zugriff lassen Sie DN und Passwort leer.",
"Save Credentials" : "Zugangsdaten speichern",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Verhindert automatische LDAP-Anfragen. Besser geeignet für größere Installationen, benötigt aber erweiterte LDAP-Kenntnisse.",
"Manually enter LDAP filters (recommended for large directories)" : "LDAP-Filter manuell eingeben (empfohlen für große Verzeichnisse)",
"The filter specifies which LDAP users shall have access to the %s instance." : "Der Filter gibt an, welche LDAP-Benutzer Zugriff auf die %s-Instanz haben sollen.",
@@ -263,6 +259,7 @@ OC.L10N.register(
"Back" : "Zurück",
"Continue" : "Fortsetzen",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Warnung:</b> Da das PHP-Modul für LDAP nicht installiert ist, wird das Backend nicht funktionieren. Bitte kontaktieren Sie Ihre Systemadministration und bitten Sie sie um die Installation des Moduls.",
"Configuration Active" : "Konfiguration aktiv",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "Nur für Testzwecke geeignet, sollte Standardmäßig nicht verwendet werden. Falls die Verbindung nur mit dieser Option funktioniert, importieren Sie das SSL-Zertifikat des LDAP-Servers in Ihren %s Server.",
"\"$home\" Placeholder Field" : "\"$home\" Platzhalter-Feld",
"Pronouns Field" : "Pronomenfeld",
+2 -5
View File
@@ -145,22 +145,17 @@
"More than 1,000 directory entries available." : "Es sind mehr als 1.000 Verzeichniseinträge verfügbar.",
"_{ldapTestBase} entry available within the provided Base DN_::_{ldapTestBase} entries available within the provided Base DN_" : ["{ldapTestBase} Eintrag in der angegebenen Base DN verfügbar","{ldapTestBase} Einträge in der angegebenen Base DN verfügbar"],
"When unchecked, this configuration will be skipped." : "Konfiguration wird übersprungen, wenn nicht angehakt.",
"Configuration Active" : "Konfiguration aktiv",
"Copy current configuration into new directory binding" : "Aktuelle Konfiguration in eine neues Verzeichnis-Bind kopieren ",
"Copy configuration" : "Konfiguration kopieren",
"Delete configuration" : "Konfiguration löschen",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Sie können das Protokoll auslassen, wenn sie SSL nicht benötigen. Falls doch, so starten Sie mit ldaps://",
"Host" : "Host",
"ldaps://localhost" : "ldaps://localhost",
"Port" : "Port",
"389" : "389",
"Detect Port" : "Port ermitteln",
"The DN of the client user with which the bind shall be done. For anonymous access, leave DN and Password empty." : "Der DN des Client-Benutzers, mit dem die Bindung erfolgen soll. Für anonymen Zugriff DN und Passwort leer lassen.",
"User DN" : "Benutzer-DN",
"uid=agent,dc=example,dc=com" : "uid=agent,dc=Beispiel,dc=de",
"For anonymous access, leave DN and Password empty." : "Lassen Sie die Felder DN und Passwort für einen anonymen Zugang leer.",
"Password" : "Passwort",
"Save Credentials" : "Zugangsdaten speichern",
"Base DN" : "Base DN",
"One Base DN per line" : "Einen Basis-DN pro Zeile",
"You can specify Base DN for users and groups in the Advanced tab" : " Sie können die Basis-DN für Benutzer und Gruppen im Reiter \"Fortgeschritten\" angeben",
@@ -254,6 +249,7 @@
"Add a new configuration" : "Fügen Sie eine neue Konfiguration hinzu.",
"Delete the current configuration" : "Aktuelle Konfiguration löschen",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "Der DN des Benutzers, mit dem der LDAP-Bind durchgeführt werden soll, z.B. uid=agent,dc=example,dc=com. Für einen anonymen Zugriff lassen Sie DN und Passwort leer.",
"Save Credentials" : "Zugangsdaten speichern",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Verhindert automatische LDAP-Anfragen. Besser geeignet für größere Installationen, benötigt aber erweiterte LDAP-Kenntnisse.",
"Manually enter LDAP filters (recommended for large directories)" : "LDAP-Filter manuell eingeben (empfohlen für große Verzeichnisse)",
"The filter specifies which LDAP users shall have access to the %s instance." : "Der Filter gibt an, welche LDAP-Benutzer Zugriff auf die %s-Instanz haben sollen.",
@@ -261,6 +257,7 @@
"Back" : "Zurück",
"Continue" : "Fortsetzen",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Warnung:</b> Da das PHP-Modul für LDAP nicht installiert ist, wird das Backend nicht funktionieren. Bitte kontaktieren Sie Ihre Systemadministration und bitten Sie sie um die Installation des Moduls.",
"Configuration Active" : "Konfiguration aktiv",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "Nur für Testzwecke geeignet, sollte Standardmäßig nicht verwendet werden. Falls die Verbindung nur mit dieser Option funktioniert, importieren Sie das SSL-Zertifikat des LDAP-Servers in Ihren %s Server.",
"\"$home\" Placeholder Field" : "\"$home\" Platzhalter-Feld",
"Pronouns Field" : "Pronomenfeld",
+2 -2
View File
@@ -143,7 +143,6 @@ OC.L10N.register(
"No object found in the given Base DN. Please revise." : "Δεν βρέθηκε αντικείμενο στο δηλωθέν Base DN. Παρακαλώ αναθεωρήστε.",
"More than 1,000 directory entries available." : "Είναι διαθέσιμες περισσότερες από 1.000 εγγραφές καταλόγου.",
"When unchecked, this configuration will be skipped." : "Όταν δεν είναι επιλεγμένο, αυτή η ρύθμιση θα πρέπει να παραλειφθεί. ",
"Configuration Active" : "Ενεργοποιηση ρυθμισεων",
"Copy current configuration into new directory binding" : "Αντιγραφή της τρέχουσας διαμόρφωσης σε νέο κατάλογο",
"Copy configuration" : "Αντιγραφή ρυθμίσεων",
"Delete configuration" : "Διαγραφή ρυθμίσεων",
@@ -154,7 +153,6 @@ OC.L10N.register(
"User DN" : "DN χρήστη",
"For anonymous access, leave DN and Password empty." : "Για ανώνυμη πρόσβαση, αφήστε κενά τα πεδία DN και Pasword.",
"Password" : "Συνθηματικό",
"Save Credentials" : "Αποθήκευση διαπιστευτηρίων",
"Base DN" : "Base DN",
"One Base DN per line" : "Ένα DN Βάσης ανά γραμμή ",
"You can specify Base DN for users and groups in the Advanced tab" : "Μπορείτε να καθορίσετε το Base DN για χρήστες και ομάδες από την καρτέλα Προηγμένες ρυθμίσεις",
@@ -236,6 +234,7 @@ OC.L10N.register(
"Add a new configuration" : "Προσθήκη νέας ρύθμισης",
"Delete the current configuration" : "Διαγραφή τρέχουσας διαμόρφωσης",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "Το DN του χρήστη πελάτη με το οποίο θα πρέπει να γίνει η σύνδεση, π.χ. uid=agent,dc=example,dc=com. Για χρήση χωρίς πιστοποίηση, αφήστε το DN και τον Κωδικό κενά.",
"Save Credentials" : "Αποθήκευση διαπιστευτηρίων",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Αποφυγή αυτόματων αιτημάτων LDAP. Προτιμότερο για μεγαλύτερες εγκαταστάσεις, αλλά απαιτεί κάποιες γνώσεις LDAP.",
"Manually enter LDAP filters (recommended for large directories)" : "Εισάγετε με μη αυτόματο τρόπο φίλτρα LDAP (προτείνεται για μεγάλους καταλόγους)",
"The filter specifies which LDAP users shall have access to the %s instance." : "Το φίλτρο καθορίζει ποιοι χρήστες LDAP θα έχουν πρόσβαση στην εγκατάσταση %s.",
@@ -243,6 +242,7 @@ OC.L10N.register(
"Back" : "Επιστροφή",
"Continue" : "Συνέχεια",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Προσοχή:</b> Το άρθρωμα PHP LDAP δεν είναι εγκατεστημένο και το σύστημα υποστήριξης δεν θα δουλέψει. Παρακαλώ ζητήστε από τον διαχειριστή συστήματος να το εγκαταστήσει.",
"Configuration Active" : "Ενεργοποιηση ρυθμισεων",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "Δεν προτείνεται, χρησιμοποιείστε το μόνο για δοκιμές! Εάν η σύνδεση λειτουργεί μόνο με αυτή την επιλογή, εισάγετε το πιστοποιητικό SSL του διακομιστή LDAP στο %s διακομιστή σας.",
"\"$home\" Placeholder Field" : "\"$home\" Πεδίο Δέσμευσης",
"Pronouns Field" : "Πεδίο Προσφώνησης",
+2 -2
View File
@@ -141,7 +141,6 @@
"No object found in the given Base DN. Please revise." : "Δεν βρέθηκε αντικείμενο στο δηλωθέν Base DN. Παρακαλώ αναθεωρήστε.",
"More than 1,000 directory entries available." : "Είναι διαθέσιμες περισσότερες από 1.000 εγγραφές καταλόγου.",
"When unchecked, this configuration will be skipped." : "Όταν δεν είναι επιλεγμένο, αυτή η ρύθμιση θα πρέπει να παραλειφθεί. ",
"Configuration Active" : "Ενεργοποιηση ρυθμισεων",
"Copy current configuration into new directory binding" : "Αντιγραφή της τρέχουσας διαμόρφωσης σε νέο κατάλογο",
"Copy configuration" : "Αντιγραφή ρυθμίσεων",
"Delete configuration" : "Διαγραφή ρυθμίσεων",
@@ -152,7 +151,6 @@
"User DN" : "DN χρήστη",
"For anonymous access, leave DN and Password empty." : "Για ανώνυμη πρόσβαση, αφήστε κενά τα πεδία DN και Pasword.",
"Password" : "Συνθηματικό",
"Save Credentials" : "Αποθήκευση διαπιστευτηρίων",
"Base DN" : "Base DN",
"One Base DN per line" : "Ένα DN Βάσης ανά γραμμή ",
"You can specify Base DN for users and groups in the Advanced tab" : "Μπορείτε να καθορίσετε το Base DN για χρήστες και ομάδες από την καρτέλα Προηγμένες ρυθμίσεις",
@@ -234,6 +232,7 @@
"Add a new configuration" : "Προσθήκη νέας ρύθμισης",
"Delete the current configuration" : "Διαγραφή τρέχουσας διαμόρφωσης",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "Το DN του χρήστη πελάτη με το οποίο θα πρέπει να γίνει η σύνδεση, π.χ. uid=agent,dc=example,dc=com. Για χρήση χωρίς πιστοποίηση, αφήστε το DN και τον Κωδικό κενά.",
"Save Credentials" : "Αποθήκευση διαπιστευτηρίων",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Αποφυγή αυτόματων αιτημάτων LDAP. Προτιμότερο για μεγαλύτερες εγκαταστάσεις, αλλά απαιτεί κάποιες γνώσεις LDAP.",
"Manually enter LDAP filters (recommended for large directories)" : "Εισάγετε με μη αυτόματο τρόπο φίλτρα LDAP (προτείνεται για μεγάλους καταλόγους)",
"The filter specifies which LDAP users shall have access to the %s instance." : "Το φίλτρο καθορίζει ποιοι χρήστες LDAP θα έχουν πρόσβαση στην εγκατάσταση %s.",
@@ -241,6 +240,7 @@
"Back" : "Επιστροφή",
"Continue" : "Συνέχεια",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Προσοχή:</b> Το άρθρωμα PHP LDAP δεν είναι εγκατεστημένο και το σύστημα υποστήριξης δεν θα δουλέψει. Παρακαλώ ζητήστε από τον διαχειριστή συστήματος να το εγκαταστήσει.",
"Configuration Active" : "Ενεργοποιηση ρυθμισεων",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "Δεν προτείνεται, χρησιμοποιείστε το μόνο για δοκιμές! Εάν η σύνδεση λειτουργεί μόνο με αυτή την επιλογή, εισάγετε το πιστοποιητικό SSL του διακομιστή LDAP στο %s διακομιστή σας.",
"\"$home\" Placeholder Field" : "\"$home\" Πεδίο Δέσμευσης",
"Pronouns Field" : "Πεδίο Προσφώνησης",
+2 -5
View File
@@ -147,22 +147,17 @@ OC.L10N.register(
"More than 1,000 directory entries available." : "More than 1,000 directory entries available.",
"_{ldapTestBase} entry available within the provided Base DN_::_{ldapTestBase} entries available within the provided Base DN_" : ["{ldapTestBase} entry available within the provided Base DN","{ldapTestBase} entries available within the provided Base DN"],
"When unchecked, this configuration will be skipped." : "When unchecked, this configuration will be skipped.",
"Configuration Active" : "Configuration Active",
"Copy current configuration into new directory binding" : "Copy current configuration into new directory binding",
"Copy configuration" : "Copy configuration",
"Delete configuration" : "Delete configuration",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "You can omit the protocol, unless you require SSL. If so, start with ldaps://",
"Host" : "Host",
"ldaps://localhost" : "ldaps://localhost",
"Port" : "Port",
"389" : "389",
"Detect Port" : "Detect Port",
"The DN of the client user with which the bind shall be done. For anonymous access, leave DN and Password empty." : "The DN of the client user with which the bind shall be done. For anonymous access, leave DN and Password empty.",
"User DN" : "User DN",
"uid=agent,dc=example,dc=com" : "uid=agent,dc=example,dc=com",
"For anonymous access, leave DN and Password empty." : "For anonymous access, leave DN and Password empty.",
"Password" : "Password",
"Save Credentials" : "Save Credentials",
"Base DN" : "Base DN",
"One Base DN per line" : "One Base DN per line",
"You can specify Base DN for users and groups in the Advanced tab" : "You can specify Base DN for users and groups in the Advanced tab",
@@ -256,6 +251,7 @@ OC.L10N.register(
"Add a new configuration" : "Add a new configuration",
"Delete the current configuration" : "Delete the current configuration",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty.",
"Save Credentials" : "Save Credentials",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge.",
"Manually enter LDAP filters (recommended for large directories)" : "Manually enter LDAP filters (recommended for large directories)",
"The filter specifies which LDAP users shall have access to the %s instance." : "The filter specifies which LDAP users shall have access to the %s instance.",
@@ -263,6 +259,7 @@ OC.L10N.register(
"Back" : "Back",
"Continue" : "Continue",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it.",
"Configuration Active" : "Configuration Active",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server.",
"\"$home\" Placeholder Field" : "\"$home\" Placeholder Field",
"Pronouns Field" : "Pronouns Field",
+2 -5
View File
@@ -145,22 +145,17 @@
"More than 1,000 directory entries available." : "More than 1,000 directory entries available.",
"_{ldapTestBase} entry available within the provided Base DN_::_{ldapTestBase} entries available within the provided Base DN_" : ["{ldapTestBase} entry available within the provided Base DN","{ldapTestBase} entries available within the provided Base DN"],
"When unchecked, this configuration will be skipped." : "When unchecked, this configuration will be skipped.",
"Configuration Active" : "Configuration Active",
"Copy current configuration into new directory binding" : "Copy current configuration into new directory binding",
"Copy configuration" : "Copy configuration",
"Delete configuration" : "Delete configuration",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "You can omit the protocol, unless you require SSL. If so, start with ldaps://",
"Host" : "Host",
"ldaps://localhost" : "ldaps://localhost",
"Port" : "Port",
"389" : "389",
"Detect Port" : "Detect Port",
"The DN of the client user with which the bind shall be done. For anonymous access, leave DN and Password empty." : "The DN of the client user with which the bind shall be done. For anonymous access, leave DN and Password empty.",
"User DN" : "User DN",
"uid=agent,dc=example,dc=com" : "uid=agent,dc=example,dc=com",
"For anonymous access, leave DN and Password empty." : "For anonymous access, leave DN and Password empty.",
"Password" : "Password",
"Save Credentials" : "Save Credentials",
"Base DN" : "Base DN",
"One Base DN per line" : "One Base DN per line",
"You can specify Base DN for users and groups in the Advanced tab" : "You can specify Base DN for users and groups in the Advanced tab",
@@ -254,6 +249,7 @@
"Add a new configuration" : "Add a new configuration",
"Delete the current configuration" : "Delete the current configuration",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty.",
"Save Credentials" : "Save Credentials",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge.",
"Manually enter LDAP filters (recommended for large directories)" : "Manually enter LDAP filters (recommended for large directories)",
"The filter specifies which LDAP users shall have access to the %s instance." : "The filter specifies which LDAP users shall have access to the %s instance.",
@@ -261,6 +257,7 @@
"Back" : "Back",
"Continue" : "Continue",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it.",
"Configuration Active" : "Configuration Active",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server.",
"\"$home\" Placeholder Field" : "\"$home\" Placeholder Field",
"Pronouns Field" : "Pronouns Field",
+2 -2
View File
@@ -133,7 +133,6 @@ OC.L10N.register(
"No object found in the given Base DN. Please revise." : "No se encuentra ningún objeto en el Base DN proporcionado. Por favor revisar.",
"More than 1,000 directory entries available." : "Más de 1.000 entradas de directorios disponibles.",
"When unchecked, this configuration will be skipped." : "Cuando esté desmarcado, esta configuración se omitirá",
"Configuration Active" : "Configuracion activa",
"Copy current configuration into new directory binding" : "Copiar la configuración actual en un nuevo directorio de enlace",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Puedes omitir el protocolo, excepto si requieres SSL. En este caso, comienza con ldaps://",
"Host" : "Servidor",
@@ -142,7 +141,6 @@ OC.L10N.register(
"User DN" : "DN usuario",
"For anonymous access, leave DN and Password empty." : "Para acceso anónimo, deje DN y contraseña vacíos.",
"Password" : "Contraseña",
"Save Credentials" : "Guardar credenciales",
"One Base DN per line" : "Un DN Base por línea",
"You can specify Base DN for users and groups in the Advanced tab" : "Puede especificar el DN base para usuarios y grupos en la pestaña Avanzado",
"Detect Base DN" : "Detectar Base DN",
@@ -223,6 +221,7 @@ OC.L10N.register(
"Add a new configuration" : "Agregar una nueva configuración",
"Delete the current configuration" : "Elimina la actual configuración",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "El DN del usuario cliente con el que se hará la asociación, p.ej. uid=agente,dc=ejemplo,dc=com. Para acceso anónimo, deje DN y contraseña vacíos.",
"Save Credentials" : "Guardar credenciales",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Evita peticiones automáticas al LDAP. Mejor para grandes configuraciones, pero requiere cierto conocimiento de LDAP.",
"Manually enter LDAP filters (recommended for large directories)" : "Introduzca manualmente los filtros LDAP (recomendado para directorios grandes)",
"The filter specifies which LDAP users shall have access to the %s instance." : "El filtro especifica que usuarios LDAP pueden tener acceso a %s.",
@@ -230,6 +229,7 @@ OC.L10N.register(
"Back" : "Atrás",
"Continue" : "Continuar",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Advertencia:</b> El módulo LDAP de PHP no está instalado, el sistema no funcionará. Por favor consulte al administrador del sistema para instalarlo.",
"Configuration Active" : "Configuracion activa",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "No se recomienda, ¡utilícelo únicamente para pruebas! Si la conexión sólo funciona con esta opción, importe el certificado SSL del servidor LDAP en su servidor %s.",
"\"$home\" Placeholder Field" : "Marcador de posición del Campo \"$home\"",
"Pronouns Field" : "Campo Pronombres",
+2 -2
View File
@@ -131,7 +131,6 @@
"No object found in the given Base DN. Please revise." : "No se encuentra ningún objeto en el Base DN proporcionado. Por favor revisar.",
"More than 1,000 directory entries available." : "Más de 1.000 entradas de directorios disponibles.",
"When unchecked, this configuration will be skipped." : "Cuando esté desmarcado, esta configuración se omitirá",
"Configuration Active" : "Configuracion activa",
"Copy current configuration into new directory binding" : "Copiar la configuración actual en un nuevo directorio de enlace",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Puedes omitir el protocolo, excepto si requieres SSL. En este caso, comienza con ldaps://",
"Host" : "Servidor",
@@ -140,7 +139,6 @@
"User DN" : "DN usuario",
"For anonymous access, leave DN and Password empty." : "Para acceso anónimo, deje DN y contraseña vacíos.",
"Password" : "Contraseña",
"Save Credentials" : "Guardar credenciales",
"One Base DN per line" : "Un DN Base por línea",
"You can specify Base DN for users and groups in the Advanced tab" : "Puede especificar el DN base para usuarios y grupos en la pestaña Avanzado",
"Detect Base DN" : "Detectar Base DN",
@@ -221,6 +219,7 @@
"Add a new configuration" : "Agregar una nueva configuración",
"Delete the current configuration" : "Elimina la actual configuración",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "El DN del usuario cliente con el que se hará la asociación, p.ej. uid=agente,dc=ejemplo,dc=com. Para acceso anónimo, deje DN y contraseña vacíos.",
"Save Credentials" : "Guardar credenciales",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Evita peticiones automáticas al LDAP. Mejor para grandes configuraciones, pero requiere cierto conocimiento de LDAP.",
"Manually enter LDAP filters (recommended for large directories)" : "Introduzca manualmente los filtros LDAP (recomendado para directorios grandes)",
"The filter specifies which LDAP users shall have access to the %s instance." : "El filtro especifica que usuarios LDAP pueden tener acceso a %s.",
@@ -228,6 +227,7 @@
"Back" : "Atrás",
"Continue" : "Continuar",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Advertencia:</b> El módulo LDAP de PHP no está instalado, el sistema no funcionará. Por favor consulte al administrador del sistema para instalarlo.",
"Configuration Active" : "Configuracion activa",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "No se recomienda, ¡utilícelo únicamente para pruebas! Si la conexión sólo funciona con esta opción, importe el certificado SSL del servidor LDAP en su servidor %s.",
"\"$home\" Placeholder Field" : "Marcador de posición del Campo \"$home\"",
"Pronouns Field" : "Campo Pronombres",
+2 -2
View File
@@ -79,7 +79,6 @@ OC.L10N.register(
"No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.",
"More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ",
"When unchecked, this configuration will be skipped." : "Cuando no esté seleccionada, esta configuración será omitida.",
"Configuration Active" : "Configuracion Activa",
"Copy current configuration into new directory binding" : "Copiar la configuración actual a un nuevo directorio de vinculación",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Puedes omitir el protocolo, a menos que requiera SSL. Si es el caso, empieza con ldaps://",
"Host" : "Servidor",
@@ -88,7 +87,6 @@ OC.L10N.register(
"User DN" : "DN del usuario",
"For anonymous access, leave DN and Password empty." : "Para acceso anónimo, deja la contraseña y DN vacíos.",
"Password" : "Contraseña",
"Save Credentials" : "Guardar credenciales",
"One Base DN per line" : "Un DN Base por línea",
"You can specify Base DN for users and groups in the Advanced tab" : "Puedes especificar el DN Base para usuarios y grupos en la pestaña Avanzado",
"Detect Base DN" : "Detectar DN Base",
@@ -161,6 +159,7 @@ OC.L10N.register(
"Add a new configuration" : "Agregar una nueva configuración",
"Delete the current configuration" : "Borrar la configuración actual",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "El DN del cliente del usuario con el que se vinculará, ejem. uid=agente,dc=ejemplo,dc=com. Para tener un acceso anónimo, deja el DN y la contraseña vacíos.",
"Save Credentials" : "Guardar credenciales",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Evita solicitudes automaticas de LDAP. Es mejor para ambientes más grandes pero requiere mayor conocimiento de LDAP. ",
"Manually enter LDAP filters (recommended for large directories)" : "Ingresar los filtros LDAP manualmente (recomendado para directorios grandes)",
"The filter specifies which LDAP users shall have access to the %s instance." : "El filtro especifica cuáles usuarios LDAP tendrán acceso a la instancia %s.",
@@ -168,6 +167,7 @@ OC.L10N.register(
"Back" : "Atrás",
"Continue" : "Continuar",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Advertencia:</b> El módulo LDAP de PHP no está instalado, el backend no funcionará. Por favor solicita su instalación a tu administrador del sistema.",
"Configuration Active" : "Configuracion Activa",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "¡No se recomienda, úsalo únicamente para pruebas! Si la conexión sólo funciona con esta opción, importa el certificado SSL del servidor LDAP a tu servidor %s.",
"UUID Attribute for Users:" : "Atributo UUID para Usuarios:",
"UUID Attribute for Groups:" : "Atributo UUID para Grupos:"
+2 -2
View File
@@ -77,7 +77,6 @@
"No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.",
"More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ",
"When unchecked, this configuration will be skipped." : "Cuando no esté seleccionada, esta configuración será omitida.",
"Configuration Active" : "Configuracion Activa",
"Copy current configuration into new directory binding" : "Copiar la configuración actual a un nuevo directorio de vinculación",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Puedes omitir el protocolo, a menos que requiera SSL. Si es el caso, empieza con ldaps://",
"Host" : "Servidor",
@@ -86,7 +85,6 @@
"User DN" : "DN del usuario",
"For anonymous access, leave DN and Password empty." : "Para acceso anónimo, deja la contraseña y DN vacíos.",
"Password" : "Contraseña",
"Save Credentials" : "Guardar credenciales",
"One Base DN per line" : "Un DN Base por línea",
"You can specify Base DN for users and groups in the Advanced tab" : "Puedes especificar el DN Base para usuarios y grupos en la pestaña Avanzado",
"Detect Base DN" : "Detectar DN Base",
@@ -159,6 +157,7 @@
"Add a new configuration" : "Agregar una nueva configuración",
"Delete the current configuration" : "Borrar la configuración actual",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "El DN del cliente del usuario con el que se vinculará, ejem. uid=agente,dc=ejemplo,dc=com. Para tener un acceso anónimo, deja el DN y la contraseña vacíos.",
"Save Credentials" : "Guardar credenciales",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Evita solicitudes automaticas de LDAP. Es mejor para ambientes más grandes pero requiere mayor conocimiento de LDAP. ",
"Manually enter LDAP filters (recommended for large directories)" : "Ingresar los filtros LDAP manualmente (recomendado para directorios grandes)",
"The filter specifies which LDAP users shall have access to the %s instance." : "El filtro especifica cuáles usuarios LDAP tendrán acceso a la instancia %s.",
@@ -166,6 +165,7 @@
"Back" : "Atrás",
"Continue" : "Continuar",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Advertencia:</b> El módulo LDAP de PHP no está instalado, el backend no funcionará. Por favor solicita su instalación a tu administrador del sistema.",
"Configuration Active" : "Configuracion Activa",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "¡No se recomienda, úsalo únicamente para pruebas! Si la conexión sólo funciona con esta opción, importa el certificado SSL del servidor LDAP a tu servidor %s.",
"UUID Attribute for Users:" : "Atributo UUID para Usuarios:",
"UUID Attribute for Groups:" : "Atributo UUID para Grupos:"
+1 -1
View File
@@ -73,7 +73,6 @@ OC.L10N.register(
"No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Favor de verificar. ",
"More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ",
"When unchecked, this configuration will be skipped." : "Cuando no esté seleccionada, esta configuración será omitida.",
"Configuration Active" : "Configuracion Activa",
"Copy current configuration into new directory binding" : "Copiar la configuración actual a un nuevo directorio de vinculación",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Puede omitir el protocolo, a menos que requiera SSL. Si es el caso, empiece con ldaps://",
"Host" : "Servidor",
@@ -157,6 +156,7 @@ OC.L10N.register(
"Back" : "Atrás",
"Continue" : "Continuar",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Advertencia:</b> El módulo LDAP de PHP no está instalado, el backend no funcionará. Favor de solicitar su instalación a su administrador del sistema.",
"Configuration Active" : "Configuracion Activa",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "¡No se recomienda, úselo únicamente para pruebas! Si la conexión sólo funciona con esta opción, importe el certificado SSL del servidor LDAP a su servidor %s.",
"UUID Attribute for Users:" : "Atributo UUID para Usuarios:",
"UUID Attribute for Groups:" : "Atributo UUID para Grupos:"
+1 -1
View File
@@ -71,7 +71,6 @@
"No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Favor de verificar. ",
"More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ",
"When unchecked, this configuration will be skipped." : "Cuando no esté seleccionada, esta configuración será omitida.",
"Configuration Active" : "Configuracion Activa",
"Copy current configuration into new directory binding" : "Copiar la configuración actual a un nuevo directorio de vinculación",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Puede omitir el protocolo, a menos que requiera SSL. Si es el caso, empiece con ldaps://",
"Host" : "Servidor",
@@ -155,6 +154,7 @@
"Back" : "Atrás",
"Continue" : "Continuar",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Advertencia:</b> El módulo LDAP de PHP no está instalado, el backend no funcionará. Favor de solicitar su instalación a su administrador del sistema.",
"Configuration Active" : "Configuracion Activa",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "¡No se recomienda, úselo únicamente para pruebas! Si la conexión sólo funciona con esta opción, importe el certificado SSL del servidor LDAP a su servidor %s.",
"UUID Attribute for Users:" : "Atributo UUID para Usuarios:",
"UUID Attribute for Groups:" : "Atributo UUID para Grupos:"
+2 -2
View File
@@ -79,7 +79,6 @@ OC.L10N.register(
"No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.",
"More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ",
"When unchecked, this configuration will be skipped." : "Cuando no esté seleccionada, esta configuración será omitida.",
"Configuration Active" : "Configuracion Activa",
"Copy current configuration into new directory binding" : "Copiar la configuración actual a un nuevo directorio de vinculación",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Puedes omitir el protocolo, a menos que requiera SSL. Si es el caso, empieza con ldaps://",
"Host" : "Servidor",
@@ -88,7 +87,6 @@ OC.L10N.register(
"User DN" : "DN del usuario",
"For anonymous access, leave DN and Password empty." : "Para acceso anónimo, deja la contraseña y DN vacíos.",
"Password" : "Contraseña",
"Save Credentials" : "Guardar credenciales",
"One Base DN per line" : "Un DN Base por línea",
"You can specify Base DN for users and groups in the Advanced tab" : "Puedes especificar el DN Base para usuarios y grupos en la pestaña Avanzado",
"Detect Base DN" : "Detectar DN Base",
@@ -163,6 +161,7 @@ OC.L10N.register(
"Add a new configuration" : "Agregar una nueva configuración",
"Delete the current configuration" : "Borrar la configuración actual",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "El DN del cliente del usuario con el que se vinculará, ejem. uid=agente,dc=ejemplo,dc=com. Para tener un acceso anónimo, deja el DN y la contraseña vacíos.",
"Save Credentials" : "Guardar credenciales",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Evita solicitudes automaticas de LDAP. Es mejor para ambientes más grandes pero requiere mayor conocimiento de LDAP. ",
"Manually enter LDAP filters (recommended for large directories)" : "Ingresar los filtros LDAP manualmente (recomendado para directorios grandes)",
"The filter specifies which LDAP users shall have access to the %s instance." : "El filtro especifica cuáles usuarios LDAP tendrán acceso a la instancia %s.",
@@ -170,6 +169,7 @@ OC.L10N.register(
"Back" : "Atrás",
"Continue" : "Continuar",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Advertencia:</b> El módulo LDAP de PHP no está instalado, el backend no funcionará. Por favor solicita su instalación a tu administrador del sistema.",
"Configuration Active" : "Configuracion Activa",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "¡No se recomienda, úsalo únicamente para pruebas! Si la conexión sólo funciona con esta opción, importa el certificado SSL del servidor LDAP a tu servidor %s.",
"UUID Attribute for Users:" : "Atributo UUID para Usuarios:",
"UUID Attribute for Groups:" : "Atributo UUID para Grupos:"
+2 -2
View File
@@ -77,7 +77,6 @@
"No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.",
"More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ",
"When unchecked, this configuration will be skipped." : "Cuando no esté seleccionada, esta configuración será omitida.",
"Configuration Active" : "Configuracion Activa",
"Copy current configuration into new directory binding" : "Copiar la configuración actual a un nuevo directorio de vinculación",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Puedes omitir el protocolo, a menos que requiera SSL. Si es el caso, empieza con ldaps://",
"Host" : "Servidor",
@@ -86,7 +85,6 @@
"User DN" : "DN del usuario",
"For anonymous access, leave DN and Password empty." : "Para acceso anónimo, deja la contraseña y DN vacíos.",
"Password" : "Contraseña",
"Save Credentials" : "Guardar credenciales",
"One Base DN per line" : "Un DN Base por línea",
"You can specify Base DN for users and groups in the Advanced tab" : "Puedes especificar el DN Base para usuarios y grupos en la pestaña Avanzado",
"Detect Base DN" : "Detectar DN Base",
@@ -161,6 +159,7 @@
"Add a new configuration" : "Agregar una nueva configuración",
"Delete the current configuration" : "Borrar la configuración actual",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "El DN del cliente del usuario con el que se vinculará, ejem. uid=agente,dc=ejemplo,dc=com. Para tener un acceso anónimo, deja el DN y la contraseña vacíos.",
"Save Credentials" : "Guardar credenciales",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Evita solicitudes automaticas de LDAP. Es mejor para ambientes más grandes pero requiere mayor conocimiento de LDAP. ",
"Manually enter LDAP filters (recommended for large directories)" : "Ingresar los filtros LDAP manualmente (recomendado para directorios grandes)",
"The filter specifies which LDAP users shall have access to the %s instance." : "El filtro especifica cuáles usuarios LDAP tendrán acceso a la instancia %s.",
@@ -168,6 +167,7 @@
"Back" : "Atrás",
"Continue" : "Continuar",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Advertencia:</b> El módulo LDAP de PHP no está instalado, el backend no funcionará. Por favor solicita su instalación a tu administrador del sistema.",
"Configuration Active" : "Configuracion Activa",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "¡No se recomienda, úsalo únicamente para pruebas! Si la conexión sólo funciona con esta opción, importa el certificado SSL del servidor LDAP a tu servidor %s.",
"UUID Attribute for Users:" : "Atributo UUID para Usuarios:",
"UUID Attribute for Groups:" : "Atributo UUID para Grupos:"
+2 -2
View File
@@ -79,7 +79,6 @@ OC.L10N.register(
"No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.",
"More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ",
"When unchecked, this configuration will be skipped." : "Cuando no esté seleccionada, esta configuración será omitida.",
"Configuration Active" : "Configuracion Activa",
"Copy current configuration into new directory binding" : "Copiar la configuración actual a un nuevo directorio de vinculación",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Puedes omitir el protocolo, a menos que requiera SSL. Si es el caso, empieza con ldaps://",
"Host" : "Servidor",
@@ -88,7 +87,6 @@ OC.L10N.register(
"User DN" : "DN del usuario",
"For anonymous access, leave DN and Password empty." : "Para acceso anónimo, deja la contraseña y DN vacíos.",
"Password" : "Contraseña",
"Save Credentials" : "Guardar credenciales",
"One Base DN per line" : "Un DN Base por línea",
"You can specify Base DN for users and groups in the Advanced tab" : "Puedes especificar el DN Base para usuarios y grupos en la pestaña Avanzado",
"Detect Base DN" : "Detectar DN Base",
@@ -163,6 +161,7 @@ OC.L10N.register(
"Add a new configuration" : "Agregar una nueva configuración",
"Delete the current configuration" : "Borrar la configuración actual",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "El DN del cliente del usuario con el que se vinculará, ejem. uid=agente,dc=ejemplo,dc=com. Para tener un acceso anónimo, deja el DN y la contraseña vacíos.",
"Save Credentials" : "Guardar credenciales",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Evita solicitudes automaticas de LDAP. Es mejor para ambientes más grandes pero requiere mayor conocimiento de LDAP. ",
"Manually enter LDAP filters (recommended for large directories)" : "Ingresar los filtros LDAP manualmente (recomendado para directorios grandes)",
"The filter specifies which LDAP users shall have access to the %s instance." : "El filtro especifica cuáles usuarios LDAP tendrán acceso a la instancia %s.",
@@ -170,6 +169,7 @@ OC.L10N.register(
"Back" : "Atrás",
"Continue" : "Continuar",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Advertencia:</b> El módulo LDAP de PHP no está instalado, el backend no funcionará. Por favor solicita su instalación a tu administrador del sistema.",
"Configuration Active" : "Configuracion Activa",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "¡No se recomienda, úsalo únicamente para pruebas! Si la conexión sólo funciona con esta opción, importa el certificado SSL del servidor LDAP a tu servidor %s.",
"UUID Attribute for Users:" : "Atributo UUID para Usuarios:",
"UUID Attribute for Groups:" : "Atributo UUID para Grupos:"
+2 -2
View File
@@ -77,7 +77,6 @@
"No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.",
"More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ",
"When unchecked, this configuration will be skipped." : "Cuando no esté seleccionada, esta configuración será omitida.",
"Configuration Active" : "Configuracion Activa",
"Copy current configuration into new directory binding" : "Copiar la configuración actual a un nuevo directorio de vinculación",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Puedes omitir el protocolo, a menos que requiera SSL. Si es el caso, empieza con ldaps://",
"Host" : "Servidor",
@@ -86,7 +85,6 @@
"User DN" : "DN del usuario",
"For anonymous access, leave DN and Password empty." : "Para acceso anónimo, deja la contraseña y DN vacíos.",
"Password" : "Contraseña",
"Save Credentials" : "Guardar credenciales",
"One Base DN per line" : "Un DN Base por línea",
"You can specify Base DN for users and groups in the Advanced tab" : "Puedes especificar el DN Base para usuarios y grupos en la pestaña Avanzado",
"Detect Base DN" : "Detectar DN Base",
@@ -161,6 +159,7 @@
"Add a new configuration" : "Agregar una nueva configuración",
"Delete the current configuration" : "Borrar la configuración actual",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "El DN del cliente del usuario con el que se vinculará, ejem. uid=agente,dc=ejemplo,dc=com. Para tener un acceso anónimo, deja el DN y la contraseña vacíos.",
"Save Credentials" : "Guardar credenciales",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Evita solicitudes automaticas de LDAP. Es mejor para ambientes más grandes pero requiere mayor conocimiento de LDAP. ",
"Manually enter LDAP filters (recommended for large directories)" : "Ingresar los filtros LDAP manualmente (recomendado para directorios grandes)",
"The filter specifies which LDAP users shall have access to the %s instance." : "El filtro especifica cuáles usuarios LDAP tendrán acceso a la instancia %s.",
@@ -168,6 +167,7 @@
"Back" : "Atrás",
"Continue" : "Continuar",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Advertencia:</b> El módulo LDAP de PHP no está instalado, el backend no funcionará. Por favor solicita su instalación a tu administrador del sistema.",
"Configuration Active" : "Configuracion Activa",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "¡No se recomienda, úsalo únicamente para pruebas! Si la conexión sólo funciona con esta opción, importa el certificado SSL del servidor LDAP a tu servidor %s.",
"UUID Attribute for Users:" : "Atributo UUID para Usuarios:",
"UUID Attribute for Groups:" : "Atributo UUID para Grupos:"
+2 -2
View File
@@ -79,7 +79,6 @@ OC.L10N.register(
"No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.",
"More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ",
"When unchecked, this configuration will be skipped." : "Cuando no esté seleccionada, esta configuración será omitida.",
"Configuration Active" : "Configuracion Activa",
"Copy current configuration into new directory binding" : "Copiar la configuración actual a un nuevo directorio de vinculación",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Puedes omitir el protocolo, a menos que requiera SSL. Si es el caso, empieza con ldaps://",
"Host" : "Servidor",
@@ -88,7 +87,6 @@ OC.L10N.register(
"User DN" : "DN del usuario",
"For anonymous access, leave DN and Password empty." : "Para acceso anónimo, deja la contraseña y DN vacíos.",
"Password" : "Contraseña",
"Save Credentials" : "Guardar credenciales",
"One Base DN per line" : "Un DN Base por línea",
"You can specify Base DN for users and groups in the Advanced tab" : "Puedes especificar el DN Base para usuarios y grupos en la pestaña Avanzado",
"Detect Base DN" : "Detectar DN Base",
@@ -163,6 +161,7 @@ OC.L10N.register(
"Add a new configuration" : "Agregar una nueva configuración",
"Delete the current configuration" : "Borrar la configuración actual",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "El DN del cliente del usuario con el que se vinculará, ejem. uid=agente,dc=ejemplo,dc=com. Para tener un acceso anónimo, deja el DN y la contraseña vacíos.",
"Save Credentials" : "Guardar credenciales",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Evita solicitudes automaticas de LDAP. Es mejor para ambientes más grandes pero requiere mayor conocimiento de LDAP. ",
"Manually enter LDAP filters (recommended for large directories)" : "Ingresar los filtros LDAP manualmente (recomendado para directorios grandes)",
"The filter specifies which LDAP users shall have access to the %s instance." : "El filtro especifica cuáles usuarios LDAP tendrán acceso a la instancia %s.",
@@ -170,6 +169,7 @@ OC.L10N.register(
"Back" : "Atrás",
"Continue" : "Continuar",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Advertencia:</b> El módulo LDAP de PHP no está instalado, el backend no funcionará. Por favor solicita su instalación a tu administrador del sistema.",
"Configuration Active" : "Configuracion Activa",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "¡No se recomienda, úsalo únicamente para pruebas! Si la conexión sólo funciona con esta opción, importa el certificado SSL del servidor LDAP a tu servidor %s.",
"UUID Attribute for Users:" : "Atributo UUID para Usuarios:",
"UUID Attribute for Groups:" : "Atributo UUID para Grupos:"
+2 -2
View File
@@ -77,7 +77,6 @@
"No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.",
"More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ",
"When unchecked, this configuration will be skipped." : "Cuando no esté seleccionada, esta configuración será omitida.",
"Configuration Active" : "Configuracion Activa",
"Copy current configuration into new directory binding" : "Copiar la configuración actual a un nuevo directorio de vinculación",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Puedes omitir el protocolo, a menos que requiera SSL. Si es el caso, empieza con ldaps://",
"Host" : "Servidor",
@@ -86,7 +85,6 @@
"User DN" : "DN del usuario",
"For anonymous access, leave DN and Password empty." : "Para acceso anónimo, deja la contraseña y DN vacíos.",
"Password" : "Contraseña",
"Save Credentials" : "Guardar credenciales",
"One Base DN per line" : "Un DN Base por línea",
"You can specify Base DN for users and groups in the Advanced tab" : "Puedes especificar el DN Base para usuarios y grupos en la pestaña Avanzado",
"Detect Base DN" : "Detectar DN Base",
@@ -161,6 +159,7 @@
"Add a new configuration" : "Agregar una nueva configuración",
"Delete the current configuration" : "Borrar la configuración actual",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "El DN del cliente del usuario con el que se vinculará, ejem. uid=agente,dc=ejemplo,dc=com. Para tener un acceso anónimo, deja el DN y la contraseña vacíos.",
"Save Credentials" : "Guardar credenciales",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Evita solicitudes automaticas de LDAP. Es mejor para ambientes más grandes pero requiere mayor conocimiento de LDAP. ",
"Manually enter LDAP filters (recommended for large directories)" : "Ingresar los filtros LDAP manualmente (recomendado para directorios grandes)",
"The filter specifies which LDAP users shall have access to the %s instance." : "El filtro especifica cuáles usuarios LDAP tendrán acceso a la instancia %s.",
@@ -168,6 +167,7 @@
"Back" : "Atrás",
"Continue" : "Continuar",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Advertencia:</b> El módulo LDAP de PHP no está instalado, el backend no funcionará. Por favor solicita su instalación a tu administrador del sistema.",
"Configuration Active" : "Configuracion Activa",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "¡No se recomienda, úsalo únicamente para pruebas! Si la conexión sólo funciona con esta opción, importa el certificado SSL del servidor LDAP a tu servidor %s.",
"UUID Attribute for Users:" : "Atributo UUID para Usuarios:",
"UUID Attribute for Groups:" : "Atributo UUID para Grupos:"
+2 -2
View File
@@ -79,7 +79,6 @@ OC.L10N.register(
"No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.",
"More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ",
"When unchecked, this configuration will be skipped." : "Cuando no esté seleccionada, esta configuración será omitida.",
"Configuration Active" : "Configuracion Activa",
"Copy current configuration into new directory binding" : "Copiar la configuración actual a un nuevo directorio de vinculación",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Puedes omitir el protocolo, a menos que requiera SSL. Si es el caso, empieza con ldaps://",
"Host" : "Servidor",
@@ -88,7 +87,6 @@ OC.L10N.register(
"User DN" : "DN del usuario",
"For anonymous access, leave DN and Password empty." : "Para acceso anónimo, deja la contraseña y DN vacíos.",
"Password" : "Contraseña",
"Save Credentials" : "Guardar credenciales",
"One Base DN per line" : "Un DN Base por línea",
"You can specify Base DN for users and groups in the Advanced tab" : "Puedes especificar el DN Base para usuarios y grupos en la pestaña Avanzado",
"Detect Base DN" : "Detectar DN Base",
@@ -163,6 +161,7 @@ OC.L10N.register(
"Add a new configuration" : "Agregar una nueva configuración",
"Delete the current configuration" : "Borrar la configuración actual",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "El DN del cliente del usuario con el que se vinculará, ejem. uid=agente,dc=ejemplo,dc=com. Para tener un acceso anónimo, deja el DN y la contraseña vacíos.",
"Save Credentials" : "Guardar credenciales",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Evita solicitudes automaticas de LDAP. Es mejor para ambientes más grandes pero requiere mayor conocimiento de LDAP. ",
"Manually enter LDAP filters (recommended for large directories)" : "Ingresar los filtros LDAP manualmente (recomendado para directorios grandes)",
"The filter specifies which LDAP users shall have access to the %s instance." : "El filtro especifica cuáles usuarios LDAP tendrán acceso a la instancia %s.",
@@ -170,6 +169,7 @@ OC.L10N.register(
"Back" : "Atrás",
"Continue" : "Continuar",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Advertencia:</b> El módulo LDAP de PHP no está instalado, el backend no funcionará. Por favor solicita su instalación a tu administrador del sistema.",
"Configuration Active" : "Configuracion Activa",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "¡No se recomienda, úsalo únicamente para pruebas! Si la conexión sólo funciona con esta opción, importa el certificado SSL del servidor LDAP a tu servidor %s.",
"UUID Attribute for Users:" : "Atributo UUID para Usuarios:",
"UUID Attribute for Groups:" : "Atributo UUID para Grupos:"
+2 -2
View File
@@ -77,7 +77,6 @@
"No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.",
"More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ",
"When unchecked, this configuration will be skipped." : "Cuando no esté seleccionada, esta configuración será omitida.",
"Configuration Active" : "Configuracion Activa",
"Copy current configuration into new directory binding" : "Copiar la configuración actual a un nuevo directorio de vinculación",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Puedes omitir el protocolo, a menos que requiera SSL. Si es el caso, empieza con ldaps://",
"Host" : "Servidor",
@@ -86,7 +85,6 @@
"User DN" : "DN del usuario",
"For anonymous access, leave DN and Password empty." : "Para acceso anónimo, deja la contraseña y DN vacíos.",
"Password" : "Contraseña",
"Save Credentials" : "Guardar credenciales",
"One Base DN per line" : "Un DN Base por línea",
"You can specify Base DN for users and groups in the Advanced tab" : "Puedes especificar el DN Base para usuarios y grupos en la pestaña Avanzado",
"Detect Base DN" : "Detectar DN Base",
@@ -161,6 +159,7 @@
"Add a new configuration" : "Agregar una nueva configuración",
"Delete the current configuration" : "Borrar la configuración actual",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "El DN del cliente del usuario con el que se vinculará, ejem. uid=agente,dc=ejemplo,dc=com. Para tener un acceso anónimo, deja el DN y la contraseña vacíos.",
"Save Credentials" : "Guardar credenciales",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Evita solicitudes automaticas de LDAP. Es mejor para ambientes más grandes pero requiere mayor conocimiento de LDAP. ",
"Manually enter LDAP filters (recommended for large directories)" : "Ingresar los filtros LDAP manualmente (recomendado para directorios grandes)",
"The filter specifies which LDAP users shall have access to the %s instance." : "El filtro especifica cuáles usuarios LDAP tendrán acceso a la instancia %s.",
@@ -168,6 +167,7 @@
"Back" : "Atrás",
"Continue" : "Continuar",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Advertencia:</b> El módulo LDAP de PHP no está instalado, el backend no funcionará. Por favor solicita su instalación a tu administrador del sistema.",
"Configuration Active" : "Configuracion Activa",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "¡No se recomienda, úsalo únicamente para pruebas! Si la conexión sólo funciona con esta opción, importa el certificado SSL del servidor LDAP a tu servidor %s.",
"UUID Attribute for Users:" : "Atributo UUID para Usuarios:",
"UUID Attribute for Groups:" : "Atributo UUID para Grupos:"
+2 -2
View File
@@ -115,7 +115,6 @@ OC.L10N.register(
"No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.",
"More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ",
"When unchecked, this configuration will be skipped." : "Cuando no esté seleccionada, esta configuración será omitida.",
"Configuration Active" : "Configuracion Activa",
"Copy current configuration into new directory binding" : "Copiar la configuración actual a un nuevo directorio de vinculación",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Puedes omitir el protocolo, a menos que requiera SSL. Si es el caso, empieza con ldaps://",
"Host" : "Servidor",
@@ -124,7 +123,6 @@ OC.L10N.register(
"User DN" : "DN del usuario",
"For anonymous access, leave DN and Password empty." : "Para acceso anónimo, deja la contraseña y DN vacíos.",
"Password" : "Contraseña",
"Save Credentials" : "Guardar credenciales",
"One Base DN per line" : "Un DN Base por línea",
"You can specify Base DN for users and groups in the Advanced tab" : "Puedes especificar el DN Base para usuarios y grupos en la pestaña Avanzado",
"Detect Base DN" : "Detectar DN Base",
@@ -204,6 +202,7 @@ OC.L10N.register(
"Add a new configuration" : "Agregar una nueva configuración",
"Delete the current configuration" : "Borrar la configuración actual",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "El DN del cliente del usuario con el que se vinculará, ejem. uid=agente,dc=ejemplo,dc=com. Para tener un acceso anónimo, deja el DN y la contraseña vacíos.",
"Save Credentials" : "Guardar credenciales",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Evita solicitudes automaticas de LDAP. Es mejor para ambientes más grandes pero requiere mayor conocimiento de LDAP. ",
"Manually enter LDAP filters (recommended for large directories)" : "Ingresar los filtros LDAP manualmente (recomendado para directorios grandes)",
"The filter specifies which LDAP users shall have access to the %s instance." : "El filtro especifica cuáles usuarios LDAP tendrán acceso a la instancia %s.",
@@ -211,6 +210,7 @@ OC.L10N.register(
"Back" : "Atrás",
"Continue" : "Continuar",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Advertencia:</b> El módulo LDAP de PHP no está instalado, el backend no funcionará. Por favor solicita su instalación a tu administrador del sistema.",
"Configuration Active" : "Configuracion Activa",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "¡No se recomienda, úsalo únicamente para pruebas! Si la conexión sólo funciona con esta opción, importa el certificado SSL del servidor LDAP a tu servidor %s.",
"\"$home\" Placeholder Field" : "Campo de marcador de posición \"$home\"",
"UUID Attribute for Users:" : "Atributo UUID para Usuarios:",
+2 -2
View File
@@ -113,7 +113,6 @@
"No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.",
"More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ",
"When unchecked, this configuration will be skipped." : "Cuando no esté seleccionada, esta configuración será omitida.",
"Configuration Active" : "Configuracion Activa",
"Copy current configuration into new directory binding" : "Copiar la configuración actual a un nuevo directorio de vinculación",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Puedes omitir el protocolo, a menos que requiera SSL. Si es el caso, empieza con ldaps://",
"Host" : "Servidor",
@@ -122,7 +121,6 @@
"User DN" : "DN del usuario",
"For anonymous access, leave DN and Password empty." : "Para acceso anónimo, deja la contraseña y DN vacíos.",
"Password" : "Contraseña",
"Save Credentials" : "Guardar credenciales",
"One Base DN per line" : "Un DN Base por línea",
"You can specify Base DN for users and groups in the Advanced tab" : "Puedes especificar el DN Base para usuarios y grupos en la pestaña Avanzado",
"Detect Base DN" : "Detectar DN Base",
@@ -202,6 +200,7 @@
"Add a new configuration" : "Agregar una nueva configuración",
"Delete the current configuration" : "Borrar la configuración actual",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "El DN del cliente del usuario con el que se vinculará, ejem. uid=agente,dc=ejemplo,dc=com. Para tener un acceso anónimo, deja el DN y la contraseña vacíos.",
"Save Credentials" : "Guardar credenciales",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Evita solicitudes automaticas de LDAP. Es mejor para ambientes más grandes pero requiere mayor conocimiento de LDAP. ",
"Manually enter LDAP filters (recommended for large directories)" : "Ingresar los filtros LDAP manualmente (recomendado para directorios grandes)",
"The filter specifies which LDAP users shall have access to the %s instance." : "El filtro especifica cuáles usuarios LDAP tendrán acceso a la instancia %s.",
@@ -209,6 +208,7 @@
"Back" : "Atrás",
"Continue" : "Continuar",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Advertencia:</b> El módulo LDAP de PHP no está instalado, el backend no funcionará. Por favor solicita su instalación a tu administrador del sistema.",
"Configuration Active" : "Configuracion Activa",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "¡No se recomienda, úsalo únicamente para pruebas! Si la conexión sólo funciona con esta opción, importa el certificado SSL del servidor LDAP a tu servidor %s.",
"\"$home\" Placeholder Field" : "Campo de marcador de posición \"$home\"",
"UUID Attribute for Users:" : "Atributo UUID para Usuarios:",
+2 -2
View File
@@ -79,7 +79,6 @@ OC.L10N.register(
"No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.",
"More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ",
"When unchecked, this configuration will be skipped." : "Cuando no esté seleccionada, esta configuración será omitida.",
"Configuration Active" : "Configuracion Activa",
"Copy current configuration into new directory binding" : "Copiar la configuración actual a un nuevo directorio de vinculación",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Puedes omitir el protocolo, a menos que requiera SSL. Si es el caso, empieza con ldaps://",
"Host" : "Servidor",
@@ -88,7 +87,6 @@ OC.L10N.register(
"User DN" : "DN del usuario",
"For anonymous access, leave DN and Password empty." : "Para acceso anónimo, deja la contraseña y DN vacíos.",
"Password" : "Contraseña",
"Save Credentials" : "Guardar credenciales",
"One Base DN per line" : "Un DN Base por línea",
"You can specify Base DN for users and groups in the Advanced tab" : "Puedes especificar el DN Base para usuarios y grupos en la pestaña Avanzado",
"Detect Base DN" : "Detectar DN Base",
@@ -163,6 +161,7 @@ OC.L10N.register(
"Add a new configuration" : "Agregar una nueva configuración",
"Delete the current configuration" : "Borrar la configuración actual",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "El DN del cliente del usuario con el que se vinculará, ejem. uid=agente,dc=ejemplo,dc=com. Para tener un acceso anónimo, deja el DN y la contraseña vacíos.",
"Save Credentials" : "Guardar credenciales",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Evita solicitudes automaticas de LDAP. Es mejor para ambientes más grandes pero requiere mayor conocimiento de LDAP. ",
"Manually enter LDAP filters (recommended for large directories)" : "Ingresar los filtros LDAP manualmente (recomendado para directorios grandes)",
"The filter specifies which LDAP users shall have access to the %s instance." : "El filtro especifica cuáles usuarios LDAP tendrán acceso a la instancia %s.",
@@ -170,6 +169,7 @@ OC.L10N.register(
"Back" : "Atrás",
"Continue" : "Continuar",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Advertencia:</b> El módulo LDAP de PHP no está instalado, el backend no funcionará. Por favor solicita su instalación a tu administrador del sistema.",
"Configuration Active" : "Configuracion Activa",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "¡No se recomienda, úsalo únicamente para pruebas! Si la conexión sólo funciona con esta opción, importa el certificado SSL del servidor LDAP a tu servidor %s.",
"UUID Attribute for Users:" : "Atributo UUID para Usuarios:",
"UUID Attribute for Groups:" : "Atributo UUID para Grupos:"
+2 -2
View File
@@ -77,7 +77,6 @@
"No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.",
"More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ",
"When unchecked, this configuration will be skipped." : "Cuando no esté seleccionada, esta configuración será omitida.",
"Configuration Active" : "Configuracion Activa",
"Copy current configuration into new directory binding" : "Copiar la configuración actual a un nuevo directorio de vinculación",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Puedes omitir el protocolo, a menos que requiera SSL. Si es el caso, empieza con ldaps://",
"Host" : "Servidor",
@@ -86,7 +85,6 @@
"User DN" : "DN del usuario",
"For anonymous access, leave DN and Password empty." : "Para acceso anónimo, deja la contraseña y DN vacíos.",
"Password" : "Contraseña",
"Save Credentials" : "Guardar credenciales",
"One Base DN per line" : "Un DN Base por línea",
"You can specify Base DN for users and groups in the Advanced tab" : "Puedes especificar el DN Base para usuarios y grupos en la pestaña Avanzado",
"Detect Base DN" : "Detectar DN Base",
@@ -161,6 +159,7 @@
"Add a new configuration" : "Agregar una nueva configuración",
"Delete the current configuration" : "Borrar la configuración actual",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "El DN del cliente del usuario con el que se vinculará, ejem. uid=agente,dc=ejemplo,dc=com. Para tener un acceso anónimo, deja el DN y la contraseña vacíos.",
"Save Credentials" : "Guardar credenciales",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Evita solicitudes automaticas de LDAP. Es mejor para ambientes más grandes pero requiere mayor conocimiento de LDAP. ",
"Manually enter LDAP filters (recommended for large directories)" : "Ingresar los filtros LDAP manualmente (recomendado para directorios grandes)",
"The filter specifies which LDAP users shall have access to the %s instance." : "El filtro especifica cuáles usuarios LDAP tendrán acceso a la instancia %s.",
@@ -168,6 +167,7 @@
"Back" : "Atrás",
"Continue" : "Continuar",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Advertencia:</b> El módulo LDAP de PHP no está instalado, el backend no funcionará. Por favor solicita su instalación a tu administrador del sistema.",
"Configuration Active" : "Configuracion Activa",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "¡No se recomienda, úsalo únicamente para pruebas! Si la conexión sólo funciona con esta opción, importa el certificado SSL del servidor LDAP a tu servidor %s.",
"UUID Attribute for Users:" : "Atributo UUID para Usuarios:",
"UUID Attribute for Groups:" : "Atributo UUID para Grupos:"
+2 -2
View File
@@ -79,7 +79,6 @@ OC.L10N.register(
"No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.",
"More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ",
"When unchecked, this configuration will be skipped." : "Cuando no esté seleccionada, esta configuración será omitida.",
"Configuration Active" : "Configuracion Activa",
"Copy current configuration into new directory binding" : "Copiar la configuración actual a un nuevo directorio de vinculación",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Puedes omitir el protocolo, a menos que requiera SSL. Si es el caso, empieza con ldaps://",
"Host" : "Servidor",
@@ -88,7 +87,6 @@ OC.L10N.register(
"User DN" : "DN del usuario",
"For anonymous access, leave DN and Password empty." : "Para acceso anónimo, deja la contraseña y DN vacíos.",
"Password" : "Contraseña",
"Save Credentials" : "Guardar credenciales",
"One Base DN per line" : "Un DN Base por línea",
"You can specify Base DN for users and groups in the Advanced tab" : "Puedes especificar el DN Base para usuarios y grupos en la pestaña Avanzado",
"Detect Base DN" : "Detectar DN Base",
@@ -161,6 +159,7 @@ OC.L10N.register(
"Add a new configuration" : "Agregar una nueva configuración",
"Delete the current configuration" : "Borrar la configuración actual",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "El DN del cliente del usuario con el que se vinculará, ejem. uid=agente,dc=ejemplo,dc=com. Para tener un acceso anónimo, deja el DN y la contraseña vacíos.",
"Save Credentials" : "Guardar credenciales",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Evita solicitudes automaticas de LDAP. Es mejor para ambientes más grandes pero requiere mayor conocimiento de LDAP. ",
"Manually enter LDAP filters (recommended for large directories)" : "Ingresar los filtros LDAP manualmente (recomendado para directorios grandes)",
"The filter specifies which LDAP users shall have access to the %s instance." : "El filtro especifica cuáles usuarios LDAP tendrán acceso a la instancia %s.",
@@ -168,6 +167,7 @@ OC.L10N.register(
"Back" : "Atrás",
"Continue" : "Continuar",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Advertencia:</b> El módulo LDAP de PHP no está instalado, el backend no funcionará. Por favor solicita su instalación a tu administrador del sistema.",
"Configuration Active" : "Configuracion Activa",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "¡No se recomienda, úsalo únicamente para pruebas! Si la conexión sólo funciona con esta opción, importa el certificado SSL del servidor LDAP a tu servidor %s.",
"UUID Attribute for Users:" : "Atributo UUID para Usuarios:",
"UUID Attribute for Groups:" : "Atributo UUID para Grupos:"
+2 -2
View File
@@ -77,7 +77,6 @@
"No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.",
"More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ",
"When unchecked, this configuration will be skipped." : "Cuando no esté seleccionada, esta configuración será omitida.",
"Configuration Active" : "Configuracion Activa",
"Copy current configuration into new directory binding" : "Copiar la configuración actual a un nuevo directorio de vinculación",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Puedes omitir el protocolo, a menos que requiera SSL. Si es el caso, empieza con ldaps://",
"Host" : "Servidor",
@@ -86,7 +85,6 @@
"User DN" : "DN del usuario",
"For anonymous access, leave DN and Password empty." : "Para acceso anónimo, deja la contraseña y DN vacíos.",
"Password" : "Contraseña",
"Save Credentials" : "Guardar credenciales",
"One Base DN per line" : "Un DN Base por línea",
"You can specify Base DN for users and groups in the Advanced tab" : "Puedes especificar el DN Base para usuarios y grupos en la pestaña Avanzado",
"Detect Base DN" : "Detectar DN Base",
@@ -159,6 +157,7 @@
"Add a new configuration" : "Agregar una nueva configuración",
"Delete the current configuration" : "Borrar la configuración actual",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "El DN del cliente del usuario con el que se vinculará, ejem. uid=agente,dc=ejemplo,dc=com. Para tener un acceso anónimo, deja el DN y la contraseña vacíos.",
"Save Credentials" : "Guardar credenciales",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Evita solicitudes automaticas de LDAP. Es mejor para ambientes más grandes pero requiere mayor conocimiento de LDAP. ",
"Manually enter LDAP filters (recommended for large directories)" : "Ingresar los filtros LDAP manualmente (recomendado para directorios grandes)",
"The filter specifies which LDAP users shall have access to the %s instance." : "El filtro especifica cuáles usuarios LDAP tendrán acceso a la instancia %s.",
@@ -166,6 +165,7 @@
"Back" : "Atrás",
"Continue" : "Continuar",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Advertencia:</b> El módulo LDAP de PHP no está instalado, el backend no funcionará. Por favor solicita su instalación a tu administrador del sistema.",
"Configuration Active" : "Configuracion Activa",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "¡No se recomienda, úsalo únicamente para pruebas! Si la conexión sólo funciona con esta opción, importa el certificado SSL del servidor LDAP a tu servidor %s.",
"UUID Attribute for Users:" : "Atributo UUID para Usuarios:",
"UUID Attribute for Groups:" : "Atributo UUID para Grupos:"
+2 -2
View File
@@ -114,7 +114,6 @@ OC.L10N.register(
"No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.",
"More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ",
"When unchecked, this configuration will be skipped." : "Cuando no esté seleccionada, esta configuración será omitida.",
"Configuration Active" : "Configuracion Activa",
"Copy current configuration into new directory binding" : "Copiar la configuración actual a un nuevo directorio de vinculación",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Puedes omitir el protocolo, a menos que requiera SSL. Si es el caso, empieza con ldaps://",
"Host" : "Servidor",
@@ -123,7 +122,6 @@ OC.L10N.register(
"User DN" : "DN del usuario",
"For anonymous access, leave DN and Password empty." : "Para acceso anónimo, deja la contraseña y DN vacíos.",
"Password" : "Contraseña",
"Save Credentials" : "Guardar credenciales",
"One Base DN per line" : "Un DN Base por línea",
"You can specify Base DN for users and groups in the Advanced tab" : "Puedes especificar el DN Base para usuarios y grupos en la pestaña Avanzado",
"Detect Base DN" : "Detectar DN Base",
@@ -201,6 +199,7 @@ OC.L10N.register(
"Add a new configuration" : "Agregar una nueva configuración",
"Delete the current configuration" : "Borrar la configuración actual",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "El DN del cliente del usuario con el que se vinculará, ejem. uid=agente,dc=ejemplo,dc=com. Para tener un acceso anónimo, deja el DN y la contraseña vacíos.",
"Save Credentials" : "Guardar credenciales",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Evita solicitudes automaticas de LDAP. Es mejor para ambientes más grandes pero requiere mayor conocimiento de LDAP. ",
"Manually enter LDAP filters (recommended for large directories)" : "Ingresar los filtros LDAP manualmente (recomendado para directorios grandes)",
"The filter specifies which LDAP users shall have access to the %s instance." : "El filtro especifica cuáles usuarios LDAP tendrán acceso a la instancia %s.",
@@ -208,6 +207,7 @@ OC.L10N.register(
"Back" : "Atrás",
"Continue" : "Continuar",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Advertencia:</b> El módulo LDAP de PHP no está instalado, el backend no funcionará. Por favor solicita su instalación a tu administrador del sistema.",
"Configuration Active" : "Configuracion Activa",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "¡No se recomienda, úsalo únicamente para pruebas! Si la conexión sólo funciona con esta opción, importa el certificado SSL del servidor LDAP a tu servidor %s.",
"UUID Attribute for Users:" : "Atributo UUID para Usuarios:",
"UUID Attribute for Groups:" : "Atributo UUID para Grupos:"
+2 -2
View File
@@ -112,7 +112,6 @@
"No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.",
"More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ",
"When unchecked, this configuration will be skipped." : "Cuando no esté seleccionada, esta configuración será omitida.",
"Configuration Active" : "Configuracion Activa",
"Copy current configuration into new directory binding" : "Copiar la configuración actual a un nuevo directorio de vinculación",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Puedes omitir el protocolo, a menos que requiera SSL. Si es el caso, empieza con ldaps://",
"Host" : "Servidor",
@@ -121,7 +120,6 @@
"User DN" : "DN del usuario",
"For anonymous access, leave DN and Password empty." : "Para acceso anónimo, deja la contraseña y DN vacíos.",
"Password" : "Contraseña",
"Save Credentials" : "Guardar credenciales",
"One Base DN per line" : "Un DN Base por línea",
"You can specify Base DN for users and groups in the Advanced tab" : "Puedes especificar el DN Base para usuarios y grupos en la pestaña Avanzado",
"Detect Base DN" : "Detectar DN Base",
@@ -199,6 +197,7 @@
"Add a new configuration" : "Agregar una nueva configuración",
"Delete the current configuration" : "Borrar la configuración actual",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "El DN del cliente del usuario con el que se vinculará, ejem. uid=agente,dc=ejemplo,dc=com. Para tener un acceso anónimo, deja el DN y la contraseña vacíos.",
"Save Credentials" : "Guardar credenciales",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Evita solicitudes automaticas de LDAP. Es mejor para ambientes más grandes pero requiere mayor conocimiento de LDAP. ",
"Manually enter LDAP filters (recommended for large directories)" : "Ingresar los filtros LDAP manualmente (recomendado para directorios grandes)",
"The filter specifies which LDAP users shall have access to the %s instance." : "El filtro especifica cuáles usuarios LDAP tendrán acceso a la instancia %s.",
@@ -206,6 +205,7 @@
"Back" : "Atrás",
"Continue" : "Continuar",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Advertencia:</b> El módulo LDAP de PHP no está instalado, el backend no funcionará. Por favor solicita su instalación a tu administrador del sistema.",
"Configuration Active" : "Configuracion Activa",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "¡No se recomienda, úsalo únicamente para pruebas! Si la conexión sólo funciona con esta opción, importa el certificado SSL del servidor LDAP a tu servidor %s.",
"UUID Attribute for Users:" : "Atributo UUID para Usuarios:",
"UUID Attribute for Groups:" : "Atributo UUID para Grupos:"
+2 -2
View File
@@ -79,7 +79,6 @@ OC.L10N.register(
"No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.",
"More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ",
"When unchecked, this configuration will be skipped." : "Cuando no esté seleccionada, esta configuración será omitida.",
"Configuration Active" : "Configuracion Activa",
"Copy current configuration into new directory binding" : "Copiar la configuración actual a un nuevo directorio de vinculación",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Puedes omitir el protocolo, a menos que requiera SSL. Si es el caso, empieza con ldaps://",
"Host" : "Servidor",
@@ -88,7 +87,6 @@ OC.L10N.register(
"User DN" : "DN del usuario",
"For anonymous access, leave DN and Password empty." : "Para acceso anónimo, deja la contraseña y DN vacíos.",
"Password" : "Contraseña",
"Save Credentials" : "Guardar credenciales",
"One Base DN per line" : "Un DN Base por línea",
"You can specify Base DN for users and groups in the Advanced tab" : "Puedes especificar el DN Base para usuarios y grupos en la pestaña Avanzado",
"Detect Base DN" : "Detectar DN Base",
@@ -161,6 +159,7 @@ OC.L10N.register(
"Add a new configuration" : "Agregar una nueva configuración",
"Delete the current configuration" : "Borrar la configuración actual",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "El DN del cliente del usuario con el que se vinculará, ejem. uid=agente,dc=ejemplo,dc=com. Para tener un acceso anónimo, deja el DN y la contraseña vacíos.",
"Save Credentials" : "Guardar credenciales",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Evita solicitudes automaticas de LDAP. Es mejor para ambientes más grandes pero requiere mayor conocimiento de LDAP. ",
"Manually enter LDAP filters (recommended for large directories)" : "Ingresar los filtros LDAP manualmente (recomendado para directorios grandes)",
"The filter specifies which LDAP users shall have access to the %s instance." : "El filtro especifica cuáles usuarios LDAP tendrán acceso a la instancia %s.",
@@ -168,6 +167,7 @@ OC.L10N.register(
"Back" : "Atrás",
"Continue" : "Continuar",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Advertencia:</b> El módulo LDAP de PHP no está instalado, el backend no funcionará. Por favor solicita su instalación a tu administrador del sistema.",
"Configuration Active" : "Configuracion Activa",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "¡No se recomienda, úsalo únicamente para pruebas! Si la conexión sólo funciona con esta opción, importa el certificado SSL del servidor LDAP a tu servidor %s.",
"UUID Attribute for Users:" : "Atributo UUID para Usuarios:",
"UUID Attribute for Groups:" : "Atributo UUID para Grupos:"
+2 -2
View File
@@ -77,7 +77,6 @@
"No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.",
"More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ",
"When unchecked, this configuration will be skipped." : "Cuando no esté seleccionada, esta configuración será omitida.",
"Configuration Active" : "Configuracion Activa",
"Copy current configuration into new directory binding" : "Copiar la configuración actual a un nuevo directorio de vinculación",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Puedes omitir el protocolo, a menos que requiera SSL. Si es el caso, empieza con ldaps://",
"Host" : "Servidor",
@@ -86,7 +85,6 @@
"User DN" : "DN del usuario",
"For anonymous access, leave DN and Password empty." : "Para acceso anónimo, deja la contraseña y DN vacíos.",
"Password" : "Contraseña",
"Save Credentials" : "Guardar credenciales",
"One Base DN per line" : "Un DN Base por línea",
"You can specify Base DN for users and groups in the Advanced tab" : "Puedes especificar el DN Base para usuarios y grupos en la pestaña Avanzado",
"Detect Base DN" : "Detectar DN Base",
@@ -159,6 +157,7 @@
"Add a new configuration" : "Agregar una nueva configuración",
"Delete the current configuration" : "Borrar la configuración actual",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "El DN del cliente del usuario con el que se vinculará, ejem. uid=agente,dc=ejemplo,dc=com. Para tener un acceso anónimo, deja el DN y la contraseña vacíos.",
"Save Credentials" : "Guardar credenciales",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Evita solicitudes automaticas de LDAP. Es mejor para ambientes más grandes pero requiere mayor conocimiento de LDAP. ",
"Manually enter LDAP filters (recommended for large directories)" : "Ingresar los filtros LDAP manualmente (recomendado para directorios grandes)",
"The filter specifies which LDAP users shall have access to the %s instance." : "El filtro especifica cuáles usuarios LDAP tendrán acceso a la instancia %s.",
@@ -166,6 +165,7 @@
"Back" : "Atrás",
"Continue" : "Continuar",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Advertencia:</b> El módulo LDAP de PHP no está instalado, el backend no funcionará. Por favor solicita su instalación a tu administrador del sistema.",
"Configuration Active" : "Configuracion Activa",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "¡No se recomienda, úsalo únicamente para pruebas! Si la conexión sólo funciona con esta opción, importa el certificado SSL del servidor LDAP a tu servidor %s.",
"UUID Attribute for Users:" : "Atributo UUID para Usuarios:",
"UUID Attribute for Groups:" : "Atributo UUID para Grupos:"
+2 -2
View File
@@ -79,7 +79,6 @@ OC.L10N.register(
"No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.",
"More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ",
"When unchecked, this configuration will be skipped." : "Cuando no esté seleccionada, esta configuración será omitida.",
"Configuration Active" : "Configuracion Activa",
"Copy current configuration into new directory binding" : "Copiar la configuración actual a un nuevo directorio de vinculación",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Puedes omitir el protocolo, a menos que requiera SSL. Si es el caso, empieza con ldaps://",
"Host" : "Servidor",
@@ -88,7 +87,6 @@ OC.L10N.register(
"User DN" : "DN del usuario",
"For anonymous access, leave DN and Password empty." : "Para acceso anónimo, deja la contraseña y DN vacíos.",
"Password" : "Contraseña",
"Save Credentials" : "Guardar credenciales",
"One Base DN per line" : "Un DN Base por línea",
"You can specify Base DN for users and groups in the Advanced tab" : "Puedes especificar el DN Base para usuarios y grupos en la pestaña Avanzado",
"Detect Base DN" : "Detectar DN Base",
@@ -161,6 +159,7 @@ OC.L10N.register(
"Add a new configuration" : "Agregar una nueva configuración",
"Delete the current configuration" : "Borrar la configuración actual",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "El DN del cliente del usuario con el que se vinculará, ejem. uid=agente,dc=ejemplo,dc=com. Para tener un acceso anónimo, deja el DN y la contraseña vacíos.",
"Save Credentials" : "Guardar credenciales",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Evita solicitudes automaticas de LDAP. Es mejor para ambientes más grandes pero requiere mayor conocimiento de LDAP. ",
"Manually enter LDAP filters (recommended for large directories)" : "Ingresar los filtros LDAP manualmente (recomendado para directorios grandes)",
"The filter specifies which LDAP users shall have access to the %s instance." : "El filtro especifica cuáles usuarios LDAP tendrán acceso a la instancia %s.",
@@ -168,6 +167,7 @@ OC.L10N.register(
"Back" : "Atrás",
"Continue" : "Continuar",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Advertencia:</b> El módulo LDAP de PHP no está instalado, el backend no funcionará. Por favor solicita su instalación a tu administrador del sistema.",
"Configuration Active" : "Configuracion Activa",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "¡No se recomienda, úsalo únicamente para pruebas! Si la conexión sólo funciona con esta opción, importa el certificado SSL del servidor LDAP a tu servidor %s.",
"UUID Attribute for Users:" : "Atributo UUID para Usuarios:",
"UUID Attribute for Groups:" : "Atributo UUID para Grupos:"
+2 -2
View File
@@ -77,7 +77,6 @@
"No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.",
"More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ",
"When unchecked, this configuration will be skipped." : "Cuando no esté seleccionada, esta configuración será omitida.",
"Configuration Active" : "Configuracion Activa",
"Copy current configuration into new directory binding" : "Copiar la configuración actual a un nuevo directorio de vinculación",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Puedes omitir el protocolo, a menos que requiera SSL. Si es el caso, empieza con ldaps://",
"Host" : "Servidor",
@@ -86,7 +85,6 @@
"User DN" : "DN del usuario",
"For anonymous access, leave DN and Password empty." : "Para acceso anónimo, deja la contraseña y DN vacíos.",
"Password" : "Contraseña",
"Save Credentials" : "Guardar credenciales",
"One Base DN per line" : "Un DN Base por línea",
"You can specify Base DN for users and groups in the Advanced tab" : "Puedes especificar el DN Base para usuarios y grupos en la pestaña Avanzado",
"Detect Base DN" : "Detectar DN Base",
@@ -159,6 +157,7 @@
"Add a new configuration" : "Agregar una nueva configuración",
"Delete the current configuration" : "Borrar la configuración actual",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "El DN del cliente del usuario con el que se vinculará, ejem. uid=agente,dc=ejemplo,dc=com. Para tener un acceso anónimo, deja el DN y la contraseña vacíos.",
"Save Credentials" : "Guardar credenciales",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Evita solicitudes automaticas de LDAP. Es mejor para ambientes más grandes pero requiere mayor conocimiento de LDAP. ",
"Manually enter LDAP filters (recommended for large directories)" : "Ingresar los filtros LDAP manualmente (recomendado para directorios grandes)",
"The filter specifies which LDAP users shall have access to the %s instance." : "El filtro especifica cuáles usuarios LDAP tendrán acceso a la instancia %s.",
@@ -166,6 +165,7 @@
"Back" : "Atrás",
"Continue" : "Continuar",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Advertencia:</b> El módulo LDAP de PHP no está instalado, el backend no funcionará. Por favor solicita su instalación a tu administrador del sistema.",
"Configuration Active" : "Configuracion Activa",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "¡No se recomienda, úsalo únicamente para pruebas! Si la conexión sólo funciona con esta opción, importa el certificado SSL del servidor LDAP a tu servidor %s.",
"UUID Attribute for Users:" : "Atributo UUID para Usuarios:",
"UUID Attribute for Groups:" : "Atributo UUID para Grupos:"
+2 -2
View File
@@ -79,7 +79,6 @@ OC.L10N.register(
"No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.",
"More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ",
"When unchecked, this configuration will be skipped." : "Cuando no esté seleccionada, esta configuración será omitida.",
"Configuration Active" : "Configuracion Activa",
"Copy current configuration into new directory binding" : "Copiar la configuración actual a un nuevo directorio de vinculación",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Puedes omitir el protocolo, a menos que requiera SSL. Si es el caso, empieza con ldaps://",
"Host" : "Servidor",
@@ -88,7 +87,6 @@ OC.L10N.register(
"User DN" : "DN del usuario",
"For anonymous access, leave DN and Password empty." : "Para acceso anónimo, deja la contraseña y DN vacíos.",
"Password" : "Contraseña",
"Save Credentials" : "Guardar credenciales",
"One Base DN per line" : "Un DN Base por línea",
"You can specify Base DN for users and groups in the Advanced tab" : "Puedes especificar el DN Base para usuarios y grupos en la pestaña Avanzado",
"Detect Base DN" : "Detectar DN Base",
@@ -161,6 +159,7 @@ OC.L10N.register(
"Add a new configuration" : "Agregar una nueva configuración",
"Delete the current configuration" : "Borrar la configuración actual",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "El DN del cliente del usuario con el que se vinculará, ejem. uid=agente,dc=ejemplo,dc=com. Para tener un acceso anónimo, deja el DN y la contraseña vacíos.",
"Save Credentials" : "Guardar credenciales",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Evita solicitudes automaticas de LDAP. Es mejor para ambientes más grandes pero requiere mayor conocimiento de LDAP. ",
"Manually enter LDAP filters (recommended for large directories)" : "Ingresar los filtros LDAP manualmente (recomendado para directorios grandes)",
"The filter specifies which LDAP users shall have access to the %s instance." : "El filtro especifica cuáles usuarios LDAP tendrán acceso a la instancia %s.",
@@ -168,6 +167,7 @@ OC.L10N.register(
"Back" : "Atrás",
"Continue" : "Continuar",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Advertencia:</b> El módulo LDAP de PHP no está instalado, el backend no funcionará. Por favor solicita su instalación a tu administrador del sistema.",
"Configuration Active" : "Configuracion Activa",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "¡No se recomienda, úsalo únicamente para pruebas! Si la conexión sólo funciona con esta opción, importa el certificado SSL del servidor LDAP a tu servidor %s.",
"UUID Attribute for Users:" : "Atributo UUID para Usuarios:",
"UUID Attribute for Groups:" : "Atributo UUID para Grupos:"
+2 -2
View File
@@ -77,7 +77,6 @@
"No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.",
"More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ",
"When unchecked, this configuration will be skipped." : "Cuando no esté seleccionada, esta configuración será omitida.",
"Configuration Active" : "Configuracion Activa",
"Copy current configuration into new directory binding" : "Copiar la configuración actual a un nuevo directorio de vinculación",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Puedes omitir el protocolo, a menos que requiera SSL. Si es el caso, empieza con ldaps://",
"Host" : "Servidor",
@@ -86,7 +85,6 @@
"User DN" : "DN del usuario",
"For anonymous access, leave DN and Password empty." : "Para acceso anónimo, deja la contraseña y DN vacíos.",
"Password" : "Contraseña",
"Save Credentials" : "Guardar credenciales",
"One Base DN per line" : "Un DN Base por línea",
"You can specify Base DN for users and groups in the Advanced tab" : "Puedes especificar el DN Base para usuarios y grupos en la pestaña Avanzado",
"Detect Base DN" : "Detectar DN Base",
@@ -159,6 +157,7 @@
"Add a new configuration" : "Agregar una nueva configuración",
"Delete the current configuration" : "Borrar la configuración actual",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "El DN del cliente del usuario con el que se vinculará, ejem. uid=agente,dc=ejemplo,dc=com. Para tener un acceso anónimo, deja el DN y la contraseña vacíos.",
"Save Credentials" : "Guardar credenciales",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Evita solicitudes automaticas de LDAP. Es mejor para ambientes más grandes pero requiere mayor conocimiento de LDAP. ",
"Manually enter LDAP filters (recommended for large directories)" : "Ingresar los filtros LDAP manualmente (recomendado para directorios grandes)",
"The filter specifies which LDAP users shall have access to the %s instance." : "El filtro especifica cuáles usuarios LDAP tendrán acceso a la instancia %s.",
@@ -166,6 +165,7 @@
"Back" : "Atrás",
"Continue" : "Continuar",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Advertencia:</b> El módulo LDAP de PHP no está instalado, el backend no funcionará. Por favor solicita su instalación a tu administrador del sistema.",
"Configuration Active" : "Configuracion Activa",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "¡No se recomienda, úsalo únicamente para pruebas! Si la conexión sólo funciona con esta opción, importa el certificado SSL del servidor LDAP a tu servidor %s.",
"UUID Attribute for Users:" : "Atributo UUID para Usuarios:",
"UUID Attribute for Groups:" : "Atributo UUID para Grupos:"
+2 -2
View File
@@ -79,7 +79,6 @@ OC.L10N.register(
"No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.",
"More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ",
"When unchecked, this configuration will be skipped." : "Cuando no esté seleccionada, esta configuración será omitida.",
"Configuration Active" : "Configuracion Activa",
"Copy current configuration into new directory binding" : "Copiar la configuración actual a un nuevo directorio de vinculación",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Puedes omitir el protocolo, a menos que requiera SSL. Si es el caso, empieza con ldaps://",
"Host" : "Servidor",
@@ -88,7 +87,6 @@ OC.L10N.register(
"User DN" : "DN del usuario",
"For anonymous access, leave DN and Password empty." : "Para acceso anónimo, deja la contraseña y DN vacíos.",
"Password" : "Contraseña",
"Save Credentials" : "Guardar credenciales",
"One Base DN per line" : "Un DN Base por línea",
"You can specify Base DN for users and groups in the Advanced tab" : "Puedes especificar el DN Base para usuarios y grupos en la pestaña Avanzado",
"Detect Base DN" : "Detectar DN Base",
@@ -161,6 +159,7 @@ OC.L10N.register(
"Add a new configuration" : "Agregar una nueva configuración",
"Delete the current configuration" : "Borrar la configuración actual",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "El DN del cliente del usuario con el que se vinculará, ejem. uid=agente,dc=ejemplo,dc=com. Para tener un acceso anónimo, deja el DN y la contraseña vacíos.",
"Save Credentials" : "Guardar credenciales",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Evita solicitudes automaticas de LDAP. Es mejor para ambientes más grandes pero requiere mayor conocimiento de LDAP. ",
"Manually enter LDAP filters (recommended for large directories)" : "Ingresar los filtros LDAP manualmente (recomendado para directorios grandes)",
"The filter specifies which LDAP users shall have access to the %s instance." : "El filtro especifica cuáles usuarios LDAP tendrán acceso a la instancia %s.",
@@ -168,6 +167,7 @@ OC.L10N.register(
"Back" : "Atrás",
"Continue" : "Continuar",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Advertencia:</b> El módulo LDAP de PHP no está instalado, el backend no funcionará. Por favor solicita su instalación a tu administrador del sistema.",
"Configuration Active" : "Configuracion Activa",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "¡No se recomienda, úsalo únicamente para pruebas! Si la conexión sólo funciona con esta opción, importa el certificado SSL del servidor LDAP a tu servidor %s.",
"UUID Attribute for Users:" : "Atributo UUID para Usuarios:",
"UUID Attribute for Groups:" : "Atributo UUID para Grupos:"
+2 -2
View File
@@ -77,7 +77,6 @@
"No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.",
"More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ",
"When unchecked, this configuration will be skipped." : "Cuando no esté seleccionada, esta configuración será omitida.",
"Configuration Active" : "Configuracion Activa",
"Copy current configuration into new directory binding" : "Copiar la configuración actual a un nuevo directorio de vinculación",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Puedes omitir el protocolo, a menos que requiera SSL. Si es el caso, empieza con ldaps://",
"Host" : "Servidor",
@@ -86,7 +85,6 @@
"User DN" : "DN del usuario",
"For anonymous access, leave DN and Password empty." : "Para acceso anónimo, deja la contraseña y DN vacíos.",
"Password" : "Contraseña",
"Save Credentials" : "Guardar credenciales",
"One Base DN per line" : "Un DN Base por línea",
"You can specify Base DN for users and groups in the Advanced tab" : "Puedes especificar el DN Base para usuarios y grupos en la pestaña Avanzado",
"Detect Base DN" : "Detectar DN Base",
@@ -159,6 +157,7 @@
"Add a new configuration" : "Agregar una nueva configuración",
"Delete the current configuration" : "Borrar la configuración actual",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "El DN del cliente del usuario con el que se vinculará, ejem. uid=agente,dc=ejemplo,dc=com. Para tener un acceso anónimo, deja el DN y la contraseña vacíos.",
"Save Credentials" : "Guardar credenciales",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Evita solicitudes automaticas de LDAP. Es mejor para ambientes más grandes pero requiere mayor conocimiento de LDAP. ",
"Manually enter LDAP filters (recommended for large directories)" : "Ingresar los filtros LDAP manualmente (recomendado para directorios grandes)",
"The filter specifies which LDAP users shall have access to the %s instance." : "El filtro especifica cuáles usuarios LDAP tendrán acceso a la instancia %s.",
@@ -166,6 +165,7 @@
"Back" : "Atrás",
"Continue" : "Continuar",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Advertencia:</b> El módulo LDAP de PHP no está instalado, el backend no funcionará. Por favor solicita su instalación a tu administrador del sistema.",
"Configuration Active" : "Configuracion Activa",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "¡No se recomienda, úsalo únicamente para pruebas! Si la conexión sólo funciona con esta opción, importa el certificado SSL del servidor LDAP a tu servidor %s.",
"UUID Attribute for Users:" : "Atributo UUID para Usuarios:",
"UUID Attribute for Groups:" : "Atributo UUID para Grupos:"
+2 -2
View File
@@ -79,7 +79,6 @@ OC.L10N.register(
"No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.",
"More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ",
"When unchecked, this configuration will be skipped." : "Cuando no esté seleccionada, esta configuración será omitida.",
"Configuration Active" : "Configuracion Activa",
"Copy current configuration into new directory binding" : "Copiar la configuración actual a un nuevo directorio de vinculación",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Puedes omitir el protocolo, a menos que requiera SSL. Si es el caso, empieza con ldaps://",
"Host" : "Servidor",
@@ -88,7 +87,6 @@ OC.L10N.register(
"User DN" : "DN del usuario",
"For anonymous access, leave DN and Password empty." : "Para acceso anónimo, deja la contraseña y DN vacíos.",
"Password" : "Contraseña",
"Save Credentials" : "Guardar credenciales",
"One Base DN per line" : "Un DN Base por línea",
"You can specify Base DN for users and groups in the Advanced tab" : "Puedes especificar el DN Base para usuarios y grupos en la pestaña Avanzado",
"Detect Base DN" : "Detectar DN Base",
@@ -162,6 +160,7 @@ OC.L10N.register(
"Add a new configuration" : "Agregar una nueva configuración",
"Delete the current configuration" : "Borrar la configuración actual",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "El DN del cliente del usuario con el que se vinculará, ejem. uid=agente,dc=ejemplo,dc=com. Para tener un acceso anónimo, deja el DN y la contraseña vacíos.",
"Save Credentials" : "Guardar credenciales",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Evita solicitudes automaticas de LDAP. Es mejor para ambientes más grandes pero requiere mayor conocimiento de LDAP. ",
"Manually enter LDAP filters (recommended for large directories)" : "Ingresar los filtros LDAP manualmente (recomendado para directorios grandes)",
"The filter specifies which LDAP users shall have access to the %s instance." : "El filtro especifica cuáles usuarios LDAP tendrán acceso a la instancia %s.",
@@ -169,6 +168,7 @@ OC.L10N.register(
"Back" : "Atrás",
"Continue" : "Continuar",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Advertencia:</b> El módulo LDAP de PHP no está instalado, el backend no funcionará. Por favor solicita su instalación a tu administrador del sistema.",
"Configuration Active" : "Configuracion Activa",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "¡No se recomienda, úsalo únicamente para pruebas! Si la conexión sólo funciona con esta opción, importa el certificado SSL del servidor LDAP a tu servidor %s.",
"UUID Attribute for Users:" : "Atributo UUID para Usuarios:",
"UUID Attribute for Groups:" : "Atributo UUID para Grupos:"
+2 -2
View File
@@ -77,7 +77,6 @@
"No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.",
"More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ",
"When unchecked, this configuration will be skipped." : "Cuando no esté seleccionada, esta configuración será omitida.",
"Configuration Active" : "Configuracion Activa",
"Copy current configuration into new directory binding" : "Copiar la configuración actual a un nuevo directorio de vinculación",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Puedes omitir el protocolo, a menos que requiera SSL. Si es el caso, empieza con ldaps://",
"Host" : "Servidor",
@@ -86,7 +85,6 @@
"User DN" : "DN del usuario",
"For anonymous access, leave DN and Password empty." : "Para acceso anónimo, deja la contraseña y DN vacíos.",
"Password" : "Contraseña",
"Save Credentials" : "Guardar credenciales",
"One Base DN per line" : "Un DN Base por línea",
"You can specify Base DN for users and groups in the Advanced tab" : "Puedes especificar el DN Base para usuarios y grupos en la pestaña Avanzado",
"Detect Base DN" : "Detectar DN Base",
@@ -160,6 +158,7 @@
"Add a new configuration" : "Agregar una nueva configuración",
"Delete the current configuration" : "Borrar la configuración actual",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "El DN del cliente del usuario con el que se vinculará, ejem. uid=agente,dc=ejemplo,dc=com. Para tener un acceso anónimo, deja el DN y la contraseña vacíos.",
"Save Credentials" : "Guardar credenciales",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Evita solicitudes automaticas de LDAP. Es mejor para ambientes más grandes pero requiere mayor conocimiento de LDAP. ",
"Manually enter LDAP filters (recommended for large directories)" : "Ingresar los filtros LDAP manualmente (recomendado para directorios grandes)",
"The filter specifies which LDAP users shall have access to the %s instance." : "El filtro especifica cuáles usuarios LDAP tendrán acceso a la instancia %s.",
@@ -167,6 +166,7 @@
"Back" : "Atrás",
"Continue" : "Continuar",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Advertencia:</b> El módulo LDAP de PHP no está instalado, el backend no funcionará. Por favor solicita su instalación a tu administrador del sistema.",
"Configuration Active" : "Configuracion Activa",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "¡No se recomienda, úsalo únicamente para pruebas! Si la conexión sólo funciona con esta opción, importa el certificado SSL del servidor LDAP a tu servidor %s.",
"UUID Attribute for Users:" : "Atributo UUID para Usuarios:",
"UUID Attribute for Groups:" : "Atributo UUID para Grupos:"
+2 -2
View File
@@ -79,7 +79,6 @@ OC.L10N.register(
"No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.",
"More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ",
"When unchecked, this configuration will be skipped." : "Cuando no esté seleccionada, esta configuración será omitida.",
"Configuration Active" : "Configuracion Activa",
"Copy current configuration into new directory binding" : "Copiar la configuración actual a un nuevo directorio de vinculación",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Puedes omitir el protocolo, a menos que requiera SSL. Si es el caso, empieza con ldaps://",
"Host" : "Servidor",
@@ -88,7 +87,6 @@ OC.L10N.register(
"User DN" : "DN del usuario",
"For anonymous access, leave DN and Password empty." : "Para acceso anónimo, deja la contraseña y DN vacíos.",
"Password" : "Contraseña",
"Save Credentials" : "Guardar credenciales",
"One Base DN per line" : "Un DN Base por línea",
"You can specify Base DN for users and groups in the Advanced tab" : "Puedes especificar el DN Base para usuarios y grupos en la pestaña Avanzado",
"Detect Base DN" : "Detectar DN Base",
@@ -163,6 +161,7 @@ OC.L10N.register(
"Add a new configuration" : "Agregar una nueva configuración",
"Delete the current configuration" : "Borrar la configuración actual",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "El DN del cliente del usuario con el que se vinculará, ejem. uid=agente,dc=ejemplo,dc=com. Para tener un acceso anónimo, deja el DN y la contraseña vacíos.",
"Save Credentials" : "Guardar credenciales",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Evita solicitudes automaticas de LDAP. Es mejor para ambientes más grandes pero requiere mayor conocimiento de LDAP. ",
"Manually enter LDAP filters (recommended for large directories)" : "Ingresar los filtros LDAP manualmente (recomendado para directorios grandes)",
"The filter specifies which LDAP users shall have access to the %s instance." : "El filtro especifica cuáles usuarios LDAP tendrán acceso a la instancia %s.",
@@ -170,6 +169,7 @@ OC.L10N.register(
"Back" : "Atrás",
"Continue" : "Continuar",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Advertencia:</b> El módulo LDAP de PHP no está instalado, el backend no funcionará. Por favor solicita su instalación a tu administrador del sistema.",
"Configuration Active" : "Configuracion Activa",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "¡No se recomienda, úsalo únicamente para pruebas! Si la conexión sólo funciona con esta opción, importa el certificado SSL del servidor LDAP a tu servidor %s.",
"UUID Attribute for Users:" : "Atributo UUID para Usuarios:",
"UUID Attribute for Groups:" : "Atributo UUID para Grupos:"
+2 -2
View File
@@ -77,7 +77,6 @@
"No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.",
"More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ",
"When unchecked, this configuration will be skipped." : "Cuando no esté seleccionada, esta configuración será omitida.",
"Configuration Active" : "Configuracion Activa",
"Copy current configuration into new directory binding" : "Copiar la configuración actual a un nuevo directorio de vinculación",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Puedes omitir el protocolo, a menos que requiera SSL. Si es el caso, empieza con ldaps://",
"Host" : "Servidor",
@@ -86,7 +85,6 @@
"User DN" : "DN del usuario",
"For anonymous access, leave DN and Password empty." : "Para acceso anónimo, deja la contraseña y DN vacíos.",
"Password" : "Contraseña",
"Save Credentials" : "Guardar credenciales",
"One Base DN per line" : "Un DN Base por línea",
"You can specify Base DN for users and groups in the Advanced tab" : "Puedes especificar el DN Base para usuarios y grupos en la pestaña Avanzado",
"Detect Base DN" : "Detectar DN Base",
@@ -161,6 +159,7 @@
"Add a new configuration" : "Agregar una nueva configuración",
"Delete the current configuration" : "Borrar la configuración actual",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "El DN del cliente del usuario con el que se vinculará, ejem. uid=agente,dc=ejemplo,dc=com. Para tener un acceso anónimo, deja el DN y la contraseña vacíos.",
"Save Credentials" : "Guardar credenciales",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Evita solicitudes automaticas de LDAP. Es mejor para ambientes más grandes pero requiere mayor conocimiento de LDAP. ",
"Manually enter LDAP filters (recommended for large directories)" : "Ingresar los filtros LDAP manualmente (recomendado para directorios grandes)",
"The filter specifies which LDAP users shall have access to the %s instance." : "El filtro especifica cuáles usuarios LDAP tendrán acceso a la instancia %s.",
@@ -168,6 +167,7 @@
"Back" : "Atrás",
"Continue" : "Continuar",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Advertencia:</b> El módulo LDAP de PHP no está instalado, el backend no funcionará. Por favor solicita su instalación a tu administrador del sistema.",
"Configuration Active" : "Configuracion Activa",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "¡No se recomienda, úsalo únicamente para pruebas! Si la conexión sólo funciona con esta opción, importa el certificado SSL del servidor LDAP a tu servidor %s.",
"UUID Attribute for Users:" : "Atributo UUID para Usuarios:",
"UUID Attribute for Groups:" : "Atributo UUID para Grupos:"
+2 -2
View File
@@ -79,7 +79,6 @@ OC.L10N.register(
"No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.",
"More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ",
"When unchecked, this configuration will be skipped." : "Cuando no esté seleccionada, esta configuración será omitida.",
"Configuration Active" : "Configuracion Activa",
"Copy current configuration into new directory binding" : "Copiar la configuración actual a un nuevo directorio de vinculación",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Puedes omitir el protocolo, a menos que requiera SSL. Si es el caso, empieza con ldaps://",
"Host" : "Servidor",
@@ -88,7 +87,6 @@ OC.L10N.register(
"User DN" : "DN del usuario",
"For anonymous access, leave DN and Password empty." : "Para acceso anónimo, deja la contraseña y DN vacíos.",
"Password" : "Contraseña",
"Save Credentials" : "Guardar credenciales",
"One Base DN per line" : "Un DN Base por línea",
"You can specify Base DN for users and groups in the Advanced tab" : "Puedes especificar el DN Base para usuarios y grupos en la pestaña Avanzado",
"Detect Base DN" : "Detectar DN Base",
@@ -161,6 +159,7 @@ OC.L10N.register(
"Add a new configuration" : "Agregar una nueva configuración",
"Delete the current configuration" : "Borrar la configuración actual",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "El DN del cliente del usuario con el que se vinculará, ejem. uid=agente,dc=ejemplo,dc=com. Para tener un acceso anónimo, deja el DN y la contraseña vacíos.",
"Save Credentials" : "Guardar credenciales",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Evita solicitudes automaticas de LDAP. Es mejor para ambientes más grandes pero requiere mayor conocimiento de LDAP. ",
"Manually enter LDAP filters (recommended for large directories)" : "Ingresar los filtros LDAP manualmente (recomendado para directorios grandes)",
"The filter specifies which LDAP users shall have access to the %s instance." : "El filtro especifica cuáles usuarios LDAP tendrán acceso a la instancia %s.",
@@ -168,6 +167,7 @@ OC.L10N.register(
"Back" : "Atrás",
"Continue" : "Continuar",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Advertencia:</b> El módulo LDAP de PHP no está instalado, el backend no funcionará. Por favor solicita su instalación a tu administrador del sistema.",
"Configuration Active" : "Configuracion Activa",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "¡No se recomienda, úsalo únicamente para pruebas! Si la conexión sólo funciona con esta opción, importa el certificado SSL del servidor LDAP a tu servidor %s.",
"UUID Attribute for Users:" : "Atributo UUID para Usuarios:",
"UUID Attribute for Groups:" : "Atributo UUID para Grupos:"
+2 -2
View File
@@ -77,7 +77,6 @@
"No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.",
"More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ",
"When unchecked, this configuration will be skipped." : "Cuando no esté seleccionada, esta configuración será omitida.",
"Configuration Active" : "Configuracion Activa",
"Copy current configuration into new directory binding" : "Copiar la configuración actual a un nuevo directorio de vinculación",
"You can omit the protocol, unless you require SSL. If so, start with ldaps://" : "Puedes omitir el protocolo, a menos que requiera SSL. Si es el caso, empieza con ldaps://",
"Host" : "Servidor",
@@ -86,7 +85,6 @@
"User DN" : "DN del usuario",
"For anonymous access, leave DN and Password empty." : "Para acceso anónimo, deja la contraseña y DN vacíos.",
"Password" : "Contraseña",
"Save Credentials" : "Guardar credenciales",
"One Base DN per line" : "Un DN Base por línea",
"You can specify Base DN for users and groups in the Advanced tab" : "Puedes especificar el DN Base para usuarios y grupos en la pestaña Avanzado",
"Detect Base DN" : "Detectar DN Base",
@@ -159,6 +157,7 @@
"Add a new configuration" : "Agregar una nueva configuración",
"Delete the current configuration" : "Borrar la configuración actual",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "El DN del cliente del usuario con el que se vinculará, ejem. uid=agente,dc=ejemplo,dc=com. Para tener un acceso anónimo, deja el DN y la contraseña vacíos.",
"Save Credentials" : "Guardar credenciales",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Evita solicitudes automaticas de LDAP. Es mejor para ambientes más grandes pero requiere mayor conocimiento de LDAP. ",
"Manually enter LDAP filters (recommended for large directories)" : "Ingresar los filtros LDAP manualmente (recomendado para directorios grandes)",
"The filter specifies which LDAP users shall have access to the %s instance." : "El filtro especifica cuáles usuarios LDAP tendrán acceso a la instancia %s.",
@@ -166,6 +165,7 @@
"Back" : "Atrás",
"Continue" : "Continuar",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Advertencia:</b> El módulo LDAP de PHP no está instalado, el backend no funcionará. Por favor solicita su instalación a tu administrador del sistema.",
"Configuration Active" : "Configuracion Activa",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "¡No se recomienda, úsalo únicamente para pruebas! Si la conexión sólo funciona con esta opción, importa el certificado SSL del servidor LDAP a tu servidor %s.",
"UUID Attribute for Users:" : "Atributo UUID para Usuarios:",
"UUID Attribute for Groups:" : "Atributo UUID para Grupos:"
+2 -2
View File
@@ -79,7 +79,6 @@ OC.L10N.register(
"More than 1,000 directory entries available." : "Saadaval on rohkem kui 1000 kataloogikirjet.",
"_{ldapTestBase} entry available within the provided Base DN_::_{ldapTestBase} entries available within the provided Base DN_" : ["„Base DN“ ehk juurdomeeni alusel on saadaval {ldapTestBase} kirje","„Base DN“ ehk juurdomeeni alusel on saadaval {ldapTestBase} kirjet"],
"When unchecked, this configuration will be skipped." : "Kui on märkimata, siis seadistust ei kasutata.",
"Configuration Active" : "Seadistus on aktiivne",
"Copy configuration" : "Kopeeri seadistus",
"Delete configuration" : "Kustuta seadistus",
"Host" : "Host",
@@ -88,7 +87,6 @@ OC.L10N.register(
"User DN" : "Kasutaja DN",
"For anonymous access, leave DN and Password empty." : "Anonüümseks ligipääsuks jäta DN ja salasõna tühjaks.",
"Password" : "Salasõna",
"Save Credentials" : "Salvesta kasutajaandmed",
"Base DN" : "Base DN ehk juurdomeen",
"One Base DN per line" : "Üks baas-DN rea kohta",
"You can specify Base DN for users and groups in the Advanced tab" : "Sa saad kasutajate ja gruppide baas DN-i määrata lisavalikute vahekaardilt",
@@ -170,6 +168,7 @@ OC.L10N.register(
"%s. Server:" : "%s. Server:",
"Delete the current configuration" : "Kustuta praegune seadistus",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "Klientkasutaja DN, kellega seotakse, nt. uid=agent,dc=näidis,dc=com. Anonüümseks ligipääsuks jäta DN ja salasõna tühjaks.",
"Save Credentials" : "Salvesta kasutajaandmed",
"Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Väldib automaatseid LDAP päringuid, Parem suurematele saitidele, aga nõuab mõningaid teadmisi LDAP kohta.",
"Manually enter LDAP filters (recommended for large directories)" : "Sisesta LDAP filtrid käsitsi (sooitatav suurtele kataloogidele)",
"The filter specifies which LDAP users shall have access to the %s instance." : "Filter määrab millised LDAP kasutajad pääsevad ligi %s instantsile.",
@@ -177,6 +176,7 @@ OC.L10N.register(
"Back" : "Tagasi",
"Continue" : "Jätka",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "<b>Hoiatus:</b>PHP LDAP moodul pole paigaldatud ning LDAP kasutamine ei ole võimalik. Palu oma süsteeihaldurit see paigaldada.",
"Configuration Active" : "Seadistus on aktiivne",
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "Pole soovitatav, kasuta seda ainult testimiseks! Kui ühendus toimib ainult selle valikuga, siis impordi LDAP serveri SSL sertifikaat oma %s serverisse.",
"UUID Attribute for Users:" : "UUID atribuut kasutajatele:",
"UUID Attribute for Groups:" : "UUID atribuut gruppidele:"

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