Compare commits
37 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 89c6af10d1 | |||
| 8c6d314b0e | |||
| ddf79066b9 | |||
| ed3a230403 | |||
| 5dbbe2ccf9 | |||
| 045ad43237 | |||
| 83956e9f04 | |||
| c8380b1b62 | |||
| 5ff62d5baf | |||
| eb5a9085ee | |||
| 3904da98e6 | |||
| e3c2920c18 | |||
| 9b54383532 | |||
| 78cfe3742a | |||
| 9b54b06de5 | |||
| 509784cff2 | |||
| f0f38fd04c | |||
| 9f5c3e39a7 | |||
| a304a54775 | |||
| 8895970019 | |||
| 0a7420d0a4 | |||
| 1a70d192f3 | |||
| 14e837ce11 | |||
| af78da59bc | |||
| dc529fa86d | |||
| a119716a7d | |||
| 44ec45e941 | |||
| 38a42d9ad4 | |||
| aa65c7598e | |||
| cf124e7c75 | |||
| 783e2ac625 | |||
| 7dccf5f257 | |||
| 1425df49d0 | |||
| b0240a43af | |||
| 347d786a14 | |||
| 140bfa2d1f | |||
| e958fa0113 |
@@ -23,7 +23,7 @@ OC.L10N.register(
|
||||
"Could not reload comments" : "Kon reactie niet opnieuw laden",
|
||||
"Failed to mark comments as read" : "Kon reacties niet als gelezen markeren",
|
||||
"Unable to load the comments list" : "Kan reactielijst niet laden",
|
||||
"No comments yet, start the conversation!" : "Nog geen reacties, start de discussie!",
|
||||
"No comments yet, start the conversation!" : "Nog geen reacties, start het gesprek!",
|
||||
"No more messages" : "Geen berichten meer",
|
||||
"Retry" : "Opnieuw proberen",
|
||||
"_1 new comment_::_{unread} new comments_" : ["1 nieuwe reactie","{unread} nieuwe reacties"],
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
"Could not reload comments" : "Kon reactie niet opnieuw laden",
|
||||
"Failed to mark comments as read" : "Kon reacties niet als gelezen markeren",
|
||||
"Unable to load the comments list" : "Kan reactielijst niet laden",
|
||||
"No comments yet, start the conversation!" : "Nog geen reacties, start de discussie!",
|
||||
"No comments yet, start the conversation!" : "Nog geen reacties, start het gesprek!",
|
||||
"No more messages" : "Geen berichten meer",
|
||||
"Retry" : "Opnieuw proberen",
|
||||
"_1 new comment_::_{unread} new comments_" : ["1 nieuwe reactie","{unread} nieuwe reacties"],
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
<name>WebDAV</name>
|
||||
<summary>WebDAV endpoint</summary>
|
||||
<description>WebDAV endpoint</description>
|
||||
<version>1.37.0</version>
|
||||
<version>1.38.0</version>
|
||||
<licence>agpl</licence>
|
||||
<author>owncloud.org</author>
|
||||
<namespace>DAV</namespace>
|
||||
|
||||
@@ -92,7 +92,6 @@ $server = $serverFactory->createServer(
|
||||
}
|
||||
|
||||
$share = $authBackend->getShare();
|
||||
$owner = $share->getShareOwner();
|
||||
$isReadable = $share->getPermissions() & Constants::PERMISSION_READ;
|
||||
$fileId = $share->getNodeId();
|
||||
|
||||
@@ -107,7 +106,7 @@ $server = $serverFactory->createServer(
|
||||
Filesystem::logWarningWhenAddingStorageWrapper($previousLog);
|
||||
|
||||
$rootFolder = Server::get(IRootFolder::class);
|
||||
$userFolder = $rootFolder->getUserFolder($owner);
|
||||
$userFolder = $rootFolder->getUserFolder($share->getSharedBy());
|
||||
$node = $userFolder->getFirstNodeById($fileId);
|
||||
if (!$node) {
|
||||
throw new \Sabre\DAV\Exception\NotFound();
|
||||
|
||||
@@ -99,7 +99,6 @@ $server = $serverFactory->createServer(true, $baseuri, $requestUri, $authPlugin,
|
||||
}
|
||||
|
||||
$share = $authBackend->getShare();
|
||||
$owner = $share->getShareOwner();
|
||||
$isReadable = $share->getPermissions() & Constants::PERMISSION_READ;
|
||||
$fileId = $share->getNodeId();
|
||||
|
||||
@@ -135,7 +134,7 @@ $server = $serverFactory->createServer(true, $baseuri, $requestUri, $authPlugin,
|
||||
Filesystem::logWarningWhenAddingStorageWrapper($previousLog);
|
||||
|
||||
$rootFolder = Server::get(IRootFolder::class);
|
||||
$userFolder = $rootFolder->getUserFolder($owner);
|
||||
$userFolder = $rootFolder->getUserFolder($share->getSharedBy());
|
||||
$node = $userFolder->getFirstNodeById($fileId);
|
||||
if (!$node) {
|
||||
throw new NotFound();
|
||||
|
||||
@@ -389,6 +389,7 @@ return array(
|
||||
'OCA\\DAV\\Migration\\Version1034Date20250605132605' => $baseDir . '/../lib/Migration/Version1034Date20250605132605.php',
|
||||
'OCA\\DAV\\Migration\\Version1034Date20250813093701' => $baseDir . '/../lib/Migration/Version1034Date20250813093701.php',
|
||||
'OCA\\DAV\\Migration\\Version1036Date20251202000000' => $baseDir . '/../lib/Migration/Version1036Date20251202000000.php',
|
||||
'OCA\\DAV\\Migration\\Version1038Date20260302000000' => $baseDir . '/../lib/Migration/Version1038Date20260302000000.php',
|
||||
'OCA\\DAV\\Model\\ExampleEvent' => $baseDir . '/../lib/Model/ExampleEvent.php',
|
||||
'OCA\\DAV\\Paginate\\LimitedCopyIterator' => $baseDir . '/../lib/Paginate/LimitedCopyIterator.php',
|
||||
'OCA\\DAV\\Paginate\\PaginateCache' => $baseDir . '/../lib/Paginate/PaginateCache.php',
|
||||
|
||||
@@ -404,6 +404,7 @@ class ComposerStaticInitDAV
|
||||
'OCA\\DAV\\Migration\\Version1034Date20250605132605' => __DIR__ . '/..' . '/../lib/Migration/Version1034Date20250605132605.php',
|
||||
'OCA\\DAV\\Migration\\Version1034Date20250813093701' => __DIR__ . '/..' . '/../lib/Migration/Version1034Date20250813093701.php',
|
||||
'OCA\\DAV\\Migration\\Version1036Date20251202000000' => __DIR__ . '/..' . '/../lib/Migration/Version1036Date20251202000000.php',
|
||||
'OCA\\DAV\\Migration\\Version1038Date20260302000000' => __DIR__ . '/..' . '/../lib/Migration/Version1038Date20260302000000.php',
|
||||
'OCA\\DAV\\Model\\ExampleEvent' => __DIR__ . '/..' . '/../lib/Model/ExampleEvent.php',
|
||||
'OCA\\DAV\\Paginate\\LimitedCopyIterator' => __DIR__ . '/..' . '/../lib/Paginate/LimitedCopyIterator.php',
|
||||
'OCA\\DAV\\Paginate\\PaginateCache' => __DIR__ . '/..' . '/../lib/Paginate/PaginateCache.php',
|
||||
|
||||
@@ -151,6 +151,7 @@ class CalDavBackend extends AbstractBackend implements SyncSupport, Subscription
|
||||
'{http://apple.com/ns/ical/}calendar-order' => ['calendarorder', 'int'],
|
||||
'{http://apple.com/ns/ical/}calendar-color' => ['calendarcolor', 'string'],
|
||||
'{' . \OCA\DAV\DAV\Sharing\Plugin::NS_NEXTCLOUD . '}deleted-at' => ['deleted_at', 'int'],
|
||||
'{' . \OCA\DAV\DAV\Sharing\Plugin::NS_NEXTCLOUD . '}default-alarm' => ['default_alarm', 'int'],
|
||||
];
|
||||
|
||||
/**
|
||||
|
||||
@@ -43,7 +43,7 @@ class PublicLinkCheckPlugin extends ServerPlugin {
|
||||
}
|
||||
|
||||
public function beforeMethod(RequestInterface $request, ResponseInterface $response) {
|
||||
// verify that the owner didn't have their share permissions revoked
|
||||
// verify that the initiator didn't have their share permissions revoked
|
||||
if ($this->fileInfo && !$this->fileInfo->isShareable()) {
|
||||
throw new NotFound();
|
||||
}
|
||||
|
||||
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
/**
|
||||
* SPDX-FileCopyrightText: 2026 Nextcloud GmbH and Nextcloud contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
*/
|
||||
|
||||
namespace OCA\DAV\Migration;
|
||||
|
||||
use Closure;
|
||||
use OCP\DB\ISchemaWrapper;
|
||||
use OCP\DB\Types;
|
||||
use OCP\Migration\Attributes\AddColumn;
|
||||
use OCP\Migration\Attributes\ColumnType;
|
||||
use OCP\Migration\IOutput;
|
||||
use OCP\Migration\SimpleMigrationStep;
|
||||
|
||||
#[AddColumn(table: 'calendars', name: 'default_alarm', type: ColumnType::STRING)]
|
||||
class Version1038Date20260302000000 extends SimpleMigrationStep {
|
||||
public function changeSchema(IOutput $output, Closure $schemaClosure, array $options): ?ISchemaWrapper {
|
||||
/** @var ISchemaWrapper $schema */
|
||||
$schema = $schemaClosure();
|
||||
|
||||
$calendarsTable = $schema->getTable('calendars');
|
||||
|
||||
if (!$calendarsTable->hasColumn('default_alarm')) {
|
||||
$calendarsTable->addColumn('default_alarm', Types::INTEGER, [
|
||||
'notnull' => false,
|
||||
'default' => null,
|
||||
]);
|
||||
}
|
||||
|
||||
return $schema;
|
||||
}
|
||||
}
|
||||
@@ -15,6 +15,7 @@ use OCP\AppFramework\Services\IAppConfig;
|
||||
use OCP\Files\AppData\IAppDataFactory;
|
||||
use OCP\Files\IAppData;
|
||||
use OCP\Files\NotFoundException;
|
||||
use OCP\IL10N;
|
||||
use Psr\Log\LoggerInterface;
|
||||
use Symfony\Component\Uid\Uuid;
|
||||
|
||||
@@ -26,6 +27,7 @@ class ExampleContactService {
|
||||
private readonly IAppConfig $appConfig,
|
||||
private readonly LoggerInterface $logger,
|
||||
private readonly CardDavBackend $cardDav,
|
||||
private readonly IL10N $l,
|
||||
) {
|
||||
$this->appData = $appDataFactory->get(Application::APP_ID);
|
||||
}
|
||||
@@ -131,6 +133,9 @@ class ExampleContactService {
|
||||
} else {
|
||||
$vcard->add('REV', $newRev);
|
||||
}
|
||||
if (!$vcard->Note) {
|
||||
$vcard->add('note', $this->l->t('This is an example contact'));
|
||||
}
|
||||
|
||||
// Level 3 means that the document is invalid
|
||||
// https://sabre.io/vobject/vcard/#validating-vcard
|
||||
|
||||
@@ -1881,4 +1881,43 @@ EOD;
|
||||
);
|
||||
|
||||
}
|
||||
|
||||
public function testDefaultAlarmProperty(): void {
|
||||
$calendarId = $this->createTestCalendar();
|
||||
|
||||
// Test setting default alarm property to 15 minutes before (-900 seconds)
|
||||
$patch = new PropPatch([
|
||||
'{http://nextcloud.com/ns}default-alarm' => -900
|
||||
]);
|
||||
$this->backend->updateCalendar($calendarId, $patch);
|
||||
$patch->commit();
|
||||
|
||||
// Verify the property was set
|
||||
$calendars = $this->backend->getCalendarsForUser(self::UNIT_TEST_USER);
|
||||
$this->assertCount(1, $calendars);
|
||||
$this->assertEquals(-900, $calendars[0]['{http://nextcloud.com/ns}default-alarm']);
|
||||
|
||||
// Test updating to a different value (1 day before = -86400 seconds)
|
||||
$patch = new PropPatch([
|
||||
'{http://nextcloud.com/ns}default-alarm' => -86400
|
||||
]);
|
||||
$this->backend->updateCalendar($calendarId, $patch);
|
||||
$patch->commit();
|
||||
|
||||
$calendars = $this->backend->getCalendarsForUser(self::UNIT_TEST_USER);
|
||||
$this->assertEquals(-86400, $calendars[0]['{http://nextcloud.com/ns}default-alarm']);
|
||||
|
||||
// Test setting to "none"
|
||||
$patch = new PropPatch([
|
||||
'{http://nextcloud.com/ns}default-alarm' => null
|
||||
]);
|
||||
$this->backend->updateCalendar($calendarId, $patch);
|
||||
$patch->commit();
|
||||
|
||||
$calendars = $this->backend->getCalendarsForUser(self::UNIT_TEST_USER);
|
||||
$this->assertEquals(null, $calendars[0]['{http://nextcloud.com/ns}default-alarm']);
|
||||
|
||||
// Clean up
|
||||
$this->backend->deleteCalendar($calendars[0]['id'], true);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -18,6 +18,7 @@ use OCP\Files\IAppData;
|
||||
use OCP\Files\NotFoundException;
|
||||
use OCP\Files\SimpleFS\ISimpleFile;
|
||||
use OCP\Files\SimpleFS\ISimpleFolder;
|
||||
use OCP\IL10N;
|
||||
use PHPUnit\Framework\MockObject\MockObject;
|
||||
use Psr\Log\LoggerInterface;
|
||||
use Symfony\Component\Uid\Uuid;
|
||||
@@ -31,6 +32,7 @@ class ExampleContactServiceTest extends TestCase {
|
||||
protected LoggerInterface&MockObject $logger;
|
||||
protected IAppConfig&MockObject $appConfig;
|
||||
protected IAppData&MockObject $appData;
|
||||
protected IL10N&MockObject $l;
|
||||
|
||||
protected function setUp(): void {
|
||||
parent::setUp();
|
||||
@@ -39,6 +41,7 @@ class ExampleContactServiceTest extends TestCase {
|
||||
$this->appDataFactory = $this->createMock(IAppDataFactory::class);
|
||||
$this->logger = $this->createMock(LoggerInterface::class);
|
||||
$this->appConfig = $this->createMock(IAppConfig::class);
|
||||
$this->l = $this->createMock((IL10N::class));
|
||||
|
||||
$this->appData = $this->createMock(IAppData::class);
|
||||
$this->appDataFactory->method('get')
|
||||
@@ -50,6 +53,7 @@ class ExampleContactServiceTest extends TestCase {
|
||||
$this->appConfig,
|
||||
$this->logger,
|
||||
$this->cardDav,
|
||||
$this->l,
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
@@ -128,30 +128,30 @@ class FederatedShareProvider implements IShareProvider, IShareProviderSupportsAl
|
||||
$share->setSharedWith($cloudId->getId());
|
||||
|
||||
try {
|
||||
$remoteShare = $this->getShareFromExternalShareTable($share);
|
||||
$remoteShare = $this->getShareFromExternalShareTable($share->getShareOwner(), $share->getTarget());
|
||||
} catch (ShareNotFound $e) {
|
||||
$remoteShare = null;
|
||||
}
|
||||
|
||||
if ($remoteShare) {
|
||||
try {
|
||||
$ownerCloudId = $this->cloudIdManager->getCloudId($remoteShare['owner'], $remoteShare['remote']);
|
||||
$shareId = $this->addShareToDB($itemSource, $itemType, $shareWith, $sharedBy, $ownerCloudId->getId(), $permissions, 'tmp_token_' . time(), $shareType, $expirationDate);
|
||||
$share->setId($shareId);
|
||||
[$token, $remoteId] = $this->askOwnerToReShare($shareWith, $share, $shareId);
|
||||
// remote share was create successfully if we get a valid token as return
|
||||
$send = is_string($token) && $token !== '';
|
||||
} catch (\Exception $e) {
|
||||
// fall back to old re-share behavior if the remote server
|
||||
// doesn't support flat re-shares (was introduced with Nextcloud 9.1)
|
||||
$this->removeShareFromTable($share);
|
||||
$shareId = $this->createFederatedShare($share);
|
||||
}
|
||||
if ($send) {
|
||||
$ownerCloudId = $this->cloudIdManager->getCloudId($remoteShare['owner'], $remoteShare['remote']);
|
||||
$shareId = $this->addShareToDB($itemSource, $itemType, $shareWith, $sharedBy, $ownerCloudId->getId(), $permissions, 'tmp_token_' . time(), $shareType, $expirationDate);
|
||||
[$token, $remoteId] = $this->notifications->requestReShare(
|
||||
$remoteShare['share_token'],
|
||||
$remoteShare['remote_id'],
|
||||
$shareId,
|
||||
$remoteShare['remote'],
|
||||
$shareWith,
|
||||
$permissions,
|
||||
$share->getNode()->getName(),
|
||||
$shareType,
|
||||
);
|
||||
// remote share was create successfully if we get a valid token as return
|
||||
if (is_string($token) && $token !== '') {
|
||||
$this->updateSuccessfulReshare($shareId, $token);
|
||||
$this->storeRemoteId($shareId, $remoteId);
|
||||
} else {
|
||||
$this->removeShareFromTable($share);
|
||||
$this->removeShareFromTable($shareId);
|
||||
$message_t = $this->l->t('File is already shared with %s', [$shareWith]);
|
||||
throw new \Exception($message_t);
|
||||
}
|
||||
@@ -216,7 +216,7 @@ class FederatedShareProvider implements IShareProvider, IShareProviderSupportsAl
|
||||
}
|
||||
|
||||
if ($failure) {
|
||||
$this->removeShareFromTableById($shareId);
|
||||
$this->removeShareFromTable($shareId);
|
||||
$message_t = $this->l->t('Sharing %1$s failed, could not find %2$s, maybe the server is currently unreachable or uses a self-signed certificate.',
|
||||
[$share->getNode()->getName(), $share->getSharedWith()]);
|
||||
throw new \Exception($message_t);
|
||||
@@ -225,45 +225,17 @@ class FederatedShareProvider implements IShareProvider, IShareProviderSupportsAl
|
||||
return $shareId;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $shareWith
|
||||
* @param IShare $share
|
||||
* @param string $shareId internal share Id
|
||||
* @return array
|
||||
* @throws \Exception
|
||||
*/
|
||||
protected function askOwnerToReShare($shareWith, IShare $share, $shareId) {
|
||||
$remoteShare = $this->getShareFromExternalShareTable($share);
|
||||
$token = $remoteShare['share_token'];
|
||||
$remoteId = $remoteShare['remote_id'];
|
||||
$remote = $remoteShare['remote'];
|
||||
|
||||
[$token, $remoteId] = $this->notifications->requestReShare(
|
||||
$token,
|
||||
$remoteId,
|
||||
$shareId,
|
||||
$remote,
|
||||
$shareWith,
|
||||
$share->getPermissions(),
|
||||
$share->getNode()->getName(),
|
||||
$share->getShareType(),
|
||||
);
|
||||
|
||||
return [$token, $remoteId];
|
||||
}
|
||||
|
||||
/**
|
||||
* get federated share from the share_external table but exclude mounted link shares
|
||||
*
|
||||
* @param IShare $share
|
||||
* @return array
|
||||
* @throws ShareNotFound
|
||||
*/
|
||||
protected function getShareFromExternalShareTable(IShare $share) {
|
||||
protected function getShareFromExternalShareTable(string $owner, string $target) {
|
||||
$query = $this->dbConnection->getQueryBuilder();
|
||||
$query->select('*')->from($this->externalShareTable)
|
||||
->where($query->expr()->eq('user', $query->createNamedParameter($share->getShareOwner())))
|
||||
->andWhere($query->expr()->eq('mountpoint', $query->createNamedParameter($share->getTarget())));
|
||||
->where($query->expr()->eq('user', $query->createNamedParameter($owner)))
|
||||
->andWhere($query->expr()->eq('mountpoint', $query->createNamedParameter($target)));
|
||||
$qResult = $query->executeQuery();
|
||||
$result = $qResult->fetchAllAssociative();
|
||||
$qResult->closeCursor();
|
||||
@@ -468,7 +440,7 @@ class FederatedShareProvider implements IShareProvider, IShareProviderSupportsAl
|
||||
|
||||
// only remove the share when all messages are send to not lose information
|
||||
// about the share to early
|
||||
$this->removeShareFromTable($share);
|
||||
$this->removeShareFromTable($share->getId());
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -493,19 +465,10 @@ class FederatedShareProvider implements IShareProvider, IShareProviderSupportsAl
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* remove share from table
|
||||
*
|
||||
* @param IShare $share
|
||||
*/
|
||||
public function removeShareFromTable(IShare $share) {
|
||||
$this->removeShareFromTableById($share->getId());
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove share from table.
|
||||
*/
|
||||
private function removeShareFromTableById(string $shareId): void {
|
||||
public function removeShareFromTable(string $shareId): void {
|
||||
$qb = $this->dbConnection->getQueryBuilder();
|
||||
$qb->delete('share')
|
||||
->where($qb->expr()->eq('id', $qb->createNamedParameter($shareId)))
|
||||
|
||||
@@ -382,7 +382,7 @@ class CloudFederationProviderFiles implements ISignedCloudFederationProvider {
|
||||
* @throws ShareNotFound
|
||||
*/
|
||||
protected function executeDeclineShare(IShare $share): void {
|
||||
$this->federatedShareProvider->removeShareFromTable($share);
|
||||
$this->federatedShareProvider->removeShareFromTable($share->getId());
|
||||
|
||||
$user = $this->getCorrectUser($share);
|
||||
|
||||
@@ -420,7 +420,7 @@ class CloudFederationProviderFiles implements ISignedCloudFederationProvider {
|
||||
$share = $this->federatedShareProvider->getShareById($id);
|
||||
|
||||
$this->verifyShare($share, $token);
|
||||
$this->federatedShareProvider->removeShareFromTable($share);
|
||||
$this->federatedShareProvider->removeShareFromTable($share->getId());
|
||||
return [];
|
||||
}
|
||||
|
||||
|
||||
@@ -249,18 +249,18 @@ class FederatedShareProviderReshareRemoteTest extends \Test\TestCase {
|
||||
$qb6->method('executeQuery')->willReturn($result6);
|
||||
|
||||
|
||||
$queryBuilderMatcher = $this->exactly(8);
|
||||
$queryBuilderMatcher = $this->exactly(7);
|
||||
$this->connection
|
||||
->expects($queryBuilderMatcher)
|
||||
->method('getQueryBuilder')
|
||||
->willReturnCallback(function () use ($queryBuilderMatcher, $qb1, $qb2, $qb3, $qb4, $qb5, $qb6) {
|
||||
return match ($queryBuilderMatcher->numberOfInvocations()) {
|
||||
1, 2 => $qb1,
|
||||
3, 5 => $qb2,
|
||||
3 => $qb2,
|
||||
4 => $qb3,
|
||||
6 => $qb4,
|
||||
7 => $qb5,
|
||||
8 => $qb6,
|
||||
5 => $qb4,
|
||||
6 => $qb5,
|
||||
7 => $qb6,
|
||||
default => throw new LogicException('Unexpected number of invocations for getQueryBuilder')
|
||||
};
|
||||
});
|
||||
|
||||
@@ -133,7 +133,8 @@ class FederatedShareProviderTest extends \Test\TestCase {
|
||||
->setPermissions(19)
|
||||
->setShareType(IShare::TYPE_REMOTE)
|
||||
->setExpirationDate($expirationDate)
|
||||
->setNode($node);
|
||||
->setNode($node)
|
||||
->setTarget('');
|
||||
|
||||
$this->tokenHandler->method('generateToken')->willReturn('token');
|
||||
|
||||
@@ -215,7 +216,8 @@ class FederatedShareProviderTest extends \Test\TestCase {
|
||||
->setShareOwner('shareOwner')
|
||||
->setPermissions(19)
|
||||
->setShareType(IShare::TYPE_REMOTE)
|
||||
->setNode($node);
|
||||
->setNode($node)
|
||||
->setTarget('');
|
||||
|
||||
$this->tokenHandler->method('generateToken')->willReturn('token');
|
||||
|
||||
@@ -268,7 +270,8 @@ class FederatedShareProviderTest extends \Test\TestCase {
|
||||
->setShareOwner('shareOwner')
|
||||
->setPermissions(19)
|
||||
->setShareType(IShare::TYPE_REMOTE)
|
||||
->setNode($node);
|
||||
->setNode($node)
|
||||
->setTarget('');
|
||||
|
||||
$this->tokenHandler->method('generateToken')->willReturn('token');
|
||||
|
||||
@@ -359,7 +362,8 @@ class FederatedShareProviderTest extends \Test\TestCase {
|
||||
->setShareOwner('shareOwner')
|
||||
->setPermissions(19)
|
||||
->setShareType(IShare::TYPE_REMOTE)
|
||||
->setNode($node);
|
||||
->setNode($node)
|
||||
->setTarget('');
|
||||
|
||||
$this->tokenHandler->method('generateToken')->willReturn('token');
|
||||
|
||||
@@ -431,7 +435,8 @@ class FederatedShareProviderTest extends \Test\TestCase {
|
||||
->setPermissions(19)
|
||||
->setShareType(IShare::TYPE_REMOTE)
|
||||
->setExpirationDate(new \DateTime('2019-02-01T01:02:03'))
|
||||
->setNode($node);
|
||||
->setNode($node)
|
||||
->setTarget('');
|
||||
|
||||
$this->tokenHandler->method('generateToken')->willReturn('token');
|
||||
$this->addressHandler->expects($this->any())->method('generateRemoteURL')
|
||||
@@ -504,7 +509,8 @@ class FederatedShareProviderTest extends \Test\TestCase {
|
||||
->setShareOwner('shareOwner')
|
||||
->setPermissions(19)
|
||||
->setShareType(IShare::TYPE_REMOTE)
|
||||
->setNode($node);
|
||||
->setNode($node)
|
||||
->setTarget('');
|
||||
$this->provider->create($share);
|
||||
|
||||
$share2 = $this->shareManager->newShare();
|
||||
@@ -513,7 +519,8 @@ class FederatedShareProviderTest extends \Test\TestCase {
|
||||
->setShareOwner('shareOwner')
|
||||
->setPermissions(19)
|
||||
->setShareType(IShare::TYPE_REMOTE)
|
||||
->setNode($node);
|
||||
->setNode($node)
|
||||
->setTarget('');
|
||||
$this->provider->create($share2);
|
||||
|
||||
$shares = $this->provider->getSharesBy('sharedBy', IShare::TYPE_REMOTE, null, false, -1, 0);
|
||||
@@ -548,7 +555,8 @@ class FederatedShareProviderTest extends \Test\TestCase {
|
||||
->setShareOwner('shareOwner')
|
||||
->setPermissions(19)
|
||||
->setShareType(IShare::TYPE_REMOTE)
|
||||
->setNode($node);
|
||||
->setNode($node)
|
||||
->setTarget('');
|
||||
$this->provider->create($share);
|
||||
|
||||
$node2 = $this->getMockBuilder(File::class)->getMock();
|
||||
@@ -561,7 +569,8 @@ class FederatedShareProviderTest extends \Test\TestCase {
|
||||
->setShareOwner('shareOwner')
|
||||
->setPermissions(19)
|
||||
->setShareType(IShare::TYPE_REMOTE)
|
||||
->setNode($node2);
|
||||
->setNode($node2)
|
||||
->setTarget('');
|
||||
$this->provider->create($share2);
|
||||
|
||||
$shares = $this->provider->getSharesBy('sharedBy', IShare::TYPE_REMOTE, $node2, false, -1, 0);
|
||||
@@ -595,7 +604,8 @@ class FederatedShareProviderTest extends \Test\TestCase {
|
||||
->setShareOwner('shareOwner')
|
||||
->setPermissions(19)
|
||||
->setShareType(IShare::TYPE_REMOTE)
|
||||
->setNode($node);
|
||||
->setNode($node)
|
||||
->setTarget('');
|
||||
$this->provider->create($share);
|
||||
|
||||
$share2 = $this->shareManager->newShare();
|
||||
@@ -604,7 +614,8 @@ class FederatedShareProviderTest extends \Test\TestCase {
|
||||
->setShareOwner('shareOwner')
|
||||
->setPermissions(19)
|
||||
->setShareType(IShare::TYPE_REMOTE)
|
||||
->setNode($node);
|
||||
->setNode($node)
|
||||
->setTarget('');
|
||||
$this->provider->create($share2);
|
||||
|
||||
$shares = $this->provider->getSharesBy('shareOwner', IShare::TYPE_REMOTE, null, true, -1, 0);
|
||||
@@ -645,7 +656,8 @@ class FederatedShareProviderTest extends \Test\TestCase {
|
||||
->setShareOwner('shareOwner')
|
||||
->setPermissions(19)
|
||||
->setShareType(IShare::TYPE_REMOTE)
|
||||
->setNode($node);
|
||||
->setNode($node)
|
||||
->setTarget('');
|
||||
$this->provider->create($share);
|
||||
|
||||
$share2 = $this->shareManager->newShare();
|
||||
@@ -654,7 +666,8 @@ class FederatedShareProviderTest extends \Test\TestCase {
|
||||
->setShareOwner('shareOwner')
|
||||
->setPermissions(19)
|
||||
->setShareType(IShare::TYPE_REMOTE)
|
||||
->setNode($node);
|
||||
->setNode($node)
|
||||
->setTarget('');
|
||||
$this->provider->create($share2);
|
||||
|
||||
$shares = $this->provider->getSharesBy('shareOwner', IShare::TYPE_REMOTE, null, true, 1, 1);
|
||||
@@ -835,7 +848,8 @@ class FederatedShareProviderTest extends \Test\TestCase {
|
||||
->setShareOwner($u1->getUID())
|
||||
->setPermissions(Constants::PERMISSION_READ)
|
||||
->setShareType(IShare::TYPE_REMOTE)
|
||||
->setNode($file1);
|
||||
->setNode($file1)
|
||||
->setTarget('');
|
||||
$this->provider->create($share1);
|
||||
|
||||
$share2 = $this->shareManager->newShare();
|
||||
@@ -844,7 +858,8 @@ class FederatedShareProviderTest extends \Test\TestCase {
|
||||
->setShareOwner($u1->getUID())
|
||||
->setPermissions(Constants::PERMISSION_READ)
|
||||
->setShareType(IShare::TYPE_REMOTE)
|
||||
->setNode($file2);
|
||||
->setNode($file2)
|
||||
->setTarget('');
|
||||
$this->provider->create($share2);
|
||||
|
||||
$result = $this->provider->getSharesInFolder($u1->getUID(), $folder1, false);
|
||||
@@ -895,7 +910,8 @@ class FederatedShareProviderTest extends \Test\TestCase {
|
||||
->setShareOwner($u1->getUID())
|
||||
->setPermissions(Constants::PERMISSION_READ)
|
||||
->setShareType(IShare::TYPE_REMOTE)
|
||||
->setNode($file1);
|
||||
->setNode($file1)
|
||||
->setTarget('');
|
||||
$this->provider->create($share1);
|
||||
|
||||
$share2 = $this->shareManager->newShare();
|
||||
@@ -904,7 +920,8 @@ class FederatedShareProviderTest extends \Test\TestCase {
|
||||
->setShareOwner($u1->getUID())
|
||||
->setPermissions(Constants::PERMISSION_READ)
|
||||
->setShareType(IShare::TYPE_REMOTE)
|
||||
->setNode($file1);
|
||||
->setNode($file1)
|
||||
->setTarget('');
|
||||
$this->provider->create($share2);
|
||||
|
||||
$result = $this->provider->getAccessList([$file1], true);
|
||||
|
||||
@@ -122,6 +122,7 @@ OC.L10N.register(
|
||||
"General" : "Yleiset",
|
||||
"Sort favorites first" : "Järjestä suosikit ensiksi",
|
||||
"Sort folders before files" : "Järjestä kansiot ennen tiedostoja",
|
||||
"Enable folder tree view" : "Käytä kansiopuunäkymää",
|
||||
"Default view" : "Oletusnäkymä",
|
||||
"All files" : "Kaikki tiedostot",
|
||||
"Personal files" : "Henkilökohtaiset tiedostot",
|
||||
@@ -131,6 +132,8 @@ OC.L10N.register(
|
||||
"Selection" : "Valinta",
|
||||
"Select all files" : "Valitse kaikki tiedostot",
|
||||
"Deselect all" : "Poista valinnat",
|
||||
"Select or deselect" : "Valitse tai poista valinta",
|
||||
"Select a range" : "Valitse väliltä",
|
||||
"Navigation" : "Navigointi",
|
||||
"Go to parent folder" : "Siirry ylätason kansioon",
|
||||
"Go to file above" : "Siirry yllä olevaan tiedostoon",
|
||||
@@ -139,6 +142,7 @@ OC.L10N.register(
|
||||
"Go right in grid" : "Siirry oikealle ruudukossa",
|
||||
"View" : "Näytä",
|
||||
"Toggle grid view" : "Ruudukkonäkymä päälle/pois",
|
||||
"Show those shortcuts" : "Näytä pikanäppäimet",
|
||||
"Warnings" : "Varoitukset",
|
||||
"Warn before changing a file extension" : "Varoita ennen tiedostopäätteen muuttamista",
|
||||
"Warn before deleting a file" : "Varoita ennen tiedoston poistamista",
|
||||
|
||||
@@ -120,6 +120,7 @@
|
||||
"General" : "Yleiset",
|
||||
"Sort favorites first" : "Järjestä suosikit ensiksi",
|
||||
"Sort folders before files" : "Järjestä kansiot ennen tiedostoja",
|
||||
"Enable folder tree view" : "Käytä kansiopuunäkymää",
|
||||
"Default view" : "Oletusnäkymä",
|
||||
"All files" : "Kaikki tiedostot",
|
||||
"Personal files" : "Henkilökohtaiset tiedostot",
|
||||
@@ -129,6 +130,8 @@
|
||||
"Selection" : "Valinta",
|
||||
"Select all files" : "Valitse kaikki tiedostot",
|
||||
"Deselect all" : "Poista valinnat",
|
||||
"Select or deselect" : "Valitse tai poista valinta",
|
||||
"Select a range" : "Valitse väliltä",
|
||||
"Navigation" : "Navigointi",
|
||||
"Go to parent folder" : "Siirry ylätason kansioon",
|
||||
"Go to file above" : "Siirry yllä olevaan tiedostoon",
|
||||
@@ -137,6 +140,7 @@
|
||||
"Go right in grid" : "Siirry oikealle ruudukossa",
|
||||
"View" : "Näytä",
|
||||
"Toggle grid view" : "Ruudukkonäkymä päälle/pois",
|
||||
"Show those shortcuts" : "Näytä pikanäppäimet",
|
||||
"Warnings" : "Varoitukset",
|
||||
"Warn before changing a file extension" : "Varoita ennen tiedostopäätteen muuttamista",
|
||||
"Warn before deleting a file" : "Varoita ennen tiedoston poistamista",
|
||||
|
||||
@@ -14,19 +14,14 @@ use OCA\Files_External\Event\StorageUpdatedEvent;
|
||||
use OCA\Files_External\Lib\StorageConfig;
|
||||
use OCA\Files_External\MountConfig;
|
||||
use OCP\IGroup;
|
||||
use Override;
|
||||
|
||||
/**
|
||||
* Service class to manage global external storage
|
||||
*/
|
||||
class GlobalStoragesService extends StoragesService {
|
||||
/**
|
||||
* Triggers $signal for all applicable users of the given
|
||||
* storage
|
||||
*
|
||||
* @param StorageConfig $storage storage data
|
||||
* @param string $signal signal to trigger
|
||||
*/
|
||||
protected function triggerHooks(StorageConfig $storage, $signal) {
|
||||
#[Override]
|
||||
protected function triggerHooks(StorageConfig $storage, $signal): void {
|
||||
// FIXME: Use as expression in empty once PHP 5.4 support is dropped
|
||||
$applicableUsers = $storage->getApplicableUsers();
|
||||
$applicableGroups = $storage->getApplicableGroups();
|
||||
@@ -55,15 +50,8 @@ class GlobalStoragesService extends StoragesService {
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Triggers signal_create_mount or signal_delete_mount to
|
||||
* accommodate for additions/deletions in applicableUsers
|
||||
* and applicableGroups fields.
|
||||
*
|
||||
* @param StorageConfig $oldStorage old storage config
|
||||
* @param StorageConfig $newStorage new storage config
|
||||
*/
|
||||
protected function triggerChangeHooks(StorageConfig $oldStorage, StorageConfig $newStorage) {
|
||||
#[Override]
|
||||
protected function triggerChangeHooks(StorageConfig $oldStorage, StorageConfig $newStorage): void {
|
||||
// if mount point changed, it's like a deletion + creation
|
||||
if ($oldStorage->getMountPoint() !== $newStorage->getMountPoint()) {
|
||||
$this->eventDispatcher->dispatchTyped(new StorageDeletedEvent($oldStorage));
|
||||
@@ -139,16 +127,13 @@ class GlobalStoragesService extends StoragesService {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the visibility type for this controller, used in validation
|
||||
*
|
||||
* @return int BackendService::VISIBILITY_* constants
|
||||
*/
|
||||
public function getVisibilityType() {
|
||||
#[Override]
|
||||
public function getVisibilityType(): int {
|
||||
return BackendService::VISIBILITY_ADMIN;
|
||||
}
|
||||
|
||||
protected function isApplicable(StorageConfig $config) {
|
||||
#[Override]
|
||||
protected function isApplicable(StorageConfig $config): bool {
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -157,16 +142,14 @@ class GlobalStoragesService extends StoragesService {
|
||||
*
|
||||
* @return StorageConfig[] map of storage id to storage config
|
||||
*/
|
||||
public function getStorageForAllUsers() {
|
||||
public function getStorageForAllUsers(): array {
|
||||
$mounts = $this->dbConfig->getAllMounts();
|
||||
$configs = array_map([$this, 'getStorageConfigFromDBMount'], $mounts);
|
||||
$configs = array_filter($configs, function ($config) {
|
||||
return $config instanceof StorageConfig;
|
||||
});
|
||||
|
||||
$keys = array_map(function (StorageConfig $config) {
|
||||
return $config->getId();
|
||||
}, $configs);
|
||||
$keys = array_map(static fn (StorageConfig $config) => $config->getId(), $configs);
|
||||
|
||||
return array_combine($keys, $configs);
|
||||
}
|
||||
|
||||
@@ -31,14 +31,10 @@ use Psr\Log\LoggerInterface;
|
||||
|
||||
/**
|
||||
* Service class to manage external storage
|
||||
*
|
||||
* @psalm-import-type ExternalMountInfo from DBConfigService
|
||||
*/
|
||||
abstract class StoragesService {
|
||||
|
||||
/**
|
||||
* @param BackendService $backendService
|
||||
* @param DBConfigService $dbConfig
|
||||
* @param IEventDispatcher $eventDispatcher
|
||||
*/
|
||||
public function __construct(
|
||||
protected BackendService $backendService,
|
||||
protected DBConfigService $dbConfig,
|
||||
@@ -47,24 +43,21 @@ abstract class StoragesService {
|
||||
) {
|
||||
}
|
||||
|
||||
protected function readDBConfig() {
|
||||
/**
|
||||
* @return list<ExternalMountInfo>
|
||||
*/
|
||||
protected function readDBConfig(): array {
|
||||
return $this->dbConfig->getAdminMounts();
|
||||
}
|
||||
|
||||
protected function getStorageConfigFromDBMount(array $mount) {
|
||||
$applicableUsers = array_filter($mount['applicable'], function ($applicable) {
|
||||
return $applicable['type'] === DBConfigService::APPLICABLE_TYPE_USER;
|
||||
});
|
||||
$applicableUsers = array_map(function ($applicable) {
|
||||
return $applicable['value'];
|
||||
}, $applicableUsers);
|
||||
protected function getStorageConfigFromDBMount(array $mount): ?StorageConfig {
|
||||
$applicableUsers = array_filter($mount['applicable'], static fn (array $applicable): bool
|
||||
=> $applicable['type'] === DBConfigService::APPLICABLE_TYPE_USER);
|
||||
$applicableUsers = array_map(static fn (array $applicable) => $applicable['value'], $applicableUsers);
|
||||
|
||||
$applicableGroups = array_filter($mount['applicable'], function ($applicable) {
|
||||
return $applicable['type'] === DBConfigService::APPLICABLE_TYPE_GROUP;
|
||||
});
|
||||
$applicableGroups = array_map(function ($applicable) {
|
||||
return $applicable['value'];
|
||||
}, $applicableGroups);
|
||||
$applicableGroups = array_filter($mount['applicable'], static fn (array $applicable): bool
|
||||
=> $applicable['type'] === DBConfigService::APPLICABLE_TYPE_GROUP);
|
||||
$applicableGroups = array_map(static fn (array $applicable) => $applicable['value'], $applicableGroups);
|
||||
|
||||
try {
|
||||
$config = $this->createStorage(
|
||||
@@ -99,18 +92,14 @@ abstract class StoragesService {
|
||||
/**
|
||||
* Read the external storage config
|
||||
*
|
||||
* @return array map of storage id to storage config
|
||||
* @return array<int, StorageConfig> map of storage id to storage config
|
||||
*/
|
||||
protected function readConfig() {
|
||||
protected function readConfig(): array {
|
||||
$mounts = $this->readDBConfig();
|
||||
$configs = array_map([$this, 'getStorageConfigFromDBMount'], $mounts);
|
||||
$configs = array_filter($configs, function ($config) {
|
||||
return $config instanceof StorageConfig;
|
||||
});
|
||||
$configs = array_map($this->getStorageConfigFromDBMount(...), $mounts);
|
||||
$configs = array_filter($configs);
|
||||
|
||||
$keys = array_map(function (StorageConfig $config) {
|
||||
return $config->getId();
|
||||
}, $configs);
|
||||
$keys = array_map(static fn (StorageConfig $config): int => $config->getId(), $configs);
|
||||
|
||||
return array_combine($keys, $configs);
|
||||
}
|
||||
@@ -139,18 +128,15 @@ abstract class StoragesService {
|
||||
|
||||
/**
|
||||
* Check whether this storage service should provide access to a storage
|
||||
*
|
||||
* @param StorageConfig $config
|
||||
* @return bool
|
||||
*/
|
||||
abstract protected function isApplicable(StorageConfig $config);
|
||||
abstract protected function isApplicable(StorageConfig $config): bool;
|
||||
|
||||
/**
|
||||
* Gets all storages, valid or not
|
||||
*
|
||||
* @return StorageConfig[] array of storage configs
|
||||
*/
|
||||
public function getAllStorages() {
|
||||
public function getAllStorages(): array {
|
||||
return $this->readConfig();
|
||||
}
|
||||
|
||||
@@ -159,18 +145,16 @@ abstract class StoragesService {
|
||||
*
|
||||
* @return StorageConfig[]
|
||||
*/
|
||||
public function getStorages() {
|
||||
return array_filter($this->getAllStorages(), [$this, 'validateStorage']);
|
||||
public function getStorages(): array {
|
||||
return array_filter($this->getAllStorages(), $this->validateStorage(...));
|
||||
}
|
||||
|
||||
/**
|
||||
* Validate storage
|
||||
* FIXME: De-duplicate with StoragesController::validate()
|
||||
*
|
||||
* @param StorageConfig $storage
|
||||
* @return bool
|
||||
*/
|
||||
protected function validateStorage(StorageConfig $storage) {
|
||||
protected function validateStorage(StorageConfig $storage): bool {
|
||||
/** @var Backend */
|
||||
$backend = $storage->getBackend();
|
||||
/** @var AuthMechanism */
|
||||
@@ -180,25 +164,19 @@ abstract class StoragesService {
|
||||
// not permitted to use backend
|
||||
return false;
|
||||
}
|
||||
if (!$authMechanism->isVisibleFor($this->getVisibilityType())) {
|
||||
// not permitted to use auth mechanism
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
// permitted to use auth mechanism
|
||||
return $authMechanism->isVisibleFor($this->getVisibilityType());
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the visibility type for this controller, used in validation
|
||||
*
|
||||
* @return int BackendService::VISIBILITY_* constants
|
||||
* @return BackendService::VISIBILITY_*
|
||||
*/
|
||||
abstract public function getVisibilityType();
|
||||
abstract public function getVisibilityType(): int;
|
||||
|
||||
/**
|
||||
* @return integer
|
||||
*/
|
||||
protected function getType() {
|
||||
protected function getType(): int {
|
||||
return DBConfigService::MOUNT_TYPE_ADMIN;
|
||||
}
|
||||
|
||||
@@ -209,7 +187,7 @@ abstract class StoragesService {
|
||||
*
|
||||
* @return StorageConfig storage config, with added id
|
||||
*/
|
||||
public function addStorage(StorageConfig $newStorage) {
|
||||
public function addStorage(StorageConfig $newStorage): StorageConfig {
|
||||
$allStorages = $this->readConfig();
|
||||
|
||||
$configId = $this->dbConfig->addMount(
|
||||
@@ -275,7 +253,7 @@ abstract class StoragesService {
|
||||
?array $applicableUsers = null,
|
||||
?array $applicableGroups = null,
|
||||
?int $priority = null,
|
||||
) {
|
||||
): StorageConfig {
|
||||
$backend = $this->backendService->getBackend($backendIdentifier);
|
||||
if (!$backend) {
|
||||
$backend = new InvalidBackend($backendIdentifier);
|
||||
@@ -313,7 +291,7 @@ abstract class StoragesService {
|
||||
* @param string $mountType hook mount type param
|
||||
* @param array $applicableArray array of applicable users/groups for which to trigger the hook
|
||||
*/
|
||||
protected function triggerApplicableHooks($signal, $mountPoint, $mountType, $applicableArray): void {
|
||||
protected function triggerApplicableHooks(string $signal, string $mountPoint, string $mountType, array $applicableArray): void {
|
||||
$this->eventDispatcher->dispatchTyped(new InvalidateMountCacheEvent(null));
|
||||
foreach ($applicableArray as $applicable) {
|
||||
Util::emitHook(
|
||||
@@ -335,7 +313,7 @@ abstract class StoragesService {
|
||||
* @param StorageConfig $storage storage data
|
||||
* @param string $signal signal to trigger
|
||||
*/
|
||||
abstract protected function triggerHooks(StorageConfig $storage, $signal);
|
||||
abstract protected function triggerHooks(StorageConfig $storage, string $signal): void;
|
||||
|
||||
/**
|
||||
* Triggers signal_create_mount or signal_delete_mount to
|
||||
@@ -345,7 +323,7 @@ abstract class StoragesService {
|
||||
* @param StorageConfig $oldStorage old storage data
|
||||
* @param StorageConfig $newStorage new storage data
|
||||
*/
|
||||
abstract protected function triggerChangeHooks(StorageConfig $oldStorage, StorageConfig $newStorage);
|
||||
abstract protected function triggerChangeHooks(StorageConfig $oldStorage, StorageConfig $newStorage): void;
|
||||
|
||||
/**
|
||||
* Update storage to the configuration
|
||||
@@ -355,7 +333,7 @@ abstract class StoragesService {
|
||||
* @return StorageConfig storage config
|
||||
* @throws NotFoundException if the given storage does not exist in the config
|
||||
*/
|
||||
public function updateStorage(StorageConfig $updatedStorage) {
|
||||
public function updateStorage(StorageConfig $updatedStorage): StorageConfig {
|
||||
$id = $updatedStorage->getId();
|
||||
|
||||
$existingMount = $this->dbConfig->getMountById($id);
|
||||
@@ -435,7 +413,7 @@ abstract class StoragesService {
|
||||
*
|
||||
* @throws NotFoundException if no storage was found with the given id
|
||||
*/
|
||||
public function removeStorage(int $id) {
|
||||
public function removeStorage(int $id): void {
|
||||
$existingMount = $this->dbConfig->getMountById($id);
|
||||
|
||||
if (!is_array($existingMount)) {
|
||||
@@ -454,29 +432,6 @@ abstract class StoragesService {
|
||||
$this->updateOverwriteHomeFolders();
|
||||
}
|
||||
|
||||
/**
|
||||
* Construct the storage implementation
|
||||
*
|
||||
* @param StorageConfig $storageConfig
|
||||
* @return int
|
||||
*/
|
||||
private function getStorageId(StorageConfig $storageConfig) {
|
||||
try {
|
||||
$class = $storageConfig->getBackend()->getStorageClass();
|
||||
/** @var \OC\Files\Storage\Storage $storage */
|
||||
$storage = new $class($storageConfig->getBackendOptions());
|
||||
|
||||
// auth mechanism should fire first
|
||||
$storage = $storageConfig->getBackend()->wrapStorage($storage);
|
||||
$storage = $storageConfig->getAuthMechanism()->wrapStorage($storage);
|
||||
|
||||
/** @var \OC\Files\Storage\Storage $storage */
|
||||
return $storage->getStorageCache()->getNumericId();
|
||||
} catch (\Exception $e) {
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
||||
public function updateOverwriteHomeFolders(): void {
|
||||
$appIdsList = $this->appConfig->getValueArray(FilesApplication::APP_ID, ConfigLexicon::OVERWRITES_HOME_FOLDERS);
|
||||
|
||||
|
||||
@@ -13,6 +13,7 @@ use OCP\IAppConfig;
|
||||
use OCP\IGroupManager;
|
||||
use OCP\IUser;
|
||||
use OCP\IUserSession;
|
||||
use Override;
|
||||
|
||||
/**
|
||||
* Service class to read global storages applicable to the user
|
||||
@@ -33,20 +34,8 @@ class UserGlobalStoragesService extends GlobalStoragesService {
|
||||
$this->userSession = $userSession;
|
||||
}
|
||||
|
||||
/**
|
||||
* Replace config hash ID with real IDs, for migrating legacy storages
|
||||
*
|
||||
* @param StorageConfig[] $storages Storages with real IDs
|
||||
* @param StorageConfig[] $storagesWithConfigHash Storages with config hash IDs
|
||||
*/
|
||||
protected function setRealStorageIds(array &$storages, array $storagesWithConfigHash) {
|
||||
// as a read-only view, storage IDs don't need to be real
|
||||
foreach ($storagesWithConfigHash as $storage) {
|
||||
$storages[$storage->getId()] = $storage;
|
||||
}
|
||||
}
|
||||
|
||||
protected function readDBConfig() {
|
||||
#[Override]
|
||||
protected function readDBConfig(): array {
|
||||
$userMounts = $this->dbConfig->getAdminMountsFor(DBConfigService::APPLICABLE_TYPE_USER, $this->getUser()->getUID());
|
||||
$globalMounts = $this->dbConfig->getAdminMountsFor(DBConfigService::APPLICABLE_TYPE_GLOBAL, null);
|
||||
$groups = $this->groupManager->getUserGroupIds($this->getUser());
|
||||
@@ -58,18 +47,18 @@ class UserGlobalStoragesService extends GlobalStoragesService {
|
||||
return array_merge($userMounts, $groupMounts, $globalMounts);
|
||||
}
|
||||
|
||||
#[Override]
|
||||
public function addStorage(StorageConfig $newStorage): never {
|
||||
throw new \DomainException('UserGlobalStoragesService writing disallowed');
|
||||
}
|
||||
|
||||
#[Override]
|
||||
public function updateStorage(StorageConfig $updatedStorage): never {
|
||||
throw new \DomainException('UserGlobalStoragesService writing disallowed');
|
||||
}
|
||||
|
||||
/**
|
||||
* @param integer $id
|
||||
*/
|
||||
public function removeStorage($id): never {
|
||||
#[Override]
|
||||
public function removeStorage(int $id): never {
|
||||
throw new \DomainException('UserGlobalStoragesService writing disallowed');
|
||||
}
|
||||
|
||||
@@ -79,7 +68,7 @@ class UserGlobalStoragesService extends GlobalStoragesService {
|
||||
*
|
||||
* @return StorageConfig[]
|
||||
*/
|
||||
public function getUniqueStorages() {
|
||||
public function getUniqueStorages(): array {
|
||||
$storages = $this->getStorages();
|
||||
|
||||
$storagesByMountpoint = [];
|
||||
@@ -116,20 +105,17 @@ class UserGlobalStoragesService extends GlobalStoragesService {
|
||||
* @param StorageConfig $storage
|
||||
* @return int
|
||||
*/
|
||||
protected function getPriorityType(StorageConfig $storage) {
|
||||
protected function getPriorityType(StorageConfig $storage): int {
|
||||
$applicableUsers = $storage->getApplicableUsers();
|
||||
$applicableGroups = $storage->getApplicableGroups();
|
||||
|
||||
if ($applicableUsers && $applicableUsers[0] !== 'all') {
|
||||
return 2;
|
||||
}
|
||||
if ($applicableGroups) {
|
||||
return 1;
|
||||
}
|
||||
return 0;
|
||||
return $applicableGroups ? 1 : 0;
|
||||
}
|
||||
|
||||
protected function isApplicable(StorageConfig $config) {
|
||||
protected function isApplicable(StorageConfig $config): bool {
|
||||
$applicableUsers = $config->getApplicableUsers();
|
||||
$applicableGroups = $config->getApplicableGroups();
|
||||
|
||||
@@ -155,7 +141,7 @@ class UserGlobalStoragesService extends GlobalStoragesService {
|
||||
* @param IUser|null $user user to get the storages for, if not set the currently logged in user will be used
|
||||
* @return StorageConfig[] array of storage configs
|
||||
*/
|
||||
public function getAllStoragesForUser(?IUser $user = null) {
|
||||
public function getAllStoragesForUser(?IUser $user = null): array {
|
||||
if (is_null($user)) {
|
||||
$user = $this->getUser();
|
||||
}
|
||||
|
||||
@@ -12,10 +12,10 @@ use OCA\Files_External\Event\StorageCreatedEvent;
|
||||
use OCA\Files_External\Event\StorageDeletedEvent;
|
||||
use OCA\Files_External\Lib\StorageConfig;
|
||||
use OCA\Files_External\MountConfig;
|
||||
use OCA\Files_External\NotFoundException;
|
||||
use OCP\EventDispatcher\IEventDispatcher;
|
||||
use OCP\IAppConfig;
|
||||
use OCP\IUserSession;
|
||||
use Override;
|
||||
|
||||
/**
|
||||
* Service class to manage user external storage
|
||||
@@ -38,7 +38,8 @@ class UserStoragesService extends StoragesService {
|
||||
parent::__construct($backendService, $dbConfig, $eventDispatcher, $appConfig);
|
||||
}
|
||||
|
||||
protected function readDBConfig() {
|
||||
#[Override]
|
||||
protected function readDBConfig(): array {
|
||||
return $this->dbConfig->getUserMountsFor(DBConfigService::APPLICABLE_TYPE_USER, $this->getUser()->getUID());
|
||||
}
|
||||
|
||||
@@ -49,7 +50,7 @@ class UserStoragesService extends StoragesService {
|
||||
* @param StorageConfig $storage storage data
|
||||
* @param string $signal signal to trigger
|
||||
*/
|
||||
protected function triggerHooks(StorageConfig $storage, $signal) {
|
||||
protected function triggerHooks(StorageConfig $storage, string $signal): void {
|
||||
$user = $this->getUser()->getUID();
|
||||
|
||||
// trigger hook for the current user
|
||||
@@ -69,7 +70,7 @@ class UserStoragesService extends StoragesService {
|
||||
* @param StorageConfig $oldStorage old storage data
|
||||
* @param StorageConfig $newStorage new storage data
|
||||
*/
|
||||
protected function triggerChangeHooks(StorageConfig $oldStorage, StorageConfig $newStorage) {
|
||||
protected function triggerChangeHooks(StorageConfig $oldStorage, StorageConfig $newStorage): void {
|
||||
// if mount point changed, it's like a deletion + creation
|
||||
if ($oldStorage->getMountPoint() !== $newStorage->getMountPoint()) {
|
||||
$this->eventDispatcher->dispatchTyped(new StorageDeletedEvent($oldStorage));
|
||||
@@ -79,31 +80,19 @@ class UserStoragesService extends StoragesService {
|
||||
}
|
||||
}
|
||||
|
||||
protected function getType() {
|
||||
#[Override]
|
||||
protected function getType(): int {
|
||||
return DBConfigService::MOUNT_TYPE_PERSONAL;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add new storage to the configuration
|
||||
*
|
||||
* @param StorageConfig $newStorage storage attributes
|
||||
*
|
||||
* @return StorageConfig storage config, with added id
|
||||
*/
|
||||
public function addStorage(StorageConfig $newStorage) {
|
||||
#[Override]
|
||||
public function addStorage(StorageConfig $newStorage): StorageConfig {
|
||||
$newStorage->setApplicableUsers([$this->getUser()->getUID()]);
|
||||
return parent::addStorage($newStorage);
|
||||
}
|
||||
|
||||
/**
|
||||
* Update storage to the configuration
|
||||
*
|
||||
* @param StorageConfig $updatedStorage storage attributes
|
||||
*
|
||||
* @return StorageConfig storage config
|
||||
* @throws NotFoundException if the given storage does not exist in the config
|
||||
*/
|
||||
public function updateStorage(StorageConfig $updatedStorage) {
|
||||
#[Override]
|
||||
public function updateStorage(StorageConfig $updatedStorage): StorageConfig {
|
||||
// verify ownership through $this->isApplicable() and otherwise throws an exception
|
||||
$this->getStorage($updatedStorage->getId());
|
||||
|
||||
@@ -111,20 +100,18 @@ class UserStoragesService extends StoragesService {
|
||||
return parent::updateStorage($updatedStorage);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the visibility type for this controller, used in validation
|
||||
*
|
||||
* @return int BackendService::VISIBILITY_* constants
|
||||
*/
|
||||
#[Override]
|
||||
public function getVisibilityType(): int {
|
||||
return BackendService::VISIBILITY_PERSONAL;
|
||||
}
|
||||
|
||||
#[Override]
|
||||
protected function isApplicable(StorageConfig $config): bool {
|
||||
return ($config->getApplicableUsers() === [$this->getUser()->getUID()]) && $config->getType() === StorageConfig::MOUNT_TYPE_PERSONAL;
|
||||
}
|
||||
|
||||
public function removeStorage($id) {
|
||||
#[Override]
|
||||
public function removeStorage(int $id): void {
|
||||
// verify ownership through $this->isApplicable() and otherwise throws an exception
|
||||
$this->getStorage($id);
|
||||
parent::removeStorage($id);
|
||||
|
||||
@@ -165,6 +165,7 @@ OC.L10N.register(
|
||||
"Unshare" : "Lopeta jakaminen",
|
||||
"Cannot copy, please copy the link manually" : "Kopioiminen ei onnistu. Kopioi linkki manuaalisesti",
|
||||
"Copy internal link" : "Kopioi sisäinen linkki",
|
||||
"For people who already have access" : "Henkilöille, joilla on jo käyttöoikeus",
|
||||
"Internal link" : "Sisäinen linkki",
|
||||
"Shared via link by {initiator}" : "Jaettu linkin kautta käyttäjältä {initiator}",
|
||||
"File request ({label})" : "Tiedostopyyntö ({label})",
|
||||
@@ -247,6 +248,7 @@ OC.L10N.register(
|
||||
"Toggle list of others with access to this directory" : "Vaihda näkymää kansioon käyttöoikeuden omaavista käyttäjistä",
|
||||
"Toggle list of others with access to this file" : "Vaihda näkymää tiedostoon käyttöoikeuden omaavista käyttäjistä",
|
||||
"Shares" : "Jaot",
|
||||
"Shares from apps or other sources which are not included in internal or external shares." : "Jaot muista sovelluksista tai lähteistä, jotka eivät sisälly sisäisiin tai ulkoisiin jakoihin.",
|
||||
"Type names or teams" : "Kirjoita nimet tai tiimit",
|
||||
"Type an email" : "Kirjoita sähköpostiosoite",
|
||||
"Unable to load the shares list" : "Jakolistan haku epäonnistui",
|
||||
@@ -255,6 +257,7 @@ OC.L10N.register(
|
||||
"Shared with you by {owner}" : "{owner} jakoi tämän kanssasi",
|
||||
"Internal shares" : "Sisäiset jaot",
|
||||
"External shares" : "Ulkoiset jaot",
|
||||
"Additional shares" : "Muut jaot",
|
||||
"Link to a file" : "Linkki tiedostoon",
|
||||
"_Accept share_::_Accept shares_" : ["Hyväksy jako","Hyväksy jaot"],
|
||||
"Open in Files" : "Avaa tiedostosovelluksessa",
|
||||
|
||||
@@ -163,6 +163,7 @@
|
||||
"Unshare" : "Lopeta jakaminen",
|
||||
"Cannot copy, please copy the link manually" : "Kopioiminen ei onnistu. Kopioi linkki manuaalisesti",
|
||||
"Copy internal link" : "Kopioi sisäinen linkki",
|
||||
"For people who already have access" : "Henkilöille, joilla on jo käyttöoikeus",
|
||||
"Internal link" : "Sisäinen linkki",
|
||||
"Shared via link by {initiator}" : "Jaettu linkin kautta käyttäjältä {initiator}",
|
||||
"File request ({label})" : "Tiedostopyyntö ({label})",
|
||||
@@ -245,6 +246,7 @@
|
||||
"Toggle list of others with access to this directory" : "Vaihda näkymää kansioon käyttöoikeuden omaavista käyttäjistä",
|
||||
"Toggle list of others with access to this file" : "Vaihda näkymää tiedostoon käyttöoikeuden omaavista käyttäjistä",
|
||||
"Shares" : "Jaot",
|
||||
"Shares from apps or other sources which are not included in internal or external shares." : "Jaot muista sovelluksista tai lähteistä, jotka eivät sisälly sisäisiin tai ulkoisiin jakoihin.",
|
||||
"Type names or teams" : "Kirjoita nimet tai tiimit",
|
||||
"Type an email" : "Kirjoita sähköpostiosoite",
|
||||
"Unable to load the shares list" : "Jakolistan haku epäonnistui",
|
||||
@@ -253,6 +255,7 @@
|
||||
"Shared with you by {owner}" : "{owner} jakoi tämän kanssasi",
|
||||
"Internal shares" : "Sisäiset jaot",
|
||||
"External shares" : "Ulkoiset jaot",
|
||||
"Additional shares" : "Muut jaot",
|
||||
"Link to a file" : "Linkki tiedostoon",
|
||||
"_Accept share_::_Accept shares_" : ["Hyväksy jako","Hyväksy jaot"],
|
||||
"Open in Files" : "Avaa tiedostosovelluksessa",
|
||||
|
||||
@@ -1390,6 +1390,8 @@ class ShareAPIController extends OCSController {
|
||||
} catch (HintException $e) {
|
||||
$code = $e->getCode() === 0 ? 403 : $e->getCode();
|
||||
throw new OCSException($e->getHint(), (int)$code);
|
||||
} catch (\InvalidArgumentException $e) {
|
||||
throw new OCSBadRequestException($e->getMessage(), $e);
|
||||
} catch (\Exception $e) {
|
||||
$this->logger->error($e->getMessage(), ['exception' => $e]);
|
||||
throw new OCSBadRequestException('Failed to update share.', $e);
|
||||
|
||||
@@ -7,7 +7,6 @@
|
||||
*/
|
||||
namespace OCA\Files_Sharing\Controller;
|
||||
|
||||
use OC\Security\CSP\ContentSecurityPolicy;
|
||||
use OC\ServerNotAvailableException;
|
||||
use OCA\DAV\Connector\Sabre\PublicAuth;
|
||||
use OCA\FederatedFileSharing\FederatedShareProvider;
|
||||
@@ -93,15 +92,7 @@ class ShareController extends AuthPublicShareController {
|
||||
|
||||
$this->eventDispatcher->dispatchTyped(new BeforeTemplateRenderedEvent($this->share, BeforeTemplateRenderedEvent::SCOPE_PUBLIC_SHARE_AUTH));
|
||||
|
||||
$response = new TemplateResponse('core', 'publicshareauth', $templateParameters, 'guest');
|
||||
if ($this->share->getSendPasswordByTalk()) {
|
||||
$csp = new ContentSecurityPolicy();
|
||||
$csp->addAllowedConnectDomain('*');
|
||||
$csp->addAllowedMediaDomain('blob:');
|
||||
$response->setContentSecurityPolicy($csp);
|
||||
}
|
||||
|
||||
return $response;
|
||||
return new TemplateResponse('core', 'publicshareauth', $templateParameters, 'guest');
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -112,15 +103,7 @@ class ShareController extends AuthPublicShareController {
|
||||
|
||||
$this->eventDispatcher->dispatchTyped(new BeforeTemplateRenderedEvent($this->share, BeforeTemplateRenderedEvent::SCOPE_PUBLIC_SHARE_AUTH));
|
||||
|
||||
$response = new TemplateResponse('core', 'publicshareauth', $templateParameters, 'guest');
|
||||
if ($this->share->getSendPasswordByTalk()) {
|
||||
$csp = new ContentSecurityPolicy();
|
||||
$csp->addAllowedConnectDomain('*');
|
||||
$csp->addAllowedMediaDomain('blob:');
|
||||
$response->setContentSecurityPolicy($csp);
|
||||
}
|
||||
|
||||
return $response;
|
||||
return new TemplateResponse('core', 'publicshareauth', $templateParameters, 'guest');
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -131,15 +114,7 @@ class ShareController extends AuthPublicShareController {
|
||||
|
||||
$this->eventDispatcher->dispatchTyped(new BeforeTemplateRenderedEvent($this->share, BeforeTemplateRenderedEvent::SCOPE_PUBLIC_SHARE_AUTH));
|
||||
|
||||
$response = new TemplateResponse('core', 'publicshareauth', $templateParameters, 'guest');
|
||||
if ($this->share->getSendPasswordByTalk()) {
|
||||
$csp = new ContentSecurityPolicy();
|
||||
$csp->addAllowedConnectDomain('*');
|
||||
$csp->addAllowedMediaDomain('blob:');
|
||||
$response->setContentSecurityPolicy($csp);
|
||||
}
|
||||
|
||||
return $response;
|
||||
return new TemplateResponse('core', 'publicshareauth', $templateParameters, 'guest');
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -4,7 +4,7 @@ OC.L10N.register(
|
||||
"Profile" : "Profil",
|
||||
"This application provides the profile" : "Denne applikation leverer profilen",
|
||||
"Provides a customisable user profile interface." : "Leverer en brugerdefinerbar brugerprofil grænseflade.",
|
||||
"Searching …" : "Søger ...",
|
||||
"Searching …" : "Søger …",
|
||||
"Not found" : "Ikke fundet",
|
||||
"Insert" : "Indsæt",
|
||||
"You have not added any info yet" : "Du har ikke tilføjet nogen information endnu",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
"Profile" : "Profil",
|
||||
"This application provides the profile" : "Denne applikation leverer profilen",
|
||||
"Provides a customisable user profile interface." : "Leverer en brugerdefinerbar brugerprofil grænseflade.",
|
||||
"Searching …" : "Søger ...",
|
||||
"Searching …" : "Søger …",
|
||||
"Not found" : "Ikke fundet",
|
||||
"Insert" : "Indsæt",
|
||||
"You have not added any info yet" : "Du har ikke tilføjet nogen information endnu",
|
||||
|
||||
@@ -3440,14 +3440,6 @@
|
||||
<code><![CDATA[self::SCAN_RECURSIVE_INCOMPLETE]]></code>
|
||||
</InvalidArgument>
|
||||
</file>
|
||||
<file src="lib/private/Files/Cache/Storage.php">
|
||||
<InvalidNullableReturnType>
|
||||
<code><![CDATA[array]]></code>
|
||||
</InvalidNullableReturnType>
|
||||
<NullableReturnStatement>
|
||||
<code><![CDATA[self::getGlobalCache()->getStorageInfo($storageId)]]></code>
|
||||
</NullableReturnStatement>
|
||||
</file>
|
||||
<file src="lib/private/Files/Config/MountProviderCollection.php">
|
||||
<InvalidOperand>
|
||||
<code><![CDATA[$user]]></code>
|
||||
|
||||
@@ -18,6 +18,8 @@ return (require __DIR__ . '/rector-shared.php')
|
||||
$nextcloudDir . '/lib/private/Settings/AuthorizedGroupMapper.php',
|
||||
$nextcloudDir . '/apps/settings/lib/Service/AuthorizedGroupService.php',
|
||||
$nextcloudDir . '/lib/private/Files/Storage/Storage.php',
|
||||
$nextcloudDir . '/lib/private/Files/Cache/Storage.php',
|
||||
$nextcloudDir . '/lib/private/Files/Cache/StorageGlobal.php',
|
||||
$nextcloudDir . '/lib/private/Files/Storage/Wrapper/Wrapper.php',
|
||||
$nextcloudDir . '/build/psalm/ITypedQueryBuilderTest.php',
|
||||
$nextcloudDir . '/lib/private/DB/QueryBuilder/TypedQueryBuilder.php',
|
||||
|
||||
@@ -204,6 +204,7 @@ OC.L10N.register(
|
||||
"Search people" : "Etsi ihmisiä",
|
||||
"People" : "Ihmiset",
|
||||
"Filter in current view" : "Suodata nykyisessä näkymässä",
|
||||
"Search connected services" : "Etsi liitetyistä palveluista",
|
||||
"Results" : "Tulokset",
|
||||
"Load more results" : "Lataa lisää tuloksia",
|
||||
"Search in" : "Etsi kohteesta",
|
||||
|
||||
@@ -202,6 +202,7 @@
|
||||
"Search people" : "Etsi ihmisiä",
|
||||
"People" : "Ihmiset",
|
||||
"Filter in current view" : "Suodata nykyisessä näkymässä",
|
||||
"Search connected services" : "Etsi liitetyistä palveluista",
|
||||
"Results" : "Tulokset",
|
||||
"Load more results" : "Lataa lisää tuloksia",
|
||||
"Search in" : "Etsi kohteesta",
|
||||
|
||||
+1
-1
@@ -281,7 +281,7 @@ OC.L10N.register(
|
||||
"Your files are encrypted. There will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" : "Je bestanden zijn versleuteld. Het is niet mogelijk om je gegevens terug te krijgen als je wachtwoord wordt gereset. Als je niet zeker weer wat je moet doen, neem dan contact op met je beheerder voordat je verdergaat. Wil je echt verder gaan?",
|
||||
"I know what I'm doing" : "Ik weet wat ik doe",
|
||||
"Resetting password" : "Resetten wachtwoord",
|
||||
"Schedule work & meetings, synced with all your devices." : "Plan je werk & afspraken, gesynced met al je toestellen.",
|
||||
"Schedule work & meetings, synced with all your devices." : "Plan je werk & vergaderingen, gesynchroniseerd met al je apparaten.",
|
||||
"Keep your colleagues and friends in one place without leaking their private info." : "Bewaar je collega's en vrienden op één plaats zonder hun persoonlijke gegevens te laten uitlekken.",
|
||||
"Simple email app nicely integrated with Files, Contacts and Calendar." : "Simpele e-mailapp, handig geïntegreerd met Bestanden, Contactpersonen en Agenda.",
|
||||
"Chatting, video calls, screen sharing, online meetings and web conferencing – in your browser and with mobile apps." : "Chatten, videobellen, schermdelen, online vergaderingen en webconferenties - in de browser en met mobiele apps.",
|
||||
|
||||
+1
-1
@@ -279,7 +279,7 @@
|
||||
"Your files are encrypted. There will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" : "Je bestanden zijn versleuteld. Het is niet mogelijk om je gegevens terug te krijgen als je wachtwoord wordt gereset. Als je niet zeker weer wat je moet doen, neem dan contact op met je beheerder voordat je verdergaat. Wil je echt verder gaan?",
|
||||
"I know what I'm doing" : "Ik weet wat ik doe",
|
||||
"Resetting password" : "Resetten wachtwoord",
|
||||
"Schedule work & meetings, synced with all your devices." : "Plan je werk & afspraken, gesynced met al je toestellen.",
|
||||
"Schedule work & meetings, synced with all your devices." : "Plan je werk & vergaderingen, gesynchroniseerd met al je apparaten.",
|
||||
"Keep your colleagues and friends in one place without leaking their private info." : "Bewaar je collega's en vrienden op één plaats zonder hun persoonlijke gegevens te laten uitlekken.",
|
||||
"Simple email app nicely integrated with Files, Contacts and Calendar." : "Simpele e-mailapp, handig geïntegreerd met Bestanden, Contactpersonen en Agenda.",
|
||||
"Chatting, video calls, screen sharing, online meetings and web conferencing – in your browser and with mobile apps." : "Chatten, videobellen, schermdelen, online vergaderingen en webconferenties - in de browser en met mobiele apps.",
|
||||
|
||||
Generated
+31
-28
@@ -2,11 +2,11 @@
|
||||
"nodes": {
|
||||
"crane": {
|
||||
"locked": {
|
||||
"lastModified": 1760924934,
|
||||
"narHash": "sha256-tuuqY5aU7cUkR71sO2TraVKK2boYrdW3gCSXUkF4i44=",
|
||||
"lastModified": 1763938834,
|
||||
"narHash": "sha256-j8iB0Yr4zAvQLueCZ5abxfk6fnG/SJ5JnGUziETjwfg=",
|
||||
"owner": "ipetkov",
|
||||
"repo": "crane",
|
||||
"rev": "c6b4d5308293d0d04fcfeee92705017537cad02f",
|
||||
"rev": "d9e753122e51cee64eb8d2dddfe11148f339f5a2",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
@@ -18,15 +18,15 @@
|
||||
"flake-compat": {
|
||||
"flake": false,
|
||||
"locked": {
|
||||
"lastModified": 1766661267,
|
||||
"narHash": "sha256-QN1r/zNqvXHwWqlRAnRtFf4CQwIOJx58PtdExIzAw94=",
|
||||
"owner": "edolstra",
|
||||
"lastModified": 1767039857,
|
||||
"narHash": "sha256-vNpUSpF5Nuw8xvDLj2KCwwksIbjua2LZCqhV1LNRDns=",
|
||||
"owner": "NixOS",
|
||||
"repo": "flake-compat",
|
||||
"rev": "f275e157c50c3a9a682b4c9b4aa4db7a4cd3b5f2",
|
||||
"rev": "5edf11c44bc78a0d334f6334cdaf7d60d732daab",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "edolstra",
|
||||
"owner": "NixOS",
|
||||
"repo": "flake-compat",
|
||||
"type": "github"
|
||||
}
|
||||
@@ -57,11 +57,11 @@
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1764593611,
|
||||
"narHash": "sha256-6SdexcO69Dlu14YN2xuB1A6JHWSrcqMj7Na9oK7IT2M=",
|
||||
"lastModified": 1773062095,
|
||||
"narHash": "sha256-u+cK9IoJokO4YzQwMc2s8Vti0RL/LVSrROOEn2opc5U=",
|
||||
"owner": "nix-community",
|
||||
"repo": "flakelight",
|
||||
"rev": "0d63256401341f528dd628f1a8e96d3afecade7a",
|
||||
"rev": "c99e4d5f40e578cb2d8f460ea2bbd5dc26316d24",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
@@ -76,14 +76,17 @@
|
||||
"mill-scale": "mill-scale",
|
||||
"nixpkgs": [
|
||||
"nixpkgs"
|
||||
],
|
||||
"phps": [
|
||||
"phps"
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1768845737,
|
||||
"narHash": "sha256-lbZkWotPUuZjH7MqupZCkzY7sFGaE1cvRcuju/n0ACE=",
|
||||
"lastModified": 1773151599,
|
||||
"narHash": "sha256-zcIsBArZ2Ax/7OLXSH7Q1ona+TY9vi5H2S71KxJuTIg=",
|
||||
"ref": "refs/heads/main",
|
||||
"rev": "036232285c06719c83f27c0786b8446850795694",
|
||||
"revCount": 329,
|
||||
"rev": "0105c60a094915f7fc1fb617bc967c32d7557d84",
|
||||
"revCount": 373,
|
||||
"type": "git",
|
||||
"url": "https://codeberg.org/icewind/haze.git"
|
||||
},
|
||||
@@ -102,11 +105,11 @@
|
||||
"rust-overlay": "rust-overlay"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1763591898,
|
||||
"narHash": "sha256-aHSMj7CIa9EJYxdf05wOWRGp0KRsT/TAox7uwVSdDb8=",
|
||||
"lastModified": 1772297202,
|
||||
"narHash": "sha256-UEzHO/tCmhPhr8RpWtbm1MTa7ABobwt3nCjrcuDAPm0=",
|
||||
"ref": "refs/heads/main",
|
||||
"rev": "2d9b2da2c9f384f93ef977c48f8ee35ce586529b",
|
||||
"revCount": 66,
|
||||
"rev": "8690e1514863b934de12f2a503c9431d186ce30b",
|
||||
"revCount": 68,
|
||||
"type": "git",
|
||||
"url": "https://codeberg.org/icewind/mill-scale.git"
|
||||
},
|
||||
@@ -117,11 +120,11 @@
|
||||
},
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1769089682,
|
||||
"narHash": "sha256-9yA/LIuAVQq0lXelrZPjLuLVuZdm03p8tfmHhnDIkms=",
|
||||
"lastModified": 1772822230,
|
||||
"narHash": "sha256-yf3iYLGbGVlIthlQIk5/4/EQDZNNEmuqKZkQssMljuw=",
|
||||
"owner": "nixos",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "078d69f03934859a181e81ba987c2bb033eebfc5",
|
||||
"rev": "71caefce12ba78d84fe618cf61644dce01cf3a96",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
@@ -142,11 +145,11 @@
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1766935672,
|
||||
"narHash": "sha256-XkSpJep7KTV1qwDz0qOnqar2Vj8iNvq38C4w2tYfbjo=",
|
||||
"lastModified": 1772365008,
|
||||
"narHash": "sha256-/ynkWKeZ1dyRIUkQas0AB35semWAwCbTKXu+/q+8MGg=",
|
||||
"owner": "fossar",
|
||||
"repo": "nix-phps",
|
||||
"rev": "4628eecc30d4d25ffbff6ea4fbb30698dbdd3f71",
|
||||
"rev": "f47eb877bf1c219809e4357eec2fdab8e3263b7b",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
@@ -173,11 +176,11 @@
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1761964689,
|
||||
"narHash": "sha256-Zo3LQQDz+64EQ9zor/WmeNTFLoZkjmhp0UY3G0D3seE=",
|
||||
"lastModified": 1764557621,
|
||||
"narHash": "sha256-kX5PoY8hQZ80+amMQgOO9t8Tc1JZ70gYRnzaVD4AA+o=",
|
||||
"owner": "oxalica",
|
||||
"repo": "rust-overlay",
|
||||
"rev": "63d22578600f70d293aede6bc737efef60ebd97f",
|
||||
"rev": "93316876c2229460a5d6f5f052766cc4cef538ce",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# The flake is compatible with >=stable30, so make sure to backport all changes to stable30 and up.
|
||||
{
|
||||
nixConfig = {
|
||||
extra-substituters = [ "https://fossar.cachix.org" ];
|
||||
@@ -16,7 +17,10 @@
|
||||
};
|
||||
haze = {
|
||||
url = "git+https://codeberg.org/icewind/haze.git";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
inputs = {
|
||||
nixpkgs.follows = "nixpkgs";
|
||||
phps.follows = "phps";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
+3
-3
@@ -163,9 +163,6 @@ OC.L10N.register(
|
||||
"Set an admin Login." : "تعيين مُعرف تسجيل دخول المدير.",
|
||||
"Set an admin password." : "تعيين كلمة مرور للمدير",
|
||||
"Cannot create or write into the data directory %s" : "لا يمكن الإنشاء أو الكتابة في دليل البيانات %s",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "يجب أن تقوم الواجهة الخلفية للمشاركة (Sharing backend) %s بتطبيق الواجهة OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "لم يتم العثور على الواجهة الخلفية (Sharing backend) %s",
|
||||
"Sharing backend for %s not found" : "مشاركة الخلفية لـ %s غير موجود",
|
||||
"%1$s shared %2$s with you" : "قام%1$s بمشاركة %2$s معك",
|
||||
"Open %s" : "إفتَح %s",
|
||||
"%1$s via %2$s" : "%1$s عبر %2$s",
|
||||
@@ -438,6 +435,9 @@ OC.L10N.register(
|
||||
"Summarizes text by reducing its length without losing key information." : "يُلَخِّص النص بتقليل طوله دون فقدان المعنى.",
|
||||
"Extracts topics from a text and outputs them separated by commas." : "يستخلص المواضيع من النص و إخراجها مفصولة بفواصل.",
|
||||
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk!" : "\"Mac OS X\" غير مدعوم؛ و %s سوف لن يعمل بالشكل الصحيح على هذه المنصة. استعمله على مسؤوليتك!",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "يجب أن تقوم الواجهة الخلفية للمشاركة (Sharing backend) %s بتطبيق الواجهة OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "لم يتم العثور على الواجهة الخلفية (Sharing backend) %s",
|
||||
"Sharing backend for %s not found" : "مشاركة الخلفية لـ %s غير موجود",
|
||||
"Application is not enabled" : "التطبيق غير مفعّل",
|
||||
"Authentication error" : "لم يتم التأكد من الشخصية بنجاح",
|
||||
"Token expired. Please reload page." : "انتهت صلاحية الكلمة , يرجى اعادة تحميل الصفحة"
|
||||
|
||||
+3
-3
@@ -161,9 +161,6 @@
|
||||
"Set an admin Login." : "تعيين مُعرف تسجيل دخول المدير.",
|
||||
"Set an admin password." : "تعيين كلمة مرور للمدير",
|
||||
"Cannot create or write into the data directory %s" : "لا يمكن الإنشاء أو الكتابة في دليل البيانات %s",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "يجب أن تقوم الواجهة الخلفية للمشاركة (Sharing backend) %s بتطبيق الواجهة OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "لم يتم العثور على الواجهة الخلفية (Sharing backend) %s",
|
||||
"Sharing backend for %s not found" : "مشاركة الخلفية لـ %s غير موجود",
|
||||
"%1$s shared %2$s with you" : "قام%1$s بمشاركة %2$s معك",
|
||||
"Open %s" : "إفتَح %s",
|
||||
"%1$s via %2$s" : "%1$s عبر %2$s",
|
||||
@@ -436,6 +433,9 @@
|
||||
"Summarizes text by reducing its length without losing key information." : "يُلَخِّص النص بتقليل طوله دون فقدان المعنى.",
|
||||
"Extracts topics from a text and outputs them separated by commas." : "يستخلص المواضيع من النص و إخراجها مفصولة بفواصل.",
|
||||
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk!" : "\"Mac OS X\" غير مدعوم؛ و %s سوف لن يعمل بالشكل الصحيح على هذه المنصة. استعمله على مسؤوليتك!",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "يجب أن تقوم الواجهة الخلفية للمشاركة (Sharing backend) %s بتطبيق الواجهة OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "لم يتم العثور على الواجهة الخلفية (Sharing backend) %s",
|
||||
"Sharing backend for %s not found" : "مشاركة الخلفية لـ %s غير موجود",
|
||||
"Application is not enabled" : "التطبيق غير مفعّل",
|
||||
"Authentication error" : "لم يتم التأكد من الشخصية بنجاح",
|
||||
"Token expired. Please reload page." : "انتهت صلاحية الكلمة , يرجى اعادة تحميل الصفحة"
|
||||
|
||||
+3
-3
@@ -132,9 +132,6 @@ OC.L10N.register(
|
||||
"Set an admin Login." : "Afitar la cuenta d'alministración",
|
||||
"Set an admin password." : "Afitar una contraseña d'alministrador",
|
||||
"Cannot create or write into the data directory %s" : "Nun se pue crear o escribir nel direutoriu de datos «%s»",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend de compartición «%s» ha implmentar la interfaz OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "Nun s'atopó'l backend de compartición «%s»",
|
||||
"Sharing backend for %s not found" : "Nun s'atopó'l backend de compartición pa: %s",
|
||||
"%1$s via %2$s" : "%1$s per %2$s",
|
||||
"Unknown share type" : "Tipu de compartición desconocida",
|
||||
"You are not allowed to share %s" : "Nun tienes permisu pa compartir «%s»",
|
||||
@@ -212,6 +209,9 @@ OC.L10N.register(
|
||||
"Result" : "Resultáu",
|
||||
"Summarizes text by reducing its length without losing key information." : "Resume'l testu amenorgando la so llongura ensin perder la información importante.",
|
||||
"Extracts topics from a text and outputs them separated by commas." : "Estrái temes d'un testu y devuélvelos separtaos per comes.",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend de compartición «%s» ha implmentar la interfaz OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "Nun s'atopó'l backend de compartición «%s»",
|
||||
"Sharing backend for %s not found" : "Nun s'atopó'l backend de compartición pa: %s",
|
||||
"Application is not enabled" : "L'aplicación nun ta activada",
|
||||
"Authentication error" : "Error de l'autenticación"
|
||||
},
|
||||
|
||||
+3
-3
@@ -130,9 +130,6 @@
|
||||
"Set an admin Login." : "Afitar la cuenta d'alministración",
|
||||
"Set an admin password." : "Afitar una contraseña d'alministrador",
|
||||
"Cannot create or write into the data directory %s" : "Nun se pue crear o escribir nel direutoriu de datos «%s»",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend de compartición «%s» ha implmentar la interfaz OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "Nun s'atopó'l backend de compartición «%s»",
|
||||
"Sharing backend for %s not found" : "Nun s'atopó'l backend de compartición pa: %s",
|
||||
"%1$s via %2$s" : "%1$s per %2$s",
|
||||
"Unknown share type" : "Tipu de compartición desconocida",
|
||||
"You are not allowed to share %s" : "Nun tienes permisu pa compartir «%s»",
|
||||
@@ -210,6 +207,9 @@
|
||||
"Result" : "Resultáu",
|
||||
"Summarizes text by reducing its length without losing key information." : "Resume'l testu amenorgando la so llongura ensin perder la información importante.",
|
||||
"Extracts topics from a text and outputs them separated by commas." : "Estrái temes d'un testu y devuélvelos separtaos per comes.",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend de compartición «%s» ha implmentar la interfaz OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "Nun s'atopó'l backend de compartición «%s»",
|
||||
"Sharing backend for %s not found" : "Nun s'atopó'l backend de compartición pa: %s",
|
||||
"Application is not enabled" : "L'aplicación nun ta activada",
|
||||
"Authentication error" : "Error de l'autenticación"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
||||
+3
-3
@@ -125,9 +125,6 @@ OC.L10N.register(
|
||||
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Моля, премахтене настройката за open_basedir от вашия php.ini или преминете към 64-битово PHP.",
|
||||
"Set an admin password." : "Задай парола за администратор.",
|
||||
"Cannot create or write into the data directory %s" : "Неуспешно създаване или записване в директорията с данни \"data\" %s",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Споделянето на сървърния %s трябва да поддържа OCP\\Share_Backend интерфейс.",
|
||||
"Sharing backend %s not found" : "Споделянето на сървърния %s не е открито.",
|
||||
"Sharing backend for %s not found" : "Споделянето на сървъра за %s не е открито.",
|
||||
"%1$s via %2$s" : "%1$s чрез %2$s",
|
||||
"Unknown share type" : "Неизвестен тип споделяне",
|
||||
"You are not allowed to share %s" : "Не ти е разрешено да споделяш %s.",
|
||||
@@ -233,6 +230,9 @@ OC.L10N.register(
|
||||
"Translate" : "Превод",
|
||||
"Target language" : "Целеви език",
|
||||
"Result" : "Резултат",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Споделянето на сървърния %s трябва да поддържа OCP\\Share_Backend интерфейс.",
|
||||
"Sharing backend %s not found" : "Споделянето на сървърния %s не е открито.",
|
||||
"Sharing backend for %s not found" : "Споделянето на сървъра за %s не е открито.",
|
||||
"Application is not enabled" : "Приложението не е включено",
|
||||
"Authentication error" : "Грешка при удостоверяването",
|
||||
"Token expired. Please reload page." : "Изтекла сесия. Моля, презареди страницата."
|
||||
|
||||
+3
-3
@@ -123,9 +123,6 @@
|
||||
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Моля, премахтене настройката за open_basedir от вашия php.ini или преминете към 64-битово PHP.",
|
||||
"Set an admin password." : "Задай парола за администратор.",
|
||||
"Cannot create or write into the data directory %s" : "Неуспешно създаване или записване в директорията с данни \"data\" %s",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Споделянето на сървърния %s трябва да поддържа OCP\\Share_Backend интерфейс.",
|
||||
"Sharing backend %s not found" : "Споделянето на сървърния %s не е открито.",
|
||||
"Sharing backend for %s not found" : "Споделянето на сървъра за %s не е открито.",
|
||||
"%1$s via %2$s" : "%1$s чрез %2$s",
|
||||
"Unknown share type" : "Неизвестен тип споделяне",
|
||||
"You are not allowed to share %s" : "Не ти е разрешено да споделяш %s.",
|
||||
@@ -231,6 +228,9 @@
|
||||
"Translate" : "Превод",
|
||||
"Target language" : "Целеви език",
|
||||
"Result" : "Резултат",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Споделянето на сървърния %s трябва да поддържа OCP\\Share_Backend интерфейс.",
|
||||
"Sharing backend %s not found" : "Споделянето на сървърния %s не е открито.",
|
||||
"Sharing backend for %s not found" : "Споделянето на сървъра за %s не е открито.",
|
||||
"Application is not enabled" : "Приложението не е включено",
|
||||
"Authentication error" : "Грешка при удостоверяването",
|
||||
"Token expired. Please reload page." : "Изтекла сесия. Моля, презареди страницата."
|
||||
|
||||
+1
-1
@@ -40,7 +40,6 @@ OC.L10N.register(
|
||||
"Role" : "Roll",
|
||||
"Additional settings" : "Stummoù ouzhpenn",
|
||||
"Set an admin password." : "Lakaat ur ger-tremenn merour.",
|
||||
"Sharing backend for %s not found" : "Rannadenn backend evit %s n'eo ket bet kavet",
|
||||
"Sunday" : "Sul",
|
||||
"Monday" : "Lun",
|
||||
"Wednesday" : "Merc'her",
|
||||
@@ -75,6 +74,7 @@ OC.L10N.register(
|
||||
"Summary" : "Diverrañ",
|
||||
"Translate" : "Treiñ",
|
||||
"Origin text" : "Testenn orin",
|
||||
"Sharing backend for %s not found" : "Rannadenn backend evit %s n'eo ket bet kavet",
|
||||
"Application is not enabled" : "N'eo ket aotreet ar meziant",
|
||||
"Authentication error" : "Fazi dilesa",
|
||||
"Token expired. Please reload page." : "Jedouer re gozh. Adkargit ar bajenn."
|
||||
|
||||
+1
-1
@@ -38,7 +38,6 @@
|
||||
"Role" : "Roll",
|
||||
"Additional settings" : "Stummoù ouzhpenn",
|
||||
"Set an admin password." : "Lakaat ur ger-tremenn merour.",
|
||||
"Sharing backend for %s not found" : "Rannadenn backend evit %s n'eo ket bet kavet",
|
||||
"Sunday" : "Sul",
|
||||
"Monday" : "Lun",
|
||||
"Wednesday" : "Merc'her",
|
||||
@@ -73,6 +72,7 @@
|
||||
"Summary" : "Diverrañ",
|
||||
"Translate" : "Treiñ",
|
||||
"Origin text" : "Testenn orin",
|
||||
"Sharing backend for %s not found" : "Rannadenn backend evit %s n'eo ket bet kavet",
|
||||
"Application is not enabled" : "N'eo ket aotreet ar meziant",
|
||||
"Authentication error" : "Fazi dilesa",
|
||||
"Token expired. Please reload page." : "Jedouer re gozh. Adkargit ar bajenn."
|
||||
|
||||
+3
-3
@@ -160,9 +160,6 @@ OC.L10N.register(
|
||||
"Set an admin Login." : "Definiu un inici de sessió per a l'administrador.",
|
||||
"Set an admin password." : "Definiu una contrasenya per a l'administrador.",
|
||||
"Cannot create or write into the data directory %s" : "No es pot crear la carpeta de dades %s ni escriure-hi",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El rerefons d'ús compartit %s ha d'implementar la interfície OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No s'ha trobat el rerefons d'ús compartit %s",
|
||||
"Sharing backend for %s not found" : "No s'ha trobat el rerefons d'ús compartit per a %s",
|
||||
"%1$s shared %2$s with you" : "%1$s ha compartit %2$s amb tu",
|
||||
"Open %s" : "Obre %s",
|
||||
"%1$s via %2$s" : "%1$s mitjançant %2$s",
|
||||
@@ -434,6 +431,9 @@ OC.L10N.register(
|
||||
"Generate headline" : "Genera un titular",
|
||||
"Summarizes text by reducing its length without losing key information." : "Resumeix el text reduint-ne la longitud sense perdre la informació clau.",
|
||||
"Extracts topics from a text and outputs them separated by commas." : "Extreu els temes d'un text i els retorna separats per comes.",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El rerefons d'ús compartit %s ha d'implementar la interfície OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No s'ha trobat el rerefons d'ús compartit %s",
|
||||
"Sharing backend for %s not found" : "No s'ha trobat el rerefons d'ús compartit per a %s",
|
||||
"Application is not enabled" : "L'aplicació no està habilitada",
|
||||
"Authentication error" : "Error d'autenticació",
|
||||
"Token expired. Please reload page." : "El testimoni ha caducat. Torneu a carregar la pàgina."
|
||||
|
||||
+3
-3
@@ -158,9 +158,6 @@
|
||||
"Set an admin Login." : "Definiu un inici de sessió per a l'administrador.",
|
||||
"Set an admin password." : "Definiu una contrasenya per a l'administrador.",
|
||||
"Cannot create or write into the data directory %s" : "No es pot crear la carpeta de dades %s ni escriure-hi",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El rerefons d'ús compartit %s ha d'implementar la interfície OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No s'ha trobat el rerefons d'ús compartit %s",
|
||||
"Sharing backend for %s not found" : "No s'ha trobat el rerefons d'ús compartit per a %s",
|
||||
"%1$s shared %2$s with you" : "%1$s ha compartit %2$s amb tu",
|
||||
"Open %s" : "Obre %s",
|
||||
"%1$s via %2$s" : "%1$s mitjançant %2$s",
|
||||
@@ -432,6 +429,9 @@
|
||||
"Generate headline" : "Genera un titular",
|
||||
"Summarizes text by reducing its length without losing key information." : "Resumeix el text reduint-ne la longitud sense perdre la informació clau.",
|
||||
"Extracts topics from a text and outputs them separated by commas." : "Extreu els temes d'un text i els retorna separats per comes.",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El rerefons d'ús compartit %s ha d'implementar la interfície OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No s'ha trobat el rerefons d'ús compartit %s",
|
||||
"Sharing backend for %s not found" : "No s'ha trobat el rerefons d'ús compartit per a %s",
|
||||
"Application is not enabled" : "L'aplicació no està habilitada",
|
||||
"Authentication error" : "Error d'autenticació",
|
||||
"Token expired. Please reload page." : "El testimoni ha caducat. Torneu a carregar la pàgina."
|
||||
|
||||
+3
-3
@@ -167,9 +167,6 @@ OC.L10N.register(
|
||||
"Set an admin Login." : "Nastavte přihlašovací jméno správce.",
|
||||
"Set an admin password." : "Nastavte heslo pro účet správce.",
|
||||
"Cannot create or write into the data directory %s" : "Nedaří se vytvořit nebo zapisovat do datového adresáře %s",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Je třeba, aby podpůrná vrstva pro sdílení %s implementovala rozhraní OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "Podpůrná vrstva pro sdílení %s nenalezena",
|
||||
"Sharing backend for %s not found" : "Úložiště sdílení pro %s nenalezeno",
|
||||
"%1$s shared %2$s with you" : "%1$s vám nasdílel(a) %2$s",
|
||||
"Open %s" : "Otevřít %s",
|
||||
"%1$s via %2$s" : "%1$s prostřednictvím %2$s",
|
||||
@@ -474,6 +471,9 @@ OC.L10N.register(
|
||||
"Summarizes text by reducing its length without losing key information." : "Vytvoří stručný souhrn textu tím, že zkrátí jeho délku aniž by byly ztraceny klíčové informace",
|
||||
"Extracts topics from a text and outputs them separated by commas." : "Vyzíská témata z textu a vypíše je oddělované čárkami.",
|
||||
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk!" : "macOS není podporován a %s nebude na této platformě správně fungovat. Používejte pouze na vlastní nebezpečí!",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Je třeba, aby podpůrná vrstva pro sdílení %s implementovala rozhraní OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "Podpůrná vrstva pro sdílení %s nenalezena",
|
||||
"Sharing backend for %s not found" : "Úložiště sdílení pro %s nenalezeno",
|
||||
"Application is not enabled" : "Aplikace není povolena",
|
||||
"Authentication error" : "Chyba při ověřování se",
|
||||
"Token expired. Please reload page." : "Platnost tokenu skončila. Načtěte stránku znovu."
|
||||
|
||||
+3
-3
@@ -165,9 +165,6 @@
|
||||
"Set an admin Login." : "Nastavte přihlašovací jméno správce.",
|
||||
"Set an admin password." : "Nastavte heslo pro účet správce.",
|
||||
"Cannot create or write into the data directory %s" : "Nedaří se vytvořit nebo zapisovat do datového adresáře %s",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Je třeba, aby podpůrná vrstva pro sdílení %s implementovala rozhraní OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "Podpůrná vrstva pro sdílení %s nenalezena",
|
||||
"Sharing backend for %s not found" : "Úložiště sdílení pro %s nenalezeno",
|
||||
"%1$s shared %2$s with you" : "%1$s vám nasdílel(a) %2$s",
|
||||
"Open %s" : "Otevřít %s",
|
||||
"%1$s via %2$s" : "%1$s prostřednictvím %2$s",
|
||||
@@ -472,6 +469,9 @@
|
||||
"Summarizes text by reducing its length without losing key information." : "Vytvoří stručný souhrn textu tím, že zkrátí jeho délku aniž by byly ztraceny klíčové informace",
|
||||
"Extracts topics from a text and outputs them separated by commas." : "Vyzíská témata z textu a vypíše je oddělované čárkami.",
|
||||
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk!" : "macOS není podporován a %s nebude na této platformě správně fungovat. Používejte pouze na vlastní nebezpečí!",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Je třeba, aby podpůrná vrstva pro sdílení %s implementovala rozhraní OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "Podpůrná vrstva pro sdílení %s nenalezena",
|
||||
"Sharing backend for %s not found" : "Úložiště sdílení pro %s nenalezeno",
|
||||
"Application is not enabled" : "Aplikace není povolena",
|
||||
"Authentication error" : "Chyba při ověřování se",
|
||||
"Token expired. Please reload page." : "Platnost tokenu skončila. Načtěte stránku znovu."
|
||||
|
||||
+3
-3
@@ -166,9 +166,6 @@ OC.L10N.register(
|
||||
"Set an admin Login." : "Sæt et admin login.",
|
||||
"Set an admin password." : "Angiv et admin kodeord.",
|
||||
"Cannot create or write into the data directory %s" : "Kan ikke oprette eller skrive ind i datamappen %s",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Delingsbackend'en %s skal implementere grænsefladen OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "Delingsbackend'en %s blev ikke fundet",
|
||||
"Sharing backend for %s not found" : "Delingsbackend'en for %s blev ikke fundet",
|
||||
"%1$s shared %2$s with you" : " %1$s delte %2$s med dig",
|
||||
"Open %s" : "Åbn %s",
|
||||
"%1$s via %2$s" : "%1$s via %2$s",
|
||||
@@ -465,6 +462,9 @@ OC.L10N.register(
|
||||
"Summarizes text by reducing its length without losing key information." : "Opsummerer tekst ved at reducere dens længde uden at miste nøgleinformation.",
|
||||
"Extracts topics from a text and outputs them separated by commas." : "Uddrager emner fra en tekst og skriver dem adskilt af kommaer.",
|
||||
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk!" : "Mac OS X understøttes ikke, og %s vil ikke fungere korrekt på denne platform. Brug det på eget ansvar!",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Delingsbackend'en %s skal implementere grænsefladen OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "Delingsbackend'en %s blev ikke fundet",
|
||||
"Sharing backend for %s not found" : "Delingsbackend'en for %s blev ikke fundet",
|
||||
"Application is not enabled" : "Programmet er ikke aktiveret",
|
||||
"Authentication error" : "Adgangsfejl",
|
||||
"Token expired. Please reload page." : "Adgang er udløbet. Genindlæs siden."
|
||||
|
||||
+3
-3
@@ -164,9 +164,6 @@
|
||||
"Set an admin Login." : "Sæt et admin login.",
|
||||
"Set an admin password." : "Angiv et admin kodeord.",
|
||||
"Cannot create or write into the data directory %s" : "Kan ikke oprette eller skrive ind i datamappen %s",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Delingsbackend'en %s skal implementere grænsefladen OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "Delingsbackend'en %s blev ikke fundet",
|
||||
"Sharing backend for %s not found" : "Delingsbackend'en for %s blev ikke fundet",
|
||||
"%1$s shared %2$s with you" : " %1$s delte %2$s med dig",
|
||||
"Open %s" : "Åbn %s",
|
||||
"%1$s via %2$s" : "%1$s via %2$s",
|
||||
@@ -463,6 +460,9 @@
|
||||
"Summarizes text by reducing its length without losing key information." : "Opsummerer tekst ved at reducere dens længde uden at miste nøgleinformation.",
|
||||
"Extracts topics from a text and outputs them separated by commas." : "Uddrager emner fra en tekst og skriver dem adskilt af kommaer.",
|
||||
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk!" : "Mac OS X understøttes ikke, og %s vil ikke fungere korrekt på denne platform. Brug det på eget ansvar!",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Delingsbackend'en %s skal implementere grænsefladen OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "Delingsbackend'en %s blev ikke fundet",
|
||||
"Sharing backend for %s not found" : "Delingsbackend'en for %s blev ikke fundet",
|
||||
"Application is not enabled" : "Programmet er ikke aktiveret",
|
||||
"Authentication error" : "Adgangsfejl",
|
||||
"Token expired. Please reload page." : "Adgang er udløbet. Genindlæs siden."
|
||||
|
||||
+3
-3
@@ -167,9 +167,6 @@ OC.L10N.register(
|
||||
"Set an admin Login." : "Anmeldename für Andministration setzen.",
|
||||
"Set an admin password." : "Ein Administrationspasswort setzen.",
|
||||
"Cannot create or write into the data directory %s" : "Das Datenverzeichnis %s kann nicht erstellt oder es kann darin nicht geschrieben werden.",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Freigabe-Backend %s muss in der OCP\\Share_Backend - Schnittstelle implementiert werden",
|
||||
"Sharing backend %s not found" : "Freigabe-Backend %s nicht gefunden",
|
||||
"Sharing backend for %s not found" : "Freigabe-Backend für %s nicht gefunden",
|
||||
"%1$s shared %2$s with you" : "%1$s hat %2$s mit dir geteilt",
|
||||
"Open %s" : "%s öffnen",
|
||||
"%1$s via %2$s" : "%1$s über %2$s",
|
||||
@@ -474,6 +471,9 @@ OC.L10N.register(
|
||||
"Summarizes text by reducing its length without losing key information." : "Fasst Text zusammen, indem die Länge reduziert wird, ohne dass wichtige Informationen verloren gehen.",
|
||||
"Extracts topics from a text and outputs them separated by commas." : "Extrahiert Themen aus einem Text und gibt sie durch Kommas getrennt aus.",
|
||||
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk!" : "Mac OS X wird nicht unterstützt und %s wird unter dieser Plattform nicht richtig funktionieren. Verwendung auf eigene Gefahr!",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Freigabe-Backend %s muss in der OCP\\Share_Backend - Schnittstelle implementiert werden",
|
||||
"Sharing backend %s not found" : "Freigabe-Backend %s nicht gefunden",
|
||||
"Sharing backend for %s not found" : "Freigabe-Backend für %s nicht gefunden",
|
||||
"Application is not enabled" : "Die Anwendung ist nicht aktiviert",
|
||||
"Authentication error" : "Authentifizierungsfehler",
|
||||
"Token expired. Please reload page." : "Token abgelaufen. Bitte lade die Seite neu."
|
||||
|
||||
+3
-3
@@ -165,9 +165,6 @@
|
||||
"Set an admin Login." : "Anmeldename für Andministration setzen.",
|
||||
"Set an admin password." : "Ein Administrationspasswort setzen.",
|
||||
"Cannot create or write into the data directory %s" : "Das Datenverzeichnis %s kann nicht erstellt oder es kann darin nicht geschrieben werden.",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Freigabe-Backend %s muss in der OCP\\Share_Backend - Schnittstelle implementiert werden",
|
||||
"Sharing backend %s not found" : "Freigabe-Backend %s nicht gefunden",
|
||||
"Sharing backend for %s not found" : "Freigabe-Backend für %s nicht gefunden",
|
||||
"%1$s shared %2$s with you" : "%1$s hat %2$s mit dir geteilt",
|
||||
"Open %s" : "%s öffnen",
|
||||
"%1$s via %2$s" : "%1$s über %2$s",
|
||||
@@ -472,6 +469,9 @@
|
||||
"Summarizes text by reducing its length without losing key information." : "Fasst Text zusammen, indem die Länge reduziert wird, ohne dass wichtige Informationen verloren gehen.",
|
||||
"Extracts topics from a text and outputs them separated by commas." : "Extrahiert Themen aus einem Text und gibt sie durch Kommas getrennt aus.",
|
||||
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk!" : "Mac OS X wird nicht unterstützt und %s wird unter dieser Plattform nicht richtig funktionieren. Verwendung auf eigene Gefahr!",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Freigabe-Backend %s muss in der OCP\\Share_Backend - Schnittstelle implementiert werden",
|
||||
"Sharing backend %s not found" : "Freigabe-Backend %s nicht gefunden",
|
||||
"Sharing backend for %s not found" : "Freigabe-Backend für %s nicht gefunden",
|
||||
"Application is not enabled" : "Die Anwendung ist nicht aktiviert",
|
||||
"Authentication error" : "Authentifizierungsfehler",
|
||||
"Token expired. Please reload page." : "Token abgelaufen. Bitte lade die Seite neu."
|
||||
|
||||
+3
-3
@@ -167,9 +167,6 @@ OC.L10N.register(
|
||||
"Set an admin Login." : "Anmeldename für Andministration setzen.",
|
||||
"Set an admin password." : "Ein Administrationspasswort setzen.",
|
||||
"Cannot create or write into the data directory %s" : "Das Datenverzeichnis %s kann nicht erstellt oder es kann darin nicht geschrieben werden.",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Freigabe-Backend %s muss in der OCP\\Share_Backend - Schnittstelle implementiert werden",
|
||||
"Sharing backend %s not found" : "Freigabe-Backend %s nicht gefunden",
|
||||
"Sharing backend for %s not found" : "Freigabe-Backend für %s nicht gefunden",
|
||||
"%1$s shared %2$s with you" : "%1$s hat %2$s mit Ihnen geteilt",
|
||||
"Open %s" : "%s öffnen",
|
||||
"%1$s via %2$s" : "%1$s über %2$s",
|
||||
@@ -474,6 +471,9 @@ OC.L10N.register(
|
||||
"Summarizes text by reducing its length without losing key information." : "Fasst Text zusammen, indem die Länge reduziert wird, ohne dass wichtige Informationen verloren gehen.",
|
||||
"Extracts topics from a text and outputs them separated by commas." : "Extrahiert Themen aus einem Text und gibt sie durch Kommas getrennt aus.",
|
||||
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk!" : "Mac OS X wird nicht unterstützt und %s wird unter dieser Plattform nicht richtig funktionieren. Verwendung auf eigene Gefahr!",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Freigabe-Backend %s muss in der OCP\\Share_Backend - Schnittstelle implementiert werden",
|
||||
"Sharing backend %s not found" : "Freigabe-Backend %s nicht gefunden",
|
||||
"Sharing backend for %s not found" : "Freigabe-Backend für %s nicht gefunden",
|
||||
"Application is not enabled" : "Die Anwendung ist nicht aktiviert",
|
||||
"Authentication error" : "Authentifizierungsfehler",
|
||||
"Token expired. Please reload page." : "Token abgelaufen. Bitte laden Sie die Seite neu."
|
||||
|
||||
+3
-3
@@ -165,9 +165,6 @@
|
||||
"Set an admin Login." : "Anmeldename für Andministration setzen.",
|
||||
"Set an admin password." : "Ein Administrationspasswort setzen.",
|
||||
"Cannot create or write into the data directory %s" : "Das Datenverzeichnis %s kann nicht erstellt oder es kann darin nicht geschrieben werden.",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Freigabe-Backend %s muss in der OCP\\Share_Backend - Schnittstelle implementiert werden",
|
||||
"Sharing backend %s not found" : "Freigabe-Backend %s nicht gefunden",
|
||||
"Sharing backend for %s not found" : "Freigabe-Backend für %s nicht gefunden",
|
||||
"%1$s shared %2$s with you" : "%1$s hat %2$s mit Ihnen geteilt",
|
||||
"Open %s" : "%s öffnen",
|
||||
"%1$s via %2$s" : "%1$s über %2$s",
|
||||
@@ -472,6 +469,9 @@
|
||||
"Summarizes text by reducing its length without losing key information." : "Fasst Text zusammen, indem die Länge reduziert wird, ohne dass wichtige Informationen verloren gehen.",
|
||||
"Extracts topics from a text and outputs them separated by commas." : "Extrahiert Themen aus einem Text und gibt sie durch Kommas getrennt aus.",
|
||||
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk!" : "Mac OS X wird nicht unterstützt und %s wird unter dieser Plattform nicht richtig funktionieren. Verwendung auf eigene Gefahr!",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Freigabe-Backend %s muss in der OCP\\Share_Backend - Schnittstelle implementiert werden",
|
||||
"Sharing backend %s not found" : "Freigabe-Backend %s nicht gefunden",
|
||||
"Sharing backend for %s not found" : "Freigabe-Backend für %s nicht gefunden",
|
||||
"Application is not enabled" : "Die Anwendung ist nicht aktiviert",
|
||||
"Authentication error" : "Authentifizierungsfehler",
|
||||
"Token expired. Please reload page." : "Token abgelaufen. Bitte laden Sie die Seite neu."
|
||||
|
||||
+3
-3
@@ -166,9 +166,6 @@ OC.L10N.register(
|
||||
"Set an admin Login." : "Ορίστε τo όνομα χρήστη διαχειριστή.",
|
||||
"Set an admin password." : "Εισάγετε συνθηματικό διαχειριστή.",
|
||||
"Cannot create or write into the data directory %s" : "Δεν είναι δυνατή η δημιουργία ή εγγραφή στον κατάλογο δεδομένων %s",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Το σύστημα διαμοιρασμού %s πρέπει να υλοποιεί την διεπαφή OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "Το σύστημα διαμοιρασμού %s δεν βρέθηκε",
|
||||
"Sharing backend for %s not found" : "Το σύστημα διαμοιρασμού για το %s δεν βρέθηκε",
|
||||
"%1$s shared %2$s with you" : "Ο/Η %1$s μοιράστηκε το %2$s μαζί σας",
|
||||
"Open %s" : "Άνοιγμα %s",
|
||||
"%1$s via %2$s" : "%1$s μέσω %2$s",
|
||||
@@ -468,6 +465,9 @@ OC.L10N.register(
|
||||
"Summarizes text by reducing its length without losing key information." : "Περιγράφει συνοπτικά το κείμενο μειώνοντας το μήκος του χωρίς να χάνονται βασικές πληροφορίες.",
|
||||
"Extracts topics from a text and outputs them separated by commas." : "Εξάγει θέματα από ένα κείμενο και τα εμφανίζει χωρισμένα με κόμματα.",
|
||||
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk!" : "Το Mac OS X δεν υποστηρίζεται και το %s δεν θα λειτουργεί σωστά σε αυτήν την πλατφόρμα. Χρησιμοποιήστε το με δική σας ευθύνη!",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Το σύστημα διαμοιρασμού %s πρέπει να υλοποιεί την διεπαφή OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "Το σύστημα διαμοιρασμού %s δεν βρέθηκε",
|
||||
"Sharing backend for %s not found" : "Το σύστημα διαμοιρασμού για το %s δεν βρέθηκε",
|
||||
"Application is not enabled" : "Δεν ενεργοποιήθηκε η εφαρμογή",
|
||||
"Authentication error" : "Σφάλμα πιστοποίησης",
|
||||
"Token expired. Please reload page." : "Το αναγνωριστικό έληξε. Παρακαλούμε φορτώστε ξανά την σελίδα."
|
||||
|
||||
+3
-3
@@ -164,9 +164,6 @@
|
||||
"Set an admin Login." : "Ορίστε τo όνομα χρήστη διαχειριστή.",
|
||||
"Set an admin password." : "Εισάγετε συνθηματικό διαχειριστή.",
|
||||
"Cannot create or write into the data directory %s" : "Δεν είναι δυνατή η δημιουργία ή εγγραφή στον κατάλογο δεδομένων %s",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Το σύστημα διαμοιρασμού %s πρέπει να υλοποιεί την διεπαφή OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "Το σύστημα διαμοιρασμού %s δεν βρέθηκε",
|
||||
"Sharing backend for %s not found" : "Το σύστημα διαμοιρασμού για το %s δεν βρέθηκε",
|
||||
"%1$s shared %2$s with you" : "Ο/Η %1$s μοιράστηκε το %2$s μαζί σας",
|
||||
"Open %s" : "Άνοιγμα %s",
|
||||
"%1$s via %2$s" : "%1$s μέσω %2$s",
|
||||
@@ -466,6 +463,9 @@
|
||||
"Summarizes text by reducing its length without losing key information." : "Περιγράφει συνοπτικά το κείμενο μειώνοντας το μήκος του χωρίς να χάνονται βασικές πληροφορίες.",
|
||||
"Extracts topics from a text and outputs them separated by commas." : "Εξάγει θέματα από ένα κείμενο και τα εμφανίζει χωρισμένα με κόμματα.",
|
||||
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk!" : "Το Mac OS X δεν υποστηρίζεται και το %s δεν θα λειτουργεί σωστά σε αυτήν την πλατφόρμα. Χρησιμοποιήστε το με δική σας ευθύνη!",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Το σύστημα διαμοιρασμού %s πρέπει να υλοποιεί την διεπαφή OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "Το σύστημα διαμοιρασμού %s δεν βρέθηκε",
|
||||
"Sharing backend for %s not found" : "Το σύστημα διαμοιρασμού για το %s δεν βρέθηκε",
|
||||
"Application is not enabled" : "Δεν ενεργοποιήθηκε η εφαρμογή",
|
||||
"Authentication error" : "Σφάλμα πιστοποίησης",
|
||||
"Token expired. Please reload page." : "Το αναγνωριστικό έληξε. Παρακαλούμε φορτώστε ξανά την σελίδα."
|
||||
|
||||
+3
-3
@@ -167,9 +167,6 @@ OC.L10N.register(
|
||||
"Set an admin Login." : "Set an admin Login.",
|
||||
"Set an admin password." : "Set an admin password.",
|
||||
"Cannot create or write into the data directory %s" : "Cannot create or write into the data directory %s",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Sharing backend %s must implement the interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "Sharing backend %s not found",
|
||||
"Sharing backend for %s not found" : "Sharing backend for %s not found",
|
||||
"%1$s shared %2$s with you" : "%1$s shared %2$s with you",
|
||||
"Open %s" : "Open %s",
|
||||
"%1$s via %2$s" : "%1$s via %2$s",
|
||||
@@ -474,6 +471,9 @@ OC.L10N.register(
|
||||
"Summarizes text by reducing its length without losing key information." : "Summarizes text by reducing its length without losing key information.",
|
||||
"Extracts topics from a text and outputs them separated by commas." : "Extracts topics from a text and outputs them separated by commas.",
|
||||
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk!" : "Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk!",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Sharing backend %s must implement the interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "Sharing backend %s not found",
|
||||
"Sharing backend for %s not found" : "Sharing backend for %s not found",
|
||||
"Application is not enabled" : "Application is not enabled",
|
||||
"Authentication error" : "Authentication error",
|
||||
"Token expired. Please reload page." : "Token expired. Please reload page."
|
||||
|
||||
+3
-3
@@ -165,9 +165,6 @@
|
||||
"Set an admin Login." : "Set an admin Login.",
|
||||
"Set an admin password." : "Set an admin password.",
|
||||
"Cannot create or write into the data directory %s" : "Cannot create or write into the data directory %s",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Sharing backend %s must implement the interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "Sharing backend %s not found",
|
||||
"Sharing backend for %s not found" : "Sharing backend for %s not found",
|
||||
"%1$s shared %2$s with you" : "%1$s shared %2$s with you",
|
||||
"Open %s" : "Open %s",
|
||||
"%1$s via %2$s" : "%1$s via %2$s",
|
||||
@@ -472,6 +469,9 @@
|
||||
"Summarizes text by reducing its length without losing key information." : "Summarizes text by reducing its length without losing key information.",
|
||||
"Extracts topics from a text and outputs them separated by commas." : "Extracts topics from a text and outputs them separated by commas.",
|
||||
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk!" : "Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk!",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Sharing backend %s must implement the interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "Sharing backend %s not found",
|
||||
"Sharing backend for %s not found" : "Sharing backend for %s not found",
|
||||
"Application is not enabled" : "Application is not enabled",
|
||||
"Authentication error" : "Authentication error",
|
||||
"Token expired. Please reload page." : "Token expired. Please reload page."
|
||||
|
||||
+3
-3
@@ -94,9 +94,6 @@ OC.L10N.register(
|
||||
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Ŝajnas, ke tiu servilo %s uzas 32-bitan PHP-version, kaj ke la agordo „open_basedir“ ekzistas. Tio kaŭzos problemojn pri dosieroj pli grandaj ol 4 GB, kaj do estas tre malrekomendita.",
|
||||
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Bv. forigi la agordon „open_basedir“ de via php.ini, aŭ uzu 64-bitan version de PHP.",
|
||||
"Set an admin password." : "Agordi pasvorton de administranto.",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Kunhava interna servo %s devas realigi la interfacon „OCP\\Share_Backend“",
|
||||
"Sharing backend %s not found" : "Kunhava interna servo %s ne troviĝas",
|
||||
"Sharing backend for %s not found" : "Kunhava interna servo por %s ne troviĝas",
|
||||
"%1$s via %2$s" : "%1$s pere de %2$s",
|
||||
"Unknown share type" : "Nekonata kunhava tipo",
|
||||
"You are not allowed to share %s" : "Vi ne permesatas kunhavigi %s",
|
||||
@@ -178,6 +175,9 @@ OC.L10N.register(
|
||||
"Text" : "Teksto",
|
||||
"Summary" : "Resumo",
|
||||
"Translate" : "Traduku",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Kunhava interna servo %s devas realigi la interfacon „OCP\\Share_Backend“",
|
||||
"Sharing backend %s not found" : "Kunhava interna servo %s ne troviĝas",
|
||||
"Sharing backend for %s not found" : "Kunhava interna servo por %s ne troviĝas",
|
||||
"Application is not enabled" : "La aplikaĵo ne estas ŝaltita",
|
||||
"Authentication error" : "Aŭtentiga eraro",
|
||||
"Token expired. Please reload page." : "Ĵetono eksvalidiĝis. Bonvolu reŝargi la paĝon."
|
||||
|
||||
+3
-3
@@ -92,9 +92,6 @@
|
||||
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Ŝajnas, ke tiu servilo %s uzas 32-bitan PHP-version, kaj ke la agordo „open_basedir“ ekzistas. Tio kaŭzos problemojn pri dosieroj pli grandaj ol 4 GB, kaj do estas tre malrekomendita.",
|
||||
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Bv. forigi la agordon „open_basedir“ de via php.ini, aŭ uzu 64-bitan version de PHP.",
|
||||
"Set an admin password." : "Agordi pasvorton de administranto.",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Kunhava interna servo %s devas realigi la interfacon „OCP\\Share_Backend“",
|
||||
"Sharing backend %s not found" : "Kunhava interna servo %s ne troviĝas",
|
||||
"Sharing backend for %s not found" : "Kunhava interna servo por %s ne troviĝas",
|
||||
"%1$s via %2$s" : "%1$s pere de %2$s",
|
||||
"Unknown share type" : "Nekonata kunhava tipo",
|
||||
"You are not allowed to share %s" : "Vi ne permesatas kunhavigi %s",
|
||||
@@ -176,6 +173,9 @@
|
||||
"Text" : "Teksto",
|
||||
"Summary" : "Resumo",
|
||||
"Translate" : "Traduku",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Kunhava interna servo %s devas realigi la interfacon „OCP\\Share_Backend“",
|
||||
"Sharing backend %s not found" : "Kunhava interna servo %s ne troviĝas",
|
||||
"Sharing backend for %s not found" : "Kunhava interna servo por %s ne troviĝas",
|
||||
"Application is not enabled" : "La aplikaĵo ne estas ŝaltita",
|
||||
"Authentication error" : "Aŭtentiga eraro",
|
||||
"Token expired. Please reload page." : "Ĵetono eksvalidiĝis. Bonvolu reŝargi la paĝon."
|
||||
|
||||
+3
-3
@@ -166,9 +166,6 @@ OC.L10N.register(
|
||||
"Set an admin Login." : "Establecer un usuario administrador.",
|
||||
"Set an admin password." : "Configurar la contraseña del administrador.",
|
||||
"Cannot create or write into the data directory %s" : "No se puede crear o escribir en la carpeta de datos %s",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El motor compartido %s debe implementar la interfaz OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "El motor compartido %s no se ha encontrado",
|
||||
"Sharing backend for %s not found" : "Motor compartido para %s no encontrado",
|
||||
"%1$s shared %2$s with you" : "%1$s ha compartido %2$s contigo",
|
||||
"Open %s" : "Abrir %s",
|
||||
"%1$s via %2$s" : "%1$s vía %2$s",
|
||||
@@ -468,6 +465,9 @@ OC.L10N.register(
|
||||
"Summarizes text by reducing its length without losing key information." : "Resume el texto reduciendo su longitud sin perder información clave.",
|
||||
"Extracts topics from a text and outputs them separated by commas." : "Extrae los tópicos de un texto y genera una salida separada por comas. ",
|
||||
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk!" : "Mac OS X no está soportado y %s no funcionará bien en esta plataforma. ¡Úsela bajo su propio riesgo! ",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El motor compartido %s debe implementar la interfaz OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "El motor compartido %s no se ha encontrado",
|
||||
"Sharing backend for %s not found" : "Motor compartido para %s no encontrado",
|
||||
"Application is not enabled" : "La aplicación no está habilitada",
|
||||
"Authentication error" : "Error de autenticación",
|
||||
"Token expired. Please reload page." : "Token caducado. Por favor, recarge la página."
|
||||
|
||||
+3
-3
@@ -164,9 +164,6 @@
|
||||
"Set an admin Login." : "Establecer un usuario administrador.",
|
||||
"Set an admin password." : "Configurar la contraseña del administrador.",
|
||||
"Cannot create or write into the data directory %s" : "No se puede crear o escribir en la carpeta de datos %s",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El motor compartido %s debe implementar la interfaz OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "El motor compartido %s no se ha encontrado",
|
||||
"Sharing backend for %s not found" : "Motor compartido para %s no encontrado",
|
||||
"%1$s shared %2$s with you" : "%1$s ha compartido %2$s contigo",
|
||||
"Open %s" : "Abrir %s",
|
||||
"%1$s via %2$s" : "%1$s vía %2$s",
|
||||
@@ -466,6 +463,9 @@
|
||||
"Summarizes text by reducing its length without losing key information." : "Resume el texto reduciendo su longitud sin perder información clave.",
|
||||
"Extracts topics from a text and outputs them separated by commas." : "Extrae los tópicos de un texto y genera una salida separada por comas. ",
|
||||
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk!" : "Mac OS X no está soportado y %s no funcionará bien en esta plataforma. ¡Úsela bajo su propio riesgo! ",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El motor compartido %s debe implementar la interfaz OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "El motor compartido %s no se ha encontrado",
|
||||
"Sharing backend for %s not found" : "Motor compartido para %s no encontrado",
|
||||
"Application is not enabled" : "La aplicación no está habilitada",
|
||||
"Authentication error" : "Error de autenticación",
|
||||
"Token expired. Please reload page." : "Token caducado. Por favor, recarge la página."
|
||||
|
||||
+3
-3
@@ -71,9 +71,6 @@ OC.L10N.register(
|
||||
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
|
||||
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
|
||||
"Set an admin password." : "Establecer la contraseña del administrador.",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Unknown share type" : "Tipo de elemento compartido desconocido",
|
||||
"You are not allowed to share %s" : "No tienes permitido compartir %s",
|
||||
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
|
||||
@@ -148,6 +145,9 @@ OC.L10N.register(
|
||||
"Summary" : "Resumen",
|
||||
"Translate" : "Traducir",
|
||||
"Result" : "Resultado",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Application is not enabled" : "La aplicación está deshabilitada",
|
||||
"Authentication error" : "Error de autenticación",
|
||||
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página."
|
||||
|
||||
@@ -69,9 +69,6 @@
|
||||
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
|
||||
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
|
||||
"Set an admin password." : "Establecer la contraseña del administrador.",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Unknown share type" : "Tipo de elemento compartido desconocido",
|
||||
"You are not allowed to share %s" : "No tienes permitido compartir %s",
|
||||
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
|
||||
@@ -146,6 +143,9 @@
|
||||
"Summary" : "Resumen",
|
||||
"Translate" : "Traducir",
|
||||
"Result" : "Resultado",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Application is not enabled" : "La aplicación está deshabilitada",
|
||||
"Authentication error" : "Error de autenticación",
|
||||
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página."
|
||||
|
||||
+3
-3
@@ -63,9 +63,6 @@ OC.L10N.register(
|
||||
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
|
||||
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Favor de eliminar el ajuste open_basedir de su archivo php.ini o cambie a PHP de 64 bits. ",
|
||||
"Set an admin password." : "Establecer la contraseña del administrador.",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"%1$s shared %2$s with you" : "%1$s ha compartido \"%2$s\" con usted",
|
||||
"Open %s" : "Abrir %s",
|
||||
"%1$s via %2$s" : "%1$s vía %2$s",
|
||||
@@ -145,6 +142,9 @@ OC.L10N.register(
|
||||
"Summary" : "Resumen",
|
||||
"Translate" : "Traducir",
|
||||
"Result" : "Resultado",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Application is not enabled" : "La aplicación está deshabilitada",
|
||||
"Authentication error" : "Error de autenticación",
|
||||
"Token expired. Please reload page." : "La ficha ha expirado. Favor de recarga la página."
|
||||
|
||||
+3
-3
@@ -61,9 +61,6 @@
|
||||
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
|
||||
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Favor de eliminar el ajuste open_basedir de su archivo php.ini o cambie a PHP de 64 bits. ",
|
||||
"Set an admin password." : "Establecer la contraseña del administrador.",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"%1$s shared %2$s with you" : "%1$s ha compartido \"%2$s\" con usted",
|
||||
"Open %s" : "Abrir %s",
|
||||
"%1$s via %2$s" : "%1$s vía %2$s",
|
||||
@@ -143,6 +140,9 @@
|
||||
"Summary" : "Resumen",
|
||||
"Translate" : "Traducir",
|
||||
"Result" : "Resultado",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Application is not enabled" : "La aplicación está deshabilitada",
|
||||
"Authentication error" : "Error de autenticación",
|
||||
"Token expired. Please reload page." : "La ficha ha expirado. Favor de recarga la página."
|
||||
|
||||
+3
-3
@@ -71,9 +71,6 @@ OC.L10N.register(
|
||||
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
|
||||
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
|
||||
"Set an admin password." : "Establecer la contraseña del administrador.",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Open %s" : "Abrir %s",
|
||||
"Unknown share type" : "Tipo de elemento compartido desconocido",
|
||||
"You are not allowed to share %s" : "No tienes permitido compartir %s",
|
||||
@@ -150,6 +147,9 @@ OC.L10N.register(
|
||||
"Summary" : "Resumen",
|
||||
"Translate" : "Traducir",
|
||||
"Result" : "Resultado",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Application is not enabled" : "La aplicación está deshabilitada",
|
||||
"Authentication error" : "Error de autenticación",
|
||||
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página."
|
||||
|
||||
+3
-3
@@ -69,9 +69,6 @@
|
||||
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
|
||||
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
|
||||
"Set an admin password." : "Establecer la contraseña del administrador.",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Open %s" : "Abrir %s",
|
||||
"Unknown share type" : "Tipo de elemento compartido desconocido",
|
||||
"You are not allowed to share %s" : "No tienes permitido compartir %s",
|
||||
@@ -148,6 +145,9 @@
|
||||
"Summary" : "Resumen",
|
||||
"Translate" : "Traducir",
|
||||
"Result" : "Resultado",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Application is not enabled" : "La aplicación está deshabilitada",
|
||||
"Authentication error" : "Error de autenticación",
|
||||
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página."
|
||||
|
||||
+3
-3
@@ -70,9 +70,6 @@ OC.L10N.register(
|
||||
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
|
||||
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
|
||||
"Set an admin password." : "Establecer la contraseña del administrador.",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Unknown share type" : "Tipo de elemento compartido desconocido",
|
||||
"You are not allowed to share %s" : "No tienes permitido compartir %s",
|
||||
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
|
||||
@@ -148,6 +145,9 @@ OC.L10N.register(
|
||||
"Summary" : "Resumen",
|
||||
"Translate" : "Traducir",
|
||||
"Result" : "Resultado",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Application is not enabled" : "La aplicación está deshabilitada",
|
||||
"Authentication error" : "Error de autenticación",
|
||||
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página."
|
||||
|
||||
+3
-3
@@ -68,9 +68,6 @@
|
||||
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
|
||||
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
|
||||
"Set an admin password." : "Establecer la contraseña del administrador.",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Unknown share type" : "Tipo de elemento compartido desconocido",
|
||||
"You are not allowed to share %s" : "No tienes permitido compartir %s",
|
||||
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
|
||||
@@ -146,6 +143,9 @@
|
||||
"Summary" : "Resumen",
|
||||
"Translate" : "Traducir",
|
||||
"Result" : "Resultado",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Application is not enabled" : "La aplicación está deshabilitada",
|
||||
"Authentication error" : "Error de autenticación",
|
||||
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página."
|
||||
|
||||
+3
-3
@@ -70,9 +70,6 @@ OC.L10N.register(
|
||||
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
|
||||
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
|
||||
"Set an admin password." : "Establecer la contraseña del administrador.",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Unknown share type" : "Tipo de elemento compartido desconocido",
|
||||
"You are not allowed to share %s" : "No tienes permitido compartir %s",
|
||||
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
|
||||
@@ -148,6 +145,9 @@ OC.L10N.register(
|
||||
"Summary" : "Resumen",
|
||||
"Translate" : "Traducir",
|
||||
"Result" : "Resultado",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Application is not enabled" : "La aplicación está deshabilitada",
|
||||
"Authentication error" : "Error de autenticación",
|
||||
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página."
|
||||
|
||||
+3
-3
@@ -68,9 +68,6 @@
|
||||
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
|
||||
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
|
||||
"Set an admin password." : "Establecer la contraseña del administrador.",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Unknown share type" : "Tipo de elemento compartido desconocido",
|
||||
"You are not allowed to share %s" : "No tienes permitido compartir %s",
|
||||
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
|
||||
@@ -146,6 +143,9 @@
|
||||
"Summary" : "Resumen",
|
||||
"Translate" : "Traducir",
|
||||
"Result" : "Resultado",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Application is not enabled" : "La aplicación está deshabilitada",
|
||||
"Authentication error" : "Error de autenticación",
|
||||
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página."
|
||||
|
||||
+3
-3
@@ -70,9 +70,6 @@ OC.L10N.register(
|
||||
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
|
||||
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
|
||||
"Set an admin password." : "Establecer la contraseña del administrador.",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Unknown share type" : "Tipo de elemento compartido desconocido",
|
||||
"You are not allowed to share %s" : "No tienes permitido compartir %s",
|
||||
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
|
||||
@@ -148,6 +145,9 @@ OC.L10N.register(
|
||||
"Summary" : "Resumen",
|
||||
"Translate" : "Traducir",
|
||||
"Result" : "Resultado",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Application is not enabled" : "La aplicación está deshabilitada",
|
||||
"Authentication error" : "Error de autenticación",
|
||||
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página."
|
||||
|
||||
+3
-3
@@ -68,9 +68,6 @@
|
||||
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
|
||||
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
|
||||
"Set an admin password." : "Establecer la contraseña del administrador.",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Unknown share type" : "Tipo de elemento compartido desconocido",
|
||||
"You are not allowed to share %s" : "No tienes permitido compartir %s",
|
||||
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
|
||||
@@ -146,6 +143,9 @@
|
||||
"Summary" : "Resumen",
|
||||
"Translate" : "Traducir",
|
||||
"Result" : "Resultado",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Application is not enabled" : "La aplicación está deshabilitada",
|
||||
"Authentication error" : "Error de autenticación",
|
||||
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página."
|
||||
|
||||
+3
-3
@@ -121,9 +121,6 @@ OC.L10N.register(
|
||||
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
|
||||
"Set an admin password." : "Establecer la contraseña del administrador.",
|
||||
"Cannot create or write into the data directory %s" : "No se puede crear ni escribir en el directorio de datos %s",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"%1$s via %2$s" : "%1$s a través de %2$s",
|
||||
"Unknown share type" : "Tipo de elemento compartido desconocido",
|
||||
"You are not allowed to share %s" : "No tienes permitido compartir %s",
|
||||
@@ -229,6 +226,9 @@ OC.L10N.register(
|
||||
"Translate" : "Traducir",
|
||||
"Target language" : "Lenguaje de destino",
|
||||
"Result" : "Resultado",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Application is not enabled" : "La aplicación está deshabilitada",
|
||||
"Authentication error" : "Error de autenticación",
|
||||
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página."
|
||||
|
||||
+3
-3
@@ -119,9 +119,6 @@
|
||||
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
|
||||
"Set an admin password." : "Establecer la contraseña del administrador.",
|
||||
"Cannot create or write into the data directory %s" : "No se puede crear ni escribir en el directorio de datos %s",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"%1$s via %2$s" : "%1$s a través de %2$s",
|
||||
"Unknown share type" : "Tipo de elemento compartido desconocido",
|
||||
"You are not allowed to share %s" : "No tienes permitido compartir %s",
|
||||
@@ -227,6 +224,9 @@
|
||||
"Translate" : "Traducir",
|
||||
"Target language" : "Lenguaje de destino",
|
||||
"Result" : "Resultado",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Application is not enabled" : "La aplicación está deshabilitada",
|
||||
"Authentication error" : "Error de autenticación",
|
||||
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página."
|
||||
|
||||
+3
-3
@@ -70,9 +70,6 @@ OC.L10N.register(
|
||||
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
|
||||
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
|
||||
"Set an admin password." : "Establecer la contraseña del administrador.",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Unknown share type" : "Tipo de elemento compartido desconocido",
|
||||
"You are not allowed to share %s" : "No tienes permitido compartir %s",
|
||||
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
|
||||
@@ -148,6 +145,9 @@ OC.L10N.register(
|
||||
"Summary" : "Resumen",
|
||||
"Translate" : "Traducir",
|
||||
"Result" : "Resultado",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Application is not enabled" : "La aplicación está deshabilitada",
|
||||
"Authentication error" : "Error de autenticación",
|
||||
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página."
|
||||
|
||||
+3
-3
@@ -68,9 +68,6 @@
|
||||
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
|
||||
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
|
||||
"Set an admin password." : "Establecer la contraseña del administrador.",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Unknown share type" : "Tipo de elemento compartido desconocido",
|
||||
"You are not allowed to share %s" : "No tienes permitido compartir %s",
|
||||
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
|
||||
@@ -146,6 +143,9 @@
|
||||
"Summary" : "Resumen",
|
||||
"Translate" : "Traducir",
|
||||
"Result" : "Resultado",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Application is not enabled" : "La aplicación está deshabilitada",
|
||||
"Authentication error" : "Error de autenticación",
|
||||
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página."
|
||||
|
||||
+3
-3
@@ -69,9 +69,6 @@ OC.L10N.register(
|
||||
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
|
||||
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
|
||||
"Set an admin password." : "Establecer la contraseña del administrador.",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Unknown share type" : "Tipo de elemento compartido desconocido",
|
||||
"You are not allowed to share %s" : "No tienes permitido compartir %s",
|
||||
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
|
||||
@@ -146,6 +143,9 @@ OC.L10N.register(
|
||||
"Summary" : "Resumen",
|
||||
"Translate" : "Traducir",
|
||||
"Result" : "Resultado",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Application is not enabled" : "La aplicación está deshabilitada",
|
||||
"Authentication error" : "Error de autenticación",
|
||||
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página."
|
||||
|
||||
+3
-3
@@ -67,9 +67,6 @@
|
||||
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
|
||||
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
|
||||
"Set an admin password." : "Establecer la contraseña del administrador.",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Unknown share type" : "Tipo de elemento compartido desconocido",
|
||||
"You are not allowed to share %s" : "No tienes permitido compartir %s",
|
||||
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
|
||||
@@ -144,6 +141,9 @@
|
||||
"Summary" : "Resumen",
|
||||
"Translate" : "Traducir",
|
||||
"Result" : "Resultado",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Application is not enabled" : "La aplicación está deshabilitada",
|
||||
"Authentication error" : "Error de autenticación",
|
||||
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página."
|
||||
|
||||
+3
-3
@@ -138,9 +138,6 @@ OC.L10N.register(
|
||||
"Set an admin Login." : "Establecer un usuario administrador.",
|
||||
"Set an admin password." : "Establecer la contraseña del administrador.",
|
||||
"Cannot create or write into the data directory %s" : "No se puede crear o escribir en el directorio de datos %s",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"%1$s shared %2$s with you" : "%1$s le compartió %2$s",
|
||||
"Open %s" : "Abrir %s",
|
||||
"%1$s via %2$s" : "%1$s vía %2$s",
|
||||
@@ -372,6 +369,9 @@ OC.L10N.register(
|
||||
"Generate headline" : "Generar titular",
|
||||
"Summarizes text by reducing its length without losing key information." : "Resume el texto reduciendo su longitud sin perder información clave.",
|
||||
"Extracts topics from a text and outputs them separated by commas." : "Extrae los temas de un texto y genera una salida separada por comas. ",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Application is not enabled" : "La aplicación está deshabilitada",
|
||||
"Authentication error" : "Error de autenticación",
|
||||
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página."
|
||||
|
||||
+3
-3
@@ -136,9 +136,6 @@
|
||||
"Set an admin Login." : "Establecer un usuario administrador.",
|
||||
"Set an admin password." : "Establecer la contraseña del administrador.",
|
||||
"Cannot create or write into the data directory %s" : "No se puede crear o escribir en el directorio de datos %s",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"%1$s shared %2$s with you" : "%1$s le compartió %2$s",
|
||||
"Open %s" : "Abrir %s",
|
||||
"%1$s via %2$s" : "%1$s vía %2$s",
|
||||
@@ -370,6 +367,9 @@
|
||||
"Generate headline" : "Generar titular",
|
||||
"Summarizes text by reducing its length without losing key information." : "Resume el texto reduciendo su longitud sin perder información clave.",
|
||||
"Extracts topics from a text and outputs them separated by commas." : "Extrae los temas de un texto y genera una salida separada por comas. ",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Application is not enabled" : "La aplicación está deshabilitada",
|
||||
"Authentication error" : "Error de autenticación",
|
||||
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página."
|
||||
|
||||
+3
-3
@@ -69,9 +69,6 @@ OC.L10N.register(
|
||||
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
|
||||
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
|
||||
"Set an admin password." : "Establecer la contraseña del administrador.",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Unknown share type" : "Tipo de elemento compartido desconocido",
|
||||
"You are not allowed to share %s" : "No tienes permitido compartir %s",
|
||||
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
|
||||
@@ -146,6 +143,9 @@ OC.L10N.register(
|
||||
"Summary" : "Resumen",
|
||||
"Translate" : "Traducir",
|
||||
"Result" : "Resultado",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Application is not enabled" : "La aplicación está deshabilitada",
|
||||
"Authentication error" : "Error de autenticación",
|
||||
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página."
|
||||
|
||||
+3
-3
@@ -67,9 +67,6 @@
|
||||
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
|
||||
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
|
||||
"Set an admin password." : "Establecer la contraseña del administrador.",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Unknown share type" : "Tipo de elemento compartido desconocido",
|
||||
"You are not allowed to share %s" : "No tienes permitido compartir %s",
|
||||
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
|
||||
@@ -144,6 +141,9 @@
|
||||
"Summary" : "Resumen",
|
||||
"Translate" : "Traducir",
|
||||
"Result" : "Resultado",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Application is not enabled" : "La aplicación está deshabilitada",
|
||||
"Authentication error" : "Error de autenticación",
|
||||
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página."
|
||||
|
||||
+3
-3
@@ -69,9 +69,6 @@ OC.L10N.register(
|
||||
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
|
||||
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
|
||||
"Set an admin password." : "Establecer la contraseña del administrador.",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Unknown share type" : "Tipo de elemento compartido desconocido",
|
||||
"You are not allowed to share %s" : "No tienes permitido compartir %s",
|
||||
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
|
||||
@@ -146,6 +143,9 @@ OC.L10N.register(
|
||||
"Summary" : "Resumen",
|
||||
"Translate" : "Traducir",
|
||||
"Result" : "Resultado",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Application is not enabled" : "La aplicación está deshabilitada",
|
||||
"Authentication error" : "Error de autenticación",
|
||||
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página."
|
||||
|
||||
+3
-3
@@ -67,9 +67,6 @@
|
||||
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
|
||||
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
|
||||
"Set an admin password." : "Establecer la contraseña del administrador.",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Unknown share type" : "Tipo de elemento compartido desconocido",
|
||||
"You are not allowed to share %s" : "No tienes permitido compartir %s",
|
||||
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
|
||||
@@ -144,6 +141,9 @@
|
||||
"Summary" : "Resumen",
|
||||
"Translate" : "Traducir",
|
||||
"Result" : "Resultado",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Application is not enabled" : "La aplicación está deshabilitada",
|
||||
"Authentication error" : "Error de autenticación",
|
||||
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página."
|
||||
|
||||
+3
-3
@@ -70,9 +70,6 @@ OC.L10N.register(
|
||||
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
|
||||
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
|
||||
"Set an admin password." : "Establecer la contraseña del administrador.",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Unknown share type" : "Tipo de elemento compartido desconocido",
|
||||
"You are not allowed to share %s" : "No tienes permitido compartir %s",
|
||||
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
|
||||
@@ -147,6 +144,9 @@ OC.L10N.register(
|
||||
"Summary" : "Resumen",
|
||||
"Translate" : "Traducir",
|
||||
"Result" : "Resultado",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Application is not enabled" : "La aplicación está deshabilitada",
|
||||
"Authentication error" : "Error de autenticación",
|
||||
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página."
|
||||
|
||||
+3
-3
@@ -68,9 +68,6 @@
|
||||
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
|
||||
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
|
||||
"Set an admin password." : "Establecer la contraseña del administrador.",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Unknown share type" : "Tipo de elemento compartido desconocido",
|
||||
"You are not allowed to share %s" : "No tienes permitido compartir %s",
|
||||
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
|
||||
@@ -145,6 +142,9 @@
|
||||
"Summary" : "Resumen",
|
||||
"Translate" : "Traducir",
|
||||
"Result" : "Resultado",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Application is not enabled" : "La aplicación está deshabilitada",
|
||||
"Authentication error" : "Error de autenticación",
|
||||
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página."
|
||||
|
||||
+3
-3
@@ -69,9 +69,6 @@ OC.L10N.register(
|
||||
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
|
||||
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
|
||||
"Set an admin password." : "Establecer la contraseña del administrador.",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Unknown share type" : "Tipo de elemento compartido desconocido",
|
||||
"You are not allowed to share %s" : "No tienes permitido compartir %s",
|
||||
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
|
||||
@@ -146,6 +143,9 @@ OC.L10N.register(
|
||||
"Summary" : "Resumen",
|
||||
"Translate" : "Traducir",
|
||||
"Result" : "Resultado",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Application is not enabled" : "La aplicación está deshabilitada",
|
||||
"Authentication error" : "Error de autenticación",
|
||||
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página."
|
||||
|
||||
+3
-3
@@ -67,9 +67,6 @@
|
||||
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
|
||||
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
|
||||
"Set an admin password." : "Establecer la contraseña del administrador.",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Unknown share type" : "Tipo de elemento compartido desconocido",
|
||||
"You are not allowed to share %s" : "No tienes permitido compartir %s",
|
||||
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
|
||||
@@ -144,6 +141,9 @@
|
||||
"Summary" : "Resumen",
|
||||
"Translate" : "Traducir",
|
||||
"Result" : "Resultado",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Application is not enabled" : "La aplicación está deshabilitada",
|
||||
"Authentication error" : "Error de autenticación",
|
||||
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página."
|
||||
|
||||
+3
-3
@@ -70,9 +70,6 @@ OC.L10N.register(
|
||||
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
|
||||
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
|
||||
"Set an admin password." : "Establecer la contraseña del administrador.",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Unknown share type" : "Tipo de elemento compartido desconocido",
|
||||
"You are not allowed to share %s" : "No tienes permitido compartir %s",
|
||||
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
|
||||
@@ -147,6 +144,9 @@ OC.L10N.register(
|
||||
"Summary" : "Resumen",
|
||||
"Translate" : "Traducir",
|
||||
"Result" : "Resultado",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Application is not enabled" : "La aplicación está deshabilitada",
|
||||
"Authentication error" : "Error de autenticación",
|
||||
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página."
|
||||
|
||||
+3
-3
@@ -68,9 +68,6 @@
|
||||
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
|
||||
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
|
||||
"Set an admin password." : "Establecer la contraseña del administrador.",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Unknown share type" : "Tipo de elemento compartido desconocido",
|
||||
"You are not allowed to share %s" : "No tienes permitido compartir %s",
|
||||
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
|
||||
@@ -145,6 +142,9 @@
|
||||
"Summary" : "Resumen",
|
||||
"Translate" : "Traducir",
|
||||
"Result" : "Resultado",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Application is not enabled" : "La aplicación está deshabilitada",
|
||||
"Authentication error" : "Error de autenticación",
|
||||
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página."
|
||||
|
||||
+3
-3
@@ -71,9 +71,6 @@ OC.L10N.register(
|
||||
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
|
||||
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
|
||||
"Set an admin password." : "Establecer la contraseña del administrador.",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Unknown share type" : "Tipo de elemento compartido desconocido",
|
||||
"You are not allowed to share %s" : "No tienes permitido compartir %s",
|
||||
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
|
||||
@@ -149,6 +146,9 @@ OC.L10N.register(
|
||||
"Summary" : "Resumen",
|
||||
"Translate" : "Traducir",
|
||||
"Result" : "Resultado",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Application is not enabled" : "La aplicación está deshabilitada",
|
||||
"Authentication error" : "Error de autenticación",
|
||||
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página."
|
||||
|
||||
+3
-3
@@ -69,9 +69,6 @@
|
||||
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
|
||||
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
|
||||
"Set an admin password." : "Establecer la contraseña del administrador.",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Unknown share type" : "Tipo de elemento compartido desconocido",
|
||||
"You are not allowed to share %s" : "No tienes permitido compartir %s",
|
||||
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
|
||||
@@ -147,6 +144,9 @@
|
||||
"Summary" : "Resumen",
|
||||
"Translate" : "Traducir",
|
||||
"Result" : "Resultado",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Application is not enabled" : "La aplicación está deshabilitada",
|
||||
"Authentication error" : "Error de autenticación",
|
||||
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página."
|
||||
|
||||
+3
-3
@@ -69,9 +69,6 @@ OC.L10N.register(
|
||||
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
|
||||
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
|
||||
"Set an admin password." : "Establecer la contraseña del administrador.",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Unknown share type" : "Tipo de elemento compartido desconocido",
|
||||
"You are not allowed to share %s" : "No tienes permitido compartir %s",
|
||||
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
|
||||
@@ -146,6 +143,9 @@ OC.L10N.register(
|
||||
"Summary" : "Resumen",
|
||||
"Translate" : "Traducir",
|
||||
"Result" : "Resultado",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Application is not enabled" : "La aplicación está deshabilitada",
|
||||
"Authentication error" : "Error de autenticación",
|
||||
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página."
|
||||
|
||||
+3
-3
@@ -67,9 +67,6 @@
|
||||
"It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. This will lead to problems with files over 4 GB and is highly discouraged." : "Al parecer esta instancia %s está corriendo en un ambiente PHP de 32-bits y el open_basedir ha sido configurado en el archivo php.ini. Esto generará problemas con archivos de más de 4GB de tamaño y es altamente desalentado. ",
|
||||
"Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Por favor elimina el ajuste open_basedir de tu archivo php.ini o cambia a PHP de 64 bits. ",
|
||||
"Set an admin password." : "Establecer la contraseña del administrador.",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Unknown share type" : "Tipo de elemento compartido desconocido",
|
||||
"You are not allowed to share %s" : "No tienes permitido compartir %s",
|
||||
"Cannot increase permissions of %s" : "No se pueden incrementar los permisos de %s",
|
||||
@@ -144,6 +141,9 @@
|
||||
"Summary" : "Resumen",
|
||||
"Translate" : "Traducir",
|
||||
"Result" : "Resultado",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend",
|
||||
"Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ",
|
||||
"Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s",
|
||||
"Application is not enabled" : "La aplicación está deshabilitada",
|
||||
"Authentication error" : "Error de autenticación",
|
||||
"Token expired. Please reload page." : "La ficha ha expirado. Por favor recarga la página."
|
||||
|
||||
+3
-3
@@ -167,9 +167,6 @@ OC.L10N.register(
|
||||
"Set an admin Login." : "Lisa peakasutaja kasutajanimi.",
|
||||
"Set an admin password." : "Lisa peakasutaja salasõna.",
|
||||
"Cannot create or write into the data directory %s" : "Ei õnnestu luua „%s“ andmekausta või sealt lugeda",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Jagamise tagarakend %s peab kasutusele võtma OCP\\Share_Backend liidese",
|
||||
"Sharing backend %s not found" : "Jagamise tagarakendit %s ei leitud",
|
||||
"Sharing backend for %s not found" : "Jagamise tagarakendit %s jaoks ei leitud",
|
||||
"%1$s shared %2$s with you" : "%1$s jagas sinuga: %2$s",
|
||||
"Open %s" : "Ava %s ",
|
||||
"%1$s via %2$s" : "%1$s %2$s kaudu",
|
||||
@@ -454,6 +451,9 @@ OC.L10N.register(
|
||||
"The translated text" : "Tõlgitud tekst",
|
||||
"Generate headline" : "Alapealkirja loomine",
|
||||
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk!" : "Mac OS X ei ole toetatud ja %s ei pruugi korralikult toimida sellel platvormil. Kasuta seda omal vastutusel!",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Jagamise tagarakend %s peab kasutusele võtma OCP\\Share_Backend liidese",
|
||||
"Sharing backend %s not found" : "Jagamise tagarakendit %s ei leitud",
|
||||
"Sharing backend for %s not found" : "Jagamise tagarakendit %s jaoks ei leitud",
|
||||
"Application is not enabled" : "Rakendus pole sisse lülitatud",
|
||||
"Authentication error" : "Autentimise viga",
|
||||
"Token expired. Please reload page." : "Kontrollkood aegus. Paelun laadi leht uuesti."
|
||||
|
||||
+3
-3
@@ -165,9 +165,6 @@
|
||||
"Set an admin Login." : "Lisa peakasutaja kasutajanimi.",
|
||||
"Set an admin password." : "Lisa peakasutaja salasõna.",
|
||||
"Cannot create or write into the data directory %s" : "Ei õnnestu luua „%s“ andmekausta või sealt lugeda",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Jagamise tagarakend %s peab kasutusele võtma OCP\\Share_Backend liidese",
|
||||
"Sharing backend %s not found" : "Jagamise tagarakendit %s ei leitud",
|
||||
"Sharing backend for %s not found" : "Jagamise tagarakendit %s jaoks ei leitud",
|
||||
"%1$s shared %2$s with you" : "%1$s jagas sinuga: %2$s",
|
||||
"Open %s" : "Ava %s ",
|
||||
"%1$s via %2$s" : "%1$s %2$s kaudu",
|
||||
@@ -452,6 +449,9 @@
|
||||
"The translated text" : "Tõlgitud tekst",
|
||||
"Generate headline" : "Alapealkirja loomine",
|
||||
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk!" : "Mac OS X ei ole toetatud ja %s ei pruugi korralikult toimida sellel platvormil. Kasuta seda omal vastutusel!",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "Jagamise tagarakend %s peab kasutusele võtma OCP\\Share_Backend liidese",
|
||||
"Sharing backend %s not found" : "Jagamise tagarakendit %s ei leitud",
|
||||
"Sharing backend for %s not found" : "Jagamise tagarakendit %s jaoks ei leitud",
|
||||
"Application is not enabled" : "Rakendus pole sisse lülitatud",
|
||||
"Authentication error" : "Autentimise viga",
|
||||
"Token expired. Please reload page." : "Kontrollkood aegus. Paelun laadi leht uuesti."
|
||||
|
||||
+3
-3
@@ -167,9 +167,6 @@ OC.L10N.register(
|
||||
"Set an admin Login." : "Ezarri administraziorako saioa.",
|
||||
"Set an admin password." : "Ezarri administraziorako pasahitza.",
|
||||
"Cannot create or write into the data directory %s" : "Ezin da sortu edo idatzi %s datu-direktorioan ",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "%s partekatze motorrak OCP\\Share_Backend interfazea inplementatu behar du ",
|
||||
"Sharing backend %s not found" : "Ez da %s partekatze motorra aurkitu",
|
||||
"Sharing backend for %s not found" : "Ez da %s(e)rako partekatze motorrik aurkitu",
|
||||
"%1$s shared %2$s with you" : "%1$sk %2$s partekatu du zurekin",
|
||||
"Open %s" : "Ireki %s",
|
||||
"%1$s via %2$s" : "%2$s bidez, %1$s",
|
||||
@@ -472,6 +469,9 @@ OC.L10N.register(
|
||||
"Summarizes text by reducing its length without losing key information." : "Testua laburtzen du bere luzera murrizten informazio baliotsua galdu gabe.",
|
||||
"Extracts topics from a text and outputs them separated by commas." : "Gaiak ateratzen ditu testu batetik eta komaz banatuta erakusten ditu.",
|
||||
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk!" : "Mac OS X ez da onartzen eta %s ez da ondo funtzionatuko plataforma honetan. Erabili zure ardurapean!",
|
||||
"Sharing backend %s must implement the interface OCP\\Share_Backend" : "%s partekatze motorrak OCP\\Share_Backend interfazea inplementatu behar du ",
|
||||
"Sharing backend %s not found" : "Ez da %s partekatze motorra aurkitu",
|
||||
"Sharing backend for %s not found" : "Ez da %s(e)rako partekatze motorrik aurkitu",
|
||||
"Application is not enabled" : "Aplikazioa ez dago gaituta",
|
||||
"Authentication error" : "Autentifikazio errorea",
|
||||
"Token expired. Please reload page." : "Tokena iraungitu da. Mesedez birkargatu orria."
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user