Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 93fe7e38e2 | |||
| e8af4f1994 | |||
| e8b61c7345 | |||
| 117233fca4 | |||
| aa57c6731e |
@@ -41,6 +41,12 @@ jobs:
|
||||
PUPPETEER_SKIP_DOWNLOAD: true
|
||||
|
||||
steps:
|
||||
- name: Disabled on forks
|
||||
if: ${{ github.event.pull_request.head.repo.full_name != github.repository }}
|
||||
run: |
|
||||
echo 'Can not run cypress on forks'
|
||||
exit 1
|
||||
|
||||
- name: Checkout server
|
||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
with:
|
||||
@@ -170,6 +176,10 @@ jobs:
|
||||
# We already installed the dependencies in the init job
|
||||
install: false
|
||||
component: ${{ matrix.containers == 'component' }}
|
||||
group: ${{ matrix.use-cypress-cloud && matrix.containers == 'component' && 'Run component' || matrix.use-cypress-cloud && 'Run E2E' || '' }}
|
||||
# cypress env
|
||||
ci-build-id: ${{ matrix.use-cypress-cloud && format('{0}-{1}', github.sha, github.run_number) || '' }}
|
||||
tag: ${{ matrix.use-cypress-cloud && github.event_name || '' }}
|
||||
env:
|
||||
# Needs to be prefixed with CYPRESS_
|
||||
CYPRESS_BRANCH: ${{ env.BRANCH }}
|
||||
@@ -178,6 +188,7 @@ jobs:
|
||||
# Needed for some specific code workarounds
|
||||
TESTING: true
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
|
||||
SPLIT: ${{ matrix.total-containers }}
|
||||
SPLIT_INDEX: ${{ matrix.containers == 'component' && 0 || matrix.containers }}
|
||||
SPLIT_RANDOM_SEED: ${{ github.run_id }}
|
||||
|
||||
@@ -44,9 +44,6 @@ jobs:
|
||||
lint:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
needs: changes
|
||||
if: needs.changes.outputs.src != 'false'
|
||||
|
||||
name: php-cs
|
||||
|
||||
steps:
|
||||
|
||||
@@ -9,8 +9,6 @@ on:
|
||||
- main
|
||||
- master
|
||||
- stable*
|
||||
# Push runs are intentionally kept because the security analysis job
|
||||
# below also runs on push; the other analysis jobs are PR-only.
|
||||
paths:
|
||||
- '.github/workflows/static-code-analysis.yml'
|
||||
- '**.php'
|
||||
@@ -23,53 +21,10 @@ concurrency:
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
changes:
|
||||
runs-on: ubuntu-latest-low
|
||||
|
||||
outputs:
|
||||
src: ${{ steps.changes.outputs.src }}
|
||||
|
||||
steps:
|
||||
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
|
||||
id: changes
|
||||
continue-on-error: true
|
||||
with:
|
||||
filters: |
|
||||
src:
|
||||
- '.github/workflows/**'
|
||||
- '3rdparty/**'
|
||||
- '**/appinfo/**'
|
||||
- '**/lib/**'
|
||||
- '**/templates/**'
|
||||
- 'vendor/**'
|
||||
- 'vendor-bin/**'
|
||||
- 'composer.json'
|
||||
- 'composer.lock'
|
||||
- '**.php'
|
||||
|
||||
static-code-analysis:
|
||||
name: ${{ matrix.name }}
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
needs: changes
|
||||
if: ${{ needs.changes.outputs.src != 'false' && github.event_name == 'pull_request' && github.repository_owner != 'nextcloud-gmbh' }}
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
include:
|
||||
- name: Psalm
|
||||
command: composer run psalm -- --threads=1 --monochrome --no-progress --output-format=github --update-baseline
|
||||
check_baseline_diff: true
|
||||
- name: Psalm OCP
|
||||
command: composer run psalm:ocp -- --threads=1 --monochrome --no-progress --output-format=github --update-baseline
|
||||
check_baseline_diff: true
|
||||
- name: Psalm NCU
|
||||
command: composer run psalm:ncu -- --threads=1 --monochrome --no-progress --output-format=github
|
||||
check_baseline_diff: false
|
||||
- name: Psalm strict
|
||||
command: composer run psalm:strict -- --threads=1 --monochrome --no-progress --output-format=github
|
||||
check_baseline_diff: false
|
||||
if: ${{ github.event_name != 'push' && github.repository_owner != 'nextcloud-gmbh' }}
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
@@ -88,32 +43,20 @@ jobs:
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Get Composer cache directory
|
||||
id: composer-cache
|
||||
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
|
||||
|
||||
- name: Cache Composer dependencies
|
||||
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
|
||||
with:
|
||||
path: ${{ steps.composer-cache.outputs.dir }}
|
||||
key: ${{ runner.os }}-php-8.2-composer-${{ hashFiles('**/composer.lock') }}
|
||||
restore-keys: ${{ runner.os }}-php-8.2-composer-
|
||||
|
||||
- name: Composer install
|
||||
run: composer i
|
||||
|
||||
- name: Run analysis
|
||||
run: ${{ matrix.command }}
|
||||
- name: Psalm
|
||||
run: composer run psalm -- --threads=1 --monochrome --no-progress --output-format=github --update-baseline
|
||||
|
||||
- name: Show potential changes in Psalm baseline
|
||||
if: ${{ always() && matrix.check_baseline_diff }}
|
||||
if: always()
|
||||
run: git diff --exit-code -- . ':!lib/composer'
|
||||
|
||||
static-code-analysis-security:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
needs: changes
|
||||
if: ${{ needs.changes.outputs.src != 'false' && github.repository_owner != 'nextcloud-gmbh' }}
|
||||
if: ${{ github.repository_owner != 'nextcloud-gmbh' }}
|
||||
|
||||
permissions:
|
||||
security-events: write
|
||||
@@ -133,17 +76,6 @@ jobs:
|
||||
extensions: ctype,curl,dom,fileinfo,ftp,gd,imagick,intl,json,ldap,mbstring,openssl,pdo_sqlite,posix,sqlite,xml,zip
|
||||
coverage: none
|
||||
|
||||
- name: Get Composer cache directory
|
||||
id: composer-cache-security
|
||||
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
|
||||
|
||||
- name: Cache Composer dependencies
|
||||
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
|
||||
with:
|
||||
path: ${{ steps.composer-cache-security.outputs.dir }}
|
||||
key: ${{ runner.os }}-php-8.2-composer-${{ hashFiles('**/composer.lock') }}
|
||||
restore-keys: ${{ runner.os }}-php-8.2-composer-
|
||||
|
||||
- name: Composer install
|
||||
run: composer i
|
||||
|
||||
@@ -160,23 +92,89 @@ jobs:
|
||||
with:
|
||||
sarif_file: results.sarif
|
||||
|
||||
summary:
|
||||
permissions:
|
||||
contents: none
|
||||
runs-on: ubuntu-latest-low
|
||||
needs: [changes, static-code-analysis, static-code-analysis-security]
|
||||
static-code-analysis-ocp:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
if: always()
|
||||
|
||||
name: static-code-analysis-summary
|
||||
if: ${{ github.event_name != 'push' && github.repository_owner != 'nextcloud-gmbh' }}
|
||||
|
||||
steps:
|
||||
- name: Summary status
|
||||
run: |
|
||||
if ${{ needs.changes.outputs.src != 'false' && (
|
||||
needs.static-code-analysis-security.result != 'success' ||
|
||||
(github.event_name == 'pull_request' &&
|
||||
needs.static-code-analysis.result != 'success')
|
||||
) }}; then
|
||||
exit 1
|
||||
fi
|
||||
- name: Checkout
|
||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
|
||||
with:
|
||||
persist-credentials: false
|
||||
submodules: true
|
||||
|
||||
- name: Set up php
|
||||
uses: shivammathur/setup-php@44454db4f0199b8b9685a5d763dc37cbf79108e1 #v2.36.0
|
||||
timeout-minutes: 5
|
||||
with:
|
||||
php-version: '8.2'
|
||||
extensions: ctype,curl,dom,fileinfo,gd,imagick,intl,json,mbstring,openssl,pdo_sqlite,posix,sqlite,xml,zip
|
||||
coverage: none
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Composer install
|
||||
run: composer i
|
||||
|
||||
- name: Psalm
|
||||
run: composer run psalm:ocp -- --threads=1 --monochrome --no-progress --output-format=github --update-baseline
|
||||
|
||||
- name: Show potential changes in Psalm baseline
|
||||
if: always()
|
||||
run: git diff --exit-code -- . ':!lib/composer'
|
||||
|
||||
static-code-analysis-ncu:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
if: ${{ github.event_name != 'push' && github.repository_owner != 'nextcloud-gmbh' }}
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
|
||||
with:
|
||||
persist-credentials: false
|
||||
submodules: true
|
||||
|
||||
- name: Set up php
|
||||
uses: shivammathur/setup-php@44454db4f0199b8b9685a5d763dc37cbf79108e1 #v2.36.0
|
||||
timeout-minutes: 5
|
||||
with:
|
||||
php-version: '8.2'
|
||||
extensions: ctype,curl,dom,fileinfo,gd,imagick,intl,json,mbstring,openssl,pdo_sqlite,posix,sqlite,xml,zip
|
||||
coverage: none
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Composer install
|
||||
run: composer i
|
||||
|
||||
- name: Psalm
|
||||
run: composer run psalm:ncu -- --threads=1 --monochrome --no-progress --output-format=github
|
||||
|
||||
static-code-analysis-strict:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
if: ${{ github.event_name != 'push' && github.repository_owner != 'nextcloud-gmbh' }}
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
|
||||
with:
|
||||
persist-credentials: false
|
||||
submodules: true
|
||||
|
||||
- name: Set up php
|
||||
uses: shivammathur/setup-php@44454db4f0199b8b9685a5d763dc37cbf79108e1 #v2.36.0
|
||||
with:
|
||||
php-version: '8.2'
|
||||
extensions: ctype,curl,dom,fileinfo,gd,imagick,intl,json,mbstring,openssl,pdo_sqlite,posix,sqlite,xml,zip
|
||||
coverage: none
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Composer install
|
||||
run: composer i
|
||||
|
||||
- name: Psalm
|
||||
run: composer run psalm:strict -- --threads=1 --monochrome --no-progress --output-format=github
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
OC.L10N.register(
|
||||
"admin_audit",
|
||||
{
|
||||
"Auditing / Logging" : "নিরীক্ষা",
|
||||
"Provides logging abilities for Nextcloud such as logging file accesses or otherwise sensitive actions." : "নেক্সটক্লাউডের নিরীক্ষামূলক সক্ষমতা প্রদান করে যেমন লগিং ফাইল অ্যাক্সেস বা অন্য কোনো জরুরী পদক্ষেপসমূহ"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
@@ -1,5 +0,0 @@
|
||||
{ "translations": {
|
||||
"Auditing / Logging" : "নিরীক্ষা",
|
||||
"Provides logging abilities for Nextcloud such as logging file accesses or otherwise sensitive actions." : "নেক্সটক্লাউডের নিরীক্ষামূলক সক্ষমতা প্রদান করে যেমন লগিং ফাইল অ্যাক্সেস বা অন্য কোনো জরুরী পদক্ষেপসমূহ"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -765,7 +765,7 @@ EOF;
|
||||
|
||||
$addresses = $this->getAddressesForPrincipal($calendarNode->getOwner());
|
||||
foreach ($vCal->VEVENT as $vevent) {
|
||||
if (isset($vevent->ORGANIZER) && in_array($vevent->ORGANIZER->getNormalizedValue(), $addresses, true)) {
|
||||
if (in_array($vevent->ORGANIZER->getNormalizedValue(), $addresses, true)) {
|
||||
// User is an organizer => throw the exception
|
||||
throw $e;
|
||||
}
|
||||
|
||||
@@ -478,6 +478,13 @@ class CardDavBackend implements BackendInterface, SyncSupport {
|
||||
->from($this->dbCardsTable)
|
||||
->where($query->expr()->eq('addressbookid', $query->createNamedParameter($addressbookId)));
|
||||
|
||||
return $this->getCardsFromQuery($query);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array[]
|
||||
*/
|
||||
private function getCardsFromQuery(IQueryBuilder $query): array {
|
||||
$cards = [];
|
||||
|
||||
$result = $query->executeQuery();
|
||||
@@ -1532,4 +1539,32 @@ class CardDavBackend implements BackendInterface, SyncSupport {
|
||||
// should already be handled, but just in case
|
||||
throw new BadRequest('vCard can not be empty');
|
||||
}
|
||||
|
||||
/**
|
||||
* Mark all cards in an address book as needing to be validated
|
||||
*
|
||||
* This is done by setting the modified date to `null`, once a sync runs
|
||||
* the mtime will be set to a non-null value. Leaving all deleted items with
|
||||
* a null modified date.
|
||||
*/
|
||||
public function markCardsAsPending(int $addressBookId): void {
|
||||
$query = $this->db->getTypedQueryBuilder();
|
||||
$query->update($this->dbCardsTable)
|
||||
->set('lastmodified', $query->createNamedParameter(null))
|
||||
->where($query->expr()->eq('addressbookid', $query->createNamedParameter($addressBookId)))
|
||||
->executeStatement();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array[]
|
||||
*/
|
||||
public function getPendingCards(int $addressBookId): array {
|
||||
$query = $this->db->getQueryBuilder();
|
||||
$query->select(['id', 'addressbookid', 'uri', 'lastmodified', 'etag', 'size', 'carddata', 'uid'])
|
||||
->from($this->dbCardsTable)
|
||||
->where($query->expr()->eq('addressbookid', $query->createNamedParameter($addressBookId)))
|
||||
->andWhere($query->expr()->isNull('lastmodified'));
|
||||
|
||||
return $this->getCardsFromQuery($query);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -214,4 +214,15 @@ class SyncService extends ASyncService {
|
||||
public static function getCardUri(IUser $user): string {
|
||||
return $user->getBackendClassName() . ':' . $user->getUID() . '.vcf';
|
||||
}
|
||||
|
||||
public function markCardsAsPending(int $addressBookId): void {
|
||||
$this->backend->markCardsAsPending($addressBookId);
|
||||
}
|
||||
|
||||
public function deletePendingCards(int $addressBookId): void {
|
||||
$cards = $this->backend->getPendingCards($addressBookId);
|
||||
foreach ($cards as $card) {
|
||||
$this->backend->deleteCard($addressBookId, $card['uri']);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -232,7 +232,8 @@ class SystemAddressbook extends AddressBook {
|
||||
return $changed;
|
||||
}
|
||||
|
||||
$added = $modified = $deleted = [];
|
||||
$added = $modified = [];
|
||||
$deleted = array_values($changed['deleted']);
|
||||
foreach ($changed['added'] as $uri) {
|
||||
try {
|
||||
$this->getChild($uri);
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
namespace OCA\DAV\Tests\unit\CardDAV;
|
||||
|
||||
use GuzzleHttp\Exception\ClientException;
|
||||
@@ -104,7 +105,7 @@ class SyncServiceTest extends TestCase {
|
||||
'system',
|
||||
'system',
|
||||
'1234567890',
|
||||
null,
|
||||
'1',
|
||||
'1',
|
||||
'principals/system/system',
|
||||
[]
|
||||
@@ -175,7 +176,7 @@ END:VCARD';
|
||||
'system',
|
||||
'system',
|
||||
'1234567890',
|
||||
null,
|
||||
'1',
|
||||
'1',
|
||||
'principals/system/system',
|
||||
[]
|
||||
@@ -246,7 +247,7 @@ END:VCARD';
|
||||
'system',
|
||||
'system',
|
||||
'1234567890',
|
||||
null,
|
||||
'1',
|
||||
'1',
|
||||
'principals/system/system',
|
||||
[]
|
||||
@@ -287,7 +288,7 @@ END:VCARD';
|
||||
'system',
|
||||
'system',
|
||||
'1234567890',
|
||||
null,
|
||||
'1',
|
||||
'1',
|
||||
'principals/system/system',
|
||||
[]
|
||||
@@ -296,6 +297,97 @@ END:VCARD';
|
||||
$this->assertEquals('http://sabre.io/ns/sync/4', $token);
|
||||
}
|
||||
|
||||
public function testFullSyncWithOrphanElement(): void {
|
||||
$pendingCards = [];
|
||||
$this->backend->expects($this->exactly(0))
|
||||
->method('createCard');
|
||||
$this->backend->expects($this->exactly(1))
|
||||
->method('updateCard')
|
||||
->willReturnCallback(function ($id, $uri) use (&$pendingCards) {
|
||||
unset($pendingCards[$uri]);
|
||||
});
|
||||
$this->backend->expects($this->exactly(1))
|
||||
->method('markCardsAsPending')
|
||||
->willReturnCallback(function ($id) use (&$pendingCards) {
|
||||
$cards = array_values($this->backend->getCards($id));
|
||||
$uris = array_map(fn ($card) => $card['uri'], $cards);
|
||||
$pendingCards = array_combine($uris, $cards);
|
||||
});
|
||||
$this->backend->expects($this->exactly(1))
|
||||
->method('getPendingCards')
|
||||
->willReturnCallback(function ($id) use (&$pendingCards) {
|
||||
return array_values($pendingCards);
|
||||
});
|
||||
$this->backend->expects($this->exactly(1))
|
||||
->method('deleteCard');
|
||||
|
||||
$body = '<?xml version="1.0"?>
|
||||
<d:multistatus xmlns:d="DAV:" xmlns:s="http://sabredav.org/ns" xmlns:card="urn:ietf:params:xml:ns:carddav" xmlns:oc="http://owncloud.org/ns">
|
||||
<d:response>
|
||||
<d:href>/remote.php/dav/addressbooks/system/system/system/Database:alice.vcf</d:href>
|
||||
<d:propstat>
|
||||
<d:prop>
|
||||
<d:getcontenttype>text/vcard; charset=utf-8</d:getcontenttype>
|
||||
<d:getetag>"2df155fa5c2a24cd7f750353fc63f037"</d:getetag>
|
||||
</d:prop>
|
||||
<d:status>HTTP/1.1 200 OK</d:status>
|
||||
</d:propstat>
|
||||
</d:response>
|
||||
<d:sync-token>http://sabre.io/ns/sync/3</d:sync-token>
|
||||
</d:multistatus>';
|
||||
|
||||
$reportResponse = new Response(new PsrResponse(
|
||||
207,
|
||||
['Content-Type' => 'application/xml; charset=utf-8', 'Content-Length' => strlen($body)],
|
||||
$body
|
||||
));
|
||||
|
||||
$this->client
|
||||
->method('request')
|
||||
->willReturn($reportResponse);
|
||||
|
||||
$vCard = 'BEGIN:VCARD
|
||||
VERSION:3.0
|
||||
PRODID:-//Sabre//Sabre VObject 4.5.4//EN
|
||||
UID:alice
|
||||
FN;X-NC-SCOPE=v2-federated:alice
|
||||
N;X-NC-SCOPE=v2-federated:alice;;;;
|
||||
X-SOCIALPROFILE;TYPE=NEXTCLOUD;X-NC-SCOPE=v2-published:https://server2.internal/index.php/u/alice
|
||||
CLOUD:alice@server2.internal
|
||||
END:VCARD';
|
||||
|
||||
$getResponse = new Response(new PsrResponse(
|
||||
200,
|
||||
['Content-Type' => 'text/vcard; charset=utf-8', 'Content-Length' => strlen($vCard)],
|
||||
$vCard,
|
||||
));
|
||||
|
||||
$this->client
|
||||
->method('get')
|
||||
->willReturn($getResponse);
|
||||
|
||||
$this->backend->method('getCards')
|
||||
->willReturn([
|
||||
['uri' => 'Database:alice.vcf'],
|
||||
['uri' => 'Database:bob.vcf'],
|
||||
]);
|
||||
|
||||
$this->service->markCardsAsPending(1);
|
||||
$token = $this->service->syncRemoteAddressBook(
|
||||
'',
|
||||
'system',
|
||||
'system',
|
||||
'1234567890',
|
||||
null,
|
||||
'1',
|
||||
'principals/system/system',
|
||||
[]
|
||||
)[0];
|
||||
$this->service->deletePendingCards(1);
|
||||
|
||||
$this->assertEquals('http://sabre.io/ns/sync/3', $token);
|
||||
}
|
||||
|
||||
public function testEnsureSystemAddressBookExists(): void {
|
||||
/** @var CardDavBackend&MockObject $backend */
|
||||
$backend = $this->createMock(CardDavBackend::class);
|
||||
@@ -458,7 +550,7 @@ END:VCARD';
|
||||
'system',
|
||||
'remote.php/dav/addressbooks/system/system/system',
|
||||
'1234567890',
|
||||
null,
|
||||
'1',
|
||||
'1',
|
||||
'principals/system/system',
|
||||
[]
|
||||
|
||||
@@ -9,18 +9,13 @@ namespace OCA\Encryption\Users;
|
||||
|
||||
use OCA\Encryption\Crypto\Crypt;
|
||||
use OCA\Encryption\KeyManager;
|
||||
use OCP\ICache;
|
||||
use OCP\ICacheFactory;
|
||||
|
||||
class Setup {
|
||||
private readonly ICache $cache;
|
||||
|
||||
public function __construct(
|
||||
private Crypt $crypt,
|
||||
private KeyManager $keyManager,
|
||||
ICacheFactory $cacheFactory,
|
||||
) {
|
||||
$this->cache = $cacheFactory->createLocal('encryption-setup');
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -40,10 +35,7 @@ class Setup {
|
||||
* make sure that all system keys exists
|
||||
*/
|
||||
public function setupSystem() {
|
||||
if (!$this->cache->get('keys-validated')) {
|
||||
$this->keyManager->validateShareKey();
|
||||
$this->keyManager->validateMasterKey();
|
||||
$this->cache->set('keys-validated', true);
|
||||
}
|
||||
$this->keyManager->validateShareKey();
|
||||
$this->keyManager->validateMasterKey();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,7 +12,6 @@ namespace OCA\Encryption\Tests\Command;
|
||||
|
||||
use OC\Files\View;
|
||||
use OCA\Encryption\Command\FixEncryptedVersion;
|
||||
use OCA\Encryption\KeyManager;
|
||||
use OCA\Encryption\Util;
|
||||
use OCP\Encryption\IManager;
|
||||
use OCP\Files\ISetupManager;
|
||||
@@ -50,8 +49,6 @@ class FixEncryptedVersionTest extends TestCase {
|
||||
|
||||
public function setUp(): void {
|
||||
parent::setUp();
|
||||
Server::get(KeyManager::class)->validateMasterKey();
|
||||
Server::get(KeyManager::class)->validateShareKey();
|
||||
|
||||
Server::get(IAppConfig::class)->setValueBool('encryption', 'useMasterKey', true);
|
||||
|
||||
|
||||
@@ -11,7 +11,6 @@ namespace OCA\encryption\tests;
|
||||
use OC\Files\Storage\Temporary;
|
||||
use OC\Files\Storage\Wrapper\Encryption;
|
||||
use OC\Files\View;
|
||||
use OCA\Encryption\KeyManager;
|
||||
use OCP\Files\Mount\IMountManager;
|
||||
use OCP\Files\Storage\IDisableEncryptionStorage;
|
||||
use OCP\Server;
|
||||
@@ -31,8 +30,6 @@ class EncryptedStorageTest extends TestCase {
|
||||
use UserTrait;
|
||||
|
||||
public function testMoveFromEncrypted(): void {
|
||||
Server::get(KeyManager::class)->validateMasterKey();
|
||||
Server::get(KeyManager::class)->validateShareKey();
|
||||
$this->createUser('test1', 'test2');
|
||||
$this->setupForUser('test1', 'test2');
|
||||
|
||||
|
||||
@@ -12,8 +12,6 @@ namespace OCA\Encryption\Tests\Users;
|
||||
use OCA\Encryption\Crypto\Crypt;
|
||||
use OCA\Encryption\KeyManager;
|
||||
use OCA\Encryption\Users\Setup;
|
||||
use OCP\ICache;
|
||||
use OCP\ICacheFactory;
|
||||
use PHPUnit\Framework\MockObject\MockObject;
|
||||
use Test\TestCase;
|
||||
|
||||
@@ -34,16 +32,9 @@ class SetupTest extends TestCase {
|
||||
->disableOriginalConstructor()
|
||||
->getMock();
|
||||
|
||||
$cache = $this->createMock(ICache::class);
|
||||
$cacheFactory = $this->createMock(ICacheFactory::class);
|
||||
$cacheFactory->method('createLocal')
|
||||
->willReturn($cache);
|
||||
|
||||
$this->instance = new Setup(
|
||||
$this->cryptMock,
|
||||
$this->keyManagerMock,
|
||||
$cacheFactory,
|
||||
);
|
||||
$this->keyManagerMock);
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -13,6 +13,7 @@ use OCA\Federation\SyncFederationAddressBooks as SyncService;
|
||||
use Symfony\Component\Console\Command\Command;
|
||||
use Symfony\Component\Console\Helper\ProgressBar;
|
||||
use Symfony\Component\Console\Input\InputInterface;
|
||||
use Symfony\Component\Console\Input\InputOption;
|
||||
use Symfony\Component\Console\Output\OutputInterface;
|
||||
|
||||
class SyncFederationAddressBooks extends Command {
|
||||
@@ -25,19 +26,21 @@ class SyncFederationAddressBooks extends Command {
|
||||
protected function configure() {
|
||||
$this
|
||||
->setName('federation:sync-addressbooks')
|
||||
->setDescription('Synchronizes addressbooks of all federated clouds');
|
||||
->setDescription('Synchronizes addressbooks of all federated clouds')
|
||||
->addOption('full', null, InputOption::VALUE_NONE, 'Perform a full sync instead of a delta sync');
|
||||
}
|
||||
|
||||
protected function execute(InputInterface $input, OutputInterface $output): int {
|
||||
$progress = new ProgressBar($output);
|
||||
$progress->start();
|
||||
$full = (bool)$input->getOption('full');
|
||||
$this->syncService->syncThemAll(function ($url, $ex) use ($progress, $output): void {
|
||||
if ($ex instanceof \Exception) {
|
||||
$output->writeln("Error while syncing $url : " . $ex->getMessage());
|
||||
} else {
|
||||
$progress->advance();
|
||||
}
|
||||
});
|
||||
}, $full);
|
||||
|
||||
$progress->finish();
|
||||
$output->writeln('');
|
||||
|
||||
@@ -24,7 +24,7 @@ class SyncFederationAddressBooks {
|
||||
/**
|
||||
* @param \Closure $callback
|
||||
*/
|
||||
public function syncThemAll(\Closure $callback) {
|
||||
public function syncThemAll(\Closure $callback, bool $full = false) {
|
||||
$trustedServers = $this->dbHandler->getAllServer();
|
||||
foreach ($trustedServers as $trustedServer) {
|
||||
$url = $trustedServer['url'];
|
||||
@@ -49,19 +49,28 @@ class SyncFederationAddressBooks {
|
||||
try {
|
||||
$syncToken = $oldSyncToken;
|
||||
|
||||
$book = $this->syncService->ensureSystemAddressBookExists($targetPrincipal, $targetBookId, $targetBookProperties);
|
||||
if ($full) {
|
||||
$this->syncService->markCardsAsPending($book['id']);
|
||||
}
|
||||
|
||||
do {
|
||||
[$syncToken, $truncated] = $this->syncService->syncRemoteAddressBook(
|
||||
$url,
|
||||
$cardDavUser,
|
||||
$addressBookUrl,
|
||||
$sharedSecret,
|
||||
$syncToken,
|
||||
$full ? null : $syncToken,
|
||||
$targetBookId,
|
||||
$targetPrincipal,
|
||||
$targetBookProperties
|
||||
);
|
||||
} while ($truncated);
|
||||
|
||||
if ($full) {
|
||||
$this->syncService->deletePendingCards($book['id']);
|
||||
}
|
||||
|
||||
if ($syncToken !== $oldSyncToken) {
|
||||
$this->dbHandler->setServerStatus($url, TrustedServers::STATUS_OK, $syncToken);
|
||||
} else {
|
||||
|
||||
@@ -15,6 +15,8 @@ OC.L10N.register(
|
||||
"Unsatisfied authentication mechanism parameters" : "معاملات آلية المصادقة غير مكتملة",
|
||||
"Insufficient data: %s" : "البيانات غير كافية: %s",
|
||||
"Storage with ID \"%d\" is not editable by non-admins" : "وحدة التخزين ذات المُعرِّف \"%d\" لا يمكن الكتابة فيها لمن لا يملك صلاحية مدير",
|
||||
"Access key" : "مفتاح المرور",
|
||||
"Secret key" : "المفتاح السّرّي",
|
||||
"Builtin" : "مُضمّن",
|
||||
"None" : "لا شيء",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -47,6 +49,7 @@ OC.L10N.register(
|
||||
"Storage Class" : "فئة وحدة التخزين",
|
||||
"Enable SSL" : "تمكين SSL",
|
||||
"Enable Path Style" : "تمكين نمط المسار Path Style",
|
||||
"Legacy (v2) authentication" : "المصادقة القديمة (الإصدار 2) Legacy authentication",
|
||||
"Enable multipart copy" : "تمكين النسخ المُجزّأ",
|
||||
"SSE-C encryption key" : "مفتاح تشفير SSE-C",
|
||||
"WebDAV" : "WebDAV",
|
||||
@@ -139,12 +142,9 @@ OC.L10N.register(
|
||||
"Grant access" : "منح إذن بالنفاذ",
|
||||
"Error configuring OAuth2" : "خطأ في تكوين OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "مفتاح المرور",
|
||||
"Secret key" : "المفتاح السّرّي",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "مُعرِّف العميل",
|
||||
"Client secret" : "كلمة مرور العميل",
|
||||
"Legacy (v2) authentication" : "المصادقة القديمة (الإصدار 2) Legacy authentication",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "لم يتم تمكين أو تنصيب دعم cURL في PHP. لذا، سيتعذّر التثبيت mounting ـ %s. رجاءً، أطلب من مسؤول النظام تنصيبها.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "لم يتم تمكين أو تنصيب دعم FTP في PH. لذا، سيتعذّر التثبيت mounting ـ %s . رجاءً، أطلب من مسؤول النظام تنصيبها.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "\"%1$s\" لم يتمّ تنصيبها. لذا، سيتعذّر التثبيت mounting ـ %2$s. رجاءً، أطلب من مسؤول النظام تنصيبها.",
|
||||
|
||||
@@ -13,6 +13,8 @@
|
||||
"Unsatisfied authentication mechanism parameters" : "معاملات آلية المصادقة غير مكتملة",
|
||||
"Insufficient data: %s" : "البيانات غير كافية: %s",
|
||||
"Storage with ID \"%d\" is not editable by non-admins" : "وحدة التخزين ذات المُعرِّف \"%d\" لا يمكن الكتابة فيها لمن لا يملك صلاحية مدير",
|
||||
"Access key" : "مفتاح المرور",
|
||||
"Secret key" : "المفتاح السّرّي",
|
||||
"Builtin" : "مُضمّن",
|
||||
"None" : "لا شيء",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -45,6 +47,7 @@
|
||||
"Storage Class" : "فئة وحدة التخزين",
|
||||
"Enable SSL" : "تمكين SSL",
|
||||
"Enable Path Style" : "تمكين نمط المسار Path Style",
|
||||
"Legacy (v2) authentication" : "المصادقة القديمة (الإصدار 2) Legacy authentication",
|
||||
"Enable multipart copy" : "تمكين النسخ المُجزّأ",
|
||||
"SSE-C encryption key" : "مفتاح تشفير SSE-C",
|
||||
"WebDAV" : "WebDAV",
|
||||
@@ -137,12 +140,9 @@
|
||||
"Grant access" : "منح إذن بالنفاذ",
|
||||
"Error configuring OAuth2" : "خطأ في تكوين OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "مفتاح المرور",
|
||||
"Secret key" : "المفتاح السّرّي",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "مُعرِّف العميل",
|
||||
"Client secret" : "كلمة مرور العميل",
|
||||
"Legacy (v2) authentication" : "المصادقة القديمة (الإصدار 2) Legacy authentication",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "لم يتم تمكين أو تنصيب دعم cURL في PHP. لذا، سيتعذّر التثبيت mounting ـ %s. رجاءً، أطلب من مسؤول النظام تنصيبها.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "لم يتم تمكين أو تنصيب دعم FTP في PH. لذا، سيتعذّر التثبيت mounting ـ %s . رجاءً، أطلب من مسؤول النظام تنصيبها.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "\"%1$s\" لم يتمّ تنصيبها. لذا، سيتعذّر التثبيت mounting ـ %2$s. رجاءً، أطلب من مسؤول النظام تنصيبها.",
|
||||
|
||||
@@ -13,6 +13,8 @@ OC.L10N.register(
|
||||
"Unsatisfied authentication mechanism parameters" : "Hai parámetros del mecanismu d'autenticación que nun se satisfacen",
|
||||
"Insufficient data: %s" : "Nun hai abondos datos: %s",
|
||||
"Storage with ID \"%d\" is not editable by non-admins" : "Les cuentes que nun son de l'alministración nun puen editar l'almacenamientu cola ID «%d»",
|
||||
"Access key" : "Clave d'accesu",
|
||||
"Secret key" : "Clave del secretu",
|
||||
"Builtin" : "Integrada",
|
||||
"None" : "Nada",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -45,6 +47,7 @@ OC.L10N.register(
|
||||
"Storage Class" : "Clas d'almacenamientu",
|
||||
"Enable SSL" : "Activar el SSL",
|
||||
"Enable Path Style" : "Activar l'estilu de caminos",
|
||||
"Legacy (v2) authentication" : "Activar l'autenticación heredada (v2)",
|
||||
"Enable multipart copy" : "Activar la copia múltiple",
|
||||
"WebDAV" : "WebDAV",
|
||||
"URL" : "URL",
|
||||
@@ -127,12 +130,9 @@ OC.L10N.register(
|
||||
"Grant access" : "Conceder l'accesu",
|
||||
"Error configuring OAuth2" : "Hebo un error al configurar l'OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Clave d'accesu",
|
||||
"Secret key" : "Clave del secretu",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID de veceru",
|
||||
"Client secret" : "Secretu de veceru",
|
||||
"Legacy (v2) authentication" : "Activar l'autenticación heredada (v2)",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "La compatibilidá de cURL en PHP nun ta activada o instalada. Nun ye posible montar «%s», Pidi a l'alministración del sistema que la instale.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "La compatibilidá de PHP en PHP nun ta activada o instalada. Nun ye posible montar «%s», Pidi a l'alministración del sistema que la instale.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "«%1$s» nun ya instaláu. El montaxe de «%2$s» nun ye posible. Pídi-y a l'alministración del sistema que lu instale.",
|
||||
|
||||
@@ -11,6 +11,8 @@
|
||||
"Unsatisfied authentication mechanism parameters" : "Hai parámetros del mecanismu d'autenticación que nun se satisfacen",
|
||||
"Insufficient data: %s" : "Nun hai abondos datos: %s",
|
||||
"Storage with ID \"%d\" is not editable by non-admins" : "Les cuentes que nun son de l'alministración nun puen editar l'almacenamientu cola ID «%d»",
|
||||
"Access key" : "Clave d'accesu",
|
||||
"Secret key" : "Clave del secretu",
|
||||
"Builtin" : "Integrada",
|
||||
"None" : "Nada",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -43,6 +45,7 @@
|
||||
"Storage Class" : "Clas d'almacenamientu",
|
||||
"Enable SSL" : "Activar el SSL",
|
||||
"Enable Path Style" : "Activar l'estilu de caminos",
|
||||
"Legacy (v2) authentication" : "Activar l'autenticación heredada (v2)",
|
||||
"Enable multipart copy" : "Activar la copia múltiple",
|
||||
"WebDAV" : "WebDAV",
|
||||
"URL" : "URL",
|
||||
@@ -125,12 +128,9 @@
|
||||
"Grant access" : "Conceder l'accesu",
|
||||
"Error configuring OAuth2" : "Hebo un error al configurar l'OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Clave d'accesu",
|
||||
"Secret key" : "Clave del secretu",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID de veceru",
|
||||
"Client secret" : "Secretu de veceru",
|
||||
"Legacy (v2) authentication" : "Activar l'autenticación heredada (v2)",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "La compatibilidá de cURL en PHP nun ta activada o instalada. Nun ye posible montar «%s», Pidi a l'alministración del sistema que la instale.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "La compatibilidá de PHP en PHP nun ta activada o instalada. Nun ye posible montar «%s», Pidi a l'alministración del sistema que la instale.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "«%1$s» nun ya instaláu. El montaxe de «%2$s» nun ye posible. Pídi-y a l'alministración del sistema que lu instale.",
|
||||
|
||||
@@ -12,6 +12,8 @@ OC.L10N.register(
|
||||
"Unsatisfied backend parameters" : "Незадоволителни параметри на сървъра",
|
||||
"Unsatisfied authentication mechanism parameters" : "Незадоволителни параметри на механизма за удостоверяване",
|
||||
"Insufficient data: %s" : "Недостатъчни данни: %s",
|
||||
"Access key" : "Ключ за достъп",
|
||||
"Secret key" : "Секретен ключ",
|
||||
"Builtin" : "Вграден",
|
||||
"None" : "Няма",
|
||||
"OpenStack v2" : "OpenStack v2 /услуга за установяване на самоличност/",
|
||||
@@ -41,6 +43,7 @@ OC.L10N.register(
|
||||
"Storage Class" : "Клас на хранилище",
|
||||
"Enable SSL" : "Включи SSL",
|
||||
"Enable Path Style" : "Активира Стила на Пътя",
|
||||
"Legacy (v2) authentication" : "Удостоверяване на наследени (v2) данни ",
|
||||
"WebDAV" : "WebDAV",
|
||||
"URL" : "URL",
|
||||
"Remote subfolder" : "Външна подпапка",
|
||||
@@ -108,12 +111,9 @@ OC.L10N.register(
|
||||
"Grant access" : "Разреши достъпa",
|
||||
"Error configuring OAuth2" : "Грешка при конфигурирането на OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Ключ за достъп",
|
||||
"Secret key" : "Секретен ключ",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "Client ID",
|
||||
"Client secret" : "Тайна на клиент",
|
||||
"Legacy (v2) authentication" : "Удостоверяване на наследени (v2) данни ",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : " PHP подръжката на cURL не е включена или инсталирана. Монтирането на %s не е възможно. Моля да поискате системния администратор да я инсталира.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : " Поддръжката на FTP в PHP не е включена или инсталирана. Монтирането на %s не е възможно. Моля да поискате системния администратор да я инсталира.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "\"%1$s\" не е инсталиран. Прикачването на %2$sне е възможно. Моля да поискате от системния администратор да я инсталира.",
|
||||
|
||||
@@ -10,6 +10,8 @@
|
||||
"Unsatisfied backend parameters" : "Незадоволителни параметри на сървъра",
|
||||
"Unsatisfied authentication mechanism parameters" : "Незадоволителни параметри на механизма за удостоверяване",
|
||||
"Insufficient data: %s" : "Недостатъчни данни: %s",
|
||||
"Access key" : "Ключ за достъп",
|
||||
"Secret key" : "Секретен ключ",
|
||||
"Builtin" : "Вграден",
|
||||
"None" : "Няма",
|
||||
"OpenStack v2" : "OpenStack v2 /услуга за установяване на самоличност/",
|
||||
@@ -39,6 +41,7 @@
|
||||
"Storage Class" : "Клас на хранилище",
|
||||
"Enable SSL" : "Включи SSL",
|
||||
"Enable Path Style" : "Активира Стила на Пътя",
|
||||
"Legacy (v2) authentication" : "Удостоверяване на наследени (v2) данни ",
|
||||
"WebDAV" : "WebDAV",
|
||||
"URL" : "URL",
|
||||
"Remote subfolder" : "Външна подпапка",
|
||||
@@ -106,12 +109,9 @@
|
||||
"Grant access" : "Разреши достъпa",
|
||||
"Error configuring OAuth2" : "Грешка при конфигурирането на OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Ключ за достъп",
|
||||
"Secret key" : "Секретен ключ",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "Client ID",
|
||||
"Client secret" : "Тайна на клиент",
|
||||
"Legacy (v2) authentication" : "Удостоверяване на наследени (v2) данни ",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : " PHP подръжката на cURL не е включена или инсталирана. Монтирането на %s не е възможно. Моля да поискате системния администратор да я инсталира.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : " Поддръжката на FTP в PHP не е включена или инсталирана. Монтирането на %s не е възможно. Моля да поискате системния администратор да я инсталира.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "\"%1$s\" не е инсталиран. Прикачването на %2$sне е възможно. Моля да поискате от системния администратор да я инсталира.",
|
||||
|
||||
@@ -15,6 +15,8 @@ OC.L10N.register(
|
||||
"Unsatisfied authentication mechanism parameters" : "Falten paràmetres del mecanisme d'autenticació",
|
||||
"Insufficient data: %s" : "Dades insuficients: %s",
|
||||
"Storage with ID \"%d\" is not editable by non-admins" : "L'emmagatzematge amb l'ID \"%d\" no és editable per comptes no administradors",
|
||||
"Access key" : "Clau d'accés",
|
||||
"Secret key" : "Clau secreta",
|
||||
"Builtin" : "Integrat",
|
||||
"None" : "Cap",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -47,6 +49,7 @@ OC.L10N.register(
|
||||
"Storage Class" : "Classe d'emmagatzematge",
|
||||
"Enable SSL" : "Habilita l'SSL",
|
||||
"Enable Path Style" : "Habilita l'estil de camí",
|
||||
"Legacy (v2) authentication" : "Autenticació antiga (v2)",
|
||||
"Enable multipart copy" : "Habilita la còpia de diverses parts",
|
||||
"SSE-C encryption key" : "Clau de xifratge SSE-C",
|
||||
"WebDAV" : "WebDAV",
|
||||
@@ -138,12 +141,9 @@ OC.L10N.register(
|
||||
"Grant access" : "Concedeix accés",
|
||||
"Error configuring OAuth2" : "S'ha produït un error en configurar l'OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Clau d'accés",
|
||||
"Secret key" : "Clau secreta",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID del client",
|
||||
"Client secret" : "Secret del client",
|
||||
"Legacy (v2) authentication" : "Autenticació antiga (v2)",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "La compatibilitat amb cURL del PHP no està habilitada o instal·lat. No es pot muntar %s. Demaneu a l'administrador del sistema que l'instal·li.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "La compatibilitat amb FTP del PHP no està habilitada o instal·lat. No es pot muntar %s. Demaneu a l'administrador del sistema que l'instal·li.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "«%1$s» no està instal·lat. No es pot muntar %2$s. Demaneu a l'administrador del sistema que l'instal·li.",
|
||||
|
||||
@@ -13,6 +13,8 @@
|
||||
"Unsatisfied authentication mechanism parameters" : "Falten paràmetres del mecanisme d'autenticació",
|
||||
"Insufficient data: %s" : "Dades insuficients: %s",
|
||||
"Storage with ID \"%d\" is not editable by non-admins" : "L'emmagatzematge amb l'ID \"%d\" no és editable per comptes no administradors",
|
||||
"Access key" : "Clau d'accés",
|
||||
"Secret key" : "Clau secreta",
|
||||
"Builtin" : "Integrat",
|
||||
"None" : "Cap",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -45,6 +47,7 @@
|
||||
"Storage Class" : "Classe d'emmagatzematge",
|
||||
"Enable SSL" : "Habilita l'SSL",
|
||||
"Enable Path Style" : "Habilita l'estil de camí",
|
||||
"Legacy (v2) authentication" : "Autenticació antiga (v2)",
|
||||
"Enable multipart copy" : "Habilita la còpia de diverses parts",
|
||||
"SSE-C encryption key" : "Clau de xifratge SSE-C",
|
||||
"WebDAV" : "WebDAV",
|
||||
@@ -136,12 +139,9 @@
|
||||
"Grant access" : "Concedeix accés",
|
||||
"Error configuring OAuth2" : "S'ha produït un error en configurar l'OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Clau d'accés",
|
||||
"Secret key" : "Clau secreta",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID del client",
|
||||
"Client secret" : "Secret del client",
|
||||
"Legacy (v2) authentication" : "Autenticació antiga (v2)",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "La compatibilitat amb cURL del PHP no està habilitada o instal·lat. No es pot muntar %s. Demaneu a l'administrador del sistema que l'instal·li.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "La compatibilitat amb FTP del PHP no està habilitada o instal·lat. No es pot muntar %s. Demaneu a l'administrador del sistema que l'instal·li.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "«%1$s» no està instal·lat. No es pot muntar %2$s. Demaneu a l'administrador del sistema que l'instal·li.",
|
||||
|
||||
@@ -15,6 +15,8 @@ OC.L10N.register(
|
||||
"Unsatisfied authentication mechanism parameters" : "Nesplněny parametry ověřovacího mechanismu",
|
||||
"Insufficient data: %s" : "Nedostatečná data: %s",
|
||||
"Storage with ID \"%d\" is not editable by non-admins" : "Úložiště s identifikátorem „%d“ není uživatelsky upravitelné",
|
||||
"Access key" : "Přístupový klíč",
|
||||
"Secret key" : "Tajný klíč",
|
||||
"Builtin" : "Vestavěné",
|
||||
"None" : "Žádné",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -48,6 +50,7 @@ OC.L10N.register(
|
||||
"Storage Class" : "Třída úložiště",
|
||||
"Enable SSL" : "Šifrovat přenos (SSL)",
|
||||
"Enable Path Style" : "Povolit Path Style",
|
||||
"Legacy (v2) authentication" : "Starší (v2) ověřování",
|
||||
"Enable multipart copy" : "Povolit kopii o více částech",
|
||||
"Use presigned S3 url" : "Použít předem podepsanou S3 url",
|
||||
"SSE-C encryption key" : "klíč šifrování SSE-C",
|
||||
@@ -168,12 +171,9 @@ OC.L10N.register(
|
||||
"Grant access" : "Udělit přístup",
|
||||
"Error configuring OAuth2" : "Chyba při nastavování OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Přístupový klíč",
|
||||
"Secret key" : "Tajný klíč",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "Identif. klienta",
|
||||
"Client secret" : "Klientské tajemství",
|
||||
"Legacy (v2) authentication" : "Starší (v2) ověřování",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Podpora pro cURL není v rámci instalace PHP na vámi využívaném Nextcloud serveru zapnutá či přítomná. %s proto není možné připojit. Požádejte tamního správce systému o nápravu.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Podpora pro FTP není v rámci instalace PHP na vámi využívaném Nextcloud serveru zapnutá či přítomná. %s proto není možné připojit. Požádejte tamního správce systému o nápravu.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "„%1$s“ není nainstalované. Připojení %2$s proto není možné. Požádejte svého správce systémů o instalaci.",
|
||||
|
||||
@@ -13,6 +13,8 @@
|
||||
"Unsatisfied authentication mechanism parameters" : "Nesplněny parametry ověřovacího mechanismu",
|
||||
"Insufficient data: %s" : "Nedostatečná data: %s",
|
||||
"Storage with ID \"%d\" is not editable by non-admins" : "Úložiště s identifikátorem „%d“ není uživatelsky upravitelné",
|
||||
"Access key" : "Přístupový klíč",
|
||||
"Secret key" : "Tajný klíč",
|
||||
"Builtin" : "Vestavěné",
|
||||
"None" : "Žádné",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -46,6 +48,7 @@
|
||||
"Storage Class" : "Třída úložiště",
|
||||
"Enable SSL" : "Šifrovat přenos (SSL)",
|
||||
"Enable Path Style" : "Povolit Path Style",
|
||||
"Legacy (v2) authentication" : "Starší (v2) ověřování",
|
||||
"Enable multipart copy" : "Povolit kopii o více částech",
|
||||
"Use presigned S3 url" : "Použít předem podepsanou S3 url",
|
||||
"SSE-C encryption key" : "klíč šifrování SSE-C",
|
||||
@@ -166,12 +169,9 @@
|
||||
"Grant access" : "Udělit přístup",
|
||||
"Error configuring OAuth2" : "Chyba při nastavování OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Přístupový klíč",
|
||||
"Secret key" : "Tajný klíč",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "Identif. klienta",
|
||||
"Client secret" : "Klientské tajemství",
|
||||
"Legacy (v2) authentication" : "Starší (v2) ověřování",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Podpora pro cURL není v rámci instalace PHP na vámi využívaném Nextcloud serveru zapnutá či přítomná. %s proto není možné připojit. Požádejte tamního správce systému o nápravu.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Podpora pro FTP není v rámci instalace PHP na vámi využívaném Nextcloud serveru zapnutá či přítomná. %s proto není možné připojit. Požádejte tamního správce systému o nápravu.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "„%1$s“ není nainstalované. Připojení %2$s proto není možné. Požádejte svého správce systémů o instalaci.",
|
||||
|
||||
@@ -15,6 +15,8 @@ OC.L10N.register(
|
||||
"Unsatisfied authentication mechanism parameters" : "Utilfredsstillede parametre for godkendelsesmekanisme",
|
||||
"Insufficient data: %s" : "Utilstrækkelige data: %s",
|
||||
"Storage with ID \"%d\" is not editable by non-admins" : "Lager med ID \"%d\" kan ikke redigeres af ikke-administratorer",
|
||||
"Access key" : "Adgangsnøgle",
|
||||
"Secret key" : "Hemmelig nøgle",
|
||||
"Builtin" : "Indbygget",
|
||||
"None" : "Ingen",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -47,6 +49,7 @@ OC.L10N.register(
|
||||
"Storage Class" : "Lagringsklassificering",
|
||||
"Enable SSL" : "Aktiver SSL",
|
||||
"Enable Path Style" : "Aktiver stil for sti",
|
||||
"Legacy (v2) authentication" : "Ældre (v2) godkendelse",
|
||||
"Enable multipart copy" : "Aktiver flerdelt kopi",
|
||||
"SSE-C encryption key" : "SSE-C krypteringsnøgle",
|
||||
"WebDAV" : "WebDAV",
|
||||
@@ -140,12 +143,9 @@ OC.L10N.register(
|
||||
"Grant access" : "Godkend adgang",
|
||||
"Error configuring OAuth2" : "Fejl under konfiguration af OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Adgangsnøgle",
|
||||
"Secret key" : "Hemmelig nøgle",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "Klient-ID",
|
||||
"Client secret" : "Klient hemmelighed",
|
||||
"Legacy (v2) authentication" : "Ældre (v2) godkendelse",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "cURL-understøttelsen i PHP er enten ikke aktiveret eller installeret. Monteringen af %s er ikke mulig. Anmod din systemadministrator om at installere det.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "FTP understøttelsen i PHP er enten ikke aktiveret eller installeret. Montering af %s er ikke muligt. Anmod din systemadministrator om at installere det.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "\"%1$s\" er ikke installeret. Tilslutning af %2$s er ikke muligt. Bed din systemadministrator om at installere det.",
|
||||
|
||||
@@ -13,6 +13,8 @@
|
||||
"Unsatisfied authentication mechanism parameters" : "Utilfredsstillede parametre for godkendelsesmekanisme",
|
||||
"Insufficient data: %s" : "Utilstrækkelige data: %s",
|
||||
"Storage with ID \"%d\" is not editable by non-admins" : "Lager med ID \"%d\" kan ikke redigeres af ikke-administratorer",
|
||||
"Access key" : "Adgangsnøgle",
|
||||
"Secret key" : "Hemmelig nøgle",
|
||||
"Builtin" : "Indbygget",
|
||||
"None" : "Ingen",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -45,6 +47,7 @@
|
||||
"Storage Class" : "Lagringsklassificering",
|
||||
"Enable SSL" : "Aktiver SSL",
|
||||
"Enable Path Style" : "Aktiver stil for sti",
|
||||
"Legacy (v2) authentication" : "Ældre (v2) godkendelse",
|
||||
"Enable multipart copy" : "Aktiver flerdelt kopi",
|
||||
"SSE-C encryption key" : "SSE-C krypteringsnøgle",
|
||||
"WebDAV" : "WebDAV",
|
||||
@@ -138,12 +141,9 @@
|
||||
"Grant access" : "Godkend adgang",
|
||||
"Error configuring OAuth2" : "Fejl under konfiguration af OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Adgangsnøgle",
|
||||
"Secret key" : "Hemmelig nøgle",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "Klient-ID",
|
||||
"Client secret" : "Klient hemmelighed",
|
||||
"Legacy (v2) authentication" : "Ældre (v2) godkendelse",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "cURL-understøttelsen i PHP er enten ikke aktiveret eller installeret. Monteringen af %s er ikke mulig. Anmod din systemadministrator om at installere det.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "FTP understøttelsen i PHP er enten ikke aktiveret eller installeret. Montering af %s er ikke muligt. Anmod din systemadministrator om at installere det.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "\"%1$s\" er ikke installeret. Tilslutning af %2$s er ikke muligt. Bed din systemadministrator om at installere det.",
|
||||
|
||||
@@ -15,6 +15,8 @@ OC.L10N.register(
|
||||
"Unsatisfied authentication mechanism parameters" : "Unbefriedigende Authentifizierungsmechanismus-Parameter",
|
||||
"Insufficient data: %s" : "Unzureichende Daten: %s",
|
||||
"Storage with ID \"%d\" is not editable by non-admins" : "Speicher mit der ID \"%d\" kann nur von der Administration bearbeitet werden.",
|
||||
"Access key" : "Zugangsschlüssel",
|
||||
"Secret key" : "Geheimer Schlüssel",
|
||||
"Builtin" : "Eingebaut",
|
||||
"None" : "Keine",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -48,6 +50,7 @@ OC.L10N.register(
|
||||
"Storage Class" : "Speicherklasse",
|
||||
"Enable SSL" : "SSL aktivieren",
|
||||
"Enable Path Style" : "Pfad-Stil aktivieren",
|
||||
"Legacy (v2) authentication" : "Legacy-Authentifizierung (V2)",
|
||||
"Enable multipart copy" : "Multipart-Kopieren aktivieren",
|
||||
"Use presigned S3 url" : "Vorsignierte S3-URL verwenden",
|
||||
"SSE-C encryption key" : "SSE-C-Schlüssel",
|
||||
@@ -168,12 +171,9 @@ OC.L10N.register(
|
||||
"Grant access" : "Zugriff gewähren",
|
||||
"Error configuring OAuth2" : "Fehler beim Konfigurieren von OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Zugangsschlüssel",
|
||||
"Secret key" : "Geheimer Schlüssel",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "Client-ID",
|
||||
"Client secret" : "Geheime Zeichenkette des Clients",
|
||||
"Legacy (v2) authentication" : "Legacy-Authentifizierung (V2)",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Die cURL-Unterstützung von PHP ist deaktiviert oder nicht installiert. Das Hinzufügen von %s ist nicht möglich. Bitte zur Installation an die Systemadministration wenden.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Die FTP-Unterstützung von PHP ist deaktiviert oder nicht installiert. Das Hinzufügen von %s ist nicht möglich. Bitte zur Installation an die Systemadministration wenden.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "\"%1$s\" ist nicht installiert. Das Hinzufügen von %2$s ist nicht möglich. Bitte zur Installation an die Systemadministration wenden.",
|
||||
|
||||
@@ -13,6 +13,8 @@
|
||||
"Unsatisfied authentication mechanism parameters" : "Unbefriedigende Authentifizierungsmechanismus-Parameter",
|
||||
"Insufficient data: %s" : "Unzureichende Daten: %s",
|
||||
"Storage with ID \"%d\" is not editable by non-admins" : "Speicher mit der ID \"%d\" kann nur von der Administration bearbeitet werden.",
|
||||
"Access key" : "Zugangsschlüssel",
|
||||
"Secret key" : "Geheimer Schlüssel",
|
||||
"Builtin" : "Eingebaut",
|
||||
"None" : "Keine",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -46,6 +48,7 @@
|
||||
"Storage Class" : "Speicherklasse",
|
||||
"Enable SSL" : "SSL aktivieren",
|
||||
"Enable Path Style" : "Pfad-Stil aktivieren",
|
||||
"Legacy (v2) authentication" : "Legacy-Authentifizierung (V2)",
|
||||
"Enable multipart copy" : "Multipart-Kopieren aktivieren",
|
||||
"Use presigned S3 url" : "Vorsignierte S3-URL verwenden",
|
||||
"SSE-C encryption key" : "SSE-C-Schlüssel",
|
||||
@@ -166,12 +169,9 @@
|
||||
"Grant access" : "Zugriff gewähren",
|
||||
"Error configuring OAuth2" : "Fehler beim Konfigurieren von OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Zugangsschlüssel",
|
||||
"Secret key" : "Geheimer Schlüssel",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "Client-ID",
|
||||
"Client secret" : "Geheime Zeichenkette des Clients",
|
||||
"Legacy (v2) authentication" : "Legacy-Authentifizierung (V2)",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Die cURL-Unterstützung von PHP ist deaktiviert oder nicht installiert. Das Hinzufügen von %s ist nicht möglich. Bitte zur Installation an die Systemadministration wenden.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Die FTP-Unterstützung von PHP ist deaktiviert oder nicht installiert. Das Hinzufügen von %s ist nicht möglich. Bitte zur Installation an die Systemadministration wenden.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "\"%1$s\" ist nicht installiert. Das Hinzufügen von %2$s ist nicht möglich. Bitte zur Installation an die Systemadministration wenden.",
|
||||
|
||||
@@ -15,6 +15,8 @@ OC.L10N.register(
|
||||
"Unsatisfied authentication mechanism parameters" : "Unbefriedigende Authentifizierungsmechanismus-Parameter",
|
||||
"Insufficient data: %s" : "Unzureichende Daten: %s",
|
||||
"Storage with ID \"%d\" is not editable by non-admins" : "Speicher mit der ID \"%d\" kann nur von der Administration bearbeitet werden.",
|
||||
"Access key" : "Zugangsschlüssel",
|
||||
"Secret key" : "Geheimer Schlüssel",
|
||||
"Builtin" : "Eingebaut",
|
||||
"None" : "Keine",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -48,6 +50,7 @@ OC.L10N.register(
|
||||
"Storage Class" : "Speicherklasse",
|
||||
"Enable SSL" : "SSL aktivieren",
|
||||
"Enable Path Style" : "Pfadstil aktivieren",
|
||||
"Legacy (v2) authentication" : "Legacy-Authentifizierung (V2)",
|
||||
"Enable multipart copy" : "Multipart-Kopieren aktivieren",
|
||||
"Use presigned S3 url" : "Vorsignierte S3-URL verwenden",
|
||||
"SSE-C encryption key" : "SSE-C-Schlüssel",
|
||||
@@ -168,12 +171,9 @@ OC.L10N.register(
|
||||
"Grant access" : "Zugriff gestatten",
|
||||
"Error configuring OAuth2" : "Fehler beim Konfigurieren von OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Zugangsschlüssel",
|
||||
"Secret key" : "Geheimer Schlüssel",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "Client-ID",
|
||||
"Client secret" : "Geheime Zeichenkette des Clients",
|
||||
"Legacy (v2) authentication" : "Legacy-Authentifizierung (V2)",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Die cURL-Unterstützung von PHP ist nicht aktiviert oder installiert. Das Hinzufügen von %s ist nicht möglich. Bitte wenden Sie sich bezüglich Aktivierung oder Installation an Ihre Administration.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Die FTP-Unterstützung von PHP ist deaktiviert oder nicht installiert. Das Hinzufügen von %s ist nicht möglich. Bitte wenden Sie sich bezüglich Aktivierung oder Installation an Ihre Administration.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "\"%1$s\" ist nicht installiert. Das Hinzufügen von %2$s ist nicht möglich. Bitte wenden Sie sich zur Installation an Ihre Administration.",
|
||||
|
||||
@@ -13,6 +13,8 @@
|
||||
"Unsatisfied authentication mechanism parameters" : "Unbefriedigende Authentifizierungsmechanismus-Parameter",
|
||||
"Insufficient data: %s" : "Unzureichende Daten: %s",
|
||||
"Storage with ID \"%d\" is not editable by non-admins" : "Speicher mit der ID \"%d\" kann nur von der Administration bearbeitet werden.",
|
||||
"Access key" : "Zugangsschlüssel",
|
||||
"Secret key" : "Geheimer Schlüssel",
|
||||
"Builtin" : "Eingebaut",
|
||||
"None" : "Keine",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -46,6 +48,7 @@
|
||||
"Storage Class" : "Speicherklasse",
|
||||
"Enable SSL" : "SSL aktivieren",
|
||||
"Enable Path Style" : "Pfadstil aktivieren",
|
||||
"Legacy (v2) authentication" : "Legacy-Authentifizierung (V2)",
|
||||
"Enable multipart copy" : "Multipart-Kopieren aktivieren",
|
||||
"Use presigned S3 url" : "Vorsignierte S3-URL verwenden",
|
||||
"SSE-C encryption key" : "SSE-C-Schlüssel",
|
||||
@@ -166,12 +169,9 @@
|
||||
"Grant access" : "Zugriff gestatten",
|
||||
"Error configuring OAuth2" : "Fehler beim Konfigurieren von OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Zugangsschlüssel",
|
||||
"Secret key" : "Geheimer Schlüssel",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "Client-ID",
|
||||
"Client secret" : "Geheime Zeichenkette des Clients",
|
||||
"Legacy (v2) authentication" : "Legacy-Authentifizierung (V2)",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Die cURL-Unterstützung von PHP ist nicht aktiviert oder installiert. Das Hinzufügen von %s ist nicht möglich. Bitte wenden Sie sich bezüglich Aktivierung oder Installation an Ihre Administration.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Die FTP-Unterstützung von PHP ist deaktiviert oder nicht installiert. Das Hinzufügen von %s ist nicht möglich. Bitte wenden Sie sich bezüglich Aktivierung oder Installation an Ihre Administration.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "\"%1$s\" ist nicht installiert. Das Hinzufügen von %2$s ist nicht möglich. Bitte wenden Sie sich zur Installation an Ihre Administration.",
|
||||
|
||||
@@ -15,6 +15,8 @@ OC.L10N.register(
|
||||
"Unsatisfied authentication mechanism parameters" : "Ελλιπείς παράμετροι μηχανισμού πιστοποίησης",
|
||||
"Insufficient data: %s" : "Μη επαρκή δεδομένα: %s",
|
||||
"Storage with ID \"%d\" is not editable by non-admins" : "Η αποθήκευση με αναγνωριστικό \"%d\" δεν μπορεί να τροποποιηθεί από μη διαχειριστές",
|
||||
"Access key" : "Κλειδί πρόσβασης",
|
||||
"Secret key" : "Μυστικό κλειδί",
|
||||
"Builtin" : "Builtin",
|
||||
"None" : "Τίποτα",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -48,6 +50,7 @@ OC.L10N.register(
|
||||
"Storage Class" : "Κλάση αποθήκευσης",
|
||||
"Enable SSL" : "Ενεργοποίηση SSL",
|
||||
"Enable Path Style" : "Ενεργοποίηση μορφής διαδρομής",
|
||||
"Legacy (v2) authentication" : "Πιστοποίηση παλαιού τύπου (v2)",
|
||||
"Enable multipart copy" : "Ενεργοποίηση αντιγραφής πολλαπλών τμημάτων",
|
||||
"Use presigned S3 url" : "Χρήση προ-υπογεγραμμένου S3 url",
|
||||
"SSE-C encryption key" : "Κλειδί κρυπτογράφησης SSE-C",
|
||||
@@ -168,12 +171,9 @@ OC.L10N.register(
|
||||
"Grant access" : "Παροχή πρόσβασης",
|
||||
"Error configuring OAuth2" : "Σφάλμα ρύθμισης του OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Κλειδί πρόσβασης",
|
||||
"Secret key" : "Μυστικό κλειδί",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID πελάτη",
|
||||
"Client secret" : "Μυστικό πελάτη",
|
||||
"Legacy (v2) authentication" : "Πιστοποίηση παλαιού τύπου (v2)",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Η cURL υποστήριξη στην PHP δεν είναι ενεργοποιημένη. Η προσάρτηση του %s δεν είναι δυνατή. Παρακαλούμε ζητήστε από τον διαχειριστή του συστήματός σας να το εγκαταστήσει. ",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Η FTP υποστήριξη στην PHP δεν είναι ενεργοποιημένη ή εγκατεστημένη. Η προσάρτηση του %s δεν είναι δυνατή. Παρακαλούμε ζητήστε τον διαχειριστή του συστήματός σας να το εγκατασταστήσει. ",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "Το \"%1$s\" δεν είναι εγκατεστημένο. Η προσάρτηση του %2$s δεν είναι δυνατή. Παρακαλώ ζητήστε τον διαχειριστή του συστήματός να το εγκαταστήσει. ",
|
||||
|
||||
@@ -13,6 +13,8 @@
|
||||
"Unsatisfied authentication mechanism parameters" : "Ελλιπείς παράμετροι μηχανισμού πιστοποίησης",
|
||||
"Insufficient data: %s" : "Μη επαρκή δεδομένα: %s",
|
||||
"Storage with ID \"%d\" is not editable by non-admins" : "Η αποθήκευση με αναγνωριστικό \"%d\" δεν μπορεί να τροποποιηθεί από μη διαχειριστές",
|
||||
"Access key" : "Κλειδί πρόσβασης",
|
||||
"Secret key" : "Μυστικό κλειδί",
|
||||
"Builtin" : "Builtin",
|
||||
"None" : "Τίποτα",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -46,6 +48,7 @@
|
||||
"Storage Class" : "Κλάση αποθήκευσης",
|
||||
"Enable SSL" : "Ενεργοποίηση SSL",
|
||||
"Enable Path Style" : "Ενεργοποίηση μορφής διαδρομής",
|
||||
"Legacy (v2) authentication" : "Πιστοποίηση παλαιού τύπου (v2)",
|
||||
"Enable multipart copy" : "Ενεργοποίηση αντιγραφής πολλαπλών τμημάτων",
|
||||
"Use presigned S3 url" : "Χρήση προ-υπογεγραμμένου S3 url",
|
||||
"SSE-C encryption key" : "Κλειδί κρυπτογράφησης SSE-C",
|
||||
@@ -166,12 +169,9 @@
|
||||
"Grant access" : "Παροχή πρόσβασης",
|
||||
"Error configuring OAuth2" : "Σφάλμα ρύθμισης του OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Κλειδί πρόσβασης",
|
||||
"Secret key" : "Μυστικό κλειδί",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID πελάτη",
|
||||
"Client secret" : "Μυστικό πελάτη",
|
||||
"Legacy (v2) authentication" : "Πιστοποίηση παλαιού τύπου (v2)",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Η cURL υποστήριξη στην PHP δεν είναι ενεργοποιημένη. Η προσάρτηση του %s δεν είναι δυνατή. Παρακαλούμε ζητήστε από τον διαχειριστή του συστήματός σας να το εγκαταστήσει. ",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Η FTP υποστήριξη στην PHP δεν είναι ενεργοποιημένη ή εγκατεστημένη. Η προσάρτηση του %s δεν είναι δυνατή. Παρακαλούμε ζητήστε τον διαχειριστή του συστήματός σας να το εγκατασταστήσει. ",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "Το \"%1$s\" δεν είναι εγκατεστημένο. Η προσάρτηση του %2$s δεν είναι δυνατή. Παρακαλώ ζητήστε τον διαχειριστή του συστήματός να το εγκαταστήσει. ",
|
||||
|
||||
@@ -15,6 +15,8 @@ OC.L10N.register(
|
||||
"Unsatisfied authentication mechanism parameters" : "Unsatisfied authentication mechanism parameters",
|
||||
"Insufficient data: %s" : "Insufficient data: %s",
|
||||
"Storage with ID \"%d\" is not editable by non-admins" : "Storage with ID \"%d\" is not editable by non-admins",
|
||||
"Access key" : "Access key",
|
||||
"Secret key" : "Secret key",
|
||||
"Builtin" : "Builtin",
|
||||
"None" : "None",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -48,6 +50,7 @@ OC.L10N.register(
|
||||
"Storage Class" : "Storage Class",
|
||||
"Enable SSL" : "Enable SSL",
|
||||
"Enable Path Style" : "Enable Path Style",
|
||||
"Legacy (v2) authentication" : "Legacy (v2) authentication",
|
||||
"Enable multipart copy" : "Enable multipart copy",
|
||||
"Use presigned S3 url" : "Use presigned S3 url",
|
||||
"SSE-C encryption key" : "SSE-C encryption key",
|
||||
@@ -168,12 +171,9 @@ OC.L10N.register(
|
||||
"Grant access" : "Grant access",
|
||||
"Error configuring OAuth2" : "Error configuring OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Access key",
|
||||
"Secret key" : "Secret key",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "Client ID",
|
||||
"Client secret" : "Client secret",
|
||||
"Legacy (v2) authentication" : "Legacy (v2) authentication",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it.",
|
||||
|
||||
@@ -13,6 +13,8 @@
|
||||
"Unsatisfied authentication mechanism parameters" : "Unsatisfied authentication mechanism parameters",
|
||||
"Insufficient data: %s" : "Insufficient data: %s",
|
||||
"Storage with ID \"%d\" is not editable by non-admins" : "Storage with ID \"%d\" is not editable by non-admins",
|
||||
"Access key" : "Access key",
|
||||
"Secret key" : "Secret key",
|
||||
"Builtin" : "Builtin",
|
||||
"None" : "None",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -46,6 +48,7 @@
|
||||
"Storage Class" : "Storage Class",
|
||||
"Enable SSL" : "Enable SSL",
|
||||
"Enable Path Style" : "Enable Path Style",
|
||||
"Legacy (v2) authentication" : "Legacy (v2) authentication",
|
||||
"Enable multipart copy" : "Enable multipart copy",
|
||||
"Use presigned S3 url" : "Use presigned S3 url",
|
||||
"SSE-C encryption key" : "SSE-C encryption key",
|
||||
@@ -166,12 +169,9 @@
|
||||
"Grant access" : "Grant access",
|
||||
"Error configuring OAuth2" : "Error configuring OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Access key",
|
||||
"Secret key" : "Secret key",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "Client ID",
|
||||
"Client secret" : "Client secret",
|
||||
"Legacy (v2) authentication" : "Legacy (v2) authentication",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it.",
|
||||
|
||||
@@ -11,6 +11,8 @@ OC.L10N.register(
|
||||
"Unsatisfied backend parameters" : "Neplenumitaj internservaj parametroj",
|
||||
"Unsatisfied authentication mechanism parameters" : "Neplenumitaj aŭtentigmetodaj parametroj",
|
||||
"Insufficient data: %s" : "Nesufiĉaj datumoj: %s",
|
||||
"Access key" : "Alira ŝlosilo",
|
||||
"Secret key" : "Sekreta ŝlosilo",
|
||||
"Builtin" : "Interne instalita",
|
||||
"None" : "Nenio",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -36,6 +38,7 @@ OC.L10N.register(
|
||||
"Region" : "Regiono",
|
||||
"Enable SSL" : "Ŝalti SSL-on",
|
||||
"Enable Path Style" : "Uzi vojan stilon („path style“ angle)",
|
||||
"Legacy (v2) authentication" : "Aŭtentigo per malnova v2",
|
||||
"WebDAV" : "WebDAV",
|
||||
"URL" : "Retadreso",
|
||||
"Remote subfolder" : "Fora subdosierujo",
|
||||
@@ -90,12 +93,9 @@ OC.L10N.register(
|
||||
"Grant access" : "Doni alirpermeson",
|
||||
"Error configuring OAuth2" : "Eraro dum agordo de OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Alira ŝlosilo",
|
||||
"Secret key" : "Sekreta ŝlosilo",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "Klientidentigilo",
|
||||
"Client secret" : "Klientosekreto",
|
||||
"Legacy (v2) authentication" : "Aŭtentigo per malnova v2",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Subteno de cURL en PHP ne estas ebligita aŭ instalita. Surmetado de %s ne eblas. Bv. vidi kun via administranto.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Subteno de FTP en PHP ne estas ebligita aŭ instalita. Surmetado de %s ne eblas. Bv. vidi kun via administranto.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "„%1$s“ ne estas instalita. Surmetado de %2$s ne eblas. Bv. vidi kun via administranto.",
|
||||
|
||||
@@ -9,6 +9,8 @@
|
||||
"Unsatisfied backend parameters" : "Neplenumitaj internservaj parametroj",
|
||||
"Unsatisfied authentication mechanism parameters" : "Neplenumitaj aŭtentigmetodaj parametroj",
|
||||
"Insufficient data: %s" : "Nesufiĉaj datumoj: %s",
|
||||
"Access key" : "Alira ŝlosilo",
|
||||
"Secret key" : "Sekreta ŝlosilo",
|
||||
"Builtin" : "Interne instalita",
|
||||
"None" : "Nenio",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -34,6 +36,7 @@
|
||||
"Region" : "Regiono",
|
||||
"Enable SSL" : "Ŝalti SSL-on",
|
||||
"Enable Path Style" : "Uzi vojan stilon („path style“ angle)",
|
||||
"Legacy (v2) authentication" : "Aŭtentigo per malnova v2",
|
||||
"WebDAV" : "WebDAV",
|
||||
"URL" : "Retadreso",
|
||||
"Remote subfolder" : "Fora subdosierujo",
|
||||
@@ -88,12 +91,9 @@
|
||||
"Grant access" : "Doni alirpermeson",
|
||||
"Error configuring OAuth2" : "Eraro dum agordo de OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Alira ŝlosilo",
|
||||
"Secret key" : "Sekreta ŝlosilo",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "Klientidentigilo",
|
||||
"Client secret" : "Klientosekreto",
|
||||
"Legacy (v2) authentication" : "Aŭtentigo per malnova v2",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Subteno de cURL en PHP ne estas ebligita aŭ instalita. Surmetado de %s ne eblas. Bv. vidi kun via administranto.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Subteno de FTP en PHP ne estas ebligita aŭ instalita. Surmetado de %s ne eblas. Bv. vidi kun via administranto.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "„%1$s“ ne estas instalita. Surmetado de %2$s ne eblas. Bv. vidi kun via administranto.",
|
||||
|
||||
@@ -15,6 +15,8 @@ OC.L10N.register(
|
||||
"Unsatisfied authentication mechanism parameters" : "Los parámetros del mecanismo de autentificación no son válidos",
|
||||
"Insufficient data: %s" : "Datos insuficientes: %s",
|
||||
"Storage with ID \"%d\" is not editable by non-admins" : "Os non administradores non poden editar o almacenamento co ID \"%d\".",
|
||||
"Access key" : "Clave de acceso",
|
||||
"Secret key" : "Clave secreta",
|
||||
"Builtin" : "Incorporado",
|
||||
"None" : "Ninguno",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -48,6 +50,7 @@ OC.L10N.register(
|
||||
"Storage Class" : "Clase de almacenamiento",
|
||||
"Enable SSL" : "Habilitar SSL",
|
||||
"Enable Path Style" : "Habilitar Estilo de Ruta",
|
||||
"Legacy (v2) authentication" : "Autenticación heredada (v2)",
|
||||
"Enable multipart copy" : "Activa a copia multiparte",
|
||||
"Use presigned S3 url" : "Utilice la URL S3 pre-firmada",
|
||||
"SSE-C encryption key" : "Llave de cifrado SSE-C",
|
||||
@@ -168,12 +171,9 @@ OC.L10N.register(
|
||||
"Grant access" : "Conceder acceso",
|
||||
"Error configuring OAuth2" : "Error al configurar OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Clave de acceso",
|
||||
"Secret key" : "Clave secreta",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID de Cliente",
|
||||
"Client secret" : "Cliente secreto",
|
||||
"Legacy (v2) authentication" : "Autenticación heredada (v2)",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte de cURL en PHP no está activado o instalado. No se puede montar %s. Pídale al administrador del sistema que lo instale.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP desde PHP no esta habilitado o instalado. Montar el %s no ha sido posible. Por favor consulta al administrador de tu sistema para que lo instale.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "\"%1$s\" No está installado. El montaje de %2$s no es posible. Por favor, pide a tu administrador del sistema que lo instale.",
|
||||
|
||||
@@ -13,6 +13,8 @@
|
||||
"Unsatisfied authentication mechanism parameters" : "Los parámetros del mecanismo de autentificación no son válidos",
|
||||
"Insufficient data: %s" : "Datos insuficientes: %s",
|
||||
"Storage with ID \"%d\" is not editable by non-admins" : "Os non administradores non poden editar o almacenamento co ID \"%d\".",
|
||||
"Access key" : "Clave de acceso",
|
||||
"Secret key" : "Clave secreta",
|
||||
"Builtin" : "Incorporado",
|
||||
"None" : "Ninguno",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -46,6 +48,7 @@
|
||||
"Storage Class" : "Clase de almacenamiento",
|
||||
"Enable SSL" : "Habilitar SSL",
|
||||
"Enable Path Style" : "Habilitar Estilo de Ruta",
|
||||
"Legacy (v2) authentication" : "Autenticación heredada (v2)",
|
||||
"Enable multipart copy" : "Activa a copia multiparte",
|
||||
"Use presigned S3 url" : "Utilice la URL S3 pre-firmada",
|
||||
"SSE-C encryption key" : "Llave de cifrado SSE-C",
|
||||
@@ -166,12 +169,9 @@
|
||||
"Grant access" : "Conceder acceso",
|
||||
"Error configuring OAuth2" : "Error al configurar OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Clave de acceso",
|
||||
"Secret key" : "Clave secreta",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID de Cliente",
|
||||
"Client secret" : "Cliente secreto",
|
||||
"Legacy (v2) authentication" : "Autenticación heredada (v2)",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte de cURL en PHP no está activado o instalado. No se puede montar %s. Pídale al administrador del sistema que lo instale.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP desde PHP no esta habilitado o instalado. Montar el %s no ha sido posible. Por favor consulta al administrador de tu sistema para que lo instale.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "\"%1$s\" No está installado. El montaje de %2$s no es posible. Por favor, pide a tu administrador del sistema que lo instale.",
|
||||
|
||||
@@ -11,6 +11,8 @@ OC.L10N.register(
|
||||
"Unsatisfied backend parameters" : "Parametros del backend no satisfechos",
|
||||
"Unsatisfied authentication mechanism parameters" : "Parámetros no satisfechos del mecanismo de autenticación",
|
||||
"Insufficient data: %s" : "Datos insuficientes: %s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"Builtin" : "Integrado",
|
||||
"None" : "Ninguno",
|
||||
"Login" : "Iniciar sesión",
|
||||
@@ -86,8 +88,6 @@ OC.L10N.register(
|
||||
"Grant access" : "Conceder acceso",
|
||||
"Error configuring OAuth2" : "Se presentó un error al configurar OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID del cliente",
|
||||
"Client secret" : "Secreto del cliente",
|
||||
|
||||
@@ -9,6 +9,8 @@
|
||||
"Unsatisfied backend parameters" : "Parametros del backend no satisfechos",
|
||||
"Unsatisfied authentication mechanism parameters" : "Parámetros no satisfechos del mecanismo de autenticación",
|
||||
"Insufficient data: %s" : "Datos insuficientes: %s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"Builtin" : "Integrado",
|
||||
"None" : "Ninguno",
|
||||
"Login" : "Iniciar sesión",
|
||||
@@ -84,8 +86,6 @@
|
||||
"Grant access" : "Conceder acceso",
|
||||
"Error configuring OAuth2" : "Se presentó un error al configurar OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID del cliente",
|
||||
"Client secret" : "Secreto del cliente",
|
||||
|
||||
@@ -0,0 +1,105 @@
|
||||
OC.L10N.register(
|
||||
"files_external",
|
||||
{
|
||||
"Storage with ID \"%d\" not found" : "El almacenamiento con ID \"%d\" no fue encontrado",
|
||||
"Invalid backend or authentication mechanism class" : "Backend o clase de mecanismo de autenticación inválido ",
|
||||
"Invalid mount point" : "Punto de montaje inválido",
|
||||
"Objectstore forbidden" : "Objectstore prohibido",
|
||||
"Invalid storage backend \"%s\"" : "Almacenamiento de backend \"%s\" inválido ",
|
||||
"Not permitted to use backend \"%s\"" : "No está permitido usar el backend \"%s\"",
|
||||
"Not permitted to use authentication mechanism \"%s\"" : "No está permitido el uso del mecanismo de autenticación \"%s\"",
|
||||
"Unsatisfied backend parameters" : "Parametros del backend no satisfechos",
|
||||
"Unsatisfied authentication mechanism parameters" : "Parametros no satisfechos del mecanismo de autenticación",
|
||||
"Insufficient data: %s" : "Datos insuficientes: %s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"Builtin" : "Integrado",
|
||||
"None" : "Ninguno",
|
||||
"Login" : "Inicio de sesión",
|
||||
"Password" : "Contraseña",
|
||||
"Tenant name" : "¡No se encontraron archivos en su búsqueda que hayan sido modificados\n\n en los últimos 7 días! ",
|
||||
"Identity endpoint URL" : "URL del punto de enlace de Identidad",
|
||||
"Domain" : "Dominio",
|
||||
"Rackspace" : "Rackspace",
|
||||
"API key" : "Llave de API",
|
||||
"Global credentials" : "Credenciales globales",
|
||||
"Log-in credentials, save in database" : "Credenciales de inicio de sesión, guardar en la base de datos",
|
||||
"Log-in credentials, save in session" : "Credenciales de inicio de sesión, guardar en la sesión",
|
||||
"RSA public key" : "Llave pública RSA",
|
||||
"Public key" : "Llave pública",
|
||||
"Bucket" : "Bucket",
|
||||
"Hostname" : "Nombre del servidor",
|
||||
"Port" : "Puerto",
|
||||
"Proxy" : "Proxy",
|
||||
"Region" : "Región",
|
||||
"Enable SSL" : "Habilitar SSL",
|
||||
"Enable Path Style" : "Habilitar Estilo de Ruta",
|
||||
"WebDAV" : "WebDAV",
|
||||
"URL" : "URL",
|
||||
"Remote subfolder" : "Subcarpeta remota",
|
||||
"Secure https://" : "https:// seguro",
|
||||
"FTP" : "FTP",
|
||||
"Host" : "Servidor",
|
||||
"Secure ftps://" : "ftps:// seguro",
|
||||
"Local" : "Local",
|
||||
"Location" : "Ubicación",
|
||||
"Nextcloud" : "Nextcloud",
|
||||
"SFTP" : "SFTP",
|
||||
"Root" : "Raíz",
|
||||
"SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta",
|
||||
"Share" : "Compartir",
|
||||
"Show hidden files" : "Mostrar archivos ocultos",
|
||||
"OpenStack Object Storage" : "OpenStack Object Storage",
|
||||
"Service name" : "Nombre del servicio",
|
||||
"Request timeout (seconds)" : "Tiemo de vida de la solicitud (segundos)",
|
||||
"External storage" : "Almacenamiento externo",
|
||||
"External storage support" : "Soporte de almacenamiento externo",
|
||||
"Add storage" : "Agregar almacenamiento",
|
||||
"Folder name" : "Nombre de la carpeta",
|
||||
"Authentication" : "Autenticación",
|
||||
"Cancel" : "Cancel",
|
||||
"Edit" : "Editar",
|
||||
"Never" : "Nunca",
|
||||
"Once every direct access" : "Una vez cada acceso directo",
|
||||
"Read only" : "Solo lectura",
|
||||
"Enable previews" : "Habilitar vistas previas",
|
||||
"Enable sharing" : "Habilitar compartir",
|
||||
"Enable encryption" : "Habilitar encripción",
|
||||
"Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)",
|
||||
"External storages" : "Almacenamiento externo",
|
||||
"Actions" : "Acciones",
|
||||
"Delete" : "Eliminar",
|
||||
"Saved" : "Guardado",
|
||||
"Error generating key pair" : "Se presentó un error al generar el juego de llaves",
|
||||
"Key size" : "Tamaño de la llave",
|
||||
"Generate keys" : "Generar llaves",
|
||||
"Confirm" : "Confirmar",
|
||||
"Save" : "Guardar",
|
||||
"External mount error" : "Error de montaje externo",
|
||||
"Open settings" : "Abrir opciones",
|
||||
"Ignore" : "Ignorar",
|
||||
"Storage type" : "Tipo de almacenamiento",
|
||||
"Unknown" : "Desconocido",
|
||||
"Scope" : "Alcance",
|
||||
"Personal" : "Personal",
|
||||
"System" : "Sistema",
|
||||
"Connected" : "Conectado",
|
||||
"Error" : "Error",
|
||||
"Network error" : "Error en la red",
|
||||
"Grant access" : "Conceder acceso",
|
||||
"Error configuring OAuth2" : "Se presentó un error al configurar OAuth2",
|
||||
"%s" : "%s",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID del cliente",
|
||||
"Client secret" : "Secreto del cliente",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Favor de solicitar a su administador su instalación. ",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Favor de solicitar a su administador su instalación. ",
|
||||
"Check for changes" : "Verificar si hay cambios",
|
||||
"Disconnect" : "Desconectar",
|
||||
"Admin defined" : "Administrador definido",
|
||||
"Open documentation" : "Abrir documentación",
|
||||
"Configuration" : "Configuración",
|
||||
"Available for" : "Disponible para",
|
||||
"Advanced settings" : "Configuraciones avanzadas"
|
||||
},
|
||||
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||
@@ -0,0 +1,103 @@
|
||||
{ "translations": {
|
||||
"Storage with ID \"%d\" not found" : "El almacenamiento con ID \"%d\" no fue encontrado",
|
||||
"Invalid backend or authentication mechanism class" : "Backend o clase de mecanismo de autenticación inválido ",
|
||||
"Invalid mount point" : "Punto de montaje inválido",
|
||||
"Objectstore forbidden" : "Objectstore prohibido",
|
||||
"Invalid storage backend \"%s\"" : "Almacenamiento de backend \"%s\" inválido ",
|
||||
"Not permitted to use backend \"%s\"" : "No está permitido usar el backend \"%s\"",
|
||||
"Not permitted to use authentication mechanism \"%s\"" : "No está permitido el uso del mecanismo de autenticación \"%s\"",
|
||||
"Unsatisfied backend parameters" : "Parametros del backend no satisfechos",
|
||||
"Unsatisfied authentication mechanism parameters" : "Parametros no satisfechos del mecanismo de autenticación",
|
||||
"Insufficient data: %s" : "Datos insuficientes: %s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"Builtin" : "Integrado",
|
||||
"None" : "Ninguno",
|
||||
"Login" : "Inicio de sesión",
|
||||
"Password" : "Contraseña",
|
||||
"Tenant name" : "¡No se encontraron archivos en su búsqueda que hayan sido modificados\n\n en los últimos 7 días! ",
|
||||
"Identity endpoint URL" : "URL del punto de enlace de Identidad",
|
||||
"Domain" : "Dominio",
|
||||
"Rackspace" : "Rackspace",
|
||||
"API key" : "Llave de API",
|
||||
"Global credentials" : "Credenciales globales",
|
||||
"Log-in credentials, save in database" : "Credenciales de inicio de sesión, guardar en la base de datos",
|
||||
"Log-in credentials, save in session" : "Credenciales de inicio de sesión, guardar en la sesión",
|
||||
"RSA public key" : "Llave pública RSA",
|
||||
"Public key" : "Llave pública",
|
||||
"Bucket" : "Bucket",
|
||||
"Hostname" : "Nombre del servidor",
|
||||
"Port" : "Puerto",
|
||||
"Proxy" : "Proxy",
|
||||
"Region" : "Región",
|
||||
"Enable SSL" : "Habilitar SSL",
|
||||
"Enable Path Style" : "Habilitar Estilo de Ruta",
|
||||
"WebDAV" : "WebDAV",
|
||||
"URL" : "URL",
|
||||
"Remote subfolder" : "Subcarpeta remota",
|
||||
"Secure https://" : "https:// seguro",
|
||||
"FTP" : "FTP",
|
||||
"Host" : "Servidor",
|
||||
"Secure ftps://" : "ftps:// seguro",
|
||||
"Local" : "Local",
|
||||
"Location" : "Ubicación",
|
||||
"Nextcloud" : "Nextcloud",
|
||||
"SFTP" : "SFTP",
|
||||
"Root" : "Raíz",
|
||||
"SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta",
|
||||
"Share" : "Compartir",
|
||||
"Show hidden files" : "Mostrar archivos ocultos",
|
||||
"OpenStack Object Storage" : "OpenStack Object Storage",
|
||||
"Service name" : "Nombre del servicio",
|
||||
"Request timeout (seconds)" : "Tiemo de vida de la solicitud (segundos)",
|
||||
"External storage" : "Almacenamiento externo",
|
||||
"External storage support" : "Soporte de almacenamiento externo",
|
||||
"Add storage" : "Agregar almacenamiento",
|
||||
"Folder name" : "Nombre de la carpeta",
|
||||
"Authentication" : "Autenticación",
|
||||
"Cancel" : "Cancel",
|
||||
"Edit" : "Editar",
|
||||
"Never" : "Nunca",
|
||||
"Once every direct access" : "Una vez cada acceso directo",
|
||||
"Read only" : "Solo lectura",
|
||||
"Enable previews" : "Habilitar vistas previas",
|
||||
"Enable sharing" : "Habilitar compartir",
|
||||
"Enable encryption" : "Habilitar encripción",
|
||||
"Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)",
|
||||
"External storages" : "Almacenamiento externo",
|
||||
"Actions" : "Acciones",
|
||||
"Delete" : "Eliminar",
|
||||
"Saved" : "Guardado",
|
||||
"Error generating key pair" : "Se presentó un error al generar el juego de llaves",
|
||||
"Key size" : "Tamaño de la llave",
|
||||
"Generate keys" : "Generar llaves",
|
||||
"Confirm" : "Confirmar",
|
||||
"Save" : "Guardar",
|
||||
"External mount error" : "Error de montaje externo",
|
||||
"Open settings" : "Abrir opciones",
|
||||
"Ignore" : "Ignorar",
|
||||
"Storage type" : "Tipo de almacenamiento",
|
||||
"Unknown" : "Desconocido",
|
||||
"Scope" : "Alcance",
|
||||
"Personal" : "Personal",
|
||||
"System" : "Sistema",
|
||||
"Connected" : "Conectado",
|
||||
"Error" : "Error",
|
||||
"Network error" : "Error en la red",
|
||||
"Grant access" : "Conceder acceso",
|
||||
"Error configuring OAuth2" : "Se presentó un error al configurar OAuth2",
|
||||
"%s" : "%s",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID del cliente",
|
||||
"Client secret" : "Secreto del cliente",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Favor de solicitar a su administador su instalación. ",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Favor de solicitar a su administador su instalación. ",
|
||||
"Check for changes" : "Verificar si hay cambios",
|
||||
"Disconnect" : "Desconectar",
|
||||
"Admin defined" : "Administrador definido",
|
||||
"Open documentation" : "Abrir documentación",
|
||||
"Configuration" : "Configuración",
|
||||
"Available for" : "Disponible para",
|
||||
"Advanced settings" : "Configuraciones avanzadas"
|
||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||
}
|
||||
@@ -11,6 +11,8 @@ OC.L10N.register(
|
||||
"Unsatisfied backend parameters" : "Parametros del backend no satisfechos",
|
||||
"Unsatisfied authentication mechanism parameters" : "Parámetros no satisfechos del mecanismo de autenticación",
|
||||
"Insufficient data: %s" : "Datos insuficientes: %s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"Builtin" : "Integrado",
|
||||
"None" : "Ninguno",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -34,6 +36,7 @@ OC.L10N.register(
|
||||
"Region" : "Región",
|
||||
"Enable SSL" : "Habilitar SSL",
|
||||
"Enable Path Style" : "Habilitar Estilo de Ruta",
|
||||
"Legacy (v2) authentication" : "Autenticación legada (v2)",
|
||||
"WebDAV" : "WebDAV",
|
||||
"URL" : "URL",
|
||||
"Remote subfolder" : "Subcarpeta remota",
|
||||
@@ -89,12 +92,9 @@ OC.L10N.register(
|
||||
"Grant access" : "Conceder acceso",
|
||||
"Error configuring OAuth2" : "Se presentó un error al configurar OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID del cliente",
|
||||
"Client secret" : "Secreto del cliente",
|
||||
"Legacy (v2) authentication" : "Autenticación legada (v2)",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"Check for changes" : "Verificar si hay cambios",
|
||||
|
||||
@@ -9,6 +9,8 @@
|
||||
"Unsatisfied backend parameters" : "Parametros del backend no satisfechos",
|
||||
"Unsatisfied authentication mechanism parameters" : "Parámetros no satisfechos del mecanismo de autenticación",
|
||||
"Insufficient data: %s" : "Datos insuficientes: %s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"Builtin" : "Integrado",
|
||||
"None" : "Ninguno",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -32,6 +34,7 @@
|
||||
"Region" : "Región",
|
||||
"Enable SSL" : "Habilitar SSL",
|
||||
"Enable Path Style" : "Habilitar Estilo de Ruta",
|
||||
"Legacy (v2) authentication" : "Autenticación legada (v2)",
|
||||
"WebDAV" : "WebDAV",
|
||||
"URL" : "URL",
|
||||
"Remote subfolder" : "Subcarpeta remota",
|
||||
@@ -87,12 +90,9 @@
|
||||
"Grant access" : "Conceder acceso",
|
||||
"Error configuring OAuth2" : "Se presentó un error al configurar OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID del cliente",
|
||||
"Client secret" : "Secreto del cliente",
|
||||
"Legacy (v2) authentication" : "Autenticación legada (v2)",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"Check for changes" : "Verificar si hay cambios",
|
||||
|
||||
@@ -11,6 +11,8 @@ OC.L10N.register(
|
||||
"Unsatisfied backend parameters" : "Parametros del backend no satisfechos",
|
||||
"Unsatisfied authentication mechanism parameters" : "Parámetros no satisfechos del mecanismo de autenticación",
|
||||
"Insufficient data: %s" : "Datos insuficientes: %s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"Builtin" : "Integrado",
|
||||
"None" : "Ninguno",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -34,6 +36,7 @@ OC.L10N.register(
|
||||
"Region" : "Región",
|
||||
"Enable SSL" : "Habilitar SSL",
|
||||
"Enable Path Style" : "Habilitar Estilo de Ruta",
|
||||
"Legacy (v2) authentication" : "Autenticación legada (v2)",
|
||||
"WebDAV" : "WebDAV",
|
||||
"URL" : "URL",
|
||||
"Remote subfolder" : "Subcarpeta remota",
|
||||
@@ -88,12 +91,9 @@ OC.L10N.register(
|
||||
"Grant access" : "Conceder acceso",
|
||||
"Error configuring OAuth2" : "Se presentó un error al configurar OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID del cliente",
|
||||
"Client secret" : "Secreto del cliente",
|
||||
"Legacy (v2) authentication" : "Autenticación legada (v2)",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"Check for changes" : "Verificar si hay cambios",
|
||||
|
||||
@@ -9,6 +9,8 @@
|
||||
"Unsatisfied backend parameters" : "Parametros del backend no satisfechos",
|
||||
"Unsatisfied authentication mechanism parameters" : "Parámetros no satisfechos del mecanismo de autenticación",
|
||||
"Insufficient data: %s" : "Datos insuficientes: %s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"Builtin" : "Integrado",
|
||||
"None" : "Ninguno",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -32,6 +34,7 @@
|
||||
"Region" : "Región",
|
||||
"Enable SSL" : "Habilitar SSL",
|
||||
"Enable Path Style" : "Habilitar Estilo de Ruta",
|
||||
"Legacy (v2) authentication" : "Autenticación legada (v2)",
|
||||
"WebDAV" : "WebDAV",
|
||||
"URL" : "URL",
|
||||
"Remote subfolder" : "Subcarpeta remota",
|
||||
@@ -86,12 +89,9 @@
|
||||
"Grant access" : "Conceder acceso",
|
||||
"Error configuring OAuth2" : "Se presentó un error al configurar OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID del cliente",
|
||||
"Client secret" : "Secreto del cliente",
|
||||
"Legacy (v2) authentication" : "Autenticación legada (v2)",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"Check for changes" : "Verificar si hay cambios",
|
||||
|
||||
@@ -11,6 +11,8 @@ OC.L10N.register(
|
||||
"Unsatisfied backend parameters" : "Parametros del backend no satisfechos",
|
||||
"Unsatisfied authentication mechanism parameters" : "Parámetros no satisfechos del mecanismo de autenticación",
|
||||
"Insufficient data: %s" : "Datos insuficientes: %s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"Builtin" : "Integrado",
|
||||
"None" : "Ninguno",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -34,6 +36,7 @@ OC.L10N.register(
|
||||
"Region" : "Región",
|
||||
"Enable SSL" : "Habilitar SSL",
|
||||
"Enable Path Style" : "Habilitar Estilo de Ruta",
|
||||
"Legacy (v2) authentication" : "Autenticación legada (v2)",
|
||||
"WebDAV" : "WebDAV",
|
||||
"URL" : "URL",
|
||||
"Remote subfolder" : "Subcarpeta remota",
|
||||
@@ -89,12 +92,9 @@ OC.L10N.register(
|
||||
"Grant access" : "Conceder acceso",
|
||||
"Error configuring OAuth2" : "Se presentó un error al configurar OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID del cliente",
|
||||
"Client secret" : "Secreto del cliente",
|
||||
"Legacy (v2) authentication" : "Autenticación legada (v2)",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"Check for changes" : "Verificar si hay cambios",
|
||||
|
||||
@@ -9,6 +9,8 @@
|
||||
"Unsatisfied backend parameters" : "Parametros del backend no satisfechos",
|
||||
"Unsatisfied authentication mechanism parameters" : "Parámetros no satisfechos del mecanismo de autenticación",
|
||||
"Insufficient data: %s" : "Datos insuficientes: %s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"Builtin" : "Integrado",
|
||||
"None" : "Ninguno",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -32,6 +34,7 @@
|
||||
"Region" : "Región",
|
||||
"Enable SSL" : "Habilitar SSL",
|
||||
"Enable Path Style" : "Habilitar Estilo de Ruta",
|
||||
"Legacy (v2) authentication" : "Autenticación legada (v2)",
|
||||
"WebDAV" : "WebDAV",
|
||||
"URL" : "URL",
|
||||
"Remote subfolder" : "Subcarpeta remota",
|
||||
@@ -87,12 +90,9 @@
|
||||
"Grant access" : "Conceder acceso",
|
||||
"Error configuring OAuth2" : "Se presentó un error al configurar OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID del cliente",
|
||||
"Client secret" : "Secreto del cliente",
|
||||
"Legacy (v2) authentication" : "Autenticación legada (v2)",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"Check for changes" : "Verificar si hay cambios",
|
||||
|
||||
@@ -11,6 +11,8 @@ OC.L10N.register(
|
||||
"Unsatisfied backend parameters" : "Parametros del backend no satisfechos",
|
||||
"Unsatisfied authentication mechanism parameters" : "Parámetros no satisfechos del mecanismo de autenticación",
|
||||
"Insufficient data: %s" : "Datos insuficientes: %s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"Builtin" : "Integrado",
|
||||
"None" : "Ninguno",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -34,6 +36,7 @@ OC.L10N.register(
|
||||
"Region" : "Región",
|
||||
"Enable SSL" : "Habilitar SSL",
|
||||
"Enable Path Style" : "Habilitar Estilo de Ruta",
|
||||
"Legacy (v2) authentication" : "Autenticación legada (v2)",
|
||||
"WebDAV" : "WebDAV",
|
||||
"URL" : "URL",
|
||||
"Remote subfolder" : "Subcarpeta remota",
|
||||
@@ -89,12 +92,9 @@ OC.L10N.register(
|
||||
"Grant access" : "Conceder acceso",
|
||||
"Error configuring OAuth2" : "Se presentó un error al configurar OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID del cliente",
|
||||
"Client secret" : "Secreto del cliente",
|
||||
"Legacy (v2) authentication" : "Autenticación legada (v2)",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"Check for changes" : "Verificar si hay cambios",
|
||||
|
||||
@@ -9,6 +9,8 @@
|
||||
"Unsatisfied backend parameters" : "Parametros del backend no satisfechos",
|
||||
"Unsatisfied authentication mechanism parameters" : "Parámetros no satisfechos del mecanismo de autenticación",
|
||||
"Insufficient data: %s" : "Datos insuficientes: %s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"Builtin" : "Integrado",
|
||||
"None" : "Ninguno",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -32,6 +34,7 @@
|
||||
"Region" : "Región",
|
||||
"Enable SSL" : "Habilitar SSL",
|
||||
"Enable Path Style" : "Habilitar Estilo de Ruta",
|
||||
"Legacy (v2) authentication" : "Autenticación legada (v2)",
|
||||
"WebDAV" : "WebDAV",
|
||||
"URL" : "URL",
|
||||
"Remote subfolder" : "Subcarpeta remota",
|
||||
@@ -87,12 +90,9 @@
|
||||
"Grant access" : "Conceder acceso",
|
||||
"Error configuring OAuth2" : "Se presentó un error al configurar OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID del cliente",
|
||||
"Client secret" : "Secreto del cliente",
|
||||
"Legacy (v2) authentication" : "Autenticación legada (v2)",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"Check for changes" : "Verificar si hay cambios",
|
||||
|
||||
@@ -12,6 +12,8 @@ OC.L10N.register(
|
||||
"Unsatisfied backend parameters" : "Parametros del backend no satisfechos",
|
||||
"Unsatisfied authentication mechanism parameters" : "Parámetros no satisfechos del mecanismo de autenticación",
|
||||
"Insufficient data: %s" : "Datos insuficientes: %s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"Builtin" : "Integrado",
|
||||
"None" : "Ninguno",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -41,6 +43,7 @@ OC.L10N.register(
|
||||
"Storage Class" : "Clase de almacenamiento",
|
||||
"Enable SSL" : "Habilitar SSL",
|
||||
"Enable Path Style" : "Habilitar Estilo de Ruta",
|
||||
"Legacy (v2) authentication" : "Autenticación legada (v2)",
|
||||
"WebDAV" : "WebDAV",
|
||||
"URL" : "URL",
|
||||
"Remote subfolder" : "Subcarpeta remota",
|
||||
@@ -107,12 +110,9 @@ OC.L10N.register(
|
||||
"Grant access" : "Conceder acceso",
|
||||
"Error configuring OAuth2" : "Se presentó un error al configurar OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID del cliente",
|
||||
"Client secret" : "Secreto del cliente",
|
||||
"Legacy (v2) authentication" : "Autenticación legada (v2)",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "No está instalado \"%1$s\". No es posible montar %2$s. Por favor, pide a tu administrador de sistema que lo instale.",
|
||||
|
||||
@@ -10,6 +10,8 @@
|
||||
"Unsatisfied backend parameters" : "Parametros del backend no satisfechos",
|
||||
"Unsatisfied authentication mechanism parameters" : "Parámetros no satisfechos del mecanismo de autenticación",
|
||||
"Insufficient data: %s" : "Datos insuficientes: %s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"Builtin" : "Integrado",
|
||||
"None" : "Ninguno",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -39,6 +41,7 @@
|
||||
"Storage Class" : "Clase de almacenamiento",
|
||||
"Enable SSL" : "Habilitar SSL",
|
||||
"Enable Path Style" : "Habilitar Estilo de Ruta",
|
||||
"Legacy (v2) authentication" : "Autenticación legada (v2)",
|
||||
"WebDAV" : "WebDAV",
|
||||
"URL" : "URL",
|
||||
"Remote subfolder" : "Subcarpeta remota",
|
||||
@@ -105,12 +108,9 @@
|
||||
"Grant access" : "Conceder acceso",
|
||||
"Error configuring OAuth2" : "Se presentó un error al configurar OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID del cliente",
|
||||
"Client secret" : "Secreto del cliente",
|
||||
"Legacy (v2) authentication" : "Autenticación legada (v2)",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "No está instalado \"%1$s\". No es posible montar %2$s. Por favor, pide a tu administrador de sistema que lo instale.",
|
||||
|
||||
@@ -11,6 +11,8 @@ OC.L10N.register(
|
||||
"Unsatisfied backend parameters" : "Parametros del backend no satisfechos",
|
||||
"Unsatisfied authentication mechanism parameters" : "Parámetros no satisfechos del mecanismo de autenticación",
|
||||
"Insufficient data: %s" : "Datos insuficientes: %s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"Builtin" : "Integrado",
|
||||
"None" : "Ninguno",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -34,6 +36,7 @@ OC.L10N.register(
|
||||
"Region" : "Región",
|
||||
"Enable SSL" : "Habilitar SSL",
|
||||
"Enable Path Style" : "Habilitar Estilo de Ruta",
|
||||
"Legacy (v2) authentication" : "Autenticación legada (v2)",
|
||||
"WebDAV" : "WebDAV",
|
||||
"URL" : "URL",
|
||||
"Remote subfolder" : "Subcarpeta remota",
|
||||
@@ -89,12 +92,9 @@ OC.L10N.register(
|
||||
"Grant access" : "Conceder acceso",
|
||||
"Error configuring OAuth2" : "Se presentó un error al configurar OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID del cliente",
|
||||
"Client secret" : "Secreto del cliente",
|
||||
"Legacy (v2) authentication" : "Autenticación legada (v2)",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"Check for changes" : "Verificar si hay cambios",
|
||||
|
||||
@@ -9,6 +9,8 @@
|
||||
"Unsatisfied backend parameters" : "Parametros del backend no satisfechos",
|
||||
"Unsatisfied authentication mechanism parameters" : "Parámetros no satisfechos del mecanismo de autenticación",
|
||||
"Insufficient data: %s" : "Datos insuficientes: %s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"Builtin" : "Integrado",
|
||||
"None" : "Ninguno",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -32,6 +34,7 @@
|
||||
"Region" : "Región",
|
||||
"Enable SSL" : "Habilitar SSL",
|
||||
"Enable Path Style" : "Habilitar Estilo de Ruta",
|
||||
"Legacy (v2) authentication" : "Autenticación legada (v2)",
|
||||
"WebDAV" : "WebDAV",
|
||||
"URL" : "URL",
|
||||
"Remote subfolder" : "Subcarpeta remota",
|
||||
@@ -87,12 +90,9 @@
|
||||
"Grant access" : "Conceder acceso",
|
||||
"Error configuring OAuth2" : "Se presentó un error al configurar OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID del cliente",
|
||||
"Client secret" : "Secreto del cliente",
|
||||
"Legacy (v2) authentication" : "Autenticación legada (v2)",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"Check for changes" : "Verificar si hay cambios",
|
||||
|
||||
@@ -0,0 +1,105 @@
|
||||
OC.L10N.register(
|
||||
"files_external",
|
||||
{
|
||||
"Storage with ID \"%d\" not found" : "El almacenamiento con ID \"%d\" no fue encontrado",
|
||||
"Invalid backend or authentication mechanism class" : "Backend o clase de mecanismo de autenticación inválido ",
|
||||
"Invalid mount point" : "Punto de montaje inválido",
|
||||
"Objectstore forbidden" : "Objectstore prohibido",
|
||||
"Invalid storage backend \"%s\"" : "Almacenamiento de backend \"%s\" inválido ",
|
||||
"Not permitted to use backend \"%s\"" : "No está permitido usar el backend \"%s\"",
|
||||
"Not permitted to use authentication mechanism \"%s\"" : "No está permitido el uso del mecanismo de autenticación \"%s\"",
|
||||
"Unsatisfied backend parameters" : "Parametros del backend no satisfechos",
|
||||
"Unsatisfied authentication mechanism parameters" : "Parámetros no satisfechos del mecanismo de autenticación",
|
||||
"Insufficient data: %s" : "Datos insuficientes: %s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"Builtin" : "Integrado",
|
||||
"None" : "Ninguno",
|
||||
"Login" : "Iniciar sesión",
|
||||
"Password" : "Contraseña",
|
||||
"Tenant name" : "Nombre de inquilino",
|
||||
"Identity endpoint URL" : "URL del punto de enlace de Identidad",
|
||||
"Domain" : "Dominio",
|
||||
"Rackspace" : "Rackspace",
|
||||
"API key" : "Llave de API",
|
||||
"Global credentials" : "Credenciales globales",
|
||||
"Log-in credentials, save in database" : "Credenciales de inicio de sesión, guardar en la base de datos",
|
||||
"Log-in credentials, save in session" : "Credenciales de inicio de sesión, guardar en la sesión",
|
||||
"RSA public key" : "Llave pública RSA",
|
||||
"Public key" : "Llave pública",
|
||||
"Bucket" : "Bucket",
|
||||
"Hostname" : "Nombre del servidor",
|
||||
"Port" : "Puerto",
|
||||
"Proxy" : "Proxy",
|
||||
"Region" : "Región",
|
||||
"Enable SSL" : "Habilitar SSL",
|
||||
"Enable Path Style" : "Habilitar Estilo de Ruta",
|
||||
"WebDAV" : "WebDAV",
|
||||
"URL" : "URL",
|
||||
"Remote subfolder" : "Subcarpeta remota",
|
||||
"Secure https://" : "https:// seguro",
|
||||
"FTP" : "FTP",
|
||||
"Host" : "Servidor",
|
||||
"Secure ftps://" : "ftps:// seguro",
|
||||
"Local" : "Local",
|
||||
"Location" : "Ubicación",
|
||||
"Nextcloud" : "Nextcloud",
|
||||
"SFTP" : "SFTP",
|
||||
"Root" : "Raíz",
|
||||
"SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta",
|
||||
"Share" : "Compartir",
|
||||
"Show hidden files" : "Mostrar archivos ocultos",
|
||||
"OpenStack Object Storage" : "OpenStack Object Storage",
|
||||
"Service name" : "Nombre del servicio",
|
||||
"Request timeout (seconds)" : "Tiemo de vida de la solicitud (segundos)",
|
||||
"External storage" : "Almacenamiento externo",
|
||||
"Add storage" : "Agregar almacenamiento",
|
||||
"Folder name" : "Nombre de la carpeta",
|
||||
"Authentication" : "Autenticación",
|
||||
"Cancel" : "Cancel",
|
||||
"Edit" : "Editar",
|
||||
"Never" : "Nunca",
|
||||
"Once every direct access" : "Una vez cada acceso directo",
|
||||
"Read only" : "Sólo lectura",
|
||||
"Enable previews" : "Habilitar vistas previas",
|
||||
"Enable sharing" : "Habilitar compartir",
|
||||
"Enable encryption" : "Habilitar encripción",
|
||||
"Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)",
|
||||
"External storages" : "Almacenamiento externo",
|
||||
"Actions" : "Acciones",
|
||||
"Delete" : "Borrar",
|
||||
"Saved" : "Guardado",
|
||||
"Error generating key pair" : "Se presentó un error al generar el juego de llaves",
|
||||
"Key size" : "Tamaño de la llave",
|
||||
"Generate keys" : "Generar llaves",
|
||||
"Confirm" : "Confirmar",
|
||||
"Save" : "Guardar",
|
||||
"External mount error" : "Error de montaje externo",
|
||||
"Open settings" : "Abrir configuraciones",
|
||||
"Ignore" : "Ignorar",
|
||||
"Storage type" : "Tipo de almacenamiento",
|
||||
"Unknown" : "Desconocido",
|
||||
"Scope" : "Alcance",
|
||||
"Personal" : "Personal",
|
||||
"System" : "Sistema",
|
||||
"Connected" : "Conectado",
|
||||
"Error" : "Error",
|
||||
"Network error" : "Error en la red",
|
||||
"Grant access" : "Conceder acceso",
|
||||
"Error configuring OAuth2" : "Se presentó un error al configurar OAuth2",
|
||||
"%s" : "%s",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID del cliente",
|
||||
"Client secret" : "Secreto del cliente",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"Check for changes" : "Verificar si hay cambios",
|
||||
"Disconnect" : "Desconectar",
|
||||
"Admin defined" : "Administrador definido",
|
||||
"Delete storage?" : "¿Borrar almacenamiento?",
|
||||
"Open documentation" : "Abrir la documentación",
|
||||
"Configuration" : "Configuración",
|
||||
"Available for" : "Disponible para",
|
||||
"Advanced settings" : "Configuraciones avanzadas"
|
||||
},
|
||||
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||
@@ -0,0 +1,103 @@
|
||||
{ "translations": {
|
||||
"Storage with ID \"%d\" not found" : "El almacenamiento con ID \"%d\" no fue encontrado",
|
||||
"Invalid backend or authentication mechanism class" : "Backend o clase de mecanismo de autenticación inválido ",
|
||||
"Invalid mount point" : "Punto de montaje inválido",
|
||||
"Objectstore forbidden" : "Objectstore prohibido",
|
||||
"Invalid storage backend \"%s\"" : "Almacenamiento de backend \"%s\" inválido ",
|
||||
"Not permitted to use backend \"%s\"" : "No está permitido usar el backend \"%s\"",
|
||||
"Not permitted to use authentication mechanism \"%s\"" : "No está permitido el uso del mecanismo de autenticación \"%s\"",
|
||||
"Unsatisfied backend parameters" : "Parametros del backend no satisfechos",
|
||||
"Unsatisfied authentication mechanism parameters" : "Parámetros no satisfechos del mecanismo de autenticación",
|
||||
"Insufficient data: %s" : "Datos insuficientes: %s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"Builtin" : "Integrado",
|
||||
"None" : "Ninguno",
|
||||
"Login" : "Iniciar sesión",
|
||||
"Password" : "Contraseña",
|
||||
"Tenant name" : "Nombre de inquilino",
|
||||
"Identity endpoint URL" : "URL del punto de enlace de Identidad",
|
||||
"Domain" : "Dominio",
|
||||
"Rackspace" : "Rackspace",
|
||||
"API key" : "Llave de API",
|
||||
"Global credentials" : "Credenciales globales",
|
||||
"Log-in credentials, save in database" : "Credenciales de inicio de sesión, guardar en la base de datos",
|
||||
"Log-in credentials, save in session" : "Credenciales de inicio de sesión, guardar en la sesión",
|
||||
"RSA public key" : "Llave pública RSA",
|
||||
"Public key" : "Llave pública",
|
||||
"Bucket" : "Bucket",
|
||||
"Hostname" : "Nombre del servidor",
|
||||
"Port" : "Puerto",
|
||||
"Proxy" : "Proxy",
|
||||
"Region" : "Región",
|
||||
"Enable SSL" : "Habilitar SSL",
|
||||
"Enable Path Style" : "Habilitar Estilo de Ruta",
|
||||
"WebDAV" : "WebDAV",
|
||||
"URL" : "URL",
|
||||
"Remote subfolder" : "Subcarpeta remota",
|
||||
"Secure https://" : "https:// seguro",
|
||||
"FTP" : "FTP",
|
||||
"Host" : "Servidor",
|
||||
"Secure ftps://" : "ftps:// seguro",
|
||||
"Local" : "Local",
|
||||
"Location" : "Ubicación",
|
||||
"Nextcloud" : "Nextcloud",
|
||||
"SFTP" : "SFTP",
|
||||
"Root" : "Raíz",
|
||||
"SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta",
|
||||
"Share" : "Compartir",
|
||||
"Show hidden files" : "Mostrar archivos ocultos",
|
||||
"OpenStack Object Storage" : "OpenStack Object Storage",
|
||||
"Service name" : "Nombre del servicio",
|
||||
"Request timeout (seconds)" : "Tiemo de vida de la solicitud (segundos)",
|
||||
"External storage" : "Almacenamiento externo",
|
||||
"Add storage" : "Agregar almacenamiento",
|
||||
"Folder name" : "Nombre de la carpeta",
|
||||
"Authentication" : "Autenticación",
|
||||
"Cancel" : "Cancel",
|
||||
"Edit" : "Editar",
|
||||
"Never" : "Nunca",
|
||||
"Once every direct access" : "Una vez cada acceso directo",
|
||||
"Read only" : "Sólo lectura",
|
||||
"Enable previews" : "Habilitar vistas previas",
|
||||
"Enable sharing" : "Habilitar compartir",
|
||||
"Enable encryption" : "Habilitar encripción",
|
||||
"Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)",
|
||||
"External storages" : "Almacenamiento externo",
|
||||
"Actions" : "Acciones",
|
||||
"Delete" : "Borrar",
|
||||
"Saved" : "Guardado",
|
||||
"Error generating key pair" : "Se presentó un error al generar el juego de llaves",
|
||||
"Key size" : "Tamaño de la llave",
|
||||
"Generate keys" : "Generar llaves",
|
||||
"Confirm" : "Confirmar",
|
||||
"Save" : "Guardar",
|
||||
"External mount error" : "Error de montaje externo",
|
||||
"Open settings" : "Abrir configuraciones",
|
||||
"Ignore" : "Ignorar",
|
||||
"Storage type" : "Tipo de almacenamiento",
|
||||
"Unknown" : "Desconocido",
|
||||
"Scope" : "Alcance",
|
||||
"Personal" : "Personal",
|
||||
"System" : "Sistema",
|
||||
"Connected" : "Conectado",
|
||||
"Error" : "Error",
|
||||
"Network error" : "Error en la red",
|
||||
"Grant access" : "Conceder acceso",
|
||||
"Error configuring OAuth2" : "Se presentó un error al configurar OAuth2",
|
||||
"%s" : "%s",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID del cliente",
|
||||
"Client secret" : "Secreto del cliente",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"Check for changes" : "Verificar si hay cambios",
|
||||
"Disconnect" : "Desconectar",
|
||||
"Admin defined" : "Administrador definido",
|
||||
"Delete storage?" : "¿Borrar almacenamiento?",
|
||||
"Open documentation" : "Abrir la documentación",
|
||||
"Configuration" : "Configuración",
|
||||
"Available for" : "Disponible para",
|
||||
"Advanced settings" : "Configuraciones avanzadas"
|
||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||
}
|
||||
@@ -13,6 +13,8 @@ OC.L10N.register(
|
||||
"Unsatisfied authentication mechanism parameters" : "Parámetros no satisfechos del mecanismo de autenticación",
|
||||
"Insufficient data: %s" : "Datos insuficientes: %s",
|
||||
"Storage with ID \"%d\" is not editable by non-admins" : "El almacenamiento con identificador \"%d\" no puede ser editado por usuarios no administradores",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"Builtin" : "Integrado",
|
||||
"None" : "Ninguno",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -45,6 +47,7 @@ OC.L10N.register(
|
||||
"Storage Class" : "Clase de almacenamiento",
|
||||
"Enable SSL" : "Habilitar SSL",
|
||||
"Enable Path Style" : "Habilitar Estilo de Ruta",
|
||||
"Legacy (v2) authentication" : "Autenticación legada (v2)",
|
||||
"Enable multipart copy" : "Habilitar la copia multi partes",
|
||||
"WebDAV" : "WebDAV",
|
||||
"URL" : "URL",
|
||||
@@ -130,12 +133,9 @@ OC.L10N.register(
|
||||
"Grant access" : "Conceder acceso",
|
||||
"Error configuring OAuth2" : "Se presentó un error al configurar OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID del cliente",
|
||||
"Client secret" : "Secreto del cliente",
|
||||
"Legacy (v2) authentication" : "Autenticación legada (v2)",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "\"%1$s\" no está instalado. No se puede montar %2$s. Por favor, pida a su administrador del sistema que lo instale.",
|
||||
|
||||
@@ -11,6 +11,8 @@
|
||||
"Unsatisfied authentication mechanism parameters" : "Parámetros no satisfechos del mecanismo de autenticación",
|
||||
"Insufficient data: %s" : "Datos insuficientes: %s",
|
||||
"Storage with ID \"%d\" is not editable by non-admins" : "El almacenamiento con identificador \"%d\" no puede ser editado por usuarios no administradores",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"Builtin" : "Integrado",
|
||||
"None" : "Ninguno",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -43,6 +45,7 @@
|
||||
"Storage Class" : "Clase de almacenamiento",
|
||||
"Enable SSL" : "Habilitar SSL",
|
||||
"Enable Path Style" : "Habilitar Estilo de Ruta",
|
||||
"Legacy (v2) authentication" : "Autenticación legada (v2)",
|
||||
"Enable multipart copy" : "Habilitar la copia multi partes",
|
||||
"WebDAV" : "WebDAV",
|
||||
"URL" : "URL",
|
||||
@@ -128,12 +131,9 @@
|
||||
"Grant access" : "Conceder acceso",
|
||||
"Error configuring OAuth2" : "Se presentó un error al configurar OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID del cliente",
|
||||
"Client secret" : "Secreto del cliente",
|
||||
"Legacy (v2) authentication" : "Autenticación legada (v2)",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "\"%1$s\" no está instalado. No se puede montar %2$s. Por favor, pida a su administrador del sistema que lo instale.",
|
||||
|
||||
@@ -0,0 +1,105 @@
|
||||
OC.L10N.register(
|
||||
"files_external",
|
||||
{
|
||||
"Storage with ID \"%d\" not found" : "El almacenamiento con ID \"%d\" no fue encontrado",
|
||||
"Invalid backend or authentication mechanism class" : "Backend o clase de mecanismo de autenticación inválido ",
|
||||
"Invalid mount point" : "Punto de montaje inválido",
|
||||
"Objectstore forbidden" : "Objectstore prohibido",
|
||||
"Invalid storage backend \"%s\"" : "Almacenamiento de backend \"%s\" inválido ",
|
||||
"Not permitted to use backend \"%s\"" : "No está permitido usar el backend \"%s\"",
|
||||
"Not permitted to use authentication mechanism \"%s\"" : "No está permitido el uso del mecanismo de autenticación \"%s\"",
|
||||
"Unsatisfied backend parameters" : "Parametros del backend no satisfechos",
|
||||
"Unsatisfied authentication mechanism parameters" : "Parámetros no satisfechos del mecanismo de autenticación",
|
||||
"Insufficient data: %s" : "Datos insuficientes: %s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"Builtin" : "Integrado",
|
||||
"None" : "Ninguno",
|
||||
"Login" : "Iniciar sesión",
|
||||
"Password" : "Contraseña",
|
||||
"Tenant name" : "Nombre de inquilino",
|
||||
"Identity endpoint URL" : "URL del punto de enlace de Identidad",
|
||||
"Domain" : "Dominio",
|
||||
"Rackspace" : "Rackspace",
|
||||
"API key" : "Llave de API",
|
||||
"Global credentials" : "Credenciales globales",
|
||||
"Log-in credentials, save in database" : "Credenciales de inicio de sesión, guardar en la base de datos",
|
||||
"Log-in credentials, save in session" : "Credenciales de inicio de sesión, guardar en la sesión",
|
||||
"RSA public key" : "Llave pública RSA",
|
||||
"Public key" : "Llave pública",
|
||||
"Bucket" : "Bucket",
|
||||
"Hostname" : "Nombre del servidor",
|
||||
"Port" : "Puerto",
|
||||
"Proxy" : "Proxy",
|
||||
"Region" : "Región",
|
||||
"Enable SSL" : "Habilitar SSL",
|
||||
"Enable Path Style" : "Habilitar Estilo de Ruta",
|
||||
"WebDAV" : "WebDAV",
|
||||
"URL" : "URL",
|
||||
"Remote subfolder" : "Subcarpeta remota",
|
||||
"Secure https://" : "https:// seguro",
|
||||
"FTP" : "FTP",
|
||||
"Host" : "Servidor",
|
||||
"Secure ftps://" : "ftps:// seguro",
|
||||
"Local" : "Local",
|
||||
"Location" : "Ubicación",
|
||||
"Nextcloud" : "Nextcloud",
|
||||
"SFTP" : "SFTP",
|
||||
"Root" : "Raíz",
|
||||
"SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta",
|
||||
"Share" : "Compartir",
|
||||
"Show hidden files" : "Mostrar archivos ocultos",
|
||||
"OpenStack Object Storage" : "OpenStack Object Storage",
|
||||
"Service name" : "Nombre del servicio",
|
||||
"Request timeout (seconds)" : "Tiemo de vida de la solicitud (segundos)",
|
||||
"External storage" : "Almacenamiento externo",
|
||||
"Add storage" : "Agregar almacenamiento",
|
||||
"Folder name" : "Nombre de la carpeta",
|
||||
"Authentication" : "Autenticación",
|
||||
"Cancel" : "Cancel",
|
||||
"Edit" : "Editar",
|
||||
"Never" : "Nunca",
|
||||
"Once every direct access" : "Una vez cada acceso directo",
|
||||
"Read only" : "Sólo lectura",
|
||||
"Enable previews" : "Habilitar vistas previas",
|
||||
"Enable sharing" : "Habilitar compartir",
|
||||
"Enable encryption" : "Habilitar encripción",
|
||||
"Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)",
|
||||
"External storages" : "Almacenamiento externo",
|
||||
"Actions" : "Acciones",
|
||||
"Delete" : "Borrar",
|
||||
"Saved" : "Guardado",
|
||||
"Error generating key pair" : "Se presentó un error al generar el juego de llaves",
|
||||
"Key size" : "Tamaño de la llave",
|
||||
"Generate keys" : "Generar llaves",
|
||||
"Confirm" : "Confirmar",
|
||||
"Save" : "Guardar",
|
||||
"External mount error" : "Error de montaje externo",
|
||||
"Open settings" : "Abrir configuraciones",
|
||||
"Ignore" : "Ignorar",
|
||||
"Storage type" : "Tipo de almacenamiento",
|
||||
"Unknown" : "Desconocido",
|
||||
"Scope" : "Alcance",
|
||||
"Personal" : "Personal",
|
||||
"System" : "Sistema",
|
||||
"Connected" : "Conectado",
|
||||
"Error" : "Error",
|
||||
"Network error" : "Error en la red",
|
||||
"Grant access" : "Conceder acceso",
|
||||
"Error configuring OAuth2" : "Se presentó un error al configurar OAuth2",
|
||||
"%s" : "%s",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID del cliente",
|
||||
"Client secret" : "Secreto del cliente",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"Check for changes" : "Verificar si hay cambios",
|
||||
"Disconnect" : "Desconectar",
|
||||
"Admin defined" : "Administrador definido",
|
||||
"Delete storage?" : "¿Borrar almacenamiento?",
|
||||
"Open documentation" : "Abrir la documentación",
|
||||
"Configuration" : "Configuración",
|
||||
"Available for" : "Disponible para",
|
||||
"Advanced settings" : "Configuraciones avanzadas"
|
||||
},
|
||||
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||
@@ -0,0 +1,103 @@
|
||||
{ "translations": {
|
||||
"Storage with ID \"%d\" not found" : "El almacenamiento con ID \"%d\" no fue encontrado",
|
||||
"Invalid backend or authentication mechanism class" : "Backend o clase de mecanismo de autenticación inválido ",
|
||||
"Invalid mount point" : "Punto de montaje inválido",
|
||||
"Objectstore forbidden" : "Objectstore prohibido",
|
||||
"Invalid storage backend \"%s\"" : "Almacenamiento de backend \"%s\" inválido ",
|
||||
"Not permitted to use backend \"%s\"" : "No está permitido usar el backend \"%s\"",
|
||||
"Not permitted to use authentication mechanism \"%s\"" : "No está permitido el uso del mecanismo de autenticación \"%s\"",
|
||||
"Unsatisfied backend parameters" : "Parametros del backend no satisfechos",
|
||||
"Unsatisfied authentication mechanism parameters" : "Parámetros no satisfechos del mecanismo de autenticación",
|
||||
"Insufficient data: %s" : "Datos insuficientes: %s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"Builtin" : "Integrado",
|
||||
"None" : "Ninguno",
|
||||
"Login" : "Iniciar sesión",
|
||||
"Password" : "Contraseña",
|
||||
"Tenant name" : "Nombre de inquilino",
|
||||
"Identity endpoint URL" : "URL del punto de enlace de Identidad",
|
||||
"Domain" : "Dominio",
|
||||
"Rackspace" : "Rackspace",
|
||||
"API key" : "Llave de API",
|
||||
"Global credentials" : "Credenciales globales",
|
||||
"Log-in credentials, save in database" : "Credenciales de inicio de sesión, guardar en la base de datos",
|
||||
"Log-in credentials, save in session" : "Credenciales de inicio de sesión, guardar en la sesión",
|
||||
"RSA public key" : "Llave pública RSA",
|
||||
"Public key" : "Llave pública",
|
||||
"Bucket" : "Bucket",
|
||||
"Hostname" : "Nombre del servidor",
|
||||
"Port" : "Puerto",
|
||||
"Proxy" : "Proxy",
|
||||
"Region" : "Región",
|
||||
"Enable SSL" : "Habilitar SSL",
|
||||
"Enable Path Style" : "Habilitar Estilo de Ruta",
|
||||
"WebDAV" : "WebDAV",
|
||||
"URL" : "URL",
|
||||
"Remote subfolder" : "Subcarpeta remota",
|
||||
"Secure https://" : "https:// seguro",
|
||||
"FTP" : "FTP",
|
||||
"Host" : "Servidor",
|
||||
"Secure ftps://" : "ftps:// seguro",
|
||||
"Local" : "Local",
|
||||
"Location" : "Ubicación",
|
||||
"Nextcloud" : "Nextcloud",
|
||||
"SFTP" : "SFTP",
|
||||
"Root" : "Raíz",
|
||||
"SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta",
|
||||
"Share" : "Compartir",
|
||||
"Show hidden files" : "Mostrar archivos ocultos",
|
||||
"OpenStack Object Storage" : "OpenStack Object Storage",
|
||||
"Service name" : "Nombre del servicio",
|
||||
"Request timeout (seconds)" : "Tiemo de vida de la solicitud (segundos)",
|
||||
"External storage" : "Almacenamiento externo",
|
||||
"Add storage" : "Agregar almacenamiento",
|
||||
"Folder name" : "Nombre de la carpeta",
|
||||
"Authentication" : "Autenticación",
|
||||
"Cancel" : "Cancel",
|
||||
"Edit" : "Editar",
|
||||
"Never" : "Nunca",
|
||||
"Once every direct access" : "Una vez cada acceso directo",
|
||||
"Read only" : "Sólo lectura",
|
||||
"Enable previews" : "Habilitar vistas previas",
|
||||
"Enable sharing" : "Habilitar compartir",
|
||||
"Enable encryption" : "Habilitar encripción",
|
||||
"Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)",
|
||||
"External storages" : "Almacenamiento externo",
|
||||
"Actions" : "Acciones",
|
||||
"Delete" : "Borrar",
|
||||
"Saved" : "Guardado",
|
||||
"Error generating key pair" : "Se presentó un error al generar el juego de llaves",
|
||||
"Key size" : "Tamaño de la llave",
|
||||
"Generate keys" : "Generar llaves",
|
||||
"Confirm" : "Confirmar",
|
||||
"Save" : "Guardar",
|
||||
"External mount error" : "Error de montaje externo",
|
||||
"Open settings" : "Abrir configuraciones",
|
||||
"Ignore" : "Ignorar",
|
||||
"Storage type" : "Tipo de almacenamiento",
|
||||
"Unknown" : "Desconocido",
|
||||
"Scope" : "Alcance",
|
||||
"Personal" : "Personal",
|
||||
"System" : "Sistema",
|
||||
"Connected" : "Conectado",
|
||||
"Error" : "Error",
|
||||
"Network error" : "Error en la red",
|
||||
"Grant access" : "Conceder acceso",
|
||||
"Error configuring OAuth2" : "Se presentó un error al configurar OAuth2",
|
||||
"%s" : "%s",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID del cliente",
|
||||
"Client secret" : "Secreto del cliente",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"Check for changes" : "Verificar si hay cambios",
|
||||
"Disconnect" : "Desconectar",
|
||||
"Admin defined" : "Administrador definido",
|
||||
"Delete storage?" : "¿Borrar almacenamiento?",
|
||||
"Open documentation" : "Abrir la documentación",
|
||||
"Configuration" : "Configuración",
|
||||
"Available for" : "Disponible para",
|
||||
"Advanced settings" : "Configuraciones avanzadas"
|
||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||
}
|
||||
@@ -0,0 +1,105 @@
|
||||
OC.L10N.register(
|
||||
"files_external",
|
||||
{
|
||||
"Storage with ID \"%d\" not found" : "El almacenamiento con ID \"%d\" no fue encontrado",
|
||||
"Invalid backend or authentication mechanism class" : "Backend o clase de mecanismo de autenticación inválido ",
|
||||
"Invalid mount point" : "Punto de montaje inválido",
|
||||
"Objectstore forbidden" : "Objectstore prohibido",
|
||||
"Invalid storage backend \"%s\"" : "Almacenamiento de backend \"%s\" inválido ",
|
||||
"Not permitted to use backend \"%s\"" : "No está permitido usar el backend \"%s\"",
|
||||
"Not permitted to use authentication mechanism \"%s\"" : "No está permitido el uso del mecanismo de autenticación \"%s\"",
|
||||
"Unsatisfied backend parameters" : "Parametros del backend no satisfechos",
|
||||
"Unsatisfied authentication mechanism parameters" : "Parámetros no satisfechos del mecanismo de autenticación",
|
||||
"Insufficient data: %s" : "Datos insuficientes: %s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"Builtin" : "Integrado",
|
||||
"None" : "Ninguno",
|
||||
"Login" : "Iniciar sesión",
|
||||
"Password" : "Contraseña",
|
||||
"Tenant name" : "Nombre de inquilino",
|
||||
"Identity endpoint URL" : "URL del punto de enlace de Identidad",
|
||||
"Domain" : "Dominio",
|
||||
"Rackspace" : "Rackspace",
|
||||
"API key" : "Llave de API",
|
||||
"Global credentials" : "Credenciales globales",
|
||||
"Log-in credentials, save in database" : "Credenciales de inicio de sesión, guardar en la base de datos",
|
||||
"Log-in credentials, save in session" : "Credenciales de inicio de sesión, guardar en la sesión",
|
||||
"RSA public key" : "Llave pública RSA",
|
||||
"Public key" : "Llave pública",
|
||||
"Bucket" : "Bucket",
|
||||
"Hostname" : "Nombre del servidor",
|
||||
"Port" : "Puerto",
|
||||
"Proxy" : "Proxy",
|
||||
"Region" : "Región",
|
||||
"Enable SSL" : "Habilitar SSL",
|
||||
"Enable Path Style" : "Habilitar Estilo de Ruta",
|
||||
"WebDAV" : "WebDAV",
|
||||
"URL" : "URL",
|
||||
"Remote subfolder" : "Subcarpeta remota",
|
||||
"Secure https://" : "https:// seguro",
|
||||
"FTP" : "FTP",
|
||||
"Host" : "Servidor",
|
||||
"Secure ftps://" : "ftps:// seguro",
|
||||
"Local" : "Local",
|
||||
"Location" : "Ubicación",
|
||||
"Nextcloud" : "Nextcloud",
|
||||
"SFTP" : "SFTP",
|
||||
"Root" : "Raíz",
|
||||
"SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta",
|
||||
"Share" : "Compartir",
|
||||
"Show hidden files" : "Mostrar archivos ocultos",
|
||||
"OpenStack Object Storage" : "OpenStack Object Storage",
|
||||
"Service name" : "Nombre del servicio",
|
||||
"Request timeout (seconds)" : "Tiemo de vida de la solicitud (segundos)",
|
||||
"External storage" : "Almacenamiento externo",
|
||||
"Add storage" : "Agregar almacenamiento",
|
||||
"Folder name" : "Nombre de la carpeta",
|
||||
"Authentication" : "Autenticación",
|
||||
"Cancel" : "Cancel",
|
||||
"Edit" : "Editar",
|
||||
"Never" : "Nunca",
|
||||
"Once every direct access" : "Una vez cada acceso directo",
|
||||
"Read only" : "Sólo lectura",
|
||||
"Enable previews" : "Habilitar vistas previas",
|
||||
"Enable sharing" : "Habilitar compartir",
|
||||
"Enable encryption" : "Habilitar encripción",
|
||||
"Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)",
|
||||
"External storages" : "Almacenamiento externo",
|
||||
"Actions" : "Acciones",
|
||||
"Delete" : "Borrar",
|
||||
"Saved" : "Guardado",
|
||||
"Error generating key pair" : "Se presentó un error al generar el juego de llaves",
|
||||
"Key size" : "Tamaño de la llave",
|
||||
"Generate keys" : "Generar llaves",
|
||||
"Confirm" : "Confirmar",
|
||||
"Save" : "Guardar",
|
||||
"External mount error" : "Error de montaje externo",
|
||||
"Open settings" : "Abrir configuraciones",
|
||||
"Ignore" : "Ignorar",
|
||||
"Storage type" : "Tipo de almacenamiento",
|
||||
"Unknown" : "Desconocido",
|
||||
"Scope" : "Alcance",
|
||||
"Personal" : "Personal",
|
||||
"System" : "Sistema",
|
||||
"Connected" : "Conectado",
|
||||
"Error" : "Error",
|
||||
"Network error" : "Error en la red",
|
||||
"Grant access" : "Conceder acceso",
|
||||
"Error configuring OAuth2" : "Se presentó un error al configurar OAuth2",
|
||||
"%s" : "%s",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID del cliente",
|
||||
"Client secret" : "Secreto del cliente",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"Check for changes" : "Verificar si hay cambios",
|
||||
"Disconnect" : "Desconectar",
|
||||
"Admin defined" : "Administrador definido",
|
||||
"Delete storage?" : "¿Borrar almacenamiento?",
|
||||
"Open documentation" : "Abrir la documentación",
|
||||
"Configuration" : "Configuración",
|
||||
"Available for" : "Disponible para",
|
||||
"Advanced settings" : "Configuraciones avanzadas"
|
||||
},
|
||||
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||
@@ -0,0 +1,103 @@
|
||||
{ "translations": {
|
||||
"Storage with ID \"%d\" not found" : "El almacenamiento con ID \"%d\" no fue encontrado",
|
||||
"Invalid backend or authentication mechanism class" : "Backend o clase de mecanismo de autenticación inválido ",
|
||||
"Invalid mount point" : "Punto de montaje inválido",
|
||||
"Objectstore forbidden" : "Objectstore prohibido",
|
||||
"Invalid storage backend \"%s\"" : "Almacenamiento de backend \"%s\" inválido ",
|
||||
"Not permitted to use backend \"%s\"" : "No está permitido usar el backend \"%s\"",
|
||||
"Not permitted to use authentication mechanism \"%s\"" : "No está permitido el uso del mecanismo de autenticación \"%s\"",
|
||||
"Unsatisfied backend parameters" : "Parametros del backend no satisfechos",
|
||||
"Unsatisfied authentication mechanism parameters" : "Parámetros no satisfechos del mecanismo de autenticación",
|
||||
"Insufficient data: %s" : "Datos insuficientes: %s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"Builtin" : "Integrado",
|
||||
"None" : "Ninguno",
|
||||
"Login" : "Iniciar sesión",
|
||||
"Password" : "Contraseña",
|
||||
"Tenant name" : "Nombre de inquilino",
|
||||
"Identity endpoint URL" : "URL del punto de enlace de Identidad",
|
||||
"Domain" : "Dominio",
|
||||
"Rackspace" : "Rackspace",
|
||||
"API key" : "Llave de API",
|
||||
"Global credentials" : "Credenciales globales",
|
||||
"Log-in credentials, save in database" : "Credenciales de inicio de sesión, guardar en la base de datos",
|
||||
"Log-in credentials, save in session" : "Credenciales de inicio de sesión, guardar en la sesión",
|
||||
"RSA public key" : "Llave pública RSA",
|
||||
"Public key" : "Llave pública",
|
||||
"Bucket" : "Bucket",
|
||||
"Hostname" : "Nombre del servidor",
|
||||
"Port" : "Puerto",
|
||||
"Proxy" : "Proxy",
|
||||
"Region" : "Región",
|
||||
"Enable SSL" : "Habilitar SSL",
|
||||
"Enable Path Style" : "Habilitar Estilo de Ruta",
|
||||
"WebDAV" : "WebDAV",
|
||||
"URL" : "URL",
|
||||
"Remote subfolder" : "Subcarpeta remota",
|
||||
"Secure https://" : "https:// seguro",
|
||||
"FTP" : "FTP",
|
||||
"Host" : "Servidor",
|
||||
"Secure ftps://" : "ftps:// seguro",
|
||||
"Local" : "Local",
|
||||
"Location" : "Ubicación",
|
||||
"Nextcloud" : "Nextcloud",
|
||||
"SFTP" : "SFTP",
|
||||
"Root" : "Raíz",
|
||||
"SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta",
|
||||
"Share" : "Compartir",
|
||||
"Show hidden files" : "Mostrar archivos ocultos",
|
||||
"OpenStack Object Storage" : "OpenStack Object Storage",
|
||||
"Service name" : "Nombre del servicio",
|
||||
"Request timeout (seconds)" : "Tiemo de vida de la solicitud (segundos)",
|
||||
"External storage" : "Almacenamiento externo",
|
||||
"Add storage" : "Agregar almacenamiento",
|
||||
"Folder name" : "Nombre de la carpeta",
|
||||
"Authentication" : "Autenticación",
|
||||
"Cancel" : "Cancel",
|
||||
"Edit" : "Editar",
|
||||
"Never" : "Nunca",
|
||||
"Once every direct access" : "Una vez cada acceso directo",
|
||||
"Read only" : "Sólo lectura",
|
||||
"Enable previews" : "Habilitar vistas previas",
|
||||
"Enable sharing" : "Habilitar compartir",
|
||||
"Enable encryption" : "Habilitar encripción",
|
||||
"Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)",
|
||||
"External storages" : "Almacenamiento externo",
|
||||
"Actions" : "Acciones",
|
||||
"Delete" : "Borrar",
|
||||
"Saved" : "Guardado",
|
||||
"Error generating key pair" : "Se presentó un error al generar el juego de llaves",
|
||||
"Key size" : "Tamaño de la llave",
|
||||
"Generate keys" : "Generar llaves",
|
||||
"Confirm" : "Confirmar",
|
||||
"Save" : "Guardar",
|
||||
"External mount error" : "Error de montaje externo",
|
||||
"Open settings" : "Abrir configuraciones",
|
||||
"Ignore" : "Ignorar",
|
||||
"Storage type" : "Tipo de almacenamiento",
|
||||
"Unknown" : "Desconocido",
|
||||
"Scope" : "Alcance",
|
||||
"Personal" : "Personal",
|
||||
"System" : "Sistema",
|
||||
"Connected" : "Conectado",
|
||||
"Error" : "Error",
|
||||
"Network error" : "Error en la red",
|
||||
"Grant access" : "Conceder acceso",
|
||||
"Error configuring OAuth2" : "Se presentó un error al configurar OAuth2",
|
||||
"%s" : "%s",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID del cliente",
|
||||
"Client secret" : "Secreto del cliente",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"Check for changes" : "Verificar si hay cambios",
|
||||
"Disconnect" : "Desconectar",
|
||||
"Admin defined" : "Administrador definido",
|
||||
"Delete storage?" : "¿Borrar almacenamiento?",
|
||||
"Open documentation" : "Abrir la documentación",
|
||||
"Configuration" : "Configuración",
|
||||
"Available for" : "Disponible para",
|
||||
"Advanced settings" : "Configuraciones avanzadas"
|
||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||
}
|
||||
@@ -0,0 +1,105 @@
|
||||
OC.L10N.register(
|
||||
"files_external",
|
||||
{
|
||||
"Storage with ID \"%d\" not found" : "El almacenamiento con ID \"%d\" no fue encontrado",
|
||||
"Invalid backend or authentication mechanism class" : "Backend o clase de mecanismo de autenticación inválido ",
|
||||
"Invalid mount point" : "Punto de montaje inválido",
|
||||
"Objectstore forbidden" : "Objectstore prohibido",
|
||||
"Invalid storage backend \"%s\"" : "Almacenamiento de backend \"%s\" inválido ",
|
||||
"Not permitted to use backend \"%s\"" : "No está permitido usar el backend \"%s\"",
|
||||
"Not permitted to use authentication mechanism \"%s\"" : "No está permitido el uso del mecanismo de autenticación \"%s\"",
|
||||
"Unsatisfied backend parameters" : "Parametros del backend no satisfechos",
|
||||
"Unsatisfied authentication mechanism parameters" : "Parámetros no satisfechos del mecanismo de autenticación",
|
||||
"Insufficient data: %s" : "Datos insuficientes: %s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"Builtin" : "Integrado",
|
||||
"None" : "Ninguno",
|
||||
"Login" : "Iniciar sesión",
|
||||
"Password" : "Contraseña",
|
||||
"Tenant name" : "Nombre de inquilino",
|
||||
"Identity endpoint URL" : "URL del punto de enlace de Identidad",
|
||||
"Domain" : "Dominio",
|
||||
"Rackspace" : "Rackspace",
|
||||
"API key" : "Llave de API",
|
||||
"Global credentials" : "Credenciales globales",
|
||||
"Log-in credentials, save in database" : "Credenciales de inicio de sesión, guardar en la base de datos",
|
||||
"Log-in credentials, save in session" : "Credenciales de inicio de sesión, guardar en la sesión",
|
||||
"RSA public key" : "Llave pública RSA",
|
||||
"Public key" : "Llave pública",
|
||||
"Bucket" : "Bucket",
|
||||
"Hostname" : "Nombre del servidor",
|
||||
"Port" : "Puerto",
|
||||
"Proxy" : "Proxy",
|
||||
"Region" : "Región",
|
||||
"Enable SSL" : "Habilitar SSL",
|
||||
"Enable Path Style" : "Habilitar Estilo de Ruta",
|
||||
"WebDAV" : "WebDAV",
|
||||
"URL" : "URL",
|
||||
"Remote subfolder" : "Subcarpeta remota",
|
||||
"Secure https://" : "https:// seguro",
|
||||
"FTP" : "FTP",
|
||||
"Host" : "Servidor",
|
||||
"Secure ftps://" : "ftps:// seguro",
|
||||
"Local" : "Local",
|
||||
"Location" : "Ubicación",
|
||||
"Nextcloud" : "Nextcloud",
|
||||
"SFTP" : "SFTP",
|
||||
"Root" : "Raíz",
|
||||
"SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta",
|
||||
"Share" : "Compartir",
|
||||
"Show hidden files" : "Mostrar archivos ocultos",
|
||||
"OpenStack Object Storage" : "OpenStack Object Storage",
|
||||
"Service name" : "Nombre del servicio",
|
||||
"Request timeout (seconds)" : "Tiemo de vida de la solicitud (segundos)",
|
||||
"External storage" : "Almacenamiento externo",
|
||||
"Add storage" : "Agregar almacenamiento",
|
||||
"Folder name" : "Nombre de la carpeta",
|
||||
"Authentication" : "Autenticación",
|
||||
"Cancel" : "Cancel",
|
||||
"Edit" : "Editar",
|
||||
"Never" : "Nunca",
|
||||
"Once every direct access" : "Una vez cada acceso directo",
|
||||
"Read only" : "Sólo lectura",
|
||||
"Enable previews" : "Habilitar vistas previas",
|
||||
"Enable sharing" : "Habilitar compartir",
|
||||
"Enable encryption" : "Habilitar encripción",
|
||||
"Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)",
|
||||
"External storages" : "Almacenamiento externo",
|
||||
"Actions" : "Acciones",
|
||||
"Delete" : "Borrar",
|
||||
"Saved" : "Guardado",
|
||||
"Error generating key pair" : "Se presentó un error al generar el juego de llaves",
|
||||
"Key size" : "Tamaño de la llave",
|
||||
"Generate keys" : "Generar llaves",
|
||||
"Confirm" : "Confirmar",
|
||||
"Save" : "Guardar",
|
||||
"External mount error" : "Error de montaje externo",
|
||||
"Open settings" : "Abrir configuraciones",
|
||||
"Ignore" : "Ignorar",
|
||||
"Storage type" : "Tipo de almacenamiento",
|
||||
"Unknown" : "Desconocido",
|
||||
"Scope" : "Alcance",
|
||||
"Personal" : "Personal",
|
||||
"System" : "Sistema",
|
||||
"Connected" : "Conectado",
|
||||
"Error" : "Error",
|
||||
"Network error" : "Error en la red",
|
||||
"Grant access" : "Conceder acceso",
|
||||
"Error configuring OAuth2" : "Se presentó un error al configurar OAuth2",
|
||||
"%s" : "%s",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID del cliente",
|
||||
"Client secret" : "Secreto del cliente",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"Check for changes" : "Verificar si hay cambios",
|
||||
"Disconnect" : "Desconectar",
|
||||
"Admin defined" : "Administrador definido",
|
||||
"Delete storage?" : "¿Borrar almacenamiento?",
|
||||
"Open documentation" : "Abrir la documentación",
|
||||
"Configuration" : "Configuración",
|
||||
"Available for" : "Disponible para",
|
||||
"Advanced settings" : "Configuraciones avanzadas"
|
||||
},
|
||||
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||
@@ -0,0 +1,103 @@
|
||||
{ "translations": {
|
||||
"Storage with ID \"%d\" not found" : "El almacenamiento con ID \"%d\" no fue encontrado",
|
||||
"Invalid backend or authentication mechanism class" : "Backend o clase de mecanismo de autenticación inválido ",
|
||||
"Invalid mount point" : "Punto de montaje inválido",
|
||||
"Objectstore forbidden" : "Objectstore prohibido",
|
||||
"Invalid storage backend \"%s\"" : "Almacenamiento de backend \"%s\" inválido ",
|
||||
"Not permitted to use backend \"%s\"" : "No está permitido usar el backend \"%s\"",
|
||||
"Not permitted to use authentication mechanism \"%s\"" : "No está permitido el uso del mecanismo de autenticación \"%s\"",
|
||||
"Unsatisfied backend parameters" : "Parametros del backend no satisfechos",
|
||||
"Unsatisfied authentication mechanism parameters" : "Parámetros no satisfechos del mecanismo de autenticación",
|
||||
"Insufficient data: %s" : "Datos insuficientes: %s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"Builtin" : "Integrado",
|
||||
"None" : "Ninguno",
|
||||
"Login" : "Iniciar sesión",
|
||||
"Password" : "Contraseña",
|
||||
"Tenant name" : "Nombre de inquilino",
|
||||
"Identity endpoint URL" : "URL del punto de enlace de Identidad",
|
||||
"Domain" : "Dominio",
|
||||
"Rackspace" : "Rackspace",
|
||||
"API key" : "Llave de API",
|
||||
"Global credentials" : "Credenciales globales",
|
||||
"Log-in credentials, save in database" : "Credenciales de inicio de sesión, guardar en la base de datos",
|
||||
"Log-in credentials, save in session" : "Credenciales de inicio de sesión, guardar en la sesión",
|
||||
"RSA public key" : "Llave pública RSA",
|
||||
"Public key" : "Llave pública",
|
||||
"Bucket" : "Bucket",
|
||||
"Hostname" : "Nombre del servidor",
|
||||
"Port" : "Puerto",
|
||||
"Proxy" : "Proxy",
|
||||
"Region" : "Región",
|
||||
"Enable SSL" : "Habilitar SSL",
|
||||
"Enable Path Style" : "Habilitar Estilo de Ruta",
|
||||
"WebDAV" : "WebDAV",
|
||||
"URL" : "URL",
|
||||
"Remote subfolder" : "Subcarpeta remota",
|
||||
"Secure https://" : "https:// seguro",
|
||||
"FTP" : "FTP",
|
||||
"Host" : "Servidor",
|
||||
"Secure ftps://" : "ftps:// seguro",
|
||||
"Local" : "Local",
|
||||
"Location" : "Ubicación",
|
||||
"Nextcloud" : "Nextcloud",
|
||||
"SFTP" : "SFTP",
|
||||
"Root" : "Raíz",
|
||||
"SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta",
|
||||
"Share" : "Compartir",
|
||||
"Show hidden files" : "Mostrar archivos ocultos",
|
||||
"OpenStack Object Storage" : "OpenStack Object Storage",
|
||||
"Service name" : "Nombre del servicio",
|
||||
"Request timeout (seconds)" : "Tiemo de vida de la solicitud (segundos)",
|
||||
"External storage" : "Almacenamiento externo",
|
||||
"Add storage" : "Agregar almacenamiento",
|
||||
"Folder name" : "Nombre de la carpeta",
|
||||
"Authentication" : "Autenticación",
|
||||
"Cancel" : "Cancel",
|
||||
"Edit" : "Editar",
|
||||
"Never" : "Nunca",
|
||||
"Once every direct access" : "Una vez cada acceso directo",
|
||||
"Read only" : "Sólo lectura",
|
||||
"Enable previews" : "Habilitar vistas previas",
|
||||
"Enable sharing" : "Habilitar compartir",
|
||||
"Enable encryption" : "Habilitar encripción",
|
||||
"Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)",
|
||||
"External storages" : "Almacenamiento externo",
|
||||
"Actions" : "Acciones",
|
||||
"Delete" : "Borrar",
|
||||
"Saved" : "Guardado",
|
||||
"Error generating key pair" : "Se presentó un error al generar el juego de llaves",
|
||||
"Key size" : "Tamaño de la llave",
|
||||
"Generate keys" : "Generar llaves",
|
||||
"Confirm" : "Confirmar",
|
||||
"Save" : "Guardar",
|
||||
"External mount error" : "Error de montaje externo",
|
||||
"Open settings" : "Abrir configuraciones",
|
||||
"Ignore" : "Ignorar",
|
||||
"Storage type" : "Tipo de almacenamiento",
|
||||
"Unknown" : "Desconocido",
|
||||
"Scope" : "Alcance",
|
||||
"Personal" : "Personal",
|
||||
"System" : "Sistema",
|
||||
"Connected" : "Conectado",
|
||||
"Error" : "Error",
|
||||
"Network error" : "Error en la red",
|
||||
"Grant access" : "Conceder acceso",
|
||||
"Error configuring OAuth2" : "Se presentó un error al configurar OAuth2",
|
||||
"%s" : "%s",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID del cliente",
|
||||
"Client secret" : "Secreto del cliente",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"Check for changes" : "Verificar si hay cambios",
|
||||
"Disconnect" : "Desconectar",
|
||||
"Admin defined" : "Administrador definido",
|
||||
"Delete storage?" : "¿Borrar almacenamiento?",
|
||||
"Open documentation" : "Abrir la documentación",
|
||||
"Configuration" : "Configuración",
|
||||
"Available for" : "Disponible para",
|
||||
"Advanced settings" : "Configuraciones avanzadas"
|
||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||
}
|
||||
@@ -0,0 +1,105 @@
|
||||
OC.L10N.register(
|
||||
"files_external",
|
||||
{
|
||||
"Storage with ID \"%d\" not found" : "El almacenamiento con ID \"%d\" no fue encontrado",
|
||||
"Invalid backend or authentication mechanism class" : "Backend o clase de mecanismo de autenticación inválido ",
|
||||
"Invalid mount point" : "Punto de montaje inválido",
|
||||
"Objectstore forbidden" : "Objectstore prohibido",
|
||||
"Invalid storage backend \"%s\"" : "Almacenamiento de backend \"%s\" inválido ",
|
||||
"Not permitted to use backend \"%s\"" : "No está permitido usar el backend \"%s\"",
|
||||
"Not permitted to use authentication mechanism \"%s\"" : "No está permitido el uso del mecanismo de autenticación \"%s\"",
|
||||
"Unsatisfied backend parameters" : "Parametros del backend no satisfechos",
|
||||
"Unsatisfied authentication mechanism parameters" : "Parámetros no satisfechos del mecanismo de autenticación",
|
||||
"Insufficient data: %s" : "Datos insuficientes: %s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"Builtin" : "Integrado",
|
||||
"None" : "Ninguno",
|
||||
"Login" : "Iniciar sesión",
|
||||
"Password" : "Contraseña",
|
||||
"Tenant name" : "Nombre de inquilino",
|
||||
"Identity endpoint URL" : "URL del punto de enlace de Identidad",
|
||||
"Domain" : "Dominio",
|
||||
"Rackspace" : "Rackspace",
|
||||
"API key" : "Llave de API",
|
||||
"Global credentials" : "Credenciales globales",
|
||||
"Log-in credentials, save in database" : "Credenciales de inicio de sesión, guardar en la base de datos",
|
||||
"Log-in credentials, save in session" : "Credenciales de inicio de sesión, guardar en la sesión",
|
||||
"RSA public key" : "Llave pública RSA",
|
||||
"Public key" : "Llave pública",
|
||||
"Bucket" : "Bucket",
|
||||
"Hostname" : "Nombre del servidor",
|
||||
"Port" : "Puerto",
|
||||
"Proxy" : "Proxy",
|
||||
"Region" : "Región",
|
||||
"Enable SSL" : "Habilitar SSL",
|
||||
"Enable Path Style" : "Habilitar Estilo de Ruta",
|
||||
"WebDAV" : "WebDAV",
|
||||
"URL" : "URL",
|
||||
"Remote subfolder" : "Subcarpeta remota",
|
||||
"Secure https://" : "https:// seguro",
|
||||
"FTP" : "FTP",
|
||||
"Host" : "Servidor",
|
||||
"Secure ftps://" : "ftps:// seguro",
|
||||
"Local" : "Local",
|
||||
"Location" : "Ubicación",
|
||||
"Nextcloud" : "Nextcloud",
|
||||
"SFTP" : "SFTP",
|
||||
"Root" : "Raíz",
|
||||
"SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta",
|
||||
"Share" : "Compartir",
|
||||
"Show hidden files" : "Mostrar archivos ocultos",
|
||||
"OpenStack Object Storage" : "OpenStack Object Storage",
|
||||
"Service name" : "Nombre del servicio",
|
||||
"Request timeout (seconds)" : "Tiemo de vida de la solicitud (segundos)",
|
||||
"External storage" : "Almacenamiento externo",
|
||||
"Add storage" : "Agregar almacenamiento",
|
||||
"Folder name" : "Nombre de la carpeta",
|
||||
"Authentication" : "Autenticación",
|
||||
"Cancel" : "Cancel",
|
||||
"Edit" : "Editar",
|
||||
"Never" : "Nunca",
|
||||
"Once every direct access" : "Una vez cada acceso directo",
|
||||
"Read only" : "Sólo lectura",
|
||||
"Enable previews" : "Habilitar vistas previas",
|
||||
"Enable sharing" : "Habilitar compartir",
|
||||
"Enable encryption" : "Habilitar encripción",
|
||||
"Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)",
|
||||
"External storages" : "Almacenamiento externo",
|
||||
"Actions" : "Acciones",
|
||||
"Delete" : "Borrar",
|
||||
"Saved" : "Guardado",
|
||||
"Error generating key pair" : "Se presentó un error al generar el juego de llaves",
|
||||
"Key size" : "Tamaño de la llave",
|
||||
"Generate keys" : "Generar llaves",
|
||||
"Confirm" : "Confirmar",
|
||||
"Save" : "Guardar",
|
||||
"External mount error" : "Error de montaje externo",
|
||||
"Open settings" : "Abrir configuraciones",
|
||||
"Ignore" : "Ignorar",
|
||||
"Storage type" : "Tipo de almacenamiento",
|
||||
"Unknown" : "Desconocido",
|
||||
"Scope" : "Alcance",
|
||||
"Personal" : "Personal",
|
||||
"System" : "Sistema",
|
||||
"Connected" : "Conectado",
|
||||
"Error" : "Error",
|
||||
"Network error" : "Error en la red",
|
||||
"Grant access" : "Conceder acceso",
|
||||
"Error configuring OAuth2" : "Se presentó un error al configurar OAuth2",
|
||||
"%s" : "%s",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID del cliente",
|
||||
"Client secret" : "Secreto del cliente",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"Check for changes" : "Verificar si hay cambios",
|
||||
"Disconnect" : "Desconectar",
|
||||
"Admin defined" : "Administrador definido",
|
||||
"Delete storage?" : "¿Borrar almacenamiento?",
|
||||
"Open documentation" : "Abrir la documentación",
|
||||
"Configuration" : "Configuración",
|
||||
"Available for" : "Disponible para",
|
||||
"Advanced settings" : "Configuraciones avanzadas"
|
||||
},
|
||||
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||
@@ -0,0 +1,103 @@
|
||||
{ "translations": {
|
||||
"Storage with ID \"%d\" not found" : "El almacenamiento con ID \"%d\" no fue encontrado",
|
||||
"Invalid backend or authentication mechanism class" : "Backend o clase de mecanismo de autenticación inválido ",
|
||||
"Invalid mount point" : "Punto de montaje inválido",
|
||||
"Objectstore forbidden" : "Objectstore prohibido",
|
||||
"Invalid storage backend \"%s\"" : "Almacenamiento de backend \"%s\" inválido ",
|
||||
"Not permitted to use backend \"%s\"" : "No está permitido usar el backend \"%s\"",
|
||||
"Not permitted to use authentication mechanism \"%s\"" : "No está permitido el uso del mecanismo de autenticación \"%s\"",
|
||||
"Unsatisfied backend parameters" : "Parametros del backend no satisfechos",
|
||||
"Unsatisfied authentication mechanism parameters" : "Parámetros no satisfechos del mecanismo de autenticación",
|
||||
"Insufficient data: %s" : "Datos insuficientes: %s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"Builtin" : "Integrado",
|
||||
"None" : "Ninguno",
|
||||
"Login" : "Iniciar sesión",
|
||||
"Password" : "Contraseña",
|
||||
"Tenant name" : "Nombre de inquilino",
|
||||
"Identity endpoint URL" : "URL del punto de enlace de Identidad",
|
||||
"Domain" : "Dominio",
|
||||
"Rackspace" : "Rackspace",
|
||||
"API key" : "Llave de API",
|
||||
"Global credentials" : "Credenciales globales",
|
||||
"Log-in credentials, save in database" : "Credenciales de inicio de sesión, guardar en la base de datos",
|
||||
"Log-in credentials, save in session" : "Credenciales de inicio de sesión, guardar en la sesión",
|
||||
"RSA public key" : "Llave pública RSA",
|
||||
"Public key" : "Llave pública",
|
||||
"Bucket" : "Bucket",
|
||||
"Hostname" : "Nombre del servidor",
|
||||
"Port" : "Puerto",
|
||||
"Proxy" : "Proxy",
|
||||
"Region" : "Región",
|
||||
"Enable SSL" : "Habilitar SSL",
|
||||
"Enable Path Style" : "Habilitar Estilo de Ruta",
|
||||
"WebDAV" : "WebDAV",
|
||||
"URL" : "URL",
|
||||
"Remote subfolder" : "Subcarpeta remota",
|
||||
"Secure https://" : "https:// seguro",
|
||||
"FTP" : "FTP",
|
||||
"Host" : "Servidor",
|
||||
"Secure ftps://" : "ftps:// seguro",
|
||||
"Local" : "Local",
|
||||
"Location" : "Ubicación",
|
||||
"Nextcloud" : "Nextcloud",
|
||||
"SFTP" : "SFTP",
|
||||
"Root" : "Raíz",
|
||||
"SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta",
|
||||
"Share" : "Compartir",
|
||||
"Show hidden files" : "Mostrar archivos ocultos",
|
||||
"OpenStack Object Storage" : "OpenStack Object Storage",
|
||||
"Service name" : "Nombre del servicio",
|
||||
"Request timeout (seconds)" : "Tiemo de vida de la solicitud (segundos)",
|
||||
"External storage" : "Almacenamiento externo",
|
||||
"Add storage" : "Agregar almacenamiento",
|
||||
"Folder name" : "Nombre de la carpeta",
|
||||
"Authentication" : "Autenticación",
|
||||
"Cancel" : "Cancel",
|
||||
"Edit" : "Editar",
|
||||
"Never" : "Nunca",
|
||||
"Once every direct access" : "Una vez cada acceso directo",
|
||||
"Read only" : "Sólo lectura",
|
||||
"Enable previews" : "Habilitar vistas previas",
|
||||
"Enable sharing" : "Habilitar compartir",
|
||||
"Enable encryption" : "Habilitar encripción",
|
||||
"Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)",
|
||||
"External storages" : "Almacenamiento externo",
|
||||
"Actions" : "Acciones",
|
||||
"Delete" : "Borrar",
|
||||
"Saved" : "Guardado",
|
||||
"Error generating key pair" : "Se presentó un error al generar el juego de llaves",
|
||||
"Key size" : "Tamaño de la llave",
|
||||
"Generate keys" : "Generar llaves",
|
||||
"Confirm" : "Confirmar",
|
||||
"Save" : "Guardar",
|
||||
"External mount error" : "Error de montaje externo",
|
||||
"Open settings" : "Abrir configuraciones",
|
||||
"Ignore" : "Ignorar",
|
||||
"Storage type" : "Tipo de almacenamiento",
|
||||
"Unknown" : "Desconocido",
|
||||
"Scope" : "Alcance",
|
||||
"Personal" : "Personal",
|
||||
"System" : "Sistema",
|
||||
"Connected" : "Conectado",
|
||||
"Error" : "Error",
|
||||
"Network error" : "Error en la red",
|
||||
"Grant access" : "Conceder acceso",
|
||||
"Error configuring OAuth2" : "Se presentó un error al configurar OAuth2",
|
||||
"%s" : "%s",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID del cliente",
|
||||
"Client secret" : "Secreto del cliente",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"Check for changes" : "Verificar si hay cambios",
|
||||
"Disconnect" : "Desconectar",
|
||||
"Admin defined" : "Administrador definido",
|
||||
"Delete storage?" : "¿Borrar almacenamiento?",
|
||||
"Open documentation" : "Abrir la documentación",
|
||||
"Configuration" : "Configuración",
|
||||
"Available for" : "Disponible para",
|
||||
"Advanced settings" : "Configuraciones avanzadas"
|
||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||
}
|
||||
@@ -0,0 +1,104 @@
|
||||
OC.L10N.register(
|
||||
"files_external",
|
||||
{
|
||||
"Storage with ID \"%d\" not found" : "El almacenamiento con ID \"%d\" no fue encontrado",
|
||||
"Invalid backend or authentication mechanism class" : "Backend o clase de mecanismo de autenticación inválido ",
|
||||
"Invalid mount point" : "Punto de montaje inválido",
|
||||
"Objectstore forbidden" : "Objectstore prohibido",
|
||||
"Invalid storage backend \"%s\"" : "Almacenamiento de backend \"%s\" inválido ",
|
||||
"Not permitted to use backend \"%s\"" : "No está permitido usar el backend \"%s\"",
|
||||
"Not permitted to use authentication mechanism \"%s\"" : "No está permitido el uso del mecanismo de autenticación \"%s\"",
|
||||
"Unsatisfied backend parameters" : "Parametros del backend no satisfechos",
|
||||
"Unsatisfied authentication mechanism parameters" : "Parámetros no satisfechos del mecanismo de autenticación",
|
||||
"Insufficient data: %s" : "Datos insuficientes: %s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"Builtin" : "Integrado",
|
||||
"None" : "Ninguno",
|
||||
"Login" : "Iniciar sesión",
|
||||
"Password" : "Contraseña",
|
||||
"Tenant name" : "Nombre de inquilino",
|
||||
"Identity endpoint URL" : "URL del punto de enlace de Identidad",
|
||||
"Domain" : "Dominio",
|
||||
"Rackspace" : "Rackspace",
|
||||
"API key" : "Llave de API",
|
||||
"Global credentials" : "Credenciales globales",
|
||||
"Log-in credentials, save in database" : "Credenciales de inicio de sesión, guardar en la base de datos",
|
||||
"Log-in credentials, save in session" : "Credenciales de inicio de sesión, guardar en la sesión",
|
||||
"RSA public key" : "Llave pública RSA",
|
||||
"Public key" : "Llave pública",
|
||||
"Bucket" : "Bucket",
|
||||
"Hostname" : "Nombre del servidor",
|
||||
"Port" : "Puerto",
|
||||
"Proxy" : "Proxy",
|
||||
"Region" : "Región",
|
||||
"Enable SSL" : "Habilitar SSL",
|
||||
"Enable Path Style" : "Habilitar Estilo de Ruta",
|
||||
"WebDAV" : "WebDAV",
|
||||
"URL" : "URL",
|
||||
"Remote subfolder" : "Subcarpeta remota",
|
||||
"Secure https://" : "https:// seguro",
|
||||
"FTP" : "FTP",
|
||||
"Host" : "Servidor",
|
||||
"Secure ftps://" : "ftps:// seguro",
|
||||
"Local" : "Local",
|
||||
"Location" : "Ubicación",
|
||||
"Nextcloud" : "Nextcloud",
|
||||
"SFTP" : "SFTP",
|
||||
"Root" : "Raíz",
|
||||
"SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta",
|
||||
"Share" : "Compartir",
|
||||
"Show hidden files" : "Mostrar archivos ocultos",
|
||||
"OpenStack Object Storage" : "OpenStack Object Storage",
|
||||
"Service name" : "Nombre del servicio",
|
||||
"Request timeout (seconds)" : "Tiemo de vida de la solicitud (segundos)",
|
||||
"External storage" : "Almacenamiento externo",
|
||||
"Add storage" : "Agregar almacenamiento",
|
||||
"Folder name" : "Nombre de la carpeta",
|
||||
"Authentication" : "Autenticación",
|
||||
"Cancel" : "Cancel",
|
||||
"Edit" : "Editar",
|
||||
"Never" : "Nunca",
|
||||
"Once every direct access" : "Una vez cada acceso directo",
|
||||
"Read only" : "Sólo lectura",
|
||||
"Enable previews" : "Habilitar vistas previas",
|
||||
"Enable sharing" : "Habilitar compartir",
|
||||
"Enable encryption" : "Habilitar encripción",
|
||||
"Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)",
|
||||
"External storages" : "Almacenamiento externo",
|
||||
"Actions" : "Acciones",
|
||||
"Delete" : "Borrar",
|
||||
"Saved" : "Guardado",
|
||||
"Error generating key pair" : "Se presentó un error al generar el juego de llaves",
|
||||
"Key size" : "Tamaño de la llave",
|
||||
"Generate keys" : "Generar llaves",
|
||||
"Confirm" : "Confirmar",
|
||||
"Save" : "Guardar",
|
||||
"External mount error" : "Error de montaje externo",
|
||||
"Open settings" : "Abrir configuraciones",
|
||||
"Ignore" : "Ignorar",
|
||||
"Storage type" : "Tipo de almacenamiento",
|
||||
"Scope" : "Alcance",
|
||||
"Personal" : "Personal",
|
||||
"System" : "Sistema",
|
||||
"Connected" : "Conectado",
|
||||
"Error" : "Error",
|
||||
"Network error" : "Error en la red",
|
||||
"Grant access" : "Conceder acceso",
|
||||
"Error configuring OAuth2" : "Se presentó un error al configurar OAuth2",
|
||||
"%s" : "%s",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID del cliente",
|
||||
"Client secret" : "Secreto del cliente",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"Check for changes" : "Verificar si hay cambios",
|
||||
"Disconnect" : "Desconectar",
|
||||
"Admin defined" : "Administrador definido",
|
||||
"Delete storage?" : "¿Borrar almacenamiento?",
|
||||
"Open documentation" : "Abrir la documentación",
|
||||
"Configuration" : "Configuración",
|
||||
"Available for" : "Disponible para",
|
||||
"Advanced settings" : "Configuraciones avanzadas"
|
||||
},
|
||||
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||
@@ -0,0 +1,102 @@
|
||||
{ "translations": {
|
||||
"Storage with ID \"%d\" not found" : "El almacenamiento con ID \"%d\" no fue encontrado",
|
||||
"Invalid backend or authentication mechanism class" : "Backend o clase de mecanismo de autenticación inválido ",
|
||||
"Invalid mount point" : "Punto de montaje inválido",
|
||||
"Objectstore forbidden" : "Objectstore prohibido",
|
||||
"Invalid storage backend \"%s\"" : "Almacenamiento de backend \"%s\" inválido ",
|
||||
"Not permitted to use backend \"%s\"" : "No está permitido usar el backend \"%s\"",
|
||||
"Not permitted to use authentication mechanism \"%s\"" : "No está permitido el uso del mecanismo de autenticación \"%s\"",
|
||||
"Unsatisfied backend parameters" : "Parametros del backend no satisfechos",
|
||||
"Unsatisfied authentication mechanism parameters" : "Parámetros no satisfechos del mecanismo de autenticación",
|
||||
"Insufficient data: %s" : "Datos insuficientes: %s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"Builtin" : "Integrado",
|
||||
"None" : "Ninguno",
|
||||
"Login" : "Iniciar sesión",
|
||||
"Password" : "Contraseña",
|
||||
"Tenant name" : "Nombre de inquilino",
|
||||
"Identity endpoint URL" : "URL del punto de enlace de Identidad",
|
||||
"Domain" : "Dominio",
|
||||
"Rackspace" : "Rackspace",
|
||||
"API key" : "Llave de API",
|
||||
"Global credentials" : "Credenciales globales",
|
||||
"Log-in credentials, save in database" : "Credenciales de inicio de sesión, guardar en la base de datos",
|
||||
"Log-in credentials, save in session" : "Credenciales de inicio de sesión, guardar en la sesión",
|
||||
"RSA public key" : "Llave pública RSA",
|
||||
"Public key" : "Llave pública",
|
||||
"Bucket" : "Bucket",
|
||||
"Hostname" : "Nombre del servidor",
|
||||
"Port" : "Puerto",
|
||||
"Proxy" : "Proxy",
|
||||
"Region" : "Región",
|
||||
"Enable SSL" : "Habilitar SSL",
|
||||
"Enable Path Style" : "Habilitar Estilo de Ruta",
|
||||
"WebDAV" : "WebDAV",
|
||||
"URL" : "URL",
|
||||
"Remote subfolder" : "Subcarpeta remota",
|
||||
"Secure https://" : "https:// seguro",
|
||||
"FTP" : "FTP",
|
||||
"Host" : "Servidor",
|
||||
"Secure ftps://" : "ftps:// seguro",
|
||||
"Local" : "Local",
|
||||
"Location" : "Ubicación",
|
||||
"Nextcloud" : "Nextcloud",
|
||||
"SFTP" : "SFTP",
|
||||
"Root" : "Raíz",
|
||||
"SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta",
|
||||
"Share" : "Compartir",
|
||||
"Show hidden files" : "Mostrar archivos ocultos",
|
||||
"OpenStack Object Storage" : "OpenStack Object Storage",
|
||||
"Service name" : "Nombre del servicio",
|
||||
"Request timeout (seconds)" : "Tiemo de vida de la solicitud (segundos)",
|
||||
"External storage" : "Almacenamiento externo",
|
||||
"Add storage" : "Agregar almacenamiento",
|
||||
"Folder name" : "Nombre de la carpeta",
|
||||
"Authentication" : "Autenticación",
|
||||
"Cancel" : "Cancel",
|
||||
"Edit" : "Editar",
|
||||
"Never" : "Nunca",
|
||||
"Once every direct access" : "Una vez cada acceso directo",
|
||||
"Read only" : "Sólo lectura",
|
||||
"Enable previews" : "Habilitar vistas previas",
|
||||
"Enable sharing" : "Habilitar compartir",
|
||||
"Enable encryption" : "Habilitar encripción",
|
||||
"Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)",
|
||||
"External storages" : "Almacenamiento externo",
|
||||
"Actions" : "Acciones",
|
||||
"Delete" : "Borrar",
|
||||
"Saved" : "Guardado",
|
||||
"Error generating key pair" : "Se presentó un error al generar el juego de llaves",
|
||||
"Key size" : "Tamaño de la llave",
|
||||
"Generate keys" : "Generar llaves",
|
||||
"Confirm" : "Confirmar",
|
||||
"Save" : "Guardar",
|
||||
"External mount error" : "Error de montaje externo",
|
||||
"Open settings" : "Abrir configuraciones",
|
||||
"Ignore" : "Ignorar",
|
||||
"Storage type" : "Tipo de almacenamiento",
|
||||
"Scope" : "Alcance",
|
||||
"Personal" : "Personal",
|
||||
"System" : "Sistema",
|
||||
"Connected" : "Conectado",
|
||||
"Error" : "Error",
|
||||
"Network error" : "Error en la red",
|
||||
"Grant access" : "Conceder acceso",
|
||||
"Error configuring OAuth2" : "Se presentó un error al configurar OAuth2",
|
||||
"%s" : "%s",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID del cliente",
|
||||
"Client secret" : "Secreto del cliente",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"Check for changes" : "Verificar si hay cambios",
|
||||
"Disconnect" : "Desconectar",
|
||||
"Admin defined" : "Administrador definido",
|
||||
"Delete storage?" : "¿Borrar almacenamiento?",
|
||||
"Open documentation" : "Abrir la documentación",
|
||||
"Configuration" : "Configuración",
|
||||
"Available for" : "Disponible para",
|
||||
"Advanced settings" : "Configuraciones avanzadas"
|
||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||
}
|
||||
@@ -11,6 +11,8 @@ OC.L10N.register(
|
||||
"Unsatisfied backend parameters" : "Parametros del backend no satisfechos",
|
||||
"Unsatisfied authentication mechanism parameters" : "Parámetros no satisfechos del mecanismo de autenticación",
|
||||
"Insufficient data: %s" : "Datos insuficientes: %s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"Builtin" : "Integrado",
|
||||
"None" : "Ninguno",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -34,6 +36,7 @@ OC.L10N.register(
|
||||
"Region" : "Región",
|
||||
"Enable SSL" : "Habilitar SSL",
|
||||
"Enable Path Style" : "Habilitar Estilo de Ruta",
|
||||
"Legacy (v2) authentication" : "Autenticación legada (v2)",
|
||||
"WebDAV" : "WebDAV",
|
||||
"URL" : "URL",
|
||||
"Remote subfolder" : "Subcarpeta remota",
|
||||
@@ -89,12 +92,9 @@ OC.L10N.register(
|
||||
"Grant access" : "Conceder acceso",
|
||||
"Error configuring OAuth2" : "Se presentó un error al configurar OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID del cliente",
|
||||
"Client secret" : "Secreto del cliente",
|
||||
"Legacy (v2) authentication" : "Autenticación legada (v2)",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"Check for changes" : "Verificar si hay cambios",
|
||||
|
||||
@@ -9,6 +9,8 @@
|
||||
"Unsatisfied backend parameters" : "Parametros del backend no satisfechos",
|
||||
"Unsatisfied authentication mechanism parameters" : "Parámetros no satisfechos del mecanismo de autenticación",
|
||||
"Insufficient data: %s" : "Datos insuficientes: %s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"Builtin" : "Integrado",
|
||||
"None" : "Ninguno",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -32,6 +34,7 @@
|
||||
"Region" : "Región",
|
||||
"Enable SSL" : "Habilitar SSL",
|
||||
"Enable Path Style" : "Habilitar Estilo de Ruta",
|
||||
"Legacy (v2) authentication" : "Autenticación legada (v2)",
|
||||
"WebDAV" : "WebDAV",
|
||||
"URL" : "URL",
|
||||
"Remote subfolder" : "Subcarpeta remota",
|
||||
@@ -87,12 +90,9 @@
|
||||
"Grant access" : "Conceder acceso",
|
||||
"Error configuring OAuth2" : "Se presentó un error al configurar OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID del cliente",
|
||||
"Client secret" : "Secreto del cliente",
|
||||
"Legacy (v2) authentication" : "Autenticación legada (v2)",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"Check for changes" : "Verificar si hay cambios",
|
||||
|
||||
@@ -0,0 +1,105 @@
|
||||
OC.L10N.register(
|
||||
"files_external",
|
||||
{
|
||||
"Storage with ID \"%d\" not found" : "El almacenamiento con ID \"%d\" no fue encontrado",
|
||||
"Invalid backend or authentication mechanism class" : "Backend o clase de mecanismo de autenticación inválido ",
|
||||
"Invalid mount point" : "Punto de montaje inválido",
|
||||
"Objectstore forbidden" : "Objectstore prohibido",
|
||||
"Invalid storage backend \"%s\"" : "Almacenamiento de backend \"%s\" inválido ",
|
||||
"Not permitted to use backend \"%s\"" : "No está permitido usar el backend \"%s\"",
|
||||
"Not permitted to use authentication mechanism \"%s\"" : "No está permitido el uso del mecanismo de autenticación \"%s\"",
|
||||
"Unsatisfied backend parameters" : "Parametros del backend no satisfechos",
|
||||
"Unsatisfied authentication mechanism parameters" : "Parámetros no satisfechos del mecanismo de autenticación",
|
||||
"Insufficient data: %s" : "Datos insuficientes: %s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"Builtin" : "Integrado",
|
||||
"None" : "Ninguno",
|
||||
"Login" : "Iniciar sesión",
|
||||
"Password" : "Contraseña",
|
||||
"Tenant name" : "Nombre de inquilino",
|
||||
"Identity endpoint URL" : "URL del punto de enlace de Identidad",
|
||||
"Domain" : "Dominio",
|
||||
"Rackspace" : "Rackspace",
|
||||
"API key" : "Llave de API",
|
||||
"Global credentials" : "Credenciales globales",
|
||||
"Log-in credentials, save in database" : "Credenciales de inicio de sesión, guardar en la base de datos",
|
||||
"Log-in credentials, save in session" : "Credenciales de inicio de sesión, guardar en la sesión",
|
||||
"RSA public key" : "Llave pública RSA",
|
||||
"Public key" : "Llave pública",
|
||||
"Bucket" : "Bucket",
|
||||
"Hostname" : "Nombre del servidor",
|
||||
"Port" : "Puerto",
|
||||
"Proxy" : "Proxy",
|
||||
"Region" : "Región",
|
||||
"Enable SSL" : "Habilitar SSL",
|
||||
"Enable Path Style" : "Habilitar Estilo de Ruta",
|
||||
"WebDAV" : "WebDAV",
|
||||
"URL" : "URL",
|
||||
"Remote subfolder" : "Subcarpeta remota",
|
||||
"Secure https://" : "https:// seguro",
|
||||
"FTP" : "FTP",
|
||||
"Host" : "Servidor",
|
||||
"Secure ftps://" : "ftps:// seguro",
|
||||
"Local" : "Local",
|
||||
"Location" : "Ubicación",
|
||||
"Nextcloud" : "Nextcloud",
|
||||
"SFTP" : "SFTP",
|
||||
"Root" : "Raíz",
|
||||
"SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta",
|
||||
"Share" : "Compartir",
|
||||
"Show hidden files" : "Mostrar archivos ocultos",
|
||||
"OpenStack Object Storage" : "OpenStack Object Storage",
|
||||
"Service name" : "Nombre del servicio",
|
||||
"Request timeout (seconds)" : "Tiemo de vida de la solicitud (segundos)",
|
||||
"External storage" : "Almacenamiento externo",
|
||||
"Add storage" : "Agregar almacenamiento",
|
||||
"Folder name" : "Nombre de la carpeta",
|
||||
"Authentication" : "Autenticación",
|
||||
"Cancel" : "Cancel",
|
||||
"Edit" : "Editar",
|
||||
"Never" : "Nunca",
|
||||
"Once every direct access" : "Una vez cada acceso directo",
|
||||
"Read only" : "Sólo lectura",
|
||||
"Enable previews" : "Habilitar vistas previas",
|
||||
"Enable sharing" : "Habilitar compartir",
|
||||
"Enable encryption" : "Habilitar encripción",
|
||||
"Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)",
|
||||
"External storages" : "Almacenamiento externo",
|
||||
"Actions" : "Acciones",
|
||||
"Delete" : "Borrar",
|
||||
"Saved" : "Guardado",
|
||||
"Error generating key pair" : "Se presentó un error al generar el juego de llaves",
|
||||
"Key size" : "Tamaño de la llave",
|
||||
"Generate keys" : "Generar llaves",
|
||||
"Confirm" : "Confirmar",
|
||||
"Save" : "Guardar",
|
||||
"External mount error" : "Error de montaje externo",
|
||||
"Open settings" : "Abrir configuraciones",
|
||||
"Ignore" : "Ignorar",
|
||||
"Storage type" : "Tipo de almacenamiento",
|
||||
"Unknown" : "Desconocido",
|
||||
"Scope" : "Alcance",
|
||||
"Personal" : "Personal",
|
||||
"System" : "Sistema",
|
||||
"Connected" : "Conectado",
|
||||
"Error" : "Error",
|
||||
"Network error" : "Error en la red",
|
||||
"Grant access" : "Conceder acceso",
|
||||
"Error configuring OAuth2" : "Se presentó un error al configurar OAuth2",
|
||||
"%s" : "%s",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID del cliente",
|
||||
"Client secret" : "Secreto del cliente",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"Check for changes" : "Verificar si hay cambios",
|
||||
"Disconnect" : "Desconectar",
|
||||
"Admin defined" : "Administrador definido",
|
||||
"Delete storage?" : "¿Borrar almacenamiento?",
|
||||
"Open documentation" : "Abrir la documentación",
|
||||
"Configuration" : "Configuración",
|
||||
"Available for" : "Disponible para",
|
||||
"Advanced settings" : "Configuraciones avanzadas"
|
||||
},
|
||||
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||
@@ -0,0 +1,103 @@
|
||||
{ "translations": {
|
||||
"Storage with ID \"%d\" not found" : "El almacenamiento con ID \"%d\" no fue encontrado",
|
||||
"Invalid backend or authentication mechanism class" : "Backend o clase de mecanismo de autenticación inválido ",
|
||||
"Invalid mount point" : "Punto de montaje inválido",
|
||||
"Objectstore forbidden" : "Objectstore prohibido",
|
||||
"Invalid storage backend \"%s\"" : "Almacenamiento de backend \"%s\" inválido ",
|
||||
"Not permitted to use backend \"%s\"" : "No está permitido usar el backend \"%s\"",
|
||||
"Not permitted to use authentication mechanism \"%s\"" : "No está permitido el uso del mecanismo de autenticación \"%s\"",
|
||||
"Unsatisfied backend parameters" : "Parametros del backend no satisfechos",
|
||||
"Unsatisfied authentication mechanism parameters" : "Parámetros no satisfechos del mecanismo de autenticación",
|
||||
"Insufficient data: %s" : "Datos insuficientes: %s",
|
||||
"Access key" : "Llave de acceso",
|
||||
"Secret key" : "Llave secreta",
|
||||
"Builtin" : "Integrado",
|
||||
"None" : "Ninguno",
|
||||
"Login" : "Iniciar sesión",
|
||||
"Password" : "Contraseña",
|
||||
"Tenant name" : "Nombre de inquilino",
|
||||
"Identity endpoint URL" : "URL del punto de enlace de Identidad",
|
||||
"Domain" : "Dominio",
|
||||
"Rackspace" : "Rackspace",
|
||||
"API key" : "Llave de API",
|
||||
"Global credentials" : "Credenciales globales",
|
||||
"Log-in credentials, save in database" : "Credenciales de inicio de sesión, guardar en la base de datos",
|
||||
"Log-in credentials, save in session" : "Credenciales de inicio de sesión, guardar en la sesión",
|
||||
"RSA public key" : "Llave pública RSA",
|
||||
"Public key" : "Llave pública",
|
||||
"Bucket" : "Bucket",
|
||||
"Hostname" : "Nombre del servidor",
|
||||
"Port" : "Puerto",
|
||||
"Proxy" : "Proxy",
|
||||
"Region" : "Región",
|
||||
"Enable SSL" : "Habilitar SSL",
|
||||
"Enable Path Style" : "Habilitar Estilo de Ruta",
|
||||
"WebDAV" : "WebDAV",
|
||||
"URL" : "URL",
|
||||
"Remote subfolder" : "Subcarpeta remota",
|
||||
"Secure https://" : "https:// seguro",
|
||||
"FTP" : "FTP",
|
||||
"Host" : "Servidor",
|
||||
"Secure ftps://" : "ftps:// seguro",
|
||||
"Local" : "Local",
|
||||
"Location" : "Ubicación",
|
||||
"Nextcloud" : "Nextcloud",
|
||||
"SFTP" : "SFTP",
|
||||
"Root" : "Raíz",
|
||||
"SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta",
|
||||
"Share" : "Compartir",
|
||||
"Show hidden files" : "Mostrar archivos ocultos",
|
||||
"OpenStack Object Storage" : "OpenStack Object Storage",
|
||||
"Service name" : "Nombre del servicio",
|
||||
"Request timeout (seconds)" : "Tiemo de vida de la solicitud (segundos)",
|
||||
"External storage" : "Almacenamiento externo",
|
||||
"Add storage" : "Agregar almacenamiento",
|
||||
"Folder name" : "Nombre de la carpeta",
|
||||
"Authentication" : "Autenticación",
|
||||
"Cancel" : "Cancel",
|
||||
"Edit" : "Editar",
|
||||
"Never" : "Nunca",
|
||||
"Once every direct access" : "Una vez cada acceso directo",
|
||||
"Read only" : "Sólo lectura",
|
||||
"Enable previews" : "Habilitar vistas previas",
|
||||
"Enable sharing" : "Habilitar compartir",
|
||||
"Enable encryption" : "Habilitar encripción",
|
||||
"Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)",
|
||||
"External storages" : "Almacenamiento externo",
|
||||
"Actions" : "Acciones",
|
||||
"Delete" : "Borrar",
|
||||
"Saved" : "Guardado",
|
||||
"Error generating key pair" : "Se presentó un error al generar el juego de llaves",
|
||||
"Key size" : "Tamaño de la llave",
|
||||
"Generate keys" : "Generar llaves",
|
||||
"Confirm" : "Confirmar",
|
||||
"Save" : "Guardar",
|
||||
"External mount error" : "Error de montaje externo",
|
||||
"Open settings" : "Abrir configuraciones",
|
||||
"Ignore" : "Ignorar",
|
||||
"Storage type" : "Tipo de almacenamiento",
|
||||
"Unknown" : "Desconocido",
|
||||
"Scope" : "Alcance",
|
||||
"Personal" : "Personal",
|
||||
"System" : "Sistema",
|
||||
"Connected" : "Conectado",
|
||||
"Error" : "Error",
|
||||
"Network error" : "Error en la red",
|
||||
"Grant access" : "Conceder acceso",
|
||||
"Error configuring OAuth2" : "Se presentó un error al configurar OAuth2",
|
||||
"%s" : "%s",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID del cliente",
|
||||
"Client secret" : "Secreto del cliente",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ",
|
||||
"Check for changes" : "Verificar si hay cambios",
|
||||
"Disconnect" : "Desconectar",
|
||||
"Admin defined" : "Administrador definido",
|
||||
"Delete storage?" : "¿Borrar almacenamiento?",
|
||||
"Open documentation" : "Abrir la documentación",
|
||||
"Configuration" : "Configuración",
|
||||
"Available for" : "Disponible para",
|
||||
"Advanced settings" : "Configuraciones avanzadas"
|
||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||
}
|
||||
@@ -15,6 +15,8 @@ OC.L10N.register(
|
||||
"Unsatisfied authentication mechanism parameters" : "Autentimisviisi parameetrid pole tagatud",
|
||||
"Insufficient data: %s" : "Pole piisavalt andmeid: %s",
|
||||
"Storage with ID \"%d\" is not editable by non-admins" : "Andmeruum tunnusega „%d“ on muudetav vaid peakasutajate poolt",
|
||||
"Access key" : "Ligipääsuvõti",
|
||||
"Secret key" : "Salavõti",
|
||||
"Builtin" : "Sisseehitatud",
|
||||
"None" : "Pole",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -48,6 +50,7 @@ OC.L10N.register(
|
||||
"Storage Class" : "Andmeruumi klass (Storage class)",
|
||||
"Enable SSL" : "SSL-i kasutamine",
|
||||
"Enable Path Style" : "Luba otsingtee stiilis",
|
||||
"Legacy (v2) authentication" : "Pärandvormis autentimine (v2)",
|
||||
"Enable multipart copy" : "Luba mitmeosaline kopeerimine",
|
||||
"Use presigned S3 url" : "Kasuta ajutist S3-e ettevalmistatud võrguaadressi",
|
||||
"SSE-C encryption key" : "SSE-C krüptimisvõti",
|
||||
@@ -167,12 +170,9 @@ OC.L10N.register(
|
||||
"Grant access" : "Anna ligipääs",
|
||||
"Error configuring OAuth2" : "Viga OAuth2 seadistamisel",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Ligipääsuvõti",
|
||||
"Secret key" : "Salavõti",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "Kliendi ID",
|
||||
"Client secret" : "Kliendi saladus",
|
||||
"Legacy (v2) authentication" : "Pärandvormis autentimine (v2)",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "cURL-i tugi on PHP-s on kas paigaldamata või pole kasutusele võetud. „%s“ haakimine pole võimalik. Palun oma peakasutajat, et ta teeks cURL-i toe tagamiseks vajalikud muudatused.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "FTP tugi on PHP-s on kas paigaldamata või pole kasutusele võetud. „%s“ haakimine pole võimalik. Palun oma peakasutajat, et ta teeks FTP toe tagamiseks vajalikud muudatused.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "„%1$s“ pole paigladatud. „%2$s“ haakimine pole võimalik. Palu oma peakasutajal või süsteemihalduril ta paigaldada.",
|
||||
|
||||
@@ -13,6 +13,8 @@
|
||||
"Unsatisfied authentication mechanism parameters" : "Autentimisviisi parameetrid pole tagatud",
|
||||
"Insufficient data: %s" : "Pole piisavalt andmeid: %s",
|
||||
"Storage with ID \"%d\" is not editable by non-admins" : "Andmeruum tunnusega „%d“ on muudetav vaid peakasutajate poolt",
|
||||
"Access key" : "Ligipääsuvõti",
|
||||
"Secret key" : "Salavõti",
|
||||
"Builtin" : "Sisseehitatud",
|
||||
"None" : "Pole",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -46,6 +48,7 @@
|
||||
"Storage Class" : "Andmeruumi klass (Storage class)",
|
||||
"Enable SSL" : "SSL-i kasutamine",
|
||||
"Enable Path Style" : "Luba otsingtee stiilis",
|
||||
"Legacy (v2) authentication" : "Pärandvormis autentimine (v2)",
|
||||
"Enable multipart copy" : "Luba mitmeosaline kopeerimine",
|
||||
"Use presigned S3 url" : "Kasuta ajutist S3-e ettevalmistatud võrguaadressi",
|
||||
"SSE-C encryption key" : "SSE-C krüptimisvõti",
|
||||
@@ -165,12 +168,9 @@
|
||||
"Grant access" : "Anna ligipääs",
|
||||
"Error configuring OAuth2" : "Viga OAuth2 seadistamisel",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Ligipääsuvõti",
|
||||
"Secret key" : "Salavõti",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "Kliendi ID",
|
||||
"Client secret" : "Kliendi saladus",
|
||||
"Legacy (v2) authentication" : "Pärandvormis autentimine (v2)",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "cURL-i tugi on PHP-s on kas paigaldamata või pole kasutusele võetud. „%s“ haakimine pole võimalik. Palun oma peakasutajat, et ta teeks cURL-i toe tagamiseks vajalikud muudatused.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "FTP tugi on PHP-s on kas paigaldamata või pole kasutusele võetud. „%s“ haakimine pole võimalik. Palun oma peakasutajat, et ta teeks FTP toe tagamiseks vajalikud muudatused.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "„%1$s“ pole paigladatud. „%2$s“ haakimine pole võimalik. Palu oma peakasutajal või süsteemihalduril ta paigaldada.",
|
||||
|
||||
@@ -15,6 +15,8 @@ OC.L10N.register(
|
||||
"Unsatisfied authentication mechanism parameters" : "Autentifikazio mekanismoaren parametroak ez dira asebete",
|
||||
"Insufficient data: %s" : "Behar baino datu gutxiago: %s",
|
||||
"Storage with ID \"%d\" is not editable by non-admins" : "Administratzaile ez direnak ezin dute editatu \"%d\" IDa duen biltegiratzea",
|
||||
"Access key" : "Sarbide-gakoa",
|
||||
"Secret key" : "Gako sekretua",
|
||||
"Builtin" : "Integratua",
|
||||
"None" : "Bat ere ez",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -47,6 +49,7 @@ OC.L10N.register(
|
||||
"Storage Class" : "Storage Class",
|
||||
"Enable SSL" : "Gaitu SSL",
|
||||
"Enable Path Style" : "Gaitu bide estiloa",
|
||||
"Legacy (v2) authentication" : "Legacy (v2) autentifikazioa",
|
||||
"Enable multipart copy" : "Gaitu multizati kopia",
|
||||
"SSE-C encryption key" : "SSE-C zifratze-gakoa",
|
||||
"WebDAV" : "WebDAV",
|
||||
@@ -139,12 +142,9 @@ OC.L10N.register(
|
||||
"Grant access" : "Baimendu sarrera",
|
||||
"Error configuring OAuth2" : "Errorea OAuth2 konfiguratzean",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Sarbide-gakoa",
|
||||
"Secret key" : "Gako sekretua",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "Bezero ID",
|
||||
"Client secret" : "Bezeroaren sekretua",
|
||||
"Legacy (v2) authentication" : "Legacy (v2) autentifikazioa",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "PHPren cURL euskarria ez dago gaituta edo instalatuta. Ezin da %s muntatu. Eskatu administratzaileari instalatzeko.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "PHPren FTP euskarria ez dago gaituta edo instalatuta. Ezin da %s muntatu. Eskatu administratzaileari instalatzeko.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "\"%1$s\" ez dago instalatuta. Ezin da %2$s muntatu. Eskatu administratzaileari instalatzeko.",
|
||||
|
||||
@@ -13,6 +13,8 @@
|
||||
"Unsatisfied authentication mechanism parameters" : "Autentifikazio mekanismoaren parametroak ez dira asebete",
|
||||
"Insufficient data: %s" : "Behar baino datu gutxiago: %s",
|
||||
"Storage with ID \"%d\" is not editable by non-admins" : "Administratzaile ez direnak ezin dute editatu \"%d\" IDa duen biltegiratzea",
|
||||
"Access key" : "Sarbide-gakoa",
|
||||
"Secret key" : "Gako sekretua",
|
||||
"Builtin" : "Integratua",
|
||||
"None" : "Bat ere ez",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -45,6 +47,7 @@
|
||||
"Storage Class" : "Storage Class",
|
||||
"Enable SSL" : "Gaitu SSL",
|
||||
"Enable Path Style" : "Gaitu bide estiloa",
|
||||
"Legacy (v2) authentication" : "Legacy (v2) autentifikazioa",
|
||||
"Enable multipart copy" : "Gaitu multizati kopia",
|
||||
"SSE-C encryption key" : "SSE-C zifratze-gakoa",
|
||||
"WebDAV" : "WebDAV",
|
||||
@@ -137,12 +140,9 @@
|
||||
"Grant access" : "Baimendu sarrera",
|
||||
"Error configuring OAuth2" : "Errorea OAuth2 konfiguratzean",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Sarbide-gakoa",
|
||||
"Secret key" : "Gako sekretua",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "Bezero ID",
|
||||
"Client secret" : "Bezeroaren sekretua",
|
||||
"Legacy (v2) authentication" : "Legacy (v2) autentifikazioa",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "PHPren cURL euskarria ez dago gaituta edo instalatuta. Ezin da %s muntatu. Eskatu administratzaileari instalatzeko.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "PHPren FTP euskarria ez dago gaituta edo instalatuta. Ezin da %s muntatu. Eskatu administratzaileari instalatzeko.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "\"%1$s\" ez dago instalatuta. Ezin da %2$s muntatu. Eskatu administratzaileari instalatzeko.",
|
||||
|
||||
@@ -15,6 +15,8 @@ OC.L10N.register(
|
||||
"Unsatisfied authentication mechanism parameters" : "پارامترهای مکانیسم تأیید ناخوشایند",
|
||||
"Insufficient data: %s" : "داده ها کافی نیست: %s ",
|
||||
"Storage with ID \"%d\" is not editable by non-admins" : "فضای ذخیرهسازی با شناسه «%d» توسط افراد غیر مدیران قابل ویرایش نیست.",
|
||||
"Access key" : "کلید دسترسی",
|
||||
"Secret key" : "کلید مخفی",
|
||||
"Builtin" : "ساخته شده",
|
||||
"None" : "هیچکدام",
|
||||
"OpenStack v2" : "Open Stack v2",
|
||||
@@ -47,6 +49,7 @@ OC.L10N.register(
|
||||
"Storage Class" : "Storage Class",
|
||||
"Enable SSL" : "فعالسازی SSL",
|
||||
"Enable Path Style" : "سبک مسیر را فعال کنید",
|
||||
"Legacy (v2) authentication" : "احراز هویت، ارث بری (v2)",
|
||||
"Enable multipart copy" : "فعال کردن کپی چند قسمتی",
|
||||
"SSE-C encryption key" : "کلید رمزگذاری SSE-C",
|
||||
"WebDAV" : "WebDAV",
|
||||
@@ -140,12 +143,9 @@ OC.L10N.register(
|
||||
"Grant access" : " مجوز اعطا دسترسی",
|
||||
"Error configuring OAuth2" : "خطا پیکربندی OAuth2",
|
||||
"%s" : " %s ",
|
||||
"Access key" : "کلید دسترسی",
|
||||
"Secret key" : "کلید مخفی",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "شناسه مشتری",
|
||||
"Client secret" : "رمز مشتری",
|
||||
"Legacy (v2) authentication" : "احراز هویت، ارث بری (v2)",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "پشتیبانی cURL در PHP فعال یا نصب نشده است. نصب %s امکان پذیر نیست. لطفاً از سرپرست سیستم خود بخواهید که آن را نصب کند.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "پشتیبانی FTP در PHP فعال یا نصب نشده است. نصب %s امکان پذیر نیست. لطفاً از سرپرست سیستم خود بخواهید که آن را نصب کند.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "\"%1$s\" نصب نشده است. نصب \"%2$s\" امکان پذیر نیست. لطفاً از سرپرست سیستم خود بخواهید که آن را نصب کند.",
|
||||
|
||||
@@ -13,6 +13,8 @@
|
||||
"Unsatisfied authentication mechanism parameters" : "پارامترهای مکانیسم تأیید ناخوشایند",
|
||||
"Insufficient data: %s" : "داده ها کافی نیست: %s ",
|
||||
"Storage with ID \"%d\" is not editable by non-admins" : "فضای ذخیرهسازی با شناسه «%d» توسط افراد غیر مدیران قابل ویرایش نیست.",
|
||||
"Access key" : "کلید دسترسی",
|
||||
"Secret key" : "کلید مخفی",
|
||||
"Builtin" : "ساخته شده",
|
||||
"None" : "هیچکدام",
|
||||
"OpenStack v2" : "Open Stack v2",
|
||||
@@ -45,6 +47,7 @@
|
||||
"Storage Class" : "Storage Class",
|
||||
"Enable SSL" : "فعالسازی SSL",
|
||||
"Enable Path Style" : "سبک مسیر را فعال کنید",
|
||||
"Legacy (v2) authentication" : "احراز هویت، ارث بری (v2)",
|
||||
"Enable multipart copy" : "فعال کردن کپی چند قسمتی",
|
||||
"SSE-C encryption key" : "کلید رمزگذاری SSE-C",
|
||||
"WebDAV" : "WebDAV",
|
||||
@@ -138,12 +141,9 @@
|
||||
"Grant access" : " مجوز اعطا دسترسی",
|
||||
"Error configuring OAuth2" : "خطا پیکربندی OAuth2",
|
||||
"%s" : " %s ",
|
||||
"Access key" : "کلید دسترسی",
|
||||
"Secret key" : "کلید مخفی",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "شناسه مشتری",
|
||||
"Client secret" : "رمز مشتری",
|
||||
"Legacy (v2) authentication" : "احراز هویت، ارث بری (v2)",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "پشتیبانی cURL در PHP فعال یا نصب نشده است. نصب %s امکان پذیر نیست. لطفاً از سرپرست سیستم خود بخواهید که آن را نصب کند.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "پشتیبانی FTP در PHP فعال یا نصب نشده است. نصب %s امکان پذیر نیست. لطفاً از سرپرست سیستم خود بخواهید که آن را نصب کند.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "\"%1$s\" نصب نشده است. نصب \"%2$s\" امکان پذیر نیست. لطفاً از سرپرست سیستم خود بخواهید که آن را نصب کند.",
|
||||
|
||||
@@ -13,6 +13,8 @@ OC.L10N.register(
|
||||
"Unsatisfied backend parameters" : "Riittämättömät tietovaraston parametrit",
|
||||
"Unsatisfied authentication mechanism parameters" : "Riittämättömät tunnistautumismekanismin parametrit",
|
||||
"Insufficient data: %s" : "Puutteellinen data: %s",
|
||||
"Access key" : "Pääsyavain",
|
||||
"Secret key" : "Salainen avain",
|
||||
"Builtin" : "Sisäänrakennettu",
|
||||
"None" : "Ei mitään",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -40,6 +42,7 @@ OC.L10N.register(
|
||||
"Region" : "Alue",
|
||||
"Enable SSL" : "Käytä SSL:ää",
|
||||
"Enable Path Style" : "Aktivoi polun tyyli",
|
||||
"Legacy (v2) authentication" : "Vanha (v2) tunnistautuminen",
|
||||
"WebDAV" : "WebDAV",
|
||||
"URL" : "Verkko-osoite",
|
||||
"Remote subfolder" : "Etäalikansio",
|
||||
@@ -106,12 +109,9 @@ OC.L10N.register(
|
||||
"Grant access" : "Salli pääsy",
|
||||
"Error configuring OAuth2" : "Virhe OAuth2:n asetuksia tehdessä",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Pääsyavain",
|
||||
"Secret key" : "Salainen avain",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "Asiakkaan tunniste",
|
||||
"Client secret" : "Asiakassalaisuus",
|
||||
"Legacy (v2) authentication" : "Vanha (v2) tunnistautuminen",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "cULR tuki PHPsta ei ole aktivoitu tai asennettu. Kohteen %s liittäminen ei ole mahdollista. Ota yhteyttä järjestelmänvalvojaan asentaaksesi puuttuvan osan.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "FTP tuki PHPsta ei ole aktivoitu tai asennettu. Kohteen %s liittäminen ei ole mahdollista. Ota yhteyttä järjestelmänvalvojaan asentaaksesi puuttuvan osan.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "\"%1$s\" on asentamatta. Kohdetta %2$s ei voi liittää. Pyydä järjestemän ylläpitäjää asentamaan puuttuvat osat.",
|
||||
|
||||
@@ -11,6 +11,8 @@
|
||||
"Unsatisfied backend parameters" : "Riittämättömät tietovaraston parametrit",
|
||||
"Unsatisfied authentication mechanism parameters" : "Riittämättömät tunnistautumismekanismin parametrit",
|
||||
"Insufficient data: %s" : "Puutteellinen data: %s",
|
||||
"Access key" : "Pääsyavain",
|
||||
"Secret key" : "Salainen avain",
|
||||
"Builtin" : "Sisäänrakennettu",
|
||||
"None" : "Ei mitään",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -38,6 +40,7 @@
|
||||
"Region" : "Alue",
|
||||
"Enable SSL" : "Käytä SSL:ää",
|
||||
"Enable Path Style" : "Aktivoi polun tyyli",
|
||||
"Legacy (v2) authentication" : "Vanha (v2) tunnistautuminen",
|
||||
"WebDAV" : "WebDAV",
|
||||
"URL" : "Verkko-osoite",
|
||||
"Remote subfolder" : "Etäalikansio",
|
||||
@@ -104,12 +107,9 @@
|
||||
"Grant access" : "Salli pääsy",
|
||||
"Error configuring OAuth2" : "Virhe OAuth2:n asetuksia tehdessä",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Pääsyavain",
|
||||
"Secret key" : "Salainen avain",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "Asiakkaan tunniste",
|
||||
"Client secret" : "Asiakassalaisuus",
|
||||
"Legacy (v2) authentication" : "Vanha (v2) tunnistautuminen",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "cULR tuki PHPsta ei ole aktivoitu tai asennettu. Kohteen %s liittäminen ei ole mahdollista. Ota yhteyttä järjestelmänvalvojaan asentaaksesi puuttuvan osan.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "FTP tuki PHPsta ei ole aktivoitu tai asennettu. Kohteen %s liittäminen ei ole mahdollista. Ota yhteyttä järjestelmänvalvojaan asentaaksesi puuttuvan osan.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "\"%1$s\" on asentamatta. Kohdetta %2$s ei voi liittää. Pyydä järjestemän ylläpitäjää asentamaan puuttuvat osat.",
|
||||
|
||||
@@ -15,6 +15,8 @@ OC.L10N.register(
|
||||
"Unsatisfied authentication mechanism parameters" : "Paramètres pour la méthode d'authentification incorrects",
|
||||
"Insufficient data: %s" : "Données insuffisantes : %s",
|
||||
"Storage with ID \"%d\" is not editable by non-admins" : "Le support de stockage avec l'ID \"%d\" n'est pas modifiable par les non-administrateurs.",
|
||||
"Access key" : "Clé d'accès",
|
||||
"Secret key" : "Clé secrète",
|
||||
"Builtin" : "Intégré",
|
||||
"None" : "Aucun",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -48,6 +50,7 @@ OC.L10N.register(
|
||||
"Storage Class" : "Classe de stockage",
|
||||
"Enable SSL" : "Activer SSL",
|
||||
"Enable Path Style" : "Activer Path Style",
|
||||
"Legacy (v2) authentication" : "Authentification héritée (v2)",
|
||||
"Enable multipart copy" : "Activer la copie multiple",
|
||||
"Use presigned S3 url" : "Utiliser une URL S3 pré-signée",
|
||||
"SSE-C encryption key" : "Clé de chiffrement SSE-C",
|
||||
@@ -168,12 +171,9 @@ OC.L10N.register(
|
||||
"Grant access" : "Autoriser l’accès",
|
||||
"Error configuring OAuth2" : "Erreur lors de la configuration de OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Clé d'accès",
|
||||
"Secret key" : "Clé secrète",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID Client",
|
||||
"Client secret" : "Secret client",
|
||||
"Legacy (v2) authentication" : "Authentification héritée (v2)",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Le support cURL dans PHP n'est pas activé ou installé. Le montage de %s n'est pas possible. Veuillez demander à votre administrateur système de l'installer.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Le support FTP dans PHP n'est pas activé ou installé. Le montage de %s n'est pas possible. Merci de demander à votre administrateur de l'installer.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "\"%1$s\" n'est pas installé. Le montage de %2$s n'est pas possible. Merci de demander à l'administrateur système de l'installer.",
|
||||
|
||||
@@ -13,6 +13,8 @@
|
||||
"Unsatisfied authentication mechanism parameters" : "Paramètres pour la méthode d'authentification incorrects",
|
||||
"Insufficient data: %s" : "Données insuffisantes : %s",
|
||||
"Storage with ID \"%d\" is not editable by non-admins" : "Le support de stockage avec l'ID \"%d\" n'est pas modifiable par les non-administrateurs.",
|
||||
"Access key" : "Clé d'accès",
|
||||
"Secret key" : "Clé secrète",
|
||||
"Builtin" : "Intégré",
|
||||
"None" : "Aucun",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -46,6 +48,7 @@
|
||||
"Storage Class" : "Classe de stockage",
|
||||
"Enable SSL" : "Activer SSL",
|
||||
"Enable Path Style" : "Activer Path Style",
|
||||
"Legacy (v2) authentication" : "Authentification héritée (v2)",
|
||||
"Enable multipart copy" : "Activer la copie multiple",
|
||||
"Use presigned S3 url" : "Utiliser une URL S3 pré-signée",
|
||||
"SSE-C encryption key" : "Clé de chiffrement SSE-C",
|
||||
@@ -166,12 +169,9 @@
|
||||
"Grant access" : "Autoriser l’accès",
|
||||
"Error configuring OAuth2" : "Erreur lors de la configuration de OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Clé d'accès",
|
||||
"Secret key" : "Clé secrète",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID Client",
|
||||
"Client secret" : "Secret client",
|
||||
"Legacy (v2) authentication" : "Authentification héritée (v2)",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Le support cURL dans PHP n'est pas activé ou installé. Le montage de %s n'est pas possible. Veuillez demander à votre administrateur système de l'installer.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Le support FTP dans PHP n'est pas activé ou installé. Le montage de %s n'est pas possible. Merci de demander à votre administrateur de l'installer.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "\"%1$s\" n'est pas installé. Le montage de %2$s n'est pas possible. Merci de demander à l'administrateur système de l'installer.",
|
||||
|
||||
@@ -15,6 +15,8 @@ OC.L10N.register(
|
||||
"Unsatisfied authentication mechanism parameters" : "Paraiméadair sásra fíordheimhnithe neamhshásta",
|
||||
"Insufficient data: %s" : "Sonraí neamhleor: %s",
|
||||
"Storage with ID \"%d\" is not editable by non-admins" : "Ní féidir le daoine nach riarthóirí iad stóráil le haitheantas \"%d\" a chur in eagar",
|
||||
"Access key" : "Eochair rochtana",
|
||||
"Secret key" : "Eochair rúnda",
|
||||
"Builtin" : "Tógtha",
|
||||
"None" : "aon cheann",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -48,6 +50,7 @@ OC.L10N.register(
|
||||
"Storage Class" : "Rang Stórála",
|
||||
"Enable SSL" : "Cumasaigh SSL",
|
||||
"Enable Path Style" : "Cumasaigh Conair Stíl",
|
||||
"Legacy (v2) authentication" : "Fíordheimhniú oidhreacht (v2).",
|
||||
"Enable multipart copy" : "Cumasaigh cóip ilpháirteach",
|
||||
"Use presigned S3 url" : "Úsáid url S3 forordaithe",
|
||||
"SSE-C encryption key" : "Eochair criptithe SSE-C",
|
||||
@@ -168,12 +171,9 @@ OC.L10N.register(
|
||||
"Grant access" : "Deonaigh rochtain",
|
||||
"Error configuring OAuth2" : "Earráid agus OAuth2 á chumrú",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Eochair rochtana",
|
||||
"Secret key" : "Eochair rúnda",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "Aitheantas Cliant",
|
||||
"Client secret" : "Rún an chliaint",
|
||||
"Legacy (v2) authentication" : "Fíordheimhniú oidhreacht (v2).",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Níl an tacaíocht cURL i PHP cumasaithe nó suiteáilte. Ní féidir %s a shuiteáil. Iarr ar do riarthóir córais é a shuiteáil.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Níl an tacaíocht FTP i PHP cumasaithe nó suiteáilte. Ní féidir %s a shuiteáil. Iarr ar do riarthóir córais é a shuiteáil.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "Níl \"%1$s\" suiteáilte. Ní féidir %2$s a shuiteáil. Iarr ar do riarthóir córais é a shuiteáil.",
|
||||
|
||||
@@ -13,6 +13,8 @@
|
||||
"Unsatisfied authentication mechanism parameters" : "Paraiméadair sásra fíordheimhnithe neamhshásta",
|
||||
"Insufficient data: %s" : "Sonraí neamhleor: %s",
|
||||
"Storage with ID \"%d\" is not editable by non-admins" : "Ní féidir le daoine nach riarthóirí iad stóráil le haitheantas \"%d\" a chur in eagar",
|
||||
"Access key" : "Eochair rochtana",
|
||||
"Secret key" : "Eochair rúnda",
|
||||
"Builtin" : "Tógtha",
|
||||
"None" : "aon cheann",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -46,6 +48,7 @@
|
||||
"Storage Class" : "Rang Stórála",
|
||||
"Enable SSL" : "Cumasaigh SSL",
|
||||
"Enable Path Style" : "Cumasaigh Conair Stíl",
|
||||
"Legacy (v2) authentication" : "Fíordheimhniú oidhreacht (v2).",
|
||||
"Enable multipart copy" : "Cumasaigh cóip ilpháirteach",
|
||||
"Use presigned S3 url" : "Úsáid url S3 forordaithe",
|
||||
"SSE-C encryption key" : "Eochair criptithe SSE-C",
|
||||
@@ -166,12 +169,9 @@
|
||||
"Grant access" : "Deonaigh rochtain",
|
||||
"Error configuring OAuth2" : "Earráid agus OAuth2 á chumrú",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Eochair rochtana",
|
||||
"Secret key" : "Eochair rúnda",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "Aitheantas Cliant",
|
||||
"Client secret" : "Rún an chliaint",
|
||||
"Legacy (v2) authentication" : "Fíordheimhniú oidhreacht (v2).",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Níl an tacaíocht cURL i PHP cumasaithe nó suiteáilte. Ní féidir %s a shuiteáil. Iarr ar do riarthóir córais é a shuiteáil.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Níl an tacaíocht FTP i PHP cumasaithe nó suiteáilte. Ní féidir %s a shuiteáil. Iarr ar do riarthóir córais é a shuiteáil.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "Níl \"%1$s\" suiteáilte. Ní féidir %2$s a shuiteáil. Iarr ar do riarthóir córais é a shuiteáil.",
|
||||
|
||||
@@ -15,6 +15,8 @@ OC.L10N.register(
|
||||
"Unsatisfied authentication mechanism parameters" : "Os parámetros do mecanismo de autenticación non son satisfactorios",
|
||||
"Insufficient data: %s" : "Faltan datos: %s",
|
||||
"Storage with ID \"%d\" is not editable by non-admins" : "O almacenamento co ID «%d» non pode ser editado por non pertencentes á administración do sitio",
|
||||
"Access key" : "Chave de acceso",
|
||||
"Secret key" : "Chave secreta",
|
||||
"Builtin" : "Integrado",
|
||||
"None" : "Ningún",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -48,6 +50,7 @@ OC.L10N.register(
|
||||
"Storage Class" : "Clase de almacenamento",
|
||||
"Enable SSL" : "Activar SSL",
|
||||
"Enable Path Style" : "Activar o estilo de ruta",
|
||||
"Legacy (v2) authentication" : "Autenticación (v2) estilo antigo",
|
||||
"Enable multipart copy" : "Activar a copia de múltiples partes",
|
||||
"Use presigned S3 url" : "Empregar o URL S3 preasinado",
|
||||
"SSE-C encryption key" : "Chave de cifraxe SSE-C",
|
||||
@@ -168,12 +171,9 @@ OC.L10N.register(
|
||||
"Grant access" : "Permitir o acceso",
|
||||
"Error configuring OAuth2" : "Produciuse un erro ao configurar OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Chave de acceso",
|
||||
"Secret key" : "Chave secreta",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID de cliente",
|
||||
"Client secret" : "Segredo do cliente",
|
||||
"Legacy (v2) authentication" : "Autenticación (v2) estilo antigo",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "A compatibilidade de cURL en PHP non está activada, ou non está instalado. Non é posíbel a montaxe de %s. Consulte coa administración do sistema para instalalo.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "A compatibilidade de FTP en PHP non está activada, ou non está instalado. Non é posíbel a montaxe de %s. Consulte coa administración do sistema para instalalo.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "«%1$s» non está instalado. Non é posíbel a montaxe de %2$s. Consulte coa administración do sistema para instalalo.",
|
||||
|
||||
@@ -13,6 +13,8 @@
|
||||
"Unsatisfied authentication mechanism parameters" : "Os parámetros do mecanismo de autenticación non son satisfactorios",
|
||||
"Insufficient data: %s" : "Faltan datos: %s",
|
||||
"Storage with ID \"%d\" is not editable by non-admins" : "O almacenamento co ID «%d» non pode ser editado por non pertencentes á administración do sitio",
|
||||
"Access key" : "Chave de acceso",
|
||||
"Secret key" : "Chave secreta",
|
||||
"Builtin" : "Integrado",
|
||||
"None" : "Ningún",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -46,6 +48,7 @@
|
||||
"Storage Class" : "Clase de almacenamento",
|
||||
"Enable SSL" : "Activar SSL",
|
||||
"Enable Path Style" : "Activar o estilo de ruta",
|
||||
"Legacy (v2) authentication" : "Autenticación (v2) estilo antigo",
|
||||
"Enable multipart copy" : "Activar a copia de múltiples partes",
|
||||
"Use presigned S3 url" : "Empregar o URL S3 preasinado",
|
||||
"SSE-C encryption key" : "Chave de cifraxe SSE-C",
|
||||
@@ -166,12 +169,9 @@
|
||||
"Grant access" : "Permitir o acceso",
|
||||
"Error configuring OAuth2" : "Produciuse un erro ao configurar OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Chave de acceso",
|
||||
"Secret key" : "Chave secreta",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID de cliente",
|
||||
"Client secret" : "Segredo do cliente",
|
||||
"Legacy (v2) authentication" : "Autenticación (v2) estilo antigo",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "A compatibilidade de cURL en PHP non está activada, ou non está instalado. Non é posíbel a montaxe de %s. Consulte coa administración do sistema para instalalo.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "A compatibilidade de FTP en PHP non está activada, ou non está instalado. Non é posíbel a montaxe de %s. Consulte coa administración do sistema para instalalo.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "«%1$s» non está instalado. Non é posíbel a montaxe de %2$s. Consulte coa administración do sistema para instalalo.",
|
||||
|
||||
@@ -11,6 +11,8 @@ OC.L10N.register(
|
||||
"Unsatisfied backend parameters" : "פרמטרים צד אחורי אינם מספקים",
|
||||
"Unsatisfied authentication mechanism parameters" : "פרמטרים של מכניזם אימות אינם מספקים",
|
||||
"Insufficient data: %s" : "מידע לא מספק: %s",
|
||||
"Access key" : "מפתח כניסה",
|
||||
"Secret key" : "מפתח סודי",
|
||||
"Builtin" : "מובנה",
|
||||
"None" : "כלום",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -37,6 +39,7 @@ OC.L10N.register(
|
||||
"Region" : "אזור",
|
||||
"Enable SSL" : "הפעלת SSL",
|
||||
"Enable Path Style" : "אהפעלת סגנון נתיב",
|
||||
"Legacy (v2) authentication" : "אימות מיושן (v2)",
|
||||
"WebDAV" : "WebDAV",
|
||||
"URL" : "נתיב אינטרנט",
|
||||
"Remote subfolder" : "תיקיית משנה רחוקה",
|
||||
@@ -98,12 +101,9 @@ OC.L10N.register(
|
||||
"Grant access" : "הענקת גישה",
|
||||
"Error configuring OAuth2" : "שגיאה בתצורת OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "מפתח כניסה",
|
||||
"Secret key" : "מפתח סודי",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "זיהוי לקוח",
|
||||
"Client secret" : "סוד לקוח",
|
||||
"Legacy (v2) authentication" : "אימות מיושן (v2)",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "התמיכה של cURL ב־PHP אינה מופעלת או מותקנת. אין אפשרות לעגן את %s. נא לבקש ממנהל המערכת שלך להתקין אותה.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "התמיכה של FTP ב־PHP אינה מופעלת או מותקנת. אין אפשרות לעגן את %s. נא לבקש ממנהל המערכת שלך להתקין אותה.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "„%1$s” אינו מותקן. העיגון של %2$s אינו אפשרי. נא לבקש ממנהל המערכת להתקין אותו.",
|
||||
|
||||
@@ -9,6 +9,8 @@
|
||||
"Unsatisfied backend parameters" : "פרמטרים צד אחורי אינם מספקים",
|
||||
"Unsatisfied authentication mechanism parameters" : "פרמטרים של מכניזם אימות אינם מספקים",
|
||||
"Insufficient data: %s" : "מידע לא מספק: %s",
|
||||
"Access key" : "מפתח כניסה",
|
||||
"Secret key" : "מפתח סודי",
|
||||
"Builtin" : "מובנה",
|
||||
"None" : "כלום",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -35,6 +37,7 @@
|
||||
"Region" : "אזור",
|
||||
"Enable SSL" : "הפעלת SSL",
|
||||
"Enable Path Style" : "אהפעלת סגנון נתיב",
|
||||
"Legacy (v2) authentication" : "אימות מיושן (v2)",
|
||||
"WebDAV" : "WebDAV",
|
||||
"URL" : "נתיב אינטרנט",
|
||||
"Remote subfolder" : "תיקיית משנה רחוקה",
|
||||
@@ -96,12 +99,9 @@
|
||||
"Grant access" : "הענקת גישה",
|
||||
"Error configuring OAuth2" : "שגיאה בתצורת OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "מפתח כניסה",
|
||||
"Secret key" : "מפתח סודי",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "זיהוי לקוח",
|
||||
"Client secret" : "סוד לקוח",
|
||||
"Legacy (v2) authentication" : "אימות מיושן (v2)",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "התמיכה של cURL ב־PHP אינה מופעלת או מותקנת. אין אפשרות לעגן את %s. נא לבקש ממנהל המערכת שלך להתקין אותה.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "התמיכה של FTP ב־PHP אינה מופעלת או מותקנת. אין אפשרות לעגן את %s. נא לבקש ממנהל המערכת שלך להתקין אותה.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "„%1$s” אינו מותקן. העיגון של %2$s אינו אפשרי. נא לבקש ממנהל המערכת להתקין אותו.",
|
||||
|
||||
@@ -15,6 +15,8 @@ OC.L10N.register(
|
||||
"Unsatisfied authentication mechanism parameters" : "Neispunjeni parametri mehanizma autentifikacije",
|
||||
"Insufficient data: %s" : "Nedovoljno podataka: %s",
|
||||
"Storage with ID \"%d\" is not editable by non-admins" : "Pohranu s ID-om „%d” ne mogu uređivati korisnici koji nisu administratori",
|
||||
"Access key" : "Pristupni ključ",
|
||||
"Secret key" : "Tajni ključ",
|
||||
"Builtin" : "Ugrađen",
|
||||
"None" : "Nema",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -48,6 +50,7 @@ OC.L10N.register(
|
||||
"Storage Class" : "Razred pohrane",
|
||||
"Enable SSL" : "Omogući SSL",
|
||||
"Enable Path Style" : "Omogući Path Style",
|
||||
"Legacy (v2) authentication" : "Naslijeđena (v2) autentifikacija",
|
||||
"Enable multipart copy" : "Omogući višedijelno kopiranje",
|
||||
"Use presigned S3 url" : "Koristi unaprijed potpisani S3 URL",
|
||||
"SSE-C encryption key" : "SSE-C enkripcijski ključ",
|
||||
@@ -168,12 +171,9 @@ OC.L10N.register(
|
||||
"Grant access" : "Dodijeli pristup",
|
||||
"Error configuring OAuth2" : "Pogreška pri konfiguriranju OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Pristupni ključ",
|
||||
"Secret key" : "Tajni ključ",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID klijenta",
|
||||
"Client secret" : "Tajni ključ klijenta",
|
||||
"Legacy (v2) authentication" : "Naslijeđena (v2) autentifikacija",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Podrška za cURL u PHP-u nije omogućena niti instalirana. Nije moguće postaviti %s. Zatražite od svog administratora sustava da je instalira.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Podrška za FTP u PHP-u nije omogućena niti instalirana. Nije moguće postaviti %s. Zatražite od svog administratora sustava da je instalira.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "„%1$s” nije instaliran. Nije moguće postaviti %2$s. Zatražite od svog administratora sustava da ga instalira.",
|
||||
|
||||
@@ -13,6 +13,8 @@
|
||||
"Unsatisfied authentication mechanism parameters" : "Neispunjeni parametri mehanizma autentifikacije",
|
||||
"Insufficient data: %s" : "Nedovoljno podataka: %s",
|
||||
"Storage with ID \"%d\" is not editable by non-admins" : "Pohranu s ID-om „%d” ne mogu uređivati korisnici koji nisu administratori",
|
||||
"Access key" : "Pristupni ključ",
|
||||
"Secret key" : "Tajni ključ",
|
||||
"Builtin" : "Ugrađen",
|
||||
"None" : "Nema",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -46,6 +48,7 @@
|
||||
"Storage Class" : "Razred pohrane",
|
||||
"Enable SSL" : "Omogući SSL",
|
||||
"Enable Path Style" : "Omogući Path Style",
|
||||
"Legacy (v2) authentication" : "Naslijeđena (v2) autentifikacija",
|
||||
"Enable multipart copy" : "Omogući višedijelno kopiranje",
|
||||
"Use presigned S3 url" : "Koristi unaprijed potpisani S3 URL",
|
||||
"SSE-C encryption key" : "SSE-C enkripcijski ključ",
|
||||
@@ -166,12 +169,9 @@
|
||||
"Grant access" : "Dodijeli pristup",
|
||||
"Error configuring OAuth2" : "Pogreška pri konfiguriranju OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Pristupni ključ",
|
||||
"Secret key" : "Tajni ključ",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID klijenta",
|
||||
"Client secret" : "Tajni ključ klijenta",
|
||||
"Legacy (v2) authentication" : "Naslijeđena (v2) autentifikacija",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Podrška za cURL u PHP-u nije omogućena niti instalirana. Nije moguće postaviti %s. Zatražite od svog administratora sustava da je instalira.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Podrška za FTP u PHP-u nije omogućena niti instalirana. Nije moguće postaviti %s. Zatražite od svog administratora sustava da je instalira.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "„%1$s” nije instaliran. Nije moguće postaviti %2$s. Zatražite od svog administratora sustava da ga instalira.",
|
||||
|
||||
@@ -15,6 +15,8 @@ OC.L10N.register(
|
||||
"Unsatisfied authentication mechanism parameters" : "Elégtelen paraméterek a hitelesítési mechanizmushoz",
|
||||
"Insufficient data: %s" : "Elégtelen adatok: %s",
|
||||
"Storage with ID \"%d\" is not editable by non-admins" : "A(z) „%d” azonosítójú tárolót csak rendszergazdák szerkeszthetik",
|
||||
"Access key" : "Hozzáférési kulcs",
|
||||
"Secret key" : "Titkos kulcs",
|
||||
"Builtin" : "Beépített",
|
||||
"None" : "Egyik sem",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -47,6 +49,7 @@ OC.L10N.register(
|
||||
"Storage Class" : "Tároló osztály",
|
||||
"Enable SSL" : "SSL engedélyezése",
|
||||
"Enable Path Style" : "Útvonal stílus engedélyezés",
|
||||
"Legacy (v2) authentication" : "Örökölt (v2) hitelesítés",
|
||||
"Enable multipart copy" : "Többrészes másolás engedélyezése",
|
||||
"SSE-C encryption key" : "SSE-C titkosítási kulcsa",
|
||||
"WebDAV" : "WebDAV",
|
||||
@@ -140,12 +143,9 @@ OC.L10N.register(
|
||||
"Grant access" : "Hozzáférés megadása",
|
||||
"Error configuring OAuth2" : "OAuth2 beállítási hiba",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Hozzáférési kulcs",
|
||||
"Secret key" : "Titkos kulcs",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "Kliensazonosító",
|
||||
"Client secret" : "Kliens titka",
|
||||
"Legacy (v2) authentication" : "Örökölt (v2) hitelesítés",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "A PHP cURL támogatása nincs engedélyezve vagy telepítve. A(z) %s csatolása nem lehetséges. Kérje meg a rendszergazdát, hogy telepítse.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "A PHP FTP támogatása nincs engedélyezve vagy telepítve. A(z)%s csatolása nem lehetséges. Kérje meg a rendszergazdát, hogy telepítse.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "A(z) „%1$s” nincs telepítve. A(z) %2$s csatolása nem lehetséges. Kérje meg a rendszergazdát, hogy telepítse.",
|
||||
|
||||
@@ -13,6 +13,8 @@
|
||||
"Unsatisfied authentication mechanism parameters" : "Elégtelen paraméterek a hitelesítési mechanizmushoz",
|
||||
"Insufficient data: %s" : "Elégtelen adatok: %s",
|
||||
"Storage with ID \"%d\" is not editable by non-admins" : "A(z) „%d” azonosítójú tárolót csak rendszergazdák szerkeszthetik",
|
||||
"Access key" : "Hozzáférési kulcs",
|
||||
"Secret key" : "Titkos kulcs",
|
||||
"Builtin" : "Beépített",
|
||||
"None" : "Egyik sem",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -45,6 +47,7 @@
|
||||
"Storage Class" : "Tároló osztály",
|
||||
"Enable SSL" : "SSL engedélyezése",
|
||||
"Enable Path Style" : "Útvonal stílus engedélyezés",
|
||||
"Legacy (v2) authentication" : "Örökölt (v2) hitelesítés",
|
||||
"Enable multipart copy" : "Többrészes másolás engedélyezése",
|
||||
"SSE-C encryption key" : "SSE-C titkosítási kulcsa",
|
||||
"WebDAV" : "WebDAV",
|
||||
@@ -138,12 +141,9 @@
|
||||
"Grant access" : "Hozzáférés megadása",
|
||||
"Error configuring OAuth2" : "OAuth2 beállítási hiba",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Hozzáférési kulcs",
|
||||
"Secret key" : "Titkos kulcs",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "Kliensazonosító",
|
||||
"Client secret" : "Kliens titka",
|
||||
"Legacy (v2) authentication" : "Örökölt (v2) hitelesítés",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "A PHP cURL támogatása nincs engedélyezve vagy telepítve. A(z) %s csatolása nem lehetséges. Kérje meg a rendszergazdát, hogy telepítse.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "A PHP FTP támogatása nincs engedélyezve vagy telepítve. A(z)%s csatolása nem lehetséges. Kérje meg a rendszergazdát, hogy telepítse.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "A(z) „%1$s” nincs telepítve. A(z) %2$s csatolása nem lehetséges. Kérje meg a rendszergazdát, hogy telepítse.",
|
||||
|
||||
@@ -15,6 +15,8 @@ OC.L10N.register(
|
||||
"Unsatisfied authentication mechanism parameters" : "Parameter mekanisme otentikasi tidak lengkap",
|
||||
"Insufficient data: %s" : "Data tidak cukup: %s",
|
||||
"Storage with ID \"%d\" is not editable by non-admins" : "Penyimpanan dengan ID \"%d\" tidak dapat diedit oleh non-admin",
|
||||
"Access key" : "Kunci akses",
|
||||
"Secret key" : "Kunci rahasia",
|
||||
"Builtin" : "Internal",
|
||||
"None" : "Tidak ada",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -48,6 +50,7 @@ OC.L10N.register(
|
||||
"Storage Class" : "Kelas Penyimpanan",
|
||||
"Enable SSL" : "Aktifkan SSL",
|
||||
"Enable Path Style" : "Aktifkan Gaya Path",
|
||||
"Legacy (v2) authentication" : "Autentikasi legacy (v2)",
|
||||
"Enable multipart copy" : "Aktifkan penyalinan multipart",
|
||||
"Use presigned S3 url" : "Gunakan URL S3 pratinanda",
|
||||
"SSE-C encryption key" : "Kunci enkripsi SSE-C",
|
||||
@@ -168,12 +171,9 @@ OC.L10N.register(
|
||||
"Grant access" : "Berikan hak akses",
|
||||
"Error configuring OAuth2" : "Kesalahan mengkonfigurasi OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Kunci akses",
|
||||
"Secret key" : "Kunci rahasia",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID Klien",
|
||||
"Client secret" : "Rahasia klien",
|
||||
"Legacy (v2) authentication" : "Autentikasi legacy (v2)",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Dukungan cURL di PHP tidak diaktifkan atau terpasang. Mengaitkan %s tidak memungkinkan. Harap tanyakan administrator sistem Anda untuk memasangnya.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Dukungan FTP di PHP tidak diaktifkan atau terpasang. Mengaitkan %s tidak memungkinkan. Harap tanya administrator sistem Anda untuk memasangnya.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "\"%1$s\" tidak diinstal. Mount %2$s tidak dimungkinkan. Silakan minta administrator sistem Anda untuk menginstalnya.",
|
||||
|
||||
@@ -13,6 +13,8 @@
|
||||
"Unsatisfied authentication mechanism parameters" : "Parameter mekanisme otentikasi tidak lengkap",
|
||||
"Insufficient data: %s" : "Data tidak cukup: %s",
|
||||
"Storage with ID \"%d\" is not editable by non-admins" : "Penyimpanan dengan ID \"%d\" tidak dapat diedit oleh non-admin",
|
||||
"Access key" : "Kunci akses",
|
||||
"Secret key" : "Kunci rahasia",
|
||||
"Builtin" : "Internal",
|
||||
"None" : "Tidak ada",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -46,6 +48,7 @@
|
||||
"Storage Class" : "Kelas Penyimpanan",
|
||||
"Enable SSL" : "Aktifkan SSL",
|
||||
"Enable Path Style" : "Aktifkan Gaya Path",
|
||||
"Legacy (v2) authentication" : "Autentikasi legacy (v2)",
|
||||
"Enable multipart copy" : "Aktifkan penyalinan multipart",
|
||||
"Use presigned S3 url" : "Gunakan URL S3 pratinanda",
|
||||
"SSE-C encryption key" : "Kunci enkripsi SSE-C",
|
||||
@@ -166,12 +169,9 @@
|
||||
"Grant access" : "Berikan hak akses",
|
||||
"Error configuring OAuth2" : "Kesalahan mengkonfigurasi OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Kunci akses",
|
||||
"Secret key" : "Kunci rahasia",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID Klien",
|
||||
"Client secret" : "Rahasia klien",
|
||||
"Legacy (v2) authentication" : "Autentikasi legacy (v2)",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Dukungan cURL di PHP tidak diaktifkan atau terpasang. Mengaitkan %s tidak memungkinkan. Harap tanyakan administrator sistem Anda untuk memasangnya.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Dukungan FTP di PHP tidak diaktifkan atau terpasang. Mengaitkan %s tidak memungkinkan. Harap tanya administrator sistem Anda untuk memasangnya.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "\"%1$s\" tidak diinstal. Mount %2$s tidak dimungkinkan. Silakan minta administrator sistem Anda untuk menginstalnya.",
|
||||
|
||||
@@ -13,6 +13,8 @@ OC.L10N.register(
|
||||
"Unsatisfied authentication mechanism parameters" : "Óuppfyllt viðföng auðkenningartækni",
|
||||
"Insufficient data: %s" : "Ónóg gögn: %s",
|
||||
"Storage with ID \"%d\" is not editable by non-admins" : "Geymslan með auðkennið '%d' er ekki breytanleg af venjulegum notanda",
|
||||
"Access key" : "Aðgangslykill",
|
||||
"Secret key" : "Leynilykill",
|
||||
"Builtin" : "Innbyggt",
|
||||
"None" : "Ekkert",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -44,6 +46,7 @@ OC.L10N.register(
|
||||
"Storage Class" : "Flokkur geymslurýmis",
|
||||
"Enable SSL" : "Virkja SSL",
|
||||
"Enable Path Style" : "Virkja slóðastíl",
|
||||
"Legacy (v2) authentication" : "Eldri (v2) auðkenning",
|
||||
"WebDAV" : "WebDAV",
|
||||
"URL" : "Slóð (URL)",
|
||||
"Remote subfolder" : "Fjartengd undirmappa",
|
||||
@@ -126,12 +129,9 @@ OC.L10N.register(
|
||||
"Grant access" : "Veita aðgengi",
|
||||
"Error configuring OAuth2" : "Villa við uppsetningu OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Aðgangslykill",
|
||||
"Secret key" : "Leynilykill",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "Biðlaraauðkenni",
|
||||
"Client secret" : "Leynilykill biðlara",
|
||||
"Legacy (v2) authentication" : "Eldri (v2) auðkenning",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Stuðningur við cURL í PHP er ekki virkjaður eða ekki uppsettur. Tenging %s í skráakerfi er ekki möguleg. Biddu kerfisstjórann þinn um að setja þetta upp.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Stuðningur við FTP í PHP er ekki virkjaður eða ekki uppsettur. Tenging %s í skráakerfi er ekki möguleg. Biddu kerfisstjórann þinn um að setja þetta upp.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "\"%1$s\" er ekki uppsett. Tenging %2$s í skráakerfi er ekki möguleg. Biddu kerfisstjórann þinn um að setja þetta upp.",
|
||||
|
||||
@@ -11,6 +11,8 @@
|
||||
"Unsatisfied authentication mechanism parameters" : "Óuppfyllt viðföng auðkenningartækni",
|
||||
"Insufficient data: %s" : "Ónóg gögn: %s",
|
||||
"Storage with ID \"%d\" is not editable by non-admins" : "Geymslan með auðkennið '%d' er ekki breytanleg af venjulegum notanda",
|
||||
"Access key" : "Aðgangslykill",
|
||||
"Secret key" : "Leynilykill",
|
||||
"Builtin" : "Innbyggt",
|
||||
"None" : "Ekkert",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -42,6 +44,7 @@
|
||||
"Storage Class" : "Flokkur geymslurýmis",
|
||||
"Enable SSL" : "Virkja SSL",
|
||||
"Enable Path Style" : "Virkja slóðastíl",
|
||||
"Legacy (v2) authentication" : "Eldri (v2) auðkenning",
|
||||
"WebDAV" : "WebDAV",
|
||||
"URL" : "Slóð (URL)",
|
||||
"Remote subfolder" : "Fjartengd undirmappa",
|
||||
@@ -124,12 +127,9 @@
|
||||
"Grant access" : "Veita aðgengi",
|
||||
"Error configuring OAuth2" : "Villa við uppsetningu OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Aðgangslykill",
|
||||
"Secret key" : "Leynilykill",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "Biðlaraauðkenni",
|
||||
"Client secret" : "Leynilykill biðlara",
|
||||
"Legacy (v2) authentication" : "Eldri (v2) auðkenning",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Stuðningur við cURL í PHP er ekki virkjaður eða ekki uppsettur. Tenging %s í skráakerfi er ekki möguleg. Biddu kerfisstjórann þinn um að setja þetta upp.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Stuðningur við FTP í PHP er ekki virkjaður eða ekki uppsettur. Tenging %s í skráakerfi er ekki möguleg. Biddu kerfisstjórann þinn um að setja þetta upp.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "\"%1$s\" er ekki uppsett. Tenging %2$s í skráakerfi er ekki möguleg. Biddu kerfisstjórann þinn um að setja þetta upp.",
|
||||
|
||||
@@ -15,6 +15,8 @@ OC.L10N.register(
|
||||
"Unsatisfied authentication mechanism parameters" : "Parametri del meccanismo di autenticazione non soddisfatti",
|
||||
"Insufficient data: %s" : "Dati insufficienti: %s",
|
||||
"Storage with ID \"%d\" is not editable by non-admins" : "L'archiviazione con ID \"%d\" non è modificabile dai non amministratori",
|
||||
"Access key" : "Chiave di accesso",
|
||||
"Secret key" : "Chiave segreta",
|
||||
"Builtin" : "Integrata",
|
||||
"None" : "Nessuno",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -48,6 +50,7 @@ OC.L10N.register(
|
||||
"Storage Class" : "Classe di archiviazione",
|
||||
"Enable SSL" : "Abilita SSL",
|
||||
"Enable Path Style" : "Abilita stile percorsi",
|
||||
"Legacy (v2) authentication" : "Autenticazione tradizionale (v2)",
|
||||
"Enable multipart copy" : "Attiva copia multiparte",
|
||||
"SSE-C encryption key" : "Chiave di crittografia SSE-C",
|
||||
"WebDAV" : "WebDAV",
|
||||
@@ -148,12 +151,9 @@ OC.L10N.register(
|
||||
"Grant access" : "Concedi l'accesso",
|
||||
"Error configuring OAuth2" : "Errore di configurazione OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Chiave di accesso",
|
||||
"Secret key" : "Chiave segreta",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID client",
|
||||
"Client secret" : "Segreto del client",
|
||||
"Legacy (v2) authentication" : "Autenticazione tradizionale (v2)",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Il supporto cURL di PHP non è abilitato o installato. Impossibile montare %s. Chiedi al tuo amministratore di sistema di installarlo.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Il supporto FTP in PHP non è abilitato o installato. Impossibile montare %s. Chiedi al tuo amministratore di sistema di installarlo.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "\"%1$s\" non è installato. Impossibile montare %2$s. Chiedi al tuo amministratore di sistema di installarlo.",
|
||||
|
||||
@@ -13,6 +13,8 @@
|
||||
"Unsatisfied authentication mechanism parameters" : "Parametri del meccanismo di autenticazione non soddisfatti",
|
||||
"Insufficient data: %s" : "Dati insufficienti: %s",
|
||||
"Storage with ID \"%d\" is not editable by non-admins" : "L'archiviazione con ID \"%d\" non è modificabile dai non amministratori",
|
||||
"Access key" : "Chiave di accesso",
|
||||
"Secret key" : "Chiave segreta",
|
||||
"Builtin" : "Integrata",
|
||||
"None" : "Nessuno",
|
||||
"OpenStack v2" : "OpenStack v2",
|
||||
@@ -46,6 +48,7 @@
|
||||
"Storage Class" : "Classe di archiviazione",
|
||||
"Enable SSL" : "Abilita SSL",
|
||||
"Enable Path Style" : "Abilita stile percorsi",
|
||||
"Legacy (v2) authentication" : "Autenticazione tradizionale (v2)",
|
||||
"Enable multipart copy" : "Attiva copia multiparte",
|
||||
"SSE-C encryption key" : "Chiave di crittografia SSE-C",
|
||||
"WebDAV" : "WebDAV",
|
||||
@@ -146,12 +149,9 @@
|
||||
"Grant access" : "Concedi l'accesso",
|
||||
"Error configuring OAuth2" : "Errore di configurazione OAuth2",
|
||||
"%s" : "%s",
|
||||
"Access key" : "Chiave di accesso",
|
||||
"Secret key" : "Chiave segreta",
|
||||
"OAuth2" : "OAuth2",
|
||||
"Client ID" : "ID client",
|
||||
"Client secret" : "Segreto del client",
|
||||
"Legacy (v2) authentication" : "Autenticazione tradizionale (v2)",
|
||||
"The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Il supporto cURL di PHP non è abilitato o installato. Impossibile montare %s. Chiedi al tuo amministratore di sistema di installarlo.",
|
||||
"The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Il supporto FTP in PHP non è abilitato o installato. Impossibile montare %s. Chiedi al tuo amministratore di sistema di installarlo.",
|
||||
"\"%1$s\" is not installed. Mounting of %2$s is not possible. Please ask your system administrator to install it." : "\"%1$s\" non è installato. Impossibile montare %2$s. Chiedi al tuo amministratore di sistema di installarlo.",
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user