From 7c90191bc54b09ca046d00fb719c0110684d5bc9 Mon Sep 17 00:00:00 2001 From: Maxence Lange Date: Tue, 10 Jan 2023 08:54:30 -0100 Subject: [PATCH 01/33] only user can leave circles Signed-off-by: Maxence Lange --- lib/FederatedItems/CircleLeave.php | 4 ++++ lib/StatusCode.php | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/lib/FederatedItems/CircleLeave.php b/lib/FederatedItems/CircleLeave.php index 334f00beb..0cd94476f 100644 --- a/lib/FederatedItems/CircleLeave.php +++ b/lib/FederatedItems/CircleLeave.php @@ -151,6 +151,10 @@ public function verify(FederatedEvent $event): void { } } + if ($member->getUserType() !== Member::TYPE_USER) { + throw new MemberNotFoundException(StatusCode::$CIRCLE_LEAVE[121], 121); + } + $event->setMember($member); $this->memberRequest->delete($member); diff --git a/lib/StatusCode.php b/lib/StatusCode.php index 948661d6d..ab3a15a99 100644 --- a/lib/StatusCode.php +++ b/lib/StatusCode.php @@ -53,7 +53,8 @@ class StatusCode { ]; public static $CIRCLE_LEAVE = [ - 120 => 'You are not a member' + 120 => 'You are not a member', + 121 => 'You are not a direct member' ]; public static $MEMBER_ADD = [ From ca9aebdb7cd08e582a84c1d20d2197e56f55710c Mon Sep 17 00:00:00 2001 From: Maxence Lange Date: Wed, 30 Nov 2022 14:33:00 -0100 Subject: [PATCH 02/33] check app is enabled Signed-off-by: Maxence Lange --- lib/Model/ModelManager.php | 68 +++++++++++++++++--------------------- 1 file changed, 31 insertions(+), 37 deletions(-) diff --git a/lib/Model/ModelManager.php b/lib/Model/ModelManager.php index 6073add26..36009d7f0 100644 --- a/lib/Model/ModelManager.php +++ b/lib/Model/ModelManager.php @@ -31,7 +31,6 @@ namespace OCA\Circles\Model; -use Exception; use OCA\Circles\AppInfo\Application; use OCA\Circles\Db\CircleRequest; use OCA\Circles\Db\CoreQueryBuilder; @@ -58,6 +57,7 @@ use OCA\Circles\Service\MembershipService; use OCA\Circles\Service\RemoteService; use OCA\Circles\Tools\Traits\TNCLogger; +use OCP\App\IAppManager; use OCP\IURLGenerator; /** @@ -69,42 +69,26 @@ class ModelManager { use TNCLogger; - /** @var IURLGenerator */ - private $urlGenerator; - - /** @var CoreQueryBuilder */ - private $coreRequestBuilder; - - /** @var CircleRequest */ - private $circleRequest; - - /** @var MemberRequest */ - private $memberRequest; - - /** @var MembershipRequest */ - private $membershipRequest; - - /** @var InterfaceService */ - private $interfaceService; - - /** @var MembershipService */ - private $membershipService; - - /** @var RemoteService */ - private $remoteService; - - /** @var ConfigService */ - private $configService; - - - /** @var bool */ - private $fullDetails = false; + private IURLGenerator $urlGenerator; + private IAppManager $appManager; + private CoreQueryBuilder $coreRequestBuilder; + private CircleRequest $circleRequest; + private MemberRequest $memberRequest; + private MembershipRequest $membershipRequest; + private InterfaceService $interfaceService; + private MembershipService $membershipService; + private RemoteService $remoteService; + private ConfigService $configService; + private bool $fullDetails = false; + private bool $pathLinkGenerated = false; + private string $pathLinkGeneration = ''; /** * ModelManager constructor. * * @param IURLGenerator $urlGenerator + * @param IAppManager $appManager * @param CoreQueryBuilder $coreRequestBuilder * @param CircleRequest $circleRequest * @param MemberRequest $memberRequest @@ -116,6 +100,7 @@ class ModelManager { */ public function __construct( IURLGenerator $urlGenerator, + IAppManager $appManager, CoreQueryBuilder $coreRequestBuilder, CircleRequest $circleRequest, MemberRequest $memberRequest, @@ -126,6 +111,7 @@ public function __construct( ConfigService $configService ) { $this->urlGenerator = $urlGenerator; + $this->appManager = $appManager; $this->coreRequestBuilder = $coreRequestBuilder; $this->circleRequest = $circleRequest; $this->memberRequest = $memberRequest; @@ -554,16 +540,24 @@ public function fixInstance(string $instance): string { * @return string */ public function generateLinkToCircle(string $singleId): string { - $path = $this->configService->getAppValue(ConfigService::ROUTE_TO_CIRCLE); + if (!$this->pathLinkGenerated) { + $this->pathLinkGenerated = true; + $path = $this->configService->getAppValue(ConfigService::ROUTE_TO_CIRCLE); + $pos = strpos($path, '.'); + if (!$pos) { + return ''; + } - try { - if ($path !== '') { - return $this->urlGenerator->linkToRoute($path, ['singleId' => $singleId]); + if (!$this->appManager->isInstalled(substr($path, 0, $pos))) { + $this->pathLinkGeneration = $path; } - } catch (Exception $e) { } - return ''; + if ($this->pathLinkGeneration === '') { + return ''; + } + + return $this->urlGenerator->linkToRoute($this->pathLinkGeneration, ['singleId' => $singleId]); } From 309ead3d96b121a91c8fe145939be29aec0f3c7f Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 10 Feb 2023 02:31:49 +0000 Subject: [PATCH 03/33] =?UTF-8?q?Fix(l10n):=20=F0=9F=94=A0=20Update=20tran?= =?UTF-8?q?slations=20from=20Transifex?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Nextcloud bot --- l10n/uk.js | 2 +- l10n/uk.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/l10n/uk.js b/l10n/uk.js index 089753cbc..be1982cb2 100644 --- a/l10n/uk.js +++ b/l10n/uk.js @@ -44,7 +44,7 @@ OC.L10N.register( "{external} has been added to {circle} by {author}" : "{external} додано до {circle} {author}", "You accepted {member}'s request to join {circle}" : "Ви прийняли запит {member} приєднатися до {circle}", "Your request to join {circle} has been accepted by {author}" : "Ваш запит на приєднання до {circle} прийнято {author}", - "{member}'s request to join {circle} has been accepted by {author}" : "Запит {member} приєднатися до {circle} був прийнятий {author}", + "{member}'s request to join {circle} has been accepted by {author}" : "Запит {member} приєднатися до {circle} було прийнято {author}", "You left {circle}" : "Ви залишили {circle}", "{member} left {circle}" : "{member} залишив {circle}", "You declined the invitation to join {circle}" : "Ви відхилили запрошення приєднатися до {circle}", diff --git a/l10n/uk.json b/l10n/uk.json index 36ef882b0..3401f477f 100644 --- a/l10n/uk.json +++ b/l10n/uk.json @@ -42,7 +42,7 @@ "{external} has been added to {circle} by {author}" : "{external} додано до {circle} {author}", "You accepted {member}'s request to join {circle}" : "Ви прийняли запит {member} приєднатися до {circle}", "Your request to join {circle} has been accepted by {author}" : "Ваш запит на приєднання до {circle} прийнято {author}", - "{member}'s request to join {circle} has been accepted by {author}" : "Запит {member} приєднатися до {circle} був прийнятий {author}", + "{member}'s request to join {circle} has been accepted by {author}" : "Запит {member} приєднатися до {circle} було прийнято {author}", "You left {circle}" : "Ви залишили {circle}", "{member} left {circle}" : "{member} залишив {circle}", "You declined the invitation to join {circle}" : "Ви відхилили запрошення приєднатися до {circle}", From 7a912e34b17c1ebfdc9d2ceae558e9a947eca3a2 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 16 Feb 2023 02:30:27 +0000 Subject: [PATCH 04/33] =?UTF-8?q?Fix(l10n):=20=F0=9F=94=A0=20Update=20tran?= =?UTF-8?q?slations=20from=20Transifex?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Nextcloud bot --- l10n/nl.js | 1 + l10n/nl.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/nl.js b/l10n/nl.js index b54bbec86..5c737d4f4 100644 --- a/l10n/nl.js +++ b/l10n/nl.js @@ -165,6 +165,7 @@ OC.L10N.register( "%s shared a file with you." : "%s heeft een bestand met u gedeeld", "%1$s shared some content with you.\nYou should have already received a separate email with a link to access it.\n" : "%1$s heeft enige informatie met je gedeeld.\nJe moet al een aparte e-mail hebben ontvangen met een link om er te komen.\n", "%1$s shared some content with you. You should have already received a separate email with a link to access it." : "%1$s heeft enige informatie met je gedeeld.\nJe moet al een aparte e-mail hebben ontvangen met een link om er te komen.", + "Password to access content shared with you by %1$s" : "Wachtwoord om toegang te krijgen tot inhoud gedeeld met u door %1$s", "Password to access content" : "Wachtwoord voor toegang tot info", "This item is already shared with this circle" : "Dit object is al gedeeld met deze kring", "Bring cloud-users closer together." : "Breng cloudgebruikers dichter bij elkaar.", diff --git a/l10n/nl.json b/l10n/nl.json index 39eda10d7..c028a0333 100644 --- a/l10n/nl.json +++ b/l10n/nl.json @@ -163,6 +163,7 @@ "%s shared a file with you." : "%s heeft een bestand met u gedeeld", "%1$s shared some content with you.\nYou should have already received a separate email with a link to access it.\n" : "%1$s heeft enige informatie met je gedeeld.\nJe moet al een aparte e-mail hebben ontvangen met een link om er te komen.\n", "%1$s shared some content with you. You should have already received a separate email with a link to access it." : "%1$s heeft enige informatie met je gedeeld.\nJe moet al een aparte e-mail hebben ontvangen met een link om er te komen.", + "Password to access content shared with you by %1$s" : "Wachtwoord om toegang te krijgen tot inhoud gedeeld met u door %1$s", "Password to access content" : "Wachtwoord voor toegang tot info", "This item is already shared with this circle" : "Dit object is al gedeeld met deze kring", "Bring cloud-users closer together." : "Breng cloudgebruikers dichter bij elkaar.", From f5797c8f997ed306e72891bb9728c6a2ed60211d Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 19 Feb 2023 02:31:35 +0000 Subject: [PATCH 05/33] =?UTF-8?q?Fix(l10n):=20=F0=9F=94=A0=20Update=20tran?= =?UTF-8?q?slations=20from=20Transifex?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Nextcloud bot --- l10n/nb.js | 1 + l10n/nb.json | 1 + l10n/vi.js | 1 + l10n/vi.json | 1 + 4 files changed, 4 insertions(+) diff --git a/l10n/nb.js b/l10n/nb.js index 1b7fcfb6b..9cb95c610 100644 --- a/l10n/nb.js +++ b/l10n/nb.js @@ -77,6 +77,7 @@ OC.L10N.register( "System" : "System", "Visible" : "Synlig", "Open" : "Åpne", + "Invite" : "Invitere", "Hidden" : "Skjult", "Local" : "Lokal", "Root" : "Rot", diff --git a/l10n/nb.json b/l10n/nb.json index 191378664..7db9dd144 100644 --- a/l10n/nb.json +++ b/l10n/nb.json @@ -75,6 +75,7 @@ "System" : "System", "Visible" : "Synlig", "Open" : "Åpne", + "Invite" : "Invitere", "Hidden" : "Skjult", "Local" : "Lokal", "Root" : "Rot", diff --git a/l10n/vi.js b/l10n/vi.js index 54a481cbd..1fc8cbcb9 100644 --- a/l10n/vi.js +++ b/l10n/vi.js @@ -76,6 +76,7 @@ OC.L10N.register( "Any important event in a Circle you are moderating" : "Một sự kiện quan trọng trong một Vòng kết nối mà bạn đang điều hành", "On global events happening in any Circle" : "Trên những sự kiện chung đang diễn ra của tổ chức trong bất cứ Vòng kết nối ", "Personal" : "Cá nhân", + "System" : "Hệ thống", "Open" : "Mở", "Hidden" : "Ẩn", "Federated" : "Federated", diff --git a/l10n/vi.json b/l10n/vi.json index fa04d8190..25b913f10 100644 --- a/l10n/vi.json +++ b/l10n/vi.json @@ -74,6 +74,7 @@ "Any important event in a Circle you are moderating" : "Một sự kiện quan trọng trong một Vòng kết nối mà bạn đang điều hành", "On global events happening in any Circle" : "Trên những sự kiện chung đang diễn ra của tổ chức trong bất cứ Vòng kết nối ", "Personal" : "Cá nhân", + "System" : "Hệ thống", "Open" : "Mở", "Hidden" : "Ẩn", "Federated" : "Federated", From e34859d820ffb794f6d73444333b92508879f17f Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 24 Feb 2023 02:39:03 +0000 Subject: [PATCH 06/33] =?UTF-8?q?Fix(l10n):=20=F0=9F=94=A0=20Update=20tran?= =?UTF-8?q?slations=20from=20Transifex?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Nextcloud bot --- l10n/fi.js | 1 + l10n/fi.json | 1 + l10n/nb.js | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ l10n/nb.json | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 98 insertions(+) diff --git a/l10n/fi.js b/l10n/fi.js index ff391d48f..00b1606ce 100644 --- a/l10n/fi.js +++ b/l10n/fi.js @@ -114,6 +114,7 @@ OC.L10N.register( "You have been blocked from this circle" : "Sinut on estetty tästä piiristä", "The account is already a member of this circle" : "Tämä tili on jo jäsen tässä piirissä", "The account has already been invited into this circle" : "Tämä tili on jo kutsuttu tähän piiriin", + "%s (Circle owned by %s)" : "%s (Piirin omistaa %s)", "You are now a member of the Circle \"%2$s\"" : "Olet nyt piirin \"%2$s\" jäsen", "You have been invited by %1$s into the Circle \"%2$s\"" : "%1$s kutsui sinut piiriin \"%2$s\"", "%1$s sent a request to be a member of the Circle \"%2$s\"" : "%1$s lähetti liittymispyynnön piiriin \"%2$s\"", diff --git a/l10n/fi.json b/l10n/fi.json index 119b4bf12..36a59eb49 100644 --- a/l10n/fi.json +++ b/l10n/fi.json @@ -112,6 +112,7 @@ "You have been blocked from this circle" : "Sinut on estetty tästä piiristä", "The account is already a member of this circle" : "Tämä tili on jo jäsen tässä piirissä", "The account has already been invited into this circle" : "Tämä tili on jo kutsuttu tähän piiriin", + "%s (Circle owned by %s)" : "%s (Piirin omistaa %s)", "You are now a member of the Circle \"%2$s\"" : "Olet nyt piirin \"%2$s\" jäsen", "You have been invited by %1$s into the Circle \"%2$s\"" : "%1$s kutsui sinut piiriin \"%2$s\"", "%1$s sent a request to be a member of the Circle \"%2$s\"" : "%1$s lähetti liittymispyynnön piiriin \"%2$s\"", diff --git a/l10n/nb.js b/l10n/nb.js index 9cb95c610..08402de5e 100644 --- a/l10n/nb.js +++ b/l10n/nb.js @@ -72,31 +72,63 @@ OC.L10N.register( "{member} sent a request to join {circle}" : "{member} sendte et ønske om å få bli med i {circle}", "You are the new owner of {circle}" : "Du er den nye eieren av {circle}", "{member} is the new owner of {circle}" : "{member} er den nye eieren av {circle}", + "On events happening in a Circle of which you are a member" : "På hendelser som skjer i en sirkel hvor du er medlem", "Any important event in a Circle you are moderating" : "Ønsker du å bli varslet om hendelser i sirkler du modererer?", + "On global events happening in any Circle" : "På global hendelse som skjer i en sirkel", + "Single" : "Enkel", "Personal" : "Personlig", "System" : "System", "Visible" : "Synlig", "Open" : "Åpne", "Invite" : "Invitere", + "Join Request" : "Forespørsel om å delta", + "Friends" : "Venner", + "Password Protected" : "Passordbeskyttet", + "No Owner" : "Ingen eier", "Hidden" : "Skjult", "Local" : "Lokal", "Root" : "Rot", + "Circle Invite" : "Sirkel-invitasjo", "Federated" : "Sammenknyttet", + "Mount point" : "Monteringspunkt", + "Nextcloud Account" : "Nextcloud-konto", + "Nextcloud Group" : "Nextcloud-gruppe", + "Email Address" : "Epostadresse", "Contact" : "Kontakt", "Circle" : "Sirkel", + "Nextcloud App" : "Nextcloud-app", "Member" : "Medlem", "Moderator" : "Moderator", "Admin" : "Admin", "Owner" : "Eier", "%s shared »%s« with you." : "%s delte »%s« med deg.", + "%s shared »%s« with \"%s\"." : "%s delte »%s« med \"%s\".", "%s on %s" : "%s på %s", + "%1$s shared »%2$s« with you.\nYou should have already received a separate email with a link to access it.\n" : "%1$s delte »%2$s« med deg.\nDu bør allerede ha mottatt en separat epost med en link for å få tilgang til det.\n", + "%1$s shared »%2$s« with you. You should have already received a separate email with a link to access it." : "%1$s delte »%2$s« med deg. Du bør allerede ha mottatt en separat epost med en link for å få tilgang til det.", + "Password to access »%1$s« shared to you by %2$s" : "Passord for tilgang til »%1$s« delt med deg av %2$s", "Password to access »%s«" : "Passord for å benytte »%s«", "It is protected with the following password:" : "Den er beskyttet med følgende passord:", "%1$s via %2$s" : "%1$s via %2$s", "Click the button below to open it." : "Klikk på knappen nedenfor for å åpne den.", "Open »%s«" : "Åpne \"%s\"", + "%1$s shared multiple files with you.\nYou should have already received a separate email with a link to access them.\n" : "%1$s delte flere filer med deg.\nDu bør allerede ha mottatt en separat epost med en link for å få tilgang til det.\n", + "%1$s shared multiple files with you. You should have already received a separate email with a link to access them." : "%1$s shared multiple files with you. You should have already received a separate email with a link to access them.", + "Password to access files shared to you by %1$s" : "Passord for tilgang til filene som ble delt av %1$s", + "Password to access files" : "Passord for tilgang til filer.", + "%s shared multiple files with \"%s\"." : "%s delte flere filer med \"%s\".", + "%s shared multiple files with you." : "%s delte flere filer med deg.", + "Boot up" : "Start opp", + "Initialisation Nextcloud" : "Forbereder Nextcloud", + "Initialisation Circles App" : "Forbereder Sirkel-app", + "Fresh installation status" : "Status på fersk installasjon", + "Building Local Database" : "Bygger lokal database", + "Testing Basic Circle Creation" : "Tester opprettelse av grunnleggende sirkel", + "Adding local users and moderators" : "Legger til lokale brukere og moderatorer", "Circle not found" : "Fant ikke sirkelen", + "Circle not found " : "Fant ikke sirkelen", "This member does not exist" : "Dette medlemmet finnes ikke", + "This account is already a member of the circle" : "Denne kontoen er allerede medlem av sirkelen", "Federated link not found" : "Fant ikke den sammenknyttede lenken", "This feature is not available for personal circles" : "Funksjonen er ikke tilgjengelig for personlige sirkler", "The circle is not federated" : "Sirkelen er ikke sammenknyttet", @@ -107,20 +139,36 @@ OC.L10N.register( "Level cannot be changed for this type of member" : "Nivået kan ikke endres for den typen medlem", "You are already a member of this circle" : "Du er allerede medlem av denne sirkelen", "You have been blocked from this circle" : "Du har blitt blokkert fra denne sirkelen", + "The account is already a member of this circle" : "Denne kontoren er allerede medlem av sirkelen", + "The account has already been invited into this circle" : "Denne kontoen har allerede blitt invitert til denne sirkelen", + "%s (Circle owned by %s)" : "%s (Sirkelen eies av %s)", + "You are now a member of the Circle \"%2$s\"" : "Du er nå medlem av sirkelen \"%2$s\"", + "You have been invited by %1$s into the Circle \"%2$s\"" : "Du har blitt invitert av %1$s til sirkelen \"%2$s\"", + "%1$s sent a request to be a member of the Circle \"%2$s\"" : "%1$s sendte en forespørsel om å bli medlem av sirkelen \"%2$s\"", "Accept" : "Aksepter", + "Refuse" : "Avvis", + "Leave the circle" : "Forlat sirkelen", "%s" : "%s", "Personal Circle" : "Personlig sirkel", + "%s owned by %s" : "%s eid av %s", "You need a specify a type of circle" : "Du må oppgi sirkeltype", "A circle with that name exists" : "En sirkel med det navnet finnes", "This member is not the owner of the circle" : "Dette medlemmet eier ikke denne sirkelen", "This member is not an admin of the circle" : "Dette medlemmet er ikke administrator av sirkelen", + "Group contains too many members" : "Gruppen inneholder for mange medlemmer", "This group does not exist" : "Denne gruppen finnes ikke", "This group is already linked to the circle" : "Gruppen er allerede lenket til sirkelen", "You cannot edit level in a personal circle" : "Du kan ikke endre nivå i en personlig sirkel", "Group cannot be set as owner of a circle" : "Gruppe kan ikke settes som eier av en sirkel", "now" : "nå", + "This account does not exist" : "Denne kontoen finnes ikke", "Email format is not valid" : "E-postadressen er ikke gyldig", "This contact is not available" : "Denne kontakten er ikke tilgjengelig", + "You have no permission to create a new circle" : "Du har ikke tilgang til å opprette ny sirkel", + "%s shared a file with \"%s\"." : "%s delte en fil med \"%s\".", + "%s shared a file with you." : "%s delte en fil med deg.", + "%1$s shared some content with you.\nYou should have already received a separate email with a link to access it.\n" : "%1$s delte innhold med deg.\nDu bør allerede ha mottatt en separat epist med en link for å få tilgang til det.\n", + "%1$s shared some content with you. You should have already received a separate email with a link to access it." : "%1$s delte innhold med deg. Du bør allerede ha mottatt en separat epost med en link for å få tilgang til det.", "Bring cloud-users closer together." : "Bring sky-brukere nærmere hverandre.", "No files in here" : "Ingen filer her", "No entries found in this folder" : "Ingen oppføringer funnet i denne mappen", diff --git a/l10n/nb.json b/l10n/nb.json index 7db9dd144..a71e5290c 100644 --- a/l10n/nb.json +++ b/l10n/nb.json @@ -70,31 +70,63 @@ "{member} sent a request to join {circle}" : "{member} sendte et ønske om å få bli med i {circle}", "You are the new owner of {circle}" : "Du er den nye eieren av {circle}", "{member} is the new owner of {circle}" : "{member} er den nye eieren av {circle}", + "On events happening in a Circle of which you are a member" : "På hendelser som skjer i en sirkel hvor du er medlem", "Any important event in a Circle you are moderating" : "Ønsker du å bli varslet om hendelser i sirkler du modererer?", + "On global events happening in any Circle" : "På global hendelse som skjer i en sirkel", + "Single" : "Enkel", "Personal" : "Personlig", "System" : "System", "Visible" : "Synlig", "Open" : "Åpne", "Invite" : "Invitere", + "Join Request" : "Forespørsel om å delta", + "Friends" : "Venner", + "Password Protected" : "Passordbeskyttet", + "No Owner" : "Ingen eier", "Hidden" : "Skjult", "Local" : "Lokal", "Root" : "Rot", + "Circle Invite" : "Sirkel-invitasjo", "Federated" : "Sammenknyttet", + "Mount point" : "Monteringspunkt", + "Nextcloud Account" : "Nextcloud-konto", + "Nextcloud Group" : "Nextcloud-gruppe", + "Email Address" : "Epostadresse", "Contact" : "Kontakt", "Circle" : "Sirkel", + "Nextcloud App" : "Nextcloud-app", "Member" : "Medlem", "Moderator" : "Moderator", "Admin" : "Admin", "Owner" : "Eier", "%s shared »%s« with you." : "%s delte »%s« med deg.", + "%s shared »%s« with \"%s\"." : "%s delte »%s« med \"%s\".", "%s on %s" : "%s på %s", + "%1$s shared »%2$s« with you.\nYou should have already received a separate email with a link to access it.\n" : "%1$s delte »%2$s« med deg.\nDu bør allerede ha mottatt en separat epost med en link for å få tilgang til det.\n", + "%1$s shared »%2$s« with you. You should have already received a separate email with a link to access it." : "%1$s delte »%2$s« med deg. Du bør allerede ha mottatt en separat epost med en link for å få tilgang til det.", + "Password to access »%1$s« shared to you by %2$s" : "Passord for tilgang til »%1$s« delt med deg av %2$s", "Password to access »%s«" : "Passord for å benytte »%s«", "It is protected with the following password:" : "Den er beskyttet med følgende passord:", "%1$s via %2$s" : "%1$s via %2$s", "Click the button below to open it." : "Klikk på knappen nedenfor for å åpne den.", "Open »%s«" : "Åpne \"%s\"", + "%1$s shared multiple files with you.\nYou should have already received a separate email with a link to access them.\n" : "%1$s delte flere filer med deg.\nDu bør allerede ha mottatt en separat epost med en link for å få tilgang til det.\n", + "%1$s shared multiple files with you. You should have already received a separate email with a link to access them." : "%1$s shared multiple files with you. You should have already received a separate email with a link to access them.", + "Password to access files shared to you by %1$s" : "Passord for tilgang til filene som ble delt av %1$s", + "Password to access files" : "Passord for tilgang til filer.", + "%s shared multiple files with \"%s\"." : "%s delte flere filer med \"%s\".", + "%s shared multiple files with you." : "%s delte flere filer med deg.", + "Boot up" : "Start opp", + "Initialisation Nextcloud" : "Forbereder Nextcloud", + "Initialisation Circles App" : "Forbereder Sirkel-app", + "Fresh installation status" : "Status på fersk installasjon", + "Building Local Database" : "Bygger lokal database", + "Testing Basic Circle Creation" : "Tester opprettelse av grunnleggende sirkel", + "Adding local users and moderators" : "Legger til lokale brukere og moderatorer", "Circle not found" : "Fant ikke sirkelen", + "Circle not found " : "Fant ikke sirkelen", "This member does not exist" : "Dette medlemmet finnes ikke", + "This account is already a member of the circle" : "Denne kontoen er allerede medlem av sirkelen", "Federated link not found" : "Fant ikke den sammenknyttede lenken", "This feature is not available for personal circles" : "Funksjonen er ikke tilgjengelig for personlige sirkler", "The circle is not federated" : "Sirkelen er ikke sammenknyttet", @@ -105,20 +137,36 @@ "Level cannot be changed for this type of member" : "Nivået kan ikke endres for den typen medlem", "You are already a member of this circle" : "Du er allerede medlem av denne sirkelen", "You have been blocked from this circle" : "Du har blitt blokkert fra denne sirkelen", + "The account is already a member of this circle" : "Denne kontoren er allerede medlem av sirkelen", + "The account has already been invited into this circle" : "Denne kontoen har allerede blitt invitert til denne sirkelen", + "%s (Circle owned by %s)" : "%s (Sirkelen eies av %s)", + "You are now a member of the Circle \"%2$s\"" : "Du er nå medlem av sirkelen \"%2$s\"", + "You have been invited by %1$s into the Circle \"%2$s\"" : "Du har blitt invitert av %1$s til sirkelen \"%2$s\"", + "%1$s sent a request to be a member of the Circle \"%2$s\"" : "%1$s sendte en forespørsel om å bli medlem av sirkelen \"%2$s\"", "Accept" : "Aksepter", + "Refuse" : "Avvis", + "Leave the circle" : "Forlat sirkelen", "%s" : "%s", "Personal Circle" : "Personlig sirkel", + "%s owned by %s" : "%s eid av %s", "You need a specify a type of circle" : "Du må oppgi sirkeltype", "A circle with that name exists" : "En sirkel med det navnet finnes", "This member is not the owner of the circle" : "Dette medlemmet eier ikke denne sirkelen", "This member is not an admin of the circle" : "Dette medlemmet er ikke administrator av sirkelen", + "Group contains too many members" : "Gruppen inneholder for mange medlemmer", "This group does not exist" : "Denne gruppen finnes ikke", "This group is already linked to the circle" : "Gruppen er allerede lenket til sirkelen", "You cannot edit level in a personal circle" : "Du kan ikke endre nivå i en personlig sirkel", "Group cannot be set as owner of a circle" : "Gruppe kan ikke settes som eier av en sirkel", "now" : "nå", + "This account does not exist" : "Denne kontoen finnes ikke", "Email format is not valid" : "E-postadressen er ikke gyldig", "This contact is not available" : "Denne kontakten er ikke tilgjengelig", + "You have no permission to create a new circle" : "Du har ikke tilgang til å opprette ny sirkel", + "%s shared a file with \"%s\"." : "%s delte en fil med \"%s\".", + "%s shared a file with you." : "%s delte en fil med deg.", + "%1$s shared some content with you.\nYou should have already received a separate email with a link to access it.\n" : "%1$s delte innhold med deg.\nDu bør allerede ha mottatt en separat epist med en link for å få tilgang til det.\n", + "%1$s shared some content with you. You should have already received a separate email with a link to access it." : "%1$s delte innhold med deg. Du bør allerede ha mottatt en separat epost med en link for å få tilgang til det.", "Bring cloud-users closer together." : "Bring sky-brukere nærmere hverandre.", "No files in here" : "Ingen filer her", "No entries found in this folder" : "Ingen oppføringer funnet i denne mappen", From ff0e2e8df837808241833f27361c04f7345821e3 Mon Sep 17 00:00:00 2001 From: Maxence Lange Date: Fri, 24 Feb 2023 09:50:54 -0100 Subject: [PATCH 07/33] exception on missing session Signed-off-by: Maxence Lange --- lib/CirclesManager.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/lib/CirclesManager.php b/lib/CirclesManager.php index 6acbd69d2..541be5d36 100644 --- a/lib/CirclesManager.php +++ b/lib/CirclesManager.php @@ -248,9 +248,15 @@ public function stopSession(): void { /** * @return IFederatedUser + * @throws FederatedUserNotFoundException */ public function getCurrentFederatedUser(): IFederatedUser { - return $this->federatedUserService->getCurrentUser(); + $current = $this->federatedUserService->getCurrentUser(); + if (is_null($current)) { + throw new FederatedUserNotFoundException(); + } + + return $current; } From e6af8334d1092927b750b354dd88ae573a1625a4 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 25 Feb 2023 02:47:05 +0000 Subject: [PATCH 08/33] =?UTF-8?q?Fix(l10n):=20=F0=9F=94=A0=20Update=20tran?= =?UTF-8?q?slations=20from=20Transifex?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Nextcloud bot --- l10n/it.js | 7 +++++++ l10n/it.json | 7 +++++++ l10n/nl.js | 5 +++++ l10n/nl.json | 5 +++++ 4 files changed, 24 insertions(+) diff --git a/l10n/it.js b/l10n/it.js index b3c03ad15..30e0d792e 100644 --- a/l10n/it.js +++ b/l10n/it.js @@ -92,6 +92,7 @@ OC.L10N.register( "Circle Invite" : "Invito della cerchia", "Federated" : "Federata", "Mount point" : "Punto di mount", + "Nextcloud Account" : "Account Nextcloud", "Nextcloud Group" : "Gruppo Nextcloud", "Email Address" : "Indirizzo email", "Contact" : "Contatto", @@ -128,6 +129,7 @@ OC.L10N.register( "Circle not found" : "Cerchia non trovata", "Circle not found " : "Cerchia non trovata", "This member does not exist" : "Questo membro non esiste", + "This account is already a member of the circle" : "Questo account è già un membro della cerchia", "Federated link not found" : "Collegamento federato non trovato", "This feature is not available for personal circles" : "Questa funzionalità non è disponibile nelle cerchie personali", "The circle is not federated" : "La cerchia non è federata", @@ -138,6 +140,9 @@ OC.L10N.register( "Level cannot be changed for this type of member" : "Il livello non può essere modificato per questo tipo di membro", "You are already a member of this circle" : "Sei già un membro di questa cerchia", "You have been blocked from this circle" : "Sei stato bloccato da questa cerchia", + "The account is already a member of this circle" : "L'account è già membro di questa cerchia", + "The account has already been invited into this circle" : "L'account è già stato invitato in questa cerchia", + "%s (Circle owned by %s)" : "%s (Cerchi di proprietà di %s)", "You are now a member of the Circle \"%2$s\"" : "Ora sei membro della cerchia \"%2$s\"", "You have been invited by %1$s into the Circle \"%2$s\"" : "Sei stato invitato da %1$s nella cerchia \"%2$s\"", "%1$s sent a request to be a member of the Circle \"%2$s\"" : "%1$s ha inviato una richiesta per essere membro della cerchia \"%2$s\"", @@ -157,6 +162,7 @@ OC.L10N.register( "You cannot edit level in a personal circle" : "Non puoi modificare il livello in una cerchia personale", "Group cannot be set as owner of a circle" : "Un gruppo non può essere impostato come proprietario di una cerchia", "now" : "adesso", + "This account does not exist" : "Questo account non esiste", "Email format is not valid" : "Il formato dell'indirizzo di posta non è valido", "This contact is not available" : "Questa contatto non è disponibile", "You have no permission to create a new circle" : "Non ti è consentito creare un nuovo circolo", @@ -168,6 +174,7 @@ OC.L10N.register( "Password to access content" : "Password per accedere ai contenuti", "This item is already shared with this circle" : "Questo elemento è già condiviso con questa cerchia", "Bring cloud-users closer together." : "Avvicina gli utenti del cloud", + "Circles allows people to create their own groups of people/colleagues/friends.\nThose groups of people (or \"circles\") can then be used by any other app for sharing purpose." : "Le cerchie consentono alle persone di creare i propri gruppi di persone/colleghi/amici.\nQuesti gruppi di persone (o \"cerchie\") possono quindi essere utilizzati da qualsiasi altra app per scopi di condivisione.", "No files in here" : "Nessun file qui", "No entries found in this folder" : "Nessuna voce trovata in questa cartella", "Name" : "Nome", diff --git a/l10n/it.json b/l10n/it.json index 3955a8023..708382867 100644 --- a/l10n/it.json +++ b/l10n/it.json @@ -90,6 +90,7 @@ "Circle Invite" : "Invito della cerchia", "Federated" : "Federata", "Mount point" : "Punto di mount", + "Nextcloud Account" : "Account Nextcloud", "Nextcloud Group" : "Gruppo Nextcloud", "Email Address" : "Indirizzo email", "Contact" : "Contatto", @@ -126,6 +127,7 @@ "Circle not found" : "Cerchia non trovata", "Circle not found " : "Cerchia non trovata", "This member does not exist" : "Questo membro non esiste", + "This account is already a member of the circle" : "Questo account è già un membro della cerchia", "Federated link not found" : "Collegamento federato non trovato", "This feature is not available for personal circles" : "Questa funzionalità non è disponibile nelle cerchie personali", "The circle is not federated" : "La cerchia non è federata", @@ -136,6 +138,9 @@ "Level cannot be changed for this type of member" : "Il livello non può essere modificato per questo tipo di membro", "You are already a member of this circle" : "Sei già un membro di questa cerchia", "You have been blocked from this circle" : "Sei stato bloccato da questa cerchia", + "The account is already a member of this circle" : "L'account è già membro di questa cerchia", + "The account has already been invited into this circle" : "L'account è già stato invitato in questa cerchia", + "%s (Circle owned by %s)" : "%s (Cerchi di proprietà di %s)", "You are now a member of the Circle \"%2$s\"" : "Ora sei membro della cerchia \"%2$s\"", "You have been invited by %1$s into the Circle \"%2$s\"" : "Sei stato invitato da %1$s nella cerchia \"%2$s\"", "%1$s sent a request to be a member of the Circle \"%2$s\"" : "%1$s ha inviato una richiesta per essere membro della cerchia \"%2$s\"", @@ -155,6 +160,7 @@ "You cannot edit level in a personal circle" : "Non puoi modificare il livello in una cerchia personale", "Group cannot be set as owner of a circle" : "Un gruppo non può essere impostato come proprietario di una cerchia", "now" : "adesso", + "This account does not exist" : "Questo account non esiste", "Email format is not valid" : "Il formato dell'indirizzo di posta non è valido", "This contact is not available" : "Questa contatto non è disponibile", "You have no permission to create a new circle" : "Non ti è consentito creare un nuovo circolo", @@ -166,6 +172,7 @@ "Password to access content" : "Password per accedere ai contenuti", "This item is already shared with this circle" : "Questo elemento è già condiviso con questa cerchia", "Bring cloud-users closer together." : "Avvicina gli utenti del cloud", + "Circles allows people to create their own groups of people/colleagues/friends.\nThose groups of people (or \"circles\") can then be used by any other app for sharing purpose." : "Le cerchie consentono alle persone di creare i propri gruppi di persone/colleghi/amici.\nQuesti gruppi di persone (o \"cerchie\") possono quindi essere utilizzati da qualsiasi altra app per scopi di condivisione.", "No files in here" : "Nessun file qui", "No entries found in this folder" : "Nessuna voce trovata in questa cartella", "Name" : "Nome", diff --git a/l10n/nl.js b/l10n/nl.js index 5c737d4f4..c409c2d2b 100644 --- a/l10n/nl.js +++ b/l10n/nl.js @@ -128,6 +128,7 @@ OC.L10N.register( "Circle not found" : "Kring niet gevonden", "Circle not found " : "Kring niet gevonden", "This member does not exist" : "Dit lid bestaat niet", + "This account is already a member of the circle" : "Dit account is al lid van de cirkel", "Federated link not found" : "Gefedereerde link is niet gevonden", "This feature is not available for personal circles" : "Deze functie is niet beschikbaar voor persoonlijke kringen", "The circle is not federated" : "De kring is niet gefedereerd", @@ -138,6 +139,8 @@ OC.L10N.register( "Level cannot be changed for this type of member" : "Het niveau van dit type lid kan niet veranderd worden.", "You are already a member of this circle" : "Je bent al lid van deze kring", "You have been blocked from this circle" : "Je bent geblokkeerd van deze kring", + "The account is already a member of this circle" : "Dit account is al lid van deze cirkel", + "The account has already been invited into this circle" : "Dit account is al uitgenodigt voor deze cirkel", "%s (Circle owned by %s)" : "%s (kring is eigendom van %s)", "You are now a member of the Circle \"%2$s\"" : "Je bent nu lid van Kring \"%2$s\"", "You have been invited by %1$s into the Circle \"%2$s\"" : "Je bent uitgenodigd door %1$sin Kring voor  \"%2$s\"", @@ -158,6 +161,7 @@ OC.L10N.register( "You cannot edit level in a personal circle" : "Je kan het niveau van een persoonlijke kring niet bewerken", "Group cannot be set as owner of a circle" : "Een groep kan geen kring eigenaar zijn", "now" : "nu", + "This account does not exist" : "Dit account bestaat niet", "Email format is not valid" : "E-mailformaat niet geldig", "This contact is not available" : "Deze contact is niet beschikbaar", "You have no permission to create a new circle" : "U heeft geen machtiging om een nieuwe kring aan te maken", @@ -169,6 +173,7 @@ OC.L10N.register( "Password to access content" : "Wachtwoord voor toegang tot info", "This item is already shared with this circle" : "Dit object is al gedeeld met deze kring", "Bring cloud-users closer together." : "Breng cloudgebruikers dichter bij elkaar.", + "Circles allows people to create their own groups of people/colleagues/friends.\nThose groups of people (or \"circles\") can then be used by any other app for sharing purpose." : "Cirkels maakt het mogelijk om zelf groepen te maken met bijvoorbeeld collega's of vrienden.\nDeze gemeenschappen (of \"cirkels\") kunnen vervolgens gebruikt worden door andere applicaties om dingen te delen", "No files in here" : "Hier geen bestanden", "No entries found in this folder" : "Niets in deze map gevonden", "Name" : "Naam", diff --git a/l10n/nl.json b/l10n/nl.json index c028a0333..821e00a50 100644 --- a/l10n/nl.json +++ b/l10n/nl.json @@ -126,6 +126,7 @@ "Circle not found" : "Kring niet gevonden", "Circle not found " : "Kring niet gevonden", "This member does not exist" : "Dit lid bestaat niet", + "This account is already a member of the circle" : "Dit account is al lid van de cirkel", "Federated link not found" : "Gefedereerde link is niet gevonden", "This feature is not available for personal circles" : "Deze functie is niet beschikbaar voor persoonlijke kringen", "The circle is not federated" : "De kring is niet gefedereerd", @@ -136,6 +137,8 @@ "Level cannot be changed for this type of member" : "Het niveau van dit type lid kan niet veranderd worden.", "You are already a member of this circle" : "Je bent al lid van deze kring", "You have been blocked from this circle" : "Je bent geblokkeerd van deze kring", + "The account is already a member of this circle" : "Dit account is al lid van deze cirkel", + "The account has already been invited into this circle" : "Dit account is al uitgenodigt voor deze cirkel", "%s (Circle owned by %s)" : "%s (kring is eigendom van %s)", "You are now a member of the Circle \"%2$s\"" : "Je bent nu lid van Kring \"%2$s\"", "You have been invited by %1$s into the Circle \"%2$s\"" : "Je bent uitgenodigd door %1$sin Kring voor  \"%2$s\"", @@ -156,6 +159,7 @@ "You cannot edit level in a personal circle" : "Je kan het niveau van een persoonlijke kring niet bewerken", "Group cannot be set as owner of a circle" : "Een groep kan geen kring eigenaar zijn", "now" : "nu", + "This account does not exist" : "Dit account bestaat niet", "Email format is not valid" : "E-mailformaat niet geldig", "This contact is not available" : "Deze contact is niet beschikbaar", "You have no permission to create a new circle" : "U heeft geen machtiging om een nieuwe kring aan te maken", @@ -167,6 +171,7 @@ "Password to access content" : "Wachtwoord voor toegang tot info", "This item is already shared with this circle" : "Dit object is al gedeeld met deze kring", "Bring cloud-users closer together." : "Breng cloudgebruikers dichter bij elkaar.", + "Circles allows people to create their own groups of people/colleagues/friends.\nThose groups of people (or \"circles\") can then be used by any other app for sharing purpose." : "Cirkels maakt het mogelijk om zelf groepen te maken met bijvoorbeeld collega's of vrienden.\nDeze gemeenschappen (of \"cirkels\") kunnen vervolgens gebruikt worden door andere applicaties om dingen te delen", "No files in here" : "Hier geen bestanden", "No entries found in this folder" : "Niets in deze map gevonden", "Name" : "Naam", From 3f09264998a9cc83df9ad096584a880c0a01b7bd Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 26 Feb 2023 02:32:12 +0000 Subject: [PATCH 09/33] =?UTF-8?q?Fix(l10n):=20=F0=9F=94=A0=20Update=20tran?= =?UTF-8?q?slations=20from=20Transifex?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Nextcloud bot --- l10n/sl.js | 18 ++++++++++++++---- l10n/sl.json | 18 ++++++++++++++---- 2 files changed, 28 insertions(+), 8 deletions(-) diff --git a/l10n/sl.js b/l10n/sl.js index 227c375db..668f2dedd 100644 --- a/l10n/sl.js +++ b/l10n/sl.js @@ -20,11 +20,11 @@ OC.L10N.register( "You sent a request to link {circle} with {remote}" : "Poslali ste prošnjo za povezavo kroga {circle} z oddaljenim {remote}.", "{author} sent a request to link {circle} with {remote}" : "{author} pošlje prošnjo za povezavo kroga {circle} z {remote}", "{remote} requested a link with {circle}" : "{remote} je poslal prošnjo za vključitev v krog {circle}", - "The request to link {circle} with {remote} has been rejected" : "Prošnja za povezavo kroga {circle} z {remote} je bila zavrnjena", + "The request to link {circle} with {remote} has been rejected" : "Prošnja za povezavo kroga {circle} z {remote} je bila zavrnjena.", "The request to link {remote} with {circle} has been canceled remotely" : "Prošnja za povezavo mesta {remote} s krogom {circle} je oddaljeno preklicana", "The request to link {circle} with {remote} has been accepted" : "Prošnja za povezavo kroga {circle} z {remote} je potrjena", "You dismissed the request to link {remote} with {circle}" : "Opustite prošnjo za povezavo {remote} s krogom {circle}", - "{author} dismissed the request to link {remote} with {circle}" : "{author} opusti prošnjo za povezavo {remote} s krogom {circle}", + "{author} dismissed the request to link {remote} with {circle}" : "{author} opusti prošnjo za povezavo {remote} s krogom {circle}.", "You canceled the request to link {circle} with {remote}" : "Prekličete prošnjo za povezavo kroga {circle} z mestom {remote}", "{author} canceled the request to link {circle} with {remote}" : "{author} prekliče prošnjo za povezavo kroga {circle} z mestom {remote}", "You accepted the request to link {remote} with {circle}" : "Sprejmete prošnjo za povezavo {remote} s krogom {circle}", @@ -39,9 +39,9 @@ OC.L10N.register( "{member} accepted the invitation to join {circle}" : "{member} sprejme vabilo za pristop v krog {circle}", "You added {member} as member to {circle}" : "V krog {circle} ste dodali osebo {member}", "You have been added as member to {circle} by {author}" : "{author} vas doda v krog {circle}", - "{member} has been added as member to {circle} by {author}" : "Račun {member} je bil dodan v članstvo kroga {circle} prek uporabnika {author}", + "{member} has been added as member to {circle} by {author}" : "Račun {member} je avtor {author} dodal v članstvo kroga {circle}.", "You added {external} to {circle}" : "V krog {circle} je dodana oseba {external}", - "{external} has been added to {circle} by {author}" : "{external} je bil dodan v članstvo kroga {circle} prek uporabnika {author}", + "{external} has been added to {circle} by {author}" : "{external} je avtor {author} dodal v članstvo kroga {circle}.", "You accepted {member}'s request to join {circle}" : "Sprejeli ste prošnjo člana {member} za pristop v krog {circle}", "Your request to join {circle} has been accepted by {author}" : "{author} sprejme vašo prošnjo za članstvo v krogu {circle}", "{member}'s request to join {circle} has been accepted by {author}" : "{author} sprejme prošnjo člana {member} za članstvo v krogu {circle}", @@ -129,6 +129,7 @@ OC.L10N.register( "Circle not found" : "Kroga ni mogoče najti", "Circle not found " : "Kroga ni mogoče najti", "This member does not exist" : "Član ne obstaja", + "This account is already a member of the circle" : "Ta račun ima že potrjeno članstvo v krogu.", "Federated link not found" : "Zvezne povezave ni mogoče najti", "This feature is not available for personal circles" : "Ta zmožnost za osebne kroge ni na voljo", "The circle is not federated" : "Krog ni zvezni krog", @@ -139,6 +140,9 @@ OC.L10N.register( "Level cannot be changed for this type of member" : "Vloge za to vrsto člana ni mogoče spremeniti", "You are already a member of this circle" : "Ste že član tega kroga.", "You have been blocked from this circle" : "Iz tega kroga ste bili izločeni", + "The account is already a member of this circle" : "Račun ima že potrjeno članstvo v krogu.", + "The account has already been invited into this circle" : "Račun je že prejel vabilo za članstvo v krogu.", + "%s (Circle owned by %s)" : "%s (lastnik kroga je %s)", "You are now a member of the Circle \"%2$s\"" : "Sedaj ste včlanjeni v krog »%2$s«.", "You have been invited by %1$s into the Circle \"%2$s\"" : " %1$s vas povabi v krog »%2$s«", "%1$s sent a request to be a member of the Circle \"%2$s\"" : "%1$s pošlje prošnjo za včlanitev v krog »%2$s«", @@ -161,10 +165,16 @@ OC.L10N.register( "This account does not exist" : "Račun ne obstaja", "Email format is not valid" : "Zapis elektronskega naslova ni veljaven", "This contact is not available" : "Ta stik ni na voljo.", + "You have no permission to create a new circle" : "Ni ustreznih dovoljenj za ustvarjanje novega kroga.", "%s shared a file with \"%s\"." : "%s omogoča souporabo datoteke z \"%s\".", "%s shared a file with you." : "%s omogoča souporabo datoteke z vami.", + "%1$s shared some content with you.\nYou should have already received a separate email with a link to access it.\n" : "%1$s vam omogoča souporabo vsebine.\nMorali bi že prejeti ločeno sporočilo s povezavo za dostop po elektronski pošti.\n", + "%1$s shared some content with you. You should have already received a separate email with a link to access it." : "%1$s vam omogoča souporabo vsebine. Morali bi že prejeti ločeno sporočilo s povezavo za dostop po elektronski pošti.", + "Password to access content shared with you by %1$s" : "%1$s vam pošilja geslo za dostop do vsebine v souporabi.", + "Password to access content" : "Geslo za dostop do vsebine", "This item is already shared with this circle" : "Ta predmet je v tem krogu že v souporabi", "Bring cloud-users closer together." : "Potegnite uporabnike oblakov bliže skupaj.", + "Circles allows people to create their own groups of people/colleagues/friends.\nThose groups of people (or \"circles\") can then be used by any other app for sharing purpose." : "Program Krogi omogoča uporabnikom ustvariti lastne skupine uporabnikov, sodelavcev, prijateljev ...\nTe skupine uporabnikov (oziroma »krogov«) je nato mogoče uporabiti kot skupine za souporabo in izmenjavo datotek in podatkov v različnih programih.", "No files in here" : "V mapi ni datotek", "No entries found in this folder" : "V tej mapi ni datotek in podmap.", "Name" : "Ime", diff --git a/l10n/sl.json b/l10n/sl.json index 0ec31ec3f..988198e71 100644 --- a/l10n/sl.json +++ b/l10n/sl.json @@ -18,11 +18,11 @@ "You sent a request to link {circle} with {remote}" : "Poslali ste prošnjo za povezavo kroga {circle} z oddaljenim {remote}.", "{author} sent a request to link {circle} with {remote}" : "{author} pošlje prošnjo za povezavo kroga {circle} z {remote}", "{remote} requested a link with {circle}" : "{remote} je poslal prošnjo za vključitev v krog {circle}", - "The request to link {circle} with {remote} has been rejected" : "Prošnja za povezavo kroga {circle} z {remote} je bila zavrnjena", + "The request to link {circle} with {remote} has been rejected" : "Prošnja za povezavo kroga {circle} z {remote} je bila zavrnjena.", "The request to link {remote} with {circle} has been canceled remotely" : "Prošnja za povezavo mesta {remote} s krogom {circle} je oddaljeno preklicana", "The request to link {circle} with {remote} has been accepted" : "Prošnja za povezavo kroga {circle} z {remote} je potrjena", "You dismissed the request to link {remote} with {circle}" : "Opustite prošnjo za povezavo {remote} s krogom {circle}", - "{author} dismissed the request to link {remote} with {circle}" : "{author} opusti prošnjo za povezavo {remote} s krogom {circle}", + "{author} dismissed the request to link {remote} with {circle}" : "{author} opusti prošnjo za povezavo {remote} s krogom {circle}.", "You canceled the request to link {circle} with {remote}" : "Prekličete prošnjo za povezavo kroga {circle} z mestom {remote}", "{author} canceled the request to link {circle} with {remote}" : "{author} prekliče prošnjo za povezavo kroga {circle} z mestom {remote}", "You accepted the request to link {remote} with {circle}" : "Sprejmete prošnjo za povezavo {remote} s krogom {circle}", @@ -37,9 +37,9 @@ "{member} accepted the invitation to join {circle}" : "{member} sprejme vabilo za pristop v krog {circle}", "You added {member} as member to {circle}" : "V krog {circle} ste dodali osebo {member}", "You have been added as member to {circle} by {author}" : "{author} vas doda v krog {circle}", - "{member} has been added as member to {circle} by {author}" : "Račun {member} je bil dodan v članstvo kroga {circle} prek uporabnika {author}", + "{member} has been added as member to {circle} by {author}" : "Račun {member} je avtor {author} dodal v članstvo kroga {circle}.", "You added {external} to {circle}" : "V krog {circle} je dodana oseba {external}", - "{external} has been added to {circle} by {author}" : "{external} je bil dodan v članstvo kroga {circle} prek uporabnika {author}", + "{external} has been added to {circle} by {author}" : "{external} je avtor {author} dodal v članstvo kroga {circle}.", "You accepted {member}'s request to join {circle}" : "Sprejeli ste prošnjo člana {member} za pristop v krog {circle}", "Your request to join {circle} has been accepted by {author}" : "{author} sprejme vašo prošnjo za članstvo v krogu {circle}", "{member}'s request to join {circle} has been accepted by {author}" : "{author} sprejme prošnjo člana {member} za članstvo v krogu {circle}", @@ -127,6 +127,7 @@ "Circle not found" : "Kroga ni mogoče najti", "Circle not found " : "Kroga ni mogoče najti", "This member does not exist" : "Član ne obstaja", + "This account is already a member of the circle" : "Ta račun ima že potrjeno članstvo v krogu.", "Federated link not found" : "Zvezne povezave ni mogoče najti", "This feature is not available for personal circles" : "Ta zmožnost za osebne kroge ni na voljo", "The circle is not federated" : "Krog ni zvezni krog", @@ -137,6 +138,9 @@ "Level cannot be changed for this type of member" : "Vloge za to vrsto člana ni mogoče spremeniti", "You are already a member of this circle" : "Ste že član tega kroga.", "You have been blocked from this circle" : "Iz tega kroga ste bili izločeni", + "The account is already a member of this circle" : "Račun ima že potrjeno članstvo v krogu.", + "The account has already been invited into this circle" : "Račun je že prejel vabilo za članstvo v krogu.", + "%s (Circle owned by %s)" : "%s (lastnik kroga je %s)", "You are now a member of the Circle \"%2$s\"" : "Sedaj ste včlanjeni v krog »%2$s«.", "You have been invited by %1$s into the Circle \"%2$s\"" : " %1$s vas povabi v krog »%2$s«", "%1$s sent a request to be a member of the Circle \"%2$s\"" : "%1$s pošlje prošnjo za včlanitev v krog »%2$s«", @@ -159,10 +163,16 @@ "This account does not exist" : "Račun ne obstaja", "Email format is not valid" : "Zapis elektronskega naslova ni veljaven", "This contact is not available" : "Ta stik ni na voljo.", + "You have no permission to create a new circle" : "Ni ustreznih dovoljenj za ustvarjanje novega kroga.", "%s shared a file with \"%s\"." : "%s omogoča souporabo datoteke z \"%s\".", "%s shared a file with you." : "%s omogoča souporabo datoteke z vami.", + "%1$s shared some content with you.\nYou should have already received a separate email with a link to access it.\n" : "%1$s vam omogoča souporabo vsebine.\nMorali bi že prejeti ločeno sporočilo s povezavo za dostop po elektronski pošti.\n", + "%1$s shared some content with you. You should have already received a separate email with a link to access it." : "%1$s vam omogoča souporabo vsebine. Morali bi že prejeti ločeno sporočilo s povezavo za dostop po elektronski pošti.", + "Password to access content shared with you by %1$s" : "%1$s vam pošilja geslo za dostop do vsebine v souporabi.", + "Password to access content" : "Geslo za dostop do vsebine", "This item is already shared with this circle" : "Ta predmet je v tem krogu že v souporabi", "Bring cloud-users closer together." : "Potegnite uporabnike oblakov bliže skupaj.", + "Circles allows people to create their own groups of people/colleagues/friends.\nThose groups of people (or \"circles\") can then be used by any other app for sharing purpose." : "Program Krogi omogoča uporabnikom ustvariti lastne skupine uporabnikov, sodelavcev, prijateljev ...\nTe skupine uporabnikov (oziroma »krogov«) je nato mogoče uporabiti kot skupine za souporabo in izmenjavo datotek in podatkov v različnih programih.", "No files in here" : "V mapi ni datotek", "No entries found in this folder" : "V tej mapi ni datotek in podmap.", "Name" : "Ime", From fa73ad7f36cd0ce9fceb193a18bb993299112f69 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Mon, 27 Feb 2023 02:30:42 +0000 Subject: [PATCH 10/33] =?UTF-8?q?Fix(l10n):=20=F0=9F=94=A0=20Update=20tran?= =?UTF-8?q?slations=20from=20Transifex?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Nextcloud bot --- l10n/sv.js | 25 +++++++++++++++++++++++++ l10n/sv.json | 25 +++++++++++++++++++++++++ 2 files changed, 50 insertions(+) diff --git a/l10n/sv.js b/l10n/sv.js index 652d19fb7..2d2abf0d8 100644 --- a/l10n/sv.js +++ b/l10n/sv.js @@ -81,6 +81,7 @@ OC.L10N.register( "Visible" : "Synlig", "Open" : "Öppen", "Invite" : "Bjud in", + "Join Request" : "Anslutningsbegäran", "Friends" : "Vänner", "Password Protected" : "Lösenordsskyddad", "No Owner" : "Ingen ägare", @@ -91,6 +92,7 @@ OC.L10N.register( "Circle Invite" : "Cirkel-inbjudan", "Federated" : "Federerad", "Mount point" : "Monteringspunkt", + "Nextcloud Account" : "Nextcloudkonto", "Nextcloud Group" : "Nextcloud-grupp", "Email Address" : "E-postadress", "Contact" : "Kontakta", @@ -103,18 +105,31 @@ OC.L10N.register( "%s shared »%s« with you." : "%s delade »%s« med dig.", "%s shared »%s« with \"%s\"." : "%s delade »%s« med \"%s\".", "%s on %s" : "%s på %s", + "%1$s shared »%2$s« with you.\nYou should have already received a separate email with a link to access it.\n" : "%1$s delade »%2$s« med dig.\nDu borde redan ha fått ett separat e-postmeddelande med en länk för åtkomst.\n", + "%1$s shared »%2$s« with you. You should have already received a separate email with a link to access it." : "%1$s delade »%2$s« med dig. Du borde redan ha fått ett separat e-postmeddelande med en länk för åtkomst.", "Password to access »%1$s« shared to you by %2$s" : "Lösenord för access till »%1$s« delad med dig av %2$s", "Password to access »%s«" : "Lösenord för att nå »%s«", "It is protected with the following password:" : "Den är skyddad med följande lösenord:", "%1$s via %2$s" : "%1$s via %2$s", "Click the button below to open it." : "Klicka på knappen nedan för att öppna det.", "Open »%s«" : "Öppna »%s«", + "%1$s shared multiple files with you.\nYou should have already received a separate email with a link to access them.\n" : "%1$s delade flera filer med dig.\nDu borde redan ha fått ett separat e-postmeddelande med en länk för åtkomst.\n", + "%1$s shared multiple files with you. You should have already received a separate email with a link to access them." : "%1$s delade flera filer med dig. Du borde redan ha fått ett separat e-postmeddelande med en länk för åtkomst.", "Password to access files shared to you by %1$s" : "Lösenord för åtkomst till filer delade med dig av %1$s", "Password to access files" : "Lösenord för åtkomst till filer", + "%s shared multiple files with \"%s\"." : "%s delade flera filer med \"%s\".", "%s shared multiple files with you." : "%s delade flera filer med dig.", + "Boot up" : "Uppstart", + "Initialisation Nextcloud" : "Initialisering Nextcloud", + "Initialisation Circles App" : "Initialisering Cirkel-appen", + "Fresh installation status" : "Nyinstallationsstatus", + "Building Local Database" : "Bygger lokal databas", + "Testing Basic Circle Creation" : "Testar grundläggande Cirkel-skapande", + "Adding local users and moderators" : "Lägger till lokala användare och moderatorer ", "Circle not found" : "Cirkel kunde inte hittas", "Circle not found " : "Cirkel kunde inte hittas", "This member does not exist" : "Medlemmen finns inte", + "This account is already a member of the circle" : "Detta konto är redan medlem av denna cirkel", "Federated link not found" : "Federerad länk hittades inte", "This feature is not available for personal circles" : "Funktionen är inte tillgänglig för personliga cirklar", "The circle is not federated" : "Cirkeln är inte federerad", @@ -125,6 +140,9 @@ OC.L10N.register( "Level cannot be changed for this type of member" : "Nivå kan inte ändras för medlemstypen", "You are already a member of this circle" : "Du är redan medlem i denna cirkel", "You have been blocked from this circle" : "Du har blockerats från denna cirkel", + "The account is already a member of this circle" : "Kontot är redan medlem av denna cirkel", + "The account has already been invited into this circle" : "Kontot har redan bjudits in till denna cirkel", + "%s (Circle owned by %s)" : "1%s (Cirkel ägs av 1%s)", "You are now a member of the Circle \"%2$s\"" : "Du är nu medlem i cirkel \"%2$s\"", "You have been invited by %1$s into the Circle \"%2$s\"" : "Du har blivit inbjuden av %1$s till cirkel \"%2$s\"", "%1$s sent a request to be a member of the Circle \"%2$s\"" : "%1$s skickade en förfrågan att bli medlem i cirkel \"%2$s\"", @@ -144,12 +162,19 @@ OC.L10N.register( "You cannot edit level in a personal circle" : "Du kan inte ändra nivå i en personlig cirkel", "Group cannot be set as owner of a circle" : "Grupp kan inte sättas som ägare av en cirkel", "now" : "nu", + "This account does not exist" : "Kontot existerar inte", "Email format is not valid" : "E-postformat är inte giltigt", "This contact is not available" : "Denna kontakt är inte tillgänglig", + "You have no permission to create a new circle" : "Du har inte behörighet att skapa en ny cirkel", "%s shared a file with \"%s\"." : "%s delade en fil med \"%s\".", "%s shared a file with you." : "%s delade en fil med dig.", + "%1$s shared some content with you.\nYou should have already received a separate email with a link to access it.\n" : "%1$s delade innehåll med dig.\nDu borde redan ha fått ett separat e-postmeddelande med en länk för åtkomst.\n", + "%1$s shared some content with you. You should have already received a separate email with a link to access it." : "%1$s delade innehåll med dig. Du borde redan ha fått ett separat e-postmeddelande med en länk för åtkomst.", + "Password to access content shared with you by %1$s" : "Lösenord för tillgång till innehåll delat med dig av 1%1$s", + "Password to access content" : "Lösenord för att komma åt innehåll", "This item is already shared with this circle" : "Detta objektet delas redan med denna cirkeln.", "Bring cloud-users closer together." : "För moln-användare närmare varandra.", + "Circles allows people to create their own groups of people/colleagues/friends.\nThose groups of people (or \"circles\") can then be used by any other app for sharing purpose." : "Cirklar låter användare att skapa deras egna grupper av användare/kollegor/vänner.\nDessa grupper av användare (eller \"cirklar\") kan användas av alla andra appar vid delning.", "No files in here" : "Inga filer här", "No entries found in this folder" : "Inga objekt funna i denna mapp", "Name" : "Namn", diff --git a/l10n/sv.json b/l10n/sv.json index 2632b164d..e01301268 100644 --- a/l10n/sv.json +++ b/l10n/sv.json @@ -79,6 +79,7 @@ "Visible" : "Synlig", "Open" : "Öppen", "Invite" : "Bjud in", + "Join Request" : "Anslutningsbegäran", "Friends" : "Vänner", "Password Protected" : "Lösenordsskyddad", "No Owner" : "Ingen ägare", @@ -89,6 +90,7 @@ "Circle Invite" : "Cirkel-inbjudan", "Federated" : "Federerad", "Mount point" : "Monteringspunkt", + "Nextcloud Account" : "Nextcloudkonto", "Nextcloud Group" : "Nextcloud-grupp", "Email Address" : "E-postadress", "Contact" : "Kontakta", @@ -101,18 +103,31 @@ "%s shared »%s« with you." : "%s delade »%s« med dig.", "%s shared »%s« with \"%s\"." : "%s delade »%s« med \"%s\".", "%s on %s" : "%s på %s", + "%1$s shared »%2$s« with you.\nYou should have already received a separate email with a link to access it.\n" : "%1$s delade »%2$s« med dig.\nDu borde redan ha fått ett separat e-postmeddelande med en länk för åtkomst.\n", + "%1$s shared »%2$s« with you. You should have already received a separate email with a link to access it." : "%1$s delade »%2$s« med dig. Du borde redan ha fått ett separat e-postmeddelande med en länk för åtkomst.", "Password to access »%1$s« shared to you by %2$s" : "Lösenord för access till »%1$s« delad med dig av %2$s", "Password to access »%s«" : "Lösenord för att nå »%s«", "It is protected with the following password:" : "Den är skyddad med följande lösenord:", "%1$s via %2$s" : "%1$s via %2$s", "Click the button below to open it." : "Klicka på knappen nedan för att öppna det.", "Open »%s«" : "Öppna »%s«", + "%1$s shared multiple files with you.\nYou should have already received a separate email with a link to access them.\n" : "%1$s delade flera filer med dig.\nDu borde redan ha fått ett separat e-postmeddelande med en länk för åtkomst.\n", + "%1$s shared multiple files with you. You should have already received a separate email with a link to access them." : "%1$s delade flera filer med dig. Du borde redan ha fått ett separat e-postmeddelande med en länk för åtkomst.", "Password to access files shared to you by %1$s" : "Lösenord för åtkomst till filer delade med dig av %1$s", "Password to access files" : "Lösenord för åtkomst till filer", + "%s shared multiple files with \"%s\"." : "%s delade flera filer med \"%s\".", "%s shared multiple files with you." : "%s delade flera filer med dig.", + "Boot up" : "Uppstart", + "Initialisation Nextcloud" : "Initialisering Nextcloud", + "Initialisation Circles App" : "Initialisering Cirkel-appen", + "Fresh installation status" : "Nyinstallationsstatus", + "Building Local Database" : "Bygger lokal databas", + "Testing Basic Circle Creation" : "Testar grundläggande Cirkel-skapande", + "Adding local users and moderators" : "Lägger till lokala användare och moderatorer ", "Circle not found" : "Cirkel kunde inte hittas", "Circle not found " : "Cirkel kunde inte hittas", "This member does not exist" : "Medlemmen finns inte", + "This account is already a member of the circle" : "Detta konto är redan medlem av denna cirkel", "Federated link not found" : "Federerad länk hittades inte", "This feature is not available for personal circles" : "Funktionen är inte tillgänglig för personliga cirklar", "The circle is not federated" : "Cirkeln är inte federerad", @@ -123,6 +138,9 @@ "Level cannot be changed for this type of member" : "Nivå kan inte ändras för medlemstypen", "You are already a member of this circle" : "Du är redan medlem i denna cirkel", "You have been blocked from this circle" : "Du har blockerats från denna cirkel", + "The account is already a member of this circle" : "Kontot är redan medlem av denna cirkel", + "The account has already been invited into this circle" : "Kontot har redan bjudits in till denna cirkel", + "%s (Circle owned by %s)" : "1%s (Cirkel ägs av 1%s)", "You are now a member of the Circle \"%2$s\"" : "Du är nu medlem i cirkel \"%2$s\"", "You have been invited by %1$s into the Circle \"%2$s\"" : "Du har blivit inbjuden av %1$s till cirkel \"%2$s\"", "%1$s sent a request to be a member of the Circle \"%2$s\"" : "%1$s skickade en förfrågan att bli medlem i cirkel \"%2$s\"", @@ -142,12 +160,19 @@ "You cannot edit level in a personal circle" : "Du kan inte ändra nivå i en personlig cirkel", "Group cannot be set as owner of a circle" : "Grupp kan inte sättas som ägare av en cirkel", "now" : "nu", + "This account does not exist" : "Kontot existerar inte", "Email format is not valid" : "E-postformat är inte giltigt", "This contact is not available" : "Denna kontakt är inte tillgänglig", + "You have no permission to create a new circle" : "Du har inte behörighet att skapa en ny cirkel", "%s shared a file with \"%s\"." : "%s delade en fil med \"%s\".", "%s shared a file with you." : "%s delade en fil med dig.", + "%1$s shared some content with you.\nYou should have already received a separate email with a link to access it.\n" : "%1$s delade innehåll med dig.\nDu borde redan ha fått ett separat e-postmeddelande med en länk för åtkomst.\n", + "%1$s shared some content with you. You should have already received a separate email with a link to access it." : "%1$s delade innehåll med dig. Du borde redan ha fått ett separat e-postmeddelande med en länk för åtkomst.", + "Password to access content shared with you by %1$s" : "Lösenord för tillgång till innehåll delat med dig av 1%1$s", + "Password to access content" : "Lösenord för att komma åt innehåll", "This item is already shared with this circle" : "Detta objektet delas redan med denna cirkeln.", "Bring cloud-users closer together." : "För moln-användare närmare varandra.", + "Circles allows people to create their own groups of people/colleagues/friends.\nThose groups of people (or \"circles\") can then be used by any other app for sharing purpose." : "Cirklar låter användare att skapa deras egna grupper av användare/kollegor/vänner.\nDessa grupper av användare (eller \"cirklar\") kan användas av alla andra appar vid delning.", "No files in here" : "Inga filer här", "No entries found in this folder" : "Inga objekt funna i denna mapp", "Name" : "Namn", From d3c6f0644b146514e2d2e6dc161b6c1bb311d67c Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 28 Feb 2023 02:32:37 +0000 Subject: [PATCH 11/33] =?UTF-8?q?Fix(l10n):=20=F0=9F=94=A0=20Update=20tran?= =?UTF-8?q?slations=20from=20Transifex?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Nextcloud bot --- l10n/sr.js | 45 ++++++++++++++++++++++++++++++++++++++++++++- l10n/sr.json | 45 ++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 88 insertions(+), 2 deletions(-) diff --git a/l10n/sr.js b/l10n/sr.js index f20450a49..6c6ab21c6 100644 --- a/l10n/sr.js +++ b/l10n/sr.js @@ -75,34 +75,61 @@ OC.L10N.register( "On events happening in a Circle of which you are a member" : "На догађаје који се дешавају у Кругу чији сте члан", "Any important event in a Circle you are moderating" : "Било који битан догађај у Кругу који модеришете", "On global events happening in any Circle" : "На јавне догађаје који се дешавају и било ком кругу", + "Single" : "Сам", "Personal" : "Лични", "System" : "Систем", "Visible" : "Видљив", "Open" : "Отвори", + "Invite" : "Позив", + "Join Request" : "Захтев за приступање", + "Friends" : "Пријатељи", + "Password Protected" : "Заштићено лозинком", + "No Owner" : "Без власника", "Hidden" : "Сакривен", + "Backend" : "Позадински систем", "Local" : "Локално", "Root" : "Корен", + "Circle Invite" : "Позив у круг", "Federated" : "Здружено", + "Mount point" : "Тачка монтирања", + "Nextcloud Account" : "Nextcloud налог", + "Nextcloud Group" : "Nextcloud група", + "Email Address" : "И-мејл адреса", "Contact" : "Контакт", "Circle" : "Круг", + "Nextcloud App" : "Nextcloud апликација", "Member" : "Члан", "Moderator" : "Модератор", "Admin" : "Администратор", "Owner" : "Власник", "%s shared »%s« with you." : "%s је поделио »%s« са Вама.", + "%s shared »%s« with \"%s\"." : "%s је поделио »%s« са „%s.", "%s on %s" : "%s на %s", + "%1$s shared »%2$s« with you.\nYou should have already received a separate email with a link to access it.\n" : "%1$s је са вама поделио »%2$s«.\nТребало би да сте већ примили посебан и-мејл са линком за приступ.\n", + "%1$s shared »%2$s« with you. You should have already received a separate email with a link to access it." : "%1$s је са вама поделио »%2$s«. Требало би да сте већ примили посебан и-мејл са линком за приступ.", "Password to access »%1$s« shared to you by %2$s" : "%2$s Вам је поделио/ла лозинку за приступ „%1$s“", "Password to access »%s«" : "Лозинка за приступ „%s“", "It is protected with the following password:" : "Заштићена је следећом лозинком:", "%1$s via %2$s" : "%1$s преко %2$s", "Click the button below to open it." : "Кликните дугме испод да га отворите.", "Open »%s«" : "Отвори »%s«", + "%1$s shared multiple files with you.\nYou should have already received a separate email with a link to access them.\n" : "%1$s је са вама поделио више фајлова.\nТребало би да сте већ примили посебан и-мејл са линком за приступ.\n", + "%1$s shared multiple files with you. You should have already received a separate email with a link to access them." : "%1$s је са вама поделио више фајлова. Требало би да сте већ примили посебан и-мејл са линком за приступ.", "Password to access files shared to you by %1$s" : "Лозинка да приступите фајлова које Вам је поделио %1$s", "Password to access files" : "Лозинка за приступ фајловима", + "%s shared multiple files with \"%s\"." : "%s је поделио више фајлова са „%s.", "%s shared multiple files with you." : "%s је поделио више фајлова са Вама.", + "Boot up" : "Подизање система", + "Initialisation Nextcloud" : "Иницијализација програма Nextcloud", + "Initialisation Circles App" : "Иницијализација апликације Кругови", + "Fresh installation status" : "Статус свеже инсталације", + "Building Local Database" : "Изградња локалне базе података", + "Testing Basic Circle Creation" : "Тестирање креирања основног круга", + "Adding local users and moderators" : "Додавање локалних корисника и модератора", "Circle not found" : "Круг није нађен", "Circle not found " : "Криг није нађен", "This member does not exist" : "Члан не постоји", + "This account is already a member of the circle" : "Овај налог је већ члан круга", "Federated link not found" : "Здружена веза није нађена", "This feature is not available for personal circles" : "Ова функционалност није доступна за личне кругове", "The circle is not federated" : "Круг није здружен", @@ -113,6 +140,9 @@ OC.L10N.register( "Level cannot be changed for this type of member" : "Ниво не може да се промени за овај тип члана", "You are already a member of this circle" : "Већ сте члан овог круга", "You have been blocked from this circle" : "Блокирани сте у овом кругу", + "The account is already a member of this circle" : "Овај налог је већ члан овог круга", + "The account has already been invited into this circle" : "Налог је већ раније позван у овај круг", + "%s (Circle owned by %s)" : "%s (Власник круга је %s)", "You are now a member of the Circle \"%2$s\"" : "Сада сте члан круга „%2$s“", "You have been invited by %1$s into the Circle \"%2$s\"" : "%1$s Вас је позвао/ла у круг „%2$s“", "%1$s sent a request to be a member of the Circle \"%2$s\"" : "%1$s је послао захтев да буде члан круга „%2$s“", @@ -121,6 +151,7 @@ OC.L10N.register( "Leave the circle" : "Напусти круг", "%s" : "%s", "Personal Circle" : "Лични круг", + "%s owned by %s" : "%s поседује %s", "You need a specify a type of circle" : "Морате навести тип круга", "A circle with that name exists" : "Круг са тим именом постоји", "This member is not the owner of the circle" : "Овај члан није власник круга", @@ -131,19 +162,31 @@ OC.L10N.register( "You cannot edit level in a personal circle" : "Не можете мењати ниво у личним круговима", "Group cannot be set as owner of a circle" : "Не можете да поставите групу као власника круга", "now" : "сада", + "This account does not exist" : "Овај налог не постоји", "Email format is not valid" : "Формат адресе е-поште није исправан", "This contact is not available" : "Овај контакт није доступан", + "You have no permission to create a new circle" : "Немате дозволу да креирате нови круг", + "%s shared a file with \"%s\"." : "%s је поделио фајл са „%s.", + "%s shared a file with you." : "%s је са вама поделио фајл.", + "%1$s shared some content with you.\nYou should have already received a separate email with a link to access it.\n" : "%1$s је са вама поделио неки садржај.\nТребало би да сте већ примили посебан и-мејл са линком за приступ.\n", + "%1$s shared some content with you. You should have already received a separate email with a link to access it." : "%1$s је поделио са вама неки садржај. Требало би да сте већ примили посебан и-мејл са линком за приступ.", + "Password to access content shared with you by %1$s" : "%1$s је са вама поделио лозинку за приступ садржају", + "Password to access content" : "Лозинка за приступ садржају", + "This item is already shared with this circle" : "Ова ставка је већ подељена овом кругу", "Bring cloud-users closer together." : "Приближимо клауд кориснике.", + "Circles allows people to create their own groups of people/colleagues/friends.\nThose groups of people (or \"circles\") can then be used by any other app for sharing purpose." : "Кругови омогућава људима да креирају своје сопствене групе људи/колега/пријатеља.\nБило која друга апликација затим може за дељење да користи те групе људи (или „кругове”).", "No files in here" : "Овде нема фајлова", "No entries found in this folder" : "Нема резултата у овој фасцикли", "Name" : "Назив", "Size" : "Величина", "Modified" : "Измењен", + "Nextcloud User" : "Nextcloud корисник", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Не можете користити апликацију Кругови док администратор не дозволи бар један тип кругова", "This user is already a member of the circle" : "Корисник је већ члан круга", "The user is already a member of this circle" : "Корисник је већ члан круга", "The user has already been invited into this circle" : "Корисник је већ позван у овај круг", "This user does not exist" : "Овај корисник не постоји", - "Could not find share" : "Не могу да нађем дељење" + "Could not find share" : "Не могу да нађем дељење", + "Circles allows your users to create their own groups of users/colleagues/friends.\nThose groups of users (or \"circles\") can then be used by any other app for sharing purpose." : "Кругови омогућава људима да креирају своје сопствене групе корисника/колега/пријатеља.\nБило која друга апликација затим може за дељење да користи те кориснике (или „кругове”)." }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"); diff --git a/l10n/sr.json b/l10n/sr.json index 56b9be7d2..5324c833d 100644 --- a/l10n/sr.json +++ b/l10n/sr.json @@ -73,34 +73,61 @@ "On events happening in a Circle of which you are a member" : "На догађаје који се дешавају у Кругу чији сте члан", "Any important event in a Circle you are moderating" : "Било који битан догађај у Кругу који модеришете", "On global events happening in any Circle" : "На јавне догађаје који се дешавају и било ком кругу", + "Single" : "Сам", "Personal" : "Лични", "System" : "Систем", "Visible" : "Видљив", "Open" : "Отвори", + "Invite" : "Позив", + "Join Request" : "Захтев за приступање", + "Friends" : "Пријатељи", + "Password Protected" : "Заштићено лозинком", + "No Owner" : "Без власника", "Hidden" : "Сакривен", + "Backend" : "Позадински систем", "Local" : "Локално", "Root" : "Корен", + "Circle Invite" : "Позив у круг", "Federated" : "Здружено", + "Mount point" : "Тачка монтирања", + "Nextcloud Account" : "Nextcloud налог", + "Nextcloud Group" : "Nextcloud група", + "Email Address" : "И-мејл адреса", "Contact" : "Контакт", "Circle" : "Круг", + "Nextcloud App" : "Nextcloud апликација", "Member" : "Члан", "Moderator" : "Модератор", "Admin" : "Администратор", "Owner" : "Власник", "%s shared »%s« with you." : "%s је поделио »%s« са Вама.", + "%s shared »%s« with \"%s\"." : "%s је поделио »%s« са „%s.", "%s on %s" : "%s на %s", + "%1$s shared »%2$s« with you.\nYou should have already received a separate email with a link to access it.\n" : "%1$s је са вама поделио »%2$s«.\nТребало би да сте већ примили посебан и-мејл са линком за приступ.\n", + "%1$s shared »%2$s« with you. You should have already received a separate email with a link to access it." : "%1$s је са вама поделио »%2$s«. Требало би да сте већ примили посебан и-мејл са линком за приступ.", "Password to access »%1$s« shared to you by %2$s" : "%2$s Вам је поделио/ла лозинку за приступ „%1$s“", "Password to access »%s«" : "Лозинка за приступ „%s“", "It is protected with the following password:" : "Заштићена је следећом лозинком:", "%1$s via %2$s" : "%1$s преко %2$s", "Click the button below to open it." : "Кликните дугме испод да га отворите.", "Open »%s«" : "Отвори »%s«", + "%1$s shared multiple files with you.\nYou should have already received a separate email with a link to access them.\n" : "%1$s је са вама поделио више фајлова.\nТребало би да сте већ примили посебан и-мејл са линком за приступ.\n", + "%1$s shared multiple files with you. You should have already received a separate email with a link to access them." : "%1$s је са вама поделио више фајлова. Требало би да сте већ примили посебан и-мејл са линком за приступ.", "Password to access files shared to you by %1$s" : "Лозинка да приступите фајлова које Вам је поделио %1$s", "Password to access files" : "Лозинка за приступ фајловима", + "%s shared multiple files with \"%s\"." : "%s је поделио више фајлова са „%s.", "%s shared multiple files with you." : "%s је поделио више фајлова са Вама.", + "Boot up" : "Подизање система", + "Initialisation Nextcloud" : "Иницијализација програма Nextcloud", + "Initialisation Circles App" : "Иницијализација апликације Кругови", + "Fresh installation status" : "Статус свеже инсталације", + "Building Local Database" : "Изградња локалне базе података", + "Testing Basic Circle Creation" : "Тестирање креирања основног круга", + "Adding local users and moderators" : "Додавање локалних корисника и модератора", "Circle not found" : "Круг није нађен", "Circle not found " : "Криг није нађен", "This member does not exist" : "Члан не постоји", + "This account is already a member of the circle" : "Овај налог је већ члан круга", "Federated link not found" : "Здружена веза није нађена", "This feature is not available for personal circles" : "Ова функционалност није доступна за личне кругове", "The circle is not federated" : "Круг није здружен", @@ -111,6 +138,9 @@ "Level cannot be changed for this type of member" : "Ниво не може да се промени за овај тип члана", "You are already a member of this circle" : "Већ сте члан овог круга", "You have been blocked from this circle" : "Блокирани сте у овом кругу", + "The account is already a member of this circle" : "Овај налог је већ члан овог круга", + "The account has already been invited into this circle" : "Налог је већ раније позван у овај круг", + "%s (Circle owned by %s)" : "%s (Власник круга је %s)", "You are now a member of the Circle \"%2$s\"" : "Сада сте члан круга „%2$s“", "You have been invited by %1$s into the Circle \"%2$s\"" : "%1$s Вас је позвао/ла у круг „%2$s“", "%1$s sent a request to be a member of the Circle \"%2$s\"" : "%1$s је послао захтев да буде члан круга „%2$s“", @@ -119,6 +149,7 @@ "Leave the circle" : "Напусти круг", "%s" : "%s", "Personal Circle" : "Лични круг", + "%s owned by %s" : "%s поседује %s", "You need a specify a type of circle" : "Морате навести тип круга", "A circle with that name exists" : "Круг са тим именом постоји", "This member is not the owner of the circle" : "Овај члан није власник круга", @@ -129,19 +160,31 @@ "You cannot edit level in a personal circle" : "Не можете мењати ниво у личним круговима", "Group cannot be set as owner of a circle" : "Не можете да поставите групу као власника круга", "now" : "сада", + "This account does not exist" : "Овај налог не постоји", "Email format is not valid" : "Формат адресе е-поште није исправан", "This contact is not available" : "Овај контакт није доступан", + "You have no permission to create a new circle" : "Немате дозволу да креирате нови круг", + "%s shared a file with \"%s\"." : "%s је поделио фајл са „%s.", + "%s shared a file with you." : "%s је са вама поделио фајл.", + "%1$s shared some content with you.\nYou should have already received a separate email with a link to access it.\n" : "%1$s је са вама поделио неки садржај.\nТребало би да сте већ примили посебан и-мејл са линком за приступ.\n", + "%1$s shared some content with you. You should have already received a separate email with a link to access it." : "%1$s је поделио са вама неки садржај. Требало би да сте већ примили посебан и-мејл са линком за приступ.", + "Password to access content shared with you by %1$s" : "%1$s је са вама поделио лозинку за приступ садржају", + "Password to access content" : "Лозинка за приступ садржају", + "This item is already shared with this circle" : "Ова ставка је већ подељена овом кругу", "Bring cloud-users closer together." : "Приближимо клауд кориснике.", + "Circles allows people to create their own groups of people/colleagues/friends.\nThose groups of people (or \"circles\") can then be used by any other app for sharing purpose." : "Кругови омогућава људима да креирају своје сопствене групе људи/колега/пријатеља.\nБило која друга апликација затим може за дељење да користи те групе људи (или „кругове”).", "No files in here" : "Овде нема фајлова", "No entries found in this folder" : "Нема резултата у овој фасцикли", "Name" : "Назив", "Size" : "Величина", "Modified" : "Измењен", + "Nextcloud User" : "Nextcloud корисник", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Не можете користити апликацију Кругови док администратор не дозволи бар један тип кругова", "This user is already a member of the circle" : "Корисник је већ члан круга", "The user is already a member of this circle" : "Корисник је већ члан круга", "The user has already been invited into this circle" : "Корисник је већ позван у овај круг", "This user does not exist" : "Овај корисник не постоји", - "Could not find share" : "Не могу да нађем дељење" + "Could not find share" : "Не могу да нађем дељење", + "Circles allows your users to create their own groups of users/colleagues/friends.\nThose groups of users (or \"circles\") can then be used by any other app for sharing purpose." : "Кругови омогућава људима да креирају своје сопствене групе корисника/колега/пријатеља.\nБило која друга апликација затим може за дељење да користи те кориснике (или „кругове”)." },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);" } \ No newline at end of file From e19840e08f4370122288f90985251ddd6945cd1b Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 1 Mar 2023 02:35:26 +0000 Subject: [PATCH 12/33] =?UTF-8?q?Fix(l10n):=20=F0=9F=94=A0=20Update=20tran?= =?UTF-8?q?slations=20from=20Transifex?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Nextcloud bot --- l10n/gl.js | 45 ++++++++++++++++++++++++++++++++++++++++++++- l10n/gl.json | 45 ++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 88 insertions(+), 2 deletions(-) diff --git a/l10n/gl.js b/l10n/gl.js index 7b27c7cda..d33601a1a 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -75,34 +75,61 @@ OC.L10N.register( "On events happening in a Circle of which you are a member" : "En eventos que ocorren nun círculo no que vostede é participante", "Any important event in a Circle you are moderating" : "Calquera evento importante nun Círculo do que vostede é o moderador", "On global events happening in any Circle" : "En eventos globais que suceden en calquera círculo", + "Single" : "Solteiro", "Personal" : "Persoal", "System" : "Sistema", "Visible" : "Visíbel", "Open" : "Abrir", + "Invite" : "Invitar", + "Join Request" : "Solicitude de Participación", + "Friends" : "Amigos", + "Password Protected" : "Protexido por Contrasinal", + "No Owner" : "Sen Propietario", "Hidden" : "Agochada", + "Backend" : "Backend", "Local" : "Local", "Root" : "Root (raíz)", + "Circle Invite" : "Invitación ao Círculo", "Federated" : "Federado", + "Mount point" : "Punto de montaxe", + "Nextcloud Account" : "Conta Nextcloud", + "Nextcloud Group" : "Grupo Nextcloud", + "Email Address" : "Enderezo de Correo Electrónico", "Contact" : "Contacto", "Circle" : "Círculo", + "Nextcloud App" : "Aplicación Nextcloud", "Member" : "Participante", "Moderator" : "Moderador", "Admin" : "Administrador", "Owner" : "Propietario", "%s shared »%s« with you." : "%s compartiu «%s» con vostede.", + "%s shared »%s« with \"%s\"." : "%s compartido »%s« con \"%s\".", "%s on %s" : "%s en %s", + "%1$s shared »%2$s« with you.\nYou should have already received a separate email with a link to access it.\n" : "%1$s compartiu »%2$s« contigo.\nXa deberías ter recibido un correo electrónico separado cunha ligazón para acceder a el.\n", + "%1$s shared »%2$s« with you. You should have already received a separate email with a link to access it." : "%1$s compartiu »%2$s« contigo. Xa deberías ter recibido un correo electrónico separado cunha ligazón para acceder a el.", "Password to access »%1$s« shared to you by %2$s" : "O contrasinal para acceder a «%1$s» foi compartido con vostede por %2$s", "Password to access »%s«" : "Contrasinal para acceder a «%s»", "It is protected with the following password:" : "Está protexido co seguinte contrasinal: ", "%1$s via %2$s" : "%1$s mediante %2$s", "Click the button below to open it." : "Prema no botón de embaixo para abrilo.", "Open »%s«" : "Abrir «%s»", + "%1$s shared multiple files with you.\nYou should have already received a separate email with a link to access them.\n" : "%1$s compartiu varios ficheiros contigo.\nXa deberías ter recibido un correo electrónico separado cunha ligazón para acceder a eles.\n", + "%1$s shared multiple files with you. You should have already received a separate email with a link to access them." : "%1$s compartiu varios ficheiros contigo. Xa deberías ter recibido un correo electrónico separado cunha ligazón para acceder a eles.", "Password to access files shared to you by %1$s" : "O contrasinal para acceder aos ficheiros compartidos con vostede por %1$s", "Password to access files" : "Contrasinal para acceder aos ficheiros", + "%s shared multiple files with \"%s\"." : "%s compartiu varios ficheiros con \"%s\".", "%s shared multiple files with you." : "%s compartiu varios ficheiros con vostede.", + "Boot up" : "Arrancar", + "Initialisation Nextcloud" : "Inicialización de Nextcloud", + "Initialisation Circles App" : "Inicialización da Aplicación Círculos", + "Fresh installation status" : "Estado da nova instalación", + "Building Local Database" : "Creando Base de Datos Local", + "Testing Basic Circle Creation" : "Proba de Creación de Círculos Básica", + "Adding local users and moderators" : "Engadindo usuarios e moderadores locais", "Circle not found" : "Non se atopou o círculo", "Circle not found " : "Non se atopou o círculo", "This member does not exist" : "Non existe este participante", + "This account is already a member of the circle" : "Esta conta xa é membro do círculo", "Federated link not found" : "Non se atopou a ligazón federada", "This feature is not available for personal circles" : "Esta característica non está dispoñíbel para círculos persoais", "The circle is not federated" : "Este círculo non está federado", @@ -113,6 +140,9 @@ OC.L10N.register( "Level cannot be changed for this type of member" : "Non é posíbel cambiar o nivel para este tipo de participante", "You are already a member of this circle" : "Vostede xa é participante neste círculo", "You have been blocked from this circle" : "Vostede foi bloqueado neste círculo", + "The account is already a member of this circle" : "A conta xa é membro deste círculo", + "The account has already been invited into this circle" : "A conta xa foi invitada a este círculo", + "%s (Circle owned by %s)" : "%s (Círculo propiedade de %s)", "You are now a member of the Circle \"%2$s\"" : "Vostede agora é participante no círculo «%2$s»", "You have been invited by %1$s into the Circle \"%2$s\"" : "Vostede foi convidado por %1$s ao círculo «%2$s»", "%1$s sent a request to be a member of the Circle \"%2$s\"" : "%1$s enviou unha solicitude para ser participante no círculo «%2$s»", @@ -121,6 +151,7 @@ OC.L10N.register( "Leave the circle" : "Abandonar o círculo", "%s" : "%s", "Personal Circle" : "Círculo persoal", + "%s owned by %s" : "%s propiedade de %s", "You need a specify a type of circle" : "Ten que especificar o tipo de círculo", "A circle with that name exists" : "Xa existe un círculo con ese nome.", "This member is not the owner of the circle" : "Este participante non é o propietario do círculo", @@ -131,19 +162,31 @@ OC.L10N.register( "You cannot edit level in a personal circle" : "Vostede no pode editar o nivel nun círculo persoal", "Group cannot be set as owner of a circle" : "O grupo non se pode estabelecer como propietario dun círculo", "now" : "agora", + "This account does not exist" : "Esta conta non existe", "Email format is not valid" : "O formato do correo non é válido", "This contact is not available" : "Este contacto non está dispoñíbel", + "You have no permission to create a new circle" : "Non tes permiso para crear un novo círculo", + "%s shared a file with \"%s\"." : "%s compartiu un ficheiro con \"%s\".", + "%s shared a file with you." : "%s compartiu un ficheiro contigo.", + "%1$s shared some content with you.\nYou should have already received a separate email with a link to access it.\n" : "%1$s compartiu algún contido contigo.\nXa deberías ter recibido un correo electrónico separado cunha ligazón para acceder a el.\n", + "%1$s shared some content with you. You should have already received a separate email with a link to access it." : "%1$s compartiu algún contido contigo. Xa deberías ter recibido un correo electrónico separado cunha ligazón para acceder a el.", + "Password to access content shared with you by %1$s" : "Contrasinal para acceder ao contido compartido contigo por %1$s", + "Password to access content" : "Contrasinal para acceder ao contido", + "This item is already shared with this circle" : "Este elemento xa se comparte con este círculo", "Bring cloud-users closer together." : "Acerque aos usuarios das nubes.", + "Circles allows people to create their own groups of people/colleagues/friends.\nThose groups of people (or \"circles\") can then be used by any other app for sharing purpose." : "Círculos permite ás persoas crear os seus propios grupos de persoas/colegas/amigos.\nEses grupos de persoas (ou \"círculos\") poden ser usados por calquera outra aplicación para compartir.", "No files in here" : "Aquí non hai ficheiros", "No entries found in this folder" : "Non se atoparon entradas neste cartafol", "Name" : "Nome", "Size" : "Tamaño", "Modified" : "Modificado", + "Nextcloud User" : "Usuario de Nextcloud", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Vostede non pode usar a aplicación Circulos ata que o administrador teña permitido polo menos un tipo de círculo", "This user is already a member of the circle" : "Este usuario xa é participante no círculo", "The user is already a member of this circle" : "Este usuario xa é participante neste círculo", "The user has already been invited into this circle" : "O usuario xa foi convidado a este círculo", "This user does not exist" : "Non existe este usuario", - "Could not find share" : "Non foi posíbel atopar o recurso compartido" + "Could not find share" : "Non foi posíbel atopar o recurso compartido", + "Circles allows your users to create their own groups of users/colleagues/friends.\nThose groups of users (or \"circles\") can then be used by any other app for sharing purpose." : "Círculos permite aos teus usuarios crear os seus propios grupos de usuarios/colegas/amigos.\nEses grupos de usuarios (ou \"círculos\") poden ser usados por calquera outra aplicación para compartir." }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/gl.json b/l10n/gl.json index 79f9efd53..265cb16a1 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -73,34 +73,61 @@ "On events happening in a Circle of which you are a member" : "En eventos que ocorren nun círculo no que vostede é participante", "Any important event in a Circle you are moderating" : "Calquera evento importante nun Círculo do que vostede é o moderador", "On global events happening in any Circle" : "En eventos globais que suceden en calquera círculo", + "Single" : "Solteiro", "Personal" : "Persoal", "System" : "Sistema", "Visible" : "Visíbel", "Open" : "Abrir", + "Invite" : "Invitar", + "Join Request" : "Solicitude de Participación", + "Friends" : "Amigos", + "Password Protected" : "Protexido por Contrasinal", + "No Owner" : "Sen Propietario", "Hidden" : "Agochada", + "Backend" : "Backend", "Local" : "Local", "Root" : "Root (raíz)", + "Circle Invite" : "Invitación ao Círculo", "Federated" : "Federado", + "Mount point" : "Punto de montaxe", + "Nextcloud Account" : "Conta Nextcloud", + "Nextcloud Group" : "Grupo Nextcloud", + "Email Address" : "Enderezo de Correo Electrónico", "Contact" : "Contacto", "Circle" : "Círculo", + "Nextcloud App" : "Aplicación Nextcloud", "Member" : "Participante", "Moderator" : "Moderador", "Admin" : "Administrador", "Owner" : "Propietario", "%s shared »%s« with you." : "%s compartiu «%s» con vostede.", + "%s shared »%s« with \"%s\"." : "%s compartido »%s« con \"%s\".", "%s on %s" : "%s en %s", + "%1$s shared »%2$s« with you.\nYou should have already received a separate email with a link to access it.\n" : "%1$s compartiu »%2$s« contigo.\nXa deberías ter recibido un correo electrónico separado cunha ligazón para acceder a el.\n", + "%1$s shared »%2$s« with you. You should have already received a separate email with a link to access it." : "%1$s compartiu »%2$s« contigo. Xa deberías ter recibido un correo electrónico separado cunha ligazón para acceder a el.", "Password to access »%1$s« shared to you by %2$s" : "O contrasinal para acceder a «%1$s» foi compartido con vostede por %2$s", "Password to access »%s«" : "Contrasinal para acceder a «%s»", "It is protected with the following password:" : "Está protexido co seguinte contrasinal: ", "%1$s via %2$s" : "%1$s mediante %2$s", "Click the button below to open it." : "Prema no botón de embaixo para abrilo.", "Open »%s«" : "Abrir «%s»", + "%1$s shared multiple files with you.\nYou should have already received a separate email with a link to access them.\n" : "%1$s compartiu varios ficheiros contigo.\nXa deberías ter recibido un correo electrónico separado cunha ligazón para acceder a eles.\n", + "%1$s shared multiple files with you. You should have already received a separate email with a link to access them." : "%1$s compartiu varios ficheiros contigo. Xa deberías ter recibido un correo electrónico separado cunha ligazón para acceder a eles.", "Password to access files shared to you by %1$s" : "O contrasinal para acceder aos ficheiros compartidos con vostede por %1$s", "Password to access files" : "Contrasinal para acceder aos ficheiros", + "%s shared multiple files with \"%s\"." : "%s compartiu varios ficheiros con \"%s\".", "%s shared multiple files with you." : "%s compartiu varios ficheiros con vostede.", + "Boot up" : "Arrancar", + "Initialisation Nextcloud" : "Inicialización de Nextcloud", + "Initialisation Circles App" : "Inicialización da Aplicación Círculos", + "Fresh installation status" : "Estado da nova instalación", + "Building Local Database" : "Creando Base de Datos Local", + "Testing Basic Circle Creation" : "Proba de Creación de Círculos Básica", + "Adding local users and moderators" : "Engadindo usuarios e moderadores locais", "Circle not found" : "Non se atopou o círculo", "Circle not found " : "Non se atopou o círculo", "This member does not exist" : "Non existe este participante", + "This account is already a member of the circle" : "Esta conta xa é membro do círculo", "Federated link not found" : "Non se atopou a ligazón federada", "This feature is not available for personal circles" : "Esta característica non está dispoñíbel para círculos persoais", "The circle is not federated" : "Este círculo non está federado", @@ -111,6 +138,9 @@ "Level cannot be changed for this type of member" : "Non é posíbel cambiar o nivel para este tipo de participante", "You are already a member of this circle" : "Vostede xa é participante neste círculo", "You have been blocked from this circle" : "Vostede foi bloqueado neste círculo", + "The account is already a member of this circle" : "A conta xa é membro deste círculo", + "The account has already been invited into this circle" : "A conta xa foi invitada a este círculo", + "%s (Circle owned by %s)" : "%s (Círculo propiedade de %s)", "You are now a member of the Circle \"%2$s\"" : "Vostede agora é participante no círculo «%2$s»", "You have been invited by %1$s into the Circle \"%2$s\"" : "Vostede foi convidado por %1$s ao círculo «%2$s»", "%1$s sent a request to be a member of the Circle \"%2$s\"" : "%1$s enviou unha solicitude para ser participante no círculo «%2$s»", @@ -119,6 +149,7 @@ "Leave the circle" : "Abandonar o círculo", "%s" : "%s", "Personal Circle" : "Círculo persoal", + "%s owned by %s" : "%s propiedade de %s", "You need a specify a type of circle" : "Ten que especificar o tipo de círculo", "A circle with that name exists" : "Xa existe un círculo con ese nome.", "This member is not the owner of the circle" : "Este participante non é o propietario do círculo", @@ -129,19 +160,31 @@ "You cannot edit level in a personal circle" : "Vostede no pode editar o nivel nun círculo persoal", "Group cannot be set as owner of a circle" : "O grupo non se pode estabelecer como propietario dun círculo", "now" : "agora", + "This account does not exist" : "Esta conta non existe", "Email format is not valid" : "O formato do correo non é válido", "This contact is not available" : "Este contacto non está dispoñíbel", + "You have no permission to create a new circle" : "Non tes permiso para crear un novo círculo", + "%s shared a file with \"%s\"." : "%s compartiu un ficheiro con \"%s\".", + "%s shared a file with you." : "%s compartiu un ficheiro contigo.", + "%1$s shared some content with you.\nYou should have already received a separate email with a link to access it.\n" : "%1$s compartiu algún contido contigo.\nXa deberías ter recibido un correo electrónico separado cunha ligazón para acceder a el.\n", + "%1$s shared some content with you. You should have already received a separate email with a link to access it." : "%1$s compartiu algún contido contigo. Xa deberías ter recibido un correo electrónico separado cunha ligazón para acceder a el.", + "Password to access content shared with you by %1$s" : "Contrasinal para acceder ao contido compartido contigo por %1$s", + "Password to access content" : "Contrasinal para acceder ao contido", + "This item is already shared with this circle" : "Este elemento xa se comparte con este círculo", "Bring cloud-users closer together." : "Acerque aos usuarios das nubes.", + "Circles allows people to create their own groups of people/colleagues/friends.\nThose groups of people (or \"circles\") can then be used by any other app for sharing purpose." : "Círculos permite ás persoas crear os seus propios grupos de persoas/colegas/amigos.\nEses grupos de persoas (ou \"círculos\") poden ser usados por calquera outra aplicación para compartir.", "No files in here" : "Aquí non hai ficheiros", "No entries found in this folder" : "Non se atoparon entradas neste cartafol", "Name" : "Nome", "Size" : "Tamaño", "Modified" : "Modificado", + "Nextcloud User" : "Usuario de Nextcloud", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Vostede non pode usar a aplicación Circulos ata que o administrador teña permitido polo menos un tipo de círculo", "This user is already a member of the circle" : "Este usuario xa é participante no círculo", "The user is already a member of this circle" : "Este usuario xa é participante neste círculo", "The user has already been invited into this circle" : "O usuario xa foi convidado a este círculo", "This user does not exist" : "Non existe este usuario", - "Could not find share" : "Non foi posíbel atopar o recurso compartido" + "Could not find share" : "Non foi posíbel atopar o recurso compartido", + "Circles allows your users to create their own groups of users/colleagues/friends.\nThose groups of users (or \"circles\") can then be used by any other app for sharing purpose." : "Círculos permite aos teus usuarios crear os seus propios grupos de usuarios/colegas/amigos.\nEses grupos de usuarios (ou \"círculos\") poden ser usados por calquera outra aplicación para compartir." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file From d9fd94596621481eaf403f4ba55621a4c94e6fc7 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 9 Mar 2023 02:36:47 +0000 Subject: [PATCH 13/33] =?UTF-8?q?Fix(l10n):=20=F0=9F=94=A0=20Update=20tran?= =?UTF-8?q?slations=20from=20Transifex?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Nextcloud bot --- l10n/uk.js | 2 +- l10n/uk.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/l10n/uk.js b/l10n/uk.js index be1982cb2..0ddbc5857 100644 --- a/l10n/uk.js +++ b/l10n/uk.js @@ -150,7 +150,7 @@ OC.L10N.register( "Refuse" : "Відмовитися", "Leave the circle" : "Вийти з кола", "%s" : "%s ", - "Personal Circle" : "Особисте Коло", + "Personal Circle" : "Моє коло", "%s owned by %s" : "%s належить %s", "You need a specify a type of circle" : "Потрібно вказати тип кола", "A circle with that name exists" : "Коло з такою назвою існує", diff --git a/l10n/uk.json b/l10n/uk.json index 3401f477f..f85461071 100644 --- a/l10n/uk.json +++ b/l10n/uk.json @@ -148,7 +148,7 @@ "Refuse" : "Відмовитися", "Leave the circle" : "Вийти з кола", "%s" : "%s ", - "Personal Circle" : "Особисте Коло", + "Personal Circle" : "Моє коло", "%s owned by %s" : "%s належить %s", "You need a specify a type of circle" : "Потрібно вказати тип кола", "A circle with that name exists" : "Коло з такою назвою існує", From e0c5785a906accb29dbcff8d541c651d105d4b9a Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 11 Mar 2023 02:35:07 +0000 Subject: [PATCH 14/33] =?UTF-8?q?Fix(l10n):=20=F0=9F=94=A0=20Update=20tran?= =?UTF-8?q?slations=20from=20Transifex?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Nextcloud bot --- l10n/bg.js | 4 ++-- l10n/bg.json | 4 ++-- l10n/ca.js | 4 ++-- l10n/ca.json | 4 ++-- l10n/cs.js | 4 ++-- l10n/cs.json | 4 ++-- l10n/de.js | 4 ++-- l10n/de.json | 4 ++-- l10n/de_DE.js | 4 ++-- l10n/de_DE.json | 4 ++-- l10n/el.js | 4 ++-- l10n/el.json | 4 ++-- l10n/en_GB.js | 4 ++-- l10n/en_GB.json | 4 ++-- l10n/es.js | 4 ++-- l10n/es.json | 4 ++-- l10n/eu.js | 4 ++-- l10n/eu.json | 4 ++-- l10n/fr.js | 4 ++-- l10n/fr.json | 4 ++-- l10n/gl.js | 4 ++-- l10n/gl.json | 4 ++-- l10n/he.js | 2 +- l10n/he.json | 2 +- l10n/hr.js | 4 ++-- l10n/hr.json | 4 ++-- l10n/hu.js | 4 ++-- l10n/hu.json | 4 ++-- l10n/it.js | 4 ++-- l10n/it.json | 4 ++-- l10n/ja.js | 4 ++-- l10n/ja.json | 4 ++-- l10n/nb.js | 4 ++-- l10n/nb.json | 4 ++-- l10n/nl.js | 4 ++-- l10n/nl.json | 4 ++-- l10n/pl.js | 4 ++-- l10n/pl.json | 4 ++-- l10n/pt_BR.js | 4 ++-- l10n/pt_BR.json | 4 ++-- l10n/ru.js | 4 ++-- l10n/ru.json | 4 ++-- l10n/sc.js | 4 ++-- l10n/sc.json | 4 ++-- l10n/sk.js | 4 ++-- l10n/sk.json | 4 ++-- l10n/sl.js | 4 ++-- l10n/sl.json | 4 ++-- l10n/sr.js | 4 ++-- l10n/sr.json | 4 ++-- l10n/sv.js | 4 ++-- l10n/sv.json | 4 ++-- l10n/tr.js | 4 ++-- l10n/tr.json | 4 ++-- l10n/uk.js | 4 ++-- l10n/uk.json | 4 ++-- l10n/zh_CN.js | 4 ++-- l10n/zh_CN.json | 4 ++-- l10n/zh_HK.js | 4 ++-- l10n/zh_HK.json | 4 ++-- l10n/zh_TW.js | 4 ++-- l10n/zh_TW.json | 4 ++-- 62 files changed, 122 insertions(+), 122 deletions(-) diff --git a/l10n/bg.js b/l10n/bg.js index 93d4c8386..ca4072c8c 100644 --- a/l10n/bg.js +++ b/l10n/bg.js @@ -120,8 +120,6 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s сподели множество файла с „%s“.", "%s shared multiple files with you." : "%sсподелени множество файлове с вас", "Boot up" : "Стартиране", - "Initialisation Nextcloud" : "Nextcloud Инициализация", - "Initialisation Circles App" : "Инициализация на Приложението Circles", "Fresh installation status" : "Състояние на нова инсталация", "Building Local Database" : "Изграждане на Локална База Данни", "Testing Basic Circle Creation" : "Тестване на създаването на основен кръг", @@ -181,6 +179,8 @@ OC.L10N.register( "Size" : "Размер", "Modified" : "Променен на", "Nextcloud User" : "Потребител на Nextcloud", + "Initialisation Nextcloud" : "Nextcloud Инициализация", + "Initialisation Circles App" : "Инициализация на Приложението Circles", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Не можете да използвате Приложението Кръгове, докато вашият администратор не е разрешил поне един тип от кръгове", "This user is already a member of the circle" : "Този потребител вече е член на кръга", "The user is already a member of this circle" : "Потребителят вече е член на този кръг", diff --git a/l10n/bg.json b/l10n/bg.json index bd47ffc6f..6940a8dab 100644 --- a/l10n/bg.json +++ b/l10n/bg.json @@ -118,8 +118,6 @@ "%s shared multiple files with \"%s\"." : "%s сподели множество файла с „%s“.", "%s shared multiple files with you." : "%sсподелени множество файлове с вас", "Boot up" : "Стартиране", - "Initialisation Nextcloud" : "Nextcloud Инициализация", - "Initialisation Circles App" : "Инициализация на Приложението Circles", "Fresh installation status" : "Състояние на нова инсталация", "Building Local Database" : "Изграждане на Локална База Данни", "Testing Basic Circle Creation" : "Тестване на създаването на основен кръг", @@ -179,6 +177,8 @@ "Size" : "Размер", "Modified" : "Променен на", "Nextcloud User" : "Потребител на Nextcloud", + "Initialisation Nextcloud" : "Nextcloud Инициализация", + "Initialisation Circles App" : "Инициализация на Приложението Circles", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Не можете да използвате Приложението Кръгове, докато вашият администратор не е разрешил поне един тип от кръгове", "This user is already a member of the circle" : "Този потребител вече е член на кръга", "The user is already a member of this circle" : "Потребителят вече е член на този кръг", diff --git a/l10n/ca.js b/l10n/ca.js index bdb263572..7b1bed131 100644 --- a/l10n/ca.js +++ b/l10n/ca.js @@ -120,8 +120,6 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s ha compartit diversos fitxers amb \"%s\".", "%s shared multiple files with you." : "%s us ha compartit diversos fitxers.", "Boot up" : "Engegar", - "Initialisation Nextcloud" : "Inicialització de Nextcloud", - "Initialisation Circles App" : "Inicialització de l’Aplicació Cercles", "Fresh installation status" : "Estat d'instal·lació nou", "Building Local Database" : "Construint bases de dades local", "Testing Basic Circle Creation" : "Prova de creació de cercles bàsics", @@ -181,6 +179,8 @@ OC.L10N.register( "Size" : "Mida", "Modified" : "Modificat", "Nextcloud User" : "Usuari Nextcloud", + "Initialisation Nextcloud" : "Inicialització de Nextcloud", + "Initialisation Circles App" : "Inicialització de l’Aplicació Cercles", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "No podeu utilitzar l'Aplicació de cercles fins que l'administrador hagi permès com a mínim un tipus de cercles", "This user is already a member of the circle" : "Aquest usuari ja és membre del cercle", "The user is already a member of this circle" : "L'usuari ja és membre d'aquest cercle", diff --git a/l10n/ca.json b/l10n/ca.json index bd68442bb..725886600 100644 --- a/l10n/ca.json +++ b/l10n/ca.json @@ -118,8 +118,6 @@ "%s shared multiple files with \"%s\"." : "%s ha compartit diversos fitxers amb \"%s\".", "%s shared multiple files with you." : "%s us ha compartit diversos fitxers.", "Boot up" : "Engegar", - "Initialisation Nextcloud" : "Inicialització de Nextcloud", - "Initialisation Circles App" : "Inicialització de l’Aplicació Cercles", "Fresh installation status" : "Estat d'instal·lació nou", "Building Local Database" : "Construint bases de dades local", "Testing Basic Circle Creation" : "Prova de creació de cercles bàsics", @@ -179,6 +177,8 @@ "Size" : "Mida", "Modified" : "Modificat", "Nextcloud User" : "Usuari Nextcloud", + "Initialisation Nextcloud" : "Inicialització de Nextcloud", + "Initialisation Circles App" : "Inicialització de l’Aplicació Cercles", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "No podeu utilitzar l'Aplicació de cercles fins que l'administrador hagi permès com a mínim un tipus de cercles", "This user is already a member of the circle" : "Aquest usuari ja és membre del cercle", "The user is already a member of this circle" : "L'usuari ja és membre d'aquest cercle", diff --git a/l10n/cs.js b/l10n/cs.js index d213a41b1..36adfa229 100644 --- a/l10n/cs.js +++ b/l10n/cs.js @@ -120,8 +120,6 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s nasdílel(a) několik souborů uživateli/skupině „%s“.", "%s shared multiple files with you." : "%s vám nasdílel(a) vícero souborů.", "Boot up" : "Nastartovat", - "Initialisation Nextcloud" : "Inicializace Nextcloud", - "Initialisation Circles App" : "Inicializace aplikace Okruhy", "Fresh installation status" : "Stav čisté instalace", "Building Local Database" : "Vytváří se místní databáze", "Testing Basic Circle Creation" : "Zkouší se vytvoření základního okruhu", @@ -181,6 +179,8 @@ OC.L10N.register( "Size" : "Velikost", "Modified" : "Změněno", "Nextcloud User" : "Uživatel v Nextcloud", + "Initialisation Nextcloud" : "Inicializace Nextcloud", + "Initialisation Circles App" : "Inicializace aplikace Okruhy", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Aplikaci Okruhy nelze použít dokud správce nepovolí vytváření alespoň jednoho typu okruhů", "This user is already a member of the circle" : "Tento uživatel už je členem tohoto okruhu", "The user is already a member of this circle" : "Uživatel už je členem tohoto okruhu", diff --git a/l10n/cs.json b/l10n/cs.json index 26e5ec259..420fe056d 100644 --- a/l10n/cs.json +++ b/l10n/cs.json @@ -118,8 +118,6 @@ "%s shared multiple files with \"%s\"." : "%s nasdílel(a) několik souborů uživateli/skupině „%s“.", "%s shared multiple files with you." : "%s vám nasdílel(a) vícero souborů.", "Boot up" : "Nastartovat", - "Initialisation Nextcloud" : "Inicializace Nextcloud", - "Initialisation Circles App" : "Inicializace aplikace Okruhy", "Fresh installation status" : "Stav čisté instalace", "Building Local Database" : "Vytváří se místní databáze", "Testing Basic Circle Creation" : "Zkouší se vytvoření základního okruhu", @@ -179,6 +177,8 @@ "Size" : "Velikost", "Modified" : "Změněno", "Nextcloud User" : "Uživatel v Nextcloud", + "Initialisation Nextcloud" : "Inicializace Nextcloud", + "Initialisation Circles App" : "Inicializace aplikace Okruhy", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Aplikaci Okruhy nelze použít dokud správce nepovolí vytváření alespoň jednoho typu okruhů", "This user is already a member of the circle" : "Tento uživatel už je členem tohoto okruhu", "The user is already a member of this circle" : "Uživatel už je členem tohoto okruhu", diff --git a/l10n/de.js b/l10n/de.js index bfabd42dd..0f8dd206f 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -120,8 +120,6 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s hat mehrere Dateien mit \"%s\" geteilt.", "%s shared multiple files with you." : "%s hat mehrere Dateien mit dir geteilt.", "Boot up" : "Hochfahren", - "Initialisation Nextcloud" : "Initialisierung von Nextcloud", - "Initialisation Circles App" : "Initialisierung der Circles-App", "Fresh installation status" : "Aktueller Initialisierungsstatus", "Building Local Database" : "Lokale Datenbank wird erstellt", "Testing Basic Circle Creation" : "Testen der grundlegenden Kreiserstellung", @@ -181,6 +179,8 @@ OC.L10N.register( "Size" : "Größe", "Modified" : "Geändert", "Nextcloud User" : "Nextcloud-Benutzer", + "Initialisation Nextcloud" : "Initialisierung von Nextcloud", + "Initialisation Circles App" : "Initialisierung der Circles-App", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Du kannst die Kreise-App nicht verwenden, solange dein Administrator nicht wenigstens einen Kreis-Typ zulässt", "This user is already a member of the circle" : "Dieser Benutzer ist bereits Mitglied dieses Kreises", "The user is already a member of this circle" : "Dieser Benutzer ist bereits Mitglied dieses Kreises ", diff --git a/l10n/de.json b/l10n/de.json index 3e031e389..3e545e1e9 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -118,8 +118,6 @@ "%s shared multiple files with \"%s\"." : "%s hat mehrere Dateien mit \"%s\" geteilt.", "%s shared multiple files with you." : "%s hat mehrere Dateien mit dir geteilt.", "Boot up" : "Hochfahren", - "Initialisation Nextcloud" : "Initialisierung von Nextcloud", - "Initialisation Circles App" : "Initialisierung der Circles-App", "Fresh installation status" : "Aktueller Initialisierungsstatus", "Building Local Database" : "Lokale Datenbank wird erstellt", "Testing Basic Circle Creation" : "Testen der grundlegenden Kreiserstellung", @@ -179,6 +177,8 @@ "Size" : "Größe", "Modified" : "Geändert", "Nextcloud User" : "Nextcloud-Benutzer", + "Initialisation Nextcloud" : "Initialisierung von Nextcloud", + "Initialisation Circles App" : "Initialisierung der Circles-App", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Du kannst die Kreise-App nicht verwenden, solange dein Administrator nicht wenigstens einen Kreis-Typ zulässt", "This user is already a member of the circle" : "Dieser Benutzer ist bereits Mitglied dieses Kreises", "The user is already a member of this circle" : "Dieser Benutzer ist bereits Mitglied dieses Kreises ", diff --git a/l10n/de_DE.js b/l10n/de_DE.js index 5a0b2fb7e..0045efc63 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -120,8 +120,6 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s hat mehrere Dateien mit \"%s\" geteilt.", "%s shared multiple files with you." : "%s hat mehrere Dateien mit Ihnen geteilt.", "Boot up" : "Hochfahren", - "Initialisation Nextcloud" : "Initialisierung von Nextcloud", - "Initialisation Circles App" : "Initialisierung der Circles-App", "Fresh installation status" : "Aktueller Initialisierungsstatus", "Building Local Database" : "Lokale Datenbank wird erstellt", "Testing Basic Circle Creation" : "Testen der grundlegenden Kreiserstellung", @@ -181,6 +179,8 @@ OC.L10N.register( "Size" : "Größe", "Modified" : "Geändert", "Nextcloud User" : "Nextcloud-Benutzer", + "Initialisation Nextcloud" : "Initialisierung von Nextcloud", + "Initialisation Circles App" : "Initialisierung der Circles-App", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Sie können die Kreise-App nicht verwenden, solange Ihr Administrator nicht wenigstens einen Kreis-Typ zulässt", "This user is already a member of the circle" : "Dieser Benutzer ist bereits Mitglied dieses Kreises", "The user is already a member of this circle" : "Dieser Benutzer ist bereits Mitglied dieses Kreises ", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index 1cc54a1c0..4b511032c 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -118,8 +118,6 @@ "%s shared multiple files with \"%s\"." : "%s hat mehrere Dateien mit \"%s\" geteilt.", "%s shared multiple files with you." : "%s hat mehrere Dateien mit Ihnen geteilt.", "Boot up" : "Hochfahren", - "Initialisation Nextcloud" : "Initialisierung von Nextcloud", - "Initialisation Circles App" : "Initialisierung der Circles-App", "Fresh installation status" : "Aktueller Initialisierungsstatus", "Building Local Database" : "Lokale Datenbank wird erstellt", "Testing Basic Circle Creation" : "Testen der grundlegenden Kreiserstellung", @@ -179,6 +177,8 @@ "Size" : "Größe", "Modified" : "Geändert", "Nextcloud User" : "Nextcloud-Benutzer", + "Initialisation Nextcloud" : "Initialisierung von Nextcloud", + "Initialisation Circles App" : "Initialisierung der Circles-App", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Sie können die Kreise-App nicht verwenden, solange Ihr Administrator nicht wenigstens einen Kreis-Typ zulässt", "This user is already a member of the circle" : "Dieser Benutzer ist bereits Mitglied dieses Kreises", "The user is already a member of this circle" : "Dieser Benutzer ist bereits Mitglied dieses Kreises ", diff --git a/l10n/el.js b/l10n/el.js index baf86e0b8..8abd3b068 100644 --- a/l10n/el.js +++ b/l10n/el.js @@ -120,8 +120,6 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s μοιράστηκε πολλαπλά αρχεία με \"%s\".", "%s shared multiple files with you." : "%s διαμοίρασε διάφορα αρχεία με σας.", "Boot up" : "Εκκίνηση", - "Initialisation Nextcloud" : "Αρχικοποίηση Nextcloud", - "Initialisation Circles App" : "Αρχικοποίηση Circles App", "Fresh installation status" : "Κατάσταση νέας εγκατάστασης", "Building Local Database" : "Δημιουργία Τοπικής Βάσης Δεδομένων", "Testing Basic Circle Creation" : "Δοκιμή Βασικής Δημιουργίας Κύκλου", @@ -181,6 +179,8 @@ OC.L10N.register( "Size" : "Μέγεθος", "Modified" : "Τροποποιήθηκε", "Nextcloud User" : "Χρήστης Nextcloud", + "Initialisation Nextcloud" : "Αρχικοποίηση Nextcloud", + "Initialisation Circles App" : "Αρχικοποίηση Circles App", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Δεν μπορείτε να χρησιμοποιήσετε την εφαρμογή Κύκλοι, μέχρι ο διαχειριστής να επιτρέψει τουλάχιστον έναν τύπο κύκλων", "This user is already a member of the circle" : "Αυτός ο χρήστης είναι ήδη μέλος του κύκλου", "The user is already a member of this circle" : "Ο χρήστης είναι ήδη μέλος του κύκλου", diff --git a/l10n/el.json b/l10n/el.json index 17f3685ce..7f2eca8a2 100644 --- a/l10n/el.json +++ b/l10n/el.json @@ -118,8 +118,6 @@ "%s shared multiple files with \"%s\"." : "%s μοιράστηκε πολλαπλά αρχεία με \"%s\".", "%s shared multiple files with you." : "%s διαμοίρασε διάφορα αρχεία με σας.", "Boot up" : "Εκκίνηση", - "Initialisation Nextcloud" : "Αρχικοποίηση Nextcloud", - "Initialisation Circles App" : "Αρχικοποίηση Circles App", "Fresh installation status" : "Κατάσταση νέας εγκατάστασης", "Building Local Database" : "Δημιουργία Τοπικής Βάσης Δεδομένων", "Testing Basic Circle Creation" : "Δοκιμή Βασικής Δημιουργίας Κύκλου", @@ -179,6 +177,8 @@ "Size" : "Μέγεθος", "Modified" : "Τροποποιήθηκε", "Nextcloud User" : "Χρήστης Nextcloud", + "Initialisation Nextcloud" : "Αρχικοποίηση Nextcloud", + "Initialisation Circles App" : "Αρχικοποίηση Circles App", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Δεν μπορείτε να χρησιμοποιήσετε την εφαρμογή Κύκλοι, μέχρι ο διαχειριστής να επιτρέψει τουλάχιστον έναν τύπο κύκλων", "This user is already a member of the circle" : "Αυτός ο χρήστης είναι ήδη μέλος του κύκλου", "The user is already a member of this circle" : "Ο χρήστης είναι ήδη μέλος του κύκλου", diff --git a/l10n/en_GB.js b/l10n/en_GB.js index 226ffc4a6..a7a553970 100644 --- a/l10n/en_GB.js +++ b/l10n/en_GB.js @@ -120,8 +120,6 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s shared multiple files with \"%s\".", "%s shared multiple files with you." : "%s shared multiple files with you.", "Boot up" : "Boot up", - "Initialisation Nextcloud" : "Initialisation Nextcloud", - "Initialisation Circles App" : "Initialisation Circles App", "Fresh installation status" : "Fresh installation status", "Building Local Database" : "Building Local Database", "Testing Basic Circle Creation" : "Testing Basic Circle Creation", @@ -181,6 +179,8 @@ OC.L10N.register( "Size" : "Size", "Modified" : "Modified", "Nextcloud User" : "Nextcloud User", + "Initialisation Nextcloud" : "Initialisation Nextcloud", + "Initialisation Circles App" : "Initialisation Circles App", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "You cannot use the Circles Application until your administrator has allowed at least one type of circles", "This user is already a member of the circle" : "This user is already a member of the circle", "The user is already a member of this circle" : "The user is already a member of this circle", diff --git a/l10n/en_GB.json b/l10n/en_GB.json index e7fd953bb..2236d832c 100644 --- a/l10n/en_GB.json +++ b/l10n/en_GB.json @@ -118,8 +118,6 @@ "%s shared multiple files with \"%s\"." : "%s shared multiple files with \"%s\".", "%s shared multiple files with you." : "%s shared multiple files with you.", "Boot up" : "Boot up", - "Initialisation Nextcloud" : "Initialisation Nextcloud", - "Initialisation Circles App" : "Initialisation Circles App", "Fresh installation status" : "Fresh installation status", "Building Local Database" : "Building Local Database", "Testing Basic Circle Creation" : "Testing Basic Circle Creation", @@ -179,6 +177,8 @@ "Size" : "Size", "Modified" : "Modified", "Nextcloud User" : "Nextcloud User", + "Initialisation Nextcloud" : "Initialisation Nextcloud", + "Initialisation Circles App" : "Initialisation Circles App", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "You cannot use the Circles Application until your administrator has allowed at least one type of circles", "This user is already a member of the circle" : "This user is already a member of the circle", "The user is already a member of this circle" : "The user is already a member of this circle", diff --git a/l10n/es.js b/l10n/es.js index df6741c32..5456984d5 100644 --- a/l10n/es.js +++ b/l10n/es.js @@ -120,8 +120,6 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s compartió múltiples archivos con \"%s\".", "%s shared multiple files with you." : "%s ha compartido varios archivos contigo.", "Boot up" : "Arrancar", - "Initialisation Nextcloud" : "Inicialización de Nextcloud", - "Initialisation Circles App" : "Inicialización de la App Circles", "Fresh installation status" : "Estado de la nueva instalación", "Building Local Database" : "Creando la Base de Datos Local", "Testing Basic Circle Creation" : "Prueba básica de creación de círculos", @@ -181,6 +179,8 @@ OC.L10N.register( "Size" : "Tamaño", "Modified" : "Modificado", "Nextcloud User" : "Usuario de Nextcloud", + "Initialisation Nextcloud" : "Inicialización de Nextcloud", + "Initialisation Circles App" : "Inicialización de la App Circles", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "No puedes usar la app Círculos hasta que el administrador haya permitido al menos un tipo de círculos", "This user is already a member of the circle" : "Este usuario ya es miembro de este círculo", "The user is already a member of this circle" : "El usuario ya es miembro de este círculo", diff --git a/l10n/es.json b/l10n/es.json index 8a78c0787..4052d7d55 100644 --- a/l10n/es.json +++ b/l10n/es.json @@ -118,8 +118,6 @@ "%s shared multiple files with \"%s\"." : "%s compartió múltiples archivos con \"%s\".", "%s shared multiple files with you." : "%s ha compartido varios archivos contigo.", "Boot up" : "Arrancar", - "Initialisation Nextcloud" : "Inicialización de Nextcloud", - "Initialisation Circles App" : "Inicialización de la App Circles", "Fresh installation status" : "Estado de la nueva instalación", "Building Local Database" : "Creando la Base de Datos Local", "Testing Basic Circle Creation" : "Prueba básica de creación de círculos", @@ -179,6 +177,8 @@ "Size" : "Tamaño", "Modified" : "Modificado", "Nextcloud User" : "Usuario de Nextcloud", + "Initialisation Nextcloud" : "Inicialización de Nextcloud", + "Initialisation Circles App" : "Inicialización de la App Circles", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "No puedes usar la app Círculos hasta que el administrador haya permitido al menos un tipo de círculos", "This user is already a member of the circle" : "Este usuario ya es miembro de este círculo", "The user is already a member of this circle" : "El usuario ya es miembro de este círculo", diff --git a/l10n/eu.js b/l10n/eu.js index 52110f5ed..beb355483 100644 --- a/l10n/eu.js +++ b/l10n/eu.js @@ -120,8 +120,6 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s(e)k fitxategi batzuk partekatu ditu \"%s\"-(r)ekin.", "%s shared multiple files with you." : "%s(e)k fitxategi batzuk partekatu ditu zurekin.", "Boot up" : "Abiarazi", - "Initialisation Nextcloud" : "Hasieratze Nextcloud", - "Initialisation Circles App" : "Hasieratze zirkulu aplikazioa", "Fresh installation status" : "Instalazio berriaren egoera", "Building Local Database" : "Datu-base lokala eraikitzen", "Testing Basic Circle Creation" : "Oinarrizko zirkulu sorrera probatzen", @@ -181,6 +179,8 @@ OC.L10N.register( "Size" : "Tamaina", "Modified" : "Aldatua", "Nextcloud User" : "Nextcloud erabiltzailea", + "Initialisation Nextcloud" : "Hasieratze Nextcloud", + "Initialisation Circles App" : "Hasieratze zirkulu aplikazioa", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Ezin duzu Zirkuluak aplikazioa erabili administratzaileak gutxienez zirkulu mota bat baimendu arte", "This user is already a member of the circle" : "Erabiltzaile hau zirkuluko kidea da dagoeneko", "The user is already a member of this circle" : "Erabiltzailea zirkulu honetako kide da dagoeneko", diff --git a/l10n/eu.json b/l10n/eu.json index c85cfcca1..d5c072b10 100644 --- a/l10n/eu.json +++ b/l10n/eu.json @@ -118,8 +118,6 @@ "%s shared multiple files with \"%s\"." : "%s(e)k fitxategi batzuk partekatu ditu \"%s\"-(r)ekin.", "%s shared multiple files with you." : "%s(e)k fitxategi batzuk partekatu ditu zurekin.", "Boot up" : "Abiarazi", - "Initialisation Nextcloud" : "Hasieratze Nextcloud", - "Initialisation Circles App" : "Hasieratze zirkulu aplikazioa", "Fresh installation status" : "Instalazio berriaren egoera", "Building Local Database" : "Datu-base lokala eraikitzen", "Testing Basic Circle Creation" : "Oinarrizko zirkulu sorrera probatzen", @@ -179,6 +177,8 @@ "Size" : "Tamaina", "Modified" : "Aldatua", "Nextcloud User" : "Nextcloud erabiltzailea", + "Initialisation Nextcloud" : "Hasieratze Nextcloud", + "Initialisation Circles App" : "Hasieratze zirkulu aplikazioa", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Ezin duzu Zirkuluak aplikazioa erabili administratzaileak gutxienez zirkulu mota bat baimendu arte", "This user is already a member of the circle" : "Erabiltzaile hau zirkuluko kidea da dagoeneko", "The user is already a member of this circle" : "Erabiltzailea zirkulu honetako kide da dagoeneko", diff --git a/l10n/fr.js b/l10n/fr.js index 86f291b47..c69a415d4 100644 --- a/l10n/fr.js +++ b/l10n/fr.js @@ -120,8 +120,6 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s a partagé plusieurs fichiers avec \"%s\".", "%s shared multiple files with you." : "%s a partagé plusieurs fichiers avec vous.", "Boot up" : "Démarrage", - "Initialisation Nextcloud" : "Initialisation de Nextcloud", - "Initialisation Circles App" : "Initialisation de l'application Cercles", "Fresh installation status" : "Statut de l'installation", "Building Local Database" : "Construction de la base de données locale", "Testing Basic Circle Creation" : "Test de création d'un cercle basique", @@ -181,6 +179,8 @@ OC.L10N.register( "Size" : "Taille", "Modified" : "Modifié", "Nextcloud User" : "Utilisateur Nextcloud", + "Initialisation Nextcloud" : "Initialisation de Nextcloud", + "Initialisation Circles App" : "Initialisation de l'application Cercles", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Vous ne pouvez pas utiliser l'application Cercles à moins que votre administrateur ait autorisé au moins un type de cercles", "This user is already a member of the circle" : "Cet utilisateur est déjà membre du cercle", "The user is already a member of this circle" : "L'utilisateur est déjà membre de ce cercle", diff --git a/l10n/fr.json b/l10n/fr.json index 5facdb95d..3970566af 100644 --- a/l10n/fr.json +++ b/l10n/fr.json @@ -118,8 +118,6 @@ "%s shared multiple files with \"%s\"." : "%s a partagé plusieurs fichiers avec \"%s\".", "%s shared multiple files with you." : "%s a partagé plusieurs fichiers avec vous.", "Boot up" : "Démarrage", - "Initialisation Nextcloud" : "Initialisation de Nextcloud", - "Initialisation Circles App" : "Initialisation de l'application Cercles", "Fresh installation status" : "Statut de l'installation", "Building Local Database" : "Construction de la base de données locale", "Testing Basic Circle Creation" : "Test de création d'un cercle basique", @@ -179,6 +177,8 @@ "Size" : "Taille", "Modified" : "Modifié", "Nextcloud User" : "Utilisateur Nextcloud", + "Initialisation Nextcloud" : "Initialisation de Nextcloud", + "Initialisation Circles App" : "Initialisation de l'application Cercles", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Vous ne pouvez pas utiliser l'application Cercles à moins que votre administrateur ait autorisé au moins un type de cercles", "This user is already a member of the circle" : "Cet utilisateur est déjà membre du cercle", "The user is already a member of this circle" : "L'utilisateur est déjà membre de ce cercle", diff --git a/l10n/gl.js b/l10n/gl.js index d33601a1a..69746cf76 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -120,8 +120,6 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s compartiu varios ficheiros con \"%s\".", "%s shared multiple files with you." : "%s compartiu varios ficheiros con vostede.", "Boot up" : "Arrancar", - "Initialisation Nextcloud" : "Inicialización de Nextcloud", - "Initialisation Circles App" : "Inicialización da Aplicación Círculos", "Fresh installation status" : "Estado da nova instalación", "Building Local Database" : "Creando Base de Datos Local", "Testing Basic Circle Creation" : "Proba de Creación de Círculos Básica", @@ -181,6 +179,8 @@ OC.L10N.register( "Size" : "Tamaño", "Modified" : "Modificado", "Nextcloud User" : "Usuario de Nextcloud", + "Initialisation Nextcloud" : "Inicialización de Nextcloud", + "Initialisation Circles App" : "Inicialización da Aplicación Círculos", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Vostede non pode usar a aplicación Circulos ata que o administrador teña permitido polo menos un tipo de círculo", "This user is already a member of the circle" : "Este usuario xa é participante no círculo", "The user is already a member of this circle" : "Este usuario xa é participante neste círculo", diff --git a/l10n/gl.json b/l10n/gl.json index 265cb16a1..89e7a6045 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -118,8 +118,6 @@ "%s shared multiple files with \"%s\"." : "%s compartiu varios ficheiros con \"%s\".", "%s shared multiple files with you." : "%s compartiu varios ficheiros con vostede.", "Boot up" : "Arrancar", - "Initialisation Nextcloud" : "Inicialización de Nextcloud", - "Initialisation Circles App" : "Inicialización da Aplicación Círculos", "Fresh installation status" : "Estado da nova instalación", "Building Local Database" : "Creando Base de Datos Local", "Testing Basic Circle Creation" : "Proba de Creación de Círculos Básica", @@ -179,6 +177,8 @@ "Size" : "Tamaño", "Modified" : "Modificado", "Nextcloud User" : "Usuario de Nextcloud", + "Initialisation Nextcloud" : "Inicialización de Nextcloud", + "Initialisation Circles App" : "Inicialización da Aplicación Círculos", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Vostede non pode usar a aplicación Circulos ata que o administrador teña permitido polo menos un tipo de círculo", "This user is already a member of the circle" : "Este usuario xa é participante no círculo", "The user is already a member of this circle" : "Este usuario xa é participante neste círculo", diff --git a/l10n/he.js b/l10n/he.js index ea11f2189..89f20bb23 100644 --- a/l10n/he.js +++ b/l10n/he.js @@ -83,7 +83,6 @@ OC.L10N.register( "Click the button below to open it." : "יש ללחוץ על הכפתור להלן כדי לפתוח אותו.", "Open »%s«" : "פתיחת „%s”", "Password to access files" : "ססמה לגשת לקבצים", - "Initialisation Circles App" : "יישומון המעגלים נטען", "Fresh installation status" : "מצב ההתקנה החדשה", "Building Local Database" : "מסד הנתונים המקומי נבנה", "Testing Basic Circle Creation" : "נבדקת יצירת מעגל בסיסי", @@ -121,6 +120,7 @@ OC.L10N.register( "Size" : "גודל", "Modified" : "מועד שינוי", "Nextcloud User" : "משתמש Nextcloud", + "Initialisation Circles App" : "יישומון המעגלים נטען", "This user is already a member of the circle" : "משתמש זה כבר חבר במעגל", "The user is already a member of this circle" : "המשתמש הוא כבר חבר במעגל הזה", "The user has already been invited into this circle" : "המשתמש הזה כבר הוזמן למעגל הזה", diff --git a/l10n/he.json b/l10n/he.json index b37939b62..456ba9092 100644 --- a/l10n/he.json +++ b/l10n/he.json @@ -81,7 +81,6 @@ "Click the button below to open it." : "יש ללחוץ על הכפתור להלן כדי לפתוח אותו.", "Open »%s«" : "פתיחת „%s”", "Password to access files" : "ססמה לגשת לקבצים", - "Initialisation Circles App" : "יישומון המעגלים נטען", "Fresh installation status" : "מצב ההתקנה החדשה", "Building Local Database" : "מסד הנתונים המקומי נבנה", "Testing Basic Circle Creation" : "נבדקת יצירת מעגל בסיסי", @@ -119,6 +118,7 @@ "Size" : "גודל", "Modified" : "מועד שינוי", "Nextcloud User" : "משתמש Nextcloud", + "Initialisation Circles App" : "יישומון המעגלים נטען", "This user is already a member of the circle" : "משתמש זה כבר חבר במעגל", "The user is already a member of this circle" : "המשתמש הוא כבר חבר במעגל הזה", "The user has already been invited into this circle" : "המשתמש הזה כבר הוזמן למעגל הזה", diff --git a/l10n/hr.js b/l10n/hr.js index f21d2b8d9..4d63321c9 100644 --- a/l10n/hr.js +++ b/l10n/hr.js @@ -119,8 +119,6 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s dijeli više datoteka s „%s“.", "%s shared multiple files with you." : "%s dijeli više datoteka s vama.", "Boot up" : "Pokreni", - "Initialisation Nextcloud" : "Inicijalizacija Nextclouda", - "Initialisation Circles App" : "Inicijalizacija aplikacije Circles", "Fresh installation status" : "Status svježe instalacije", "Building Local Database" : "Izgradnja lokalne baze podataka", "Testing Basic Circle Creation" : "Ispitivanje stvaranja osnovnog kruga", @@ -168,6 +166,8 @@ OC.L10N.register( "Size" : "Veličina", "Modified" : "Promijenjeno", "Nextcloud User" : "Nextcloud korisnik", + "Initialisation Nextcloud" : "Inicijalizacija Nextclouda", + "Initialisation Circles App" : "Inicijalizacija aplikacije Circles", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Aplikaciju Krugovi ne možete upotrebljavati dok administrator ne dopusti barem jednu vrstu krugova", "This user is already a member of the circle" : "Ovaj korisnik već je član kruga", "The user is already a member of this circle" : "Korisnik je već član ovog kruga", diff --git a/l10n/hr.json b/l10n/hr.json index ab5a0c707..7efcbaf87 100644 --- a/l10n/hr.json +++ b/l10n/hr.json @@ -117,8 +117,6 @@ "%s shared multiple files with \"%s\"." : "%s dijeli više datoteka s „%s“.", "%s shared multiple files with you." : "%s dijeli više datoteka s vama.", "Boot up" : "Pokreni", - "Initialisation Nextcloud" : "Inicijalizacija Nextclouda", - "Initialisation Circles App" : "Inicijalizacija aplikacije Circles", "Fresh installation status" : "Status svježe instalacije", "Building Local Database" : "Izgradnja lokalne baze podataka", "Testing Basic Circle Creation" : "Ispitivanje stvaranja osnovnog kruga", @@ -166,6 +164,8 @@ "Size" : "Veličina", "Modified" : "Promijenjeno", "Nextcloud User" : "Nextcloud korisnik", + "Initialisation Nextcloud" : "Inicijalizacija Nextclouda", + "Initialisation Circles App" : "Inicijalizacija aplikacije Circles", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Aplikaciju Krugovi ne možete upotrebljavati dok administrator ne dopusti barem jednu vrstu krugova", "This user is already a member of the circle" : "Ovaj korisnik već je član kruga", "The user is already a member of this circle" : "Korisnik je već član ovog kruga", diff --git a/l10n/hu.js b/l10n/hu.js index 17a10c8de..76215edca 100644 --- a/l10n/hu.js +++ b/l10n/hu.js @@ -120,8 +120,6 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s több fájlt osztott a következővel: „%s”.", "%s shared multiple files with you." : "%s több fájlt osztott meg Önnel.", "Boot up" : "Rendszerindítás", - "Initialisation Nextcloud" : "A Nextcloud előkészítése", - "Initialisation Circles App" : "A Körök alkalmazás előkészítése", "Fresh installation status" : "Friss előkészítési állapot", "Building Local Database" : "Helyi adatbázis építése", "Testing Basic Circle Creation" : "Alapvető körlétrehozás tesztelése", @@ -181,6 +179,8 @@ OC.L10N.register( "Size" : "Méret", "Modified" : "Módosítva", "Nextcloud User" : "Nextcloud felhasználó", + "Initialisation Nextcloud" : "A Nextcloud előkészítése", + "Initialisation Circles App" : "A Körök alkalmazás előkészítése", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "A Körök alkalmazás nem használható, amíg a rendszergazda legalább egy körtípust nem engedélyez.", "This user is already a member of the circle" : "Ez a felhasználó már tagja a körnek", "The user is already a member of this circle" : "A felhasználó már tagja a körnek", diff --git a/l10n/hu.json b/l10n/hu.json index e7962576c..afec876ab 100644 --- a/l10n/hu.json +++ b/l10n/hu.json @@ -118,8 +118,6 @@ "%s shared multiple files with \"%s\"." : "%s több fájlt osztott a következővel: „%s”.", "%s shared multiple files with you." : "%s több fájlt osztott meg Önnel.", "Boot up" : "Rendszerindítás", - "Initialisation Nextcloud" : "A Nextcloud előkészítése", - "Initialisation Circles App" : "A Körök alkalmazás előkészítése", "Fresh installation status" : "Friss előkészítési állapot", "Building Local Database" : "Helyi adatbázis építése", "Testing Basic Circle Creation" : "Alapvető körlétrehozás tesztelése", @@ -179,6 +177,8 @@ "Size" : "Méret", "Modified" : "Módosítva", "Nextcloud User" : "Nextcloud felhasználó", + "Initialisation Nextcloud" : "A Nextcloud előkészítése", + "Initialisation Circles App" : "A Körök alkalmazás előkészítése", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "A Körök alkalmazás nem használható, amíg a rendszergazda legalább egy körtípust nem engedélyez.", "This user is already a member of the circle" : "Ez a felhasználó már tagja a körnek", "The user is already a member of this circle" : "A felhasználó már tagja a körnek", diff --git a/l10n/it.js b/l10n/it.js index 30e0d792e..3dfd31e28 100644 --- a/l10n/it.js +++ b/l10n/it.js @@ -120,8 +120,6 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s ha condiviso più file con \"%s\".", "%s shared multiple files with you." : "%s ha condiviso più file con te.", "Boot up" : "Avvia", - "Initialisation Nextcloud" : "Inizializzazione di Nextcloud", - "Initialisation Circles App" : "Inizializzazione applicazione Cerchie", "Fresh installation status" : "Stato nuova installazione", "Building Local Database" : "Costruzione database locale", "Testing Basic Circle Creation" : "Test creazione cerchia di base", @@ -181,6 +179,8 @@ OC.L10N.register( "Size" : "Dimensione", "Modified" : "Modificato", "Nextcloud User" : "Utente Nextcloud", + "Initialisation Nextcloud" : "Inizializzazione di Nextcloud", + "Initialisation Circles App" : "Inizializzazione applicazione Cerchie", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Non puoi utilizzare l'applicazione Cerchie fino a quando il tuo amministratore avrà consentito almeno un tipo di cerchia", "This user is already a member of the circle" : "L'utente è già membro di una cerchia", "The user is already a member of this circle" : "L'utente è già membro di questa cerchia", diff --git a/l10n/it.json b/l10n/it.json index 708382867..dd9bff2be 100644 --- a/l10n/it.json +++ b/l10n/it.json @@ -118,8 +118,6 @@ "%s shared multiple files with \"%s\"." : "%s ha condiviso più file con \"%s\".", "%s shared multiple files with you." : "%s ha condiviso più file con te.", "Boot up" : "Avvia", - "Initialisation Nextcloud" : "Inizializzazione di Nextcloud", - "Initialisation Circles App" : "Inizializzazione applicazione Cerchie", "Fresh installation status" : "Stato nuova installazione", "Building Local Database" : "Costruzione database locale", "Testing Basic Circle Creation" : "Test creazione cerchia di base", @@ -179,6 +177,8 @@ "Size" : "Dimensione", "Modified" : "Modificato", "Nextcloud User" : "Utente Nextcloud", + "Initialisation Nextcloud" : "Inizializzazione di Nextcloud", + "Initialisation Circles App" : "Inizializzazione applicazione Cerchie", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Non puoi utilizzare l'applicazione Cerchie fino a quando il tuo amministratore avrà consentito almeno un tipo di cerchia", "This user is already a member of the circle" : "L'utente è già membro di una cerchia", "The user is already a member of this circle" : "L'utente è già membro di questa cerchia", diff --git a/l10n/ja.js b/l10n/ja.js index 0ba51287f..f53a3bf2a 100644 --- a/l10n/ja.js +++ b/l10n/ja.js @@ -119,8 +119,6 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%sが\"%s\"と複数のファイルを共有しました。", "%s shared multiple files with you." : "%sがあなたと複数のファイルを共有しました。", "Boot up" : "起動時", - "Initialisation Nextcloud" : "初期設定 Nextcloud", - "Initialisation Circles App" : "初期化サークルアプリ", "Fresh installation status" : "フレッシュインストールの状況", "Building Local Database" : "ローカルデータベースの構築", "Testing Basic Circle Creation" : "基本的なサークル作成のテスト", @@ -175,6 +173,8 @@ OC.L10N.register( "Size" : "サイズ", "Modified" : "更新日時", "Nextcloud User" : "Nextcloudユーザー", + "Initialisation Nextcloud" : "初期設定 Nextcloud", + "Initialisation Circles App" : "初期化サークルアプリ", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "管理者が少なくとも1種類のサークルを許可するまで、サークルアプリケーションを使用することはできません", "This user is already a member of the circle" : "このユーザーはすでにサークルのメンバーです", "The user is already a member of this circle" : "ユーザーはすでにこのサークルのメンバーです", diff --git a/l10n/ja.json b/l10n/ja.json index 53e4348a5..9c17d6042 100644 --- a/l10n/ja.json +++ b/l10n/ja.json @@ -117,8 +117,6 @@ "%s shared multiple files with \"%s\"." : "%sが\"%s\"と複数のファイルを共有しました。", "%s shared multiple files with you." : "%sがあなたと複数のファイルを共有しました。", "Boot up" : "起動時", - "Initialisation Nextcloud" : "初期設定 Nextcloud", - "Initialisation Circles App" : "初期化サークルアプリ", "Fresh installation status" : "フレッシュインストールの状況", "Building Local Database" : "ローカルデータベースの構築", "Testing Basic Circle Creation" : "基本的なサークル作成のテスト", @@ -173,6 +171,8 @@ "Size" : "サイズ", "Modified" : "更新日時", "Nextcloud User" : "Nextcloudユーザー", + "Initialisation Nextcloud" : "初期設定 Nextcloud", + "Initialisation Circles App" : "初期化サークルアプリ", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "管理者が少なくとも1種類のサークルを許可するまで、サークルアプリケーションを使用することはできません", "This user is already a member of the circle" : "このユーザーはすでにサークルのメンバーです", "The user is already a member of this circle" : "ユーザーはすでにこのサークルのメンバーです", diff --git a/l10n/nb.js b/l10n/nb.js index 08402de5e..fc572e9ef 100644 --- a/l10n/nb.js +++ b/l10n/nb.js @@ -119,8 +119,6 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s delte flere filer med \"%s\".", "%s shared multiple files with you." : "%s delte flere filer med deg.", "Boot up" : "Start opp", - "Initialisation Nextcloud" : "Forbereder Nextcloud", - "Initialisation Circles App" : "Forbereder Sirkel-app", "Fresh installation status" : "Status på fersk installasjon", "Building Local Database" : "Bygger lokal database", "Testing Basic Circle Creation" : "Tester opprettelse av grunnleggende sirkel", @@ -175,6 +173,8 @@ OC.L10N.register( "Name" : "Navn", "Size" : "Størrelse", "Modified" : "Endret", + "Initialisation Nextcloud" : "Forbereder Nextcloud", + "Initialisation Circles App" : "Forbereder Sirkel-app", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Du kan ikke bruke sirkel-appen før administratoren din har tillat minst én type sirkler", "This user is already a member of the circle" : "Denne brukeren er allerede medlem av sirkelen", "The user is already a member of this circle" : "Brukeren er allerede medlem av denne sirkelen", diff --git a/l10n/nb.json b/l10n/nb.json index a71e5290c..b98c7ab98 100644 --- a/l10n/nb.json +++ b/l10n/nb.json @@ -117,8 +117,6 @@ "%s shared multiple files with \"%s\"." : "%s delte flere filer med \"%s\".", "%s shared multiple files with you." : "%s delte flere filer med deg.", "Boot up" : "Start opp", - "Initialisation Nextcloud" : "Forbereder Nextcloud", - "Initialisation Circles App" : "Forbereder Sirkel-app", "Fresh installation status" : "Status på fersk installasjon", "Building Local Database" : "Bygger lokal database", "Testing Basic Circle Creation" : "Tester opprettelse av grunnleggende sirkel", @@ -173,6 +171,8 @@ "Name" : "Navn", "Size" : "Størrelse", "Modified" : "Endret", + "Initialisation Nextcloud" : "Forbereder Nextcloud", + "Initialisation Circles App" : "Forbereder Sirkel-app", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Du kan ikke bruke sirkel-appen før administratoren din har tillat minst én type sirkler", "This user is already a member of the circle" : "Denne brukeren er allerede medlem av sirkelen", "The user is already a member of this circle" : "Brukeren er allerede medlem av denne sirkelen", diff --git a/l10n/nl.js b/l10n/nl.js index c409c2d2b..3a6cf3f95 100644 --- a/l10n/nl.js +++ b/l10n/nl.js @@ -119,8 +119,6 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s deelde meerdere bestanden met \"%s\".", "%s shared multiple files with you." : "%s deelde meerdere bestanden met jou.", "Boot up" : "Opstarten", - "Initialisation Nextcloud" : "Initialisatie Nextcloud", - "Initialisation Circles App" : "Initialisatie Circles App", "Fresh installation status" : "Nieuwe installatiestatus", "Building Local Database" : "Aanmaken lokale database", "Testing Basic Circle Creation" : "Testen basis kringcreatie", @@ -180,6 +178,8 @@ OC.L10N.register( "Size" : "Omvang", "Modified" : "Gewijzigd", "Nextcloud User" : "Nextcloud gebruiker", + "Initialisation Nextcloud" : "Initialisatie Nextcloud", + "Initialisation Circles App" : "Initialisatie Circles App", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "De beheerder dient minimaal een kring te maken voordat je de kring-app kan gebruiken.", "This user is already a member of the circle" : "Deze gebruiker is al lid van de kring", "The user is already a member of this circle" : "De gebruiker is al lid van deze kring", diff --git a/l10n/nl.json b/l10n/nl.json index 821e00a50..a6592b375 100644 --- a/l10n/nl.json +++ b/l10n/nl.json @@ -117,8 +117,6 @@ "%s shared multiple files with \"%s\"." : "%s deelde meerdere bestanden met \"%s\".", "%s shared multiple files with you." : "%s deelde meerdere bestanden met jou.", "Boot up" : "Opstarten", - "Initialisation Nextcloud" : "Initialisatie Nextcloud", - "Initialisation Circles App" : "Initialisatie Circles App", "Fresh installation status" : "Nieuwe installatiestatus", "Building Local Database" : "Aanmaken lokale database", "Testing Basic Circle Creation" : "Testen basis kringcreatie", @@ -178,6 +176,8 @@ "Size" : "Omvang", "Modified" : "Gewijzigd", "Nextcloud User" : "Nextcloud gebruiker", + "Initialisation Nextcloud" : "Initialisatie Nextcloud", + "Initialisation Circles App" : "Initialisatie Circles App", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "De beheerder dient minimaal een kring te maken voordat je de kring-app kan gebruiken.", "This user is already a member of the circle" : "Deze gebruiker is al lid van de kring", "The user is already a member of this circle" : "De gebruiker is al lid van deze kring", diff --git a/l10n/pl.js b/l10n/pl.js index f884525e3..aa6da8350 100644 --- a/l10n/pl.js +++ b/l10n/pl.js @@ -120,8 +120,6 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s udostępnił wiele plików z \"%s\".", "%s shared multiple files with you." : "%s udostępnił Tobie wiele plików.", "Boot up" : "Uruchom", - "Initialisation Nextcloud" : "Inicjalizacja Nextcloud", - "Initialisation Circles App" : "Inicjalizacja aplikacji Kręgi", "Fresh installation status" : "Stan nowej instalacji", "Building Local Database" : "Tworzenie lokalnej bazy danych", "Testing Basic Circle Creation" : "Testowanie tworzenia podstawowego kręgu", @@ -181,6 +179,8 @@ OC.L10N.register( "Size" : "Rozmiar", "Modified" : "Zmodyfikowano", "Nextcloud User" : "Użytkownik Nextcloud", + "Initialisation Nextcloud" : "Inicjalizacja Nextcloud", + "Initialisation Circles App" : "Inicjalizacja aplikacji Kręgi", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Nie możesz używać aplikacji Kręgi, dopóki administrator nie zaakceptuje co najmniej jednego typu kręgów", "This user is already a member of the circle" : "Użytkownik jest już członkiem tego kręgu", "The user is already a member of this circle" : "Użytkownik jest już członkiem tego kręgu", diff --git a/l10n/pl.json b/l10n/pl.json index ea3bd556d..c6ef9e22b 100644 --- a/l10n/pl.json +++ b/l10n/pl.json @@ -118,8 +118,6 @@ "%s shared multiple files with \"%s\"." : "%s udostępnił wiele plików z \"%s\".", "%s shared multiple files with you." : "%s udostępnił Tobie wiele plików.", "Boot up" : "Uruchom", - "Initialisation Nextcloud" : "Inicjalizacja Nextcloud", - "Initialisation Circles App" : "Inicjalizacja aplikacji Kręgi", "Fresh installation status" : "Stan nowej instalacji", "Building Local Database" : "Tworzenie lokalnej bazy danych", "Testing Basic Circle Creation" : "Testowanie tworzenia podstawowego kręgu", @@ -179,6 +177,8 @@ "Size" : "Rozmiar", "Modified" : "Zmodyfikowano", "Nextcloud User" : "Użytkownik Nextcloud", + "Initialisation Nextcloud" : "Inicjalizacja Nextcloud", + "Initialisation Circles App" : "Inicjalizacja aplikacji Kręgi", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Nie możesz używać aplikacji Kręgi, dopóki administrator nie zaakceptuje co najmniej jednego typu kręgów", "This user is already a member of the circle" : "Użytkownik jest już członkiem tego kręgu", "The user is already a member of this circle" : "Użytkownik jest już członkiem tego kręgu", diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index d1103c958..35aa6d0c4 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -120,8 +120,6 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s compartilhou vários arquivos com \"%s\".", "%s shared multiple files with you." : "%s compartilhou vários arquivos com você. ", "Boot up" : "Inicializar", - "Initialisation Nextcloud" : "Inicialização do Nextcloud", - "Initialisation Circles App" : "Inicialização do aplicativo Círculos", "Fresh installation status" : "Novo status de instalação", "Building Local Database" : "Construindo banco de dados local", "Testing Basic Circle Creation" : "Teste básico de criação de círculo", @@ -181,6 +179,8 @@ OC.L10N.register( "Size" : "Tamanho", "Modified" : "Modificado", "Nextcloud User" : "Usuário Nextcloud", + "Initialisation Nextcloud" : "Inicialização do Nextcloud", + "Initialisation Circles App" : "Inicialização do aplicativo Círculos", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Você não pode usar a aplicação Círculos até que o administrador tenha permitido ao menos um tipo de círculo", "This user is already a member of the circle" : "Este usuário já é membro do círculo", "The user is already a member of this circle" : "O usuário já é membro deste círculo", diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index 7f066fb54..daa5d3648 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -118,8 +118,6 @@ "%s shared multiple files with \"%s\"." : "%s compartilhou vários arquivos com \"%s\".", "%s shared multiple files with you." : "%s compartilhou vários arquivos com você. ", "Boot up" : "Inicializar", - "Initialisation Nextcloud" : "Inicialização do Nextcloud", - "Initialisation Circles App" : "Inicialização do aplicativo Círculos", "Fresh installation status" : "Novo status de instalação", "Building Local Database" : "Construindo banco de dados local", "Testing Basic Circle Creation" : "Teste básico de criação de círculo", @@ -179,6 +177,8 @@ "Size" : "Tamanho", "Modified" : "Modificado", "Nextcloud User" : "Usuário Nextcloud", + "Initialisation Nextcloud" : "Inicialização do Nextcloud", + "Initialisation Circles App" : "Inicialização do aplicativo Círculos", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Você não pode usar a aplicação Círculos até que o administrador tenha permitido ao menos um tipo de círculo", "This user is already a member of the circle" : "Este usuário já é membro do círculo", "The user is already a member of this circle" : "O usuário já é membro deste círculo", diff --git a/l10n/ru.js b/l10n/ru.js index 42867a629..bfa447140 100644 --- a/l10n/ru.js +++ b/l10n/ru.js @@ -119,8 +119,6 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s поделился несколькими файлами с \"%s\".", "%s shared multiple files with you." : "%s предоставил(а) вам доступ к нескольким файлам.", "Boot up" : "Загрузка", - "Initialisation Nextcloud" : "Инициализация Nextcloud", - "Initialisation Circles App" : "Инициализация приложения Круги", "Fresh installation status" : "Статус новой установки", "Building Local Database" : "Создание локальной базы данных", "Testing Basic Circle Creation" : "Тестирование базового созданного Круга", @@ -175,6 +173,8 @@ OC.L10N.register( "Size" : "Размер", "Modified" : "Изменён", "Nextcloud User" : "Пользователь Nextcloud", + "Initialisation Nextcloud" : "Инициализация Nextcloud", + "Initialisation Circles App" : "Инициализация приложения Круги", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "В не можете использовать это приложение до тех пор, пока администратор не разрешит использовать как минимум один тип кругов.", "This user is already a member of the circle" : "Этот пользователь уже участник круга", "The user is already a member of this circle" : "Этот пользователь — уже участник круга", diff --git a/l10n/ru.json b/l10n/ru.json index ae553fffe..3171bdbc8 100644 --- a/l10n/ru.json +++ b/l10n/ru.json @@ -117,8 +117,6 @@ "%s shared multiple files with \"%s\"." : "%s поделился несколькими файлами с \"%s\".", "%s shared multiple files with you." : "%s предоставил(а) вам доступ к нескольким файлам.", "Boot up" : "Загрузка", - "Initialisation Nextcloud" : "Инициализация Nextcloud", - "Initialisation Circles App" : "Инициализация приложения Круги", "Fresh installation status" : "Статус новой установки", "Building Local Database" : "Создание локальной базы данных", "Testing Basic Circle Creation" : "Тестирование базового созданного Круга", @@ -173,6 +171,8 @@ "Size" : "Размер", "Modified" : "Изменён", "Nextcloud User" : "Пользователь Nextcloud", + "Initialisation Nextcloud" : "Инициализация Nextcloud", + "Initialisation Circles App" : "Инициализация приложения Круги", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "В не можете использовать это приложение до тех пор, пока администратор не разрешит использовать как минимум один тип кругов.", "This user is already a member of the circle" : "Этот пользователь уже участник круга", "The user is already a member of this circle" : "Этот пользователь — уже участник круга", diff --git a/l10n/sc.js b/l10n/sc.js index 8eee8e4f7..00075f242 100644 --- a/l10n/sc.js +++ b/l10n/sc.js @@ -119,8 +119,6 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s at cumpartzidu archìvios mùltiplos cun \"%s\".", "%s shared multiple files with you." : "%s at cumpartzidu prus archìvios cun te.", "Boot up" : "Avia", - "Initialisation Nextcloud" : "Apariciamentu de Nextcloud", - "Initialisation Circles App" : "Apariciamentu de s'aplicatzione Giros", "Fresh installation status" : "Istadu de s'installatzione noa", "Building Local Database" : "Creschende sa base de datos locale", "Testing Basic Circle Creation" : " Proa de creatzione de giru de base", @@ -169,6 +167,8 @@ OC.L10N.register( "Size" : "Mannària", "Modified" : "Modificadu", "Nextcloud User" : "Utente de Nextcloud", + "Initialisation Nextcloud" : "Apariciamentu de Nextcloud", + "Initialisation Circles App" : "Apariciamentu de s'aplicatzione Giros", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Non podes impreare s'aplicatzione de is giros finas a cando s'amministratzione at a permìtere a su mancu una genia de giru", "This user is already a member of the circle" : "Custa utèntzia faghet giai parte de su giru", "The user is already a member of this circle" : "S'utente est giai cumponente de custu giru", diff --git a/l10n/sc.json b/l10n/sc.json index a0c78f72c..bbb62521c 100644 --- a/l10n/sc.json +++ b/l10n/sc.json @@ -117,8 +117,6 @@ "%s shared multiple files with \"%s\"." : "%s at cumpartzidu archìvios mùltiplos cun \"%s\".", "%s shared multiple files with you." : "%s at cumpartzidu prus archìvios cun te.", "Boot up" : "Avia", - "Initialisation Nextcloud" : "Apariciamentu de Nextcloud", - "Initialisation Circles App" : "Apariciamentu de s'aplicatzione Giros", "Fresh installation status" : "Istadu de s'installatzione noa", "Building Local Database" : "Creschende sa base de datos locale", "Testing Basic Circle Creation" : " Proa de creatzione de giru de base", @@ -167,6 +165,8 @@ "Size" : "Mannària", "Modified" : "Modificadu", "Nextcloud User" : "Utente de Nextcloud", + "Initialisation Nextcloud" : "Apariciamentu de Nextcloud", + "Initialisation Circles App" : "Apariciamentu de s'aplicatzione Giros", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Non podes impreare s'aplicatzione de is giros finas a cando s'amministratzione at a permìtere a su mancu una genia de giru", "This user is already a member of the circle" : "Custa utèntzia faghet giai parte de su giru", "The user is already a member of this circle" : "S'utente est giai cumponente de custu giru", diff --git a/l10n/sk.js b/l10n/sk.js index eca52dc7c..6b6946b9b 100644 --- a/l10n/sk.js +++ b/l10n/sk.js @@ -120,8 +120,6 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s zdieľa viacero súborov s \"%s\".", "%s shared multiple files with you." : "%s s vami zdieľa súbory.", "Boot up" : "Štart", - "Initialisation Nextcloud" : "Inicializácia Nextcloudu", - "Initialisation Circles App" : "Inicializácia Aplikácie Kruhy", "Fresh installation status" : "Stav čistej inštalácie", "Building Local Database" : "Vytváram Lokálnu Databázu", "Testing Basic Circle Creation" : "Testujem základné pridávanie Kruhov", @@ -181,6 +179,8 @@ OC.L10N.register( "Size" : "Veľkosť", "Modified" : "Upravené", "Nextcloud User" : "Užívateľ Nextcloud", + "Initialisation Nextcloud" : "Inicializácia Nextcloudu", + "Initialisation Circles App" : "Inicializácia Aplikácie Kruhy", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Nemôžete použiť aplikáciu Kruhy, pokiaľ administrátor nepovolí aspoň jeden typ kruhov", "This user is already a member of the circle" : "Tento používateľ už je členom kruhu", "The user is already a member of this circle" : "Používateľ už je členom tohto kruhu", diff --git a/l10n/sk.json b/l10n/sk.json index 15b02b3af..d9173b8ec 100644 --- a/l10n/sk.json +++ b/l10n/sk.json @@ -118,8 +118,6 @@ "%s shared multiple files with \"%s\"." : "%s zdieľa viacero súborov s \"%s\".", "%s shared multiple files with you." : "%s s vami zdieľa súbory.", "Boot up" : "Štart", - "Initialisation Nextcloud" : "Inicializácia Nextcloudu", - "Initialisation Circles App" : "Inicializácia Aplikácie Kruhy", "Fresh installation status" : "Stav čistej inštalácie", "Building Local Database" : "Vytváram Lokálnu Databázu", "Testing Basic Circle Creation" : "Testujem základné pridávanie Kruhov", @@ -179,6 +177,8 @@ "Size" : "Veľkosť", "Modified" : "Upravené", "Nextcloud User" : "Užívateľ Nextcloud", + "Initialisation Nextcloud" : "Inicializácia Nextcloudu", + "Initialisation Circles App" : "Inicializácia Aplikácie Kruhy", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Nemôžete použiť aplikáciu Kruhy, pokiaľ administrátor nepovolí aspoň jeden typ kruhov", "This user is already a member of the circle" : "Tento používateľ už je členom kruhu", "The user is already a member of this circle" : "Používateľ už je členom tohto kruhu", diff --git a/l10n/sl.js b/l10n/sl.js index 668f2dedd..3ed6dbd28 100644 --- a/l10n/sl.js +++ b/l10n/sl.js @@ -120,8 +120,6 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s omogoči souporabo več datotek z uporabnikom \"%s\".", "%s shared multiple files with you." : "%s vam omogoči souporabo več datotek.", "Boot up" : "Zaganjanje", - "Initialisation Nextcloud" : "Začenjanje okolja Nextcloud", - "Initialisation Circles App" : "Začenjanje programa Krogi", "Fresh installation status" : "Stanje sveže namestitve", "Building Local Database" : "Poteka izgradnja krajevne podatkovne zbirke", "Testing Basic Circle Creation" : "Preizkušanje ustvarjanja osnovnega kroga", @@ -181,6 +179,8 @@ OC.L10N.register( "Size" : "Velikost", "Modified" : "Spremenjeno", "Nextcloud User" : "Uporabnik Nextcloud", + "Initialisation Nextcloud" : "Začenjanje okolja Nextcloud", + "Initialisation Circles App" : "Začenjanje programa Krogi", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Programa Krogi ni mogoče uporabljati, dokler skrbnik ne omogoči vsaj ene vrste kroga.", "This user is already a member of the circle" : "Uporabnik je že član kroga.", "The user is already a member of this circle" : "Uporabnik je že član kroga.", diff --git a/l10n/sl.json b/l10n/sl.json index 988198e71..e8beb596a 100644 --- a/l10n/sl.json +++ b/l10n/sl.json @@ -118,8 +118,6 @@ "%s shared multiple files with \"%s\"." : "%s omogoči souporabo več datotek z uporabnikom \"%s\".", "%s shared multiple files with you." : "%s vam omogoči souporabo več datotek.", "Boot up" : "Zaganjanje", - "Initialisation Nextcloud" : "Začenjanje okolja Nextcloud", - "Initialisation Circles App" : "Začenjanje programa Krogi", "Fresh installation status" : "Stanje sveže namestitve", "Building Local Database" : "Poteka izgradnja krajevne podatkovne zbirke", "Testing Basic Circle Creation" : "Preizkušanje ustvarjanja osnovnega kroga", @@ -179,6 +177,8 @@ "Size" : "Velikost", "Modified" : "Spremenjeno", "Nextcloud User" : "Uporabnik Nextcloud", + "Initialisation Nextcloud" : "Začenjanje okolja Nextcloud", + "Initialisation Circles App" : "Začenjanje programa Krogi", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Programa Krogi ni mogoče uporabljati, dokler skrbnik ne omogoči vsaj ene vrste kroga.", "This user is already a member of the circle" : "Uporabnik je že član kroga.", "The user is already a member of this circle" : "Uporabnik je že član kroga.", diff --git a/l10n/sr.js b/l10n/sr.js index 6c6ab21c6..372d3a014 100644 --- a/l10n/sr.js +++ b/l10n/sr.js @@ -120,8 +120,6 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s је поделио више фајлова са „%s.", "%s shared multiple files with you." : "%s је поделио више фајлова са Вама.", "Boot up" : "Подизање система", - "Initialisation Nextcloud" : "Иницијализација програма Nextcloud", - "Initialisation Circles App" : "Иницијализација апликације Кругови", "Fresh installation status" : "Статус свеже инсталације", "Building Local Database" : "Изградња локалне базе података", "Testing Basic Circle Creation" : "Тестирање креирања основног круга", @@ -181,6 +179,8 @@ OC.L10N.register( "Size" : "Величина", "Modified" : "Измењен", "Nextcloud User" : "Nextcloud корисник", + "Initialisation Nextcloud" : "Иницијализација програма Nextcloud", + "Initialisation Circles App" : "Иницијализација апликације Кругови", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Не можете користити апликацију Кругови док администратор не дозволи бар један тип кругова", "This user is already a member of the circle" : "Корисник је већ члан круга", "The user is already a member of this circle" : "Корисник је већ члан круга", diff --git a/l10n/sr.json b/l10n/sr.json index 5324c833d..e591481d9 100644 --- a/l10n/sr.json +++ b/l10n/sr.json @@ -118,8 +118,6 @@ "%s shared multiple files with \"%s\"." : "%s је поделио више фајлова са „%s.", "%s shared multiple files with you." : "%s је поделио више фајлова са Вама.", "Boot up" : "Подизање система", - "Initialisation Nextcloud" : "Иницијализација програма Nextcloud", - "Initialisation Circles App" : "Иницијализација апликације Кругови", "Fresh installation status" : "Статус свеже инсталације", "Building Local Database" : "Изградња локалне базе података", "Testing Basic Circle Creation" : "Тестирање креирања основног круга", @@ -179,6 +177,8 @@ "Size" : "Величина", "Modified" : "Измењен", "Nextcloud User" : "Nextcloud корисник", + "Initialisation Nextcloud" : "Иницијализација програма Nextcloud", + "Initialisation Circles App" : "Иницијализација апликације Кругови", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Не можете користити апликацију Кругови док администратор не дозволи бар један тип кругова", "This user is already a member of the circle" : "Корисник је већ члан круга", "The user is already a member of this circle" : "Корисник је већ члан круга", diff --git a/l10n/sv.js b/l10n/sv.js index 2d2abf0d8..156647ec1 100644 --- a/l10n/sv.js +++ b/l10n/sv.js @@ -120,8 +120,6 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s delade flera filer med \"%s\".", "%s shared multiple files with you." : "%s delade flera filer med dig.", "Boot up" : "Uppstart", - "Initialisation Nextcloud" : "Initialisering Nextcloud", - "Initialisation Circles App" : "Initialisering Cirkel-appen", "Fresh installation status" : "Nyinstallationsstatus", "Building Local Database" : "Bygger lokal databas", "Testing Basic Circle Creation" : "Testar grundläggande Cirkel-skapande", @@ -181,6 +179,8 @@ OC.L10N.register( "Size" : "Storlek", "Modified" : "Ändrad", "Nextcloud User" : "Nextcloud-användare", + "Initialisation Nextcloud" : "Initialisering Nextcloud", + "Initialisation Circles App" : "Initialisering Cirkel-appen", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Du kan inte använda Cirkelappen förrän din administratör har tillåtit minst en typ av cirklar", "This user is already a member of the circle" : "Användaren är redan medlem i cirkeln", "The user is already a member of this circle" : "Användaren är redan medlem i cirkeln", diff --git a/l10n/sv.json b/l10n/sv.json index e01301268..95faa1f19 100644 --- a/l10n/sv.json +++ b/l10n/sv.json @@ -118,8 +118,6 @@ "%s shared multiple files with \"%s\"." : "%s delade flera filer med \"%s\".", "%s shared multiple files with you." : "%s delade flera filer med dig.", "Boot up" : "Uppstart", - "Initialisation Nextcloud" : "Initialisering Nextcloud", - "Initialisation Circles App" : "Initialisering Cirkel-appen", "Fresh installation status" : "Nyinstallationsstatus", "Building Local Database" : "Bygger lokal databas", "Testing Basic Circle Creation" : "Testar grundläggande Cirkel-skapande", @@ -179,6 +177,8 @@ "Size" : "Storlek", "Modified" : "Ändrad", "Nextcloud User" : "Nextcloud-användare", + "Initialisation Nextcloud" : "Initialisering Nextcloud", + "Initialisation Circles App" : "Initialisering Cirkel-appen", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Du kan inte använda Cirkelappen förrän din administratör har tillåtit minst en typ av cirklar", "This user is already a member of the circle" : "Användaren är redan medlem i cirkeln", "The user is already a member of this circle" : "Användaren är redan medlem i cirkeln", diff --git a/l10n/tr.js b/l10n/tr.js index f0487c20c..f9d0c14b9 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -120,8 +120,6 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s, \"%s\" ile birkaç dosya paylaştı.", "%s shared multiple files with you." : "%s sizinle birkaç dosya paylaştı.", "Boot up" : "Başlatma", - "Initialisation Nextcloud" : "Nextcloud hazırlanıyor", - "Initialisation Circles App" : "Nextcloud çevreler uygulaması hazırlanıyor", "Fresh installation status" : "Yeni kurulum durumu", "Building Local Database" : "Yerel veri tabanı oluşturuluyor", "Testing Basic Circle Creation" : "Temel çevre oluşturma sınanıyor", @@ -181,6 +179,8 @@ OC.L10N.register( "Size" : "Boyut", "Modified" : "Değiştirilme", "Nextcloud User" : "Nextcloud kullanıcısı", + "Initialisation Nextcloud" : "Nextcloud hazırlanıyor", + "Initialisation Circles App" : "Nextcloud çevreler uygulaması hazırlanıyor", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Yöneticiniz en az bir çevre türüne izin verene kadar Çevreler uygulamasını kullanamazsınız", "This user is already a member of the circle" : "Bu kullanıcı zaten bu çevrenin üyesi", "The user is already a member of this circle" : "Kullanıcı zaten bu çevrenin üyesi", diff --git a/l10n/tr.json b/l10n/tr.json index 898c12957..07113bacd 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -118,8 +118,6 @@ "%s shared multiple files with \"%s\"." : "%s, \"%s\" ile birkaç dosya paylaştı.", "%s shared multiple files with you." : "%s sizinle birkaç dosya paylaştı.", "Boot up" : "Başlatma", - "Initialisation Nextcloud" : "Nextcloud hazırlanıyor", - "Initialisation Circles App" : "Nextcloud çevreler uygulaması hazırlanıyor", "Fresh installation status" : "Yeni kurulum durumu", "Building Local Database" : "Yerel veri tabanı oluşturuluyor", "Testing Basic Circle Creation" : "Temel çevre oluşturma sınanıyor", @@ -179,6 +177,8 @@ "Size" : "Boyut", "Modified" : "Değiştirilme", "Nextcloud User" : "Nextcloud kullanıcısı", + "Initialisation Nextcloud" : "Nextcloud hazırlanıyor", + "Initialisation Circles App" : "Nextcloud çevreler uygulaması hazırlanıyor", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Yöneticiniz en az bir çevre türüne izin verene kadar Çevreler uygulamasını kullanamazsınız", "This user is already a member of the circle" : "Bu kullanıcı zaten bu çevrenin üyesi", "The user is already a member of this circle" : "Kullanıcı zaten bu çevrenin üyesi", diff --git a/l10n/uk.js b/l10n/uk.js index 0ddbc5857..487c2edc0 100644 --- a/l10n/uk.js +++ b/l10n/uk.js @@ -120,8 +120,6 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s поділився кількома файлами з \"%s\".", "%s shared multiple files with you." : "%s поділився з вами кількома файлами.", "Boot up" : "Завантаження", - "Initialisation Nextcloud" : "Ініціалізація Nextcloud", - "Initialisation Circles App" : "Ініціалізація застосунку Circle", "Fresh installation status" : "Статус свіжої інсталяції", "Building Local Database" : "Створення локальної бази даних", "Testing Basic Circle Creation" : "Тестування створення базового кола", @@ -181,6 +179,8 @@ OC.L10N.register( "Size" : "Розмір", "Modified" : "Змінено", "Nextcloud User" : "Користувач Nextcloud", + "Initialisation Nextcloud" : "Ініціалізація Nextcloud", + "Initialisation Circles App" : "Ініціалізація застосунку Circle", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Ви не можете використовувати програму Circles, доки ваш адміністратор не дозволить принаймні один тип кіл", "This user is already a member of the circle" : "Цей користувач уже є учасником кола", "The user is already a member of this circle" : "Користувач уже є учасником цього кола", diff --git a/l10n/uk.json b/l10n/uk.json index f85461071..1728091f3 100644 --- a/l10n/uk.json +++ b/l10n/uk.json @@ -118,8 +118,6 @@ "%s shared multiple files with \"%s\"." : "%s поділився кількома файлами з \"%s\".", "%s shared multiple files with you." : "%s поділився з вами кількома файлами.", "Boot up" : "Завантаження", - "Initialisation Nextcloud" : "Ініціалізація Nextcloud", - "Initialisation Circles App" : "Ініціалізація застосунку Circle", "Fresh installation status" : "Статус свіжої інсталяції", "Building Local Database" : "Створення локальної бази даних", "Testing Basic Circle Creation" : "Тестування створення базового кола", @@ -179,6 +177,8 @@ "Size" : "Розмір", "Modified" : "Змінено", "Nextcloud User" : "Користувач Nextcloud", + "Initialisation Nextcloud" : "Ініціалізація Nextcloud", + "Initialisation Circles App" : "Ініціалізація застосунку Circle", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Ви не можете використовувати програму Circles, доки ваш адміністратор не дозволить принаймні один тип кіл", "This user is already a member of the circle" : "Цей користувач уже є учасником кола", "The user is already a member of this circle" : "Користувач уже є учасником цього кола", diff --git a/l10n/zh_CN.js b/l10n/zh_CN.js index e5ecb000b..c834d0d25 100644 --- a/l10n/zh_CN.js +++ b/l10n/zh_CN.js @@ -120,8 +120,6 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s 将多个文件和 \"%s\" 进行了分享", "%s shared multiple files with you." : "%s 对您共享了多个文件。", "Boot up" : "启动", - "Initialisation Nextcloud" : "初始化 Nextcloud", - "Initialisation Circles App" : "初始化 Circles 应用", "Fresh installation status" : "全新安装状态", "Building Local Database" : "正在构建本地数据库", "Testing Basic Circle Creation" : "正在测试基础 Circle 创建", @@ -174,6 +172,8 @@ OC.L10N.register( "Size" : "大小", "Modified" : "修改日期", "Nextcloud User" : "NextCloud 用户", + "Initialisation Nextcloud" : "初始化 Nextcloud", + "Initialisation Circles App" : "初始化 Circles 应用", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "您的管理员至少允许一种类型的圈子,否则您不能使用“圈子”应用程序", "This user is already a member of the circle" : "此用户已经是圈子的成员", "The user is already a member of this circle" : "此用户已经是此圈子的成员", diff --git a/l10n/zh_CN.json b/l10n/zh_CN.json index bc513e723..45a7a9687 100644 --- a/l10n/zh_CN.json +++ b/l10n/zh_CN.json @@ -118,8 +118,6 @@ "%s shared multiple files with \"%s\"." : "%s 将多个文件和 \"%s\" 进行了分享", "%s shared multiple files with you." : "%s 对您共享了多个文件。", "Boot up" : "启动", - "Initialisation Nextcloud" : "初始化 Nextcloud", - "Initialisation Circles App" : "初始化 Circles 应用", "Fresh installation status" : "全新安装状态", "Building Local Database" : "正在构建本地数据库", "Testing Basic Circle Creation" : "正在测试基础 Circle 创建", @@ -172,6 +170,8 @@ "Size" : "大小", "Modified" : "修改日期", "Nextcloud User" : "NextCloud 用户", + "Initialisation Nextcloud" : "初始化 Nextcloud", + "Initialisation Circles App" : "初始化 Circles 应用", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "您的管理员至少允许一种类型的圈子,否则您不能使用“圈子”应用程序", "This user is already a member of the circle" : "此用户已经是圈子的成员", "The user is already a member of this circle" : "此用户已经是此圈子的成员", diff --git a/l10n/zh_HK.js b/l10n/zh_HK.js index 85bb8c690..77f863124 100644 --- a/l10n/zh_HK.js +++ b/l10n/zh_HK.js @@ -120,8 +120,6 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s 與 \"%s\" 共享了多個檔案。", "%s shared multiple files with you." : "%s 對您共享了多個文件。", "Boot up" : "啟動", - "Initialisation Nextcloud" : "初始化 Nextcloud", - "Initialisation Circles App" : "初始化圈子應用程式", "Fresh installation status" : "全新安裝狀態", "Building Local Database" : "建立近端數據庫", "Testing Basic Circle Creation" : "測試基本圈子創建", @@ -181,6 +179,8 @@ OC.L10N.register( "Size" : "大小", "Modified" : "修改日期", "Nextcloud User" : "Nextcloud 用戶", + "Initialisation Nextcloud" : "初始化 Nextcloud", + "Initialisation Circles App" : "初始化圈子應用程式", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "您的管理員至少允許一種類型的圈子,否則您不能使用“圈子”應用程序", "This user is already a member of the circle" : "此用戶已經是圈子的成員", "The user is already a member of this circle" : "此用戶已經是此圈子的成員", diff --git a/l10n/zh_HK.json b/l10n/zh_HK.json index b24d5fdea..c672b5e23 100644 --- a/l10n/zh_HK.json +++ b/l10n/zh_HK.json @@ -118,8 +118,6 @@ "%s shared multiple files with \"%s\"." : "%s 與 \"%s\" 共享了多個檔案。", "%s shared multiple files with you." : "%s 對您共享了多個文件。", "Boot up" : "啟動", - "Initialisation Nextcloud" : "初始化 Nextcloud", - "Initialisation Circles App" : "初始化圈子應用程式", "Fresh installation status" : "全新安裝狀態", "Building Local Database" : "建立近端數據庫", "Testing Basic Circle Creation" : "測試基本圈子創建", @@ -179,6 +177,8 @@ "Size" : "大小", "Modified" : "修改日期", "Nextcloud User" : "Nextcloud 用戶", + "Initialisation Nextcloud" : "初始化 Nextcloud", + "Initialisation Circles App" : "初始化圈子應用程式", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "您的管理員至少允許一種類型的圈子,否則您不能使用“圈子”應用程序", "This user is already a member of the circle" : "此用戶已經是圈子的成員", "The user is already a member of this circle" : "此用戶已經是此圈子的成員", diff --git a/l10n/zh_TW.js b/l10n/zh_TW.js index 91835a79f..42daaad36 100644 --- a/l10n/zh_TW.js +++ b/l10n/zh_TW.js @@ -120,8 +120,6 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s 與「%s」分享了多個檔案。", "%s shared multiple files with you." : "%s 與您分享了多個檔案。", "Boot up" : "啟動", - "Initialisation Nextcloud" : "初始化 Nextcloud", - "Initialisation Circles App" : "初始化小圈圈應用程式", "Fresh installation status" : "全新安裝狀態", "Building Local Database" : "正在建構本地資料庫", "Testing Basic Circle Creation" : "正在測試基本小圈圈建立", @@ -181,6 +179,8 @@ OC.L10N.register( "Size" : "大小", "Modified" : "已修改", "Nextcloud User" : "Nextcloud 使用者", + "Initialisation Nextcloud" : "初始化 Nextcloud", + "Initialisation Circles App" : "初始化小圈圈應用程式", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "在您的管理員至少允許一種類型的小圈圈之前,您無法使用小圈圈應用程式", "This user is already a member of the circle" : "此使用者已是小圈圈的成員", "The user is already a member of this circle" : "使用者已是這個小圈圈的成員", diff --git a/l10n/zh_TW.json b/l10n/zh_TW.json index c721b7adf..e79688907 100644 --- a/l10n/zh_TW.json +++ b/l10n/zh_TW.json @@ -118,8 +118,6 @@ "%s shared multiple files with \"%s\"." : "%s 與「%s」分享了多個檔案。", "%s shared multiple files with you." : "%s 與您分享了多個檔案。", "Boot up" : "啟動", - "Initialisation Nextcloud" : "初始化 Nextcloud", - "Initialisation Circles App" : "初始化小圈圈應用程式", "Fresh installation status" : "全新安裝狀態", "Building Local Database" : "正在建構本地資料庫", "Testing Basic Circle Creation" : "正在測試基本小圈圈建立", @@ -179,6 +177,8 @@ "Size" : "大小", "Modified" : "已修改", "Nextcloud User" : "Nextcloud 使用者", + "Initialisation Nextcloud" : "初始化 Nextcloud", + "Initialisation Circles App" : "初始化小圈圈應用程式", "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "在您的管理員至少允許一種類型的小圈圈之前,您無法使用小圈圈應用程式", "This user is already a member of the circle" : "此使用者已是小圈圈的成員", "The user is already a member of this circle" : "使用者已是這個小圈圈的成員", From 152cbfa7d7def1ad496d5706777401032674fe28 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 12 Mar 2023 02:34:58 +0000 Subject: [PATCH 15/33] =?UTF-8?q?Fix(l10n):=20=F0=9F=94=A0=20Update=20tran?= =?UTF-8?q?slations=20from=20Transifex?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Nextcloud bot --- l10n/cs.js | 2 ++ l10n/cs.json | 2 ++ l10n/de_DE.js | 2 ++ l10n/de_DE.json | 2 ++ l10n/en_GB.js | 2 ++ l10n/en_GB.json | 2 ++ l10n/gl.js | 2 ++ l10n/gl.json | 2 ++ l10n/sv.js | 2 ++ l10n/sv.json | 2 ++ l10n/zh_HK.js | 2 ++ l10n/zh_HK.json | 2 ++ 12 files changed, 24 insertions(+) diff --git a/l10n/cs.js b/l10n/cs.js index 36adfa229..8f3ab5a43 100644 --- a/l10n/cs.js +++ b/l10n/cs.js @@ -120,6 +120,8 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s nasdílel(a) několik souborů uživateli/skupině „%s“.", "%s shared multiple files with you." : "%s vám nasdílel(a) vícero souborů.", "Boot up" : "Nastartovat", + "Nextcloud Initialization" : "Inicializace Nextcloud", + "Circles App Initialisation" : "Inicializace aplikace Okruhy", "Fresh installation status" : "Stav čisté instalace", "Building Local Database" : "Vytváří se místní databáze", "Testing Basic Circle Creation" : "Zkouší se vytvoření základního okruhu", diff --git a/l10n/cs.json b/l10n/cs.json index 420fe056d..af507a017 100644 --- a/l10n/cs.json +++ b/l10n/cs.json @@ -118,6 +118,8 @@ "%s shared multiple files with \"%s\"." : "%s nasdílel(a) několik souborů uživateli/skupině „%s“.", "%s shared multiple files with you." : "%s vám nasdílel(a) vícero souborů.", "Boot up" : "Nastartovat", + "Nextcloud Initialization" : "Inicializace Nextcloud", + "Circles App Initialisation" : "Inicializace aplikace Okruhy", "Fresh installation status" : "Stav čisté instalace", "Building Local Database" : "Vytváří se místní databáze", "Testing Basic Circle Creation" : "Zkouší se vytvoření základního okruhu", diff --git a/l10n/de_DE.js b/l10n/de_DE.js index 0045efc63..43aae04eb 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -120,6 +120,8 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s hat mehrere Dateien mit \"%s\" geteilt.", "%s shared multiple files with you." : "%s hat mehrere Dateien mit Ihnen geteilt.", "Boot up" : "Hochfahren", + "Nextcloud Initialization" : "Nextcloud-Initialisierung", + "Circles App Initialisation" : "Kreise-App-Initialisierung", "Fresh installation status" : "Aktueller Initialisierungsstatus", "Building Local Database" : "Lokale Datenbank wird erstellt", "Testing Basic Circle Creation" : "Testen der grundlegenden Kreiserstellung", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index 4b511032c..b889fc57d 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -118,6 +118,8 @@ "%s shared multiple files with \"%s\"." : "%s hat mehrere Dateien mit \"%s\" geteilt.", "%s shared multiple files with you." : "%s hat mehrere Dateien mit Ihnen geteilt.", "Boot up" : "Hochfahren", + "Nextcloud Initialization" : "Nextcloud-Initialisierung", + "Circles App Initialisation" : "Kreise-App-Initialisierung", "Fresh installation status" : "Aktueller Initialisierungsstatus", "Building Local Database" : "Lokale Datenbank wird erstellt", "Testing Basic Circle Creation" : "Testen der grundlegenden Kreiserstellung", diff --git a/l10n/en_GB.js b/l10n/en_GB.js index a7a553970..e39f76204 100644 --- a/l10n/en_GB.js +++ b/l10n/en_GB.js @@ -120,6 +120,8 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s shared multiple files with \"%s\".", "%s shared multiple files with you." : "%s shared multiple files with you.", "Boot up" : "Boot up", + "Nextcloud Initialization" : "Nextcloud Initialisation", + "Circles App Initialisation" : "Circles App Initialisation", "Fresh installation status" : "Fresh installation status", "Building Local Database" : "Building Local Database", "Testing Basic Circle Creation" : "Testing Basic Circle Creation", diff --git a/l10n/en_GB.json b/l10n/en_GB.json index 2236d832c..8e6ac5c0d 100644 --- a/l10n/en_GB.json +++ b/l10n/en_GB.json @@ -118,6 +118,8 @@ "%s shared multiple files with \"%s\"." : "%s shared multiple files with \"%s\".", "%s shared multiple files with you." : "%s shared multiple files with you.", "Boot up" : "Boot up", + "Nextcloud Initialization" : "Nextcloud Initialisation", + "Circles App Initialisation" : "Circles App Initialisation", "Fresh installation status" : "Fresh installation status", "Building Local Database" : "Building Local Database", "Testing Basic Circle Creation" : "Testing Basic Circle Creation", diff --git a/l10n/gl.js b/l10n/gl.js index 69746cf76..4b21a1ab0 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -120,6 +120,8 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s compartiu varios ficheiros con \"%s\".", "%s shared multiple files with you." : "%s compartiu varios ficheiros con vostede.", "Boot up" : "Arrancar", + "Nextcloud Initialization" : "Inicialización de Nextcloud", + "Circles App Initialisation" : "Inicialización da Aplicación Círculos", "Fresh installation status" : "Estado da nova instalación", "Building Local Database" : "Creando Base de Datos Local", "Testing Basic Circle Creation" : "Proba de Creación de Círculos Básica", diff --git a/l10n/gl.json b/l10n/gl.json index 89e7a6045..239cbe3bb 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -118,6 +118,8 @@ "%s shared multiple files with \"%s\"." : "%s compartiu varios ficheiros con \"%s\".", "%s shared multiple files with you." : "%s compartiu varios ficheiros con vostede.", "Boot up" : "Arrancar", + "Nextcloud Initialization" : "Inicialización de Nextcloud", + "Circles App Initialisation" : "Inicialización da Aplicación Círculos", "Fresh installation status" : "Estado da nova instalación", "Building Local Database" : "Creando Base de Datos Local", "Testing Basic Circle Creation" : "Proba de Creación de Círculos Básica", diff --git a/l10n/sv.js b/l10n/sv.js index 156647ec1..cdb752e4b 100644 --- a/l10n/sv.js +++ b/l10n/sv.js @@ -120,6 +120,8 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s delade flera filer med \"%s\".", "%s shared multiple files with you." : "%s delade flera filer med dig.", "Boot up" : "Uppstart", + "Nextcloud Initialization" : "Nextcloud-initiering", + "Circles App Initialisation" : "Circles App-initiering", "Fresh installation status" : "Nyinstallationsstatus", "Building Local Database" : "Bygger lokal databas", "Testing Basic Circle Creation" : "Testar grundläggande Cirkel-skapande", diff --git a/l10n/sv.json b/l10n/sv.json index 95faa1f19..0218b63e8 100644 --- a/l10n/sv.json +++ b/l10n/sv.json @@ -118,6 +118,8 @@ "%s shared multiple files with \"%s\"." : "%s delade flera filer med \"%s\".", "%s shared multiple files with you." : "%s delade flera filer med dig.", "Boot up" : "Uppstart", + "Nextcloud Initialization" : "Nextcloud-initiering", + "Circles App Initialisation" : "Circles App-initiering", "Fresh installation status" : "Nyinstallationsstatus", "Building Local Database" : "Bygger lokal databas", "Testing Basic Circle Creation" : "Testar grundläggande Cirkel-skapande", diff --git a/l10n/zh_HK.js b/l10n/zh_HK.js index 77f863124..b891bcb96 100644 --- a/l10n/zh_HK.js +++ b/l10n/zh_HK.js @@ -120,6 +120,8 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s 與 \"%s\" 共享了多個檔案。", "%s shared multiple files with you." : "%s 對您共享了多個文件。", "Boot up" : "啟動", + "Nextcloud Initialization" : "初始 Nextcloud", + "Circles App Initialisation" : "初始 Circles 應用程式", "Fresh installation status" : "全新安裝狀態", "Building Local Database" : "建立近端數據庫", "Testing Basic Circle Creation" : "測試基本圈子創建", diff --git a/l10n/zh_HK.json b/l10n/zh_HK.json index c672b5e23..218819a5f 100644 --- a/l10n/zh_HK.json +++ b/l10n/zh_HK.json @@ -118,6 +118,8 @@ "%s shared multiple files with \"%s\"." : "%s 與 \"%s\" 共享了多個檔案。", "%s shared multiple files with you." : "%s 對您共享了多個文件。", "Boot up" : "啟動", + "Nextcloud Initialization" : "初始 Nextcloud", + "Circles App Initialisation" : "初始 Circles 應用程式", "Fresh installation status" : "全新安裝狀態", "Building Local Database" : "建立近端數據庫", "Testing Basic Circle Creation" : "測試基本圈子創建", From 31f7815537476a13a8ab1b8ede359826f9d5b70a Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Mon, 13 Mar 2023 02:36:08 +0000 Subject: [PATCH 16/33] =?UTF-8?q?Fix(l10n):=20=F0=9F=94=A0=20Update=20tran?= =?UTF-8?q?slations=20from=20Transifex?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Nextcloud bot --- l10n/es.js | 2 ++ l10n/es.json | 2 ++ l10n/tr.js | 2 ++ l10n/tr.json | 2 ++ l10n/zh_TW.js | 2 ++ l10n/zh_TW.json | 2 ++ 6 files changed, 12 insertions(+) diff --git a/l10n/es.js b/l10n/es.js index 5456984d5..58e1162e6 100644 --- a/l10n/es.js +++ b/l10n/es.js @@ -120,6 +120,8 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s compartió múltiples archivos con \"%s\".", "%s shared multiple files with you." : "%s ha compartido varios archivos contigo.", "Boot up" : "Arrancar", + "Nextcloud Initialization" : "Inicialización de Nextcloud", + "Circles App Initialisation" : "Inicialización de la app Circles", "Fresh installation status" : "Estado de la nueva instalación", "Building Local Database" : "Creando la Base de Datos Local", "Testing Basic Circle Creation" : "Prueba básica de creación de círculos", diff --git a/l10n/es.json b/l10n/es.json index 4052d7d55..978f76332 100644 --- a/l10n/es.json +++ b/l10n/es.json @@ -118,6 +118,8 @@ "%s shared multiple files with \"%s\"." : "%s compartió múltiples archivos con \"%s\".", "%s shared multiple files with you." : "%s ha compartido varios archivos contigo.", "Boot up" : "Arrancar", + "Nextcloud Initialization" : "Inicialización de Nextcloud", + "Circles App Initialisation" : "Inicialización de la app Circles", "Fresh installation status" : "Estado de la nueva instalación", "Building Local Database" : "Creando la Base de Datos Local", "Testing Basic Circle Creation" : "Prueba básica de creación de círculos", diff --git a/l10n/tr.js b/l10n/tr.js index f9d0c14b9..de3dd3447 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -120,6 +120,8 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s, \"%s\" ile birkaç dosya paylaştı.", "%s shared multiple files with you." : "%s sizinle birkaç dosya paylaştı.", "Boot up" : "Başlatma", + "Nextcloud Initialization" : "Nextcloud başlatılıyor", + "Circles App Initialisation" : "Çevreler uygulaması başlatılıyor", "Fresh installation status" : "Yeni kurulum durumu", "Building Local Database" : "Yerel veri tabanı oluşturuluyor", "Testing Basic Circle Creation" : "Temel çevre oluşturma sınanıyor", diff --git a/l10n/tr.json b/l10n/tr.json index 07113bacd..ee9e01725 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -118,6 +118,8 @@ "%s shared multiple files with \"%s\"." : "%s, \"%s\" ile birkaç dosya paylaştı.", "%s shared multiple files with you." : "%s sizinle birkaç dosya paylaştı.", "Boot up" : "Başlatma", + "Nextcloud Initialization" : "Nextcloud başlatılıyor", + "Circles App Initialisation" : "Çevreler uygulaması başlatılıyor", "Fresh installation status" : "Yeni kurulum durumu", "Building Local Database" : "Yerel veri tabanı oluşturuluyor", "Testing Basic Circle Creation" : "Temel çevre oluşturma sınanıyor", diff --git a/l10n/zh_TW.js b/l10n/zh_TW.js index 42daaad36..a5946a470 100644 --- a/l10n/zh_TW.js +++ b/l10n/zh_TW.js @@ -120,6 +120,8 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s 與「%s」分享了多個檔案。", "%s shared multiple files with you." : "%s 與您分享了多個檔案。", "Boot up" : "啟動", + "Nextcloud Initialization" : "Nextcloud 初始化", + "Circles App Initialisation" : "小圈圈應用程式初始化", "Fresh installation status" : "全新安裝狀態", "Building Local Database" : "正在建構本地資料庫", "Testing Basic Circle Creation" : "正在測試基本小圈圈建立", diff --git a/l10n/zh_TW.json b/l10n/zh_TW.json index e79688907..e2a9b8268 100644 --- a/l10n/zh_TW.json +++ b/l10n/zh_TW.json @@ -118,6 +118,8 @@ "%s shared multiple files with \"%s\"." : "%s 與「%s」分享了多個檔案。", "%s shared multiple files with you." : "%s 與您分享了多個檔案。", "Boot up" : "啟動", + "Nextcloud Initialization" : "Nextcloud 初始化", + "Circles App Initialisation" : "小圈圈應用程式初始化", "Fresh installation status" : "全新安裝狀態", "Building Local Database" : "正在建構本地資料庫", "Testing Basic Circle Creation" : "正在測試基本小圈圈建立", From 8d401bbe72b06646c0e5176dd126d8e06af01717 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 14 Mar 2023 02:34:29 +0000 Subject: [PATCH 17/33] =?UTF-8?q?Fix(l10n):=20=F0=9F=94=A0=20Update=20tran?= =?UTF-8?q?slations=20from=20Transifex?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Nextcloud bot --- l10n/fr.js | 2 ++ l10n/fr.json | 2 ++ l10n/sr.js | 2 ++ l10n/sr.json | 2 ++ 4 files changed, 8 insertions(+) diff --git a/l10n/fr.js b/l10n/fr.js index c69a415d4..87c671ebb 100644 --- a/l10n/fr.js +++ b/l10n/fr.js @@ -120,6 +120,8 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s a partagé plusieurs fichiers avec \"%s\".", "%s shared multiple files with you." : "%s a partagé plusieurs fichiers avec vous.", "Boot up" : "Démarrage", + "Nextcloud Initialization" : "Initialisation de Nexctcloud", + "Circles App Initialisation" : "Initialisation de l'application Cercles", "Fresh installation status" : "Statut de l'installation", "Building Local Database" : "Construction de la base de données locale", "Testing Basic Circle Creation" : "Test de création d'un cercle basique", diff --git a/l10n/fr.json b/l10n/fr.json index 3970566af..c63499f2a 100644 --- a/l10n/fr.json +++ b/l10n/fr.json @@ -118,6 +118,8 @@ "%s shared multiple files with \"%s\"." : "%s a partagé plusieurs fichiers avec \"%s\".", "%s shared multiple files with you." : "%s a partagé plusieurs fichiers avec vous.", "Boot up" : "Démarrage", + "Nextcloud Initialization" : "Initialisation de Nexctcloud", + "Circles App Initialisation" : "Initialisation de l'application Cercles", "Fresh installation status" : "Statut de l'installation", "Building Local Database" : "Construction de la base de données locale", "Testing Basic Circle Creation" : "Test de création d'un cercle basique", diff --git a/l10n/sr.js b/l10n/sr.js index 372d3a014..ceb464954 100644 --- a/l10n/sr.js +++ b/l10n/sr.js @@ -120,6 +120,8 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s је поделио више фајлова са „%s.", "%s shared multiple files with you." : "%s је поделио више фајлова са Вама.", "Boot up" : "Подизање система", + "Nextcloud Initialization" : "Nextcloud иницијализација", + "Circles App Initialisation" : "Иницијализација апликације Кругови", "Fresh installation status" : "Статус свеже инсталације", "Building Local Database" : "Изградња локалне базе података", "Testing Basic Circle Creation" : "Тестирање креирања основног круга", diff --git a/l10n/sr.json b/l10n/sr.json index e591481d9..b4cb82377 100644 --- a/l10n/sr.json +++ b/l10n/sr.json @@ -118,6 +118,8 @@ "%s shared multiple files with \"%s\"." : "%s је поделио више фајлова са „%s.", "%s shared multiple files with you." : "%s је поделио више фајлова са Вама.", "Boot up" : "Подизање система", + "Nextcloud Initialization" : "Nextcloud иницијализација", + "Circles App Initialisation" : "Иницијализација апликације Кругови", "Fresh installation status" : "Статус свеже инсталације", "Building Local Database" : "Изградња локалне базе података", "Testing Basic Circle Creation" : "Тестирање креирања основног круга", From c51953788ba53c959c323ef46305583866584430 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 16 Mar 2023 02:35:48 +0000 Subject: [PATCH 18/33] =?UTF-8?q?Fix(l10n):=20=F0=9F=94=A0=20Update=20tran?= =?UTF-8?q?slations=20from=20Transifex?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Nextcloud bot --- l10n/bg.js | 2 ++ l10n/bg.json | 2 ++ l10n/id.js | 3 ++- l10n/id.json | 3 ++- 4 files changed, 8 insertions(+), 2 deletions(-) diff --git a/l10n/bg.js b/l10n/bg.js index ca4072c8c..548debe1d 100644 --- a/l10n/bg.js +++ b/l10n/bg.js @@ -120,6 +120,8 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s сподели множество файла с „%s“.", "%s shared multiple files with you." : "%sсподелени множество файлове с вас", "Boot up" : "Стартиране", + "Nextcloud Initialization" : "Инициализация на Nextcloud", + "Circles App Initialisation" : "Инициализация на приложението Circles /кръгове/", "Fresh installation status" : "Състояние на нова инсталация", "Building Local Database" : "Изграждане на Локална База Данни", "Testing Basic Circle Creation" : "Тестване на създаването на основен кръг", diff --git a/l10n/bg.json b/l10n/bg.json index 6940a8dab..68426355b 100644 --- a/l10n/bg.json +++ b/l10n/bg.json @@ -118,6 +118,8 @@ "%s shared multiple files with \"%s\"." : "%s сподели множество файла с „%s“.", "%s shared multiple files with you." : "%sсподелени множество файлове с вас", "Boot up" : "Стартиране", + "Nextcloud Initialization" : "Инициализация на Nextcloud", + "Circles App Initialisation" : "Инициализация на приложението Circles /кръгове/", "Fresh installation status" : "Състояние на нова инсталация", "Building Local Database" : "Изграждане на Локална База Данни", "Testing Basic Circle Creation" : "Тестване на създаването на основен кръг", diff --git a/l10n/id.js b/l10n/id.js index f64992ad3..0ccfe14f5 100644 --- a/l10n/id.js +++ b/l10n/id.js @@ -15,7 +15,8 @@ OC.L10N.register( "Open »%s«" : "Buka »%s«", "Accept" : "Terima", "%s" : "%s", - "No files in here" : "Tidak ada berkas disini", + "Password to access content shared with you by %1$s" : "Kata sandi untuk mengakses konten yabg dibagikan dengan Anda oleh %1$s", + "No files in here" : "Tidak ada berkas di sini", "No entries found in this folder" : "Tidak ada entri yang ditemukan dalam folder ini", "Name" : "Nama", "Size" : "Ukuran", diff --git a/l10n/id.json b/l10n/id.json index 4102e93c4..4d85cb434 100644 --- a/l10n/id.json +++ b/l10n/id.json @@ -13,7 +13,8 @@ "Open »%s«" : "Buka »%s«", "Accept" : "Terima", "%s" : "%s", - "No files in here" : "Tidak ada berkas disini", + "Password to access content shared with you by %1$s" : "Kata sandi untuk mengakses konten yabg dibagikan dengan Anda oleh %1$s", + "No files in here" : "Tidak ada berkas di sini", "No entries found in this folder" : "Tidak ada entri yang ditemukan dalam folder ini", "Name" : "Nama", "Size" : "Ukuran", From 1e161406c090d4f325ed07f041d900eb957cccc9 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Mon, 20 Mar 2023 02:34:21 +0000 Subject: [PATCH 19/33] =?UTF-8?q?Fix(l10n):=20=F0=9F=94=A0=20Update=20tran?= =?UTF-8?q?slations=20from=20Transifex?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Nextcloud bot --- l10n/ru.js | 8 ++++++++ l10n/ru.json | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/l10n/ru.js b/l10n/ru.js index bfa447140..065a59426 100644 --- a/l10n/ru.js +++ b/l10n/ru.js @@ -92,6 +92,7 @@ OC.L10N.register( "Circle Invite" : "Приглашение в круг", "Federated" : "Федеративный", "Mount point" : "Место установки", + "Nextcloud Account" : "Учётная запись Nextcloud", "Nextcloud Group" : "Группа Nextcloud", "Email Address" : "Адрес электронной почты", "Contact" : "Контакт", @@ -119,6 +120,8 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s поделился несколькими файлами с \"%s\".", "%s shared multiple files with you." : "%s предоставил(а) вам доступ к нескольким файлам.", "Boot up" : "Загрузка", + "Nextcloud Initialization" : "Инициализация Nextcloud", + "Circles App Initialisation" : "Инициализация приложения «Круги»", "Fresh installation status" : "Статус новой установки", "Building Local Database" : "Создание локальной базы данных", "Testing Basic Circle Creation" : "Тестирование базового созданного Круга", @@ -126,6 +129,7 @@ OC.L10N.register( "Circle not found" : "Круг не найден", "Circle not found " : "Круг не найден", "This member does not exist" : "Этот участник не существует", + "This account is already a member of the circle" : "Эта учётная запись уже участник круга", "Federated link not found" : "Федеративная связь не найдена", "This feature is not available for personal circles" : "Эта возможность недоступна для личных кругов", "The circle is not federated" : "К этому кругу не предоставлен федеративный доступ", @@ -136,6 +140,8 @@ OC.L10N.register( "Level cannot be changed for this type of member" : "Невозможно изменить уровень участника такого типа", "You are already a member of this circle" : "Вы уже участник этого круга", "You have been blocked from this circle" : "Вы заблокированы от участия в этом круге", + "The account is already a member of this circle" : "Эта учётная запись уже участник этого круга", + "The account has already been invited into this circle" : "Эта учётная запись уже приглашена в этот круг", "%s (Circle owned by %s)" : "%s (круг, принадлежащий %s)", "You are now a member of the Circle \"%2$s\"" : "Вы теперь участник Круга \"%2$s\"", "You have been invited by %1$s into the Circle \"%2$s\"" : "Вы были приглашены %1$s в круг \"%2$s\"", @@ -156,6 +162,7 @@ OC.L10N.register( "You cannot edit level in a personal circle" : "Вы не можете редактировать уровень в личном круге", "Group cannot be set as owner of a circle" : "Группа не может быть назначена владельцем круга", "now" : "только что", + "This account does not exist" : "Эта учётная запись не существует", "Email format is not valid" : "Неверный формат электронной почты", "This contact is not available" : "Контакт не доступен", "You have no permission to create a new circle" : "У вас нет разрешения на создание нового круга", @@ -167,6 +174,7 @@ OC.L10N.register( "Password to access content" : "Пароль для доступа к содержимому", "This item is already shared with this circle" : "Этот элемент уже используется в этом круге", "Bring cloud-users closer together." : "Собирайте вокруг себе пользователей Вашего облака пользователей.", + "Circles allows people to create their own groups of people/colleagues/friends.\nThose groups of people (or \"circles\") can then be used by any other app for sharing purpose." : "Круги позволяют пользователям создавать свои собственные группы пользователей, коллег или друзей.\nЭти группы пользователей («круги») могут затем использоваться любым другим приложением для обмена информацией.", "No files in here" : "Здесь нет файлов", "No entries found in this folder" : "В этой папке ничего нет", "Name" : "Имя", diff --git a/l10n/ru.json b/l10n/ru.json index 3171bdbc8..6501a24ad 100644 --- a/l10n/ru.json +++ b/l10n/ru.json @@ -90,6 +90,7 @@ "Circle Invite" : "Приглашение в круг", "Federated" : "Федеративный", "Mount point" : "Место установки", + "Nextcloud Account" : "Учётная запись Nextcloud", "Nextcloud Group" : "Группа Nextcloud", "Email Address" : "Адрес электронной почты", "Contact" : "Контакт", @@ -117,6 +118,8 @@ "%s shared multiple files with \"%s\"." : "%s поделился несколькими файлами с \"%s\".", "%s shared multiple files with you." : "%s предоставил(а) вам доступ к нескольким файлам.", "Boot up" : "Загрузка", + "Nextcloud Initialization" : "Инициализация Nextcloud", + "Circles App Initialisation" : "Инициализация приложения «Круги»", "Fresh installation status" : "Статус новой установки", "Building Local Database" : "Создание локальной базы данных", "Testing Basic Circle Creation" : "Тестирование базового созданного Круга", @@ -124,6 +127,7 @@ "Circle not found" : "Круг не найден", "Circle not found " : "Круг не найден", "This member does not exist" : "Этот участник не существует", + "This account is already a member of the circle" : "Эта учётная запись уже участник круга", "Federated link not found" : "Федеративная связь не найдена", "This feature is not available for personal circles" : "Эта возможность недоступна для личных кругов", "The circle is not federated" : "К этому кругу не предоставлен федеративный доступ", @@ -134,6 +138,8 @@ "Level cannot be changed for this type of member" : "Невозможно изменить уровень участника такого типа", "You are already a member of this circle" : "Вы уже участник этого круга", "You have been blocked from this circle" : "Вы заблокированы от участия в этом круге", + "The account is already a member of this circle" : "Эта учётная запись уже участник этого круга", + "The account has already been invited into this circle" : "Эта учётная запись уже приглашена в этот круг", "%s (Circle owned by %s)" : "%s (круг, принадлежащий %s)", "You are now a member of the Circle \"%2$s\"" : "Вы теперь участник Круга \"%2$s\"", "You have been invited by %1$s into the Circle \"%2$s\"" : "Вы были приглашены %1$s в круг \"%2$s\"", @@ -154,6 +160,7 @@ "You cannot edit level in a personal circle" : "Вы не можете редактировать уровень в личном круге", "Group cannot be set as owner of a circle" : "Группа не может быть назначена владельцем круга", "now" : "только что", + "This account does not exist" : "Эта учётная запись не существует", "Email format is not valid" : "Неверный формат электронной почты", "This contact is not available" : "Контакт не доступен", "You have no permission to create a new circle" : "У вас нет разрешения на создание нового круга", @@ -165,6 +172,7 @@ "Password to access content" : "Пароль для доступа к содержимому", "This item is already shared with this circle" : "Этот элемент уже используется в этом круге", "Bring cloud-users closer together." : "Собирайте вокруг себе пользователей Вашего облака пользователей.", + "Circles allows people to create their own groups of people/colleagues/friends.\nThose groups of people (or \"circles\") can then be used by any other app for sharing purpose." : "Круги позволяют пользователям создавать свои собственные группы пользователей, коллег или друзей.\nЭти группы пользователей («круги») могут затем использоваться любым другим приложением для обмена информацией.", "No files in here" : "Здесь нет файлов", "No entries found in this folder" : "В этой папке ничего нет", "Name" : "Имя", From b0d0cbdb3f554bf16b052b478aa88fd7fa102df4 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 23 Mar 2023 02:34:17 +0000 Subject: [PATCH 20/33] =?UTF-8?q?Fix(l10n):=20=F0=9F=94=A0=20Update=20tran?= =?UTF-8?q?slations=20from=20Transifex?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Nextcloud bot --- l10n/de.js | 2 ++ l10n/de.json | 2 ++ 2 files changed, 4 insertions(+) diff --git a/l10n/de.js b/l10n/de.js index 0f8dd206f..e24e6b838 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -120,6 +120,8 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s hat mehrere Dateien mit \"%s\" geteilt.", "%s shared multiple files with you." : "%s hat mehrere Dateien mit dir geteilt.", "Boot up" : "Hochfahren", + "Nextcloud Initialization" : "Nextcloud-Initialisierung", + "Circles App Initialisation" : "Kreise-App-Initialisierung", "Fresh installation status" : "Aktueller Initialisierungsstatus", "Building Local Database" : "Lokale Datenbank wird erstellt", "Testing Basic Circle Creation" : "Testen der grundlegenden Kreiserstellung", diff --git a/l10n/de.json b/l10n/de.json index 3e545e1e9..dae93ec39 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -118,6 +118,8 @@ "%s shared multiple files with \"%s\"." : "%s hat mehrere Dateien mit \"%s\" geteilt.", "%s shared multiple files with you." : "%s hat mehrere Dateien mit dir geteilt.", "Boot up" : "Hochfahren", + "Nextcloud Initialization" : "Nextcloud-Initialisierung", + "Circles App Initialisation" : "Kreise-App-Initialisierung", "Fresh installation status" : "Aktueller Initialisierungsstatus", "Building Local Database" : "Lokale Datenbank wird erstellt", "Testing Basic Circle Creation" : "Testen der grundlegenden Kreiserstellung", From 9e7987e09458c8f5a664246d131c31a06f6533cd Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 24 Mar 2023 02:34:59 +0000 Subject: [PATCH 21/33] =?UTF-8?q?Fix(l10n):=20=F0=9F=94=A0=20Update=20tran?= =?UTF-8?q?slations=20from=20Transifex?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Nextcloud bot --- l10n/da.js | 63 +++++++++++++++++++++++++++++++++++++++++++++++++++- l10n/da.json | 63 +++++++++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 124 insertions(+), 2 deletions(-) diff --git a/l10n/da.js b/l10n/da.js index 2ffef758b..8501e7e90 100644 --- a/l10n/da.js +++ b/l10n/da.js @@ -103,31 +103,92 @@ OC.L10N.register( "Admin" : "Admin", "Owner" : "Ejer", "%s shared »%s« with you." : "%s delte »%s« med dig.", + "%s shared »%s« with \"%s\"." : "%s delt »%s« med \"%s\".", "%s on %s" : "%s på %s", + "%1$s shared »%2$s« with you.\nYou should have already received a separate email with a link to access it.\n" : "%1$s delte »%2$s« med dig.\nDu burde allerede have modtaget en e-mail med et link for at få adgang...\n", + "%1$s shared »%2$s« with you. You should have already received a separate email with a link to access it." : "%1$s delte »%2$s« med dig. du burde allerede have modtaget en e-mail med et link for at få adgang...", + "Password to access »%1$s« shared to you by %2$s" : "Adgangskode for at få adgang »%1$s« delt til dig af %2$s", "Password to access »%s«" : "Kodeord for adgang til »%s«", + "It is protected with the following password:" : "Beskyttet med følgende adgangskode:", "%1$s via %2$s" : "%1$s via %2$s", "Click the button below to open it." : "Klik på knappen nedenunder for at åbne.", "Open »%s«" : "Åbn »%s«", + "%1$s shared multiple files with you.\nYou should have already received a separate email with a link to access them.\n" : "%1$s delte flere filer med dig.\nDu burde allerede have modtaget en e-mail med et link for at få adgang...\n", + "%1$s shared multiple files with you. You should have already received a separate email with a link to access them." : "%1$s delte flere filer med dig. Du burde allerede have modtaget en e-mail med et link for at få adgang...", + "Password to access files shared to you by %1$s" : "Adgangskode for at få adgang til filer, der deles med dig af %1$s", + "Password to access files" : "Adgangskode for at få adgang til filer", + "%s shared multiple files with \"%s\"." : "%s delte flere filer med \"%s\".", + "%s shared multiple files with you." : "%s delte flere filer med dig.", + "Boot up" : "Start", + "Nextcloud Initialization" : "Nextcloud initialisering", + "Circles App Initialisation" : "Circles App initialisering", + "Fresh installation status" : "Installationsstatus", + "Building Local Database" : "Opsætning af lokal database", + "Testing Basic Circle Creation" : "Test af grundlæggende cirkeloprettelse", + "Adding local users and moderators" : "Tilføjelse af lokale brugere og moderatorer", + "Circle not found" : "Cirklen blev ikke fundet", + "Circle not found " : "Cirklen blev ikke fundet", "This member does not exist" : "Dette medlem eksisterer ikke", + "This account is already a member of the circle" : "Denne konto er allerede medlem af cirklen", + "Federated link not found" : "Fødereret link blev ikke fundet", + "This feature is not available for personal circles" : "Denne funktion er ikke tilgængelig for personlige cirkler", + "The circle is not federated" : "Cirklen er ikke fødereret", "You cannot join this circle" : "Du kan ikke forbinde med cirklen", "This member is not a moderator" : "Dette medlem er ikke en moderator", + "Insufficient privileges" : "Utilstrækkelige rettigheder", "This member is the owner of the circle" : "Dette medlem ejer cirklen", + "Level cannot be changed for this type of member" : "Niveau kan ikke ændres for denne type medlem", "You are already a member of this circle" : "Du er allerede medlem af cirklen", + "You have been blocked from this circle" : "Du er blevet blokeret fra denne cirkel", + "The account is already a member of this circle" : "Kontoen er allerede medlem af denne cirkel", + "The account has already been invited into this circle" : "Kontoen er allerede inviteret til denne cirkel", + "%s (Circle owned by %s)" : "%s (cirkel ejet af %s)", + "You are now a member of the Circle \"%2$s\"" : "Du er nu medlem af cirklen \"%2$s\"", + "You have been invited by %1$s into the Circle \"%2$s\"" : "Du er blevet inviteret af %1$s ind i cirklen \"%2$s\"", + "%1$s sent a request to be a member of the Circle \"%2$s\"" : "%1$s sendte en anmodning om at blive medlem af cirklen \"%2$s\"", "Accept" : "Accepter", + "Refuse" : "Afvis", + "Leave the circle" : "Forlad cirklen", "%s" : "%s", "Personal Circle" : "Personlig cirkel", + "%s owned by %s" : "%s ejet af %s", + "You need a specify a type of circle" : "Du skal angive en type cirkel", + "A circle with that name exists" : "Der findes en cirkel med det navn", "This member is not the owner of the circle" : "Dette medlem ejer ikke cirklen", + "This member is not an admin of the circle" : "Dette medlem er ikke administrator af cirklen", + "Group contains too many members" : "Gruppen indeholder for mange medlemmer", "This group does not exist" : "Denne gruppe eksisterer ikke", + "This group is already linked to the circle" : "Denne gruppe er allerede knyttet til cirklen", + "You cannot edit level in a personal circle" : "Du kan ikke redigere niveau i en personlig cirkel", + "Group cannot be set as owner of a circle" : "Gruppen kan ikke angives som ejer af en cirkel", "now" : "nu", + "This account does not exist" : "Denne konto findes ikke", "Email format is not valid" : "Email format er ugyldigt", "This contact is not available" : "Denne kontakt er ikke tilgængelig ", + "You have no permission to create a new circle" : "Du har ikke tilladelse til at oprette en ny cirkel", + "%s shared a file with \"%s\"." : "%s delte en fil med \"%s\".", + "%s shared a file with you." : "%s delte en fil med dig.", + "%1$s shared some content with you.\nYou should have already received a separate email with a link to access it.\n" : "%1$s delt indhold med dig.\nDu burde allerede have modtaget en separat e-mail med et link for at få adgang...\n", + "%1$s shared some content with you. You should have already received a separate email with a link to access it." : "%1$s delt indhold med dig. Du burde allerede have modtaget en e-mail med et link for at få adgang...", + "Password to access content shared with you by %1$s" : "Adgangskode for at få adgang til indhold, der deles med dig af %1$s", + "Password to access content" : "Adgangskode for at få adgang til indhold", + "This item is already shared with this circle" : "Dette element er allerede delt med denne cirkel", + "Bring cloud-users closer together." : "Bring cloud-brugere tættere på hinanden.", + "Circles allows people to create their own groups of people/colleagues/friends.\nThose groups of people (or \"circles\") can then be used by any other app for sharing purpose." : "Cirkler giver dine brugere mulighed for at oprette deres egne grupper af brugere/kolleger/venner.\nDisse grupper af brugere (eller \"cirkler\") kan derefter bruges af enhver anden app til delingsformål.", "No files in here" : "Ingen filer herinde", "No entries found in this folder" : "Intet fundet i denne mappe", "Name" : "Navn", "Size" : "Størrelse", "Modified" : "Ændret", + "Nextcloud User" : "Nextcloud bruger", + "Initialisation Nextcloud" : "Initialisering Nextcloud", + "Initialisation Circles App" : "Initialisering Cirkler App", + "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Du kan ikke bruge Cirkel-applikationen, før din administrator har tilladt mindst én type cirkler", "This user is already a member of the circle" : "Denne bruger er allerede medlem af cirklen", + "The user is already a member of this circle" : "Brugeren er allerede medlem af denne cirkel", + "The user has already been invited into this circle" : "Brugeren er allerede blevet inviteret til denne cirkel", "This user does not exist" : "Brugeren eksisterer ikke ", - "Could not find share" : "Kunne ikke finde deling" + "Could not find share" : "Kunne ikke finde deling", + "Circles allows your users to create their own groups of users/colleagues/friends.\nThose groups of users (or \"circles\") can then be used by any other app for sharing purpose." : "Cirkler giver dine brugere mulighed for at oprette deres egne grupper af brugere/kolleger/venner.\nDisse grupper af brugere (eller \"cirkler\") kan derefter bruges af enhver anden app til delingsformål." }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/da.json b/l10n/da.json index ea7fcdf58..4a53542c3 100644 --- a/l10n/da.json +++ b/l10n/da.json @@ -101,31 +101,92 @@ "Admin" : "Admin", "Owner" : "Ejer", "%s shared »%s« with you." : "%s delte »%s« med dig.", + "%s shared »%s« with \"%s\"." : "%s delt »%s« med \"%s\".", "%s on %s" : "%s på %s", + "%1$s shared »%2$s« with you.\nYou should have already received a separate email with a link to access it.\n" : "%1$s delte »%2$s« med dig.\nDu burde allerede have modtaget en e-mail med et link for at få adgang...\n", + "%1$s shared »%2$s« with you. You should have already received a separate email with a link to access it." : "%1$s delte »%2$s« med dig. du burde allerede have modtaget en e-mail med et link for at få adgang...", + "Password to access »%1$s« shared to you by %2$s" : "Adgangskode for at få adgang »%1$s« delt til dig af %2$s", "Password to access »%s«" : "Kodeord for adgang til »%s«", + "It is protected with the following password:" : "Beskyttet med følgende adgangskode:", "%1$s via %2$s" : "%1$s via %2$s", "Click the button below to open it." : "Klik på knappen nedenunder for at åbne.", "Open »%s«" : "Åbn »%s«", + "%1$s shared multiple files with you.\nYou should have already received a separate email with a link to access them.\n" : "%1$s delte flere filer med dig.\nDu burde allerede have modtaget en e-mail med et link for at få adgang...\n", + "%1$s shared multiple files with you. You should have already received a separate email with a link to access them." : "%1$s delte flere filer med dig. Du burde allerede have modtaget en e-mail med et link for at få adgang...", + "Password to access files shared to you by %1$s" : "Adgangskode for at få adgang til filer, der deles med dig af %1$s", + "Password to access files" : "Adgangskode for at få adgang til filer", + "%s shared multiple files with \"%s\"." : "%s delte flere filer med \"%s\".", + "%s shared multiple files with you." : "%s delte flere filer med dig.", + "Boot up" : "Start", + "Nextcloud Initialization" : "Nextcloud initialisering", + "Circles App Initialisation" : "Circles App initialisering", + "Fresh installation status" : "Installationsstatus", + "Building Local Database" : "Opsætning af lokal database", + "Testing Basic Circle Creation" : "Test af grundlæggende cirkeloprettelse", + "Adding local users and moderators" : "Tilføjelse af lokale brugere og moderatorer", + "Circle not found" : "Cirklen blev ikke fundet", + "Circle not found " : "Cirklen blev ikke fundet", "This member does not exist" : "Dette medlem eksisterer ikke", + "This account is already a member of the circle" : "Denne konto er allerede medlem af cirklen", + "Federated link not found" : "Fødereret link blev ikke fundet", + "This feature is not available for personal circles" : "Denne funktion er ikke tilgængelig for personlige cirkler", + "The circle is not federated" : "Cirklen er ikke fødereret", "You cannot join this circle" : "Du kan ikke forbinde med cirklen", "This member is not a moderator" : "Dette medlem er ikke en moderator", + "Insufficient privileges" : "Utilstrækkelige rettigheder", "This member is the owner of the circle" : "Dette medlem ejer cirklen", + "Level cannot be changed for this type of member" : "Niveau kan ikke ændres for denne type medlem", "You are already a member of this circle" : "Du er allerede medlem af cirklen", + "You have been blocked from this circle" : "Du er blevet blokeret fra denne cirkel", + "The account is already a member of this circle" : "Kontoen er allerede medlem af denne cirkel", + "The account has already been invited into this circle" : "Kontoen er allerede inviteret til denne cirkel", + "%s (Circle owned by %s)" : "%s (cirkel ejet af %s)", + "You are now a member of the Circle \"%2$s\"" : "Du er nu medlem af cirklen \"%2$s\"", + "You have been invited by %1$s into the Circle \"%2$s\"" : "Du er blevet inviteret af %1$s ind i cirklen \"%2$s\"", + "%1$s sent a request to be a member of the Circle \"%2$s\"" : "%1$s sendte en anmodning om at blive medlem af cirklen \"%2$s\"", "Accept" : "Accepter", + "Refuse" : "Afvis", + "Leave the circle" : "Forlad cirklen", "%s" : "%s", "Personal Circle" : "Personlig cirkel", + "%s owned by %s" : "%s ejet af %s", + "You need a specify a type of circle" : "Du skal angive en type cirkel", + "A circle with that name exists" : "Der findes en cirkel med det navn", "This member is not the owner of the circle" : "Dette medlem ejer ikke cirklen", + "This member is not an admin of the circle" : "Dette medlem er ikke administrator af cirklen", + "Group contains too many members" : "Gruppen indeholder for mange medlemmer", "This group does not exist" : "Denne gruppe eksisterer ikke", + "This group is already linked to the circle" : "Denne gruppe er allerede knyttet til cirklen", + "You cannot edit level in a personal circle" : "Du kan ikke redigere niveau i en personlig cirkel", + "Group cannot be set as owner of a circle" : "Gruppen kan ikke angives som ejer af en cirkel", "now" : "nu", + "This account does not exist" : "Denne konto findes ikke", "Email format is not valid" : "Email format er ugyldigt", "This contact is not available" : "Denne kontakt er ikke tilgængelig ", + "You have no permission to create a new circle" : "Du har ikke tilladelse til at oprette en ny cirkel", + "%s shared a file with \"%s\"." : "%s delte en fil med \"%s\".", + "%s shared a file with you." : "%s delte en fil med dig.", + "%1$s shared some content with you.\nYou should have already received a separate email with a link to access it.\n" : "%1$s delt indhold med dig.\nDu burde allerede have modtaget en separat e-mail med et link for at få adgang...\n", + "%1$s shared some content with you. You should have already received a separate email with a link to access it." : "%1$s delt indhold med dig. Du burde allerede have modtaget en e-mail med et link for at få adgang...", + "Password to access content shared with you by %1$s" : "Adgangskode for at få adgang til indhold, der deles med dig af %1$s", + "Password to access content" : "Adgangskode for at få adgang til indhold", + "This item is already shared with this circle" : "Dette element er allerede delt med denne cirkel", + "Bring cloud-users closer together." : "Bring cloud-brugere tættere på hinanden.", + "Circles allows people to create their own groups of people/colleagues/friends.\nThose groups of people (or \"circles\") can then be used by any other app for sharing purpose." : "Cirkler giver dine brugere mulighed for at oprette deres egne grupper af brugere/kolleger/venner.\nDisse grupper af brugere (eller \"cirkler\") kan derefter bruges af enhver anden app til delingsformål.", "No files in here" : "Ingen filer herinde", "No entries found in this folder" : "Intet fundet i denne mappe", "Name" : "Navn", "Size" : "Størrelse", "Modified" : "Ændret", + "Nextcloud User" : "Nextcloud bruger", + "Initialisation Nextcloud" : "Initialisering Nextcloud", + "Initialisation Circles App" : "Initialisering Cirkler App", + "You cannot use the Circles Application until your administrator has allowed at least one type of circles" : "Du kan ikke bruge Cirkel-applikationen, før din administrator har tilladt mindst én type cirkler", "This user is already a member of the circle" : "Denne bruger er allerede medlem af cirklen", + "The user is already a member of this circle" : "Brugeren er allerede medlem af denne cirkel", + "The user has already been invited into this circle" : "Brugeren er allerede blevet inviteret til denne cirkel", "This user does not exist" : "Brugeren eksisterer ikke ", - "Could not find share" : "Kunne ikke finde deling" + "Could not find share" : "Kunne ikke finde deling", + "Circles allows your users to create their own groups of users/colleagues/friends.\nThose groups of users (or \"circles\") can then be used by any other app for sharing purpose." : "Cirkler giver dine brugere mulighed for at oprette deres egne grupper af brugere/kolleger/venner.\nDisse grupper af brugere (eller \"cirkler\") kan derefter bruges af enhver anden app til delingsformål." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file From ffc9163661ba3bd6611b31cc3746bc392f9ad91f Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 28 Mar 2023 02:26:39 +0000 Subject: [PATCH 22/33] =?UTF-8?q?Fix(l10n):=20=F0=9F=94=A0=20Update=20tran?= =?UTF-8?q?slations=20from=20Transifex?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Nextcloud bot --- l10n/hu.js | 2 ++ l10n/hu.json | 2 ++ l10n/oc.js | 1 + l10n/oc.json | 1 + l10n/pt_BR.js | 2 ++ l10n/pt_BR.json | 2 ++ 6 files changed, 10 insertions(+) diff --git a/l10n/hu.js b/l10n/hu.js index 76215edca..747a62146 100644 --- a/l10n/hu.js +++ b/l10n/hu.js @@ -120,6 +120,8 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s több fájlt osztott a következővel: „%s”.", "%s shared multiple files with you." : "%s több fájlt osztott meg Önnel.", "Boot up" : "Rendszerindítás", + "Nextcloud Initialization" : "A Nextcloud előkészítése", + "Circles App Initialisation" : "A Körök alkalmazás előkészítése", "Fresh installation status" : "Friss előkészítési állapot", "Building Local Database" : "Helyi adatbázis építése", "Testing Basic Circle Creation" : "Alapvető körlétrehozás tesztelése", diff --git a/l10n/hu.json b/l10n/hu.json index afec876ab..c9509400d 100644 --- a/l10n/hu.json +++ b/l10n/hu.json @@ -118,6 +118,8 @@ "%s shared multiple files with \"%s\"." : "%s több fájlt osztott a következővel: „%s”.", "%s shared multiple files with you." : "%s több fájlt osztott meg Önnel.", "Boot up" : "Rendszerindítás", + "Nextcloud Initialization" : "A Nextcloud előkészítése", + "Circles App Initialisation" : "A Körök alkalmazás előkészítése", "Fresh installation status" : "Friss előkészítési állapot", "Building Local Database" : "Helyi adatbázis építése", "Testing Basic Circle Creation" : "Alapvető körlétrehozás tesztelése", diff --git a/l10n/oc.js b/l10n/oc.js index 359bc2c58..0a9caadc2 100644 --- a/l10n/oc.js +++ b/l10n/oc.js @@ -5,6 +5,7 @@ OC.L10N.register( "Personal" : "Personal", "Visible" : "Visible", "Open" : "Dobrir", + "Password Protected" : "Protegit per senhal", "Hidden" : "Amagat", "Local" : "Local", "Federated" : "Federated", diff --git a/l10n/oc.json b/l10n/oc.json index cc73914b3..8f982a425 100644 --- a/l10n/oc.json +++ b/l10n/oc.json @@ -3,6 +3,7 @@ "Personal" : "Personal", "Visible" : "Visible", "Open" : "Dobrir", + "Password Protected" : "Protegit per senhal", "Hidden" : "Amagat", "Local" : "Local", "Federated" : "Federated", diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index 35aa6d0c4..2be4daa57 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -120,6 +120,8 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s compartilhou vários arquivos com \"%s\".", "%s shared multiple files with you." : "%s compartilhou vários arquivos com você. ", "Boot up" : "Inicializar", + "Nextcloud Initialization" : "Nextcloud Initialization", + "Circles App Initialisation" : "Circles App Initialisation", "Fresh installation status" : "Novo status de instalação", "Building Local Database" : "Construindo banco de dados local", "Testing Basic Circle Creation" : "Teste básico de criação de círculo", diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index daa5d3648..6ed95bf5d 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -118,6 +118,8 @@ "%s shared multiple files with \"%s\"." : "%s compartilhou vários arquivos com \"%s\".", "%s shared multiple files with you." : "%s compartilhou vários arquivos com você. ", "Boot up" : "Inicializar", + "Nextcloud Initialization" : "Nextcloud Initialization", + "Circles App Initialisation" : "Circles App Initialisation", "Fresh installation status" : "Novo status de instalação", "Building Local Database" : "Construindo banco de dados local", "Testing Basic Circle Creation" : "Teste básico de criação de círculo", From d04628fafcf6da58a6c97401c8db4f8495c72ef7 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 6 Apr 2023 02:36:08 +0000 Subject: [PATCH 23/33] =?UTF-8?q?Fix(l10n):=20=F0=9F=94=A0=20Update=20tran?= =?UTF-8?q?slations=20from=20Transifex?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Nextcloud bot --- l10n/ca.js | 2 ++ l10n/ca.json | 2 ++ l10n/eu.js | 2 ++ l10n/eu.json | 2 ++ 4 files changed, 8 insertions(+) diff --git a/l10n/ca.js b/l10n/ca.js index 7b1bed131..940f604c3 100644 --- a/l10n/ca.js +++ b/l10n/ca.js @@ -120,6 +120,8 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s ha compartit diversos fitxers amb \"%s\".", "%s shared multiple files with you." : "%s us ha compartit diversos fitxers.", "Boot up" : "Engegar", + "Nextcloud Initialization" : "Inicialització de Nextcloud", + "Circles App Initialisation" : "Inicialització de l'aplicació Cercles", "Fresh installation status" : "Estat d'instal·lació nou", "Building Local Database" : "Construint bases de dades local", "Testing Basic Circle Creation" : "Prova de creació de cercles bàsics", diff --git a/l10n/ca.json b/l10n/ca.json index 725886600..a6a9ba37f 100644 --- a/l10n/ca.json +++ b/l10n/ca.json @@ -118,6 +118,8 @@ "%s shared multiple files with \"%s\"." : "%s ha compartit diversos fitxers amb \"%s\".", "%s shared multiple files with you." : "%s us ha compartit diversos fitxers.", "Boot up" : "Engegar", + "Nextcloud Initialization" : "Inicialització de Nextcloud", + "Circles App Initialisation" : "Inicialització de l'aplicació Cercles", "Fresh installation status" : "Estat d'instal·lació nou", "Building Local Database" : "Construint bases de dades local", "Testing Basic Circle Creation" : "Prova de creació de cercles bàsics", diff --git a/l10n/eu.js b/l10n/eu.js index beb355483..b0e3f04ad 100644 --- a/l10n/eu.js +++ b/l10n/eu.js @@ -120,6 +120,8 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s(e)k fitxategi batzuk partekatu ditu \"%s\"-(r)ekin.", "%s shared multiple files with you." : "%s(e)k fitxategi batzuk partekatu ditu zurekin.", "Boot up" : "Abiarazi", + "Nextcloud Initialization" : "Nextcloud hastapena", + "Circles App Initialisation" : "Zirkuluak aplikazioaren hastapena", "Fresh installation status" : "Instalazio berriaren egoera", "Building Local Database" : "Datu-base lokala eraikitzen", "Testing Basic Circle Creation" : "Oinarrizko zirkulu sorrera probatzen", diff --git a/l10n/eu.json b/l10n/eu.json index d5c072b10..00d6978db 100644 --- a/l10n/eu.json +++ b/l10n/eu.json @@ -118,6 +118,8 @@ "%s shared multiple files with \"%s\"." : "%s(e)k fitxategi batzuk partekatu ditu \"%s\"-(r)ekin.", "%s shared multiple files with you." : "%s(e)k fitxategi batzuk partekatu ditu zurekin.", "Boot up" : "Abiarazi", + "Nextcloud Initialization" : "Nextcloud hastapena", + "Circles App Initialisation" : "Zirkuluak aplikazioaren hastapena", "Fresh installation status" : "Instalazio berriaren egoera", "Building Local Database" : "Datu-base lokala eraikitzen", "Testing Basic Circle Creation" : "Oinarrizko zirkulu sorrera probatzen", From d2ce199399ee0375f8bf03344d32a049354deb9d Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 8 Apr 2023 02:36:06 +0000 Subject: [PATCH 24/33] =?UTF-8?q?Fix(l10n):=20=F0=9F=94=A0=20Update=20tran?= =?UTF-8?q?slations=20from=20Transifex?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Nextcloud bot --- l10n/sl.js | 18 ++++++++++-------- l10n/sl.json | 18 ++++++++++-------- 2 files changed, 20 insertions(+), 16 deletions(-) diff --git a/l10n/sl.js b/l10n/sl.js index 3ed6dbd28..4e600d59f 100644 --- a/l10n/sl.js +++ b/l10n/sl.js @@ -44,7 +44,7 @@ OC.L10N.register( "{external} has been added to {circle} by {author}" : "{external} je avtor {author} dodal v članstvo kroga {circle}.", "You accepted {member}'s request to join {circle}" : "Sprejeli ste prošnjo člana {member} za pristop v krog {circle}", "Your request to join {circle} has been accepted by {author}" : "{author} sprejme vašo prošnjo za članstvo v krogu {circle}", - "{member}'s request to join {circle} has been accepted by {author}" : "{author} sprejme prošnjo člana {member} za članstvo v krogu {circle}", + "{member}'s request to join {circle} has been accepted by {author}" : "{author} sprejme prošnjo člana {member} za članstvo v krogu {circle}", "You left {circle}" : "Zapustite krog {circle}", "{member} left {circle}" : "{member} zapusti krog {circle}", "You declined the invitation to join {circle}" : "Zavrnete vabilo v krog {circle}", @@ -105,21 +105,23 @@ OC.L10N.register( "%s shared »%s« with you." : "%s vam omogoča souporabo »%s«.", "%s shared »%s« with \"%s\"." : "%s omogoči souporabo »%s« z »%s«.", "%s on %s" : "%s na %s", - "%1$s shared »%2$s« with you.\nYou should have already received a separate email with a link to access it.\n" : "%1$s vam omogoči souporabo »%2$s«.\nMorali bi že prejeti ločeno sporočilo s povezavo po elektronski pošti.\n", - "%1$s shared »%2$s« with you. You should have already received a separate email with a link to access it." : "%1$s vam omogoči souporabo »%2$s«.\nMorali bi že prejeti ločeno sporočilo s povezavo po elektronski pošti.", + "%1$s shared »%2$s« with you.\nYou should have already received a separate email with a link to access it.\n" : "%1$s vam omogoči souporabo »%2$s«.\nPo elektronski pošti bi že morali prejeti ločeno sporočilo s povezavo.\n", + "%1$s shared »%2$s« with you. You should have already received a separate email with a link to access it." : "%1$s vam omogoči souporabo »%2$s«.\nPo elektronski pošti bi že morali prejeti ločeno sporočilo s povezavo.", "Password to access »%1$s« shared to you by %2$s" : "%2$s vam pošilja geslo za dostop do datoteke »%1$s«.", "Password to access »%s«" : "Geslo za dostop do »%s«", "It is protected with the following password:" : "Zaščiten je z geslom:", "%1$s via %2$s" : "%1$s prek %2$s", "Click the button below to open it." : "Kliknite na gumb za odpiranje.", "Open »%s«" : "Odpri »%s«", - "%1$s shared multiple files with you.\nYou should have already received a separate email with a link to access them.\n" : "%1$s vam omogoča souporabo več datotek.\nPo elektronski pošti bi morali prejeti tudi sporočilo s povezavo.\n", - "%1$s shared multiple files with you. You should have already received a separate email with a link to access them." : "%1$s vam omogoča souporabo več datotek. Po elektronski pošti bi morali prejeti tudi sporočilo s povezavo.", + "%1$s shared multiple files with you.\nYou should have already received a separate email with a link to access them.\n" : "%1$s vam omogoča souporabo več datotek.\nPo elektronski pošti bi že morali prejeti ločeno sporočilo s povezavo.\n", + "%1$s shared multiple files with you. You should have already received a separate email with a link to access them." : "%1$s vam omogoča souporabo več datotek. Po elektronski pošti bi že morali prejeti ločeno sporočilo s povezavo.", "Password to access files shared to you by %1$s" : "%1$s vam pošilja geslo za dostop do datoteke v souporabi.", "Password to access files" : "Geslo za dostop do datotek", - "%s shared multiple files with \"%s\"." : "%s omogoči souporabo več datotek z uporabnikom \"%s\".", + "%s shared multiple files with \"%s\"." : "%s omogoči souporabo več datotek z uporabnikom »%s«.", "%s shared multiple files with you." : "%s vam omogoči souporabo več datotek.", "Boot up" : "Zaganjanje", + "Nextcloud Initialization" : "Zaganjanje oblaka Nextcloud", + "Circles App Initialisation" : "Zaganjanje programa Krogi", "Fresh installation status" : "Stanje sveže namestitve", "Building Local Database" : "Poteka izgradnja krajevne podatkovne zbirke", "Testing Basic Circle Creation" : "Preizkušanje ustvarjanja osnovnega kroga", @@ -164,8 +166,8 @@ OC.L10N.register( "Email format is not valid" : "Zapis elektronskega naslova ni veljaven", "This contact is not available" : "Ta stik ni na voljo.", "You have no permission to create a new circle" : "Ni ustreznih dovoljenj za ustvarjanje novega kroga.", - "%s shared a file with \"%s\"." : "%s omogoča souporabo datoteke z \"%s\".", - "%s shared a file with you." : "%s omogoča souporabo datoteke z vami.", + "%s shared a file with \"%s\"." : "%s omogoča souporabo datoteke z »%s«.", + "%s shared a file with you." : "%s vam omogoča souporabo datoteke.", "%1$s shared some content with you.\nYou should have already received a separate email with a link to access it.\n" : "%1$s vam omogoča souporabo vsebine.\nMorali bi že prejeti ločeno sporočilo s povezavo za dostop po elektronski pošti.\n", "%1$s shared some content with you. You should have already received a separate email with a link to access it." : "%1$s vam omogoča souporabo vsebine. Morali bi že prejeti ločeno sporočilo s povezavo za dostop po elektronski pošti.", "Password to access content shared with you by %1$s" : "%1$s vam pošilja geslo za dostop do vsebine v souporabi.", diff --git a/l10n/sl.json b/l10n/sl.json index e8beb596a..3fd010d0c 100644 --- a/l10n/sl.json +++ b/l10n/sl.json @@ -42,7 +42,7 @@ "{external} has been added to {circle} by {author}" : "{external} je avtor {author} dodal v članstvo kroga {circle}.", "You accepted {member}'s request to join {circle}" : "Sprejeli ste prošnjo člana {member} za pristop v krog {circle}", "Your request to join {circle} has been accepted by {author}" : "{author} sprejme vašo prošnjo za članstvo v krogu {circle}", - "{member}'s request to join {circle} has been accepted by {author}" : "{author} sprejme prošnjo člana {member} za članstvo v krogu {circle}", + "{member}'s request to join {circle} has been accepted by {author}" : "{author} sprejme prošnjo člana {member} za članstvo v krogu {circle}", "You left {circle}" : "Zapustite krog {circle}", "{member} left {circle}" : "{member} zapusti krog {circle}", "You declined the invitation to join {circle}" : "Zavrnete vabilo v krog {circle}", @@ -103,21 +103,23 @@ "%s shared »%s« with you." : "%s vam omogoča souporabo »%s«.", "%s shared »%s« with \"%s\"." : "%s omogoči souporabo »%s« z »%s«.", "%s on %s" : "%s na %s", - "%1$s shared »%2$s« with you.\nYou should have already received a separate email with a link to access it.\n" : "%1$s vam omogoči souporabo »%2$s«.\nMorali bi že prejeti ločeno sporočilo s povezavo po elektronski pošti.\n", - "%1$s shared »%2$s« with you. You should have already received a separate email with a link to access it." : "%1$s vam omogoči souporabo »%2$s«.\nMorali bi že prejeti ločeno sporočilo s povezavo po elektronski pošti.", + "%1$s shared »%2$s« with you.\nYou should have already received a separate email with a link to access it.\n" : "%1$s vam omogoči souporabo »%2$s«.\nPo elektronski pošti bi že morali prejeti ločeno sporočilo s povezavo.\n", + "%1$s shared »%2$s« with you. You should have already received a separate email with a link to access it." : "%1$s vam omogoči souporabo »%2$s«.\nPo elektronski pošti bi že morali prejeti ločeno sporočilo s povezavo.", "Password to access »%1$s« shared to you by %2$s" : "%2$s vam pošilja geslo za dostop do datoteke »%1$s«.", "Password to access »%s«" : "Geslo za dostop do »%s«", "It is protected with the following password:" : "Zaščiten je z geslom:", "%1$s via %2$s" : "%1$s prek %2$s", "Click the button below to open it." : "Kliknite na gumb za odpiranje.", "Open »%s«" : "Odpri »%s«", - "%1$s shared multiple files with you.\nYou should have already received a separate email with a link to access them.\n" : "%1$s vam omogoča souporabo več datotek.\nPo elektronski pošti bi morali prejeti tudi sporočilo s povezavo.\n", - "%1$s shared multiple files with you. You should have already received a separate email with a link to access them." : "%1$s vam omogoča souporabo več datotek. Po elektronski pošti bi morali prejeti tudi sporočilo s povezavo.", + "%1$s shared multiple files with you.\nYou should have already received a separate email with a link to access them.\n" : "%1$s vam omogoča souporabo več datotek.\nPo elektronski pošti bi že morali prejeti ločeno sporočilo s povezavo.\n", + "%1$s shared multiple files with you. You should have already received a separate email with a link to access them." : "%1$s vam omogoča souporabo več datotek. Po elektronski pošti bi že morali prejeti ločeno sporočilo s povezavo.", "Password to access files shared to you by %1$s" : "%1$s vam pošilja geslo za dostop do datoteke v souporabi.", "Password to access files" : "Geslo za dostop do datotek", - "%s shared multiple files with \"%s\"." : "%s omogoči souporabo več datotek z uporabnikom \"%s\".", + "%s shared multiple files with \"%s\"." : "%s omogoči souporabo več datotek z uporabnikom »%s«.", "%s shared multiple files with you." : "%s vam omogoči souporabo več datotek.", "Boot up" : "Zaganjanje", + "Nextcloud Initialization" : "Zaganjanje oblaka Nextcloud", + "Circles App Initialisation" : "Zaganjanje programa Krogi", "Fresh installation status" : "Stanje sveže namestitve", "Building Local Database" : "Poteka izgradnja krajevne podatkovne zbirke", "Testing Basic Circle Creation" : "Preizkušanje ustvarjanja osnovnega kroga", @@ -162,8 +164,8 @@ "Email format is not valid" : "Zapis elektronskega naslova ni veljaven", "This contact is not available" : "Ta stik ni na voljo.", "You have no permission to create a new circle" : "Ni ustreznih dovoljenj za ustvarjanje novega kroga.", - "%s shared a file with \"%s\"." : "%s omogoča souporabo datoteke z \"%s\".", - "%s shared a file with you." : "%s omogoča souporabo datoteke z vami.", + "%s shared a file with \"%s\"." : "%s omogoča souporabo datoteke z »%s«.", + "%s shared a file with you." : "%s vam omogoča souporabo datoteke.", "%1$s shared some content with you.\nYou should have already received a separate email with a link to access it.\n" : "%1$s vam omogoča souporabo vsebine.\nMorali bi že prejeti ločeno sporočilo s povezavo za dostop po elektronski pošti.\n", "%1$s shared some content with you. You should have already received a separate email with a link to access it." : "%1$s vam omogoča souporabo vsebine. Morali bi že prejeti ločeno sporočilo s povezavo za dostop po elektronski pošti.", "Password to access content shared with you by %1$s" : "%1$s vam pošilja geslo za dostop do vsebine v souporabi.", From 392146cc5e817fafc56c48382a2adda187f39c6a Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 13 Apr 2023 02:39:25 +0000 Subject: [PATCH 25/33] =?UTF-8?q?Fix(l10n):=20=F0=9F=94=A0=20Update=20tran?= =?UTF-8?q?slations=20from=20Transifex?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Nextcloud bot --- l10n/pl.js | 2 ++ l10n/pl.json | 2 ++ 2 files changed, 4 insertions(+) diff --git a/l10n/pl.js b/l10n/pl.js index aa6da8350..0f754d7d7 100644 --- a/l10n/pl.js +++ b/l10n/pl.js @@ -120,6 +120,8 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s udostępnił wiele plików z \"%s\".", "%s shared multiple files with you." : "%s udostępnił Tobie wiele plików.", "Boot up" : "Uruchom", + "Nextcloud Initialization" : "Inicjalizacja Nextcloud", + "Circles App Initialisation" : "Inicjalizacja aplikacji Circles", "Fresh installation status" : "Stan nowej instalacji", "Building Local Database" : "Tworzenie lokalnej bazy danych", "Testing Basic Circle Creation" : "Testowanie tworzenia podstawowego kręgu", diff --git a/l10n/pl.json b/l10n/pl.json index c6ef9e22b..a2d40c615 100644 --- a/l10n/pl.json +++ b/l10n/pl.json @@ -118,6 +118,8 @@ "%s shared multiple files with \"%s\"." : "%s udostępnił wiele plików z \"%s\".", "%s shared multiple files with you." : "%s udostępnił Tobie wiele plików.", "Boot up" : "Uruchom", + "Nextcloud Initialization" : "Inicjalizacja Nextcloud", + "Circles App Initialisation" : "Inicjalizacja aplikacji Circles", "Fresh installation status" : "Stan nowej instalacji", "Building Local Database" : "Tworzenie lokalnej bazy danych", "Testing Basic Circle Creation" : "Testowanie tworzenia podstawowego kręgu", From e79a71b1bccef7a9d70da202a282821bde7a9501 Mon Sep 17 00:00:00 2001 From: Maxence Lange Date: Thu, 13 Apr 2023 08:26:00 -0100 Subject: [PATCH 26/33] adding clearCacheConfig Signed-off-by: Maxence Lange --- lib/Command/CirclesCheck.php | 2 +- tests/psalm-baseline.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Command/CirclesCheck.php b/lib/Command/CirclesCheck.php index bb1334f61..6b0791012 100644 --- a/lib/Command/CirclesCheck.php +++ b/lib/Command/CirclesCheck.php @@ -544,7 +544,7 @@ private function checkInternal(InputInterface $input, OutputInterface $output, s $pastedSignatory->json(trim($helper->ask($input, $output, $question))); // small hack to refresh the cached config -// OC::$server->get(AppConfig::class)->clearCachedConfig(); + OC::$server->get(AppConfig::class)->clearCachedConfig(); $this->interfaceService->setCurrentInterface(InterfaceService::IFACE_TEST); $appSignatory = $this->remoteStreamService->getAppSignatory(false); diff --git a/tests/psalm-baseline.xml b/tests/psalm-baseline.xml index b5dd4c686..d10112595 100644 --- a/tests/psalm-baseline.xml +++ b/tests/psalm-baseline.xml @@ -55,7 +55,7 @@ - + AppConfig From b110864feb5e62dcaf9b13ed3132638a61200dcd Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 19 Apr 2023 02:35:49 +0000 Subject: [PATCH 27/33] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/bg.js | 1 - l10n/bg.json | 1 - l10n/ca.js | 1 - l10n/ca.json | 1 - l10n/cs.js | 1 - l10n/cs.json | 1 - l10n/da.js | 1 - l10n/da.json | 1 - l10n/de.js | 1 - l10n/de.json | 1 - l10n/de_DE.js | 1 - l10n/de_DE.json | 1 - l10n/en_GB.js | 1 - l10n/en_GB.json | 1 - l10n/es.js | 1 - l10n/es.json | 1 - l10n/eu.js | 1 - l10n/eu.json | 1 - l10n/fr.js | 1 - l10n/fr.json | 1 - l10n/gl.js | 1 - l10n/gl.json | 1 - l10n/hu.js | 1 - l10n/hu.json | 1 - l10n/pl.js | 1 - l10n/pl.json | 1 - l10n/pt_BR.js | 1 - l10n/pt_BR.json | 1 - l10n/ru.js | 1 - l10n/ru.json | 1 - l10n/sl.js | 1 - l10n/sl.json | 1 - l10n/sr.js | 1 - l10n/sr.json | 1 - l10n/sv.js | 1 - l10n/sv.json | 1 - l10n/tr.js | 1 - l10n/tr.json | 1 - l10n/zh_HK.js | 1 - l10n/zh_HK.json | 1 - l10n/zh_TW.js | 1 - l10n/zh_TW.json | 1 - 42 files changed, 42 deletions(-) diff --git a/l10n/bg.js b/l10n/bg.js index 548debe1d..e33fe58e8 100644 --- a/l10n/bg.js +++ b/l10n/bg.js @@ -121,7 +121,6 @@ OC.L10N.register( "%s shared multiple files with you." : "%sсподелени множество файлове с вас", "Boot up" : "Стартиране", "Nextcloud Initialization" : "Инициализация на Nextcloud", - "Circles App Initialisation" : "Инициализация на приложението Circles /кръгове/", "Fresh installation status" : "Състояние на нова инсталация", "Building Local Database" : "Изграждане на Локална База Данни", "Testing Basic Circle Creation" : "Тестване на създаването на основен кръг", diff --git a/l10n/bg.json b/l10n/bg.json index 68426355b..69d3aae24 100644 --- a/l10n/bg.json +++ b/l10n/bg.json @@ -119,7 +119,6 @@ "%s shared multiple files with you." : "%sсподелени множество файлове с вас", "Boot up" : "Стартиране", "Nextcloud Initialization" : "Инициализация на Nextcloud", - "Circles App Initialisation" : "Инициализация на приложението Circles /кръгове/", "Fresh installation status" : "Състояние на нова инсталация", "Building Local Database" : "Изграждане на Локална База Данни", "Testing Basic Circle Creation" : "Тестване на създаването на основен кръг", diff --git a/l10n/ca.js b/l10n/ca.js index 940f604c3..21348cd4e 100644 --- a/l10n/ca.js +++ b/l10n/ca.js @@ -121,7 +121,6 @@ OC.L10N.register( "%s shared multiple files with you." : "%s us ha compartit diversos fitxers.", "Boot up" : "Engegar", "Nextcloud Initialization" : "Inicialització de Nextcloud", - "Circles App Initialisation" : "Inicialització de l'aplicació Cercles", "Fresh installation status" : "Estat d'instal·lació nou", "Building Local Database" : "Construint bases de dades local", "Testing Basic Circle Creation" : "Prova de creació de cercles bàsics", diff --git a/l10n/ca.json b/l10n/ca.json index a6a9ba37f..ef43e39d3 100644 --- a/l10n/ca.json +++ b/l10n/ca.json @@ -119,7 +119,6 @@ "%s shared multiple files with you." : "%s us ha compartit diversos fitxers.", "Boot up" : "Engegar", "Nextcloud Initialization" : "Inicialització de Nextcloud", - "Circles App Initialisation" : "Inicialització de l'aplicació Cercles", "Fresh installation status" : "Estat d'instal·lació nou", "Building Local Database" : "Construint bases de dades local", "Testing Basic Circle Creation" : "Prova de creació de cercles bàsics", diff --git a/l10n/cs.js b/l10n/cs.js index 8f3ab5a43..45e3c0aac 100644 --- a/l10n/cs.js +++ b/l10n/cs.js @@ -121,7 +121,6 @@ OC.L10N.register( "%s shared multiple files with you." : "%s vám nasdílel(a) vícero souborů.", "Boot up" : "Nastartovat", "Nextcloud Initialization" : "Inicializace Nextcloud", - "Circles App Initialisation" : "Inicializace aplikace Okruhy", "Fresh installation status" : "Stav čisté instalace", "Building Local Database" : "Vytváří se místní databáze", "Testing Basic Circle Creation" : "Zkouší se vytvoření základního okruhu", diff --git a/l10n/cs.json b/l10n/cs.json index af507a017..b7449d25f 100644 --- a/l10n/cs.json +++ b/l10n/cs.json @@ -119,7 +119,6 @@ "%s shared multiple files with you." : "%s vám nasdílel(a) vícero souborů.", "Boot up" : "Nastartovat", "Nextcloud Initialization" : "Inicializace Nextcloud", - "Circles App Initialisation" : "Inicializace aplikace Okruhy", "Fresh installation status" : "Stav čisté instalace", "Building Local Database" : "Vytváří se místní databáze", "Testing Basic Circle Creation" : "Zkouší se vytvoření základního okruhu", diff --git a/l10n/da.js b/l10n/da.js index 8501e7e90..da49c8a04 100644 --- a/l10n/da.js +++ b/l10n/da.js @@ -121,7 +121,6 @@ OC.L10N.register( "%s shared multiple files with you." : "%s delte flere filer med dig.", "Boot up" : "Start", "Nextcloud Initialization" : "Nextcloud initialisering", - "Circles App Initialisation" : "Circles App initialisering", "Fresh installation status" : "Installationsstatus", "Building Local Database" : "Opsætning af lokal database", "Testing Basic Circle Creation" : "Test af grundlæggende cirkeloprettelse", diff --git a/l10n/da.json b/l10n/da.json index 4a53542c3..f69aba8b5 100644 --- a/l10n/da.json +++ b/l10n/da.json @@ -119,7 +119,6 @@ "%s shared multiple files with you." : "%s delte flere filer med dig.", "Boot up" : "Start", "Nextcloud Initialization" : "Nextcloud initialisering", - "Circles App Initialisation" : "Circles App initialisering", "Fresh installation status" : "Installationsstatus", "Building Local Database" : "Opsætning af lokal database", "Testing Basic Circle Creation" : "Test af grundlæggende cirkeloprettelse", diff --git a/l10n/de.js b/l10n/de.js index e24e6b838..3d704f909 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -121,7 +121,6 @@ OC.L10N.register( "%s shared multiple files with you." : "%s hat mehrere Dateien mit dir geteilt.", "Boot up" : "Hochfahren", "Nextcloud Initialization" : "Nextcloud-Initialisierung", - "Circles App Initialisation" : "Kreise-App-Initialisierung", "Fresh installation status" : "Aktueller Initialisierungsstatus", "Building Local Database" : "Lokale Datenbank wird erstellt", "Testing Basic Circle Creation" : "Testen der grundlegenden Kreiserstellung", diff --git a/l10n/de.json b/l10n/de.json index dae93ec39..98a41afe2 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -119,7 +119,6 @@ "%s shared multiple files with you." : "%s hat mehrere Dateien mit dir geteilt.", "Boot up" : "Hochfahren", "Nextcloud Initialization" : "Nextcloud-Initialisierung", - "Circles App Initialisation" : "Kreise-App-Initialisierung", "Fresh installation status" : "Aktueller Initialisierungsstatus", "Building Local Database" : "Lokale Datenbank wird erstellt", "Testing Basic Circle Creation" : "Testen der grundlegenden Kreiserstellung", diff --git a/l10n/de_DE.js b/l10n/de_DE.js index 43aae04eb..6cdeaebdb 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -121,7 +121,6 @@ OC.L10N.register( "%s shared multiple files with you." : "%s hat mehrere Dateien mit Ihnen geteilt.", "Boot up" : "Hochfahren", "Nextcloud Initialization" : "Nextcloud-Initialisierung", - "Circles App Initialisation" : "Kreise-App-Initialisierung", "Fresh installation status" : "Aktueller Initialisierungsstatus", "Building Local Database" : "Lokale Datenbank wird erstellt", "Testing Basic Circle Creation" : "Testen der grundlegenden Kreiserstellung", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index b889fc57d..7f766181c 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -119,7 +119,6 @@ "%s shared multiple files with you." : "%s hat mehrere Dateien mit Ihnen geteilt.", "Boot up" : "Hochfahren", "Nextcloud Initialization" : "Nextcloud-Initialisierung", - "Circles App Initialisation" : "Kreise-App-Initialisierung", "Fresh installation status" : "Aktueller Initialisierungsstatus", "Building Local Database" : "Lokale Datenbank wird erstellt", "Testing Basic Circle Creation" : "Testen der grundlegenden Kreiserstellung", diff --git a/l10n/en_GB.js b/l10n/en_GB.js index e39f76204..c96f9be16 100644 --- a/l10n/en_GB.js +++ b/l10n/en_GB.js @@ -121,7 +121,6 @@ OC.L10N.register( "%s shared multiple files with you." : "%s shared multiple files with you.", "Boot up" : "Boot up", "Nextcloud Initialization" : "Nextcloud Initialisation", - "Circles App Initialisation" : "Circles App Initialisation", "Fresh installation status" : "Fresh installation status", "Building Local Database" : "Building Local Database", "Testing Basic Circle Creation" : "Testing Basic Circle Creation", diff --git a/l10n/en_GB.json b/l10n/en_GB.json index 8e6ac5c0d..68bb4c599 100644 --- a/l10n/en_GB.json +++ b/l10n/en_GB.json @@ -119,7 +119,6 @@ "%s shared multiple files with you." : "%s shared multiple files with you.", "Boot up" : "Boot up", "Nextcloud Initialization" : "Nextcloud Initialisation", - "Circles App Initialisation" : "Circles App Initialisation", "Fresh installation status" : "Fresh installation status", "Building Local Database" : "Building Local Database", "Testing Basic Circle Creation" : "Testing Basic Circle Creation", diff --git a/l10n/es.js b/l10n/es.js index 58e1162e6..644e10851 100644 --- a/l10n/es.js +++ b/l10n/es.js @@ -121,7 +121,6 @@ OC.L10N.register( "%s shared multiple files with you." : "%s ha compartido varios archivos contigo.", "Boot up" : "Arrancar", "Nextcloud Initialization" : "Inicialización de Nextcloud", - "Circles App Initialisation" : "Inicialización de la app Circles", "Fresh installation status" : "Estado de la nueva instalación", "Building Local Database" : "Creando la Base de Datos Local", "Testing Basic Circle Creation" : "Prueba básica de creación de círculos", diff --git a/l10n/es.json b/l10n/es.json index 978f76332..d9d3d224d 100644 --- a/l10n/es.json +++ b/l10n/es.json @@ -119,7 +119,6 @@ "%s shared multiple files with you." : "%s ha compartido varios archivos contigo.", "Boot up" : "Arrancar", "Nextcloud Initialization" : "Inicialización de Nextcloud", - "Circles App Initialisation" : "Inicialización de la app Circles", "Fresh installation status" : "Estado de la nueva instalación", "Building Local Database" : "Creando la Base de Datos Local", "Testing Basic Circle Creation" : "Prueba básica de creación de círculos", diff --git a/l10n/eu.js b/l10n/eu.js index b0e3f04ad..0d8b717c8 100644 --- a/l10n/eu.js +++ b/l10n/eu.js @@ -121,7 +121,6 @@ OC.L10N.register( "%s shared multiple files with you." : "%s(e)k fitxategi batzuk partekatu ditu zurekin.", "Boot up" : "Abiarazi", "Nextcloud Initialization" : "Nextcloud hastapena", - "Circles App Initialisation" : "Zirkuluak aplikazioaren hastapena", "Fresh installation status" : "Instalazio berriaren egoera", "Building Local Database" : "Datu-base lokala eraikitzen", "Testing Basic Circle Creation" : "Oinarrizko zirkulu sorrera probatzen", diff --git a/l10n/eu.json b/l10n/eu.json index 00d6978db..6b8eabd6d 100644 --- a/l10n/eu.json +++ b/l10n/eu.json @@ -119,7 +119,6 @@ "%s shared multiple files with you." : "%s(e)k fitxategi batzuk partekatu ditu zurekin.", "Boot up" : "Abiarazi", "Nextcloud Initialization" : "Nextcloud hastapena", - "Circles App Initialisation" : "Zirkuluak aplikazioaren hastapena", "Fresh installation status" : "Instalazio berriaren egoera", "Building Local Database" : "Datu-base lokala eraikitzen", "Testing Basic Circle Creation" : "Oinarrizko zirkulu sorrera probatzen", diff --git a/l10n/fr.js b/l10n/fr.js index 87c671ebb..1c7d767d8 100644 --- a/l10n/fr.js +++ b/l10n/fr.js @@ -121,7 +121,6 @@ OC.L10N.register( "%s shared multiple files with you." : "%s a partagé plusieurs fichiers avec vous.", "Boot up" : "Démarrage", "Nextcloud Initialization" : "Initialisation de Nexctcloud", - "Circles App Initialisation" : "Initialisation de l'application Cercles", "Fresh installation status" : "Statut de l'installation", "Building Local Database" : "Construction de la base de données locale", "Testing Basic Circle Creation" : "Test de création d'un cercle basique", diff --git a/l10n/fr.json b/l10n/fr.json index c63499f2a..4eab1968a 100644 --- a/l10n/fr.json +++ b/l10n/fr.json @@ -119,7 +119,6 @@ "%s shared multiple files with you." : "%s a partagé plusieurs fichiers avec vous.", "Boot up" : "Démarrage", "Nextcloud Initialization" : "Initialisation de Nexctcloud", - "Circles App Initialisation" : "Initialisation de l'application Cercles", "Fresh installation status" : "Statut de l'installation", "Building Local Database" : "Construction de la base de données locale", "Testing Basic Circle Creation" : "Test de création d'un cercle basique", diff --git a/l10n/gl.js b/l10n/gl.js index 4b21a1ab0..9dbfb814e 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -121,7 +121,6 @@ OC.L10N.register( "%s shared multiple files with you." : "%s compartiu varios ficheiros con vostede.", "Boot up" : "Arrancar", "Nextcloud Initialization" : "Inicialización de Nextcloud", - "Circles App Initialisation" : "Inicialización da Aplicación Círculos", "Fresh installation status" : "Estado da nova instalación", "Building Local Database" : "Creando Base de Datos Local", "Testing Basic Circle Creation" : "Proba de Creación de Círculos Básica", diff --git a/l10n/gl.json b/l10n/gl.json index 239cbe3bb..8d5e958b5 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -119,7 +119,6 @@ "%s shared multiple files with you." : "%s compartiu varios ficheiros con vostede.", "Boot up" : "Arrancar", "Nextcloud Initialization" : "Inicialización de Nextcloud", - "Circles App Initialisation" : "Inicialización da Aplicación Círculos", "Fresh installation status" : "Estado da nova instalación", "Building Local Database" : "Creando Base de Datos Local", "Testing Basic Circle Creation" : "Proba de Creación de Círculos Básica", diff --git a/l10n/hu.js b/l10n/hu.js index 747a62146..3ba3e3413 100644 --- a/l10n/hu.js +++ b/l10n/hu.js @@ -121,7 +121,6 @@ OC.L10N.register( "%s shared multiple files with you." : "%s több fájlt osztott meg Önnel.", "Boot up" : "Rendszerindítás", "Nextcloud Initialization" : "A Nextcloud előkészítése", - "Circles App Initialisation" : "A Körök alkalmazás előkészítése", "Fresh installation status" : "Friss előkészítési állapot", "Building Local Database" : "Helyi adatbázis építése", "Testing Basic Circle Creation" : "Alapvető körlétrehozás tesztelése", diff --git a/l10n/hu.json b/l10n/hu.json index c9509400d..3989cd310 100644 --- a/l10n/hu.json +++ b/l10n/hu.json @@ -119,7 +119,6 @@ "%s shared multiple files with you." : "%s több fájlt osztott meg Önnel.", "Boot up" : "Rendszerindítás", "Nextcloud Initialization" : "A Nextcloud előkészítése", - "Circles App Initialisation" : "A Körök alkalmazás előkészítése", "Fresh installation status" : "Friss előkészítési állapot", "Building Local Database" : "Helyi adatbázis építése", "Testing Basic Circle Creation" : "Alapvető körlétrehozás tesztelése", diff --git a/l10n/pl.js b/l10n/pl.js index 0f754d7d7..fe8be273b 100644 --- a/l10n/pl.js +++ b/l10n/pl.js @@ -121,7 +121,6 @@ OC.L10N.register( "%s shared multiple files with you." : "%s udostępnił Tobie wiele plików.", "Boot up" : "Uruchom", "Nextcloud Initialization" : "Inicjalizacja Nextcloud", - "Circles App Initialisation" : "Inicjalizacja aplikacji Circles", "Fresh installation status" : "Stan nowej instalacji", "Building Local Database" : "Tworzenie lokalnej bazy danych", "Testing Basic Circle Creation" : "Testowanie tworzenia podstawowego kręgu", diff --git a/l10n/pl.json b/l10n/pl.json index a2d40c615..53f0202ae 100644 --- a/l10n/pl.json +++ b/l10n/pl.json @@ -119,7 +119,6 @@ "%s shared multiple files with you." : "%s udostępnił Tobie wiele plików.", "Boot up" : "Uruchom", "Nextcloud Initialization" : "Inicjalizacja Nextcloud", - "Circles App Initialisation" : "Inicjalizacja aplikacji Circles", "Fresh installation status" : "Stan nowej instalacji", "Building Local Database" : "Tworzenie lokalnej bazy danych", "Testing Basic Circle Creation" : "Testowanie tworzenia podstawowego kręgu", diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index 2be4daa57..627c8dd76 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -121,7 +121,6 @@ OC.L10N.register( "%s shared multiple files with you." : "%s compartilhou vários arquivos com você. ", "Boot up" : "Inicializar", "Nextcloud Initialization" : "Nextcloud Initialization", - "Circles App Initialisation" : "Circles App Initialisation", "Fresh installation status" : "Novo status de instalação", "Building Local Database" : "Construindo banco de dados local", "Testing Basic Circle Creation" : "Teste básico de criação de círculo", diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index 6ed95bf5d..ac769f9e8 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -119,7 +119,6 @@ "%s shared multiple files with you." : "%s compartilhou vários arquivos com você. ", "Boot up" : "Inicializar", "Nextcloud Initialization" : "Nextcloud Initialization", - "Circles App Initialisation" : "Circles App Initialisation", "Fresh installation status" : "Novo status de instalação", "Building Local Database" : "Construindo banco de dados local", "Testing Basic Circle Creation" : "Teste básico de criação de círculo", diff --git a/l10n/ru.js b/l10n/ru.js index 065a59426..49d4e7b9c 100644 --- a/l10n/ru.js +++ b/l10n/ru.js @@ -121,7 +121,6 @@ OC.L10N.register( "%s shared multiple files with you." : "%s предоставил(а) вам доступ к нескольким файлам.", "Boot up" : "Загрузка", "Nextcloud Initialization" : "Инициализация Nextcloud", - "Circles App Initialisation" : "Инициализация приложения «Круги»", "Fresh installation status" : "Статус новой установки", "Building Local Database" : "Создание локальной базы данных", "Testing Basic Circle Creation" : "Тестирование базового созданного Круга", diff --git a/l10n/ru.json b/l10n/ru.json index 6501a24ad..1f22723c0 100644 --- a/l10n/ru.json +++ b/l10n/ru.json @@ -119,7 +119,6 @@ "%s shared multiple files with you." : "%s предоставил(а) вам доступ к нескольким файлам.", "Boot up" : "Загрузка", "Nextcloud Initialization" : "Инициализация Nextcloud", - "Circles App Initialisation" : "Инициализация приложения «Круги»", "Fresh installation status" : "Статус новой установки", "Building Local Database" : "Создание локальной базы данных", "Testing Basic Circle Creation" : "Тестирование базового созданного Круга", diff --git a/l10n/sl.js b/l10n/sl.js index 4e600d59f..c29361a72 100644 --- a/l10n/sl.js +++ b/l10n/sl.js @@ -121,7 +121,6 @@ OC.L10N.register( "%s shared multiple files with you." : "%s vam omogoči souporabo več datotek.", "Boot up" : "Zaganjanje", "Nextcloud Initialization" : "Zaganjanje oblaka Nextcloud", - "Circles App Initialisation" : "Zaganjanje programa Krogi", "Fresh installation status" : "Stanje sveže namestitve", "Building Local Database" : "Poteka izgradnja krajevne podatkovne zbirke", "Testing Basic Circle Creation" : "Preizkušanje ustvarjanja osnovnega kroga", diff --git a/l10n/sl.json b/l10n/sl.json index 3fd010d0c..701e3d94b 100644 --- a/l10n/sl.json +++ b/l10n/sl.json @@ -119,7 +119,6 @@ "%s shared multiple files with you." : "%s vam omogoči souporabo več datotek.", "Boot up" : "Zaganjanje", "Nextcloud Initialization" : "Zaganjanje oblaka Nextcloud", - "Circles App Initialisation" : "Zaganjanje programa Krogi", "Fresh installation status" : "Stanje sveže namestitve", "Building Local Database" : "Poteka izgradnja krajevne podatkovne zbirke", "Testing Basic Circle Creation" : "Preizkušanje ustvarjanja osnovnega kroga", diff --git a/l10n/sr.js b/l10n/sr.js index ceb464954..a7131e017 100644 --- a/l10n/sr.js +++ b/l10n/sr.js @@ -121,7 +121,6 @@ OC.L10N.register( "%s shared multiple files with you." : "%s је поделио више фајлова са Вама.", "Boot up" : "Подизање система", "Nextcloud Initialization" : "Nextcloud иницијализација", - "Circles App Initialisation" : "Иницијализација апликације Кругови", "Fresh installation status" : "Статус свеже инсталације", "Building Local Database" : "Изградња локалне базе података", "Testing Basic Circle Creation" : "Тестирање креирања основног круга", diff --git a/l10n/sr.json b/l10n/sr.json index b4cb82377..8a36221a7 100644 --- a/l10n/sr.json +++ b/l10n/sr.json @@ -119,7 +119,6 @@ "%s shared multiple files with you." : "%s је поделио више фајлова са Вама.", "Boot up" : "Подизање система", "Nextcloud Initialization" : "Nextcloud иницијализација", - "Circles App Initialisation" : "Иницијализација апликације Кругови", "Fresh installation status" : "Статус свеже инсталације", "Building Local Database" : "Изградња локалне базе података", "Testing Basic Circle Creation" : "Тестирање креирања основног круга", diff --git a/l10n/sv.js b/l10n/sv.js index cdb752e4b..d52d93ea0 100644 --- a/l10n/sv.js +++ b/l10n/sv.js @@ -121,7 +121,6 @@ OC.L10N.register( "%s shared multiple files with you." : "%s delade flera filer med dig.", "Boot up" : "Uppstart", "Nextcloud Initialization" : "Nextcloud-initiering", - "Circles App Initialisation" : "Circles App-initiering", "Fresh installation status" : "Nyinstallationsstatus", "Building Local Database" : "Bygger lokal databas", "Testing Basic Circle Creation" : "Testar grundläggande Cirkel-skapande", diff --git a/l10n/sv.json b/l10n/sv.json index 0218b63e8..bffdd6604 100644 --- a/l10n/sv.json +++ b/l10n/sv.json @@ -119,7 +119,6 @@ "%s shared multiple files with you." : "%s delade flera filer med dig.", "Boot up" : "Uppstart", "Nextcloud Initialization" : "Nextcloud-initiering", - "Circles App Initialisation" : "Circles App-initiering", "Fresh installation status" : "Nyinstallationsstatus", "Building Local Database" : "Bygger lokal databas", "Testing Basic Circle Creation" : "Testar grundläggande Cirkel-skapande", diff --git a/l10n/tr.js b/l10n/tr.js index de3dd3447..6b45ea108 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -121,7 +121,6 @@ OC.L10N.register( "%s shared multiple files with you." : "%s sizinle birkaç dosya paylaştı.", "Boot up" : "Başlatma", "Nextcloud Initialization" : "Nextcloud başlatılıyor", - "Circles App Initialisation" : "Çevreler uygulaması başlatılıyor", "Fresh installation status" : "Yeni kurulum durumu", "Building Local Database" : "Yerel veri tabanı oluşturuluyor", "Testing Basic Circle Creation" : "Temel çevre oluşturma sınanıyor", diff --git a/l10n/tr.json b/l10n/tr.json index ee9e01725..405c5bba2 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -119,7 +119,6 @@ "%s shared multiple files with you." : "%s sizinle birkaç dosya paylaştı.", "Boot up" : "Başlatma", "Nextcloud Initialization" : "Nextcloud başlatılıyor", - "Circles App Initialisation" : "Çevreler uygulaması başlatılıyor", "Fresh installation status" : "Yeni kurulum durumu", "Building Local Database" : "Yerel veri tabanı oluşturuluyor", "Testing Basic Circle Creation" : "Temel çevre oluşturma sınanıyor", diff --git a/l10n/zh_HK.js b/l10n/zh_HK.js index b891bcb96..1a9352803 100644 --- a/l10n/zh_HK.js +++ b/l10n/zh_HK.js @@ -121,7 +121,6 @@ OC.L10N.register( "%s shared multiple files with you." : "%s 對您共享了多個文件。", "Boot up" : "啟動", "Nextcloud Initialization" : "初始 Nextcloud", - "Circles App Initialisation" : "初始 Circles 應用程式", "Fresh installation status" : "全新安裝狀態", "Building Local Database" : "建立近端數據庫", "Testing Basic Circle Creation" : "測試基本圈子創建", diff --git a/l10n/zh_HK.json b/l10n/zh_HK.json index 218819a5f..8b5f81f68 100644 --- a/l10n/zh_HK.json +++ b/l10n/zh_HK.json @@ -119,7 +119,6 @@ "%s shared multiple files with you." : "%s 對您共享了多個文件。", "Boot up" : "啟動", "Nextcloud Initialization" : "初始 Nextcloud", - "Circles App Initialisation" : "初始 Circles 應用程式", "Fresh installation status" : "全新安裝狀態", "Building Local Database" : "建立近端數據庫", "Testing Basic Circle Creation" : "測試基本圈子創建", diff --git a/l10n/zh_TW.js b/l10n/zh_TW.js index a5946a470..958f952a9 100644 --- a/l10n/zh_TW.js +++ b/l10n/zh_TW.js @@ -121,7 +121,6 @@ OC.L10N.register( "%s shared multiple files with you." : "%s 與您分享了多個檔案。", "Boot up" : "啟動", "Nextcloud Initialization" : "Nextcloud 初始化", - "Circles App Initialisation" : "小圈圈應用程式初始化", "Fresh installation status" : "全新安裝狀態", "Building Local Database" : "正在建構本地資料庫", "Testing Basic Circle Creation" : "正在測試基本小圈圈建立", diff --git a/l10n/zh_TW.json b/l10n/zh_TW.json index e2a9b8268..7b586f2d9 100644 --- a/l10n/zh_TW.json +++ b/l10n/zh_TW.json @@ -119,7 +119,6 @@ "%s shared multiple files with you." : "%s 與您分享了多個檔案。", "Boot up" : "啟動", "Nextcloud Initialization" : "Nextcloud 初始化", - "Circles App Initialisation" : "小圈圈應用程式初始化", "Fresh installation status" : "全新安裝狀態", "Building Local Database" : "正在建構本地資料庫", "Testing Basic Circle Creation" : "正在測試基本小圈圈建立", From 035b65ebd7c5102f7bac19efa0bff9685b008d12 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 20 Apr 2023 02:36:23 +0000 Subject: [PATCH 28/33] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/de_DE.js | 1 + l10n/de_DE.json | 1 + l10n/en_GB.js | 1 + l10n/en_GB.json | 1 + l10n/ru.js | 1 + l10n/ru.json | 1 + l10n/sr.js | 1 + l10n/sr.json | 1 + l10n/sv.js | 1 + l10n/sv.json | 1 + l10n/zh_HK.js | 1 + l10n/zh_HK.json | 1 + l10n/zh_TW.js | 1 + l10n/zh_TW.json | 1 + 14 files changed, 14 insertions(+) diff --git a/l10n/de_DE.js b/l10n/de_DE.js index 6cdeaebdb..82cb70028 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -121,6 +121,7 @@ OC.L10N.register( "%s shared multiple files with you." : "%s hat mehrere Dateien mit Ihnen geteilt.", "Boot up" : "Hochfahren", "Nextcloud Initialization" : "Nextcloud-Initialisierung", + "Circles App Initialization" : "Kreise-App-Initialisierung", "Fresh installation status" : "Aktueller Initialisierungsstatus", "Building Local Database" : "Lokale Datenbank wird erstellt", "Testing Basic Circle Creation" : "Testen der grundlegenden Kreiserstellung", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index 7f766181c..7bfccb5c5 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -119,6 +119,7 @@ "%s shared multiple files with you." : "%s hat mehrere Dateien mit Ihnen geteilt.", "Boot up" : "Hochfahren", "Nextcloud Initialization" : "Nextcloud-Initialisierung", + "Circles App Initialization" : "Kreise-App-Initialisierung", "Fresh installation status" : "Aktueller Initialisierungsstatus", "Building Local Database" : "Lokale Datenbank wird erstellt", "Testing Basic Circle Creation" : "Testen der grundlegenden Kreiserstellung", diff --git a/l10n/en_GB.js b/l10n/en_GB.js index c96f9be16..349a9db6d 100644 --- a/l10n/en_GB.js +++ b/l10n/en_GB.js @@ -121,6 +121,7 @@ OC.L10N.register( "%s shared multiple files with you." : "%s shared multiple files with you.", "Boot up" : "Boot up", "Nextcloud Initialization" : "Nextcloud Initialisation", + "Circles App Initialization" : "Circles App Initialisation", "Fresh installation status" : "Fresh installation status", "Building Local Database" : "Building Local Database", "Testing Basic Circle Creation" : "Testing Basic Circle Creation", diff --git a/l10n/en_GB.json b/l10n/en_GB.json index 68bb4c599..ff7c35fe6 100644 --- a/l10n/en_GB.json +++ b/l10n/en_GB.json @@ -119,6 +119,7 @@ "%s shared multiple files with you." : "%s shared multiple files with you.", "Boot up" : "Boot up", "Nextcloud Initialization" : "Nextcloud Initialisation", + "Circles App Initialization" : "Circles App Initialisation", "Fresh installation status" : "Fresh installation status", "Building Local Database" : "Building Local Database", "Testing Basic Circle Creation" : "Testing Basic Circle Creation", diff --git a/l10n/ru.js b/l10n/ru.js index 49d4e7b9c..965962a95 100644 --- a/l10n/ru.js +++ b/l10n/ru.js @@ -121,6 +121,7 @@ OC.L10N.register( "%s shared multiple files with you." : "%s предоставил(а) вам доступ к нескольким файлам.", "Boot up" : "Загрузка", "Nextcloud Initialization" : "Инициализация Nextcloud", + "Circles App Initialization" : "Инициализация приложения \"Круги\"", "Fresh installation status" : "Статус новой установки", "Building Local Database" : "Создание локальной базы данных", "Testing Basic Circle Creation" : "Тестирование базового созданного Круга", diff --git a/l10n/ru.json b/l10n/ru.json index 1f22723c0..8482f6ef9 100644 --- a/l10n/ru.json +++ b/l10n/ru.json @@ -119,6 +119,7 @@ "%s shared multiple files with you." : "%s предоставил(а) вам доступ к нескольким файлам.", "Boot up" : "Загрузка", "Nextcloud Initialization" : "Инициализация Nextcloud", + "Circles App Initialization" : "Инициализация приложения \"Круги\"", "Fresh installation status" : "Статус новой установки", "Building Local Database" : "Создание локальной базы данных", "Testing Basic Circle Creation" : "Тестирование базового созданного Круга", diff --git a/l10n/sr.js b/l10n/sr.js index a7131e017..a8e7b2b8f 100644 --- a/l10n/sr.js +++ b/l10n/sr.js @@ -121,6 +121,7 @@ OC.L10N.register( "%s shared multiple files with you." : "%s је поделио више фајлова са Вама.", "Boot up" : "Подизање система", "Nextcloud Initialization" : "Nextcloud иницијализација", + "Circles App Initialization" : "Иницијализација апликације Кругови", "Fresh installation status" : "Статус свеже инсталације", "Building Local Database" : "Изградња локалне базе података", "Testing Basic Circle Creation" : "Тестирање креирања основног круга", diff --git a/l10n/sr.json b/l10n/sr.json index 8a36221a7..6830edb20 100644 --- a/l10n/sr.json +++ b/l10n/sr.json @@ -119,6 +119,7 @@ "%s shared multiple files with you." : "%s је поделио више фајлова са Вама.", "Boot up" : "Подизање система", "Nextcloud Initialization" : "Nextcloud иницијализација", + "Circles App Initialization" : "Иницијализација апликације Кругови", "Fresh installation status" : "Статус свеже инсталације", "Building Local Database" : "Изградња локалне базе података", "Testing Basic Circle Creation" : "Тестирање креирања основног круга", diff --git a/l10n/sv.js b/l10n/sv.js index d52d93ea0..4d94f83f8 100644 --- a/l10n/sv.js +++ b/l10n/sv.js @@ -121,6 +121,7 @@ OC.L10N.register( "%s shared multiple files with you." : "%s delade flera filer med dig.", "Boot up" : "Uppstart", "Nextcloud Initialization" : "Nextcloud-initiering", + "Circles App Initialization" : "Cirklar appinitiering", "Fresh installation status" : "Nyinstallationsstatus", "Building Local Database" : "Bygger lokal databas", "Testing Basic Circle Creation" : "Testar grundläggande Cirkel-skapande", diff --git a/l10n/sv.json b/l10n/sv.json index bffdd6604..ac74a3ec0 100644 --- a/l10n/sv.json +++ b/l10n/sv.json @@ -119,6 +119,7 @@ "%s shared multiple files with you." : "%s delade flera filer med dig.", "Boot up" : "Uppstart", "Nextcloud Initialization" : "Nextcloud-initiering", + "Circles App Initialization" : "Cirklar appinitiering", "Fresh installation status" : "Nyinstallationsstatus", "Building Local Database" : "Bygger lokal databas", "Testing Basic Circle Creation" : "Testar grundläggande Cirkel-skapande", diff --git a/l10n/zh_HK.js b/l10n/zh_HK.js index 1a9352803..e2b812ff9 100644 --- a/l10n/zh_HK.js +++ b/l10n/zh_HK.js @@ -121,6 +121,7 @@ OC.L10N.register( "%s shared multiple files with you." : "%s 對您共享了多個文件。", "Boot up" : "啟動", "Nextcloud Initialization" : "初始 Nextcloud", + "Circles App Initialization" : "初始 Circles 應用程式", "Fresh installation status" : "全新安裝狀態", "Building Local Database" : "建立近端數據庫", "Testing Basic Circle Creation" : "測試基本圈子創建", diff --git a/l10n/zh_HK.json b/l10n/zh_HK.json index 8b5f81f68..74d567e55 100644 --- a/l10n/zh_HK.json +++ b/l10n/zh_HK.json @@ -119,6 +119,7 @@ "%s shared multiple files with you." : "%s 對您共享了多個文件。", "Boot up" : "啟動", "Nextcloud Initialization" : "初始 Nextcloud", + "Circles App Initialization" : "初始 Circles 應用程式", "Fresh installation status" : "全新安裝狀態", "Building Local Database" : "建立近端數據庫", "Testing Basic Circle Creation" : "測試基本圈子創建", diff --git a/l10n/zh_TW.js b/l10n/zh_TW.js index 958f952a9..5474eaf21 100644 --- a/l10n/zh_TW.js +++ b/l10n/zh_TW.js @@ -121,6 +121,7 @@ OC.L10N.register( "%s shared multiple files with you." : "%s 與您分享了多個檔案。", "Boot up" : "啟動", "Nextcloud Initialization" : "Nextcloud 初始化", + "Circles App Initialization" : "初始化小圈圈應用程式", "Fresh installation status" : "全新安裝狀態", "Building Local Database" : "正在建構本地資料庫", "Testing Basic Circle Creation" : "正在測試基本小圈圈建立", diff --git a/l10n/zh_TW.json b/l10n/zh_TW.json index 7b586f2d9..13816e63b 100644 --- a/l10n/zh_TW.json +++ b/l10n/zh_TW.json @@ -119,6 +119,7 @@ "%s shared multiple files with you." : "%s 與您分享了多個檔案。", "Boot up" : "啟動", "Nextcloud Initialization" : "Nextcloud 初始化", + "Circles App Initialization" : "初始化小圈圈應用程式", "Fresh installation status" : "全新安裝狀態", "Building Local Database" : "正在建構本地資料庫", "Testing Basic Circle Creation" : "正在測試基本小圈圈建立", From 15763de9f9d77e00ff4a3f54f0915d4ef5fbfdd1 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 21 Apr 2023 02:35:56 +0000 Subject: [PATCH 29/33] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/es.js | 1 + l10n/es.json | 1 + l10n/eu.js | 1 + l10n/eu.json | 1 + l10n/gl.js | 1 + l10n/gl.json | 1 + 6 files changed, 6 insertions(+) diff --git a/l10n/es.js b/l10n/es.js index 644e10851..16975722e 100644 --- a/l10n/es.js +++ b/l10n/es.js @@ -121,6 +121,7 @@ OC.L10N.register( "%s shared multiple files with you." : "%s ha compartido varios archivos contigo.", "Boot up" : "Arrancar", "Nextcloud Initialization" : "Inicialización de Nextcloud", + "Circles App Initialization" : "Inicialización de la app Circles", "Fresh installation status" : "Estado de la nueva instalación", "Building Local Database" : "Creando la Base de Datos Local", "Testing Basic Circle Creation" : "Prueba básica de creación de círculos", diff --git a/l10n/es.json b/l10n/es.json index d9d3d224d..1ac5458b3 100644 --- a/l10n/es.json +++ b/l10n/es.json @@ -119,6 +119,7 @@ "%s shared multiple files with you." : "%s ha compartido varios archivos contigo.", "Boot up" : "Arrancar", "Nextcloud Initialization" : "Inicialización de Nextcloud", + "Circles App Initialization" : "Inicialización de la app Circles", "Fresh installation status" : "Estado de la nueva instalación", "Building Local Database" : "Creando la Base de Datos Local", "Testing Basic Circle Creation" : "Prueba básica de creación de círculos", diff --git a/l10n/eu.js b/l10n/eu.js index 0d8b717c8..45c441893 100644 --- a/l10n/eu.js +++ b/l10n/eu.js @@ -121,6 +121,7 @@ OC.L10N.register( "%s shared multiple files with you." : "%s(e)k fitxategi batzuk partekatu ditu zurekin.", "Boot up" : "Abiarazi", "Nextcloud Initialization" : "Nextcloud hastapena", + "Circles App Initialization" : "Zirkuluak aplikazioaren hastapena", "Fresh installation status" : "Instalazio berriaren egoera", "Building Local Database" : "Datu-base lokala eraikitzen", "Testing Basic Circle Creation" : "Oinarrizko zirkulu sorrera probatzen", diff --git a/l10n/eu.json b/l10n/eu.json index 6b8eabd6d..9c289fef6 100644 --- a/l10n/eu.json +++ b/l10n/eu.json @@ -119,6 +119,7 @@ "%s shared multiple files with you." : "%s(e)k fitxategi batzuk partekatu ditu zurekin.", "Boot up" : "Abiarazi", "Nextcloud Initialization" : "Nextcloud hastapena", + "Circles App Initialization" : "Zirkuluak aplikazioaren hastapena", "Fresh installation status" : "Instalazio berriaren egoera", "Building Local Database" : "Datu-base lokala eraikitzen", "Testing Basic Circle Creation" : "Oinarrizko zirkulu sorrera probatzen", diff --git a/l10n/gl.js b/l10n/gl.js index 9dbfb814e..4183ffd40 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -121,6 +121,7 @@ OC.L10N.register( "%s shared multiple files with you." : "%s compartiu varios ficheiros con vostede.", "Boot up" : "Arrancar", "Nextcloud Initialization" : "Inicialización de Nextcloud", + "Circles App Initialization" : "Inicialización da aplicación Círculos", "Fresh installation status" : "Estado da nova instalación", "Building Local Database" : "Creando Base de Datos Local", "Testing Basic Circle Creation" : "Proba de Creación de Círculos Básica", diff --git a/l10n/gl.json b/l10n/gl.json index 8d5e958b5..11762b11d 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -119,6 +119,7 @@ "%s shared multiple files with you." : "%s compartiu varios ficheiros con vostede.", "Boot up" : "Arrancar", "Nextcloud Initialization" : "Inicialización de Nextcloud", + "Circles App Initialization" : "Inicialización da aplicación Círculos", "Fresh installation status" : "Estado da nova instalación", "Building Local Database" : "Creando Base de Datos Local", "Testing Basic Circle Creation" : "Proba de Creación de Círculos Básica", From e2664bd8de942e8674b4b5e6682a6256af9e3d1c Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 25 Apr 2023 02:30:00 +0000 Subject: [PATCH 30/33] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/bg.js | 1 + l10n/bg.json | 1 + l10n/tr.js | 1 + l10n/tr.json | 1 + 4 files changed, 4 insertions(+) diff --git a/l10n/bg.js b/l10n/bg.js index e33fe58e8..1122737cf 100644 --- a/l10n/bg.js +++ b/l10n/bg.js @@ -121,6 +121,7 @@ OC.L10N.register( "%s shared multiple files with you." : "%sсподелени множество файлове с вас", "Boot up" : "Стартиране", "Nextcloud Initialization" : "Инициализация на Nextcloud", + "Circles App Initialization" : "Инициализация на приложението Circles /кръгове/", "Fresh installation status" : "Състояние на нова инсталация", "Building Local Database" : "Изграждане на Локална База Данни", "Testing Basic Circle Creation" : "Тестване на създаването на основен кръг", diff --git a/l10n/bg.json b/l10n/bg.json index 69d3aae24..343dd0e1a 100644 --- a/l10n/bg.json +++ b/l10n/bg.json @@ -119,6 +119,7 @@ "%s shared multiple files with you." : "%sсподелени множество файлове с вас", "Boot up" : "Стартиране", "Nextcloud Initialization" : "Инициализация на Nextcloud", + "Circles App Initialization" : "Инициализация на приложението Circles /кръгове/", "Fresh installation status" : "Състояние на нова инсталация", "Building Local Database" : "Изграждане на Локална База Данни", "Testing Basic Circle Creation" : "Тестване на създаването на основен кръг", diff --git a/l10n/tr.js b/l10n/tr.js index 6b45ea108..36d3c1edb 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -121,6 +121,7 @@ OC.L10N.register( "%s shared multiple files with you." : "%s sizinle birkaç dosya paylaştı.", "Boot up" : "Başlatma", "Nextcloud Initialization" : "Nextcloud başlatılıyor", + "Circles App Initialization" : "Çevreler uygulaması başlatılıyor", "Fresh installation status" : "Yeni kurulum durumu", "Building Local Database" : "Yerel veri tabanı oluşturuluyor", "Testing Basic Circle Creation" : "Temel çevre oluşturma sınanıyor", diff --git a/l10n/tr.json b/l10n/tr.json index 405c5bba2..b765a3663 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -119,6 +119,7 @@ "%s shared multiple files with you." : "%s sizinle birkaç dosya paylaştı.", "Boot up" : "Başlatma", "Nextcloud Initialization" : "Nextcloud başlatılıyor", + "Circles App Initialization" : "Çevreler uygulaması başlatılıyor", "Fresh installation status" : "Yeni kurulum durumu", "Building Local Database" : "Yerel veri tabanı oluşturuluyor", "Testing Basic Circle Creation" : "Temel çevre oluşturma sınanıyor", From c6eda329d111fce28679d30cf14582419a3ce3ba Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 26 Apr 2023 02:35:22 +0000 Subject: [PATCH 31/33] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/cs.js | 1 + l10n/cs.json | 1 + l10n/de.js | 1 + l10n/de.json | 1 + l10n/pl.js | 1 + l10n/pl.json | 1 + 6 files changed, 6 insertions(+) diff --git a/l10n/cs.js b/l10n/cs.js index 45e3c0aac..e3df53801 100644 --- a/l10n/cs.js +++ b/l10n/cs.js @@ -121,6 +121,7 @@ OC.L10N.register( "%s shared multiple files with you." : "%s vám nasdílel(a) vícero souborů.", "Boot up" : "Nastartovat", "Nextcloud Initialization" : "Inicializace Nextcloud", + "Circles App Initialization" : "Inicializace aplikace okruhy", "Fresh installation status" : "Stav čisté instalace", "Building Local Database" : "Vytváří se místní databáze", "Testing Basic Circle Creation" : "Zkouší se vytvoření základního okruhu", diff --git a/l10n/cs.json b/l10n/cs.json index b7449d25f..ec2849b53 100644 --- a/l10n/cs.json +++ b/l10n/cs.json @@ -119,6 +119,7 @@ "%s shared multiple files with you." : "%s vám nasdílel(a) vícero souborů.", "Boot up" : "Nastartovat", "Nextcloud Initialization" : "Inicializace Nextcloud", + "Circles App Initialization" : "Inicializace aplikace okruhy", "Fresh installation status" : "Stav čisté instalace", "Building Local Database" : "Vytváří se místní databáze", "Testing Basic Circle Creation" : "Zkouší se vytvoření základního okruhu", diff --git a/l10n/de.js b/l10n/de.js index 3d704f909..71fed97b8 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -121,6 +121,7 @@ OC.L10N.register( "%s shared multiple files with you." : "%s hat mehrere Dateien mit dir geteilt.", "Boot up" : "Hochfahren", "Nextcloud Initialization" : "Nextcloud-Initialisierung", + "Circles App Initialization" : "Kreise-App-Initialisierung", "Fresh installation status" : "Aktueller Initialisierungsstatus", "Building Local Database" : "Lokale Datenbank wird erstellt", "Testing Basic Circle Creation" : "Testen der grundlegenden Kreiserstellung", diff --git a/l10n/de.json b/l10n/de.json index 98a41afe2..ef20ddb03 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -119,6 +119,7 @@ "%s shared multiple files with you." : "%s hat mehrere Dateien mit dir geteilt.", "Boot up" : "Hochfahren", "Nextcloud Initialization" : "Nextcloud-Initialisierung", + "Circles App Initialization" : "Kreise-App-Initialisierung", "Fresh installation status" : "Aktueller Initialisierungsstatus", "Building Local Database" : "Lokale Datenbank wird erstellt", "Testing Basic Circle Creation" : "Testen der grundlegenden Kreiserstellung", diff --git a/l10n/pl.js b/l10n/pl.js index fe8be273b..f44a1c297 100644 --- a/l10n/pl.js +++ b/l10n/pl.js @@ -121,6 +121,7 @@ OC.L10N.register( "%s shared multiple files with you." : "%s udostępnił Tobie wiele plików.", "Boot up" : "Uruchom", "Nextcloud Initialization" : "Inicjalizacja Nextcloud", + "Circles App Initialization" : "Inicjalizacja aplikacji Circles", "Fresh installation status" : "Stan nowej instalacji", "Building Local Database" : "Tworzenie lokalnej bazy danych", "Testing Basic Circle Creation" : "Testowanie tworzenia podstawowego kręgu", diff --git a/l10n/pl.json b/l10n/pl.json index 53f0202ae..ac6ab317b 100644 --- a/l10n/pl.json +++ b/l10n/pl.json @@ -119,6 +119,7 @@ "%s shared multiple files with you." : "%s udostępnił Tobie wiele plików.", "Boot up" : "Uruchom", "Nextcloud Initialization" : "Inicjalizacja Nextcloud", + "Circles App Initialization" : "Inicjalizacja aplikacji Circles", "Fresh installation status" : "Stan nowej instalacji", "Building Local Database" : "Tworzenie lokalnej bazy danych", "Testing Basic Circle Creation" : "Testowanie tworzenia podstawowego kręgu", From ee929751699569558a32638b7534cf655e369250 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 9 May 2023 02:27:00 +0000 Subject: [PATCH 32/33] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/uk.js | 2 ++ l10n/uk.json | 2 ++ 2 files changed, 4 insertions(+) diff --git a/l10n/uk.js b/l10n/uk.js index 487c2edc0..035170bfb 100644 --- a/l10n/uk.js +++ b/l10n/uk.js @@ -120,6 +120,8 @@ OC.L10N.register( "%s shared multiple files with \"%s\"." : "%s поділився кількома файлами з \"%s\".", "%s shared multiple files with you." : "%s поділився з вами кількома файлами.", "Boot up" : "Завантаження", + "Nextcloud Initialization" : "Ініціалізація Nextcloud", + "Circles App Initialization" : "Ініціалізація застосунка \"Кола\"", "Fresh installation status" : "Статус свіжої інсталяції", "Building Local Database" : "Створення локальної бази даних", "Testing Basic Circle Creation" : "Тестування створення базового кола", diff --git a/l10n/uk.json b/l10n/uk.json index 1728091f3..62fde1661 100644 --- a/l10n/uk.json +++ b/l10n/uk.json @@ -118,6 +118,8 @@ "%s shared multiple files with \"%s\"." : "%s поділився кількома файлами з \"%s\".", "%s shared multiple files with you." : "%s поділився з вами кількома файлами.", "Boot up" : "Завантаження", + "Nextcloud Initialization" : "Ініціалізація Nextcloud", + "Circles App Initialization" : "Ініціалізація застосунка \"Кола\"", "Fresh installation status" : "Статус свіжої інсталяції", "Building Local Database" : "Створення локальної бази даних", "Testing Basic Circle Creation" : "Тестування створення базового кола", From cd011e1b024ac1608af6da7c166f5a424cbbce7d Mon Sep 17 00:00:00 2001 From: Maxence Lange Date: Wed, 30 Nov 2022 09:40:01 -0100 Subject: [PATCH 33/33] restore deleted share Signed-off-by: Maxence Lange --- lib/ShareByCircleProvider.php | 49 ++++++++++++++++++++++++++++------- 1 file changed, 40 insertions(+), 9 deletions(-) diff --git a/lib/ShareByCircleProvider.php b/lib/ShareByCircleProvider.php index 844fdc7b7..d4c9289c4 100644 --- a/lib/ShareByCircleProvider.php +++ b/lib/ShareByCircleProvider.php @@ -344,15 +344,6 @@ public function deleteFromSelf(IShare $share, $recipient): void { } } - /** - * @param IShare $share - * @param string $recipient - * - * @return IShare - */ - public function restore(IShare $share, string $recipient): IShare { - return $share; - } /** * @param IShare $share @@ -387,6 +378,30 @@ public function move(IShare $share, $recipient): IShare { } + /** + * @param IShare $share + * @param string $recipient + * + * @return IShare + */ + public function restore(IShare $share, string $recipient): IShare { + $orig = $this->shareWrapperService->getShareById((int)$share->getId()); + + $federatedUser = $this->federatedUserService->getLocalFederatedUser($recipient); + $child = $this->shareWrapperService->getChild($share, $federatedUser); + $this->debug('Shares::restore()', ['federatedUser' => $federatedUser, 'child' => $child]); + + if ($child->getPermissions() !== $orig->getPermissions()) { + $child->setPermissions($orig->getPermissions()); + $this->shareWrapperService->update($child); + } + + $wrappedShare = $this->shareWrapperService->getShareById((int)$share->getId(), $federatedUser); + + return $wrappedShare->getShare($this->rootFolder, $this->userManager, $this->urlGenerator); + } + + /** * @param string $userId * @param Folder $node @@ -611,6 +626,22 @@ public function getShareByToken($token): IShare { } + public function formatShare(IShare $share): array { + $this->federatedUserService->initCurrentUser(); + $circleProbe = new CircleProbe(); + $dataProbe = new DataProbe(); + + $result = ['share_with' => $share->getSharedWith()]; + try { + $circle = $this->circleService->probeCircle($share->getSharedWith(), $circleProbe, $dataProbe); + $result['share_with_displayname'] = $circle->getDisplayName(); + } catch (Exception $e) { + } + + return $result; + } + + /** * @param string $uid * @param int $shareType