diff --git a/apps/admin_audit/lib/Actions/Files.php b/apps/admin_audit/lib/Actions/Files.php index 86eba871ea7cd..73cfd00b38291 100644 --- a/apps/admin_audit/lib/Actions/Files.php +++ b/apps/admin_audit/lib/Actions/Files.php @@ -8,12 +8,11 @@ namespace OCA\AdminAudit\Actions; use OC\Files\Node\NonExistingFile; +use OCP\Files\Events\Node\BeforeNodeDeletedEvent; use OCP\Files\Events\Node\BeforeNodeReadEvent; use OCP\Files\Events\Node\BeforeNodeRenamedEvent; -use OCP\Files\Events\Node\BeforeNodeWrittenEvent; use OCP\Files\Events\Node\NodeCopiedEvent; use OCP\Files\Events\Node\NodeCreatedEvent; -use OCP\Files\Events\Node\NodeDeletedEvent; use OCP\Files\Events\Node\NodeRenamedEvent; use OCP\Files\Events\Node\NodeWrittenEvent; use OCP\Files\InvalidPathException; @@ -28,10 +27,9 @@ class Files extends Action { private array $renamedNodes = []; + /** * Logs file read actions - * - * @param BeforeNodeReadEvent $event */ public function read(BeforeNodeReadEvent $event): void { try { @@ -55,8 +53,6 @@ public function read(BeforeNodeReadEvent $event): void { /** * Logs rename actions of files - * - * @param BeforeNodeRenamedEvent $event */ public function beforeRename(BeforeNodeRenamedEvent $event): void { try { @@ -72,8 +68,6 @@ public function beforeRename(BeforeNodeRenamedEvent $event): void { /** * Logs rename actions of files - * - * @param NodeRenamedEvent $event */ public function afterRename(NodeRenamedEvent $event): void { try { @@ -101,8 +95,6 @@ public function afterRename(NodeRenamedEvent $event): void { /** * Logs creation of files - * - * @param NodeCreatedEvent $event */ public function create(NodeCreatedEvent $event): void { try { @@ -128,8 +120,6 @@ public function create(NodeCreatedEvent $event): void { /** * Logs copying of files - * - * @param NodeCopiedEvent $event */ public function copy(NodeCopiedEvent $event): void { try { @@ -154,14 +144,12 @@ public function copy(NodeCopiedEvent $event): void { /** * Logs writing of files - * - * @param BeforeNodeWrittenEvent $event */ - public function write(BeforeNodeWrittenEvent $event): void { + public function write(NodeWrittenEvent $event): void { $node = $event->getNode(); try { $params = [ - 'id' => $node instanceof NonExistingFile ? null : $node->getId(), + 'id' => $node->getId(), 'path' => mb_substr($node->getInternalPath(), 5), ]; } catch (InvalidPathException|NotFoundException $e) { @@ -181,36 +169,10 @@ public function write(BeforeNodeWrittenEvent $event): void { ); } - /** - * Logs update of files - * - * @param NodeWrittenEvent $event - */ - public function update(NodeWrittenEvent $event): void { - try { - $params = [ - 'id' => $event->getNode()->getId(), - 'path' => mb_substr($event->getNode()->getInternalPath(), 5), - ]; - } catch (InvalidPathException|NotFoundException $e) { - \OCP\Server::get(LoggerInterface::class)->error( - 'Exception thrown in file update: ' . $e->getMessage(), ['app' => 'admin_audit', 'exception' => $e] - ); - return; - } - $this->log( - 'File with id "%s" updated: "%s"', - $params, - array_keys($params) - ); - } - /** * Logs deletions of files - * - * @param NodeDeletedEvent $event */ - public function delete(NodeDeletedEvent $event): void { + public function delete(BeforeNodeDeletedEvent $event): void { try { $params = [ 'id' => $event->getNode()->getId(), diff --git a/apps/admin_audit/lib/AppInfo/Application.php b/apps/admin_audit/lib/AppInfo/Application.php index b6cee3c0a938a..48ee8ebe9d2f8 100644 --- a/apps/admin_audit/lib/AppInfo/Application.php +++ b/apps/admin_audit/lib/AppInfo/Application.php @@ -38,12 +38,11 @@ use OCP\Authentication\TwoFactorAuth\TwoFactorProviderChallengePassed; use OCP\Console\ConsoleEvent; use OCP\EventDispatcher\IEventDispatcher; +use OCP\Files\Events\Node\BeforeNodeDeletedEvent; use OCP\Files\Events\Node\BeforeNodeReadEvent; use OCP\Files\Events\Node\BeforeNodeRenamedEvent; -use OCP\Files\Events\Node\BeforeNodeWrittenEvent; use OCP\Files\Events\Node\NodeCopiedEvent; use OCP\Files\Events\Node\NodeCreatedEvent; -use OCP\Files\Events\Node\NodeDeletedEvent; use OCP\Files\Events\Node\NodeRenamedEvent; use OCP\Files\Events\Node\NodeWrittenEvent; use OCP\Group\Events\GroupCreatedEvent; @@ -194,17 +193,10 @@ function (NodeCopiedEvent $event) use ($fileActions): void { } ); - $eventDispatcher->addListener( - BeforeNodeWrittenEvent::class, - function (BeforeNodeWrittenEvent $event) use ($fileActions): void { - $fileActions->write($event); - } - ); - $eventDispatcher->addListener( NodeWrittenEvent::class, function (NodeWrittenEvent $event) use ($fileActions): void { - $fileActions->update($event); + $fileActions->write($event); } ); @@ -216,8 +208,8 @@ function (BeforeNodeReadEvent $event) use ($fileActions): void { ); $eventDispatcher->addListener( - NodeDeletedEvent::class, - function (NodeDeletedEvent $event) use ($fileActions): void { + BeforeNodeDeletedEvent::class, + function (BeforeNodeDeletedEvent $event) use ($fileActions): void { $fileActions->delete($event); } ); diff --git a/apps/files/l10n/ar.js b/apps/files/l10n/ar.js index 00bf3990ad674..18fc88f18af02 100644 --- a/apps/files/l10n/ar.js +++ b/apps/files/l10n/ar.js @@ -136,7 +136,6 @@ OC.L10N.register( "Ownership transfer request sent" : "طلب نقل الملكية أرسل بنجاح", "Cannot transfer ownership of a file or folder you do not own" : "لايمكنك نقل ملكية ملف أو مجلد لا تملكه", "Select file or folder to link to" : "اختر ملف أو مجلد للربط معه", - "Choose file" : "إختَر ملفاً", "Choose {file}" : "إختَر {file}", "New" : "جديد", "Loading current folder" : "تحميل المجلد الحالي", @@ -385,6 +384,7 @@ OC.L10N.register( "Name cannot be empty" : "لا يمكن أن يكون الاسم فارغاً", "Another entry with the same name already exists" : "إدخال آخر بنفس الاسم موجود بالفعل", "Storage informations" : "معلومات التخزين", + "Choose file" : "إختَر ملفاً", "Open the files app settings" : "إفتح إعدادات تطبيق الملفات", "You might not have have permissions to view it, ask the sender to share it" : "يمكن ألاّ تكون لديك صلاحية لعرضه، أطلب من المُرسل إن يشاركه معك", "Destination is not a folder" : "المَقصَد ليس مُجلّداً", diff --git a/apps/files/l10n/ar.json b/apps/files/l10n/ar.json index 5f8169ca16afd..3e0a3814de3d9 100644 --- a/apps/files/l10n/ar.json +++ b/apps/files/l10n/ar.json @@ -134,7 +134,6 @@ "Ownership transfer request sent" : "طلب نقل الملكية أرسل بنجاح", "Cannot transfer ownership of a file or folder you do not own" : "لايمكنك نقل ملكية ملف أو مجلد لا تملكه", "Select file or folder to link to" : "اختر ملف أو مجلد للربط معه", - "Choose file" : "إختَر ملفاً", "Choose {file}" : "إختَر {file}", "New" : "جديد", "Loading current folder" : "تحميل المجلد الحالي", @@ -383,6 +382,7 @@ "Name cannot be empty" : "لا يمكن أن يكون الاسم فارغاً", "Another entry with the same name already exists" : "إدخال آخر بنفس الاسم موجود بالفعل", "Storage informations" : "معلومات التخزين", + "Choose file" : "إختَر ملفاً", "Open the files app settings" : "إفتح إعدادات تطبيق الملفات", "You might not have have permissions to view it, ask the sender to share it" : "يمكن ألاّ تكون لديك صلاحية لعرضه، أطلب من المُرسل إن يشاركه معك", "Destination is not a folder" : "المَقصَد ليس مُجلّداً", diff --git a/apps/files/l10n/ast.js b/apps/files/l10n/ast.js index b0dfc9e47c602..1ab1a881c87a7 100644 --- a/apps/files/l10n/ast.js +++ b/apps/files/l10n/ast.js @@ -116,7 +116,6 @@ OC.L10N.register( "Ownership transfer request sent" : "Unvióse la solicitú de tresferencia de la propiedá", "Cannot transfer ownership of a file or folder you do not own" : "Nun se pue tresferir la propiedá d'un ficheru o una carpeta que nun te pertenez", "Select file or folder to link to" : "Seleicionar un ficheru o una carpeta a la qu'enllaciar", - "Choose file" : "Escoyer un ficheru", "Choose {file}" : "Escoyer «{file}»", "New" : "Nuevu", "Loading current folder" : "Cargando la carpeta actual", @@ -336,6 +335,7 @@ OC.L10N.register( "Name cannot be empty" : "El nome nun pue tar baleru", "Another entry with the same name already exists" : "Yá esiste otra entrada col mesmu nome", "Storage informations" : "Información del almacenamientu", + "Choose file" : "Escoyer un ficheru", "Open the files app settings" : "Abrir la configuración de Ficheros", "You might not have have permissions to view it, ask the sender to share it" : "Quiciabes nun tengas permisu pa ver l'elementu, pidi al remitente que lu comparta", "Destination is not a folder" : "El destín nun ye una carpeta", diff --git a/apps/files/l10n/ast.json b/apps/files/l10n/ast.json index 93299aa4e21af..4c6adbec7ab73 100644 --- a/apps/files/l10n/ast.json +++ b/apps/files/l10n/ast.json @@ -114,7 +114,6 @@ "Ownership transfer request sent" : "Unvióse la solicitú de tresferencia de la propiedá", "Cannot transfer ownership of a file or folder you do not own" : "Nun se pue tresferir la propiedá d'un ficheru o una carpeta que nun te pertenez", "Select file or folder to link to" : "Seleicionar un ficheru o una carpeta a la qu'enllaciar", - "Choose file" : "Escoyer un ficheru", "Choose {file}" : "Escoyer «{file}»", "New" : "Nuevu", "Loading current folder" : "Cargando la carpeta actual", @@ -334,6 +333,7 @@ "Name cannot be empty" : "El nome nun pue tar baleru", "Another entry with the same name already exists" : "Yá esiste otra entrada col mesmu nome", "Storage informations" : "Información del almacenamientu", + "Choose file" : "Escoyer un ficheru", "Open the files app settings" : "Abrir la configuración de Ficheros", "You might not have have permissions to view it, ask the sender to share it" : "Quiciabes nun tengas permisu pa ver l'elementu, pidi al remitente que lu comparta", "Destination is not a folder" : "El destín nun ye una carpeta", diff --git a/apps/files/l10n/ca.js b/apps/files/l10n/ca.js index 49d3fb95b3474..4dc8d40db0ffb 100644 --- a/apps/files/l10n/ca.js +++ b/apps/files/l10n/ca.js @@ -134,7 +134,6 @@ OC.L10N.register( "Ownership transfer request sent" : "S'ha enviat la sol·licitud de transferència de propietat", "Cannot transfer ownership of a file or folder you do not own" : "No es pot transferir la propietat d'un fitxer o carpeta que no és vostre", "Select file or folder to link to" : "Seleccioneu el fitxer o la carpeta que voleu enllaçar", - "Choose file" : "Tria el fitxer", "Choose {file}" : "Tria {file}", "New" : "Crea", "Loading current folder" : "S'està carregant la carpeta actual", @@ -381,6 +380,7 @@ OC.L10N.register( "Name cannot be empty" : "El nom no pot estar buit", "Another entry with the same name already exists" : "Ja existeix una altra entrada amb aquest nom", "Storage informations" : "Informació d'emmagatzematge", + "Choose file" : "Tria el fitxer", "Open the files app settings" : "Obre els paràmetres de l'aplicació Fitxers", "You might not have have permissions to view it, ask the sender to share it" : "És possible que no tingueu permisos per a visualitzar-lo; demaneu al remitent que el comparteixi", "Destination is not a folder" : "La destinació no és una carpeta", diff --git a/apps/files/l10n/ca.json b/apps/files/l10n/ca.json index c05895fbe430b..61ee248e8bea1 100644 --- a/apps/files/l10n/ca.json +++ b/apps/files/l10n/ca.json @@ -132,7 +132,6 @@ "Ownership transfer request sent" : "S'ha enviat la sol·licitud de transferència de propietat", "Cannot transfer ownership of a file or folder you do not own" : "No es pot transferir la propietat d'un fitxer o carpeta que no és vostre", "Select file or folder to link to" : "Seleccioneu el fitxer o la carpeta que voleu enllaçar", - "Choose file" : "Tria el fitxer", "Choose {file}" : "Tria {file}", "New" : "Crea", "Loading current folder" : "S'està carregant la carpeta actual", @@ -379,6 +378,7 @@ "Name cannot be empty" : "El nom no pot estar buit", "Another entry with the same name already exists" : "Ja existeix una altra entrada amb aquest nom", "Storage informations" : "Informació d'emmagatzematge", + "Choose file" : "Tria el fitxer", "Open the files app settings" : "Obre els paràmetres de l'aplicació Fitxers", "You might not have have permissions to view it, ask the sender to share it" : "És possible que no tingueu permisos per a visualitzar-lo; demaneu al remitent que el comparteixi", "Destination is not a folder" : "La destinació no és una carpeta", diff --git a/apps/files/l10n/cs.js b/apps/files/l10n/cs.js index 284f271ae5f18..bb0ea217dc2b7 100644 --- a/apps/files/l10n/cs.js +++ b/apps/files/l10n/cs.js @@ -135,7 +135,6 @@ OC.L10N.register( "Ownership transfer request sent" : "Žádost o převedení vlastnictví zaslána", "Cannot transfer ownership of a file or folder you do not own" : "Není možné převést vlastnictví souboru či složky, kterých nejste vlastníky", "Select file or folder to link to" : "Vyberte soubor nebo složku na kterou odkazovat", - "Choose file" : "Vyberte soubor", "Choose {file}" : "Zvolit {file}", "New" : "Nové", "Loading current folder" : "Načítá se stávající složka", @@ -272,6 +271,7 @@ OC.L10N.register( "\"{segment}\" is a reserved name and not allowed for filenames." : "„{segment}“ je vyhrazeným názvem a není povoleno k použití pro názvy souborů.", "\"{extension}\" is not an allowed filetype." : "„{extension}“ není povoleným typem souboru.", "Filenames must not end with \"{extension}\"." : "Je třeba, aby názvy souborů nekončily na „{extension}“.", + "List of favorite files and folders." : "Seznam oblíbených souborů a složek.", "No favorites yet" : "Zatím nic oblíbeného", "Files and folders you mark as favorite will show up here" : "Zde budou zobrazeny soubory a složky, které označíte jako oblíbené", "All files" : "Všechny soubory", @@ -374,10 +374,14 @@ OC.L10N.register( "An error occurred while trying to update the tags" : "Při pokusu o úpravu štítků došlo k chybě", "\"remote user\"" : "„federovaný uživatel“", "{newName} already exists." : "{newName} už existuje.", + "\"{segment}\" is not allowed inside a filename." : "„{segment}“ není v názvu souboru možné použít.", + "\"{segment}\" is a forbidden file or folder name." : "„{segment}“ je zakázané jméno souboru nebo složky.", + "\"{segment}\" is not an allowed filetype." : "„{segment}“ není povoleným typem souboru.", "Filenames must not end with \"{segment}\"." : "Jména souborů nesmí končit na \"{segment}\".", "Name cannot be empty" : "Je třeba zadat název", "Another entry with the same name already exists" : "Už existuje jiná položka se stejným názevm", "Storage informations" : "Informace o úložišti", + "Choose file" : "Vyberte soubor", "Open the files app settings" : "Otevřít nastavení aplikace soubory", "You might not have have permissions to view it, ask the sender to share it" : "Může být, že nemáte oprávnění pro jeho zobrazení – požádejte odesilatele aby vám ho nasdílel", "Destination is not a folder" : "Cíl není složka", diff --git a/apps/files/l10n/cs.json b/apps/files/l10n/cs.json index 5aabd7d83a0f2..8ad1f35550dfd 100644 --- a/apps/files/l10n/cs.json +++ b/apps/files/l10n/cs.json @@ -133,7 +133,6 @@ "Ownership transfer request sent" : "Žádost o převedení vlastnictví zaslána", "Cannot transfer ownership of a file or folder you do not own" : "Není možné převést vlastnictví souboru či složky, kterých nejste vlastníky", "Select file or folder to link to" : "Vyberte soubor nebo složku na kterou odkazovat", - "Choose file" : "Vyberte soubor", "Choose {file}" : "Zvolit {file}", "New" : "Nové", "Loading current folder" : "Načítá se stávající složka", @@ -270,6 +269,7 @@ "\"{segment}\" is a reserved name and not allowed for filenames." : "„{segment}“ je vyhrazeným názvem a není povoleno k použití pro názvy souborů.", "\"{extension}\" is not an allowed filetype." : "„{extension}“ není povoleným typem souboru.", "Filenames must not end with \"{extension}\"." : "Je třeba, aby názvy souborů nekončily na „{extension}“.", + "List of favorite files and folders." : "Seznam oblíbených souborů a složek.", "No favorites yet" : "Zatím nic oblíbeného", "Files and folders you mark as favorite will show up here" : "Zde budou zobrazeny soubory a složky, které označíte jako oblíbené", "All files" : "Všechny soubory", @@ -372,10 +372,14 @@ "An error occurred while trying to update the tags" : "Při pokusu o úpravu štítků došlo k chybě", "\"remote user\"" : "„federovaný uživatel“", "{newName} already exists." : "{newName} už existuje.", + "\"{segment}\" is not allowed inside a filename." : "„{segment}“ není v názvu souboru možné použít.", + "\"{segment}\" is a forbidden file or folder name." : "„{segment}“ je zakázané jméno souboru nebo složky.", + "\"{segment}\" is not an allowed filetype." : "„{segment}“ není povoleným typem souboru.", "Filenames must not end with \"{segment}\"." : "Jména souborů nesmí končit na \"{segment}\".", "Name cannot be empty" : "Je třeba zadat název", "Another entry with the same name already exists" : "Už existuje jiná položka se stejným názevm", "Storage informations" : "Informace o úložišti", + "Choose file" : "Vyberte soubor", "Open the files app settings" : "Otevřít nastavení aplikace soubory", "You might not have have permissions to view it, ask the sender to share it" : "Může být, že nemáte oprávnění pro jeho zobrazení – požádejte odesilatele aby vám ho nasdílel", "Destination is not a folder" : "Cíl není složka", diff --git a/apps/files/l10n/da.js b/apps/files/l10n/da.js index 411fe67c23a41..9c497bf26d365 100644 --- a/apps/files/l10n/da.js +++ b/apps/files/l10n/da.js @@ -133,7 +133,6 @@ OC.L10N.register( "Ownership transfer request sent" : "Anmodning om ejerskabsoverdragelse sendt", "Cannot transfer ownership of a file or folder you do not own" : "Kan ikke overføre ejerskab af en fil eller mappe, du ikke ejer", "Select file or folder to link to" : "Vælg fil eller mappe at linke til", - "Choose file" : "Vælg fil", "Choose {file}" : "Vælg {file}", "New" : "Ny", "Loading current folder" : "Indlæser aktuelle mappe", @@ -373,6 +372,7 @@ OC.L10N.register( "Name cannot be empty" : "Navn må ikke være tomt", "Another entry with the same name already exists" : "Dette navn er allerede i brug", "Storage informations" : "Lagerinformationer", + "Choose file" : "Vælg fil", "Open the files app settings" : "Åbn fil-app indstillinger", "You might not have have permissions to view it, ask the sender to share it" : "Du har muligvis ikke tilladelser til at se.... Bed afsenderen om at dele...", "Destination is not a folder" : "Destinationen er ikke en mappe", diff --git a/apps/files/l10n/da.json b/apps/files/l10n/da.json index c94eabfabc538..7a05a88f03e5c 100644 --- a/apps/files/l10n/da.json +++ b/apps/files/l10n/da.json @@ -131,7 +131,6 @@ "Ownership transfer request sent" : "Anmodning om ejerskabsoverdragelse sendt", "Cannot transfer ownership of a file or folder you do not own" : "Kan ikke overføre ejerskab af en fil eller mappe, du ikke ejer", "Select file or folder to link to" : "Vælg fil eller mappe at linke til", - "Choose file" : "Vælg fil", "Choose {file}" : "Vælg {file}", "New" : "Ny", "Loading current folder" : "Indlæser aktuelle mappe", @@ -371,6 +370,7 @@ "Name cannot be empty" : "Navn må ikke være tomt", "Another entry with the same name already exists" : "Dette navn er allerede i brug", "Storage informations" : "Lagerinformationer", + "Choose file" : "Vælg fil", "Open the files app settings" : "Åbn fil-app indstillinger", "You might not have have permissions to view it, ask the sender to share it" : "Du har muligvis ikke tilladelser til at se.... Bed afsenderen om at dele...", "Destination is not a folder" : "Destinationen er ikke en mappe", diff --git a/apps/files/l10n/de.js b/apps/files/l10n/de.js index 9eb414e4dc6cb..c08527cf8789e 100644 --- a/apps/files/l10n/de.js +++ b/apps/files/l10n/de.js @@ -136,7 +136,6 @@ OC.L10N.register( "Ownership transfer request sent" : "Anforderung für die Übertragung des Besitzes gesendet", "Cannot transfer ownership of a file or folder you do not own" : "Der Besitz an einer Datei oder einem Ordner, der dir nicht gehört, kann nicht übertragen werden", "Select file or folder to link to" : "Datei oder Ordner zum Verknüpfen auswählen", - "Choose file" : "Datei auswählen", "Choose {file}" : "{file} auswählen", "New" : "Neu", "Loading current folder" : "Lade aktuellen Ordner", @@ -383,6 +382,7 @@ OC.L10N.register( "Name cannot be empty" : "Der Name darf nicht leer sein", "Another entry with the same name already exists" : "Ein anderer Eintrag mit diesem Namen existiert bereits.", "Storage informations" : "Speicherinformationen", + "Choose file" : "Datei auswählen", "Open the files app settings" : "Einstellungen der Dateien-App öffnen", "You might not have have permissions to view it, ask the sender to share it" : "Möglicherweise hast du nicht die Berechtigung zur Anzeige. Bitte den Absender, die Datei freizugeben.", "Destination is not a folder" : "Ziel ist kein Ordner", diff --git a/apps/files/l10n/de.json b/apps/files/l10n/de.json index 54efe6a8cb6a0..ac07d1a73c5a8 100644 --- a/apps/files/l10n/de.json +++ b/apps/files/l10n/de.json @@ -134,7 +134,6 @@ "Ownership transfer request sent" : "Anforderung für die Übertragung des Besitzes gesendet", "Cannot transfer ownership of a file or folder you do not own" : "Der Besitz an einer Datei oder einem Ordner, der dir nicht gehört, kann nicht übertragen werden", "Select file or folder to link to" : "Datei oder Ordner zum Verknüpfen auswählen", - "Choose file" : "Datei auswählen", "Choose {file}" : "{file} auswählen", "New" : "Neu", "Loading current folder" : "Lade aktuellen Ordner", @@ -381,6 +380,7 @@ "Name cannot be empty" : "Der Name darf nicht leer sein", "Another entry with the same name already exists" : "Ein anderer Eintrag mit diesem Namen existiert bereits.", "Storage informations" : "Speicherinformationen", + "Choose file" : "Datei auswählen", "Open the files app settings" : "Einstellungen der Dateien-App öffnen", "You might not have have permissions to view it, ask the sender to share it" : "Möglicherweise hast du nicht die Berechtigung zur Anzeige. Bitte den Absender, die Datei freizugeben.", "Destination is not a folder" : "Ziel ist kein Ordner", diff --git a/apps/files/l10n/de_DE.js b/apps/files/l10n/de_DE.js index ca6a0fead8ca9..2dc54f6e4d089 100644 --- a/apps/files/l10n/de_DE.js +++ b/apps/files/l10n/de_DE.js @@ -136,7 +136,6 @@ OC.L10N.register( "Ownership transfer request sent" : "Anforderung für die Besitzübertragung versendet", "Cannot transfer ownership of a file or folder you do not own" : "Sie können den Besitz von Dateien oder Ordnern, die Sie nicht besitzen, nicht übertragen", "Select file or folder to link to" : "Datei oder Ordner zum Verknüpfen auswählen", - "Choose file" : "Datei auswählen", "Choose {file}" : "{file} auswählen", "New" : "Neu", "Loading current folder" : "Lade aktuellen Ordner", @@ -385,6 +384,7 @@ OC.L10N.register( "Name cannot be empty" : "Der Name darf nicht leer sein", "Another entry with the same name already exists" : "Ein anderer Eintrag mit diesem Namen existiert bereits", "Storage informations" : "Speicherinformationen", + "Choose file" : "Datei auswählen", "Open the files app settings" : "Einstellungen der Dateien-App öffnen", "You might not have have permissions to view it, ask the sender to share it" : "Möglicherweise haben Sie nicht die Berechtigung zur Anzeige. Bitten Sie den Absender, die Datei freizugeben.", "Destination is not a folder" : "Ziel ist kein Ordner", diff --git a/apps/files/l10n/de_DE.json b/apps/files/l10n/de_DE.json index d8dcc83f4a15f..7a05b12e1c3c6 100644 --- a/apps/files/l10n/de_DE.json +++ b/apps/files/l10n/de_DE.json @@ -134,7 +134,6 @@ "Ownership transfer request sent" : "Anforderung für die Besitzübertragung versendet", "Cannot transfer ownership of a file or folder you do not own" : "Sie können den Besitz von Dateien oder Ordnern, die Sie nicht besitzen, nicht übertragen", "Select file or folder to link to" : "Datei oder Ordner zum Verknüpfen auswählen", - "Choose file" : "Datei auswählen", "Choose {file}" : "{file} auswählen", "New" : "Neu", "Loading current folder" : "Lade aktuellen Ordner", @@ -383,6 +382,7 @@ "Name cannot be empty" : "Der Name darf nicht leer sein", "Another entry with the same name already exists" : "Ein anderer Eintrag mit diesem Namen existiert bereits", "Storage informations" : "Speicherinformationen", + "Choose file" : "Datei auswählen", "Open the files app settings" : "Einstellungen der Dateien-App öffnen", "You might not have have permissions to view it, ask the sender to share it" : "Möglicherweise haben Sie nicht die Berechtigung zur Anzeige. Bitten Sie den Absender, die Datei freizugeben.", "Destination is not a folder" : "Ziel ist kein Ordner", diff --git a/apps/files/l10n/el.js b/apps/files/l10n/el.js index c348d919a5d9f..7d470d7150ba5 100644 --- a/apps/files/l10n/el.js +++ b/apps/files/l10n/el.js @@ -124,7 +124,6 @@ OC.L10N.register( "Ownership transfer request sent" : "Αποστολή αίτησης μεταβίβασης κυριότητας", "Cannot transfer ownership of a file or folder you do not own" : "Δεν είναι δυνατή η μεταβίβαση της κυριότητας ενός αρχείου ή φακέλου που δε σας ανήκει", "Select file or folder to link to" : "Επιλέξτε αρχείο ή φάκελο για σύνδεση", - "Choose file" : "Επιλέξτε αρχείο", "Choose {file}" : "Επιλέξτε {file}", "New" : "Νέα", "Loading current folder" : "Φόρτωση τρέχοντος φακέλου", @@ -343,6 +342,7 @@ OC.L10N.register( "Name cannot be empty" : "Το όνομα δεν μπορεί να είναι κενό", "Another entry with the same name already exists" : "Υπάρχει ήδη μια άλλη καταχώρηση με το ίδιο όνομα", "Storage informations" : "Πληροφορίες αποθήκευσης", + "Choose file" : "Επιλέξτε αρχείο", "Open the files app settings" : "Ανοίξτε τις ρυθμίσεις της εφαρμογής αρχείων", "You might not have have permissions to view it, ask the sender to share it" : "Μπορεί να μην έχετε δικαίωμα για να το δείτε. Ζητήστε από τον αποστολέα να το μοιραστεί", "Destination is not a folder" : "Ο προορισμός δεν είναι φάκελος", diff --git a/apps/files/l10n/el.json b/apps/files/l10n/el.json index 095982df4f045..3f48eb33885f2 100644 --- a/apps/files/l10n/el.json +++ b/apps/files/l10n/el.json @@ -122,7 +122,6 @@ "Ownership transfer request sent" : "Αποστολή αίτησης μεταβίβασης κυριότητας", "Cannot transfer ownership of a file or folder you do not own" : "Δεν είναι δυνατή η μεταβίβαση της κυριότητας ενός αρχείου ή φακέλου που δε σας ανήκει", "Select file or folder to link to" : "Επιλέξτε αρχείο ή φάκελο για σύνδεση", - "Choose file" : "Επιλέξτε αρχείο", "Choose {file}" : "Επιλέξτε {file}", "New" : "Νέα", "Loading current folder" : "Φόρτωση τρέχοντος φακέλου", @@ -341,6 +340,7 @@ "Name cannot be empty" : "Το όνομα δεν μπορεί να είναι κενό", "Another entry with the same name already exists" : "Υπάρχει ήδη μια άλλη καταχώρηση με το ίδιο όνομα", "Storage informations" : "Πληροφορίες αποθήκευσης", + "Choose file" : "Επιλέξτε αρχείο", "Open the files app settings" : "Ανοίξτε τις ρυθμίσεις της εφαρμογής αρχείων", "You might not have have permissions to view it, ask the sender to share it" : "Μπορεί να μην έχετε δικαίωμα για να το δείτε. Ζητήστε από τον αποστολέα να το μοιραστεί", "Destination is not a folder" : "Ο προορισμός δεν είναι φάκελος", diff --git a/apps/files/l10n/en_GB.js b/apps/files/l10n/en_GB.js index b085b0ee8b52f..7d176757c41e0 100644 --- a/apps/files/l10n/en_GB.js +++ b/apps/files/l10n/en_GB.js @@ -136,7 +136,6 @@ OC.L10N.register( "Ownership transfer request sent" : "Ownership transfer request sent", "Cannot transfer ownership of a file or folder you do not own" : "Cannot transfer ownership of a file or folder you do not own", "Select file or folder to link to" : "Select file or folder to link to", - "Choose file" : "Choose file", "Choose {file}" : "Choose {file}", "New" : "New", "Loading current folder" : "Loading current folder", @@ -208,6 +207,8 @@ OC.L10N.register( "Edit online" : "Edit online", "Failed to redirect to client" : "Failed to redirect to client", "Edit locally" : "Edit locally", + "Moving \"{source}\" to \"{destination}\" …" : "Moving \"{source}\" to \"{destination}\" …", + "Copying \"{source}\" to \"{destination}\" …" : "Copying \"{source}\" to \"{destination}\" …", "You cannot move a file/folder onto itself or into a subfolder of itself" : "You cannot move a file/folder onto itself or into a subfolder of itself", "(copy)" : "(copy)", "(copy %n)" : "(copy %n)", @@ -273,6 +274,7 @@ OC.L10N.register( "\"{segment}\" is a reserved name and not allowed for filenames." : "\"{segment}\" is a reserved name and not allowed for filenames.", "\"{extension}\" is not an allowed filetype." : "\"{extension}\" is not an allowed filetype.", "Filenames must not end with \"{extension}\"." : "Filenames must not end with \"{extension}\".", + "List of favorite files and folders." : "List of favourite files and folders.", "No favorites yet" : "No favourites yet", "Files and folders you mark as favorite will show up here" : "Files and folders you mark as favourite will show up here", "All files" : "All files", @@ -382,6 +384,7 @@ OC.L10N.register( "Name cannot be empty" : "Name cannot be empty", "Another entry with the same name already exists" : "Another entry with the same name already exists", "Storage informations" : "Storage informations", + "Choose file" : "Choose file", "Open the files app settings" : "Open the files app settings", "You might not have have permissions to view it, ask the sender to share it" : "You might not have have permissions to view it, ask the sender to share it", "Destination is not a folder" : "Destination is not a folder", @@ -393,6 +396,9 @@ OC.L10N.register( "Text file" : "Text file", "New text file.txt" : "New text file.txt", "Direct link was copied (only works for people who have access to this file/folder)" : "Direct link was copied (only works for people who have access to this file/folder)", - "Copy direct link (only works for people who have access to this file/folder)" : "Copy direct link (only works for people who have access to this file/folder)" + "Copy direct link (only works for people who have access to this file/folder)" : "Copy direct link (only works for people who have access to this file/folder)", + "Favored" : "Favoured", + "Favor" : "Favour", + "Not favored" : "Not favoured" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/en_GB.json b/apps/files/l10n/en_GB.json index 6b4843eb09717..f1e97d7983aef 100644 --- a/apps/files/l10n/en_GB.json +++ b/apps/files/l10n/en_GB.json @@ -134,7 +134,6 @@ "Ownership transfer request sent" : "Ownership transfer request sent", "Cannot transfer ownership of a file or folder you do not own" : "Cannot transfer ownership of a file or folder you do not own", "Select file or folder to link to" : "Select file or folder to link to", - "Choose file" : "Choose file", "Choose {file}" : "Choose {file}", "New" : "New", "Loading current folder" : "Loading current folder", @@ -206,6 +205,8 @@ "Edit online" : "Edit online", "Failed to redirect to client" : "Failed to redirect to client", "Edit locally" : "Edit locally", + "Moving \"{source}\" to \"{destination}\" …" : "Moving \"{source}\" to \"{destination}\" …", + "Copying \"{source}\" to \"{destination}\" …" : "Copying \"{source}\" to \"{destination}\" …", "You cannot move a file/folder onto itself or into a subfolder of itself" : "You cannot move a file/folder onto itself or into a subfolder of itself", "(copy)" : "(copy)", "(copy %n)" : "(copy %n)", @@ -271,6 +272,7 @@ "\"{segment}\" is a reserved name and not allowed for filenames." : "\"{segment}\" is a reserved name and not allowed for filenames.", "\"{extension}\" is not an allowed filetype." : "\"{extension}\" is not an allowed filetype.", "Filenames must not end with \"{extension}\"." : "Filenames must not end with \"{extension}\".", + "List of favorite files and folders." : "List of favourite files and folders.", "No favorites yet" : "No favourites yet", "Files and folders you mark as favorite will show up here" : "Files and folders you mark as favourite will show up here", "All files" : "All files", @@ -380,6 +382,7 @@ "Name cannot be empty" : "Name cannot be empty", "Another entry with the same name already exists" : "Another entry with the same name already exists", "Storage informations" : "Storage informations", + "Choose file" : "Choose file", "Open the files app settings" : "Open the files app settings", "You might not have have permissions to view it, ask the sender to share it" : "You might not have have permissions to view it, ask the sender to share it", "Destination is not a folder" : "Destination is not a folder", @@ -391,6 +394,9 @@ "Text file" : "Text file", "New text file.txt" : "New text file.txt", "Direct link was copied (only works for people who have access to this file/folder)" : "Direct link was copied (only works for people who have access to this file/folder)", - "Copy direct link (only works for people who have access to this file/folder)" : "Copy direct link (only works for people who have access to this file/folder)" + "Copy direct link (only works for people who have access to this file/folder)" : "Copy direct link (only works for people who have access to this file/folder)", + "Favored" : "Favoured", + "Favor" : "Favour", + "Not favored" : "Not favoured" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files/l10n/es.js b/apps/files/l10n/es.js index 1392a58d4b5af..4509e57a1fa6d 100644 --- a/apps/files/l10n/es.js +++ b/apps/files/l10n/es.js @@ -136,7 +136,6 @@ OC.L10N.register( "Ownership transfer request sent" : "Enviada la solicitud de transferencia de propiedad", "Cannot transfer ownership of a file or folder you do not own" : "No puede transferir la propiedad de un archivo o carpeta de la cual no es propietario", "Select file or folder to link to" : "Selecciona archivo o carpeta a enlazar", - "Choose file" : "Elegir archivo", "Choose {file}" : "Seleccionar {file}", "New" : "Nuevo", "Loading current folder" : "Cargando carpeta actual", @@ -382,6 +381,7 @@ OC.L10N.register( "Name cannot be empty" : "El nombre no puede estar vacío", "Another entry with the same name already exists" : "Ya existe otra entrada con el mismo nombre", "Storage informations" : "Informaciones de almacenamiento", + "Choose file" : "Elegir archivo", "Open the files app settings" : "Abrir la configuración de la app Archivos", "You might not have have permissions to view it, ask the sender to share it" : "Puede que no tenga permisos para verlo, solicite al remitente que lo comparta", "Destination is not a folder" : "El destino no es una carpeta", diff --git a/apps/files/l10n/es.json b/apps/files/l10n/es.json index 820db80a010b2..c3aa09fde595a 100644 --- a/apps/files/l10n/es.json +++ b/apps/files/l10n/es.json @@ -134,7 +134,6 @@ "Ownership transfer request sent" : "Enviada la solicitud de transferencia de propiedad", "Cannot transfer ownership of a file or folder you do not own" : "No puede transferir la propiedad de un archivo o carpeta de la cual no es propietario", "Select file or folder to link to" : "Selecciona archivo o carpeta a enlazar", - "Choose file" : "Elegir archivo", "Choose {file}" : "Seleccionar {file}", "New" : "Nuevo", "Loading current folder" : "Cargando carpeta actual", @@ -380,6 +379,7 @@ "Name cannot be empty" : "El nombre no puede estar vacío", "Another entry with the same name already exists" : "Ya existe otra entrada con el mismo nombre", "Storage informations" : "Informaciones de almacenamiento", + "Choose file" : "Elegir archivo", "Open the files app settings" : "Abrir la configuración de la app Archivos", "You might not have have permissions to view it, ask the sender to share it" : "Puede que no tenga permisos para verlo, solicite al remitente que lo comparta", "Destination is not a folder" : "El destino no es una carpeta", diff --git a/apps/files/l10n/es_MX.js b/apps/files/l10n/es_MX.js index 01a3310b869f0..284646b037a61 100644 --- a/apps/files/l10n/es_MX.js +++ b/apps/files/l10n/es_MX.js @@ -133,7 +133,6 @@ OC.L10N.register( "Ownership transfer request sent" : "Enviada la solicitud de transferencia de propiedad", "Cannot transfer ownership of a file or folder you do not own" : "No puede transferir la propiedad de un archivo o directorio del cual no es propietario", "Select file or folder to link to" : "Seleccionar archivo o carpeta para enlazar.", - "Choose file" : "Elegir archivo", "Choose {file}" : "Elegir {file}", "New" : "Nuevo", "Loading current folder" : "Cargando la carpeta actual", @@ -373,6 +372,7 @@ OC.L10N.register( "Name cannot be empty" : "El nombre no puede estar en blanco", "Another entry with the same name already exists" : "Ya existe otra entrada con el mismo nombre.", "Storage informations" : "Informaciones de almacenamiento", + "Choose file" : "Elegir archivo", "Open the files app settings" : "Abrir la configuración de la app Archivos", "You might not have have permissions to view it, ask the sender to share it" : "Puede que no tenga permisos para verlo, solicite al remitente que lo comparta", "Destination is not a folder" : "El destino no es una carpeta", diff --git a/apps/files/l10n/es_MX.json b/apps/files/l10n/es_MX.json index 2d2418c332cf0..a75daaa9cc3f7 100644 --- a/apps/files/l10n/es_MX.json +++ b/apps/files/l10n/es_MX.json @@ -131,7 +131,6 @@ "Ownership transfer request sent" : "Enviada la solicitud de transferencia de propiedad", "Cannot transfer ownership of a file or folder you do not own" : "No puede transferir la propiedad de un archivo o directorio del cual no es propietario", "Select file or folder to link to" : "Seleccionar archivo o carpeta para enlazar.", - "Choose file" : "Elegir archivo", "Choose {file}" : "Elegir {file}", "New" : "Nuevo", "Loading current folder" : "Cargando la carpeta actual", @@ -371,6 +370,7 @@ "Name cannot be empty" : "El nombre no puede estar en blanco", "Another entry with the same name already exists" : "Ya existe otra entrada con el mismo nombre.", "Storage informations" : "Informaciones de almacenamiento", + "Choose file" : "Elegir archivo", "Open the files app settings" : "Abrir la configuración de la app Archivos", "You might not have have permissions to view it, ask the sender to share it" : "Puede que no tenga permisos para verlo, solicite al remitente que lo comparta", "Destination is not a folder" : "El destino no es una carpeta", diff --git a/apps/files/l10n/eu.js b/apps/files/l10n/eu.js index a82f5195cc9a5..95c9882208f30 100644 --- a/apps/files/l10n/eu.js +++ b/apps/files/l10n/eu.js @@ -134,7 +134,6 @@ OC.L10N.register( "Ownership transfer request sent" : "Jabetza transferentzia eskaera bidalita", "Cannot transfer ownership of a file or folder you do not own" : "Ezin da zurea ez den fitxategi edo karpeta baten jabetza transferitu", "Select file or folder to link to" : "Hautatu estekatzeko fitxategia edo karpeta", - "Choose file" : "Aukeratu fitxategia", "Choose {file}" : "Aukeratu {file}", "New" : "Berria", "Loading current folder" : "Uneko karpeta kargatzen", @@ -375,6 +374,7 @@ OC.L10N.register( "Name cannot be empty" : "Izena ezin da hutsik egon", "Another entry with the same name already exists" : "Badago izen hori duen beste sarrera bat", "Storage informations" : "Biltegiaren informazioak", + "Choose file" : "Aukeratu fitxategia", "Open the files app settings" : "Ireki Fitxategiak aplikazioaren ezarpenak", "You might not have have permissions to view it, ask the sender to share it" : "Baliteke hura ikusteko baimenik ez izatea; eskatu igorleari partekatzeko", "Destination is not a folder" : "Helburua ez da karpeta bat", diff --git a/apps/files/l10n/eu.json b/apps/files/l10n/eu.json index 62c74a66b3409..35c44032ffbb0 100644 --- a/apps/files/l10n/eu.json +++ b/apps/files/l10n/eu.json @@ -132,7 +132,6 @@ "Ownership transfer request sent" : "Jabetza transferentzia eskaera bidalita", "Cannot transfer ownership of a file or folder you do not own" : "Ezin da zurea ez den fitxategi edo karpeta baten jabetza transferitu", "Select file or folder to link to" : "Hautatu estekatzeko fitxategia edo karpeta", - "Choose file" : "Aukeratu fitxategia", "Choose {file}" : "Aukeratu {file}", "New" : "Berria", "Loading current folder" : "Uneko karpeta kargatzen", @@ -373,6 +372,7 @@ "Name cannot be empty" : "Izena ezin da hutsik egon", "Another entry with the same name already exists" : "Badago izen hori duen beste sarrera bat", "Storage informations" : "Biltegiaren informazioak", + "Choose file" : "Aukeratu fitxategia", "Open the files app settings" : "Ireki Fitxategiak aplikazioaren ezarpenak", "You might not have have permissions to view it, ask the sender to share it" : "Baliteke hura ikusteko baimenik ez izatea; eskatu igorleari partekatzeko", "Destination is not a folder" : "Helburua ez da karpeta bat", diff --git a/apps/files/l10n/fi.js b/apps/files/l10n/fi.js index 4ecdca3213c1d..6a92561add91d 100644 --- a/apps/files/l10n/fi.js +++ b/apps/files/l10n/fi.js @@ -111,7 +111,6 @@ OC.L10N.register( "Ownership transfer request sent" : "Pyyntö omistajuuden vaihdosta lähetetty", "Cannot transfer ownership of a file or folder you do not own" : "Et voi siirtää sellaisen tiedoston tai kansion omistajuutta, jota et itse omista", "Select file or folder to link to" : "Valitse tiedosto tai kansio, johon linkitetään", - "Choose file" : "Valitse tiedosto", "Choose {file}" : "Valitse {file}", "New" : "Uusi", "Loading current folder" : "Ladataan nykyistä kansiota", @@ -335,6 +334,7 @@ OC.L10N.register( "Name cannot be empty" : "Nimi ei voi olla tyhjä", "Another entry with the same name already exists" : "Toinen tietue samalla nimellä on jo olemassa", "Storage informations" : "Tallennustilan tietoja", + "Choose file" : "Valitse tiedosto", "Open the files app settings" : "Avaa tiedostosovelluksen asetukset", "You might not have have permissions to view it, ask the sender to share it" : "Oikeutesi eivät kenties riitä sen katseluun, pyydä lähettäjää jakamaan se", "Destination is not a folder" : "Kohde ei ole kansio", diff --git a/apps/files/l10n/fi.json b/apps/files/l10n/fi.json index 34175b1d87850..64d12bb028926 100644 --- a/apps/files/l10n/fi.json +++ b/apps/files/l10n/fi.json @@ -109,7 +109,6 @@ "Ownership transfer request sent" : "Pyyntö omistajuuden vaihdosta lähetetty", "Cannot transfer ownership of a file or folder you do not own" : "Et voi siirtää sellaisen tiedoston tai kansion omistajuutta, jota et itse omista", "Select file or folder to link to" : "Valitse tiedosto tai kansio, johon linkitetään", - "Choose file" : "Valitse tiedosto", "Choose {file}" : "Valitse {file}", "New" : "Uusi", "Loading current folder" : "Ladataan nykyistä kansiota", @@ -333,6 +332,7 @@ "Name cannot be empty" : "Nimi ei voi olla tyhjä", "Another entry with the same name already exists" : "Toinen tietue samalla nimellä on jo olemassa", "Storage informations" : "Tallennustilan tietoja", + "Choose file" : "Valitse tiedosto", "Open the files app settings" : "Avaa tiedostosovelluksen asetukset", "You might not have have permissions to view it, ask the sender to share it" : "Oikeutesi eivät kenties riitä sen katseluun, pyydä lähettäjää jakamaan se", "Destination is not a folder" : "Kohde ei ole kansio", diff --git a/apps/files/l10n/fr.js b/apps/files/l10n/fr.js index b564863707176..8f49325892bcd 100644 --- a/apps/files/l10n/fr.js +++ b/apps/files/l10n/fr.js @@ -136,7 +136,6 @@ OC.L10N.register( "Ownership transfer request sent" : "Requête de transfert de propriété envoyée", "Cannot transfer ownership of a file or folder you do not own" : "Impossible de transférer la propriété d'un fichier ou d'un dossier que vous ne possédez pas", "Select file or folder to link to" : "Sélectionnez le fichier ou le dossier à lier", - "Choose file" : "Choisir un fichier", "Choose {file}" : "Choisir {file}", "New" : "Nouveau", "Loading current folder" : "Chargement du dossier courant", @@ -383,6 +382,7 @@ OC.L10N.register( "Name cannot be empty" : "Le nom ne peut pas être vide", "Another entry with the same name already exists" : "Une autre entrée avec le même nom existe déjà", "Storage informations" : "Informations sur le stockage", + "Choose file" : "Choisir un fichier", "Open the files app settings" : "Ouvrir les paramètres de l'application Fichiers", "You might not have have permissions to view it, ask the sender to share it" : "Vous n’avez peut-être pas les autorisations pour le voir, demandez à l’expéditeur de le partager", "Destination is not a folder" : "La destination n'est pas un dossier", diff --git a/apps/files/l10n/fr.json b/apps/files/l10n/fr.json index 9f27fb7fca441..f86c404919b8c 100644 --- a/apps/files/l10n/fr.json +++ b/apps/files/l10n/fr.json @@ -134,7 +134,6 @@ "Ownership transfer request sent" : "Requête de transfert de propriété envoyée", "Cannot transfer ownership of a file or folder you do not own" : "Impossible de transférer la propriété d'un fichier ou d'un dossier que vous ne possédez pas", "Select file or folder to link to" : "Sélectionnez le fichier ou le dossier à lier", - "Choose file" : "Choisir un fichier", "Choose {file}" : "Choisir {file}", "New" : "Nouveau", "Loading current folder" : "Chargement du dossier courant", @@ -381,6 +380,7 @@ "Name cannot be empty" : "Le nom ne peut pas être vide", "Another entry with the same name already exists" : "Une autre entrée avec le même nom existe déjà", "Storage informations" : "Informations sur le stockage", + "Choose file" : "Choisir un fichier", "Open the files app settings" : "Ouvrir les paramètres de l'application Fichiers", "You might not have have permissions to view it, ask the sender to share it" : "Vous n’avez peut-être pas les autorisations pour le voir, demandez à l’expéditeur de le partager", "Destination is not a folder" : "La destination n'est pas un dossier", diff --git a/apps/files/l10n/ga.js b/apps/files/l10n/ga.js index d6e4f613180a5..60d53998b529d 100644 --- a/apps/files/l10n/ga.js +++ b/apps/files/l10n/ga.js @@ -136,7 +136,6 @@ OC.L10N.register( "Ownership transfer request sent" : "Iarratas aistrithe úinéireachta seolta", "Cannot transfer ownership of a file or folder you do not own" : "Ní féidir úinéireacht comhaid nó fillteáin nach leat a aistriú", "Select file or folder to link to" : "Roghnaigh comhad nó fillteán le nascadh leis", - "Choose file" : "Roghnaigh comhad", "Choose {file}" : "Roghnaigh {file}", "New" : "Nua", "Loading current folder" : "An fillteán reatha á lódáil", @@ -208,6 +207,8 @@ OC.L10N.register( "Edit online" : "Cuir in eagar ar líne", "Failed to redirect to client" : "Theip ar atreorú chuig an gcliant", "Edit locally" : "Cuir in eagar go háitiúil", + "Moving \"{source}\" to \"{destination}\" …" : "Ag bogadh \"{ source}\" go \"{destination}\" ...", + "Copying \"{source}\" to \"{destination}\" …" : "“{ source}” á chóipeáil go “{destination}”…", "You cannot move a file/folder onto itself or into a subfolder of itself" : "Ní féidir leat comhad/fillteán a bhogadh isteach ann féin nó isteach i bhfofhillteán de féin", "(copy)" : "(cóip)", "(copy %n)" : "(cóip %n)", @@ -383,6 +384,7 @@ OC.L10N.register( "Name cannot be empty" : "Ní féidir leis an ainm a bheith folamh", "Another entry with the same name already exists" : "Tá iontráil eile leis an ainm céanna ann cheana féin", "Storage informations" : "Faisnéis stórála", + "Choose file" : "Roghnaigh comhad", "Open the files app settings" : "Oscail na socruithe aip comhaid", "You might not have have permissions to view it, ask the sender to share it" : "Seans nach bhfuil cead agat é a fheiceáil, iarr ar an seoltóir é a roinnt", "Destination is not a folder" : "Ní fillteán é ceann scríbe", diff --git a/apps/files/l10n/ga.json b/apps/files/l10n/ga.json index ef24d58d8493d..67e8aa3c51fdd 100644 --- a/apps/files/l10n/ga.json +++ b/apps/files/l10n/ga.json @@ -134,7 +134,6 @@ "Ownership transfer request sent" : "Iarratas aistrithe úinéireachta seolta", "Cannot transfer ownership of a file or folder you do not own" : "Ní féidir úinéireacht comhaid nó fillteáin nach leat a aistriú", "Select file or folder to link to" : "Roghnaigh comhad nó fillteán le nascadh leis", - "Choose file" : "Roghnaigh comhad", "Choose {file}" : "Roghnaigh {file}", "New" : "Nua", "Loading current folder" : "An fillteán reatha á lódáil", @@ -206,6 +205,8 @@ "Edit online" : "Cuir in eagar ar líne", "Failed to redirect to client" : "Theip ar atreorú chuig an gcliant", "Edit locally" : "Cuir in eagar go háitiúil", + "Moving \"{source}\" to \"{destination}\" …" : "Ag bogadh \"{ source}\" go \"{destination}\" ...", + "Copying \"{source}\" to \"{destination}\" …" : "“{ source}” á chóipeáil go “{destination}”…", "You cannot move a file/folder onto itself or into a subfolder of itself" : "Ní féidir leat comhad/fillteán a bhogadh isteach ann féin nó isteach i bhfofhillteán de féin", "(copy)" : "(cóip)", "(copy %n)" : "(cóip %n)", @@ -381,6 +382,7 @@ "Name cannot be empty" : "Ní féidir leis an ainm a bheith folamh", "Another entry with the same name already exists" : "Tá iontráil eile leis an ainm céanna ann cheana féin", "Storage informations" : "Faisnéis stórála", + "Choose file" : "Roghnaigh comhad", "Open the files app settings" : "Oscail na socruithe aip comhaid", "You might not have have permissions to view it, ask the sender to share it" : "Seans nach bhfuil cead agat é a fheiceáil, iarr ar an seoltóir é a roinnt", "Destination is not a folder" : "Ní fillteán é ceann scríbe", diff --git a/apps/files/l10n/gl.js b/apps/files/l10n/gl.js index 2727bf2963bbe..21b8c5f2921ef 100644 --- a/apps/files/l10n/gl.js +++ b/apps/files/l10n/gl.js @@ -136,7 +136,6 @@ OC.L10N.register( "Ownership transfer request sent" : "Enviouse solicitude de transferencia da propiedade", "Cannot transfer ownership of a file or folder you do not own" : "Non é posíbel transferir a propiedade dun ficheiro ou cartafol do que non es o propietario", "Select file or folder to link to" : "Seleccione o ficheiro ou cartafol ao que ligar", - "Choose file" : "Escoller o ficheiro", "Choose {file}" : "Escoller {file}", "New" : "Novo", "Loading current folder" : "Cargando o cartafol actual", @@ -385,6 +384,7 @@ OC.L10N.register( "Name cannot be empty" : "O nome non pode estar baleiro", "Another entry with the same name already exists" : "Xa existe outra entrada co mesmo nome", "Storage informations" : "Información de almacenamento", + "Choose file" : "Escoller o ficheiro", "Open the files app settings" : "Abrir os axustes da aplicación de ficheiros", "You might not have have permissions to view it, ask the sender to share it" : "É posíbel que non teña permisos para velo, pídalle ao remitente que o comparta", "Destination is not a folder" : "O destino non é un cartafol", diff --git a/apps/files/l10n/gl.json b/apps/files/l10n/gl.json index 69a0d6e0f4206..e065ee6b30df6 100644 --- a/apps/files/l10n/gl.json +++ b/apps/files/l10n/gl.json @@ -134,7 +134,6 @@ "Ownership transfer request sent" : "Enviouse solicitude de transferencia da propiedade", "Cannot transfer ownership of a file or folder you do not own" : "Non é posíbel transferir a propiedade dun ficheiro ou cartafol do que non es o propietario", "Select file or folder to link to" : "Seleccione o ficheiro ou cartafol ao que ligar", - "Choose file" : "Escoller o ficheiro", "Choose {file}" : "Escoller {file}", "New" : "Novo", "Loading current folder" : "Cargando o cartafol actual", @@ -383,6 +382,7 @@ "Name cannot be empty" : "O nome non pode estar baleiro", "Another entry with the same name already exists" : "Xa existe outra entrada co mesmo nome", "Storage informations" : "Información de almacenamento", + "Choose file" : "Escoller o ficheiro", "Open the files app settings" : "Abrir os axustes da aplicación de ficheiros", "You might not have have permissions to view it, ask the sender to share it" : "É posíbel que non teña permisos para velo, pídalle ao remitente que o comparta", "Destination is not a folder" : "O destino non é un cartafol", diff --git a/apps/files/l10n/hu.js b/apps/files/l10n/hu.js index 1ed1d13a22339..6438a8f590696 100644 --- a/apps/files/l10n/hu.js +++ b/apps/files/l10n/hu.js @@ -136,7 +136,6 @@ OC.L10N.register( "Ownership transfer request sent" : "Tulajdonjog átruházási kérés elküldve", "Cannot transfer ownership of a file or folder you do not own" : "Nem ruházható át olyan fájl vagy mappa tulajdonjoga, amely nem Öné", "Select file or folder to link to" : "Válassza ki a hivatkozandó fájlt vagy mappát", - "Choose file" : "Válasszon fájlt", "Choose {file}" : "{file} kiválasztása", "New" : "Új", "Loading current folder" : "Jelenlegi mappa betöltése", @@ -382,6 +381,7 @@ OC.L10N.register( "Name cannot be empty" : "A név nem lehet üres", "Another entry with the same name already exists" : "Már létezik ilyen nevű bejegyzés", "Storage informations" : "Tárhely-információk", + "Choose file" : "Válasszon fájlt", "Open the files app settings" : "Nyissa meg a Fájlok lalkalmazás beállításait", "You might not have have permissions to view it, ask the sender to share it" : "Lehet, hogy nincs jogosultsága, hogy megtekintse, kérje meg a küldőt, hogy ossza meg", "Destination is not a folder" : "A cél nem mappa", diff --git a/apps/files/l10n/hu.json b/apps/files/l10n/hu.json index ba85895abe91e..4fe618ddb543c 100644 --- a/apps/files/l10n/hu.json +++ b/apps/files/l10n/hu.json @@ -134,7 +134,6 @@ "Ownership transfer request sent" : "Tulajdonjog átruházási kérés elküldve", "Cannot transfer ownership of a file or folder you do not own" : "Nem ruházható át olyan fájl vagy mappa tulajdonjoga, amely nem Öné", "Select file or folder to link to" : "Válassza ki a hivatkozandó fájlt vagy mappát", - "Choose file" : "Válasszon fájlt", "Choose {file}" : "{file} kiválasztása", "New" : "Új", "Loading current folder" : "Jelenlegi mappa betöltése", @@ -380,6 +379,7 @@ "Name cannot be empty" : "A név nem lehet üres", "Another entry with the same name already exists" : "Már létezik ilyen nevű bejegyzés", "Storage informations" : "Tárhely-információk", + "Choose file" : "Válasszon fájlt", "Open the files app settings" : "Nyissa meg a Fájlok lalkalmazás beállításait", "You might not have have permissions to view it, ask the sender to share it" : "Lehet, hogy nincs jogosultsága, hogy megtekintse, kérje meg a küldőt, hogy ossza meg", "Destination is not a folder" : "A cél nem mappa", diff --git a/apps/files/l10n/is.js b/apps/files/l10n/is.js index 259efd611eba8..10c673907323d 100644 --- a/apps/files/l10n/is.js +++ b/apps/files/l10n/is.js @@ -109,7 +109,6 @@ OC.L10N.register( "Ownership transfer request sent" : "Beiðni um millifærslu eignarhalds send", "Cannot transfer ownership of a file or folder you do not own" : "Ekki er hægt að millifæra eignarhald á skrá eða möppu sem þú átt ekki", "Select file or folder to link to" : "Veldu skrá eða möppu til að tengja í", - "Choose file" : "Veldu skrá", "Choose {file}" : "Veldu {file}", "New" : "Nýtt", "Loading current folder" : "Hleð inn núverandi möppu", @@ -288,6 +287,7 @@ OC.L10N.register( "Name cannot be empty" : "Heiti má ekki vera tómt", "Another entry with the same name already exists" : "Önnur færsla með sama heiti er þegar til staðar", "Storage informations" : "Upplýsingar um geymslurými", + "Choose file" : "Veldu skrá", "Open the files app settings" : "Opna stillingar skráaforritsins", "You might not have have permissions to view it, ask the sender to share it" : "Þú hefur mögulega ekki heimildir til að skoða hana, biddu sendandann um að deila henni", "Destination is not a folder" : "Áfangastaðurinn er ekki mappa", diff --git a/apps/files/l10n/is.json b/apps/files/l10n/is.json index d33da10525483..ca831873ce449 100644 --- a/apps/files/l10n/is.json +++ b/apps/files/l10n/is.json @@ -107,7 +107,6 @@ "Ownership transfer request sent" : "Beiðni um millifærslu eignarhalds send", "Cannot transfer ownership of a file or folder you do not own" : "Ekki er hægt að millifæra eignarhald á skrá eða möppu sem þú átt ekki", "Select file or folder to link to" : "Veldu skrá eða möppu til að tengja í", - "Choose file" : "Veldu skrá", "Choose {file}" : "Veldu {file}", "New" : "Nýtt", "Loading current folder" : "Hleð inn núverandi möppu", @@ -286,6 +285,7 @@ "Name cannot be empty" : "Heiti má ekki vera tómt", "Another entry with the same name already exists" : "Önnur færsla með sama heiti er þegar til staðar", "Storage informations" : "Upplýsingar um geymslurými", + "Choose file" : "Veldu skrá", "Open the files app settings" : "Opna stillingar skráaforritsins", "You might not have have permissions to view it, ask the sender to share it" : "Þú hefur mögulega ekki heimildir til að skoða hana, biddu sendandann um að deila henni", "Destination is not a folder" : "Áfangastaðurinn er ekki mappa", diff --git a/apps/files/l10n/it.js b/apps/files/l10n/it.js index c140f72818cbf..67ae9f731b68a 100644 --- a/apps/files/l10n/it.js +++ b/apps/files/l10n/it.js @@ -135,7 +135,6 @@ OC.L10N.register( "Ownership transfer request sent" : "Richiesta di trasferimento della proprietà inviata", "Cannot transfer ownership of a file or folder you do not own" : "Impossibile trasferire la proprietà di un file o di una cartella di cui non sei proprietario", "Select file or folder to link to" : "Seleziona un file o una cartella da collegare", - "Choose file" : "Scegli file", "Choose {file}" : "Scegli {file}", "New" : "Nuovo", "Loading current folder" : "Sto caricando la cartella corrente", @@ -381,6 +380,7 @@ OC.L10N.register( "Name cannot be empty" : "Il nome non può essere vuoto", "Another entry with the same name already exists" : "Esiste già un'altra voce con lo stesso nome", "Storage informations" : "Informazioni di archiviazione", + "Choose file" : "Scegli file", "Open the files app settings" : "Apri le impostazioni dell'applicazione File", "You might not have have permissions to view it, ask the sender to share it" : "Potresti non avere i permessi per visualizzarlo, chiedi al mittente di condividerlo", "Destination is not a folder" : "La destinazione non è una cartella", diff --git a/apps/files/l10n/it.json b/apps/files/l10n/it.json index a3fb137951fd9..0cba909325319 100644 --- a/apps/files/l10n/it.json +++ b/apps/files/l10n/it.json @@ -133,7 +133,6 @@ "Ownership transfer request sent" : "Richiesta di trasferimento della proprietà inviata", "Cannot transfer ownership of a file or folder you do not own" : "Impossibile trasferire la proprietà di un file o di una cartella di cui non sei proprietario", "Select file or folder to link to" : "Seleziona un file o una cartella da collegare", - "Choose file" : "Scegli file", "Choose {file}" : "Scegli {file}", "New" : "Nuovo", "Loading current folder" : "Sto caricando la cartella corrente", @@ -379,6 +378,7 @@ "Name cannot be empty" : "Il nome non può essere vuoto", "Another entry with the same name already exists" : "Esiste già un'altra voce con lo stesso nome", "Storage informations" : "Informazioni di archiviazione", + "Choose file" : "Scegli file", "Open the files app settings" : "Apri le impostazioni dell'applicazione File", "You might not have have permissions to view it, ask the sender to share it" : "Potresti non avere i permessi per visualizzarlo, chiedi al mittente di condividerlo", "Destination is not a folder" : "La destinazione non è una cartella", diff --git a/apps/files/l10n/ja.js b/apps/files/l10n/ja.js index 602c4732d7e86..9291efcdb9ab0 100644 --- a/apps/files/l10n/ja.js +++ b/apps/files/l10n/ja.js @@ -136,7 +136,6 @@ OC.L10N.register( "Ownership transfer request sent" : "所有権転送のリクエストを送信しました", "Cannot transfer ownership of a file or folder you do not own" : "所有していないファイルまたはフォルダーの所有権を譲渡することはできません", "Select file or folder to link to" : "リンク先のファイルまたはフォルダを選択", - "Choose file" : "ファイルを選択", "Choose {file}" : "{file}を選択", "New" : "新規作成", "Loading current folder" : "現在のフォルダの読み込み中", @@ -383,6 +382,7 @@ OC.L10N.register( "Name cannot be empty" : "名前は空にできません", "Another entry with the same name already exists" : "同じ名前の別のエントリがすでに存在しています", "Storage informations" : "ストレージ情報", + "Choose file" : "ファイルを選択", "Open the files app settings" : "ファイルアプリの設定を開く", "You might not have have permissions to view it, ask the sender to share it" : "閲覧権限がない可能性があるため、送信者に共有を依頼してください", "Destination is not a folder" : "宛先がフォルダではありません", diff --git a/apps/files/l10n/ja.json b/apps/files/l10n/ja.json index 346295052478c..2c324c534ad6a 100644 --- a/apps/files/l10n/ja.json +++ b/apps/files/l10n/ja.json @@ -134,7 +134,6 @@ "Ownership transfer request sent" : "所有権転送のリクエストを送信しました", "Cannot transfer ownership of a file or folder you do not own" : "所有していないファイルまたはフォルダーの所有権を譲渡することはできません", "Select file or folder to link to" : "リンク先のファイルまたはフォルダを選択", - "Choose file" : "ファイルを選択", "Choose {file}" : "{file}を選択", "New" : "新規作成", "Loading current folder" : "現在のフォルダの読み込み中", @@ -381,6 +380,7 @@ "Name cannot be empty" : "名前は空にできません", "Another entry with the same name already exists" : "同じ名前の別のエントリがすでに存在しています", "Storage informations" : "ストレージ情報", + "Choose file" : "ファイルを選択", "Open the files app settings" : "ファイルアプリの設定を開く", "You might not have have permissions to view it, ask the sender to share it" : "閲覧権限がない可能性があるため、送信者に共有を依頼してください", "Destination is not a folder" : "宛先がフォルダではありません", diff --git a/apps/files/l10n/ka.js b/apps/files/l10n/ka.js index c8e7d363b42b3..d4387b8e9d51b 100644 --- a/apps/files/l10n/ka.js +++ b/apps/files/l10n/ka.js @@ -111,7 +111,6 @@ OC.L10N.register( "Ownership transfer request sent" : "Ownership transfer request sent", "Cannot transfer ownership of a file or folder you do not own" : "Cannot transfer ownership of a file or folder you do not own", "Select file or folder to link to" : "Select file or folder to link to", - "Choose file" : "Choose file", "Choose {file}" : "Choose {file}", "New" : "New", "Loading current folder" : "Loading current folder", @@ -294,6 +293,7 @@ OC.L10N.register( "Name cannot be empty" : "Name cannot be empty", "Another entry with the same name already exists" : "Another entry with the same name already exists", "Storage informations" : "Storage informations", + "Choose file" : "Choose file", "Open the files app settings" : "Open the files app settings", "You might not have have permissions to view it, ask the sender to share it" : "You might not have have permissions to view it, ask the sender to share it", "Destination is not a folder" : "Destination is not a folder", diff --git a/apps/files/l10n/ka.json b/apps/files/l10n/ka.json index a4595f666fb30..5a6ecadbc858c 100644 --- a/apps/files/l10n/ka.json +++ b/apps/files/l10n/ka.json @@ -109,7 +109,6 @@ "Ownership transfer request sent" : "Ownership transfer request sent", "Cannot transfer ownership of a file or folder you do not own" : "Cannot transfer ownership of a file or folder you do not own", "Select file or folder to link to" : "Select file or folder to link to", - "Choose file" : "Choose file", "Choose {file}" : "Choose {file}", "New" : "New", "Loading current folder" : "Loading current folder", @@ -292,6 +291,7 @@ "Name cannot be empty" : "Name cannot be empty", "Another entry with the same name already exists" : "Another entry with the same name already exists", "Storage informations" : "Storage informations", + "Choose file" : "Choose file", "Open the files app settings" : "Open the files app settings", "You might not have have permissions to view it, ask the sender to share it" : "You might not have have permissions to view it, ask the sender to share it", "Destination is not a folder" : "Destination is not a folder", diff --git a/apps/files/l10n/ko.js b/apps/files/l10n/ko.js index a8d1f4bfc86d6..f793cf1f5c79f 100644 --- a/apps/files/l10n/ko.js +++ b/apps/files/l10n/ko.js @@ -121,7 +121,6 @@ OC.L10N.register( "Ownership transfer request sent" : "소유권 이전 요청이 전송됨", "Cannot transfer ownership of a file or folder you do not own" : "내가 소유하지 않은 파일이나 폴더의 소유권을 이전할 수 없음", "Select file or folder to link to" : "링크할 파일이나 폴더 선택", - "Choose file" : "파일 선택", "Choose {file}" : "{file} 선택", "New" : "새 파일", "Loading current folder" : "현재 폴더를 불러오는 중", @@ -337,6 +336,7 @@ OC.L10N.register( "Name cannot be empty" : "이름이 비어 있을 수 없음", "Another entry with the same name already exists" : "같은 이름의 항목이 이미 있습니다.", "Storage informations" : "저장소 정보", + "Choose file" : "파일 선택", "Open the files app settings" : "파일 앱 설정을 열기", "You might not have have permissions to view it, ask the sender to share it" : "이것을 볼 권한이 없는 것 같습니다, 보낸 이에게 공유를 요청하세요.", "Destination is not a folder" : "대상이 폴더가 아닙니다.", diff --git a/apps/files/l10n/ko.json b/apps/files/l10n/ko.json index 048928260e14f..5eefd62d41023 100644 --- a/apps/files/l10n/ko.json +++ b/apps/files/l10n/ko.json @@ -119,7 +119,6 @@ "Ownership transfer request sent" : "소유권 이전 요청이 전송됨", "Cannot transfer ownership of a file or folder you do not own" : "내가 소유하지 않은 파일이나 폴더의 소유권을 이전할 수 없음", "Select file or folder to link to" : "링크할 파일이나 폴더 선택", - "Choose file" : "파일 선택", "Choose {file}" : "{file} 선택", "New" : "새 파일", "Loading current folder" : "현재 폴더를 불러오는 중", @@ -335,6 +334,7 @@ "Name cannot be empty" : "이름이 비어 있을 수 없음", "Another entry with the same name already exists" : "같은 이름의 항목이 이미 있습니다.", "Storage informations" : "저장소 정보", + "Choose file" : "파일 선택", "Open the files app settings" : "파일 앱 설정을 열기", "You might not have have permissions to view it, ask the sender to share it" : "이것을 볼 권한이 없는 것 같습니다, 보낸 이에게 공유를 요청하세요.", "Destination is not a folder" : "대상이 폴더가 아닙니다.", diff --git a/apps/files/l10n/mk.js b/apps/files/l10n/mk.js index ce885f0b87508..b0795de6c0d42 100644 --- a/apps/files/l10n/mk.js +++ b/apps/files/l10n/mk.js @@ -111,7 +111,6 @@ OC.L10N.register( "Ownership transfer request sent" : "Испратено барање за трансфер на сопственост", "Cannot transfer ownership of a file or folder you do not own" : "Неможете да направите трансвер на сопственот на папка која не е ваша", "Select file or folder to link to" : "Изберете датотека или папка за линк до", - "Choose file" : "Избери датотека", "Choose {file}" : "Избери {file}", "New" : "Ново", "Loading current folder" : "Вчитување на моменталната папка", @@ -304,6 +303,7 @@ OC.L10N.register( "Name cannot be empty" : "Името неможе да биде празно", "Another entry with the same name already exists" : "Друг запис со исто име веќе постои", "Storage informations" : "Информации за складиштето", + "Choose file" : "Избери датотека", "Open the files app settings" : "Отвори ги параметрите за датотеките", "You might not have have permissions to view it, ask the sender to share it" : "Можеби немате дозвола за преглед, прашајте го испраќачот за споделувањето", "Destination is not a folder" : "Дестинацијата не е папка", diff --git a/apps/files/l10n/mk.json b/apps/files/l10n/mk.json index c497e4c8cd0e6..5bc3a9dfbd24f 100644 --- a/apps/files/l10n/mk.json +++ b/apps/files/l10n/mk.json @@ -109,7 +109,6 @@ "Ownership transfer request sent" : "Испратено барање за трансфер на сопственост", "Cannot transfer ownership of a file or folder you do not own" : "Неможете да направите трансвер на сопственот на папка која не е ваша", "Select file or folder to link to" : "Изберете датотека или папка за линк до", - "Choose file" : "Избери датотека", "Choose {file}" : "Избери {file}", "New" : "Ново", "Loading current folder" : "Вчитување на моменталната папка", @@ -302,6 +301,7 @@ "Name cannot be empty" : "Името неможе да биде празно", "Another entry with the same name already exists" : "Друг запис со исто име веќе постои", "Storage informations" : "Информации за складиштето", + "Choose file" : "Избери датотека", "Open the files app settings" : "Отвори ги параметрите за датотеките", "You might not have have permissions to view it, ask the sender to share it" : "Можеби немате дозвола за преглед, прашајте го испраќачот за споделувањето", "Destination is not a folder" : "Дестинацијата не е папка", diff --git a/apps/files/l10n/nb.js b/apps/files/l10n/nb.js index 34437f599b03f..1b4f08abb9c47 100644 --- a/apps/files/l10n/nb.js +++ b/apps/files/l10n/nb.js @@ -136,7 +136,6 @@ OC.L10N.register( "Ownership transfer request sent" : "Forespørsel om overføring av eierskap er sendt", "Cannot transfer ownership of a file or folder you do not own" : "Kan ikke overføre eierskap til en fil eller mappe du ikke eier", "Select file or folder to link to" : "Velg fil eller mappe å koble til", - "Choose file" : "Velg fil", "Choose {file}" : "Choose {file}", "New" : "Ny", "Loading current folder" : "Laster gjeldende mappe", @@ -208,6 +207,8 @@ OC.L10N.register( "Edit online" : "Rediger på nett", "Failed to redirect to client" : "Kunne ikke omdirigere til klienten", "Edit locally" : "Rediger lokalt", + "Moving \"{source}\" to \"{destination}\" …" : "Flytter \"{source}\" til \"{destination}\" …", + "Copying \"{source}\" to \"{destination}\" …" : "Flytter \"{source}\" til \"{destination}\" …", "You cannot move a file/folder onto itself or into a subfolder of itself" : "Du kan ikke flytte en fil/mappe til seg selv eller til en undermappe av seg selv", "(copy)" : "(kopier)", "(copy %n)" : "(kopier %n)", @@ -273,6 +274,7 @@ OC.L10N.register( "\"{segment}\" is a reserved name and not allowed for filenames." : "\"{segment}\" er et reservert navn og ikke tillatt for filnavn.", "\"{extension}\" is not an allowed filetype." : "\"{extension}\" er ikke en tillatt filtype.", "Filenames must not end with \"{extension}\"." : "Filnavn må ikke slutte med \"{extension}\".", + "List of favorite files and folders." : "Liste over favorittfiler og mapper.", "No favorites yet" : "Ingen favoritter enda", "Files and folders you mark as favorite will show up here" : "Filer og mapper som du gjør til favoritter vises her", "All files" : "Alle filer", @@ -382,6 +384,7 @@ OC.L10N.register( "Name cannot be empty" : "Navn kan ikke være tom", "Another entry with the same name already exists" : "En annen oppføring med samme navnet finnes allerede", "Storage informations" : "Informasjon om lagring", + "Choose file" : "Velg fil", "Open the files app settings" : "Åpne Filer-appens innstillinger", "You might not have have permissions to view it, ask the sender to share it" : "Du har kanskje ikke tillatelse til å se den, be avsenderen om å dele den", "Destination is not a folder" : "Målplassering er ikke en mappe", @@ -393,6 +396,9 @@ OC.L10N.register( "Text file" : "Tekstfil", "New text file.txt" : "Ny tekstfil.txt", "Direct link was copied (only works for people who have access to this file/folder)" : "Direkte lenke ble kopiert (fungerer bare for personer som har tilgang til denne filen / mappen)", - "Copy direct link (only works for people who have access to this file/folder)" : "Kopier direkte lenke (fungerer bare for personer som har tilgang til denne filen / mappen)" + "Copy direct link (only works for people who have access to this file/folder)" : "Kopier direkte lenke (fungerer bare for personer som har tilgang til denne filen / mappen)", + "Favored" : "Favorittlagt", + "Favor" : "Favoritt", + "Not favored" : "Ikke favorittlagt" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/nb.json b/apps/files/l10n/nb.json index 42965d489ab8c..d7e34dfc22e84 100644 --- a/apps/files/l10n/nb.json +++ b/apps/files/l10n/nb.json @@ -134,7 +134,6 @@ "Ownership transfer request sent" : "Forespørsel om overføring av eierskap er sendt", "Cannot transfer ownership of a file or folder you do not own" : "Kan ikke overføre eierskap til en fil eller mappe du ikke eier", "Select file or folder to link to" : "Velg fil eller mappe å koble til", - "Choose file" : "Velg fil", "Choose {file}" : "Choose {file}", "New" : "Ny", "Loading current folder" : "Laster gjeldende mappe", @@ -206,6 +205,8 @@ "Edit online" : "Rediger på nett", "Failed to redirect to client" : "Kunne ikke omdirigere til klienten", "Edit locally" : "Rediger lokalt", + "Moving \"{source}\" to \"{destination}\" …" : "Flytter \"{source}\" til \"{destination}\" …", + "Copying \"{source}\" to \"{destination}\" …" : "Flytter \"{source}\" til \"{destination}\" …", "You cannot move a file/folder onto itself or into a subfolder of itself" : "Du kan ikke flytte en fil/mappe til seg selv eller til en undermappe av seg selv", "(copy)" : "(kopier)", "(copy %n)" : "(kopier %n)", @@ -271,6 +272,7 @@ "\"{segment}\" is a reserved name and not allowed for filenames." : "\"{segment}\" er et reservert navn og ikke tillatt for filnavn.", "\"{extension}\" is not an allowed filetype." : "\"{extension}\" er ikke en tillatt filtype.", "Filenames must not end with \"{extension}\"." : "Filnavn må ikke slutte med \"{extension}\".", + "List of favorite files and folders." : "Liste over favorittfiler og mapper.", "No favorites yet" : "Ingen favoritter enda", "Files and folders you mark as favorite will show up here" : "Filer og mapper som du gjør til favoritter vises her", "All files" : "Alle filer", @@ -380,6 +382,7 @@ "Name cannot be empty" : "Navn kan ikke være tom", "Another entry with the same name already exists" : "En annen oppføring med samme navnet finnes allerede", "Storage informations" : "Informasjon om lagring", + "Choose file" : "Velg fil", "Open the files app settings" : "Åpne Filer-appens innstillinger", "You might not have have permissions to view it, ask the sender to share it" : "Du har kanskje ikke tillatelse til å se den, be avsenderen om å dele den", "Destination is not a folder" : "Målplassering er ikke en mappe", @@ -391,6 +394,9 @@ "Text file" : "Tekstfil", "New text file.txt" : "Ny tekstfil.txt", "Direct link was copied (only works for people who have access to this file/folder)" : "Direkte lenke ble kopiert (fungerer bare for personer som har tilgang til denne filen / mappen)", - "Copy direct link (only works for people who have access to this file/folder)" : "Kopier direkte lenke (fungerer bare for personer som har tilgang til denne filen / mappen)" + "Copy direct link (only works for people who have access to this file/folder)" : "Kopier direkte lenke (fungerer bare for personer som har tilgang til denne filen / mappen)", + "Favored" : "Favorittlagt", + "Favor" : "Favoritt", + "Not favored" : "Ikke favorittlagt" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files/l10n/nl.js b/apps/files/l10n/nl.js index e75edcbda7a89..9078e1788e8f5 100644 --- a/apps/files/l10n/nl.js +++ b/apps/files/l10n/nl.js @@ -97,7 +97,6 @@ OC.L10N.register( "Unknown error" : "Onbekende fout", "Ownership transfer request sent" : "Aanvraag eigendomsoverdracht verstuurd", "Cannot transfer ownership of a file or folder you do not own" : "Kan de eigendom van een bestand of map waarvan u niet de eigenaar bent, niet overdragen", - "Choose file" : "Kies bestand", "Choose {file}" : "Kies {file}", "New" : "Nieuw", "No files in here" : "Hier geen bestanden", @@ -258,6 +257,7 @@ OC.L10N.register( "An error occurred while trying to update the tags" : "Er trad een fout op bij je poging om de tags bij te werken", "\"remote user\"" : "\"externe gebruiker\"", "Name cannot be empty" : "Naam mag niet leeg zijn", + "Choose file" : "Kies bestand", "Create new templates folder" : "Nieuwe sjablonenmap", "Toggle %1$s sublist" : "Omschakelen%1$s sublijsten", "Text file" : "Tekstbestand", diff --git a/apps/files/l10n/nl.json b/apps/files/l10n/nl.json index bb8964b560d36..e159244d51562 100644 --- a/apps/files/l10n/nl.json +++ b/apps/files/l10n/nl.json @@ -95,7 +95,6 @@ "Unknown error" : "Onbekende fout", "Ownership transfer request sent" : "Aanvraag eigendomsoverdracht verstuurd", "Cannot transfer ownership of a file or folder you do not own" : "Kan de eigendom van een bestand of map waarvan u niet de eigenaar bent, niet overdragen", - "Choose file" : "Kies bestand", "Choose {file}" : "Kies {file}", "New" : "Nieuw", "No files in here" : "Hier geen bestanden", @@ -256,6 +255,7 @@ "An error occurred while trying to update the tags" : "Er trad een fout op bij je poging om de tags bij te werken", "\"remote user\"" : "\"externe gebruiker\"", "Name cannot be empty" : "Naam mag niet leeg zijn", + "Choose file" : "Kies bestand", "Create new templates folder" : "Nieuwe sjablonenmap", "Toggle %1$s sublist" : "Omschakelen%1$s sublijsten", "Text file" : "Tekstbestand", diff --git a/apps/files/l10n/pl.js b/apps/files/l10n/pl.js index 5d900ece06acd..c7d9a83bca0bb 100644 --- a/apps/files/l10n/pl.js +++ b/apps/files/l10n/pl.js @@ -115,7 +115,6 @@ OC.L10N.register( "Ownership transfer request sent" : "Wysłano żądanie przeniesienia własności", "Cannot transfer ownership of a file or folder you do not own" : "Nie można przenieść prawa własności do pliku lub katalogu, którego nie jesteś właścicielem", "Select file or folder to link to" : "Wybierz plik lub katalog do linku", - "Choose file" : "Wybierz plik", "Choose {file}" : "Wybierz {file}", "New" : "Nowy", "Loading current folder" : "Ładowanie bieżącego katalogu", @@ -336,6 +335,7 @@ OC.L10N.register( "Name cannot be empty" : "Nazwa nie może być pusta", "Another entry with the same name already exists" : "Inny wpis o tej samej nazwie już istnieje", "Storage informations" : "Informacje o przechowywaniu", + "Choose file" : "Wybierz plik", "Open the files app settings" : "Otwórz ustawienia aplikacji plików", "You might not have have permissions to view it, ask the sender to share it" : "Możesz nie mieć uprawnień, aby go wyświetlić, poproś nadawcę o udostępnienie", "Destination is not a folder" : "Miejsce docelowe nie jest katalogiem", diff --git a/apps/files/l10n/pl.json b/apps/files/l10n/pl.json index 7454e57b516ff..ba123903a4474 100644 --- a/apps/files/l10n/pl.json +++ b/apps/files/l10n/pl.json @@ -113,7 +113,6 @@ "Ownership transfer request sent" : "Wysłano żądanie przeniesienia własności", "Cannot transfer ownership of a file or folder you do not own" : "Nie można przenieść prawa własności do pliku lub katalogu, którego nie jesteś właścicielem", "Select file or folder to link to" : "Wybierz plik lub katalog do linku", - "Choose file" : "Wybierz plik", "Choose {file}" : "Wybierz {file}", "New" : "Nowy", "Loading current folder" : "Ładowanie bieżącego katalogu", @@ -334,6 +333,7 @@ "Name cannot be empty" : "Nazwa nie może być pusta", "Another entry with the same name already exists" : "Inny wpis o tej samej nazwie już istnieje", "Storage informations" : "Informacje o przechowywaniu", + "Choose file" : "Wybierz plik", "Open the files app settings" : "Otwórz ustawienia aplikacji plików", "You might not have have permissions to view it, ask the sender to share it" : "Możesz nie mieć uprawnień, aby go wyświetlić, poproś nadawcę o udostępnienie", "Destination is not a folder" : "Miejsce docelowe nie jest katalogiem", diff --git a/apps/files/l10n/pt_BR.js b/apps/files/l10n/pt_BR.js index 9523731c56eb6..da7e2e14ae479 100644 --- a/apps/files/l10n/pt_BR.js +++ b/apps/files/l10n/pt_BR.js @@ -136,7 +136,6 @@ OC.L10N.register( "Ownership transfer request sent" : "Solicitação de transferência de propriedade enviada", "Cannot transfer ownership of a file or folder you do not own" : "Não é possível transferir a propriedade de um arquivo ou pasta que você não possui", "Select file or folder to link to" : "Selecione o arquivo ou pasta para vincular", - "Choose file" : "Escolher arquivo", "Choose {file}" : "Escolher {file}", "New" : "Novo", "Loading current folder" : "Carregando a pasta atual", @@ -383,6 +382,7 @@ OC.L10N.register( "Name cannot be empty" : "O nome não pode ficar em branco", "Another entry with the same name already exists" : "Já existe outra entrada com o mesmo nome", "Storage informations" : "Informações de armazenamento", + "Choose file" : "Escolher arquivo", "Open the files app settings" : "Abra as configurações do aplicativo de arquivos", "You might not have have permissions to view it, ask the sender to share it" : "You might not have have permissions to view it, ask the sender to share it", "Destination is not a folder" : "O destino não é uma pasta", diff --git a/apps/files/l10n/pt_BR.json b/apps/files/l10n/pt_BR.json index cda4dd984cca2..1faaae96ec8e6 100644 --- a/apps/files/l10n/pt_BR.json +++ b/apps/files/l10n/pt_BR.json @@ -134,7 +134,6 @@ "Ownership transfer request sent" : "Solicitação de transferência de propriedade enviada", "Cannot transfer ownership of a file or folder you do not own" : "Não é possível transferir a propriedade de um arquivo ou pasta que você não possui", "Select file or folder to link to" : "Selecione o arquivo ou pasta para vincular", - "Choose file" : "Escolher arquivo", "Choose {file}" : "Escolher {file}", "New" : "Novo", "Loading current folder" : "Carregando a pasta atual", @@ -381,6 +380,7 @@ "Name cannot be empty" : "O nome não pode ficar em branco", "Another entry with the same name already exists" : "Já existe outra entrada com o mesmo nome", "Storage informations" : "Informações de armazenamento", + "Choose file" : "Escolher arquivo", "Open the files app settings" : "Abra as configurações do aplicativo de arquivos", "You might not have have permissions to view it, ask the sender to share it" : "You might not have have permissions to view it, ask the sender to share it", "Destination is not a folder" : "O destino não é uma pasta", diff --git a/apps/files/l10n/ru.js b/apps/files/l10n/ru.js index 7253f804b69bb..92969078b5e9c 100644 --- a/apps/files/l10n/ru.js +++ b/apps/files/l10n/ru.js @@ -136,7 +136,6 @@ OC.L10N.register( "Ownership transfer request sent" : "Запрос на передачу прав владения отправлен", "Cannot transfer ownership of a file or folder you do not own" : "Невозможно передать право владения на файл или каталог, которые вам не принадлежат", "Select file or folder to link to" : "Выберите файл или папку для создания ссылки", - "Choose file" : "Выберите файл", "Choose {file}" : "Выберан {file}", "New" : "Новый", "Loading current folder" : "Загрузка текущей папки", @@ -381,6 +380,7 @@ OC.L10N.register( "Name cannot be empty" : "Имя не может быть пустым", "Another entry with the same name already exists" : "Другая запись с таким названием уже существует", "Storage informations" : "Сведения о хранилище", + "Choose file" : "Выберите файл", "Open the files app settings" : "Открыть параметры приложения «Файлы»", "You might not have have permissions to view it, ask the sender to share it" : "У вас отсутствуют права на просмотр файла, попросите предоставить их у владельца общего ресурса", "Destination is not a folder" : "Указанное назначение не является папкой", diff --git a/apps/files/l10n/ru.json b/apps/files/l10n/ru.json index cf4eb7ea2c320..43363824f8c63 100644 --- a/apps/files/l10n/ru.json +++ b/apps/files/l10n/ru.json @@ -134,7 +134,6 @@ "Ownership transfer request sent" : "Запрос на передачу прав владения отправлен", "Cannot transfer ownership of a file or folder you do not own" : "Невозможно передать право владения на файл или каталог, которые вам не принадлежат", "Select file or folder to link to" : "Выберите файл или папку для создания ссылки", - "Choose file" : "Выберите файл", "Choose {file}" : "Выберан {file}", "New" : "Новый", "Loading current folder" : "Загрузка текущей папки", @@ -379,6 +378,7 @@ "Name cannot be empty" : "Имя не может быть пустым", "Another entry with the same name already exists" : "Другая запись с таким названием уже существует", "Storage informations" : "Сведения о хранилище", + "Choose file" : "Выберите файл", "Open the files app settings" : "Открыть параметры приложения «Файлы»", "You might not have have permissions to view it, ask the sender to share it" : "У вас отсутствуют права на просмотр файла, попросите предоставить их у владельца общего ресурса", "Destination is not a folder" : "Указанное назначение не является папкой", diff --git a/apps/files/l10n/sc.js b/apps/files/l10n/sc.js index 7dfe57c549a3c..6ca9e8e701509 100644 --- a/apps/files/l10n/sc.js +++ b/apps/files/l10n/sc.js @@ -99,7 +99,6 @@ OC.L10N.register( "Ownership transfer request sent" : "Dimanda de tràmuda de propriedade imbiada", "Cannot transfer ownership of a file or folder you do not own" : "Impossìbile tramudare sa propiedade de un'archìviu o de una cartella chi no sunt tuos", "Select file or folder to link to" : "Seletziona un'archìviu o una cartella de ligongiare", - "Choose file" : "Sèbera un'archìviu", "Choose {file}" : "Sèbera {file}", "New" : "Nou", "Loading current folder" : "Carrighende sa cartella atuale", @@ -273,6 +272,7 @@ OC.L10N.register( "Name cannot be empty" : "Su nùmene non podet èssere isbòidu", "Another entry with the same name already exists" : "Esistit giai un'intrada cun custu nùmene", "Storage informations" : "Informatziones de s'archiviatzione", + "Choose file" : "Sèbera un'archìviu", "Open the files app settings" : "Aberi sa cunfiguratzione de s'aplicatzione de archìvios", "You might not have have permissions to view it, ask the sender to share it" : "Podet èssere chi non tèngias permissos pro ddu bìdere. Pregunta a chie ti dd'at imbiadu de ddu cumpartzire", "Destination is not a folder" : "Sa destinatzione no est una cartella", diff --git a/apps/files/l10n/sc.json b/apps/files/l10n/sc.json index d59973267e6a4..fdf7122c13e88 100644 --- a/apps/files/l10n/sc.json +++ b/apps/files/l10n/sc.json @@ -97,7 +97,6 @@ "Ownership transfer request sent" : "Dimanda de tràmuda de propriedade imbiada", "Cannot transfer ownership of a file or folder you do not own" : "Impossìbile tramudare sa propiedade de un'archìviu o de una cartella chi no sunt tuos", "Select file or folder to link to" : "Seletziona un'archìviu o una cartella de ligongiare", - "Choose file" : "Sèbera un'archìviu", "Choose {file}" : "Sèbera {file}", "New" : "Nou", "Loading current folder" : "Carrighende sa cartella atuale", @@ -271,6 +270,7 @@ "Name cannot be empty" : "Su nùmene non podet èssere isbòidu", "Another entry with the same name already exists" : "Esistit giai un'intrada cun custu nùmene", "Storage informations" : "Informatziones de s'archiviatzione", + "Choose file" : "Sèbera un'archìviu", "Open the files app settings" : "Aberi sa cunfiguratzione de s'aplicatzione de archìvios", "You might not have have permissions to view it, ask the sender to share it" : "Podet èssere chi non tèngias permissos pro ddu bìdere. Pregunta a chie ti dd'at imbiadu de ddu cumpartzire", "Destination is not a folder" : "Sa destinatzione no est una cartella", diff --git a/apps/files/l10n/sk.js b/apps/files/l10n/sk.js index 65238f69c752e..cecc00f3748e7 100644 --- a/apps/files/l10n/sk.js +++ b/apps/files/l10n/sk.js @@ -134,7 +134,6 @@ OC.L10N.register( "Ownership transfer request sent" : "Žiadosť o prevod vlastníctva bola odoslaná", "Cannot transfer ownership of a file or folder you do not own" : "Nie je možné preniesť vlastníctvo súboru alebo priečinka, ktorý nevlastníte", "Select file or folder to link to" : "Vyberte súbor alebo priečinok na ktorý odkazovať", - "Choose file" : "Vybrať súbor", "Choose {file}" : "Vyberte {file}", "New" : "Nový", "Loading current folder" : "Načítavanie súčasného priečinka", @@ -380,6 +379,7 @@ OC.L10N.register( "Name cannot be empty" : "Názov nemôže byť prázdny", "Another entry with the same name already exists" : "Názov už existuje", "Storage informations" : "Úložiskové informácie", + "Choose file" : "Vybrať súbor", "Open the files app settings" : "Otvoriť nastavenia súborovej aplikácie", "You might not have have permissions to view it, ask the sender to share it" : "Pravdopodobne nemáte prístup, požiadajte oň odosielateľa ", "Destination is not a folder" : "Cieľ nie je priečinok", diff --git a/apps/files/l10n/sk.json b/apps/files/l10n/sk.json index afaf061d76623..fad85a97850b2 100644 --- a/apps/files/l10n/sk.json +++ b/apps/files/l10n/sk.json @@ -132,7 +132,6 @@ "Ownership transfer request sent" : "Žiadosť o prevod vlastníctva bola odoslaná", "Cannot transfer ownership of a file or folder you do not own" : "Nie je možné preniesť vlastníctvo súboru alebo priečinka, ktorý nevlastníte", "Select file or folder to link to" : "Vyberte súbor alebo priečinok na ktorý odkazovať", - "Choose file" : "Vybrať súbor", "Choose {file}" : "Vyberte {file}", "New" : "Nový", "Loading current folder" : "Načítavanie súčasného priečinka", @@ -378,6 +377,7 @@ "Name cannot be empty" : "Názov nemôže byť prázdny", "Another entry with the same name already exists" : "Názov už existuje", "Storage informations" : "Úložiskové informácie", + "Choose file" : "Vybrať súbor", "Open the files app settings" : "Otvoriť nastavenia súborovej aplikácie", "You might not have have permissions to view it, ask the sender to share it" : "Pravdopodobne nemáte prístup, požiadajte oň odosielateľa ", "Destination is not a folder" : "Cieľ nie je priečinok", diff --git a/apps/files/l10n/sl.js b/apps/files/l10n/sl.js index c889ce5de91dc..f6c2e6b5c413d 100644 --- a/apps/files/l10n/sl.js +++ b/apps/files/l10n/sl.js @@ -126,7 +126,6 @@ OC.L10N.register( "Ownership transfer request sent" : "Zahteva za prenos lastništva je poslana", "Cannot transfer ownership of a file or folder you do not own" : "Ni mogoče prenesti lastništva datotek in map, katerih niste lastnik", "Select file or folder to link to" : "Izbor datoteke ali mape za povezavo", - "Choose file" : "Izbor datotek", "Choose {file}" : "Izberite datoteko {file}", "New" : "Novo", "Loading current folder" : "Poteka nalaganje trenutne mape", @@ -352,6 +351,7 @@ OC.L10N.register( "Name cannot be empty" : "Polje imena ne sme biti prazno", "Another entry with the same name already exists" : "Vpis s tem imenom že obstaja.", "Storage informations" : "Podrobnosti shrambe", + "Choose file" : "Izbor datotek", "Open the files app settings" : "Odpri nastavitve programa Datoteke", "You might not have have permissions to view it, ask the sender to share it" : "Morda ni ustreznih dovoljenj za ogled. Prosite pošiljatelja za prilagoditev.", "Destination is not a folder" : "Ciljno mesto ni mapa", diff --git a/apps/files/l10n/sl.json b/apps/files/l10n/sl.json index a702f4fec26fa..074a80e99d52d 100644 --- a/apps/files/l10n/sl.json +++ b/apps/files/l10n/sl.json @@ -124,7 +124,6 @@ "Ownership transfer request sent" : "Zahteva za prenos lastništva je poslana", "Cannot transfer ownership of a file or folder you do not own" : "Ni mogoče prenesti lastništva datotek in map, katerih niste lastnik", "Select file or folder to link to" : "Izbor datoteke ali mape za povezavo", - "Choose file" : "Izbor datotek", "Choose {file}" : "Izberite datoteko {file}", "New" : "Novo", "Loading current folder" : "Poteka nalaganje trenutne mape", @@ -350,6 +349,7 @@ "Name cannot be empty" : "Polje imena ne sme biti prazno", "Another entry with the same name already exists" : "Vpis s tem imenom že obstaja.", "Storage informations" : "Podrobnosti shrambe", + "Choose file" : "Izbor datotek", "Open the files app settings" : "Odpri nastavitve programa Datoteke", "You might not have have permissions to view it, ask the sender to share it" : "Morda ni ustreznih dovoljenj za ogled. Prosite pošiljatelja za prilagoditev.", "Destination is not a folder" : "Ciljno mesto ni mapa", diff --git a/apps/files/l10n/sr.js b/apps/files/l10n/sr.js index 17c43cff51286..eab93593fa061 100644 --- a/apps/files/l10n/sr.js +++ b/apps/files/l10n/sr.js @@ -136,7 +136,6 @@ OC.L10N.register( "Ownership transfer request sent" : "Послат захтев за пренос власништва", "Cannot transfer ownership of a file or folder you do not own" : "Не можете да пренесете власништво над фајлом или фолдером који не поседујете", "Select file or folder to link to" : "Изаберите фајл или фолдер на који показује линк", - "Choose file" : "Изаберите фајл", "Choose {file}" : "Изабери {file}", "New" : "Нов", "Loading current folder" : "Учитавање текућег фолдера", @@ -208,6 +207,8 @@ OC.L10N.register( "Edit online" : "Уреди на мрежи", "Failed to redirect to client" : "Преусмеравање на клијента није успело", "Edit locally" : "Уреди локално", + "Moving \"{source}\" to \"{destination}\" …" : "„{source}” се премешта у „{destination}”…", + "Copying \"{source}\" to \"{destination}\" …" : "„{source}” се копира у „{destination}”…", "You cannot move a file/folder onto itself or into a subfolder of itself" : "Фајл/фолдер не можете да преместите у самог себе или у његов подфолдер", "(copy)" : "(копиран)", "(copy %n)" : "(копирано %n)", @@ -383,6 +384,7 @@ OC.L10N.register( "Name cannot be empty" : "Назив не може бити празан", "Another entry with the same name already exists" : "Већ постоји ставка са истим именом.", "Storage informations" : "Информације о складишту", + "Choose file" : "Изаберите фајл", "Open the files app settings" : "Отвори подешавања апликације фајлови", "You might not have have permissions to view it, ask the sender to share it" : "Можда немате дозволе да га погледате, затражите од пошиљаоца да га подели са вама", "Destination is not a folder" : "Одредиште није фолдер", diff --git a/apps/files/l10n/sr.json b/apps/files/l10n/sr.json index 387c0a2c28c82..b2db45f669a50 100644 --- a/apps/files/l10n/sr.json +++ b/apps/files/l10n/sr.json @@ -134,7 +134,6 @@ "Ownership transfer request sent" : "Послат захтев за пренос власништва", "Cannot transfer ownership of a file or folder you do not own" : "Не можете да пренесете власништво над фајлом или фолдером који не поседујете", "Select file or folder to link to" : "Изаберите фајл или фолдер на који показује линк", - "Choose file" : "Изаберите фајл", "Choose {file}" : "Изабери {file}", "New" : "Нов", "Loading current folder" : "Учитавање текућег фолдера", @@ -206,6 +205,8 @@ "Edit online" : "Уреди на мрежи", "Failed to redirect to client" : "Преусмеравање на клијента није успело", "Edit locally" : "Уреди локално", + "Moving \"{source}\" to \"{destination}\" …" : "„{source}” се премешта у „{destination}”…", + "Copying \"{source}\" to \"{destination}\" …" : "„{source}” се копира у „{destination}”…", "You cannot move a file/folder onto itself or into a subfolder of itself" : "Фајл/фолдер не можете да преместите у самог себе или у његов подфолдер", "(copy)" : "(копиран)", "(copy %n)" : "(копирано %n)", @@ -381,6 +382,7 @@ "Name cannot be empty" : "Назив не може бити празан", "Another entry with the same name already exists" : "Већ постоји ставка са истим именом.", "Storage informations" : "Информације о складишту", + "Choose file" : "Изаберите фајл", "Open the files app settings" : "Отвори подешавања апликације фајлови", "You might not have have permissions to view it, ask the sender to share it" : "Можда немате дозволе да га погледате, затражите од пошиљаоца да га подели са вама", "Destination is not a folder" : "Одредиште није фолдер", diff --git a/apps/files/l10n/sv.js b/apps/files/l10n/sv.js index 026e1be5b7963..dafb6e7cce88c 100644 --- a/apps/files/l10n/sv.js +++ b/apps/files/l10n/sv.js @@ -136,7 +136,6 @@ OC.L10N.register( "Ownership transfer request sent" : "Förfrågan om ägaröverföring skickad", "Cannot transfer ownership of a file or folder you do not own" : "Det går inte att överföra äganderätten till en fil eller mapp som du inte äger", "Select file or folder to link to" : "Välj fil eller mapp att länka till", - "Choose file" : "Välj fil", "Choose {file}" : "Välj {file}", "New" : "Ny", "Loading current folder" : "Laddar aktuell mapp", @@ -385,6 +384,7 @@ OC.L10N.register( "Name cannot be empty" : "Namn kan inte vara tom", "Another entry with the same name already exists" : "En annan post med samma namn finns redan", "Storage informations" : "Lagringsinformation", + "Choose file" : "Välj fil", "Open the files app settings" : "Öppna filappens inställningar", "You might not have have permissions to view it, ask the sender to share it" : "Du kanske inte har behörighet att se den, be avsändaren att dela den", "Destination is not a folder" : "Destinationen är inte en mapp", diff --git a/apps/files/l10n/sv.json b/apps/files/l10n/sv.json index 5a43d40182a3a..e8779882fc50e 100644 --- a/apps/files/l10n/sv.json +++ b/apps/files/l10n/sv.json @@ -134,7 +134,6 @@ "Ownership transfer request sent" : "Förfrågan om ägaröverföring skickad", "Cannot transfer ownership of a file or folder you do not own" : "Det går inte att överföra äganderätten till en fil eller mapp som du inte äger", "Select file or folder to link to" : "Välj fil eller mapp att länka till", - "Choose file" : "Välj fil", "Choose {file}" : "Välj {file}", "New" : "Ny", "Loading current folder" : "Laddar aktuell mapp", @@ -383,6 +382,7 @@ "Name cannot be empty" : "Namn kan inte vara tom", "Another entry with the same name already exists" : "En annan post med samma namn finns redan", "Storage informations" : "Lagringsinformation", + "Choose file" : "Välj fil", "Open the files app settings" : "Öppna filappens inställningar", "You might not have have permissions to view it, ask the sender to share it" : "Du kanske inte har behörighet att se den, be avsändaren att dela den", "Destination is not a folder" : "Destinationen är inte en mapp", diff --git a/apps/files/l10n/tr.js b/apps/files/l10n/tr.js index ea3786678c570..ba96b6c581f13 100644 --- a/apps/files/l10n/tr.js +++ b/apps/files/l10n/tr.js @@ -136,7 +136,6 @@ OC.L10N.register( "Ownership transfer request sent" : "Sahiplik aktarımı isteği gönderildi", "Cannot transfer ownership of a file or folder you do not own" : "Sahibi olmadığınız bir dosya ya da klasörün sahipliğini aktaramazsınız", "Select file or folder to link to" : "Bağlantı verilecek dosya ya da klasörü seçin", - "Choose file" : "Dosya seçin", "Choose {file}" : "{file} seçin", "New" : "Yeni", "Loading current folder" : "Geçerli klasör yükleniyor", @@ -383,6 +382,7 @@ OC.L10N.register( "Name cannot be empty" : "Ad boş olamaz", "Another entry with the same name already exists" : "Aynı adlı bir kayıt zaten var", "Storage informations" : "Depolama bilgileri", + "Choose file" : "Dosya seçin", "Open the files app settings" : "Dosyalar uygulaması ayarlarını aç", "You might not have have permissions to view it, ask the sender to share it" : "Dosyayı görüntüleme izniniz olmayabilir. Gönderenden paylaşmasını isteyin", "Destination is not a folder" : "Hedef bir klasör değil", diff --git a/apps/files/l10n/tr.json b/apps/files/l10n/tr.json index c684fc9f3dbbe..3d36d6dc431bd 100644 --- a/apps/files/l10n/tr.json +++ b/apps/files/l10n/tr.json @@ -134,7 +134,6 @@ "Ownership transfer request sent" : "Sahiplik aktarımı isteği gönderildi", "Cannot transfer ownership of a file or folder you do not own" : "Sahibi olmadığınız bir dosya ya da klasörün sahipliğini aktaramazsınız", "Select file or folder to link to" : "Bağlantı verilecek dosya ya da klasörü seçin", - "Choose file" : "Dosya seçin", "Choose {file}" : "{file} seçin", "New" : "Yeni", "Loading current folder" : "Geçerli klasör yükleniyor", @@ -381,6 +380,7 @@ "Name cannot be empty" : "Ad boş olamaz", "Another entry with the same name already exists" : "Aynı adlı bir kayıt zaten var", "Storage informations" : "Depolama bilgileri", + "Choose file" : "Dosya seçin", "Open the files app settings" : "Dosyalar uygulaması ayarlarını aç", "You might not have have permissions to view it, ask the sender to share it" : "Dosyayı görüntüleme izniniz olmayabilir. Gönderenden paylaşmasını isteyin", "Destination is not a folder" : "Hedef bir klasör değil", diff --git a/apps/files/l10n/uk.js b/apps/files/l10n/uk.js index cfabd092a9337..bb945f9f746ee 100644 --- a/apps/files/l10n/uk.js +++ b/apps/files/l10n/uk.js @@ -136,7 +136,6 @@ OC.L10N.register( "Ownership transfer request sent" : "Запит на передавання прав власника надіслано", "Cannot transfer ownership of a file or folder you do not own" : "Неможливо передати права власності на файл або каталог, якими ви не володієте", "Select file or folder to link to" : "Виберіть файл або каталог, до якого потрібно застосувати посилання", - "Choose file" : "Вибрати файл", "Choose {file}" : "Виберіть {file}", "New" : "Створити", "Loading current folder" : "Отримання поточного каталогу", @@ -383,6 +382,7 @@ OC.L10N.register( "Name cannot be empty" : "Ім'я не може бути порожнім", "Another entry with the same name already exists" : "Ще один запис з таким ім'ям вже присутній.", "Storage informations" : "Інформація про сховище", + "Choose file" : "Вибрати файл", "Open the files app settings" : "Перейти до налаштувань застосунку файлів", "You might not have have permissions to view it, ask the sender to share it" : "Ймовірно у вас відсутні права на перегляд. Попросіть відправника поділитися доступом.", "Destination is not a folder" : "Місце призначення не є каталогом", diff --git a/apps/files/l10n/uk.json b/apps/files/l10n/uk.json index d7a26a3fb3240..bba3b5776c30f 100644 --- a/apps/files/l10n/uk.json +++ b/apps/files/l10n/uk.json @@ -134,7 +134,6 @@ "Ownership transfer request sent" : "Запит на передавання прав власника надіслано", "Cannot transfer ownership of a file or folder you do not own" : "Неможливо передати права власності на файл або каталог, якими ви не володієте", "Select file or folder to link to" : "Виберіть файл або каталог, до якого потрібно застосувати посилання", - "Choose file" : "Вибрати файл", "Choose {file}" : "Виберіть {file}", "New" : "Створити", "Loading current folder" : "Отримання поточного каталогу", @@ -381,6 +380,7 @@ "Name cannot be empty" : "Ім'я не може бути порожнім", "Another entry with the same name already exists" : "Ще один запис з таким ім'ям вже присутній.", "Storage informations" : "Інформація про сховище", + "Choose file" : "Вибрати файл", "Open the files app settings" : "Перейти до налаштувань застосунку файлів", "You might not have have permissions to view it, ask the sender to share it" : "Ймовірно у вас відсутні права на перегляд. Попросіть відправника поділитися доступом.", "Destination is not a folder" : "Місце призначення не є каталогом", diff --git a/apps/files/l10n/zh_CN.js b/apps/files/l10n/zh_CN.js index 34af778985f28..4cf94930a352b 100644 --- a/apps/files/l10n/zh_CN.js +++ b/apps/files/l10n/zh_CN.js @@ -136,7 +136,6 @@ OC.L10N.register( "Ownership transfer request sent" : "所有权转移请求已发送", "Cannot transfer ownership of a file or folder you do not own" : "无法转让您未拥有的文件或文件夹的所有权", "Select file or folder to link to" : "选择需要链接的文件或文件夹", - "Choose file" : "选择文件", "Choose {file}" : "选择 {file}", "New" : "新建", "Loading current folder" : "正在载入当前文件夹", @@ -382,6 +381,7 @@ OC.L10N.register( "Name cannot be empty" : "名称不能为空", "Another entry with the same name already exists" : "已经存在另一个使用该名称的条目", "Storage informations" : "存储信息", + "Choose file" : "选择文件", "Open the files app settings" : "打开文件设置", "You might not have have permissions to view it, ask the sender to share it" : "您可能没有权限浏览它,请要求发送者分享它", "Destination is not a folder" : "目标不是一个文件夹", diff --git a/apps/files/l10n/zh_CN.json b/apps/files/l10n/zh_CN.json index e9d4b0c68023f..8cc6198a3b527 100644 --- a/apps/files/l10n/zh_CN.json +++ b/apps/files/l10n/zh_CN.json @@ -134,7 +134,6 @@ "Ownership transfer request sent" : "所有权转移请求已发送", "Cannot transfer ownership of a file or folder you do not own" : "无法转让您未拥有的文件或文件夹的所有权", "Select file or folder to link to" : "选择需要链接的文件或文件夹", - "Choose file" : "选择文件", "Choose {file}" : "选择 {file}", "New" : "新建", "Loading current folder" : "正在载入当前文件夹", @@ -380,6 +379,7 @@ "Name cannot be empty" : "名称不能为空", "Another entry with the same name already exists" : "已经存在另一个使用该名称的条目", "Storage informations" : "存储信息", + "Choose file" : "选择文件", "Open the files app settings" : "打开文件设置", "You might not have have permissions to view it, ask the sender to share it" : "您可能没有权限浏览它,请要求发送者分享它", "Destination is not a folder" : "目标不是一个文件夹", diff --git a/apps/files/l10n/zh_HK.js b/apps/files/l10n/zh_HK.js index add9449afcf8d..d2af2f65e2a8c 100644 --- a/apps/files/l10n/zh_HK.js +++ b/apps/files/l10n/zh_HK.js @@ -136,7 +136,6 @@ OC.L10N.register( "Ownership transfer request sent" : "已送出擁有權轉移的請求", "Cannot transfer ownership of a file or folder you do not own" : "無法轉移您未擁有的檔案或是資料夾所有權", "Select file or folder to link to" : "選擇要連結的檔案或資料夾", - "Choose file" : "選擇檔案", "Choose {file}" : "選擇 {file}", "New" : "新", "Loading current folder" : "目前資料夾加載中", @@ -382,6 +381,7 @@ OC.L10N.register( "Name cannot be empty" : "名稱不能空白", "Another entry with the same name already exists" : "另一個同名的條目已經存在", "Storage informations" : "儲存資訊", + "Choose file" : "選擇檔案", "Open the files app settings" : "開啟 Files 應用程式設定", "You might not have have permissions to view it, ask the sender to share it" : "您可能沒有權限檢視它,請要求寄件者分享它", "Destination is not a folder" : "目標地不是資料夾", diff --git a/apps/files/l10n/zh_HK.json b/apps/files/l10n/zh_HK.json index d06236e9e9d4c..88d29f093c04a 100644 --- a/apps/files/l10n/zh_HK.json +++ b/apps/files/l10n/zh_HK.json @@ -134,7 +134,6 @@ "Ownership transfer request sent" : "已送出擁有權轉移的請求", "Cannot transfer ownership of a file or folder you do not own" : "無法轉移您未擁有的檔案或是資料夾所有權", "Select file or folder to link to" : "選擇要連結的檔案或資料夾", - "Choose file" : "選擇檔案", "Choose {file}" : "選擇 {file}", "New" : "新", "Loading current folder" : "目前資料夾加載中", @@ -380,6 +379,7 @@ "Name cannot be empty" : "名稱不能空白", "Another entry with the same name already exists" : "另一個同名的條目已經存在", "Storage informations" : "儲存資訊", + "Choose file" : "選擇檔案", "Open the files app settings" : "開啟 Files 應用程式設定", "You might not have have permissions to view it, ask the sender to share it" : "您可能沒有權限檢視它,請要求寄件者分享它", "Destination is not a folder" : "目標地不是資料夾", diff --git a/apps/files/l10n/zh_TW.js b/apps/files/l10n/zh_TW.js index b35cb3540b15a..92c840515b882 100644 --- a/apps/files/l10n/zh_TW.js +++ b/apps/files/l10n/zh_TW.js @@ -136,7 +136,6 @@ OC.L10N.register( "Ownership transfer request sent" : "已送出所有權轉移的請求", "Cannot transfer ownership of a file or folder you do not own" : "無法轉移您未擁有的檔案或資料夾的所有權", "Select file or folder to link to" : "選取要連結的檔案或資料夾", - "Choose file" : "選擇檔案", "Choose {file}" : "選擇 {file}", "New" : "新增", "Loading current folder" : "正在載入目前資料夾", @@ -385,6 +384,7 @@ OC.L10N.register( "Name cannot be empty" : "名稱不能空白", "Another entry with the same name already exists" : "已存在另一個同名條目", "Storage informations" : "儲存空間資訊", + "Choose file" : "選擇檔案", "Open the files app settings" : "開啟檔案應用程式設定", "You might not have have permissions to view it, ask the sender to share it" : "您可能沒有權限檢視它,請要求寄件者分享它", "Destination is not a folder" : "目的地不是資料夾", diff --git a/apps/files/l10n/zh_TW.json b/apps/files/l10n/zh_TW.json index b8840a1da86bb..e91eb573b49e0 100644 --- a/apps/files/l10n/zh_TW.json +++ b/apps/files/l10n/zh_TW.json @@ -134,7 +134,6 @@ "Ownership transfer request sent" : "已送出所有權轉移的請求", "Cannot transfer ownership of a file or folder you do not own" : "無法轉移您未擁有的檔案或資料夾的所有權", "Select file or folder to link to" : "選取要連結的檔案或資料夾", - "Choose file" : "選擇檔案", "Choose {file}" : "選擇 {file}", "New" : "新增", "Loading current folder" : "正在載入目前資料夾", @@ -383,6 +382,7 @@ "Name cannot be empty" : "名稱不能空白", "Another entry with the same name already exists" : "已存在另一個同名條目", "Storage informations" : "儲存空間資訊", + "Choose file" : "選擇檔案", "Open the files app settings" : "開啟檔案應用程式設定", "You might not have have permissions to view it, ask the sender to share it" : "您可能沒有權限檢視它,請要求寄件者分享它", "Destination is not a folder" : "目的地不是資料夾", diff --git a/apps/files_external/lib/Command/Applicable.php b/apps/files_external/lib/Command/Applicable.php index e7305f5867181..ecb635c052a47 100644 --- a/apps/files_external/lib/Command/Applicable.php +++ b/apps/files_external/lib/Command/Applicable.php @@ -10,13 +10,13 @@ use OCA\Files_External\Lib\StorageConfig; use OCA\Files_External\NotFoundException; use OCA\Files_External\Service\GlobalStoragesService; +use OCP\AppFramework\Http; use OCP\IGroupManager; use OCP\IUserManager; use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Output\OutputInterface; -use Symfony\Component\HttpFoundation\Response; class Applicable extends Base { public function __construct( @@ -70,7 +70,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int $mount = $this->globalService->getStorage($mountId); } catch (NotFoundException $e) { $output->writeln('Mount with id "' . $mountId . ' not found, check "occ files_external:list" to get available mounts'); - return Response::HTTP_NOT_FOUND; + return Http::STATUS_NOT_FOUND; } if ($mount->getType() === StorageConfig::MOUNT_TYPE_PERSONAL) { @@ -90,13 +90,13 @@ protected function execute(InputInterface $input, OutputInterface $output): int foreach ($addUsers as $addUser) { if (!$this->userManager->userExists($addUser)) { $output->writeln('User "' . $addUser . '" not found'); - return Response::HTTP_NOT_FOUND; + return Http::STATUS_NOT_FOUND; } } foreach ($addGroups as $addGroup) { if (!$this->groupManager->groupExists($addGroup)) { $output->writeln('Group "' . $addGroup . '" not found'); - return Response::HTTP_NOT_FOUND; + return Http::STATUS_NOT_FOUND; } } diff --git a/apps/files_external/lib/Command/Config.php b/apps/files_external/lib/Command/Config.php index fa44a71785988..f677e51d60435 100644 --- a/apps/files_external/lib/Command/Config.php +++ b/apps/files_external/lib/Command/Config.php @@ -10,10 +10,10 @@ use OCA\Files_External\Lib\StorageConfig; use OCA\Files_External\NotFoundException; use OCA\Files_External\Service\GlobalStoragesService; +use OCP\AppFramework\Http; use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; -use Symfony\Component\HttpFoundation\Response; class Config extends Base { public function __construct( @@ -49,7 +49,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int $mount = $this->globalService->getStorage($mountId); } catch (NotFoundException $e) { $output->writeln('Mount with id "' . $mountId . ' not found, check "occ files_external:list" to get available mounts"'); - return Response::HTTP_NOT_FOUND; + return Http::STATUS_NOT_FOUND; } $value = $input->getArgument('value'); diff --git a/apps/files_external/lib/Command/Create.php b/apps/files_external/lib/Command/Create.php index 0183b3014c8d1..4396d2e2b13df 100644 --- a/apps/files_external/lib/Command/Create.php +++ b/apps/files_external/lib/Command/Create.php @@ -17,6 +17,7 @@ use OCA\Files_External\Service\GlobalStoragesService; use OCA\Files_External\Service\StoragesService; use OCA\Files_External\Service\UserStoragesService; +use OCP\AppFramework\Http; use OCP\IUserManager; use OCP\IUserSession; use Symfony\Component\Console\Input\ArrayInput; @@ -24,7 +25,6 @@ use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Output\OutputInterface; -use Symfony\Component\HttpFoundation\Response; class Create extends Base { public function __construct( @@ -93,11 +93,11 @@ protected function execute(InputInterface $input, OutputInterface $output): int } if (is_null($storageBackend)) { $output->writeln('Storage backend with identifier "' . $storageIdentifier . '" not found (see `occ files_external:backends` for possible values)'); - return Response::HTTP_NOT_FOUND; + return Http::STATUS_NOT_FOUND; } if (is_null($authBackend)) { $output->writeln('Authentication backend with identifier "' . $authIdentifier . '" not found (see `occ files_external:backends` for possible values)'); - return Response::HTTP_NOT_FOUND; + return Http::STATUS_NOT_FOUND; } $supportedSchemes = array_keys($storageBackend->getAuthSchemes()); if (!in_array($authBackend->getScheme(), $supportedSchemes)) { diff --git a/apps/files_external/lib/Command/Delete.php b/apps/files_external/lib/Command/Delete.php index 077b969d7b269..61e974ff58957 100644 --- a/apps/files_external/lib/Command/Delete.php +++ b/apps/files_external/lib/Command/Delete.php @@ -10,6 +10,7 @@ use OCA\Files_External\NotFoundException; use OCA\Files_External\Service\GlobalStoragesService; use OCA\Files_External\Service\UserStoragesService; +use OCP\AppFramework\Http; use OCP\IUserManager; use OCP\IUserSession; use Symfony\Component\Console\Input\ArrayInput; @@ -18,7 +19,6 @@ use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Question\ConfirmationQuestion; -use Symfony\Component\HttpFoundation\Response; class Delete extends Base { public function __construct( @@ -53,7 +53,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int $mount = $this->globalService->getStorage($mountId); } catch (NotFoundException $e) { $output->writeln('Mount with id "' . $mountId . ' not found, check "occ files_external:list" to get available mounts"'); - return Response::HTTP_NOT_FOUND; + return Http::STATUS_NOT_FOUND; } $noConfirm = $input->getOption('yes'); diff --git a/apps/files_external/lib/Command/Verify.php b/apps/files_external/lib/Command/Verify.php index 25b09fa111602..1455e427b77e3 100644 --- a/apps/files_external/lib/Command/Verify.php +++ b/apps/files_external/lib/Command/Verify.php @@ -11,12 +11,12 @@ use OCA\Files_External\Lib\StorageConfig; use OCA\Files_External\NotFoundException; use OCA\Files_External\Service\GlobalStoragesService; +use OCP\AppFramework\Http; use OCP\Files\StorageNotAvailableException; use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Output\OutputInterface; -use Symfony\Component\HttpFoundation\Response; class Verify extends Base { public function __construct( @@ -50,7 +50,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int $mount = $this->globalService->getStorage($mountId); } catch (NotFoundException $e) { $output->writeln('Mount with id "' . $mountId . ' not found, check "occ files_external:list" to get available mounts"'); - return Response::HTTP_NOT_FOUND; + return Http::STATUS_NOT_FOUND; } $this->updateStorageStatus($mount, $configInput, $output); diff --git a/apps/files_sharing/l10n/ru.js b/apps/files_sharing/l10n/ru.js index b694aa38fe8d4..e9ed4a2f8e4a5 100644 --- a/apps/files_sharing/l10n/ru.js +++ b/apps/files_sharing/l10n/ru.js @@ -303,7 +303,7 @@ OC.L10N.register( "Shared multiple times with different people" : "Делиться несколько раз с разными людьми", "Show sharing options" : "Показать опции доступа", "Shared with others" : "Доступные для других", - "Create file request" : "Создать запрос на создание файла", + "Create file request" : "Запрос на создание файла", "Upload files to {foldername}" : "Загружать файлы в {foldername}", "Public file share" : "Общий доступ к файлам", "Public shared file." : "Публичный общий файл.", diff --git a/apps/files_sharing/l10n/ru.json b/apps/files_sharing/l10n/ru.json index 1545df5ea95b8..0cfe7c6ec7194 100644 --- a/apps/files_sharing/l10n/ru.json +++ b/apps/files_sharing/l10n/ru.json @@ -301,7 +301,7 @@ "Shared multiple times with different people" : "Делиться несколько раз с разными людьми", "Show sharing options" : "Показать опции доступа", "Shared with others" : "Доступные для других", - "Create file request" : "Создать запрос на создание файла", + "Create file request" : "Запрос на создание файла", "Upload files to {foldername}" : "Загружать файлы в {foldername}", "Public file share" : "Общий доступ к файлам", "Public shared file." : "Публичный общий файл.", diff --git a/apps/provisioning_api/l10n/en_GB.js b/apps/provisioning_api/l10n/en_GB.js index 388960dc22aa5..3c792e1f10fd1 100644 --- a/apps/provisioning_api/l10n/en_GB.js +++ b/apps/provisioning_api/l10n/en_GB.js @@ -11,6 +11,7 @@ OC.L10N.register( "Cannot create sub-admins for admin group" : "Cannot create sub-admins for admin group", "No permissions to promote sub-admins" : "No permissions to promote sub-admins", "Invalid password value" : "Invalid password value", + "An email address is required, to send a password link to the user." : "An email address is required, to send a password link to the user.", "Required email address was not provided" : "Required email address was not provided", "Invalid quota value: %1$s" : "Invalid quota value: %1$s", "Invalid quota value. %1$s is exceeding the maximum quota" : "Invalid quota value. %1$s is exceeding the maximum quota", diff --git a/apps/provisioning_api/l10n/en_GB.json b/apps/provisioning_api/l10n/en_GB.json index 21e6b68eebbeb..03ba2aafdb35b 100644 --- a/apps/provisioning_api/l10n/en_GB.json +++ b/apps/provisioning_api/l10n/en_GB.json @@ -9,6 +9,7 @@ "Cannot create sub-admins for admin group" : "Cannot create sub-admins for admin group", "No permissions to promote sub-admins" : "No permissions to promote sub-admins", "Invalid password value" : "Invalid password value", + "An email address is required, to send a password link to the user." : "An email address is required, to send a password link to the user.", "Required email address was not provided" : "Required email address was not provided", "Invalid quota value: %1$s" : "Invalid quota value: %1$s", "Invalid quota value. %1$s is exceeding the maximum quota" : "Invalid quota value. %1$s is exceeding the maximum quota", diff --git a/apps/provisioning_api/l10n/ga.js b/apps/provisioning_api/l10n/ga.js index e788eb80ec9de..c2c150a485e92 100644 --- a/apps/provisioning_api/l10n/ga.js +++ b/apps/provisioning_api/l10n/ga.js @@ -11,6 +11,7 @@ OC.L10N.register( "Cannot create sub-admins for admin group" : "Ní féidir fo-riaracháin a chruthú don ghrúpa riaracháin", "No permissions to promote sub-admins" : "Níl aon chead chun fo-riaracháin a chur chun cinn", "Invalid password value" : "Luach pasfhocail neamhbhailí", + "An email address is required, to send a password link to the user." : "Tá seoladh ríomhphoist ag teastáil, chun nasc pasfhocal a sheoladh chuig an úsáideoir.", "Required email address was not provided" : "Níor cuireadh an seoladh ríomhphoist riachtanach ar fáil", "Invalid quota value: %1$s" : "Luach cuóta neamhbhailí: %1$s", "Invalid quota value. %1$s is exceeding the maximum quota" : "Luach cuóta neamhbhailí. Tá %1$s níos mó ná an t-uaschuóta", diff --git a/apps/provisioning_api/l10n/ga.json b/apps/provisioning_api/l10n/ga.json index 012aea7c3b8a1..74470217effaa 100644 --- a/apps/provisioning_api/l10n/ga.json +++ b/apps/provisioning_api/l10n/ga.json @@ -9,6 +9,7 @@ "Cannot create sub-admins for admin group" : "Ní féidir fo-riaracháin a chruthú don ghrúpa riaracháin", "No permissions to promote sub-admins" : "Níl aon chead chun fo-riaracháin a chur chun cinn", "Invalid password value" : "Luach pasfhocail neamhbhailí", + "An email address is required, to send a password link to the user." : "Tá seoladh ríomhphoist ag teastáil, chun nasc pasfhocal a sheoladh chuig an úsáideoir.", "Required email address was not provided" : "Níor cuireadh an seoladh ríomhphoist riachtanach ar fáil", "Invalid quota value: %1$s" : "Luach cuóta neamhbhailí: %1$s", "Invalid quota value. %1$s is exceeding the maximum quota" : "Luach cuóta neamhbhailí. Tá %1$s níos mó ná an t-uaschuóta", diff --git a/apps/provisioning_api/l10n/sr.js b/apps/provisioning_api/l10n/sr.js index dc05be24ba690..7f760b12a4c86 100644 --- a/apps/provisioning_api/l10n/sr.js +++ b/apps/provisioning_api/l10n/sr.js @@ -11,6 +11,7 @@ OC.L10N.register( "Cannot create sub-admins for admin group" : "Не може да се креира група под-админа", "No permissions to promote sub-admins" : "Нема дозвола да се унапреде под-админи", "Invalid password value" : "Неисправна вредност лозинке", + "An email address is required, to send a password link to the user." : "За слање линка лозинке кориснику, неопходна је и-мејл адреса.", "Required email address was not provided" : "Није наведена потребна и-мејл адреса", "Invalid quota value: %1$s" : "Неисправна вредност квоте: %1$s", "Invalid quota value. %1$s is exceeding the maximum quota" : "Неисправна вредност квоте. %1$s превазилази максималну квоту", diff --git a/apps/provisioning_api/l10n/sr.json b/apps/provisioning_api/l10n/sr.json index c3d4f7ae3d20c..d37a00383a724 100644 --- a/apps/provisioning_api/l10n/sr.json +++ b/apps/provisioning_api/l10n/sr.json @@ -9,6 +9,7 @@ "Cannot create sub-admins for admin group" : "Не може да се креира група под-админа", "No permissions to promote sub-admins" : "Нема дозвола да се унапреде под-админи", "Invalid password value" : "Неисправна вредност лозинке", + "An email address is required, to send a password link to the user." : "За слање линка лозинке кориснику, неопходна је и-мејл адреса.", "Required email address was not provided" : "Није наведена потребна и-мејл адреса", "Invalid quota value: %1$s" : "Неисправна вредност квоте: %1$s", "Invalid quota value. %1$s is exceeding the maximum quota" : "Неисправна вредност квоте. %1$s превазилази максималну квоту", diff --git a/apps/settings/l10n/ar.js b/apps/settings/l10n/ar.js index 76546d7fa352d..ce54b45c710fa 100644 --- a/apps/settings/l10n/ar.js +++ b/apps/settings/l10n/ar.js @@ -796,7 +796,6 @@ OC.L10N.register( "Reasons to use Nextcloud in your organization" : "أسبابٌ لاستعمال نكست كلاود في مؤسستك", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "تمّ تطويره من قِبَل {communityopen} مجتمع نكست كلاود {linkclose} الـ {githubopen} كود المصدري {linkclose} مُرخّصٌ تحت {licenseopen}رخصة AGPL {linkclose}.", "Like our Facebook page" : "رجاءً، سجّل إعجابك بصفحتنا على الفيسبوك", - "Follow us on Twitter" : "تابعونا على تويتر", "Follow us on Mastodon" : "تابعونا على مَاستُدون", "Check out our blog" : "ألقِ نظرةً على مدوّنتنا", "Subscribe to our newsletter" : "إشترِك في نشرتنا الإخبارية", @@ -885,6 +884,7 @@ OC.L10N.register( "Show to logged in users only" : "أعرُض على المستخدمين الداخلين", "Nextcloud help resources" : "موارد \"مُساعَدَة نكست كلاود\"", "SMTP Username" : "اسم مستخدم الـ SMTP", + "Follow us on Twitter" : "تابعونا على تويتر", "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`." : "للسماح بتشغيل هذا الفحص، عليك التأكد من أن خادوم الويب عندك يمكنه الاتصال بنفسه. ولذلك، يجب أن يكون قادراً على حل المشكلة والاتصال بنطاق واحد على الأقل من \"النطاقات_الموثوقة\" أو 'overwrite.cli.url'.", "Could not check for JavaScript support via any of your `trusted_domains` nor `overwrite.cli.url`. This may be the result of a server-side DNS mismatch or outbound firewall rule. Please check manually if your webserver serves `.mjs` files using the JavaScript MIME type." : "تعذر التحقُّق من دعم JavaScript عبر أيٍّ من \"النطاقات_الموثوقة\" أو \"overwrite.cli.url\". قد يكون هذا نتيجة عدم تطابق DNS من جانب الخادوم أو بسبب إحدى سياسات إدارة الحركة الصادرة في جدار الحماية. يرجى التحقق يدويًا مما إذا كان خادوم الويب عندك يقدم ملفات `.mjs` باستخدام نوع JavaScript MIME.", "Active accounts" : "حسابات نشطة", diff --git a/apps/settings/l10n/ar.json b/apps/settings/l10n/ar.json index 7376b4d7c863d..5266d39e457a4 100644 --- a/apps/settings/l10n/ar.json +++ b/apps/settings/l10n/ar.json @@ -794,7 +794,6 @@ "Reasons to use Nextcloud in your organization" : "أسبابٌ لاستعمال نكست كلاود في مؤسستك", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "تمّ تطويره من قِبَل {communityopen} مجتمع نكست كلاود {linkclose} الـ {githubopen} كود المصدري {linkclose} مُرخّصٌ تحت {licenseopen}رخصة AGPL {linkclose}.", "Like our Facebook page" : "رجاءً، سجّل إعجابك بصفحتنا على الفيسبوك", - "Follow us on Twitter" : "تابعونا على تويتر", "Follow us on Mastodon" : "تابعونا على مَاستُدون", "Check out our blog" : "ألقِ نظرةً على مدوّنتنا", "Subscribe to our newsletter" : "إشترِك في نشرتنا الإخبارية", @@ -883,6 +882,7 @@ "Show to logged in users only" : "أعرُض على المستخدمين الداخلين", "Nextcloud help resources" : "موارد \"مُساعَدَة نكست كلاود\"", "SMTP Username" : "اسم مستخدم الـ SMTP", + "Follow us on Twitter" : "تابعونا على تويتر", "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`." : "للسماح بتشغيل هذا الفحص، عليك التأكد من أن خادوم الويب عندك يمكنه الاتصال بنفسه. ولذلك، يجب أن يكون قادراً على حل المشكلة والاتصال بنطاق واحد على الأقل من \"النطاقات_الموثوقة\" أو 'overwrite.cli.url'.", "Could not check for JavaScript support via any of your `trusted_domains` nor `overwrite.cli.url`. This may be the result of a server-side DNS mismatch or outbound firewall rule. Please check manually if your webserver serves `.mjs` files using the JavaScript MIME type." : "تعذر التحقُّق من دعم JavaScript عبر أيٍّ من \"النطاقات_الموثوقة\" أو \"overwrite.cli.url\". قد يكون هذا نتيجة عدم تطابق DNS من جانب الخادوم أو بسبب إحدى سياسات إدارة الحركة الصادرة في جدار الحماية. يرجى التحقق يدويًا مما إذا كان خادوم الويب عندك يقدم ملفات `.mjs` باستخدام نوع JavaScript MIME.", "Active accounts" : "حسابات نشطة", diff --git a/apps/settings/l10n/ast.js b/apps/settings/l10n/ast.js index 5fdcebd4225d3..33cbc5be35ced 100644 --- a/apps/settings/l10n/ast.js +++ b/apps/settings/l10n/ast.js @@ -523,7 +523,6 @@ OC.L10N.register( "Reasons to use Nextcloud in your organization" : "Razones pa usar Nextcloud na to organzación", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desendolcáu pola {communityopen}comunidá de Nextcloud{linkclose}, el {githubopen}códigu fonte{linkclose} llicénciase baxo l'{licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Da un préstame a la nuesa páxina de Facebook", - "Follow us on Twitter" : "Síguinos en Twitter", "Follow us on Mastodon" : "Síguinos en Mastodon", "Check out our blog" : "Revisa'l nuesu blogue", "Subscribe to our newsletter" : "Soscríbite al nuesu boletín", @@ -571,6 +570,7 @@ OC.L10N.register( "Disabled users" : "Usuarios desactivaos", "Creating group …" : "Creando'l grupu…", "Nextcloud help resources" : "Recursos d'ayuda de Nextcloud", + "Follow us on Twitter" : "Síguinos en Twitter", "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`." : "Pa permitir qu'esta comprobación s'execute, tienes d'asegurate de que'l sirvidor web se pueda conectase. Poro, ha ser a resolver y conectase a, polo menos, unu de los sos «trusted_domains» o al «overwrite.cli.url».", "Active accounts" : "Cuentes actives" }, diff --git a/apps/settings/l10n/ast.json b/apps/settings/l10n/ast.json index e56f73d5159c1..4fcfae02d16a3 100644 --- a/apps/settings/l10n/ast.json +++ b/apps/settings/l10n/ast.json @@ -521,7 +521,6 @@ "Reasons to use Nextcloud in your organization" : "Razones pa usar Nextcloud na to organzación", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desendolcáu pola {communityopen}comunidá de Nextcloud{linkclose}, el {githubopen}códigu fonte{linkclose} llicénciase baxo l'{licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Da un préstame a la nuesa páxina de Facebook", - "Follow us on Twitter" : "Síguinos en Twitter", "Follow us on Mastodon" : "Síguinos en Mastodon", "Check out our blog" : "Revisa'l nuesu blogue", "Subscribe to our newsletter" : "Soscríbite al nuesu boletín", @@ -569,6 +568,7 @@ "Disabled users" : "Usuarios desactivaos", "Creating group …" : "Creando'l grupu…", "Nextcloud help resources" : "Recursos d'ayuda de Nextcloud", + "Follow us on Twitter" : "Síguinos en Twitter", "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`." : "Pa permitir qu'esta comprobación s'execute, tienes d'asegurate de que'l sirvidor web se pueda conectase. Poro, ha ser a resolver y conectase a, polo menos, unu de los sos «trusted_domains» o al «overwrite.cli.url».", "Active accounts" : "Cuentes actives" },"pluralForm" :"nplurals=2; plural=(n != 1);" diff --git a/apps/settings/l10n/bg.js b/apps/settings/l10n/bg.js index ef539bad0be25..3ceef411b89ed 100644 --- a/apps/settings/l10n/bg.js +++ b/apps/settings/l10n/bg.js @@ -432,7 +432,6 @@ OC.L10N.register( "Reasons to use Nextcloud in your organization" : "Причини да използвате Nextcloud във вашата организация", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Разработен от {communityopen}общността на Nextcloud{linkclose}, {githubopen}изходният код{linkclose} е лицензиран под {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Харесайте страницата ни във Facebook", - "Follow us on Twitter" : "Следвайте ни в Twitter", "Follow us on Mastodon" : "Следвайте ни в Mastodon", "Check out our blog" : "Посетете блога ни", "Subscribe to our newsletter" : "Абонирайте се за нашия имейл бюлетин", @@ -484,6 +483,7 @@ OC.L10N.register( "Not available as federation has been disabled for your account, contact your system administrator if you have any questions" : "Не е налично, тъй като федерирането е деактивирано за вашия профил, свържете се с вашия системен администратор, ако имате въпроси.", "Not available as publishing user specific data to the lookup server is not allowed, contact your system administrator if you have any questions" : "Не е налично, тъй като публикуването на специфични потребителски данни на сървъра за търсене не е разрешено, свържете се с вашия системен администратор, ако имате въпроси", "Show to logged in users only" : "Показване само на влезли потребители", - "SMTP Username" : "SMTP потребител" + "SMTP Username" : "SMTP потребител", + "Follow us on Twitter" : "Следвайте ни в Twitter" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/settings/l10n/bg.json b/apps/settings/l10n/bg.json index aba281462c066..32c40aee02f1e 100644 --- a/apps/settings/l10n/bg.json +++ b/apps/settings/l10n/bg.json @@ -430,7 +430,6 @@ "Reasons to use Nextcloud in your organization" : "Причини да използвате Nextcloud във вашата организация", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Разработен от {communityopen}общността на Nextcloud{linkclose}, {githubopen}изходният код{linkclose} е лицензиран под {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Харесайте страницата ни във Facebook", - "Follow us on Twitter" : "Следвайте ни в Twitter", "Follow us on Mastodon" : "Следвайте ни в Mastodon", "Check out our blog" : "Посетете блога ни", "Subscribe to our newsletter" : "Абонирайте се за нашия имейл бюлетин", @@ -482,6 +481,7 @@ "Not available as federation has been disabled for your account, contact your system administrator if you have any questions" : "Не е налично, тъй като федерирането е деактивирано за вашия профил, свържете се с вашия системен администратор, ако имате въпроси.", "Not available as publishing user specific data to the lookup server is not allowed, contact your system administrator if you have any questions" : "Не е налично, тъй като публикуването на специфични потребителски данни на сървъра за търсене не е разрешено, свържете се с вашия системен администратор, ако имате въпроси", "Show to logged in users only" : "Показване само на влезли потребители", - "SMTP Username" : "SMTP потребител" + "SMTP Username" : "SMTP потребител", + "Follow us on Twitter" : "Следвайте ни в Twitter" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/settings/l10n/br.js b/apps/settings/l10n/br.js index 7aeafde479987..888451393b95e 100644 --- a/apps/settings/l10n/br.js +++ b/apps/settings/l10n/br.js @@ -302,7 +302,6 @@ OC.L10N.register( "Check the security of your Nextcloud over our security scan ↗." : "Gwiriit surentez ho Nextcoud war hon skan surentez ↗.", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Digelet gant {communityopen}kummuniezh NExtcloud{linkclose}, ar {githubopen}c'hod orin{linkclose} a zo dindan aotre {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Liamm d'hon bajenn Facebook", - "Follow us on Twitter" : "Heuliit ac'henomp war Twitter", "Follow us on Mastodon" : "Heuliit arc'hanomp war Mastodon", "Check out our blog" : "Sellit ouzh hon vlog", "Subscribe to our newsletter" : "Koumannantit d'hon kemenadennoù nevesadur", @@ -333,6 +332,7 @@ OC.L10N.register( "Server error while trying to add WebAuthn device" : "Ur fazi servijour a zo bet pa oa ouzhpennet an ardivink WebAuthn", "by {author}\n{license}" : "great gant {author}\n{license}", "Disabled users" : "Disaotreañ implijer", - "SMTP Username" : "Anv implijer SMTP" + "SMTP Username" : "Anv implijer SMTP", + "Follow us on Twitter" : "Heuliit ac'henomp war Twitter" }, "nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);"); diff --git a/apps/settings/l10n/br.json b/apps/settings/l10n/br.json index 2fc1dcfff697a..beda72d1794b4 100644 --- a/apps/settings/l10n/br.json +++ b/apps/settings/l10n/br.json @@ -300,7 +300,6 @@ "Check the security of your Nextcloud over our security scan ↗." : "Gwiriit surentez ho Nextcoud war hon skan surentez ↗.", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Digelet gant {communityopen}kummuniezh NExtcloud{linkclose}, ar {githubopen}c'hod orin{linkclose} a zo dindan aotre {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Liamm d'hon bajenn Facebook", - "Follow us on Twitter" : "Heuliit ac'henomp war Twitter", "Follow us on Mastodon" : "Heuliit arc'hanomp war Mastodon", "Check out our blog" : "Sellit ouzh hon vlog", "Subscribe to our newsletter" : "Koumannantit d'hon kemenadennoù nevesadur", @@ -331,6 +330,7 @@ "Server error while trying to add WebAuthn device" : "Ur fazi servijour a zo bet pa oa ouzhpennet an ardivink WebAuthn", "by {author}\n{license}" : "great gant {author}\n{license}", "Disabled users" : "Disaotreañ implijer", - "SMTP Username" : "Anv implijer SMTP" + "SMTP Username" : "Anv implijer SMTP", + "Follow us on Twitter" : "Heuliit ac'henomp war Twitter" },"pluralForm" :"nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);" } \ No newline at end of file diff --git a/apps/settings/l10n/ca.js b/apps/settings/l10n/ca.js index 0d5f92e55ac6d..c3f313290f8c3 100644 --- a/apps/settings/l10n/ca.js +++ b/apps/settings/l10n/ca.js @@ -564,7 +564,6 @@ OC.L10N.register( "Reasons to use Nextcloud in your organization" : "Motius per a utilitzar Nextcloud en la vostra organització", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desenvolupat per la {communityopen}comunitat Nextcloud{linkclose}, el {githubopen}codi font{linkclose} es troba sota la llicència {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Poseu un m’agrada a la nostra pàgina de Facebook", - "Follow us on Twitter" : "Seguiu-nos a Twitter", "Follow us on Mastodon" : "Seguiu-nos a Mastodon", "Check out our blog" : "Consulteu el nostre bloc", "Subscribe to our newsletter" : "Subscriviu-vos al nostre butlletí", @@ -649,6 +648,7 @@ OC.L10N.register( "Not available as publishing user specific data to the lookup server is not allowed, contact your system administrator if you have any questions" : "No està disponible perquè no es permet la publicació de dades específiques de l'usuari al servidor de cerca, poseu-vos en contacte amb l'administrador del sistema si teniu cap pregunta", "Show to logged in users only" : "Mostra només als usuaris connectats", "Nextcloud help resources" : "Recursos d'ajuda de Nextcloud", - "SMTP Username" : "Nom d'usuari SMTP" + "SMTP Username" : "Nom d'usuari SMTP", + "Follow us on Twitter" : "Seguiu-nos a Twitter" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/settings/l10n/ca.json b/apps/settings/l10n/ca.json index 1b1ef811b2adc..3e70fb2a2302e 100644 --- a/apps/settings/l10n/ca.json +++ b/apps/settings/l10n/ca.json @@ -562,7 +562,6 @@ "Reasons to use Nextcloud in your organization" : "Motius per a utilitzar Nextcloud en la vostra organització", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desenvolupat per la {communityopen}comunitat Nextcloud{linkclose}, el {githubopen}codi font{linkclose} es troba sota la llicència {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Poseu un m’agrada a la nostra pàgina de Facebook", - "Follow us on Twitter" : "Seguiu-nos a Twitter", "Follow us on Mastodon" : "Seguiu-nos a Mastodon", "Check out our blog" : "Consulteu el nostre bloc", "Subscribe to our newsletter" : "Subscriviu-vos al nostre butlletí", @@ -647,6 +646,7 @@ "Not available as publishing user specific data to the lookup server is not allowed, contact your system administrator if you have any questions" : "No està disponible perquè no es permet la publicació de dades específiques de l'usuari al servidor de cerca, poseu-vos en contacte amb l'administrador del sistema si teniu cap pregunta", "Show to logged in users only" : "Mostra només als usuaris connectats", "Nextcloud help resources" : "Recursos d'ajuda de Nextcloud", - "SMTP Username" : "Nom d'usuari SMTP" + "SMTP Username" : "Nom d'usuari SMTP", + "Follow us on Twitter" : "Seguiu-nos a Twitter" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/settings/l10n/cs.js b/apps/settings/l10n/cs.js index 56cd5a810ec66..eedf431aa7657 100644 --- a/apps/settings/l10n/cs.js +++ b/apps/settings/l10n/cs.js @@ -177,6 +177,7 @@ OC.L10N.register( "Your IP address was resolved as %s" : "Vaše IP adresa byla přeložena jako %s", "The reverse proxy header configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If not, this is a security issue and can allow an attacker to spoof their IP address as visible to the Nextcloud." : "Nastavení hlaviček reverzní proxy není správné nebo přistupujete na Nextcloud z důvěryhodné proxy. Pokud nepřistupujete k Nextcloud z důvěryhodné proxy, potom je toto bezpečností chyba a může útočníkovi umožnit falšovat IP adresu, kterou NextCloud vidí.", "HTTPS access and URLs" : "HTTPS přístup a URL adresy", + "Accessing site insecurely via HTTP." : "Nezabezpečený přístup k webu přes HTTP.", "Internet connectivity" : "Připojení k internetu", "Internet connectivity is disabled in configuration file." : "Připojení k Internetu je vypnuté v souboru s nastaveními.", "This server has no working internet connection: Multiple endpoints could not be reached. This means that some of the features like mounting external storage, notifications about updates or installation of third-party apps will not work. Accessing files remotely and sending of notification emails might not work, either. Establish a connection from this server to the internet to enjoy all features." : "Tento server nemá funkční připojení k Internetu: Nedaří se připojit k vícero koncovým bodům. Některé moduly jako např. externí úložiště, upozorňování na dostupnost aktualizací, nebo instalace aplikací třetích stran kvůli tomu nebudou fungovat. Přístup k souborům z jiných míst a odesílání e-mailů s upozorněními také nemusí fungovat. Pokud chcete využívat všechny možnosti tohoto serveru, doporučujeme zprovoznit připojení k Internetu.", @@ -715,7 +716,6 @@ OC.L10N.register( "Reasons to use Nextcloud in your organization" : "Důvody proč používat Nextcloud ve vaší organizaci", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Vyvíjeno {communityopen}komunitou Nextcloud{linkclose}, {githubopen}zdrojové kódy{linkclose} jsou licencovány pod {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Hodnoťte naše stránky na Facebooku", - "Follow us on Twitter" : "Následujte nás na Twitteru", "Follow us on Mastodon" : "Následujte nás na Mastodon", "Check out our blog" : "Čtete náš blog", "Subscribe to our newsletter" : "Přihlaste se k odběru našeho zpravodaje", @@ -804,6 +804,7 @@ OC.L10N.register( "Show to logged in users only" : "Ukázat pouze přihlášeným uživatelům", "Nextcloud help resources" : "Prostředky nápovědy k Nextcloud", "SMTP Username" : "SMTP uživatelské jméno ", + "Follow us on Twitter" : "Následujte nás na Twitteru", "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`." : "Aby bylo možné možné povolit spuštění této kontroly je třeba zajistit, aby se webový server mohl připojit sám na sebe. Proto je třeba, aby bylo možné přeložit na IP adresu a připojit se k alespoň jedné z `trusted_domains` nebo `overwrite.cli.url`.", "Active accounts" : "Aktivní účty" }, diff --git a/apps/settings/l10n/cs.json b/apps/settings/l10n/cs.json index de5412ec8cb45..3dd95933c37a0 100644 --- a/apps/settings/l10n/cs.json +++ b/apps/settings/l10n/cs.json @@ -175,6 +175,7 @@ "Your IP address was resolved as %s" : "Vaše IP adresa byla přeložena jako %s", "The reverse proxy header configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If not, this is a security issue and can allow an attacker to spoof their IP address as visible to the Nextcloud." : "Nastavení hlaviček reverzní proxy není správné nebo přistupujete na Nextcloud z důvěryhodné proxy. Pokud nepřistupujete k Nextcloud z důvěryhodné proxy, potom je toto bezpečností chyba a může útočníkovi umožnit falšovat IP adresu, kterou NextCloud vidí.", "HTTPS access and URLs" : "HTTPS přístup a URL adresy", + "Accessing site insecurely via HTTP." : "Nezabezpečený přístup k webu přes HTTP.", "Internet connectivity" : "Připojení k internetu", "Internet connectivity is disabled in configuration file." : "Připojení k Internetu je vypnuté v souboru s nastaveními.", "This server has no working internet connection: Multiple endpoints could not be reached. This means that some of the features like mounting external storage, notifications about updates or installation of third-party apps will not work. Accessing files remotely and sending of notification emails might not work, either. Establish a connection from this server to the internet to enjoy all features." : "Tento server nemá funkční připojení k Internetu: Nedaří se připojit k vícero koncovým bodům. Některé moduly jako např. externí úložiště, upozorňování na dostupnost aktualizací, nebo instalace aplikací třetích stran kvůli tomu nebudou fungovat. Přístup k souborům z jiných míst a odesílání e-mailů s upozorněními také nemusí fungovat. Pokud chcete využívat všechny možnosti tohoto serveru, doporučujeme zprovoznit připojení k Internetu.", @@ -713,7 +714,6 @@ "Reasons to use Nextcloud in your organization" : "Důvody proč používat Nextcloud ve vaší organizaci", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Vyvíjeno {communityopen}komunitou Nextcloud{linkclose}, {githubopen}zdrojové kódy{linkclose} jsou licencovány pod {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Hodnoťte naše stránky na Facebooku", - "Follow us on Twitter" : "Následujte nás na Twitteru", "Follow us on Mastodon" : "Následujte nás na Mastodon", "Check out our blog" : "Čtete náš blog", "Subscribe to our newsletter" : "Přihlaste se k odběru našeho zpravodaje", @@ -802,6 +802,7 @@ "Show to logged in users only" : "Ukázat pouze přihlášeným uživatelům", "Nextcloud help resources" : "Prostředky nápovědy k Nextcloud", "SMTP Username" : "SMTP uživatelské jméno ", + "Follow us on Twitter" : "Následujte nás na Twitteru", "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`." : "Aby bylo možné možné povolit spuštění této kontroly je třeba zajistit, aby se webový server mohl připojit sám na sebe. Proto je třeba, aby bylo možné přeložit na IP adresu a připojit se k alespoň jedné z `trusted_domains` nebo `overwrite.cli.url`.", "Active accounts" : "Aktivní účty" },"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;" diff --git a/apps/settings/l10n/da.js b/apps/settings/l10n/da.js index 002f8f90466ad..13312035aca80 100644 --- a/apps/settings/l10n/da.js +++ b/apps/settings/l10n/da.js @@ -544,7 +544,6 @@ OC.L10N.register( "Reasons to use Nextcloud in your organization" : "Grunde til at bruge Nextcloud i din organisation", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Udviklet af {communityopen}Nextcloud fællesskabet{linkclose}, {githubopen}kildekoden{linkclose} er udgivet med {licenseopen}AGPL{linkclose} licensen.", "Like our Facebook page" : "Følg os på Facebook", - "Follow us on Twitter" : "Følg os på Twitter", "Follow us on Mastodon" : "Følg os på Mastodon", "Check out our blog" : "Besøg vores blog", "Subscribe to our newsletter" : "Abonner på vores nyhedsbrev", @@ -611,6 +610,7 @@ OC.L10N.register( "Show to logged in users only" : "Vis kun til loggede brugere", "Nextcloud help resources" : "Nextcloud hjælperessourcer", "SMTP Username" : "SMTP Brugernavn", + "Follow us on Twitter" : "Følg os på Twitter", "To allow this check to run you have to make sure that your Web server can connect to itself. Therefore it must be able to resolve and connect to at least one of its `trusted_domains` or the `overwrite.cli.url`. This failure may be the result of a server-side DNS mismatch or outbound firewall rule." : "For at tillade at denne kontrol køres så skal du sikre dig at din webserver kan forbinde til sig selv. Derfor skal den kunne opløse og forbinde til mindst en af dets `trusted_domains` eller `overwrite.cli.url`. Denne fejl kan være resultatet af en server-side DNS mismatch eller udadgående firewall regel." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/settings/l10n/da.json b/apps/settings/l10n/da.json index 22a23b1c9ad25..6bbc289df5b00 100644 --- a/apps/settings/l10n/da.json +++ b/apps/settings/l10n/da.json @@ -542,7 +542,6 @@ "Reasons to use Nextcloud in your organization" : "Grunde til at bruge Nextcloud i din organisation", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Udviklet af {communityopen}Nextcloud fællesskabet{linkclose}, {githubopen}kildekoden{linkclose} er udgivet med {licenseopen}AGPL{linkclose} licensen.", "Like our Facebook page" : "Følg os på Facebook", - "Follow us on Twitter" : "Følg os på Twitter", "Follow us on Mastodon" : "Følg os på Mastodon", "Check out our blog" : "Besøg vores blog", "Subscribe to our newsletter" : "Abonner på vores nyhedsbrev", @@ -609,6 +608,7 @@ "Show to logged in users only" : "Vis kun til loggede brugere", "Nextcloud help resources" : "Nextcloud hjælperessourcer", "SMTP Username" : "SMTP Brugernavn", + "Follow us on Twitter" : "Følg os på Twitter", "To allow this check to run you have to make sure that your Web server can connect to itself. Therefore it must be able to resolve and connect to at least one of its `trusted_domains` or the `overwrite.cli.url`. This failure may be the result of a server-side DNS mismatch or outbound firewall rule." : "For at tillade at denne kontrol køres så skal du sikre dig at din webserver kan forbinde til sig selv. Derfor skal den kunne opløse og forbinde til mindst en af dets `trusted_domains` eller `overwrite.cli.url`. Denne fejl kan være resultatet af en server-side DNS mismatch eller udadgående firewall regel." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/settings/l10n/de.js b/apps/settings/l10n/de.js index 31911ebe98c47..7b0c9fafa9feb 100644 --- a/apps/settings/l10n/de.js +++ b/apps/settings/l10n/de.js @@ -796,7 +796,6 @@ OC.L10N.register( "Reasons to use Nextcloud in your organization" : "Gründe für die Verwendung von Nextcloud in deiner Organisation", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Entwickelt von der {communityopen}Nextcloud Community{linkclose}, der {githubopen}Quellcode{linkclose} ist lizensiert unter {licenseopen}AGPL{linkclose}-Lizenz.", "Like our Facebook page" : "Like uns auf unserer Facebook-Seite", - "Follow us on Twitter" : "Folge uns auf X", "Follow us on Mastodon" : " Folge uns auf Mastodon", "Check out our blog" : "Sieh dir unseren Blog an", "Subscribe to our newsletter" : "Abonniere unseren Newsletter", @@ -885,6 +884,7 @@ OC.L10N.register( "Show to logged in users only" : "Nur für angemeldete Benutzer sichtbar", "Nextcloud help resources" : "Nextcloud-Hilferessourcen", "SMTP Username" : "SMTP-Benutzername", + "Follow us on Twitter" : "Folge uns auf X", "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`." : "Um diese Prüfung auszuführen, musst du sicherstellen, dass dein Webserver eine Verbindung zu sich selbst herstellen kann. Dafür muss dieser in der Lage sein, sich mit mindestens einer seiner \"trusted_domains\" oder der \"overwrite.cli.url\" zu verbinden und diese aufzulösen.", "Could not check for JavaScript support via any of your `trusted_domains` nor `overwrite.cli.url`. This may be the result of a server-side DNS mismatch or outbound firewall rule. Please check manually if your webserver serves `.mjs` files using the JavaScript MIME type." : "Es konnte weder über Ihre `trusted_domains` noch über `overwrite.cli.url` nach JavaScript-Unterstützung gesucht werden. Dies kann auf eine serverseitige DNS-Nichtübereinstimmung oder eine ausgehende Firewall-Regel zurückzuführen sein. Bitte überprüfe manuell, ob dein Webserver `.mjs`-Dateien mit dem JavaScript-MIME-Typ bereitstellt.", "Active accounts" : "Aktive Konten", diff --git a/apps/settings/l10n/de.json b/apps/settings/l10n/de.json index 8d122904c4885..4697cb99d4168 100644 --- a/apps/settings/l10n/de.json +++ b/apps/settings/l10n/de.json @@ -794,7 +794,6 @@ "Reasons to use Nextcloud in your organization" : "Gründe für die Verwendung von Nextcloud in deiner Organisation", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Entwickelt von der {communityopen}Nextcloud Community{linkclose}, der {githubopen}Quellcode{linkclose} ist lizensiert unter {licenseopen}AGPL{linkclose}-Lizenz.", "Like our Facebook page" : "Like uns auf unserer Facebook-Seite", - "Follow us on Twitter" : "Folge uns auf X", "Follow us on Mastodon" : " Folge uns auf Mastodon", "Check out our blog" : "Sieh dir unseren Blog an", "Subscribe to our newsletter" : "Abonniere unseren Newsletter", @@ -883,6 +882,7 @@ "Show to logged in users only" : "Nur für angemeldete Benutzer sichtbar", "Nextcloud help resources" : "Nextcloud-Hilferessourcen", "SMTP Username" : "SMTP-Benutzername", + "Follow us on Twitter" : "Folge uns auf X", "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`." : "Um diese Prüfung auszuführen, musst du sicherstellen, dass dein Webserver eine Verbindung zu sich selbst herstellen kann. Dafür muss dieser in der Lage sein, sich mit mindestens einer seiner \"trusted_domains\" oder der \"overwrite.cli.url\" zu verbinden und diese aufzulösen.", "Could not check for JavaScript support via any of your `trusted_domains` nor `overwrite.cli.url`. This may be the result of a server-side DNS mismatch or outbound firewall rule. Please check manually if your webserver serves `.mjs` files using the JavaScript MIME type." : "Es konnte weder über Ihre `trusted_domains` noch über `overwrite.cli.url` nach JavaScript-Unterstützung gesucht werden. Dies kann auf eine serverseitige DNS-Nichtübereinstimmung oder eine ausgehende Firewall-Regel zurückzuführen sein. Bitte überprüfe manuell, ob dein Webserver `.mjs`-Dateien mit dem JavaScript-MIME-Typ bereitstellt.", "Active accounts" : "Aktive Konten", diff --git a/apps/settings/l10n/de_DE.js b/apps/settings/l10n/de_DE.js index 887098984a726..95eb4c53328f1 100644 --- a/apps/settings/l10n/de_DE.js +++ b/apps/settings/l10n/de_DE.js @@ -796,7 +796,6 @@ OC.L10N.register( "Reasons to use Nextcloud in your organization" : "Gründe für die Verwendung von Nextcloud in Ihrer Organisation", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Entwickelt von der {communityopen}Nextcloud Community{linkclose}, der {githubopen}Quellcode{linkclose} ist lizensiert unter {licenseopen}AGPL{linkclose}-Lizenz.", "Like our Facebook page" : "Liken Sie uns auf unserer Facebook-Seite", - "Follow us on Twitter" : "Folgen Sie uns auf Twitter", "Follow us on Mastodon" : "Folgen Sie uns auf Mastodon", "Check out our blog" : "Sehen Sie sich unseren Blog an", "Subscribe to our newsletter" : "Abonnieren Sie unseren Newsletter", @@ -885,6 +884,7 @@ OC.L10N.register( "Show to logged in users only" : "Nur angemeldete Konten anzeigen", "Nextcloud help resources" : "Nextcloud-Hilferessourcen", "SMTP Username" : "SMTP-Kontenname", + "Follow us on Twitter" : "Folgen Sie uns auf Twitter", "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`." : "Um diese Prüfung auszuführen, müssen Sie sicherstellen, dass Ihr Webserver eine Verbindung zu sich selbst herstellen kann. Dafür muss er in der Lage sein, sich mit mindestens einer seiner \"trusted_domains\" oder der \"overwrite.cli.url\" zu verbinden und diese aufzulösen.", "Could not check for JavaScript support via any of your `trusted_domains` nor `overwrite.cli.url`. This may be the result of a server-side DNS mismatch or outbound firewall rule. Please check manually if your webserver serves `.mjs` files using the JavaScript MIME type." : "Es konnte weder über Ihre `trusted_domains` noch über `overwrite.cli.url` nach JavaScript-Unterstützung gesucht werden. Dies kann auf eine serverseitige DNS-Nichtübereinstimmung oder eine ausgehende Firewall-Regel zurückzuführen sein. Bitte überprüfen Sie manuell, ob Ihr Webserver `.mjs`-Dateien mit dem JavaScript-MIME-Typ bereitstellt.", "Active accounts" : "Aktive Konten", diff --git a/apps/settings/l10n/de_DE.json b/apps/settings/l10n/de_DE.json index a13f754c1825b..785faccc8b660 100644 --- a/apps/settings/l10n/de_DE.json +++ b/apps/settings/l10n/de_DE.json @@ -794,7 +794,6 @@ "Reasons to use Nextcloud in your organization" : "Gründe für die Verwendung von Nextcloud in Ihrer Organisation", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Entwickelt von der {communityopen}Nextcloud Community{linkclose}, der {githubopen}Quellcode{linkclose} ist lizensiert unter {licenseopen}AGPL{linkclose}-Lizenz.", "Like our Facebook page" : "Liken Sie uns auf unserer Facebook-Seite", - "Follow us on Twitter" : "Folgen Sie uns auf Twitter", "Follow us on Mastodon" : "Folgen Sie uns auf Mastodon", "Check out our blog" : "Sehen Sie sich unseren Blog an", "Subscribe to our newsletter" : "Abonnieren Sie unseren Newsletter", @@ -883,6 +882,7 @@ "Show to logged in users only" : "Nur angemeldete Konten anzeigen", "Nextcloud help resources" : "Nextcloud-Hilferessourcen", "SMTP Username" : "SMTP-Kontenname", + "Follow us on Twitter" : "Folgen Sie uns auf Twitter", "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`." : "Um diese Prüfung auszuführen, müssen Sie sicherstellen, dass Ihr Webserver eine Verbindung zu sich selbst herstellen kann. Dafür muss er in der Lage sein, sich mit mindestens einer seiner \"trusted_domains\" oder der \"overwrite.cli.url\" zu verbinden und diese aufzulösen.", "Could not check for JavaScript support via any of your `trusted_domains` nor `overwrite.cli.url`. This may be the result of a server-side DNS mismatch or outbound firewall rule. Please check manually if your webserver serves `.mjs` files using the JavaScript MIME type." : "Es konnte weder über Ihre `trusted_domains` noch über `overwrite.cli.url` nach JavaScript-Unterstützung gesucht werden. Dies kann auf eine serverseitige DNS-Nichtübereinstimmung oder eine ausgehende Firewall-Regel zurückzuführen sein. Bitte überprüfen Sie manuell, ob Ihr Webserver `.mjs`-Dateien mit dem JavaScript-MIME-Typ bereitstellt.", "Active accounts" : "Aktive Konten", diff --git a/apps/settings/l10n/el.js b/apps/settings/l10n/el.js index 5c62121bc13c5..495a4c439da49 100644 --- a/apps/settings/l10n/el.js +++ b/apps/settings/l10n/el.js @@ -411,7 +411,6 @@ OC.L10N.register( "Reasons to use Nextcloud in your organization" : "Λόγοι για να χρησιμοποιήσετε το Nextcloud στον οργανισμό σας", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Αναπτύχθηκε από τη {communityopen}Κοινότητα του Nextcloud {linkclose}, ο πηγαίος κώδικας {githubopen} {linkclose} είναι αδειοδοτημένος υπό την άδεια {icenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Ακολουθήστε μας στην σελίδα μας στο facebook!", - "Follow us on Twitter" : "Ακολουθήστε μας στο Twitter", "Follow us on Mastodon" : "Ακολουθήστε μας στο Mastodon", "Check out our blog" : "Επισκεφθείτε το ιστολόγιό μας!", "Subscribe to our newsletter" : "Εγγραφείτε στο ενημερωτικό δελτίο μας!", @@ -459,6 +458,7 @@ OC.L10N.register( "Not available as federation has been disabled for your account, contact your system administrator if you have any questions" : "Μη διαθέσιμο καθώς το Federation έχει απενεργοποιηθεί για τον λογαριασμό σας, επικοινωνήστε με τον διαχειριστή του συστήματός σας εάν έχετε οποιαδήποτε απορία", "Not available as publishing user specific data to the lookup server is not allowed, contact your system administrator if you have any questions" : "Δεν είναι διαθέσιμο καθώς δεν επιτρέπεται η δημοσίευση δεδομένων χρήστη στον διακομιστή αναζήτησης. Επικοινωνήστε με τον διαχειριστή του συστήματός σας εάν έχετε οποιεσδήποτε ερωτήσεις", "Show to logged in users only" : "Εμφάνιση μόνο σε συνδεδεμένους χρήστες", - "SMTP Username" : "Όνομα χρήστη SMTP" + "SMTP Username" : "Όνομα χρήστη SMTP", + "Follow us on Twitter" : "Ακολουθήστε μας στο Twitter" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/settings/l10n/el.json b/apps/settings/l10n/el.json index 0e95e81a42436..b3cee83569e55 100644 --- a/apps/settings/l10n/el.json +++ b/apps/settings/l10n/el.json @@ -409,7 +409,6 @@ "Reasons to use Nextcloud in your organization" : "Λόγοι για να χρησιμοποιήσετε το Nextcloud στον οργανισμό σας", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Αναπτύχθηκε από τη {communityopen}Κοινότητα του Nextcloud {linkclose}, ο πηγαίος κώδικας {githubopen} {linkclose} είναι αδειοδοτημένος υπό την άδεια {icenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Ακολουθήστε μας στην σελίδα μας στο facebook!", - "Follow us on Twitter" : "Ακολουθήστε μας στο Twitter", "Follow us on Mastodon" : "Ακολουθήστε μας στο Mastodon", "Check out our blog" : "Επισκεφθείτε το ιστολόγιό μας!", "Subscribe to our newsletter" : "Εγγραφείτε στο ενημερωτικό δελτίο μας!", @@ -457,6 +456,7 @@ "Not available as federation has been disabled for your account, contact your system administrator if you have any questions" : "Μη διαθέσιμο καθώς το Federation έχει απενεργοποιηθεί για τον λογαριασμό σας, επικοινωνήστε με τον διαχειριστή του συστήματός σας εάν έχετε οποιαδήποτε απορία", "Not available as publishing user specific data to the lookup server is not allowed, contact your system administrator if you have any questions" : "Δεν είναι διαθέσιμο καθώς δεν επιτρέπεται η δημοσίευση δεδομένων χρήστη στον διακομιστή αναζήτησης. Επικοινωνήστε με τον διαχειριστή του συστήματός σας εάν έχετε οποιεσδήποτε ερωτήσεις", "Show to logged in users only" : "Εμφάνιση μόνο σε συνδεδεμένους χρήστες", - "SMTP Username" : "Όνομα χρήστη SMTP" + "SMTP Username" : "Όνομα χρήστη SMTP", + "Follow us on Twitter" : "Ακολουθήστε μας στο Twitter" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/settings/l10n/en_GB.js b/apps/settings/l10n/en_GB.js index 2870b56676488..2d70122658f69 100644 --- a/apps/settings/l10n/en_GB.js +++ b/apps/settings/l10n/en_GB.js @@ -173,6 +173,8 @@ OC.L10N.register( "Email test" : "Email test", "Email test was successfully sent" : "Email test was successfully sent", "You have not set or verified your email server configuration, yet. Please head over to the \"Basic settings\" in order to set them. Afterwards, use the \"Send email\" button below the form to verify your settings." : "You have not set or verified your email server configuration, yet. Please head over to the \"Basic settings\" in order to set them. Afterwards, use the \"Send email\" button below the form to verify your settings.", + "Transactional File Locking" : "Transactional File Locking", + "Transactional File Locking is disabled. This is not a a supported configuraton. It may lead to difficult to isolate problems including file corruption. Please remove the `'filelocking.enabled' => false` configuration entry from your `config.php` to avoid these problems." : "Transactional File Locking is disabled. This is not a a supported configuraton. It may lead to difficult to isolate problems including file corruption. Please remove the `'filelocking.enabled' => false` configuration entry from your `config.php` to avoid these problems.", "The database is used for transactional file locking. To enhance performance, please configure memcache, if available." : "The database is used for transactional file locking. To enhance performance, please configure memcache, if available.", "Forwarded for headers" : "Forwarded for headers", "Your \"trusted_proxies\" setting is not correctly set, it should be an array." : "Your \"trusted_proxies\" setting is not correctly set, it should be an array.", @@ -794,7 +796,6 @@ OC.L10N.register( "Reasons to use Nextcloud in your organization" : "Reasons to use Nextcloud in your organization", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Like our Facebook page", - "Follow us on Twitter" : "Follow us on Twitter", "Follow us on Mastodon" : "Follow us on Mastodon", "Check out our blog" : "Check out our blog", "Subscribe to our newsletter" : "Subscribe to our newsletter", @@ -883,6 +884,7 @@ OC.L10N.register( "Show to logged in users only" : "Show to logged in users only", "Nextcloud help resources" : "Nextcloud help resources", "SMTP Username" : "SMTP Username", + "Follow us on Twitter" : "Follow us on Twitter", "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`." : "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`.", "Could not check for JavaScript support via any of your `trusted_domains` nor `overwrite.cli.url`. This may be the result of a server-side DNS mismatch or outbound firewall rule. Please check manually if your webserver serves `.mjs` files using the JavaScript MIME type." : "Could not check for JavaScript support via any of your `trusted_domains` nor `overwrite.cli.url`. This may be the result of a server-side DNS mismatch or outbound firewall rule. Please check manually if your webserver serves `.mjs` files using the JavaScript MIME type.", "Active accounts" : "Active accounts", diff --git a/apps/settings/l10n/en_GB.json b/apps/settings/l10n/en_GB.json index 125204dffd5c4..62ea61d6f4985 100644 --- a/apps/settings/l10n/en_GB.json +++ b/apps/settings/l10n/en_GB.json @@ -171,6 +171,8 @@ "Email test" : "Email test", "Email test was successfully sent" : "Email test was successfully sent", "You have not set or verified your email server configuration, yet. Please head over to the \"Basic settings\" in order to set them. Afterwards, use the \"Send email\" button below the form to verify your settings." : "You have not set or verified your email server configuration, yet. Please head over to the \"Basic settings\" in order to set them. Afterwards, use the \"Send email\" button below the form to verify your settings.", + "Transactional File Locking" : "Transactional File Locking", + "Transactional File Locking is disabled. This is not a a supported configuraton. It may lead to difficult to isolate problems including file corruption. Please remove the `'filelocking.enabled' => false` configuration entry from your `config.php` to avoid these problems." : "Transactional File Locking is disabled. This is not a a supported configuraton. It may lead to difficult to isolate problems including file corruption. Please remove the `'filelocking.enabled' => false` configuration entry from your `config.php` to avoid these problems.", "The database is used for transactional file locking. To enhance performance, please configure memcache, if available." : "The database is used for transactional file locking. To enhance performance, please configure memcache, if available.", "Forwarded for headers" : "Forwarded for headers", "Your \"trusted_proxies\" setting is not correctly set, it should be an array." : "Your \"trusted_proxies\" setting is not correctly set, it should be an array.", @@ -792,7 +794,6 @@ "Reasons to use Nextcloud in your organization" : "Reasons to use Nextcloud in your organization", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Like our Facebook page", - "Follow us on Twitter" : "Follow us on Twitter", "Follow us on Mastodon" : "Follow us on Mastodon", "Check out our blog" : "Check out our blog", "Subscribe to our newsletter" : "Subscribe to our newsletter", @@ -881,6 +882,7 @@ "Show to logged in users only" : "Show to logged in users only", "Nextcloud help resources" : "Nextcloud help resources", "SMTP Username" : "SMTP Username", + "Follow us on Twitter" : "Follow us on Twitter", "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`." : "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`.", "Could not check for JavaScript support via any of your `trusted_domains` nor `overwrite.cli.url`. This may be the result of a server-side DNS mismatch or outbound firewall rule. Please check manually if your webserver serves `.mjs` files using the JavaScript MIME type." : "Could not check for JavaScript support via any of your `trusted_domains` nor `overwrite.cli.url`. This may be the result of a server-side DNS mismatch or outbound firewall rule. Please check manually if your webserver serves `.mjs` files using the JavaScript MIME type.", "Active accounts" : "Active accounts", diff --git a/apps/settings/l10n/eo.js b/apps/settings/l10n/eo.js index f0e65cd52794a..c13526c74abdb 100644 --- a/apps/settings/l10n/eo.js +++ b/apps/settings/l10n/eo.js @@ -292,7 +292,6 @@ OC.L10N.register( "Check the security of your Nextcloud over our security scan ↗." : "Kontrolu sekurecon de via servilo Nextcloud pere de nia sekureca ekzameno ↗.", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Programita de la {communityopen}Nextcloud-komunumo{linkclose}, la {githubopen}fontkodo{linkclose} havas {licenseopen}AGPL{linkclose}-permesilon.", "Like our Facebook page" : "Ŝatu nian Facebook-paĝon", - "Follow us on Twitter" : "Sekvu nin per Twitter", "Follow us on Mastodon" : "Sekvu nin per Mastodon", "Check out our blog" : "Vizitu nian blogon", "Subscribe to our newsletter" : "Aboni nian retan bultenon", @@ -321,6 +320,7 @@ OC.L10N.register( "Show user backend" : "Montri uzantolokon", "Active users" : "Aktivaj uzantoj", "Disabled users" : "Malebligitaj uzantoj", - "SMTP Username" : "SMTP-uzantonomo" + "SMTP Username" : "SMTP-uzantonomo", + "Follow us on Twitter" : "Sekvu nin per Twitter" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/settings/l10n/eo.json b/apps/settings/l10n/eo.json index 2a0e9338fad6e..c96c378a88cc0 100644 --- a/apps/settings/l10n/eo.json +++ b/apps/settings/l10n/eo.json @@ -290,7 +290,6 @@ "Check the security of your Nextcloud over our security scan ↗." : "Kontrolu sekurecon de via servilo Nextcloud pere de nia sekureca ekzameno ↗.", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Programita de la {communityopen}Nextcloud-komunumo{linkclose}, la {githubopen}fontkodo{linkclose} havas {licenseopen}AGPL{linkclose}-permesilon.", "Like our Facebook page" : "Ŝatu nian Facebook-paĝon", - "Follow us on Twitter" : "Sekvu nin per Twitter", "Follow us on Mastodon" : "Sekvu nin per Mastodon", "Check out our blog" : "Vizitu nian blogon", "Subscribe to our newsletter" : "Aboni nian retan bultenon", @@ -319,6 +318,7 @@ "Show user backend" : "Montri uzantolokon", "Active users" : "Aktivaj uzantoj", "Disabled users" : "Malebligitaj uzantoj", - "SMTP Username" : "SMTP-uzantonomo" + "SMTP Username" : "SMTP-uzantonomo", + "Follow us on Twitter" : "Sekvu nin per Twitter" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/settings/l10n/es.js b/apps/settings/l10n/es.js index 75fd8624f232e..a79c8dcd336cc 100644 --- a/apps/settings/l10n/es.js +++ b/apps/settings/l10n/es.js @@ -758,7 +758,6 @@ OC.L10N.register( "Reasons to use Nextcloud in your organization" : "Razones para usar Nextcloud en su organización", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desarrollado por la {communityopen}comunidad Nextcloud{linkclose}, el {githubopen}código fuente{linkclose} está bajo la licencia {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Da a Me gusta en nuestra página de Facebook", - "Follow us on Twitter" : "Síguenos en Twitter", "Follow us on Mastodon" : "Síguenos en Mastodon", "Check out our blog" : "Lee nuestro blog", "Subscribe to our newsletter" : "Suscríbete a nuestro boletín", @@ -847,6 +846,7 @@ OC.L10N.register( "Show to logged in users only" : "Mostrar solo a usuarios con inicio de sesión", "Nextcloud help resources" : "Recursos de ayuda de Nextcloud", "SMTP Username" : "Nombre de usuario SMTP", + "Follow us on Twitter" : "Síguenos en Twitter", "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`." : "Para permitir que este chequeo se lleve a cabo, debe asegurarse que su servidor pueda conectarse a sí mismo. Por tanto, este debe poder resolver y conectarse a alguno de sus `trusted_domains` o al url definido en `overwrite.cli.url`", "Could not check for JavaScript support via any of your `trusted_domains` nor `overwrite.cli.url`. This may be the result of a server-side DNS mismatch or outbound firewall rule. Please check manually if your webserver serves `.mjs` files using the JavaScript MIME type." : "No se ha podido comprobar la compatibilidad con JavaScript a través de ninguno de sus `trusted_domains` ni `overwrite.cli.url`. Esto puede deberse a un error de DNS en el servidor o a una regla del cortafuegos de salida. Compruebe manualmente si su servidor web sirve archivos `.mjs` utilizando el tipo MIME JavaScript.", "Active accounts" : "Cuentas activas", diff --git a/apps/settings/l10n/es.json b/apps/settings/l10n/es.json index d2d24f5805fce..62502dd2b65bd 100644 --- a/apps/settings/l10n/es.json +++ b/apps/settings/l10n/es.json @@ -756,7 +756,6 @@ "Reasons to use Nextcloud in your organization" : "Razones para usar Nextcloud en su organización", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desarrollado por la {communityopen}comunidad Nextcloud{linkclose}, el {githubopen}código fuente{linkclose} está bajo la licencia {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Da a Me gusta en nuestra página de Facebook", - "Follow us on Twitter" : "Síguenos en Twitter", "Follow us on Mastodon" : "Síguenos en Mastodon", "Check out our blog" : "Lee nuestro blog", "Subscribe to our newsletter" : "Suscríbete a nuestro boletín", @@ -845,6 +844,7 @@ "Show to logged in users only" : "Mostrar solo a usuarios con inicio de sesión", "Nextcloud help resources" : "Recursos de ayuda de Nextcloud", "SMTP Username" : "Nombre de usuario SMTP", + "Follow us on Twitter" : "Síguenos en Twitter", "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`." : "Para permitir que este chequeo se lleve a cabo, debe asegurarse que su servidor pueda conectarse a sí mismo. Por tanto, este debe poder resolver y conectarse a alguno de sus `trusted_domains` o al url definido en `overwrite.cli.url`", "Could not check for JavaScript support via any of your `trusted_domains` nor `overwrite.cli.url`. This may be the result of a server-side DNS mismatch or outbound firewall rule. Please check manually if your webserver serves `.mjs` files using the JavaScript MIME type." : "No se ha podido comprobar la compatibilidad con JavaScript a través de ninguno de sus `trusted_domains` ni `overwrite.cli.url`. Esto puede deberse a un error de DNS en el servidor o a una regla del cortafuegos de salida. Compruebe manualmente si su servidor web sirve archivos `.mjs` utilizando el tipo MIME JavaScript.", "Active accounts" : "Cuentas activas", diff --git a/apps/settings/l10n/es_419.js b/apps/settings/l10n/es_419.js index ff9d7207ef515..894ed8988e8fd 100644 --- a/apps/settings/l10n/es_419.js +++ b/apps/settings/l10n/es_419.js @@ -217,7 +217,6 @@ OC.L10N.register( "Check the security of your Nextcloud over our security scan ↗." : "Revise la seguridad de su Nextcloud usando el escáner de seguridad ↗.", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desarrollado por la {communityopen}comunidad Nextcloud {linkclose}, el {githubopen}código fuente {linkclose} está licenciado bajo {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Da un Like a nuestra página de Facebook", - "Follow us on Twitter" : "Síguenos en Twitter", "Check out our blog" : "Visita nuestro blog", "Subscribe to our newsletter" : "Suscribete a nuestro boletín", "No user supplied" : "No se proporcionó usuario alguno", @@ -230,6 +229,7 @@ OC.L10N.register( "User backend" : "Backend del usuario", "Show user backend" : "Mostrar backend del usuario", "Active users" : "Usuarios activos", - "SMTP Username" : "Usuario SMTP" + "SMTP Username" : "Usuario SMTP", + "Follow us on Twitter" : "Síguenos en Twitter" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/settings/l10n/es_419.json b/apps/settings/l10n/es_419.json index fe3b71faf9477..1cebbfffc2c6a 100644 --- a/apps/settings/l10n/es_419.json +++ b/apps/settings/l10n/es_419.json @@ -215,7 +215,6 @@ "Check the security of your Nextcloud over our security scan ↗." : "Revise la seguridad de su Nextcloud usando el escáner de seguridad ↗.", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desarrollado por la {communityopen}comunidad Nextcloud {linkclose}, el {githubopen}código fuente {linkclose} está licenciado bajo {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Da un Like a nuestra página de Facebook", - "Follow us on Twitter" : "Síguenos en Twitter", "Check out our blog" : "Visita nuestro blog", "Subscribe to our newsletter" : "Suscribete a nuestro boletín", "No user supplied" : "No se proporcionó usuario alguno", @@ -228,6 +227,7 @@ "User backend" : "Backend del usuario", "Show user backend" : "Mostrar backend del usuario", "Active users" : "Usuarios activos", - "SMTP Username" : "Usuario SMTP" + "SMTP Username" : "Usuario SMTP", + "Follow us on Twitter" : "Síguenos en Twitter" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/apps/settings/l10n/es_AR.js b/apps/settings/l10n/es_AR.js index 56274eb03a069..ef22e872634a1 100644 --- a/apps/settings/l10n/es_AR.js +++ b/apps/settings/l10n/es_AR.js @@ -211,7 +211,6 @@ OC.L10N.register( "All checks passed." : "Pasaron todas las verificaciones. ", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desarrollado por la {communityopen}comunidad Nextcloud {linkclose}, el {githubopen}código fuente {linkclose} está licenciado bajo {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Me gusta en nuestra página de Facebook", - "Follow us on Twitter" : "Síguenos en Twitter", "Check out our blog" : "Echa un vistazo a nuestro blog.", "Subscribe to our newsletter" : "Suscríbete a nuestro boletín", "No user supplied" : "No se proporcionó un usuario", @@ -224,6 +223,7 @@ OC.L10N.register( "User backend" : "Backend del usuario", "Show user backend" : "Mostrar backend del usuario", "Active users" : "Usuarios activos", - "SMTP Username" : "nombre de usuario SMTP" + "SMTP Username" : "nombre de usuario SMTP", + "Follow us on Twitter" : "Síguenos en Twitter" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/settings/l10n/es_AR.json b/apps/settings/l10n/es_AR.json index fc6f0a87fa70a..71acd677e3e43 100644 --- a/apps/settings/l10n/es_AR.json +++ b/apps/settings/l10n/es_AR.json @@ -209,7 +209,6 @@ "All checks passed." : "Pasaron todas las verificaciones. ", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desarrollado por la {communityopen}comunidad Nextcloud {linkclose}, el {githubopen}código fuente {linkclose} está licenciado bajo {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Me gusta en nuestra página de Facebook", - "Follow us on Twitter" : "Síguenos en Twitter", "Check out our blog" : "Echa un vistazo a nuestro blog.", "Subscribe to our newsletter" : "Suscríbete a nuestro boletín", "No user supplied" : "No se proporcionó un usuario", @@ -222,6 +221,7 @@ "User backend" : "Backend del usuario", "Show user backend" : "Mostrar backend del usuario", "Active users" : "Usuarios activos", - "SMTP Username" : "nombre de usuario SMTP" + "SMTP Username" : "nombre de usuario SMTP", + "Follow us on Twitter" : "Síguenos en Twitter" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/apps/settings/l10n/es_CL.js b/apps/settings/l10n/es_CL.js index 5467029b8f9af..10c4820c42e47 100644 --- a/apps/settings/l10n/es_CL.js +++ b/apps/settings/l10n/es_CL.js @@ -220,7 +220,6 @@ OC.L10N.register( "All checks passed." : "Pasaron todas las verificaciones. ", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desarrollado por la {communityopen}comunidad Nextcloud {linkclose}, el {githubopen}código fuente {linkclose} está licenciado bajo {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Da un Like a nuestra página de Facebook", - "Follow us on Twitter" : "Síguenos en Twitter", "Check out our blog" : "Visita nuestro blog", "Subscribe to our newsletter" : "Suscribete a nuestro boletín", "No user supplied" : "No se proporcionó usuario alguno", @@ -234,6 +233,7 @@ OC.L10N.register( "User backend" : "Backend del usuario", "Show user backend" : "Mostrar backend del usuario", "Active users" : "Usuarios activos", - "SMTP Username" : "Usuario SMTP" + "SMTP Username" : "Usuario SMTP", + "Follow us on Twitter" : "Síguenos en Twitter" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/settings/l10n/es_CL.json b/apps/settings/l10n/es_CL.json index 4b0483cad1fbd..ecfa32e35bf85 100644 --- a/apps/settings/l10n/es_CL.json +++ b/apps/settings/l10n/es_CL.json @@ -218,7 +218,6 @@ "All checks passed." : "Pasaron todas las verificaciones. ", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desarrollado por la {communityopen}comunidad Nextcloud {linkclose}, el {githubopen}código fuente {linkclose} está licenciado bajo {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Da un Like a nuestra página de Facebook", - "Follow us on Twitter" : "Síguenos en Twitter", "Check out our blog" : "Visita nuestro blog", "Subscribe to our newsletter" : "Suscribete a nuestro boletín", "No user supplied" : "No se proporcionó usuario alguno", @@ -232,6 +231,7 @@ "User backend" : "Backend del usuario", "Show user backend" : "Mostrar backend del usuario", "Active users" : "Usuarios activos", - "SMTP Username" : "Usuario SMTP" + "SMTP Username" : "Usuario SMTP", + "Follow us on Twitter" : "Síguenos en Twitter" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/apps/settings/l10n/es_CO.js b/apps/settings/l10n/es_CO.js index 351b9480f8340..2c525ceab2d09 100644 --- a/apps/settings/l10n/es_CO.js +++ b/apps/settings/l10n/es_CO.js @@ -217,7 +217,6 @@ OC.L10N.register( "All checks passed." : "Pasaron todas las verificaciones. ", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desarrollado por la {communityopen}comunidad Nextcloud {linkclose}, el {githubopen}código fuente {linkclose} está licenciado bajo {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Da un Like a nuestra página de Facebook", - "Follow us on Twitter" : "Síguenos en Twitter", "Check out our blog" : "Visita nuestro blog", "Subscribe to our newsletter" : "Suscribete a nuestro boletín", "No user supplied" : "No se proporcionó usuario alguno", @@ -231,6 +230,7 @@ OC.L10N.register( "User backend" : "Backend del usuario", "Show user backend" : "Mostrar backend del usuario", "Active users" : "Usuarios activos", - "SMTP Username" : "Usuario SMTP" + "SMTP Username" : "Usuario SMTP", + "Follow us on Twitter" : "Síguenos en Twitter" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/settings/l10n/es_CO.json b/apps/settings/l10n/es_CO.json index 985d479f436e7..3e7a7c2a23c50 100644 --- a/apps/settings/l10n/es_CO.json +++ b/apps/settings/l10n/es_CO.json @@ -215,7 +215,6 @@ "All checks passed." : "Pasaron todas las verificaciones. ", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desarrollado por la {communityopen}comunidad Nextcloud {linkclose}, el {githubopen}código fuente {linkclose} está licenciado bajo {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Da un Like a nuestra página de Facebook", - "Follow us on Twitter" : "Síguenos en Twitter", "Check out our blog" : "Visita nuestro blog", "Subscribe to our newsletter" : "Suscribete a nuestro boletín", "No user supplied" : "No se proporcionó usuario alguno", @@ -229,6 +228,7 @@ "User backend" : "Backend del usuario", "Show user backend" : "Mostrar backend del usuario", "Active users" : "Usuarios activos", - "SMTP Username" : "Usuario SMTP" + "SMTP Username" : "Usuario SMTP", + "Follow us on Twitter" : "Síguenos en Twitter" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/apps/settings/l10n/es_CR.js b/apps/settings/l10n/es_CR.js index b1124446da3b5..dadfbea07ef55 100644 --- a/apps/settings/l10n/es_CR.js +++ b/apps/settings/l10n/es_CR.js @@ -219,7 +219,6 @@ OC.L10N.register( "All checks passed." : "Pasaron todas las verificaciones. ", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desarrollado por la {communityopen}comunidad Nextcloud {linkclose}, el {githubopen}código fuente {linkclose} está licenciado bajo {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Da un Like a nuestra página de Facebook", - "Follow us on Twitter" : "Síguenos en Twitter", "Check out our blog" : "Visita nuestro blog", "Subscribe to our newsletter" : "Suscribete a nuestro boletín", "No user supplied" : "No se proporcionó usuario alguno", @@ -233,6 +232,7 @@ OC.L10N.register( "User backend" : "Backend del usuario", "Show user backend" : "Mostrar backend del usuario", "Active users" : "Usuarios activos", - "SMTP Username" : "Usuario SMTP" + "SMTP Username" : "Usuario SMTP", + "Follow us on Twitter" : "Síguenos en Twitter" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/settings/l10n/es_CR.json b/apps/settings/l10n/es_CR.json index a7d2a5da0237b..0d6e80c1bd2e4 100644 --- a/apps/settings/l10n/es_CR.json +++ b/apps/settings/l10n/es_CR.json @@ -217,7 +217,6 @@ "All checks passed." : "Pasaron todas las verificaciones. ", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desarrollado por la {communityopen}comunidad Nextcloud {linkclose}, el {githubopen}código fuente {linkclose} está licenciado bajo {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Da un Like a nuestra página de Facebook", - "Follow us on Twitter" : "Síguenos en Twitter", "Check out our blog" : "Visita nuestro blog", "Subscribe to our newsletter" : "Suscribete a nuestro boletín", "No user supplied" : "No se proporcionó usuario alguno", @@ -231,6 +230,7 @@ "User backend" : "Backend del usuario", "Show user backend" : "Mostrar backend del usuario", "Active users" : "Usuarios activos", - "SMTP Username" : "Usuario SMTP" + "SMTP Username" : "Usuario SMTP", + "Follow us on Twitter" : "Síguenos en Twitter" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/apps/settings/l10n/es_DO.js b/apps/settings/l10n/es_DO.js index 5aae2ded80f7f..7b5dd392be777 100644 --- a/apps/settings/l10n/es_DO.js +++ b/apps/settings/l10n/es_DO.js @@ -218,7 +218,6 @@ OC.L10N.register( "All checks passed." : "Pasaron todas las verificaciones. ", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desarrollado por la {communityopen}comunidad Nextcloud {linkclose}, el {githubopen}código fuente {linkclose} está licenciado bajo {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Da un Like a nuestra página de Facebook", - "Follow us on Twitter" : "Síguenos en Twitter", "Check out our blog" : "Visita nuestro blog", "Subscribe to our newsletter" : "Suscribete a nuestro boletín", "No user supplied" : "No se proporcionó usuario alguno", @@ -232,6 +231,7 @@ OC.L10N.register( "User backend" : "Backend del usuario", "Show user backend" : "Mostrar backend del usuario", "Active users" : "Usuarios activos", - "SMTP Username" : "Usuario SMTP" + "SMTP Username" : "Usuario SMTP", + "Follow us on Twitter" : "Síguenos en Twitter" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/settings/l10n/es_DO.json b/apps/settings/l10n/es_DO.json index ce38ac938fef9..b0a22a1be22d0 100644 --- a/apps/settings/l10n/es_DO.json +++ b/apps/settings/l10n/es_DO.json @@ -216,7 +216,6 @@ "All checks passed." : "Pasaron todas las verificaciones. ", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desarrollado por la {communityopen}comunidad Nextcloud {linkclose}, el {githubopen}código fuente {linkclose} está licenciado bajo {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Da un Like a nuestra página de Facebook", - "Follow us on Twitter" : "Síguenos en Twitter", "Check out our blog" : "Visita nuestro blog", "Subscribe to our newsletter" : "Suscribete a nuestro boletín", "No user supplied" : "No se proporcionó usuario alguno", @@ -230,6 +229,7 @@ "User backend" : "Backend del usuario", "Show user backend" : "Mostrar backend del usuario", "Active users" : "Usuarios activos", - "SMTP Username" : "Usuario SMTP" + "SMTP Username" : "Usuario SMTP", + "Follow us on Twitter" : "Síguenos en Twitter" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/apps/settings/l10n/es_EC.js b/apps/settings/l10n/es_EC.js index e902b03d75ebf..0db627e9943ad 100644 --- a/apps/settings/l10n/es_EC.js +++ b/apps/settings/l10n/es_EC.js @@ -448,7 +448,6 @@ OC.L10N.register( "Reasons to use Nextcloud in your organization" : "Razones para usar Nextcloud en tu organización", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desarrollado por la {communityopen}comunidad Nextcloud {linkclose}, el {githubopen}código fuente {linkclose} está licenciado bajo {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Da un Like a nuestra página de Facebook", - "Follow us on Twitter" : "Síguenos en Twitter", "Follow us on Mastodon" : "Síguenos en Mastodon", "Check out our blog" : "Visita nuestro blog", "Subscribe to our newsletter" : "Suscribete a nuestro boletín", @@ -515,6 +514,7 @@ OC.L10N.register( "Not available as federation has been disabled for your account, contact your system administrator if you have any questions" : "No disponible, ya que la federación se ha desactivado para tu cuenta. Ponte en contacto con el administrador del sistema si tienes alguna pregunta.", "Not available as publishing user specific data to the lookup server is not allowed, contact your system administrator if you have any questions" : "No disponible, ya que no se permite la publicación de datos específicos de usuarios en el servidor de búsqueda. Ponte en contacto con el administrador del sistema si tienes alguna pregunta.", "Show to logged in users only" : "Mostrar solo a usuarios conectados", - "SMTP Username" : "Usuario SMTP" + "SMTP Username" : "Usuario SMTP", + "Follow us on Twitter" : "Síguenos en Twitter" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/settings/l10n/es_EC.json b/apps/settings/l10n/es_EC.json index 6071f80a3a549..906907ef1de6b 100644 --- a/apps/settings/l10n/es_EC.json +++ b/apps/settings/l10n/es_EC.json @@ -446,7 +446,6 @@ "Reasons to use Nextcloud in your organization" : "Razones para usar Nextcloud en tu organización", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desarrollado por la {communityopen}comunidad Nextcloud {linkclose}, el {githubopen}código fuente {linkclose} está licenciado bajo {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Da un Like a nuestra página de Facebook", - "Follow us on Twitter" : "Síguenos en Twitter", "Follow us on Mastodon" : "Síguenos en Mastodon", "Check out our blog" : "Visita nuestro blog", "Subscribe to our newsletter" : "Suscribete a nuestro boletín", @@ -513,6 +512,7 @@ "Not available as federation has been disabled for your account, contact your system administrator if you have any questions" : "No disponible, ya que la federación se ha desactivado para tu cuenta. Ponte en contacto con el administrador del sistema si tienes alguna pregunta.", "Not available as publishing user specific data to the lookup server is not allowed, contact your system administrator if you have any questions" : "No disponible, ya que no se permite la publicación de datos específicos de usuarios en el servidor de búsqueda. Ponte en contacto con el administrador del sistema si tienes alguna pregunta.", "Show to logged in users only" : "Mostrar solo a usuarios conectados", - "SMTP Username" : "Usuario SMTP" + "SMTP Username" : "Usuario SMTP", + "Follow us on Twitter" : "Síguenos en Twitter" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/apps/settings/l10n/es_GT.js b/apps/settings/l10n/es_GT.js index 72ee5e9380987..a5971a1e85547 100644 --- a/apps/settings/l10n/es_GT.js +++ b/apps/settings/l10n/es_GT.js @@ -220,7 +220,6 @@ OC.L10N.register( "All checks passed." : "Pasaron todas las verificaciones. ", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desarrollado por la {communityopen}comunidad Nextcloud {linkclose}, el {githubopen}código fuente {linkclose} está licenciado bajo {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Da un Like a nuestra página de Facebook", - "Follow us on Twitter" : "Síguenos en Twitter", "Check out our blog" : "Visita nuestro blog", "Subscribe to our newsletter" : "Suscribete a nuestro boletín", "No user supplied" : "No se proporcionó usuario alguno", @@ -234,6 +233,7 @@ OC.L10N.register( "User backend" : "Backend del usuario", "Show user backend" : "Mostrar backend del usuario", "Active users" : "Usuarios activos", - "SMTP Username" : "Usuario SMTP" + "SMTP Username" : "Usuario SMTP", + "Follow us on Twitter" : "Síguenos en Twitter" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/settings/l10n/es_GT.json b/apps/settings/l10n/es_GT.json index 887af47bcad66..4d52ea01f483c 100644 --- a/apps/settings/l10n/es_GT.json +++ b/apps/settings/l10n/es_GT.json @@ -218,7 +218,6 @@ "All checks passed." : "Pasaron todas las verificaciones. ", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desarrollado por la {communityopen}comunidad Nextcloud {linkclose}, el {githubopen}código fuente {linkclose} está licenciado bajo {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Da un Like a nuestra página de Facebook", - "Follow us on Twitter" : "Síguenos en Twitter", "Check out our blog" : "Visita nuestro blog", "Subscribe to our newsletter" : "Suscribete a nuestro boletín", "No user supplied" : "No se proporcionó usuario alguno", @@ -232,6 +231,7 @@ "User backend" : "Backend del usuario", "Show user backend" : "Mostrar backend del usuario", "Active users" : "Usuarios activos", - "SMTP Username" : "Usuario SMTP" + "SMTP Username" : "Usuario SMTP", + "Follow us on Twitter" : "Síguenos en Twitter" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/apps/settings/l10n/es_HN.js b/apps/settings/l10n/es_HN.js index ac8647a052113..7819d838c536b 100644 --- a/apps/settings/l10n/es_HN.js +++ b/apps/settings/l10n/es_HN.js @@ -212,7 +212,6 @@ OC.L10N.register( "All checks passed." : "Pasaron todas las verificaciones. ", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desarrollado por la {communityopen}comunidad Nextcloud {linkclose}, el {githubopen}código fuente {linkclose} está licenciado bajo {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Da un Like a nuestra página de Facebook", - "Follow us on Twitter" : "Síguenos en Twitter", "Check out our blog" : "Visita nuestro blog", "Subscribe to our newsletter" : "Suscribete a nuestro boletín", "No user supplied" : "No se proporcionó usuario alguno", @@ -225,6 +224,7 @@ OC.L10N.register( "User backend" : "Backend del usuario", "Show user backend" : "Mostrar backend del usuario", "Active users" : "Usuarios activos", - "SMTP Username" : "Usuario SMTP" + "SMTP Username" : "Usuario SMTP", + "Follow us on Twitter" : "Síguenos en Twitter" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/settings/l10n/es_HN.json b/apps/settings/l10n/es_HN.json index 7311d2567a76a..76325b9c23df4 100644 --- a/apps/settings/l10n/es_HN.json +++ b/apps/settings/l10n/es_HN.json @@ -210,7 +210,6 @@ "All checks passed." : "Pasaron todas las verificaciones. ", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desarrollado por la {communityopen}comunidad Nextcloud {linkclose}, el {githubopen}código fuente {linkclose} está licenciado bajo {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Da un Like a nuestra página de Facebook", - "Follow us on Twitter" : "Síguenos en Twitter", "Check out our blog" : "Visita nuestro blog", "Subscribe to our newsletter" : "Suscribete a nuestro boletín", "No user supplied" : "No se proporcionó usuario alguno", @@ -223,6 +222,7 @@ "User backend" : "Backend del usuario", "Show user backend" : "Mostrar backend del usuario", "Active users" : "Usuarios activos", - "SMTP Username" : "Usuario SMTP" + "SMTP Username" : "Usuario SMTP", + "Follow us on Twitter" : "Síguenos en Twitter" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/apps/settings/l10n/es_MX.js b/apps/settings/l10n/es_MX.js index 2475a6bc27311..34be49c62cfe2 100644 --- a/apps/settings/l10n/es_MX.js +++ b/apps/settings/l10n/es_MX.js @@ -697,7 +697,6 @@ OC.L10N.register( "Reasons to use Nextcloud in your organization" : "Razones para usar Nextcloud en su organización", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desarrollado por la {communityopen}comunidad Nextcloud {linkclose}, el {githubopen}código fuente {linkclose} está licenciado bajo {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Da un Like a nuestra página de Facebook", - "Follow us on Twitter" : "Síguenos en Twitter", "Follow us on Mastodon" : "Síguenos en Mastodon", "Check out our blog" : "Visita nuestro blog", "Subscribe to our newsletter" : "Suscribete a nuestro boletín", @@ -780,6 +779,7 @@ OC.L10N.register( "Show to logged in users only" : "Mostrar únicamente a usuarios conectados", "Nextcloud help resources" : "Recursos de ayuda de Nextcloud", "SMTP Username" : "Usuario SMTP", + "Follow us on Twitter" : "Síguenos en Twitter", "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`." : "Para permitir que esta verificación se lleve a cabo, debe asegurarse que su servidor web pueda conectarse a sí mismo. Por lo tanto, éste debe poder resolver y conectarse a al menos uno de sus `trusted_domains` o a `overwrite.cli.url`", "Active accounts" : "Cuentas activas" }, diff --git a/apps/settings/l10n/es_MX.json b/apps/settings/l10n/es_MX.json index 5fc56311101d5..ae7235584faca 100644 --- a/apps/settings/l10n/es_MX.json +++ b/apps/settings/l10n/es_MX.json @@ -695,7 +695,6 @@ "Reasons to use Nextcloud in your organization" : "Razones para usar Nextcloud en su organización", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desarrollado por la {communityopen}comunidad Nextcloud {linkclose}, el {githubopen}código fuente {linkclose} está licenciado bajo {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Da un Like a nuestra página de Facebook", - "Follow us on Twitter" : "Síguenos en Twitter", "Follow us on Mastodon" : "Síguenos en Mastodon", "Check out our blog" : "Visita nuestro blog", "Subscribe to our newsletter" : "Suscribete a nuestro boletín", @@ -778,6 +777,7 @@ "Show to logged in users only" : "Mostrar únicamente a usuarios conectados", "Nextcloud help resources" : "Recursos de ayuda de Nextcloud", "SMTP Username" : "Usuario SMTP", + "Follow us on Twitter" : "Síguenos en Twitter", "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`." : "Para permitir que esta verificación se lleve a cabo, debe asegurarse que su servidor web pueda conectarse a sí mismo. Por lo tanto, éste debe poder resolver y conectarse a al menos uno de sus `trusted_domains` o a `overwrite.cli.url`", "Active accounts" : "Cuentas activas" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" diff --git a/apps/settings/l10n/es_NI.js b/apps/settings/l10n/es_NI.js index ac8647a052113..7819d838c536b 100644 --- a/apps/settings/l10n/es_NI.js +++ b/apps/settings/l10n/es_NI.js @@ -212,7 +212,6 @@ OC.L10N.register( "All checks passed." : "Pasaron todas las verificaciones. ", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desarrollado por la {communityopen}comunidad Nextcloud {linkclose}, el {githubopen}código fuente {linkclose} está licenciado bajo {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Da un Like a nuestra página de Facebook", - "Follow us on Twitter" : "Síguenos en Twitter", "Check out our blog" : "Visita nuestro blog", "Subscribe to our newsletter" : "Suscribete a nuestro boletín", "No user supplied" : "No se proporcionó usuario alguno", @@ -225,6 +224,7 @@ OC.L10N.register( "User backend" : "Backend del usuario", "Show user backend" : "Mostrar backend del usuario", "Active users" : "Usuarios activos", - "SMTP Username" : "Usuario SMTP" + "SMTP Username" : "Usuario SMTP", + "Follow us on Twitter" : "Síguenos en Twitter" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/settings/l10n/es_NI.json b/apps/settings/l10n/es_NI.json index 7311d2567a76a..76325b9c23df4 100644 --- a/apps/settings/l10n/es_NI.json +++ b/apps/settings/l10n/es_NI.json @@ -210,7 +210,6 @@ "All checks passed." : "Pasaron todas las verificaciones. ", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desarrollado por la {communityopen}comunidad Nextcloud {linkclose}, el {githubopen}código fuente {linkclose} está licenciado bajo {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Da un Like a nuestra página de Facebook", - "Follow us on Twitter" : "Síguenos en Twitter", "Check out our blog" : "Visita nuestro blog", "Subscribe to our newsletter" : "Suscribete a nuestro boletín", "No user supplied" : "No se proporcionó usuario alguno", @@ -223,6 +222,7 @@ "User backend" : "Backend del usuario", "Show user backend" : "Mostrar backend del usuario", "Active users" : "Usuarios activos", - "SMTP Username" : "Usuario SMTP" + "SMTP Username" : "Usuario SMTP", + "Follow us on Twitter" : "Síguenos en Twitter" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/apps/settings/l10n/es_PA.js b/apps/settings/l10n/es_PA.js index a9d6f949da8c9..760bc70e70810 100644 --- a/apps/settings/l10n/es_PA.js +++ b/apps/settings/l10n/es_PA.js @@ -213,7 +213,6 @@ OC.L10N.register( "All checks passed." : "Pasaron todas las verificaciones. ", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desarrollado por la {communityopen}comunidad Nextcloud {linkclose}, el {githubopen}código fuente {linkclose} está licenciado bajo {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Da un Like a nuestra página de Facebook", - "Follow us on Twitter" : "Síguenos en Twitter", "Check out our blog" : "Visita nuestro blog", "Subscribe to our newsletter" : "Suscribete a nuestro boletín", "No user supplied" : "No se proporcionó usuario alguno", @@ -226,6 +225,7 @@ OC.L10N.register( "User backend" : "Backend del usuario", "Show user backend" : "Mostrar backend del usuario", "Active users" : "Usuarios activos", - "SMTP Username" : "Usuario SMTP" + "SMTP Username" : "Usuario SMTP", + "Follow us on Twitter" : "Síguenos en Twitter" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/settings/l10n/es_PA.json b/apps/settings/l10n/es_PA.json index 3f84c603dccc4..ed3139e6c224b 100644 --- a/apps/settings/l10n/es_PA.json +++ b/apps/settings/l10n/es_PA.json @@ -211,7 +211,6 @@ "All checks passed." : "Pasaron todas las verificaciones. ", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desarrollado por la {communityopen}comunidad Nextcloud {linkclose}, el {githubopen}código fuente {linkclose} está licenciado bajo {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Da un Like a nuestra página de Facebook", - "Follow us on Twitter" : "Síguenos en Twitter", "Check out our blog" : "Visita nuestro blog", "Subscribe to our newsletter" : "Suscribete a nuestro boletín", "No user supplied" : "No se proporcionó usuario alguno", @@ -224,6 +223,7 @@ "User backend" : "Backend del usuario", "Show user backend" : "Mostrar backend del usuario", "Active users" : "Usuarios activos", - "SMTP Username" : "Usuario SMTP" + "SMTP Username" : "Usuario SMTP", + "Follow us on Twitter" : "Síguenos en Twitter" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/apps/settings/l10n/es_PE.js b/apps/settings/l10n/es_PE.js index 3a76675ab2e15..896f1d1d5d3b0 100644 --- a/apps/settings/l10n/es_PE.js +++ b/apps/settings/l10n/es_PE.js @@ -212,7 +212,6 @@ OC.L10N.register( "All checks passed." : "Pasaron todas las verificaciones. ", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desarrollado por la {communityopen}comunidad Nextcloud {linkclose}, el {githubopen}código fuente {linkclose} está licenciado bajo {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Da un Like a nuestra página de Facebook", - "Follow us on Twitter" : "Síguenos en Twitter", "Check out our blog" : "Visita nuestro blog", "Subscribe to our newsletter" : "Suscribete a nuestro boletín", "No user supplied" : "No se proporcionó usuario alguno", @@ -225,6 +224,7 @@ OC.L10N.register( "User backend" : "Backend del usuario", "Show user backend" : "Mostrar backend del usuario", "Active users" : "Usuarios activos", - "SMTP Username" : "Usuario SMTP" + "SMTP Username" : "Usuario SMTP", + "Follow us on Twitter" : "Síguenos en Twitter" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/settings/l10n/es_PE.json b/apps/settings/l10n/es_PE.json index 751f5f48e8393..544195fec93b1 100644 --- a/apps/settings/l10n/es_PE.json +++ b/apps/settings/l10n/es_PE.json @@ -210,7 +210,6 @@ "All checks passed." : "Pasaron todas las verificaciones. ", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desarrollado por la {communityopen}comunidad Nextcloud {linkclose}, el {githubopen}código fuente {linkclose} está licenciado bajo {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Da un Like a nuestra página de Facebook", - "Follow us on Twitter" : "Síguenos en Twitter", "Check out our blog" : "Visita nuestro blog", "Subscribe to our newsletter" : "Suscribete a nuestro boletín", "No user supplied" : "No se proporcionó usuario alguno", @@ -223,6 +222,7 @@ "User backend" : "Backend del usuario", "Show user backend" : "Mostrar backend del usuario", "Active users" : "Usuarios activos", - "SMTP Username" : "Usuario SMTP" + "SMTP Username" : "Usuario SMTP", + "Follow us on Twitter" : "Síguenos en Twitter" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/apps/settings/l10n/es_PR.js b/apps/settings/l10n/es_PR.js index a9d6f949da8c9..760bc70e70810 100644 --- a/apps/settings/l10n/es_PR.js +++ b/apps/settings/l10n/es_PR.js @@ -213,7 +213,6 @@ OC.L10N.register( "All checks passed." : "Pasaron todas las verificaciones. ", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desarrollado por la {communityopen}comunidad Nextcloud {linkclose}, el {githubopen}código fuente {linkclose} está licenciado bajo {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Da un Like a nuestra página de Facebook", - "Follow us on Twitter" : "Síguenos en Twitter", "Check out our blog" : "Visita nuestro blog", "Subscribe to our newsletter" : "Suscribete a nuestro boletín", "No user supplied" : "No se proporcionó usuario alguno", @@ -226,6 +225,7 @@ OC.L10N.register( "User backend" : "Backend del usuario", "Show user backend" : "Mostrar backend del usuario", "Active users" : "Usuarios activos", - "SMTP Username" : "Usuario SMTP" + "SMTP Username" : "Usuario SMTP", + "Follow us on Twitter" : "Síguenos en Twitter" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/settings/l10n/es_PR.json b/apps/settings/l10n/es_PR.json index 3f84c603dccc4..ed3139e6c224b 100644 --- a/apps/settings/l10n/es_PR.json +++ b/apps/settings/l10n/es_PR.json @@ -211,7 +211,6 @@ "All checks passed." : "Pasaron todas las verificaciones. ", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desarrollado por la {communityopen}comunidad Nextcloud {linkclose}, el {githubopen}código fuente {linkclose} está licenciado bajo {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Da un Like a nuestra página de Facebook", - "Follow us on Twitter" : "Síguenos en Twitter", "Check out our blog" : "Visita nuestro blog", "Subscribe to our newsletter" : "Suscribete a nuestro boletín", "No user supplied" : "No se proporcionó usuario alguno", @@ -224,6 +223,7 @@ "User backend" : "Backend del usuario", "Show user backend" : "Mostrar backend del usuario", "Active users" : "Usuarios activos", - "SMTP Username" : "Usuario SMTP" + "SMTP Username" : "Usuario SMTP", + "Follow us on Twitter" : "Síguenos en Twitter" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/apps/settings/l10n/es_PY.js b/apps/settings/l10n/es_PY.js index a9d6f949da8c9..760bc70e70810 100644 --- a/apps/settings/l10n/es_PY.js +++ b/apps/settings/l10n/es_PY.js @@ -213,7 +213,6 @@ OC.L10N.register( "All checks passed." : "Pasaron todas las verificaciones. ", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desarrollado por la {communityopen}comunidad Nextcloud {linkclose}, el {githubopen}código fuente {linkclose} está licenciado bajo {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Da un Like a nuestra página de Facebook", - "Follow us on Twitter" : "Síguenos en Twitter", "Check out our blog" : "Visita nuestro blog", "Subscribe to our newsletter" : "Suscribete a nuestro boletín", "No user supplied" : "No se proporcionó usuario alguno", @@ -226,6 +225,7 @@ OC.L10N.register( "User backend" : "Backend del usuario", "Show user backend" : "Mostrar backend del usuario", "Active users" : "Usuarios activos", - "SMTP Username" : "Usuario SMTP" + "SMTP Username" : "Usuario SMTP", + "Follow us on Twitter" : "Síguenos en Twitter" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/settings/l10n/es_PY.json b/apps/settings/l10n/es_PY.json index 3f84c603dccc4..ed3139e6c224b 100644 --- a/apps/settings/l10n/es_PY.json +++ b/apps/settings/l10n/es_PY.json @@ -211,7 +211,6 @@ "All checks passed." : "Pasaron todas las verificaciones. ", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desarrollado por la {communityopen}comunidad Nextcloud {linkclose}, el {githubopen}código fuente {linkclose} está licenciado bajo {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Da un Like a nuestra página de Facebook", - "Follow us on Twitter" : "Síguenos en Twitter", "Check out our blog" : "Visita nuestro blog", "Subscribe to our newsletter" : "Suscribete a nuestro boletín", "No user supplied" : "No se proporcionó usuario alguno", @@ -224,6 +223,7 @@ "User backend" : "Backend del usuario", "Show user backend" : "Mostrar backend del usuario", "Active users" : "Usuarios activos", - "SMTP Username" : "Usuario SMTP" + "SMTP Username" : "Usuario SMTP", + "Follow us on Twitter" : "Síguenos en Twitter" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/apps/settings/l10n/es_SV.js b/apps/settings/l10n/es_SV.js index 72ee5e9380987..a5971a1e85547 100644 --- a/apps/settings/l10n/es_SV.js +++ b/apps/settings/l10n/es_SV.js @@ -220,7 +220,6 @@ OC.L10N.register( "All checks passed." : "Pasaron todas las verificaciones. ", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desarrollado por la {communityopen}comunidad Nextcloud {linkclose}, el {githubopen}código fuente {linkclose} está licenciado bajo {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Da un Like a nuestra página de Facebook", - "Follow us on Twitter" : "Síguenos en Twitter", "Check out our blog" : "Visita nuestro blog", "Subscribe to our newsletter" : "Suscribete a nuestro boletín", "No user supplied" : "No se proporcionó usuario alguno", @@ -234,6 +233,7 @@ OC.L10N.register( "User backend" : "Backend del usuario", "Show user backend" : "Mostrar backend del usuario", "Active users" : "Usuarios activos", - "SMTP Username" : "Usuario SMTP" + "SMTP Username" : "Usuario SMTP", + "Follow us on Twitter" : "Síguenos en Twitter" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/settings/l10n/es_SV.json b/apps/settings/l10n/es_SV.json index 887af47bcad66..4d52ea01f483c 100644 --- a/apps/settings/l10n/es_SV.json +++ b/apps/settings/l10n/es_SV.json @@ -218,7 +218,6 @@ "All checks passed." : "Pasaron todas las verificaciones. ", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desarrollado por la {communityopen}comunidad Nextcloud {linkclose}, el {githubopen}código fuente {linkclose} está licenciado bajo {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Da un Like a nuestra página de Facebook", - "Follow us on Twitter" : "Síguenos en Twitter", "Check out our blog" : "Visita nuestro blog", "Subscribe to our newsletter" : "Suscribete a nuestro boletín", "No user supplied" : "No se proporcionó usuario alguno", @@ -232,6 +231,7 @@ "User backend" : "Backend del usuario", "Show user backend" : "Mostrar backend del usuario", "Active users" : "Usuarios activos", - "SMTP Username" : "Usuario SMTP" + "SMTP Username" : "Usuario SMTP", + "Follow us on Twitter" : "Síguenos en Twitter" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/apps/settings/l10n/es_UY.js b/apps/settings/l10n/es_UY.js index 6e5fd175745cf..bee15ee95ed50 100644 --- a/apps/settings/l10n/es_UY.js +++ b/apps/settings/l10n/es_UY.js @@ -211,7 +211,6 @@ OC.L10N.register( "All checks passed." : "Pasaron todas las verificaciones. ", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desarrollado por la {communityopen}comunidad Nextcloud {linkclose}, el {githubopen}código fuente {linkclose} está licenciado bajo {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Da un Like a nuestra página de Facebook", - "Follow us on Twitter" : "Síguenos en Twitter", "Check out our blog" : "Visita nuestro blog", "Subscribe to our newsletter" : "Suscribete a nuestro boletín", "No user supplied" : "No se proporcionó usuario alguno", @@ -224,6 +223,7 @@ OC.L10N.register( "User backend" : "Backend del usuario", "Show user backend" : "Mostrar backend del usuario", "Active users" : "Usuarios activos", - "SMTP Username" : "Usuario SMTP" + "SMTP Username" : "Usuario SMTP", + "Follow us on Twitter" : "Síguenos en Twitter" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/settings/l10n/es_UY.json b/apps/settings/l10n/es_UY.json index 2f57ba2f4c313..3423911de544f 100644 --- a/apps/settings/l10n/es_UY.json +++ b/apps/settings/l10n/es_UY.json @@ -209,7 +209,6 @@ "All checks passed." : "Pasaron todas las verificaciones. ", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desarrollado por la {communityopen}comunidad Nextcloud {linkclose}, el {githubopen}código fuente {linkclose} está licenciado bajo {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Da un Like a nuestra página de Facebook", - "Follow us on Twitter" : "Síguenos en Twitter", "Check out our blog" : "Visita nuestro blog", "Subscribe to our newsletter" : "Suscribete a nuestro boletín", "No user supplied" : "No se proporcionó usuario alguno", @@ -222,6 +221,7 @@ "User backend" : "Backend del usuario", "Show user backend" : "Mostrar backend del usuario", "Active users" : "Usuarios activos", - "SMTP Username" : "Usuario SMTP" + "SMTP Username" : "Usuario SMTP", + "Follow us on Twitter" : "Síguenos en Twitter" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/apps/settings/l10n/eu.js b/apps/settings/l10n/eu.js index d400d390cf97a..9cc398c9ed4ce 100644 --- a/apps/settings/l10n/eu.js +++ b/apps/settings/l10n/eu.js @@ -782,7 +782,6 @@ OC.L10N.register( "Reasons to use Nextcloud in your organization" : "Nextcloud zure erakundean erabiltzeko arrazoiak", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "{communityopen}Nextcloud komunitateak{linkclose} garatuta, {githubopen}iturburu kodea{linkclose} {licenseopen}AGPL{linkclose} lizentziapean banatzen da.", "Like our Facebook page" : "Gure Facebook orrian Like egin", - "Follow us on Twitter" : "Jarrai gaitzazu Twitterren", "Follow us on Mastodon" : "Jarraitu gaitzazu Mastodon-en", "Check out our blog" : "Gure bloga kontsultatu", "Subscribe to our newsletter" : "Izena eman gure buletinean", @@ -871,6 +870,7 @@ OC.L10N.register( "Show to logged in users only" : "Erakutsi saioa hasi duten erabiltzaileei soilik", "Nextcloud help resources" : "Nextcloud laguntza baliabideak", "SMTP Username" : "SMTP erabiltzaile-izena", + "Follow us on Twitter" : "Jarrai gaitzazu Twitterren", "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`." : "Egiaztapen hau exekuta dadin zure web zerbitzaria bere buruarekin konektatu daitekeela ziurtatu behar duzu. Hori dela eta, gutxienez bere `trusted_domains` edo `overwrite.cli.url` batera konektatzeko gai izan behar da.", "Could not check for JavaScript support via any of your `trusted_domains` nor `overwrite.cli.url`. This may be the result of a server-side DNS mismatch or outbound firewall rule. Please check manually if your webserver serves `.mjs` files using the JavaScript MIME type." : "Ezin izan da egiaztatu JavaScript onartzen baden zure `trusted_domains` edo `overwrite.cli.url` bidez. Baliteke zerbitzariaren DNS bat ez datozenen edo irteerako suebakiaren arauaren ondorioa izatea. Mesedez, egiaztatu eskuz zure web zerbitzariak `.mjs` fitxategiak hornitzen dituen JavaScript MIME mota erabiliz.", "Active accounts" : "Kontu gaituak", diff --git a/apps/settings/l10n/eu.json b/apps/settings/l10n/eu.json index 48bb16cba820a..6c650ebe14851 100644 --- a/apps/settings/l10n/eu.json +++ b/apps/settings/l10n/eu.json @@ -780,7 +780,6 @@ "Reasons to use Nextcloud in your organization" : "Nextcloud zure erakundean erabiltzeko arrazoiak", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "{communityopen}Nextcloud komunitateak{linkclose} garatuta, {githubopen}iturburu kodea{linkclose} {licenseopen}AGPL{linkclose} lizentziapean banatzen da.", "Like our Facebook page" : "Gure Facebook orrian Like egin", - "Follow us on Twitter" : "Jarrai gaitzazu Twitterren", "Follow us on Mastodon" : "Jarraitu gaitzazu Mastodon-en", "Check out our blog" : "Gure bloga kontsultatu", "Subscribe to our newsletter" : "Izena eman gure buletinean", @@ -869,6 +868,7 @@ "Show to logged in users only" : "Erakutsi saioa hasi duten erabiltzaileei soilik", "Nextcloud help resources" : "Nextcloud laguntza baliabideak", "SMTP Username" : "SMTP erabiltzaile-izena", + "Follow us on Twitter" : "Jarrai gaitzazu Twitterren", "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`." : "Egiaztapen hau exekuta dadin zure web zerbitzaria bere buruarekin konektatu daitekeela ziurtatu behar duzu. Hori dela eta, gutxienez bere `trusted_domains` edo `overwrite.cli.url` batera konektatzeko gai izan behar da.", "Could not check for JavaScript support via any of your `trusted_domains` nor `overwrite.cli.url`. This may be the result of a server-side DNS mismatch or outbound firewall rule. Please check manually if your webserver serves `.mjs` files using the JavaScript MIME type." : "Ezin izan da egiaztatu JavaScript onartzen baden zure `trusted_domains` edo `overwrite.cli.url` bidez. Baliteke zerbitzariaren DNS bat ez datozenen edo irteerako suebakiaren arauaren ondorioa izatea. Mesedez, egiaztatu eskuz zure web zerbitzariak `.mjs` fitxategiak hornitzen dituen JavaScript MIME mota erabiliz.", "Active accounts" : "Kontu gaituak", diff --git a/apps/settings/l10n/fa.js b/apps/settings/l10n/fa.js index 564359c4548aa..a64ea37461ab0 100644 --- a/apps/settings/l10n/fa.js +++ b/apps/settings/l10n/fa.js @@ -461,7 +461,6 @@ OC.L10N.register( "Reasons to use Nextcloud in your organization" : "دلایلی برای استفاده از نکست‌کلود در سازمان شما", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "توسعه یافته توسط {communityopen} انجمن نکست کلود {linkclose}، {githubopen} کد منبع {linkclose} تحت مجوز {licenseopen}AGPL{linkclose}است. ", "Like our Facebook page" : "پسندیدن صفحه فیس بوک ما", - "Follow us on Twitter" : "ما را در توییتر دنبال کنید", "Follow us on Mastodon" : "ما را در ماستودون دنبال کنید", "Check out our blog" : "وبلاگ ما را بررسی کنید", "Subscribe to our newsletter" : "مشترک شدن در خبرنامه ما", @@ -537,6 +536,7 @@ OC.L10N.register( "Show to logged in users only" : "نمایش فقط برای کاربران وارد شده به سامانه", "Nextcloud help resources" : "منابع راهنمای نکست‌کلود", "SMTP Username" : "نام کاربری SMTP", + "Follow us on Twitter" : "ما را در توییتر دنبال کنید", "Active accounts" : "حساب‌های فعال" }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/settings/l10n/fa.json b/apps/settings/l10n/fa.json index c5754f85dd35b..ce3609525afb8 100644 --- a/apps/settings/l10n/fa.json +++ b/apps/settings/l10n/fa.json @@ -459,7 +459,6 @@ "Reasons to use Nextcloud in your organization" : "دلایلی برای استفاده از نکست‌کلود در سازمان شما", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "توسعه یافته توسط {communityopen} انجمن نکست کلود {linkclose}، {githubopen} کد منبع {linkclose} تحت مجوز {licenseopen}AGPL{linkclose}است. ", "Like our Facebook page" : "پسندیدن صفحه فیس بوک ما", - "Follow us on Twitter" : "ما را در توییتر دنبال کنید", "Follow us on Mastodon" : "ما را در ماستودون دنبال کنید", "Check out our blog" : "وبلاگ ما را بررسی کنید", "Subscribe to our newsletter" : "مشترک شدن در خبرنامه ما", @@ -535,6 +534,7 @@ "Show to logged in users only" : "نمایش فقط برای کاربران وارد شده به سامانه", "Nextcloud help resources" : "منابع راهنمای نکست‌کلود", "SMTP Username" : "نام کاربری SMTP", + "Follow us on Twitter" : "ما را در توییتر دنبال کنید", "Active accounts" : "حساب‌های فعال" },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/apps/settings/l10n/fi.js b/apps/settings/l10n/fi.js index 254c8ea8dfe3e..a99e25aef07b4 100644 --- a/apps/settings/l10n/fi.js +++ b/apps/settings/l10n/fi.js @@ -518,7 +518,6 @@ OC.L10N.register( "Reasons to use Nextcloud in your organization" : "Nextcloudin käytön edut organisaatiossasi", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Kehityksestä on vastannut {communityopen}Nextcloud-yhteisö{linkclose}, {githubopen}lähdekoodi{linkclose} on {licenseopen}AGPL-lisensoitu{linkclose}.", "Like our Facebook page" : "Tykkää Facebook-sivustamme", - "Follow us on Twitter" : "Seuraa meitä Twitterissä", "Follow us on Mastodon" : "Seuraa meitä Mastodonissa", "Check out our blog" : "Lue blogia", "Subscribe to our newsletter" : "Tilaa uutiskirje", @@ -582,6 +581,7 @@ OC.L10N.register( "Show to logged in users only" : "Näytä vain sisäänkirjautuneille käyttäjille", "Nextcloud help resources" : "Nextcloud-ohjeresurssit", "SMTP Username" : "SMTP-käyttäjätunnus", + "Follow us on Twitter" : "Seuraa meitä Twitterissä", "Active accounts" : "Aktiiviset tilit" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/settings/l10n/fi.json b/apps/settings/l10n/fi.json index a9eb963bb0a4f..7e34dcc272ba6 100644 --- a/apps/settings/l10n/fi.json +++ b/apps/settings/l10n/fi.json @@ -516,7 +516,6 @@ "Reasons to use Nextcloud in your organization" : "Nextcloudin käytön edut organisaatiossasi", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Kehityksestä on vastannut {communityopen}Nextcloud-yhteisö{linkclose}, {githubopen}lähdekoodi{linkclose} on {licenseopen}AGPL-lisensoitu{linkclose}.", "Like our Facebook page" : "Tykkää Facebook-sivustamme", - "Follow us on Twitter" : "Seuraa meitä Twitterissä", "Follow us on Mastodon" : "Seuraa meitä Mastodonissa", "Check out our blog" : "Lue blogia", "Subscribe to our newsletter" : "Tilaa uutiskirje", @@ -580,6 +579,7 @@ "Show to logged in users only" : "Näytä vain sisäänkirjautuneille käyttäjille", "Nextcloud help resources" : "Nextcloud-ohjeresurssit", "SMTP Username" : "SMTP-käyttäjätunnus", + "Follow us on Twitter" : "Seuraa meitä Twitterissä", "Active accounts" : "Aktiiviset tilit" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/settings/l10n/fr.js b/apps/settings/l10n/fr.js index c4ca28822bee0..8a597be18d1ab 100644 --- a/apps/settings/l10n/fr.js +++ b/apps/settings/l10n/fr.js @@ -763,7 +763,6 @@ OC.L10N.register( "Reasons to use Nextcloud in your organization" : "Raisons d'utiliser Nextcloud dans votre organisation", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Développé par la {communityopen}communauté Nextcloud{linkclose}, le {githubopen}code source{linkclose} est sous licence {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Aimez notre page Facebook", - "Follow us on Twitter" : "Suivez-nous sur Twitter", "Follow us on Mastodon" : "Suivez-nous sur Mastodon", "Check out our blog" : "Découvrez notre blog", "Subscribe to our newsletter" : "Abonnez-vous à notre lettre d'information", @@ -852,6 +851,7 @@ OC.L10N.register( "Show to logged in users only" : "Montrer seulement aux utilisateurs connectés", "Nextcloud help resources" : "Ressources d'aide Nextcloud", "SMTP Username" : "Nom d’utilisateur SMTP", + "Follow us on Twitter" : "Suivez-nous sur Twitter", "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`." : "Pour autoriser cette vérification, pour devez vous assurer que votre serveur web peut se connecter à lui-même. Il doit donc être capable de résoudre et de se connecter à au moins un de ses `trusted_domains` ou à l'URL `overwrite.cli.url`.", "Could not check for JavaScript support via any of your `trusted_domains` nor `overwrite.cli.url`. This may be the result of a server-side DNS mismatch or outbound firewall rule. Please check manually if your webserver serves `.mjs` files using the JavaScript MIME type." : "Impossible de vérifier la prise en charge Javascript via l’un de vos `trusted_domains` ou `overwrite.cli.url`. Cela peut résulter d’une incompatibilité DNS côté serveur ou d’une règle de pare-feu sortante. Veuillez vérifier manuellement si votre serveur web sert des fichiers `.mjs` utilisant le type MIME JavaScript.", "Active accounts" : "Comptes actifs", diff --git a/apps/settings/l10n/fr.json b/apps/settings/l10n/fr.json index c7e73fa06e2b9..e6fc45e53725e 100644 --- a/apps/settings/l10n/fr.json +++ b/apps/settings/l10n/fr.json @@ -761,7 +761,6 @@ "Reasons to use Nextcloud in your organization" : "Raisons d'utiliser Nextcloud dans votre organisation", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Développé par la {communityopen}communauté Nextcloud{linkclose}, le {githubopen}code source{linkclose} est sous licence {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Aimez notre page Facebook", - "Follow us on Twitter" : "Suivez-nous sur Twitter", "Follow us on Mastodon" : "Suivez-nous sur Mastodon", "Check out our blog" : "Découvrez notre blog", "Subscribe to our newsletter" : "Abonnez-vous à notre lettre d'information", @@ -850,6 +849,7 @@ "Show to logged in users only" : "Montrer seulement aux utilisateurs connectés", "Nextcloud help resources" : "Ressources d'aide Nextcloud", "SMTP Username" : "Nom d’utilisateur SMTP", + "Follow us on Twitter" : "Suivez-nous sur Twitter", "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`." : "Pour autoriser cette vérification, pour devez vous assurer que votre serveur web peut se connecter à lui-même. Il doit donc être capable de résoudre et de se connecter à au moins un de ses `trusted_domains` ou à l'URL `overwrite.cli.url`.", "Could not check for JavaScript support via any of your `trusted_domains` nor `overwrite.cli.url`. This may be the result of a server-side DNS mismatch or outbound firewall rule. Please check manually if your webserver serves `.mjs` files using the JavaScript MIME type." : "Impossible de vérifier la prise en charge Javascript via l’un de vos `trusted_domains` ou `overwrite.cli.url`. Cela peut résulter d’une incompatibilité DNS côté serveur ou d’une règle de pare-feu sortante. Veuillez vérifier manuellement si votre serveur web sert des fichiers `.mjs` utilisant le type MIME JavaScript.", "Active accounts" : "Comptes actifs", diff --git a/apps/settings/l10n/ga.js b/apps/settings/l10n/ga.js index c6504d96d1f05..2d160f29be43f 100644 --- a/apps/settings/l10n/ga.js +++ b/apps/settings/l10n/ga.js @@ -796,7 +796,6 @@ OC.L10N.register( "Reasons to use Nextcloud in your organization" : "Cúiseanna le Nextcloud a úsáid i d’eagraíocht", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Arna fhorbairt ag {communityopen}pobal Nextcloud{linkclose}, tá an {githubopen}cód foinseach{linkclose} ceadúnaithe faoin {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Cosúil lenár leathanach Facebook", - "Follow us on Twitter" : "Lean muid ar Twitter", "Follow us on Mastodon" : "Follow us on Mastodon", "Check out our blog" : "Amharc ar ár mblag", "Subscribe to our newsletter" : "Liostáil lenár nuachtlitir", @@ -885,6 +884,7 @@ OC.L10N.register( "Show to logged in users only" : "Taispeáin d'úsáideoirí logáilte isteach amháin", "Nextcloud help resources" : "Acmhainní cabhrach Nextcloud", "SMTP Username" : "Ainm Úsáideora SMTP", + "Follow us on Twitter" : "Lean muid ar Twitter", "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`." : "Le gur féidir an tseiceáil seo a rith caithfidh tú a chinntiú gur féidir le do fhreastalaí gréasáin nascadh leis féin. Mar sin caithfidh sé a bheith in ann réiteach agus ceangal a dhéanamh le ceann amháin ar a laghad dá `fearainn_iontaofa` nó don `overwrite.cli.url`.", "Could not check for JavaScript support via any of your `trusted_domains` nor `overwrite.cli.url`. This may be the result of a server-side DNS mismatch or outbound firewall rule. Please check manually if your webserver serves `.mjs` files using the JavaScript MIME type." : "Níorbh fhéidir tacaíocht JavaScript a fháil trí aon cheann de na `fearainn_ iontaofa` ná `overwrite.cli.url`. D'fhéadfadh sé seo a bheith mar thoradh ar mhímheaitseáil DNS ar thaobh an fhreastalaí nó riail balla dóiteáin amach. Seiceáil le do thoil de láimh an bhfreastalaíonn do fhreastalaí gréasáin ar chomhaid `.mjs` ag baint úsáide as an gcineál JavaScript MIME.", "Active accounts" : "Cuntais ghníomhacha", diff --git a/apps/settings/l10n/ga.json b/apps/settings/l10n/ga.json index 04c41b2de1255..59c77bc1e42fb 100644 --- a/apps/settings/l10n/ga.json +++ b/apps/settings/l10n/ga.json @@ -794,7 +794,6 @@ "Reasons to use Nextcloud in your organization" : "Cúiseanna le Nextcloud a úsáid i d’eagraíocht", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Arna fhorbairt ag {communityopen}pobal Nextcloud{linkclose}, tá an {githubopen}cód foinseach{linkclose} ceadúnaithe faoin {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Cosúil lenár leathanach Facebook", - "Follow us on Twitter" : "Lean muid ar Twitter", "Follow us on Mastodon" : "Follow us on Mastodon", "Check out our blog" : "Amharc ar ár mblag", "Subscribe to our newsletter" : "Liostáil lenár nuachtlitir", @@ -883,6 +882,7 @@ "Show to logged in users only" : "Taispeáin d'úsáideoirí logáilte isteach amháin", "Nextcloud help resources" : "Acmhainní cabhrach Nextcloud", "SMTP Username" : "Ainm Úsáideora SMTP", + "Follow us on Twitter" : "Lean muid ar Twitter", "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`." : "Le gur féidir an tseiceáil seo a rith caithfidh tú a chinntiú gur féidir le do fhreastalaí gréasáin nascadh leis féin. Mar sin caithfidh sé a bheith in ann réiteach agus ceangal a dhéanamh le ceann amháin ar a laghad dá `fearainn_iontaofa` nó don `overwrite.cli.url`.", "Could not check for JavaScript support via any of your `trusted_domains` nor `overwrite.cli.url`. This may be the result of a server-side DNS mismatch or outbound firewall rule. Please check manually if your webserver serves `.mjs` files using the JavaScript MIME type." : "Níorbh fhéidir tacaíocht JavaScript a fháil trí aon cheann de na `fearainn_ iontaofa` ná `overwrite.cli.url`. D'fhéadfadh sé seo a bheith mar thoradh ar mhímheaitseáil DNS ar thaobh an fhreastalaí nó riail balla dóiteáin amach. Seiceáil le do thoil de láimh an bhfreastalaíonn do fhreastalaí gréasáin ar chomhaid `.mjs` ag baint úsáide as an gcineál JavaScript MIME.", "Active accounts" : "Cuntais ghníomhacha", diff --git a/apps/settings/l10n/gl.js b/apps/settings/l10n/gl.js index 027f82eaeefb6..605a589f1ce97 100644 --- a/apps/settings/l10n/gl.js +++ b/apps/settings/l10n/gl.js @@ -796,7 +796,6 @@ OC.L10N.register( "Reasons to use Nextcloud in your organization" : "Razóns para usar Nextcloud na súa organización", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desenvolvido pola {communityopen}comunidade Nextcloud{linkclose}, o {githubopen}código fonte{linkclose} está licenciado baixo a {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Faga un Gústame na nosa páxina de Facebook", - "Follow us on Twitter" : "Síganos no Twitter", "Follow us on Mastodon" : "Síganos na Mastodon", "Check out our blog" : "Visite o noso blog ", "Subscribe to our newsletter" : "Subscríbase ao noso boletín", @@ -885,6 +884,7 @@ OC.L10N.register( "Show to logged in users only" : "Amosar só aos usuarios que accederon", "Nextcloud help resources" : "Recursos de axuda de Nextcloud", "SMTP Username" : "Nome de usuario SMTP", + "Follow us on Twitter" : "Síganos no Twitter", "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`." : "Para permitir que esta comprobación se execute, debe asegurarse de que o seu servidor web poida conectarse a si mesmo. Por tanto, debe ser quen de resolver e conectarse a polo menos un dos seus «trusted_domains» ou ao «overwrite.cli.url».", "Could not check for JavaScript support via any of your `trusted_domains` nor `overwrite.cli.url`. This may be the result of a server-side DNS mismatch or outbound firewall rule. Please check manually if your webserver serves `.mjs` files using the JavaScript MIME type." : "Non foi posíbel comprobar a compatibilidade de JavaScript a través de ningún dos seus «trusted_domains» nin «overwrite.cli.url». Isto pode ser o resultado dunha falta de coincidencia de DNS do servidor ou dunha regra da devasa de saída. Comprobe manualmente se o seu servidor web serve ficheiros «.mjs» usando o tipo MIME JavaScript.", "Active accounts" : "Contas activas", diff --git a/apps/settings/l10n/gl.json b/apps/settings/l10n/gl.json index cf836b1b3eece..95530fc87967c 100644 --- a/apps/settings/l10n/gl.json +++ b/apps/settings/l10n/gl.json @@ -794,7 +794,6 @@ "Reasons to use Nextcloud in your organization" : "Razóns para usar Nextcloud na súa organización", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desenvolvido pola {communityopen}comunidade Nextcloud{linkclose}, o {githubopen}código fonte{linkclose} está licenciado baixo a {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Faga un Gústame na nosa páxina de Facebook", - "Follow us on Twitter" : "Síganos no Twitter", "Follow us on Mastodon" : "Síganos na Mastodon", "Check out our blog" : "Visite o noso blog ", "Subscribe to our newsletter" : "Subscríbase ao noso boletín", @@ -883,6 +882,7 @@ "Show to logged in users only" : "Amosar só aos usuarios que accederon", "Nextcloud help resources" : "Recursos de axuda de Nextcloud", "SMTP Username" : "Nome de usuario SMTP", + "Follow us on Twitter" : "Síganos no Twitter", "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`." : "Para permitir que esta comprobación se execute, debe asegurarse de que o seu servidor web poida conectarse a si mesmo. Por tanto, debe ser quen de resolver e conectarse a polo menos un dos seus «trusted_domains» ou ao «overwrite.cli.url».", "Could not check for JavaScript support via any of your `trusted_domains` nor `overwrite.cli.url`. This may be the result of a server-side DNS mismatch or outbound firewall rule. Please check manually if your webserver serves `.mjs` files using the JavaScript MIME type." : "Non foi posíbel comprobar a compatibilidade de JavaScript a través de ningún dos seus «trusted_domains» nin «overwrite.cli.url». Isto pode ser o resultado dunha falta de coincidencia de DNS do servidor ou dunha regra da devasa de saída. Comprobe manualmente se o seu servidor web serve ficheiros «.mjs» usando o tipo MIME JavaScript.", "Active accounts" : "Contas activas", diff --git a/apps/settings/l10n/he.js b/apps/settings/l10n/he.js index 358100fb0d2b7..e0532dd8779b6 100644 --- a/apps/settings/l10n/he.js +++ b/apps/settings/l10n/he.js @@ -323,7 +323,6 @@ OC.L10N.register( "Reasons to use Nextcloud in your organization" : "סיבות להשתמש ב־Nextcloud בארגון שלך", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "בפיתוח על ידי {communityopen}קהילת Nextcloud{linkclose}, {githubopen}קוד המקור{linkclose} זמין ברישיון {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "לייק לעמוד הפייסבוק שלנו", - "Follow us on Twitter" : "לעקוב אחרינו בטוויטר", "Follow us on Mastodon" : "למעקב אחרינו ב־Mastodon", "Check out our blog" : "לעיין בבלוג שלנו", "Subscribe to our newsletter" : "הרשמה לרשימת הדיוור שלנו", @@ -359,6 +358,7 @@ OC.L10N.register( "by {author}\n{license}" : "מאת {author}\n{license}", "Active users" : "משתמשים פעילים", "Disabled users" : "משתמשים מושבתים", - "SMTP Username" : "שם משתמש SMTP " + "SMTP Username" : "שם משתמש SMTP ", + "Follow us on Twitter" : "לעקוב אחרינו בטוויטר" }, "nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;"); diff --git a/apps/settings/l10n/he.json b/apps/settings/l10n/he.json index 118c8601204c6..c33e340effbef 100644 --- a/apps/settings/l10n/he.json +++ b/apps/settings/l10n/he.json @@ -321,7 +321,6 @@ "Reasons to use Nextcloud in your organization" : "סיבות להשתמש ב־Nextcloud בארגון שלך", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "בפיתוח על ידי {communityopen}קהילת Nextcloud{linkclose}, {githubopen}קוד המקור{linkclose} זמין ברישיון {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "לייק לעמוד הפייסבוק שלנו", - "Follow us on Twitter" : "לעקוב אחרינו בטוויטר", "Follow us on Mastodon" : "למעקב אחרינו ב־Mastodon", "Check out our blog" : "לעיין בבלוג שלנו", "Subscribe to our newsletter" : "הרשמה לרשימת הדיוור שלנו", @@ -357,6 +356,7 @@ "by {author}\n{license}" : "מאת {author}\n{license}", "Active users" : "משתמשים פעילים", "Disabled users" : "משתמשים מושבתים", - "SMTP Username" : "שם משתמש SMTP " + "SMTP Username" : "שם משתמש SMTP ", + "Follow us on Twitter" : "לעקוב אחרינו בטוויטר" },"pluralForm" :"nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;" } \ No newline at end of file diff --git a/apps/settings/l10n/hr.js b/apps/settings/l10n/hr.js index 4b54451b8fc14..d67cd16a5e066 100644 --- a/apps/settings/l10n/hr.js +++ b/apps/settings/l10n/hr.js @@ -372,7 +372,6 @@ OC.L10N.register( "Reasons to use Nextcloud in your organization" : "Razlozi za uporabu Nextclouda u vašoj organizaciji", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "{githubopen}Izvorni kôd{linkclose} je razvila {communityopen}Nextcloudova zajednica korisnika{linkclose} i licenciran je sukladno {Licenseopen}AGPL-u{linkclose}.", "Like our Facebook page" : "Pratite našu Facebook stranicu", - "Follow us on Twitter" : "Pratite nas na Twitteru", "Follow us on Mastodon" : "Pratite nas na Mastodonu", "Check out our blog" : "Pogledajte naš blog", "Subscribe to our newsletter" : "Pretplatite se na naše obavijesti", @@ -414,6 +413,7 @@ OC.L10N.register( "Disabled users" : "Onemogućeni korisnici", "Not available as publishing user specific data to the lookup server is not allowed, contact your system administrator if you have any questions" : "Nije dostupno jer nije dopušteno objavljivanje korisničkih podataka na poslužitelju pretraživanja, obratite se administratoru sustava ako imate pitanja", "Show to logged in users only" : "Prikaži samo prijavljenim korisnicima", - "SMTP Username" : "Korisničko ime za SMTP" + "SMTP Username" : "Korisničko ime za SMTP", + "Follow us on Twitter" : "Pratite nas na Twitteru" }, "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/apps/settings/l10n/hr.json b/apps/settings/l10n/hr.json index 3b90bb03c9981..c6a42ab451b80 100644 --- a/apps/settings/l10n/hr.json +++ b/apps/settings/l10n/hr.json @@ -370,7 +370,6 @@ "Reasons to use Nextcloud in your organization" : "Razlozi za uporabu Nextclouda u vašoj organizaciji", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "{githubopen}Izvorni kôd{linkclose} je razvila {communityopen}Nextcloudova zajednica korisnika{linkclose} i licenciran je sukladno {Licenseopen}AGPL-u{linkclose}.", "Like our Facebook page" : "Pratite našu Facebook stranicu", - "Follow us on Twitter" : "Pratite nas na Twitteru", "Follow us on Mastodon" : "Pratite nas na Mastodonu", "Check out our blog" : "Pogledajte naš blog", "Subscribe to our newsletter" : "Pretplatite se na naše obavijesti", @@ -412,6 +411,7 @@ "Disabled users" : "Onemogućeni korisnici", "Not available as publishing user specific data to the lookup server is not allowed, contact your system administrator if you have any questions" : "Nije dostupno jer nije dopušteno objavljivanje korisničkih podataka na poslužitelju pretraživanja, obratite se administratoru sustava ako imate pitanja", "Show to logged in users only" : "Prikaži samo prijavljenim korisnicima", - "SMTP Username" : "Korisničko ime za SMTP" + "SMTP Username" : "Korisničko ime za SMTP", + "Follow us on Twitter" : "Pratite nas na Twitteru" },"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 diff --git a/apps/settings/l10n/hu.js b/apps/settings/l10n/hu.js index b4032a73833d0..c0b790bee3081 100644 --- a/apps/settings/l10n/hu.js +++ b/apps/settings/l10n/hu.js @@ -572,7 +572,6 @@ OC.L10N.register( "Reasons to use Nextcloud in your organization" : "Miért használjon Nextcloudot a szervezeténél", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Fejleszti a {communityopen}Nextcloud közösség{linkclose}, a {githubopen}forráskódra{linkclose} az {licenseopen}AGPL{linkclose} licenc vonatkozik.", "Like our Facebook page" : "Kedvelje a Facebook oldalunkat", - "Follow us on Twitter" : "Kövessen minket Twitteren", "Follow us on Mastodon" : "Kövessen minket a Mastodonon", "Check out our blog" : "Nézze meg a blogunkat", "Subscribe to our newsletter" : "Iratkozzon fel a hírlevelünkre", @@ -653,6 +652,7 @@ OC.L10N.register( "Show to logged in users only" : "Csak a bejelentkezett felhasználók számára látható", "Nextcloud help resources" : "Nextcloud súgóerőforrások", "SMTP Username" : "SMTP felhasználónév", + "Follow us on Twitter" : "Kövessen minket Twitteren", "Active accounts" : "Aktív fiókok" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/settings/l10n/hu.json b/apps/settings/l10n/hu.json index f83b73133b858..a69f14df0e192 100644 --- a/apps/settings/l10n/hu.json +++ b/apps/settings/l10n/hu.json @@ -570,7 +570,6 @@ "Reasons to use Nextcloud in your organization" : "Miért használjon Nextcloudot a szervezeténél", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Fejleszti a {communityopen}Nextcloud közösség{linkclose}, a {githubopen}forráskódra{linkclose} az {licenseopen}AGPL{linkclose} licenc vonatkozik.", "Like our Facebook page" : "Kedvelje a Facebook oldalunkat", - "Follow us on Twitter" : "Kövessen minket Twitteren", "Follow us on Mastodon" : "Kövessen minket a Mastodonon", "Check out our blog" : "Nézze meg a blogunkat", "Subscribe to our newsletter" : "Iratkozzon fel a hírlevelünkre", @@ -651,6 +650,7 @@ "Show to logged in users only" : "Csak a bejelentkezett felhasználók számára látható", "Nextcloud help resources" : "Nextcloud súgóerőforrások", "SMTP Username" : "SMTP felhasználónév", + "Follow us on Twitter" : "Kövessen minket Twitteren", "Active accounts" : "Aktív fiókok" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/settings/l10n/id.js b/apps/settings/l10n/id.js index 8a96fc4e4b1c3..6c422225306ba 100644 --- a/apps/settings/l10n/id.js +++ b/apps/settings/l10n/id.js @@ -315,7 +315,6 @@ OC.L10N.register( "Check the security of your Nextcloud over our security scan ↗." : "Cek keamanan Nextcloud Anda dengan pemindaian keamanan kami ↗.", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Dikembangkan oleh {commmunityopen}komunitas Nextcloud{linkclose}, {githubopen}sumber kode{linkclose} dilisensikan dibawah {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Sukai kami di halaman Facebook", - "Follow us on Twitter" : "Ikuti kami di Twitter", "Follow us on Mastodon" : "Ikuti kami di Mastodon", "Check out our blog" : "Cek blog kami", "Subscribe to our newsletter" : "Berlangganan surat berita kami", @@ -343,6 +342,7 @@ OC.L10N.register( "Show user backend" : "Tampilkan pengguna backend", "Active users" : "Pengguna aktif", "Disabled users" : "Nonaktifkan pengguna", - "SMTP Username" : "Nama pengguna SMTP" + "SMTP Username" : "Nama pengguna SMTP", + "Follow us on Twitter" : "Ikuti kami di Twitter" }, "nplurals=1; plural=0;"); diff --git a/apps/settings/l10n/id.json b/apps/settings/l10n/id.json index 3bbb0d248e90c..f1b6aebfd2af7 100644 --- a/apps/settings/l10n/id.json +++ b/apps/settings/l10n/id.json @@ -313,7 +313,6 @@ "Check the security of your Nextcloud over our security scan ↗." : "Cek keamanan Nextcloud Anda dengan pemindaian keamanan kami ↗.", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Dikembangkan oleh {commmunityopen}komunitas Nextcloud{linkclose}, {githubopen}sumber kode{linkclose} dilisensikan dibawah {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Sukai kami di halaman Facebook", - "Follow us on Twitter" : "Ikuti kami di Twitter", "Follow us on Mastodon" : "Ikuti kami di Mastodon", "Check out our blog" : "Cek blog kami", "Subscribe to our newsletter" : "Berlangganan surat berita kami", @@ -341,6 +340,7 @@ "Show user backend" : "Tampilkan pengguna backend", "Active users" : "Pengguna aktif", "Disabled users" : "Nonaktifkan pengguna", - "SMTP Username" : "Nama pengguna SMTP" + "SMTP Username" : "Nama pengguna SMTP", + "Follow us on Twitter" : "Ikuti kami di Twitter" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/settings/l10n/is.js b/apps/settings/l10n/is.js index cc8eb4b8c5c83..31fbfd09452fe 100644 --- a/apps/settings/l10n/is.js +++ b/apps/settings/l10n/is.js @@ -518,7 +518,6 @@ OC.L10N.register( "Reasons to use Nextcloud in your organization" : "Ástæður til að nota Nextcloud á vinnustaðnum þínum", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Þróað af {communityopen}Nextcloud samfélaginu{linkclose}, {githubopen}grunnkóðinn{linkclose} er gefinn út með {licenseopen}AGPL{linkclose} notkunarleyfinu.", "Like our Facebook page" : "Líkaðu við Facebook-síðuna okkar", - "Follow us on Twitter" : "Fylgstu með okkur á Twitter", "Follow us on Mastodon" : "Fylgstu með okkur á Mastodon", "Check out our blog" : "Kíktu á bloggið okkar", "Subscribe to our newsletter" : "Gerstu áskrifandi að fréttabréfinu okkar", @@ -592,6 +591,7 @@ OC.L10N.register( "Not available as publishing user specific data to the lookup server is not allowed, contact your system administrator if you have any questions" : "Er ekki tiltækt þar sem ekki er leyfilegt að miðla sértækum gögnum notenda yfir á uppflettingaþjóninn, hafðu samband við kerfisstjórann þinn ef þú ert með einhverjar spurningar", "Show to logged in users only" : "Birta einungis innskráðum notendum", "Nextcloud help resources" : "Aðstoðartilföng Nextcloud", - "SMTP Username" : "SMTP-notandanafn" + "SMTP Username" : "SMTP-notandanafn", + "Follow us on Twitter" : "Fylgstu með okkur á Twitter" }, "nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);"); diff --git a/apps/settings/l10n/is.json b/apps/settings/l10n/is.json index ac466c3baff02..fb3b2e1bb21fd 100644 --- a/apps/settings/l10n/is.json +++ b/apps/settings/l10n/is.json @@ -516,7 +516,6 @@ "Reasons to use Nextcloud in your organization" : "Ástæður til að nota Nextcloud á vinnustaðnum þínum", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Þróað af {communityopen}Nextcloud samfélaginu{linkclose}, {githubopen}grunnkóðinn{linkclose} er gefinn út með {licenseopen}AGPL{linkclose} notkunarleyfinu.", "Like our Facebook page" : "Líkaðu við Facebook-síðuna okkar", - "Follow us on Twitter" : "Fylgstu með okkur á Twitter", "Follow us on Mastodon" : "Fylgstu með okkur á Mastodon", "Check out our blog" : "Kíktu á bloggið okkar", "Subscribe to our newsletter" : "Gerstu áskrifandi að fréttabréfinu okkar", @@ -590,6 +589,7 @@ "Not available as publishing user specific data to the lookup server is not allowed, contact your system administrator if you have any questions" : "Er ekki tiltækt þar sem ekki er leyfilegt að miðla sértækum gögnum notenda yfir á uppflettingaþjóninn, hafðu samband við kerfisstjórann þinn ef þú ert með einhverjar spurningar", "Show to logged in users only" : "Birta einungis innskráðum notendum", "Nextcloud help resources" : "Aðstoðartilföng Nextcloud", - "SMTP Username" : "SMTP-notandanafn" + "SMTP Username" : "SMTP-notandanafn", + "Follow us on Twitter" : "Fylgstu með okkur á Twitter" },"pluralForm" :"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);" } \ No newline at end of file diff --git a/apps/settings/l10n/it.js b/apps/settings/l10n/it.js index 42890c0bda338..30d698f8333d6 100644 --- a/apps/settings/l10n/it.js +++ b/apps/settings/l10n/it.js @@ -614,7 +614,6 @@ OC.L10N.register( "Reasons to use Nextcloud in your organization" : "Motivi per utilizzare Nextcloud nella tua organizzazione", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Sviluppato dalla {communityopen}comunità di Nextcloud{linkclose}, il {githubopen}codice sorgente{linkclose} è rilasciato nei termini della licenza {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Mi piace sulla nostra pagina di Facebook!", - "Follow us on Twitter" : "Seguici su Twitter!", "Follow us on Mastodon" : "Seguici su Mastodon", "Check out our blog" : "Leggi il nostro blog!", "Subscribe to our newsletter" : "Iscriviti alla nostra newsletter", @@ -701,6 +700,7 @@ OC.L10N.register( "Show to logged in users only" : "Mostra solo a utenti registrati", "Nextcloud help resources" : "Risorse dell'aiuto per Nextcloud", "SMTP Username" : "Nome utente SMTP", + "Follow us on Twitter" : "Seguici su Twitter!", "Active accounts" : "Account attivi" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/settings/l10n/it.json b/apps/settings/l10n/it.json index 44b358062e16f..649331a96de56 100644 --- a/apps/settings/l10n/it.json +++ b/apps/settings/l10n/it.json @@ -612,7 +612,6 @@ "Reasons to use Nextcloud in your organization" : "Motivi per utilizzare Nextcloud nella tua organizzazione", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Sviluppato dalla {communityopen}comunità di Nextcloud{linkclose}, il {githubopen}codice sorgente{linkclose} è rilasciato nei termini della licenza {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Mi piace sulla nostra pagina di Facebook!", - "Follow us on Twitter" : "Seguici su Twitter!", "Follow us on Mastodon" : "Seguici su Mastodon", "Check out our blog" : "Leggi il nostro blog!", "Subscribe to our newsletter" : "Iscriviti alla nostra newsletter", @@ -699,6 +698,7 @@ "Show to logged in users only" : "Mostra solo a utenti registrati", "Nextcloud help resources" : "Risorse dell'aiuto per Nextcloud", "SMTP Username" : "Nome utente SMTP", + "Follow us on Twitter" : "Seguici su Twitter!", "Active accounts" : "Account attivi" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/apps/settings/l10n/ja.js b/apps/settings/l10n/ja.js index 3ae569e0b00b3..fabaca1bb168a 100644 --- a/apps/settings/l10n/ja.js +++ b/apps/settings/l10n/ja.js @@ -796,7 +796,6 @@ OC.L10N.register( "Reasons to use Nextcloud in your organization" : "あなたの組織でNextcloudを使うべきこれだけの理由", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "{communityopen} Nextcloudコミュニティ{linkclose}によって開発された{githubopen}ソースコード{linkclose}は、{licenseopen} AGPL {linkclose}で許諾されています。", "Like our Facebook page" : "私たちのFacebookのページをイイネ!", - "Follow us on Twitter" : "Twitter でフォロー!", "Follow us on Mastodon" : "Mastodonでフォロー", "Check out our blog" : "私たちのブログを見てね!", "Subscribe to our newsletter" : "ニュースレターを購読する!", @@ -885,6 +884,7 @@ OC.L10N.register( "Show to logged in users only" : "ログインしているユーザーだけに見せる", "Nextcloud help resources" : "Nextcloud ヘルプのリソース", "SMTP Username" : "SMTPユーザー名", + "Follow us on Twitter" : "Twitter でフォロー!", "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`." : "このチェックを実行させるには、ウェブサーバが自分自身に接続できることを確認する必要があります。したがって、少なくとも `trusted_domains` または `overwrite.cli.url` を解決して接続できなければなりません。", "Could not check for JavaScript support via any of your `trusted_domains` nor `overwrite.cli.url`. This may be the result of a server-side DNS mismatch or outbound firewall rule. Please check manually if your webserver serves `.mjs` files using the JavaScript MIME type." : "`trusted_domains` または `overwrite.cli.url` で JavaScript のサポートを確認できませんでした。これはサーバ側の DNS の不一致か、アウトバウンドファイアウォールルールの結果である可能性があります。お使いのウェブサーバーが JavaScript MIMEタイプを使用して `.mjs` ファイルを提供しているかどうかを手動で確認してください。", "Active accounts" : "アクティブなアカウント", diff --git a/apps/settings/l10n/ja.json b/apps/settings/l10n/ja.json index fd48a245838d8..26e821238a8e9 100644 --- a/apps/settings/l10n/ja.json +++ b/apps/settings/l10n/ja.json @@ -794,7 +794,6 @@ "Reasons to use Nextcloud in your organization" : "あなたの組織でNextcloudを使うべきこれだけの理由", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "{communityopen} Nextcloudコミュニティ{linkclose}によって開発された{githubopen}ソースコード{linkclose}は、{licenseopen} AGPL {linkclose}で許諾されています。", "Like our Facebook page" : "私たちのFacebookのページをイイネ!", - "Follow us on Twitter" : "Twitter でフォロー!", "Follow us on Mastodon" : "Mastodonでフォロー", "Check out our blog" : "私たちのブログを見てね!", "Subscribe to our newsletter" : "ニュースレターを購読する!", @@ -883,6 +882,7 @@ "Show to logged in users only" : "ログインしているユーザーだけに見せる", "Nextcloud help resources" : "Nextcloud ヘルプのリソース", "SMTP Username" : "SMTPユーザー名", + "Follow us on Twitter" : "Twitter でフォロー!", "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`." : "このチェックを実行させるには、ウェブサーバが自分自身に接続できることを確認する必要があります。したがって、少なくとも `trusted_domains` または `overwrite.cli.url` を解決して接続できなければなりません。", "Could not check for JavaScript support via any of your `trusted_domains` nor `overwrite.cli.url`. This may be the result of a server-side DNS mismatch or outbound firewall rule. Please check manually if your webserver serves `.mjs` files using the JavaScript MIME type." : "`trusted_domains` または `overwrite.cli.url` で JavaScript のサポートを確認できませんでした。これはサーバ側の DNS の不一致か、アウトバウンドファイアウォールルールの結果である可能性があります。お使いのウェブサーバーが JavaScript MIMEタイプを使用して `.mjs` ファイルを提供しているかどうかを手動で確認してください。", "Active accounts" : "アクティブなアカウント", diff --git a/apps/settings/l10n/ka.js b/apps/settings/l10n/ka.js index a73fee9de2f29..46938d11e4036 100644 --- a/apps/settings/l10n/ka.js +++ b/apps/settings/l10n/ka.js @@ -559,7 +559,6 @@ OC.L10N.register( "Reasons to use Nextcloud in your organization" : "Reasons to use Nextcloud in your organization", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Like our Facebook page", - "Follow us on Twitter" : "Follow us on Twitter", "Follow us on Mastodon" : "Follow us on Mastodon", "Check out our blog" : "Check out our blog", "Subscribe to our newsletter" : "Subscribe to our newsletter", @@ -644,6 +643,7 @@ OC.L10N.register( "Not available as publishing user specific data to the lookup server is not allowed, contact your system administrator if you have any questions" : "Not available as publishing user specific data to the lookup server is not allowed, contact your system administrator if you have any questions", "Show to logged in users only" : "Show to logged in users only", "Nextcloud help resources" : "Nextcloud help resources", - "SMTP Username" : "SMTP Username" + "SMTP Username" : "SMTP Username", + "Follow us on Twitter" : "Follow us on Twitter" }, "nplurals=2; plural=(n!=1);"); diff --git a/apps/settings/l10n/ka.json b/apps/settings/l10n/ka.json index 1b0b0218595cd..063bc809456dc 100644 --- a/apps/settings/l10n/ka.json +++ b/apps/settings/l10n/ka.json @@ -557,7 +557,6 @@ "Reasons to use Nextcloud in your organization" : "Reasons to use Nextcloud in your organization", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Like our Facebook page", - "Follow us on Twitter" : "Follow us on Twitter", "Follow us on Mastodon" : "Follow us on Mastodon", "Check out our blog" : "Check out our blog", "Subscribe to our newsletter" : "Subscribe to our newsletter", @@ -642,6 +641,7 @@ "Not available as publishing user specific data to the lookup server is not allowed, contact your system administrator if you have any questions" : "Not available as publishing user specific data to the lookup server is not allowed, contact your system administrator if you have any questions", "Show to logged in users only" : "Show to logged in users only", "Nextcloud help resources" : "Nextcloud help resources", - "SMTP Username" : "SMTP Username" + "SMTP Username" : "SMTP Username", + "Follow us on Twitter" : "Follow us on Twitter" },"pluralForm" :"nplurals=2; plural=(n!=1);" } \ No newline at end of file diff --git a/apps/settings/l10n/ka_GE.js b/apps/settings/l10n/ka_GE.js index 629d4c57da254..d48acb82f266c 100644 --- a/apps/settings/l10n/ka_GE.js +++ b/apps/settings/l10n/ka_GE.js @@ -217,7 +217,6 @@ OC.L10N.register( "All checks passed." : "ყველა შემოწმებამ ჩაიარა დადებითად.", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "განავითარა {communityopen}Nextcloud საზოგადოებამ{linkclose}, {githubopen}კოდი{linkclose} is ლიცენზირებულია {licenseopen}AGPL ლიცენზიით{linkclose}.", "Like our Facebook page" : "მოიწონეთ ჩვენი Facebook გვერდი", - "Follow us on Twitter" : "გამოგვყევით Twitter-ზე", "Check out our blog" : "იხილეთ ჩვენი ბლოგი", "Subscribe to our newsletter" : "გამოიწერეთ ჩვენი სიახლეები", "No user supplied" : "მომხმარებელი არ იქნა მოწოდებული", @@ -231,6 +230,7 @@ OC.L10N.register( "User backend" : "მომხმარებელის ბექენდი", "Show user backend" : "მომხმარებლის ბექენდის ჩვენება", "Active users" : "აქტიური მომხმარებლები", - "SMTP Username" : "SMTP მოხმარებლის სახელი" + "SMTP Username" : "SMTP მოხმარებლის სახელი", + "Follow us on Twitter" : "გამოგვყევით Twitter-ზე" }, "nplurals=2; plural=(n!=1);"); diff --git a/apps/settings/l10n/ka_GE.json b/apps/settings/l10n/ka_GE.json index 31272bb8a835f..bf389c36179e0 100644 --- a/apps/settings/l10n/ka_GE.json +++ b/apps/settings/l10n/ka_GE.json @@ -215,7 +215,6 @@ "All checks passed." : "ყველა შემოწმებამ ჩაიარა დადებითად.", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "განავითარა {communityopen}Nextcloud საზოგადოებამ{linkclose}, {githubopen}კოდი{linkclose} is ლიცენზირებულია {licenseopen}AGPL ლიცენზიით{linkclose}.", "Like our Facebook page" : "მოიწონეთ ჩვენი Facebook გვერდი", - "Follow us on Twitter" : "გამოგვყევით Twitter-ზე", "Check out our blog" : "იხილეთ ჩვენი ბლოგი", "Subscribe to our newsletter" : "გამოიწერეთ ჩვენი სიახლეები", "No user supplied" : "მომხმარებელი არ იქნა მოწოდებული", @@ -229,6 +228,7 @@ "User backend" : "მომხმარებელის ბექენდი", "Show user backend" : "მომხმარებლის ბექენდის ჩვენება", "Active users" : "აქტიური მომხმარებლები", - "SMTP Username" : "SMTP მოხმარებლის სახელი" + "SMTP Username" : "SMTP მოხმარებლის სახელი", + "Follow us on Twitter" : "გამოგვყევით Twitter-ზე" },"pluralForm" :"nplurals=2; plural=(n!=1);" } \ No newline at end of file diff --git a/apps/settings/l10n/ko.js b/apps/settings/l10n/ko.js index ce58858edad7f..f3d10d8881712 100644 --- a/apps/settings/l10n/ko.js +++ b/apps/settings/l10n/ko.js @@ -663,7 +663,6 @@ OC.L10N.register( "Reasons to use Nextcloud in your organization" : "당신의 조직에서 Nextcloud를 사용해야 할 이유", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "{communityopen}Nextcloud 커뮤니티{linkclose}에서 개발, {githubopen}소스 코드{linkclose}는 {licenseopen}AGPL{linkclose} 라이선스를 따릅니다.", "Like our Facebook page" : "Facebook 페이지에서 좋아요 누르기", - "Follow us on Twitter" : "트위터에서 팔로하기", "Follow us on Mastodon" : "Mastodon에서 팔로우하기", "Check out our blog" : "블로그 확인하기", "Subscribe to our newsletter" : "뉴스레터 구독하기", @@ -750,6 +749,7 @@ OC.L10N.register( "Show to logged in users only" : "로그인된 사용자에게 공개", "Nextcloud help resources" : "Nextcloud 도움말 자원", "SMTP Username" : "SMTP 사용자 이름", + "Follow us on Twitter" : "트위터에서 팔로하기", "Active accounts" : "활성화된 계정" }, "nplurals=1; plural=0;"); diff --git a/apps/settings/l10n/ko.json b/apps/settings/l10n/ko.json index 30fa0b3b13c81..27f69d9d16038 100644 --- a/apps/settings/l10n/ko.json +++ b/apps/settings/l10n/ko.json @@ -661,7 +661,6 @@ "Reasons to use Nextcloud in your organization" : "당신의 조직에서 Nextcloud를 사용해야 할 이유", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "{communityopen}Nextcloud 커뮤니티{linkclose}에서 개발, {githubopen}소스 코드{linkclose}는 {licenseopen}AGPL{linkclose} 라이선스를 따릅니다.", "Like our Facebook page" : "Facebook 페이지에서 좋아요 누르기", - "Follow us on Twitter" : "트위터에서 팔로하기", "Follow us on Mastodon" : "Mastodon에서 팔로우하기", "Check out our blog" : "블로그 확인하기", "Subscribe to our newsletter" : "뉴스레터 구독하기", @@ -748,6 +747,7 @@ "Show to logged in users only" : "로그인된 사용자에게 공개", "Nextcloud help resources" : "Nextcloud 도움말 자원", "SMTP Username" : "SMTP 사용자 이름", + "Follow us on Twitter" : "트위터에서 팔로하기", "Active accounts" : "활성화된 계정" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/settings/l10n/lt_LT.js b/apps/settings/l10n/lt_LT.js index 75d46bcae6325..c7a99df19b4f0 100644 --- a/apps/settings/l10n/lt_LT.js +++ b/apps/settings/l10n/lt_LT.js @@ -389,7 +389,6 @@ OC.L10N.register( "Reasons to use Nextcloud in your organization" : "Priežastys, kodėl turėtumėte naudoti Nextcloud savo organizacijoje", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Sukurta {communityopen}Nextcloud bendruomenės{linkclose}, {githubopen}pirminis kodas{linkclose} yra licencijuotas pagal {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Spauskite „Patinka“ mūsų „Facebook“ puslapyje", - "Follow us on Twitter" : "Sekite mus Twitter", "Follow us on Mastodon" : "Sekite mus Mastodon", "Check out our blog" : "Peržvelkite mūsų tinklaraštį", "Subscribe to our newsletter" : "Prenumeruokite mūsų naujienlaiškį", @@ -433,6 +432,7 @@ OC.L10N.register( "Disabled users" : "Išjungti naudotojai", "Not available as publishing user specific data to the lookup server is not allowed, contact your system administrator if you have any questions" : "Neprieinama, nes su naudotoju susijusios informacijos paskelbimas į paieškos serverį yra neleidžiamas. Jei turite klausimų, susisiekite su savo sistemos administratoriumi", "Show to logged in users only" : "Rodyti tik prisijungusiems naudotojams", - "SMTP Username" : "SMTP naudotojo vardas" + "SMTP Username" : "SMTP naudotojo vardas", + "Follow us on Twitter" : "Sekite mus Twitter" }, "nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);"); diff --git a/apps/settings/l10n/lt_LT.json b/apps/settings/l10n/lt_LT.json index a10f176041b12..d391e27230926 100644 --- a/apps/settings/l10n/lt_LT.json +++ b/apps/settings/l10n/lt_LT.json @@ -387,7 +387,6 @@ "Reasons to use Nextcloud in your organization" : "Priežastys, kodėl turėtumėte naudoti Nextcloud savo organizacijoje", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Sukurta {communityopen}Nextcloud bendruomenės{linkclose}, {githubopen}pirminis kodas{linkclose} yra licencijuotas pagal {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Spauskite „Patinka“ mūsų „Facebook“ puslapyje", - "Follow us on Twitter" : "Sekite mus Twitter", "Follow us on Mastodon" : "Sekite mus Mastodon", "Check out our blog" : "Peržvelkite mūsų tinklaraštį", "Subscribe to our newsletter" : "Prenumeruokite mūsų naujienlaiškį", @@ -431,6 +430,7 @@ "Disabled users" : "Išjungti naudotojai", "Not available as publishing user specific data to the lookup server is not allowed, contact your system administrator if you have any questions" : "Neprieinama, nes su naudotoju susijusios informacijos paskelbimas į paieškos serverį yra neleidžiamas. Jei turite klausimų, susisiekite su savo sistemos administratoriumi", "Show to logged in users only" : "Rodyti tik prisijungusiems naudotojams", - "SMTP Username" : "SMTP naudotojo vardas" + "SMTP Username" : "SMTP naudotojo vardas", + "Follow us on Twitter" : "Sekite mus Twitter" },"pluralForm" :"nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);" } \ No newline at end of file diff --git a/apps/settings/l10n/mk.js b/apps/settings/l10n/mk.js index dd1e32d4e23da..02ff5f12053dd 100644 --- a/apps/settings/l10n/mk.js +++ b/apps/settings/l10n/mk.js @@ -445,7 +445,6 @@ OC.L10N.register( "Reasons to use Nextcloud in your organization" : "Причини зошто да го користите Nextcloud во вашата организација", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Развиена од {communityopen}Nextcloud заедницата{linkclose}, {githubopen}изворениот код{linkclose} е лиценциран според {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Лајкни ја нашата Facebook страна", - "Follow us on Twitter" : "Следете не на Twitter", "Follow us on Mastodon" : "Следете не на Mastodon", "Check out our blog" : "Проверете го нашиот блог", "Subscribe to our newsletter" : "Претплатете се на нашиот билтен", @@ -513,6 +512,7 @@ OC.L10N.register( "Disabled users" : "Оневозможени корисници", "Not available as publishing user specific data to the lookup server is not allowed, contact your system administrator if you have any questions" : "Не е достапно бидејќи не е дозволено објавување специфични податоци за корисникот на серверот за пребарување, контактирајте со вашиот системски администратор ако имате какви било прашања", "Show to logged in users only" : "Прикажи само на корисници", - "SMTP Username" : "SMTP корисничко име" + "SMTP Username" : "SMTP корисничко име", + "Follow us on Twitter" : "Следете не на Twitter" }, "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"); diff --git a/apps/settings/l10n/mk.json b/apps/settings/l10n/mk.json index ac8f2d8b74d50..37e8b8d6e029e 100644 --- a/apps/settings/l10n/mk.json +++ b/apps/settings/l10n/mk.json @@ -443,7 +443,6 @@ "Reasons to use Nextcloud in your organization" : "Причини зошто да го користите Nextcloud во вашата организација", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Развиена од {communityopen}Nextcloud заедницата{linkclose}, {githubopen}изворениот код{linkclose} е лиценциран според {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Лајкни ја нашата Facebook страна", - "Follow us on Twitter" : "Следете не на Twitter", "Follow us on Mastodon" : "Следете не на Mastodon", "Check out our blog" : "Проверете го нашиот блог", "Subscribe to our newsletter" : "Претплатете се на нашиот билтен", @@ -511,6 +510,7 @@ "Disabled users" : "Оневозможени корисници", "Not available as publishing user specific data to the lookup server is not allowed, contact your system administrator if you have any questions" : "Не е достапно бидејќи не е дозволено објавување специфични податоци за корисникот на серверот за пребарување, контактирајте со вашиот системски администратор ако имате какви било прашања", "Show to logged in users only" : "Прикажи само на корисници", - "SMTP Username" : "SMTP корисничко име" + "SMTP Username" : "SMTP корисничко име", + "Follow us on Twitter" : "Следете не на Twitter" },"pluralForm" :"nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;" } \ No newline at end of file diff --git a/apps/settings/l10n/nb.js b/apps/settings/l10n/nb.js index a212fbd3bcf17..138e08c6fefab 100644 --- a/apps/settings/l10n/nb.js +++ b/apps/settings/l10n/nb.js @@ -796,7 +796,6 @@ OC.L10N.register( "Reasons to use Nextcloud in your organization" : "Grunner til å bruke Nextcloud i organisasjonen din", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Utviklet av {communityopen}Nextcloud-miljøet{linkclose}, {githubopen}kildekoden{linkclose} er lisensiert under {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Lik vår Facebook-side", - "Follow us on Twitter" : "Følg oss på Twitter", "Follow us on Mastodon" : "Følg oss på Mastadon", "Check out our blog" : "Sjekk ut bloggen vår", "Subscribe to our newsletter" : "Abonner på vårt nyhetsbrev", @@ -885,6 +884,7 @@ OC.L10N.register( "Show to logged in users only" : "Vis kun for påloggede brukere", "Nextcloud help resources" : "Hjelperessurser for Nextcloud", "SMTP Username" : "SMTP-brukernavn", + "Follow us on Twitter" : "Følg oss på Twitter", "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`." : "For å la denne kontrollen kjøre, må du sørge for at webserveren din kan koble til seg selv. Derfor må den kunne løse og koble til minst en sin 'trusted_domains' eller 'overwrite.cli.url'.", "Could not check for JavaScript support via any of your `trusted_domains` nor `overwrite.cli.url`. This may be the result of a server-side DNS mismatch or outbound firewall rule. Please check manually if your webserver serves `.mjs` files using the JavaScript MIME type." : "Kunne ikke se etter JavaScript-støtte via noen av dine 'trusted_domains' eller 'overwrite.cli.url'. Dette kan være et resultat av DNS-avvik på serversiden eller en regel for utgående brannmur. Kontroller manuelt om webserveren din tjener .mjs-filer ved hjelp av JavaScript MIME-typen.", "Active accounts" : "Aktive kontoer", diff --git a/apps/settings/l10n/nb.json b/apps/settings/l10n/nb.json index 56dfe2a337e47..5e72ec4e9b1f6 100644 --- a/apps/settings/l10n/nb.json +++ b/apps/settings/l10n/nb.json @@ -794,7 +794,6 @@ "Reasons to use Nextcloud in your organization" : "Grunner til å bruke Nextcloud i organisasjonen din", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Utviklet av {communityopen}Nextcloud-miljøet{linkclose}, {githubopen}kildekoden{linkclose} er lisensiert under {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Lik vår Facebook-side", - "Follow us on Twitter" : "Følg oss på Twitter", "Follow us on Mastodon" : "Følg oss på Mastadon", "Check out our blog" : "Sjekk ut bloggen vår", "Subscribe to our newsletter" : "Abonner på vårt nyhetsbrev", @@ -883,6 +882,7 @@ "Show to logged in users only" : "Vis kun for påloggede brukere", "Nextcloud help resources" : "Hjelperessurser for Nextcloud", "SMTP Username" : "SMTP-brukernavn", + "Follow us on Twitter" : "Følg oss på Twitter", "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`." : "For å la denne kontrollen kjøre, må du sørge for at webserveren din kan koble til seg selv. Derfor må den kunne løse og koble til minst en sin 'trusted_domains' eller 'overwrite.cli.url'.", "Could not check for JavaScript support via any of your `trusted_domains` nor `overwrite.cli.url`. This may be the result of a server-side DNS mismatch or outbound firewall rule. Please check manually if your webserver serves `.mjs` files using the JavaScript MIME type." : "Kunne ikke se etter JavaScript-støtte via noen av dine 'trusted_domains' eller 'overwrite.cli.url'. Dette kan være et resultat av DNS-avvik på serversiden eller en regel for utgående brannmur. Kontroller manuelt om webserveren din tjener .mjs-filer ved hjelp av JavaScript MIME-typen.", "Active accounts" : "Aktive kontoer", diff --git a/apps/settings/l10n/nl.js b/apps/settings/l10n/nl.js index d280f0cfdd66f..3104736a93e0f 100644 --- a/apps/settings/l10n/nl.js +++ b/apps/settings/l10n/nl.js @@ -428,7 +428,6 @@ OC.L10N.register( "Reasons to use Nextcloud in your organization" : "Redenen om Nextcloud te gebruiken in jouw organisatie", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Ontwikkeld door de {communityopen}Nextcloud community{linkclose}, de {githubopen}broncode{linkclose} is gelicenseerd onder de {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Vind onze Facebook pagina leuk", - "Follow us on Twitter" : "Volg ons op Twitter", "Follow us on Mastodon" : "Volg ons op Mastodon", "Check out our blog" : "Lees ons blog", "Subscribe to our newsletter" : "Abonneer jezelf op onze nieuwsbrief", @@ -472,6 +471,7 @@ OC.L10N.register( "Disabled users" : "Uitgeschakelde gebruikers", "Not available as publishing user specific data to the lookup server is not allowed, contact your system administrator if you have any questions" : "Niet beschikbaar omdat het publiceren van gebruikersdata aan de lookup server niet toegestaan is, neem contact op met je beheerder als je vragen hebt", "Show to logged in users only" : "Laat alleen zien aan ingelogde gebruikers", - "SMTP Username" : "SMTP gebruikersnaam" + "SMTP Username" : "SMTP gebruikersnaam", + "Follow us on Twitter" : "Volg ons op Twitter" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/settings/l10n/nl.json b/apps/settings/l10n/nl.json index 651dd6e5a406d..3ad639ea43e81 100644 --- a/apps/settings/l10n/nl.json +++ b/apps/settings/l10n/nl.json @@ -426,7 +426,6 @@ "Reasons to use Nextcloud in your organization" : "Redenen om Nextcloud te gebruiken in jouw organisatie", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Ontwikkeld door de {communityopen}Nextcloud community{linkclose}, de {githubopen}broncode{linkclose} is gelicenseerd onder de {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Vind onze Facebook pagina leuk", - "Follow us on Twitter" : "Volg ons op Twitter", "Follow us on Mastodon" : "Volg ons op Mastodon", "Check out our blog" : "Lees ons blog", "Subscribe to our newsletter" : "Abonneer jezelf op onze nieuwsbrief", @@ -470,6 +469,7 @@ "Disabled users" : "Uitgeschakelde gebruikers", "Not available as publishing user specific data to the lookup server is not allowed, contact your system administrator if you have any questions" : "Niet beschikbaar omdat het publiceren van gebruikersdata aan de lookup server niet toegestaan is, neem contact op met je beheerder als je vragen hebt", "Show to logged in users only" : "Laat alleen zien aan ingelogde gebruikers", - "SMTP Username" : "SMTP gebruikersnaam" + "SMTP Username" : "SMTP gebruikersnaam", + "Follow us on Twitter" : "Volg ons op Twitter" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/settings/l10n/oc.js b/apps/settings/l10n/oc.js index 0beb009cf2f8d..d4690d08425b1 100644 --- a/apps/settings/l10n/oc.js +++ b/apps/settings/l10n/oc.js @@ -218,7 +218,6 @@ OC.L10N.register( "Save" : "Salvar", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desvolopat per la {communityopen}comunautat Nextcloud{linkclose}, lo {githubopen}còdi font{linkclose} es jos licéncia {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Aimar nòstra pagina Facebook", - "Follow us on Twitter" : "Nos seguir sus Twitter", "Follow us on Mastodon" : "Nos seguir sus Mastodon", "Check out our blog" : "Donar un còp d’uèlh a nòstre blòg", "Subscribe to our newsletter" : "S’abonar a l’infoletra", @@ -239,6 +238,7 @@ OC.L10N.register( "by {author}\n{license}" : "per {author}\n{license}", "Active users" : "Utilizaires actius", "Disabled users" : "Utilizaires desactivats", - "SMTP Username" : "Utilizaire SMTP" + "SMTP Username" : "Utilizaire SMTP", + "Follow us on Twitter" : "Nos seguir sus Twitter" }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/settings/l10n/oc.json b/apps/settings/l10n/oc.json index 07c6dbdf2c93a..81f2d3f370320 100644 --- a/apps/settings/l10n/oc.json +++ b/apps/settings/l10n/oc.json @@ -216,7 +216,6 @@ "Save" : "Salvar", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desvolopat per la {communityopen}comunautat Nextcloud{linkclose}, lo {githubopen}còdi font{linkclose} es jos licéncia {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Aimar nòstra pagina Facebook", - "Follow us on Twitter" : "Nos seguir sus Twitter", "Follow us on Mastodon" : "Nos seguir sus Mastodon", "Check out our blog" : "Donar un còp d’uèlh a nòstre blòg", "Subscribe to our newsletter" : "S’abonar a l’infoletra", @@ -237,6 +236,7 @@ "by {author}\n{license}" : "per {author}\n{license}", "Active users" : "Utilizaires actius", "Disabled users" : "Utilizaires desactivats", - "SMTP Username" : "Utilizaire SMTP" + "SMTP Username" : "Utilizaire SMTP", + "Follow us on Twitter" : "Nos seguir sus Twitter" },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/apps/settings/l10n/pl.js b/apps/settings/l10n/pl.js index a04ecf05a8980..a0999f4c0c426 100644 --- a/apps/settings/l10n/pl.js +++ b/apps/settings/l10n/pl.js @@ -642,7 +642,6 @@ OC.L10N.register( "Reasons to use Nextcloud in your organization" : "Dlaczego warto korzystać z Nextcloud w Twojej organizacji", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Opracowane przez {communityopen}społeczność Nextcloud{linkclose}, {githubopen}kod źródłowy{linkclose} jest objęty licencją {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Polub nas na Facebook'u", - "Follow us on Twitter" : "Bądź z nami na Twitterze", "Follow us on Mastodon" : "Bądź z nami na Mastodonie", "Check out our blog" : "Sprawdź nasz blog", "Subscribe to our newsletter" : "Subskrybuj nasz newsletter", @@ -727,6 +726,7 @@ OC.L10N.register( "Show to logged in users only" : "Pokaż tylko zalogowanym użytkownikom", "Nextcloud help resources" : "Zasoby pomocy Nextcloud", "SMTP Username" : "Użytkownik SMTP", + "Follow us on Twitter" : "Bądź z nami na Twitterze", "Active accounts" : "Aktywne konta" }, "nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);"); diff --git a/apps/settings/l10n/pl.json b/apps/settings/l10n/pl.json index 4d8666aaeb5e8..e791265900b9d 100644 --- a/apps/settings/l10n/pl.json +++ b/apps/settings/l10n/pl.json @@ -640,7 +640,6 @@ "Reasons to use Nextcloud in your organization" : "Dlaczego warto korzystać z Nextcloud w Twojej organizacji", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Opracowane przez {communityopen}społeczność Nextcloud{linkclose}, {githubopen}kod źródłowy{linkclose} jest objęty licencją {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Polub nas na Facebook'u", - "Follow us on Twitter" : "Bądź z nami na Twitterze", "Follow us on Mastodon" : "Bądź z nami na Mastodonie", "Check out our blog" : "Sprawdź nasz blog", "Subscribe to our newsletter" : "Subskrybuj nasz newsletter", @@ -725,6 +724,7 @@ "Show to logged in users only" : "Pokaż tylko zalogowanym użytkownikom", "Nextcloud help resources" : "Zasoby pomocy Nextcloud", "SMTP Username" : "Użytkownik SMTP", + "Follow us on Twitter" : "Bądź z nami na Twitterze", "Active accounts" : "Aktywne konta" },"pluralForm" :"nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);" } \ No newline at end of file diff --git a/apps/settings/l10n/pt_BR.js b/apps/settings/l10n/pt_BR.js index 737f05d7f3e69..0e91698bbfef7 100644 --- a/apps/settings/l10n/pt_BR.js +++ b/apps/settings/l10n/pt_BR.js @@ -796,7 +796,6 @@ OC.L10N.register( "Reasons to use Nextcloud in your organization" : "Motivos para usar o Nextcloud na sua empresa.", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desenvolvido pela {communityopen}comunidade Nextcloud{linkclose}. O {githubopen}código-fonte{linkclose} é licenciado sob a {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Curta nossa página no Facebook", - "Follow us on Twitter" : "Siga-nos no Twitter", "Follow us on Mastodon" : "Siga-nos no Mastodon", "Check out our blog" : "Confira nosso blog", "Subscribe to our newsletter" : "Assine nosso boletim informativo", @@ -885,6 +884,7 @@ OC.L10N.register( "Show to logged in users only" : "Mostrar apenas para usuários conectados", "Nextcloud help resources" : "Recursos de ajuda Nextcloud", "SMTP Username" : "Nome do Usuário SMTP", + "Follow us on Twitter" : "Siga-nos no Twitter", "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`." : "Para permitir que esta verificação seja executada, você deve garantir que seu servidor web possa se conectar a si mesmo. Portanto, ele deve ser capaz de resolver e se conectar a pelo menos um de seus `trusted_domains` ou ao `overwrite.cli.url`.", "Could not check for JavaScript support via any of your `trusted_domains` nor `overwrite.cli.url`. This may be the result of a server-side DNS mismatch or outbound firewall rule. Please check manually if your webserver serves `.mjs` files using the JavaScript MIME type." : "Não foi possível verificar o suporte a JavaScript por meio de nenhum dos seus `trusted_domains` nem `overwrite.cli.url`. Isso pode ser o resultado de uma incompatibilidade de DNS no servidor ou de uma regra de firewall de saída. Verifique manualmente se o seu servidor web serve arquivos `.mjs` usando o tipo JavaScript MIME.", "Active accounts" : "Contas ativas", diff --git a/apps/settings/l10n/pt_BR.json b/apps/settings/l10n/pt_BR.json index d32511ea634e1..ba9eb3997bfee 100644 --- a/apps/settings/l10n/pt_BR.json +++ b/apps/settings/l10n/pt_BR.json @@ -794,7 +794,6 @@ "Reasons to use Nextcloud in your organization" : "Motivos para usar o Nextcloud na sua empresa.", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desenvolvido pela {communityopen}comunidade Nextcloud{linkclose}. O {githubopen}código-fonte{linkclose} é licenciado sob a {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Curta nossa página no Facebook", - "Follow us on Twitter" : "Siga-nos no Twitter", "Follow us on Mastodon" : "Siga-nos no Mastodon", "Check out our blog" : "Confira nosso blog", "Subscribe to our newsletter" : "Assine nosso boletim informativo", @@ -883,6 +882,7 @@ "Show to logged in users only" : "Mostrar apenas para usuários conectados", "Nextcloud help resources" : "Recursos de ajuda Nextcloud", "SMTP Username" : "Nome do Usuário SMTP", + "Follow us on Twitter" : "Siga-nos no Twitter", "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`." : "Para permitir que esta verificação seja executada, você deve garantir que seu servidor web possa se conectar a si mesmo. Portanto, ele deve ser capaz de resolver e se conectar a pelo menos um de seus `trusted_domains` ou ao `overwrite.cli.url`.", "Could not check for JavaScript support via any of your `trusted_domains` nor `overwrite.cli.url`. This may be the result of a server-side DNS mismatch or outbound firewall rule. Please check manually if your webserver serves `.mjs` files using the JavaScript MIME type." : "Não foi possível verificar o suporte a JavaScript por meio de nenhum dos seus `trusted_domains` nem `overwrite.cli.url`. Isso pode ser o resultado de uma incompatibilidade de DNS no servidor ou de uma regra de firewall de saída. Verifique manualmente se o seu servidor web serve arquivos `.mjs` usando o tipo JavaScript MIME.", "Active accounts" : "Contas ativas", diff --git a/apps/settings/l10n/pt_PT.js b/apps/settings/l10n/pt_PT.js index 81feefb842bc5..810413b1fb389 100644 --- a/apps/settings/l10n/pt_PT.js +++ b/apps/settings/l10n/pt_PT.js @@ -269,7 +269,6 @@ OC.L10N.register( "All checks passed." : "Todas as verificações passaram.", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desenvolvido pela [communityopen]Comunidade Nextcloud[linkclose]. O [githubcode]código fonte[/linkclose] está licenciado sob [licenseopen]AGPL[linkclose].", "Like our Facebook page" : "Deixe um Gosto na nossa página do Facebook", - "Follow us on Twitter" : "Siga-nos no Twitter", "Check out our blog" : "Veja o nosso blog", "Subscribe to our newsletter" : "Subscreva as nossas notícias", "This community release of Nextcloud is unsupported and instant notifications are unavailable." : "Este lançamento comunitário do Nextcloud não é compatível e as notificações instantâneas não estão disponíveis.", @@ -283,6 +282,7 @@ OC.L10N.register( "User backend" : "Backend do utilizador", "Show user backend" : "Mostrar interface do utilizador", "Active users" : "Utilizadores activos", - "SMTP Username" : "Nome de utilizador SMTP" + "SMTP Username" : "Nome de utilizador SMTP", + "Follow us on Twitter" : "Siga-nos no Twitter" }, "nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/settings/l10n/pt_PT.json b/apps/settings/l10n/pt_PT.json index 7a259dc5b47ee..3a0ceabcb9c7e 100644 --- a/apps/settings/l10n/pt_PT.json +++ b/apps/settings/l10n/pt_PT.json @@ -267,7 +267,6 @@ "All checks passed." : "Todas as verificações passaram.", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Desenvolvido pela [communityopen]Comunidade Nextcloud[linkclose]. O [githubcode]código fonte[/linkclose] está licenciado sob [licenseopen]AGPL[linkclose].", "Like our Facebook page" : "Deixe um Gosto na nossa página do Facebook", - "Follow us on Twitter" : "Siga-nos no Twitter", "Check out our blog" : "Veja o nosso blog", "Subscribe to our newsletter" : "Subscreva as nossas notícias", "This community release of Nextcloud is unsupported and instant notifications are unavailable." : "Este lançamento comunitário do Nextcloud não é compatível e as notificações instantâneas não estão disponíveis.", @@ -281,6 +280,7 @@ "User backend" : "Backend do utilizador", "Show user backend" : "Mostrar interface do utilizador", "Active users" : "Utilizadores activos", - "SMTP Username" : "Nome de utilizador SMTP" + "SMTP Username" : "Nome de utilizador SMTP", + "Follow us on Twitter" : "Siga-nos no Twitter" },"pluralForm" :"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/apps/settings/l10n/ru.js b/apps/settings/l10n/ru.js index 6e41c3b0fc058..3214b2c816cd4 100644 --- a/apps/settings/l10n/ru.js +++ b/apps/settings/l10n/ru.js @@ -785,7 +785,6 @@ OC.L10N.register( "Reasons to use Nextcloud in your organization" : "Причины использовать Nextcloud в организации", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Разработано {communityopen}сообществом Nextcloud{linkclose}, {githubopen}исходный код{linkclose} лицензируется в соответствии с {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Посмотрите нашу страницу на Facebook", - "Follow us on Twitter" : "Следите за нашими новостями в Twitter", "Follow us on Mastodon" : "Следите за нашими новостями в Mastodon", "Check out our blog" : "Просмотрите наш блог", "Subscribe to our newsletter" : "Подписывайтесь на нашу новостную рассылку", @@ -874,6 +873,7 @@ OC.L10N.register( "Show to logged in users only" : "Только для вошедших в систему", "Nextcloud help resources" : "Справочные ресурсы Nextcloud", "SMTP Username" : "Пользователь SMTP", + "Follow us on Twitter" : "Следите за нашими новостями в Twitter", "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`." : "Чтобы разрешить выполнение этой проверки, вы должны убедиться, что ваш веб-сервер может подключаться к самому себе. Для этого он должен иметь возможность разрешать и подключаться по крайней мере к одному из своих `trusted_domains\" или \"overwrite.cli.url\".", "Could not check for JavaScript support via any of your `trusted_domains` nor `overwrite.cli.url`. This may be the result of a server-side DNS mismatch or outbound firewall rule. Please check manually if your webserver serves `.mjs` files using the JavaScript MIME type." : "Не удалось проверить поддержку JavaScript ни в одном из ваших `trusted_domains`, ни в `overwrite.cli.url`. Это может быть результатом несоответствия DNS на стороне сервера или правила исходящего брандмауэра. Пожалуйста, проверьте вручную, обслуживает ли ваш веб-сервер файлы `.mjs`, используя MIME-тип JavaScript.", "Active accounts" : "Активные учётные записи", diff --git a/apps/settings/l10n/ru.json b/apps/settings/l10n/ru.json index 101a537de3221..aa70f448a26fb 100644 --- a/apps/settings/l10n/ru.json +++ b/apps/settings/l10n/ru.json @@ -783,7 +783,6 @@ "Reasons to use Nextcloud in your organization" : "Причины использовать Nextcloud в организации", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Разработано {communityopen}сообществом Nextcloud{linkclose}, {githubopen}исходный код{linkclose} лицензируется в соответствии с {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Посмотрите нашу страницу на Facebook", - "Follow us on Twitter" : "Следите за нашими новостями в Twitter", "Follow us on Mastodon" : "Следите за нашими новостями в Mastodon", "Check out our blog" : "Просмотрите наш блог", "Subscribe to our newsletter" : "Подписывайтесь на нашу новостную рассылку", @@ -872,6 +871,7 @@ "Show to logged in users only" : "Только для вошедших в систему", "Nextcloud help resources" : "Справочные ресурсы Nextcloud", "SMTP Username" : "Пользователь SMTP", + "Follow us on Twitter" : "Следите за нашими новостями в Twitter", "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`." : "Чтобы разрешить выполнение этой проверки, вы должны убедиться, что ваш веб-сервер может подключаться к самому себе. Для этого он должен иметь возможность разрешать и подключаться по крайней мере к одному из своих `trusted_domains\" или \"overwrite.cli.url\".", "Could not check for JavaScript support via any of your `trusted_domains` nor `overwrite.cli.url`. This may be the result of a server-side DNS mismatch or outbound firewall rule. Please check manually if your webserver serves `.mjs` files using the JavaScript MIME type." : "Не удалось проверить поддержку JavaScript ни в одном из ваших `trusted_domains`, ни в `overwrite.cli.url`. Это может быть результатом несоответствия DNS на стороне сервера или правила исходящего брандмауэра. Пожалуйста, проверьте вручную, обслуживает ли ваш веб-сервер файлы `.mjs`, используя MIME-тип JavaScript.", "Active accounts" : "Активные учётные записи", diff --git a/apps/settings/l10n/sc.js b/apps/settings/l10n/sc.js index 38b539c18988d..89295abfb98b3 100644 --- a/apps/settings/l10n/sc.js +++ b/apps/settings/l10n/sc.js @@ -350,7 +350,6 @@ OC.L10N.register( "Reasons to use Nextcloud in your organization" : "Resones pro impreare Nextcloud in s'organizatzione tua", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Isvilupadu dae {communityopen}comunidadeNextcloud {linkclose}, su {githubopen}còdighe de orìgine{linkclose} est lissentziadu pro {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Pone•ddi M'agradat a sa pàgina Facebook nostra", - "Follow us on Twitter" : "Sighi•nosi in Twitter", "Follow us on Mastodon" : "Sighi•nos in Mastodon", "Check out our blog" : "Leghe·ti su blog nostru", "Subscribe to our newsletter" : "Iscrie·ti a sa lista de messàgios nostra", @@ -388,6 +387,7 @@ OC.L10N.register( "Active users" : "Utèntzias ativas", "Disabled users" : "Disativa utentes", "Show to logged in users only" : "Mustra isceti a is utentes autenticados", - "SMTP Username" : "Nùmene utente SMTP " + "SMTP Username" : "Nùmene utente SMTP ", + "Follow us on Twitter" : "Sighi•nosi in Twitter" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/settings/l10n/sc.json b/apps/settings/l10n/sc.json index ca3ad363f0251..aea143c6a063e 100644 --- a/apps/settings/l10n/sc.json +++ b/apps/settings/l10n/sc.json @@ -348,7 +348,6 @@ "Reasons to use Nextcloud in your organization" : "Resones pro impreare Nextcloud in s'organizatzione tua", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Isvilupadu dae {communityopen}comunidadeNextcloud {linkclose}, su {githubopen}còdighe de orìgine{linkclose} est lissentziadu pro {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Pone•ddi M'agradat a sa pàgina Facebook nostra", - "Follow us on Twitter" : "Sighi•nosi in Twitter", "Follow us on Mastodon" : "Sighi•nos in Mastodon", "Check out our blog" : "Leghe·ti su blog nostru", "Subscribe to our newsletter" : "Iscrie·ti a sa lista de messàgios nostra", @@ -386,6 +385,7 @@ "Active users" : "Utèntzias ativas", "Disabled users" : "Disativa utentes", "Show to logged in users only" : "Mustra isceti a is utentes autenticados", - "SMTP Username" : "Nùmene utente SMTP " + "SMTP Username" : "Nùmene utente SMTP ", + "Follow us on Twitter" : "Sighi•nosi in Twitter" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/settings/l10n/sk.js b/apps/settings/l10n/sk.js index c5c8550c8b5e8..87e9bdf94d40b 100644 --- a/apps/settings/l10n/sk.js +++ b/apps/settings/l10n/sk.js @@ -783,7 +783,6 @@ OC.L10N.register( "Reasons to use Nextcloud in your organization" : "Dôvody použitia NextCloudu vo vašej organizácii", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Vyvíjané {communityopen}komunitou Nextcloud{linkclose}, {githubopen}zdrojové kódy{linkclose} sú licencované pod licenciou {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Sleduj nás na Facebook-u", - "Follow us on Twitter" : "Sleduj nás na Twitter-i", "Follow us on Mastodon" : "Sledujte nás na Mastodon", "Check out our blog" : "Pozri si náš blog", "Subscribe to our newsletter" : "Prihlás sa na odber noviniek emailom", @@ -872,6 +871,7 @@ OC.L10N.register( "Show to logged in users only" : "Viditeľné iba pre prihlásených", "Nextcloud help resources" : "Pomoc pre Nextcloud", "SMTP Username" : "SMTP používateľské meno", + "Follow us on Twitter" : "Sleduj nás na Twitter-i", "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`." : "Pre povolenie tejto kontroly musíte zabezpečiť, aby sa váš webový server mohol pripojiť sám k sebe. Preto musí byť schopný rozpoznať a pripojiť sa aspoň k jednému z jeho \"trusted_domains\" alebo \"overwrite.cli.url\".", "Could not check for JavaScript support via any of your `trusted_domains` nor `overwrite.cli.url`. This may be the result of a server-side DNS mismatch or outbound firewall rule. Please check manually if your webserver serves `.mjs` files using the JavaScript MIME type." : "Nepodarilo sa skontrolovať podporu JavaScriptu prostredníctvom žiadnej z vašich domén `trusted_domains` ani `overwrite.cli.url`. Môže to byť výsledkom nesúladu DNS na strane servera alebo pravidla brány firewall pre výstup. Skontrolujte prosím manuálne, či váš webový server poskytuje súbory `.mjs` pomocou typu JavaScript MIME.", "Active accounts" : "Aktívne účty", diff --git a/apps/settings/l10n/sk.json b/apps/settings/l10n/sk.json index f094e93684b56..222028bb7b3cc 100644 --- a/apps/settings/l10n/sk.json +++ b/apps/settings/l10n/sk.json @@ -781,7 +781,6 @@ "Reasons to use Nextcloud in your organization" : "Dôvody použitia NextCloudu vo vašej organizácii", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Vyvíjané {communityopen}komunitou Nextcloud{linkclose}, {githubopen}zdrojové kódy{linkclose} sú licencované pod licenciou {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Sleduj nás na Facebook-u", - "Follow us on Twitter" : "Sleduj nás na Twitter-i", "Follow us on Mastodon" : "Sledujte nás na Mastodon", "Check out our blog" : "Pozri si náš blog", "Subscribe to our newsletter" : "Prihlás sa na odber noviniek emailom", @@ -870,6 +869,7 @@ "Show to logged in users only" : "Viditeľné iba pre prihlásených", "Nextcloud help resources" : "Pomoc pre Nextcloud", "SMTP Username" : "SMTP používateľské meno", + "Follow us on Twitter" : "Sleduj nás na Twitter-i", "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`." : "Pre povolenie tejto kontroly musíte zabezpečiť, aby sa váš webový server mohol pripojiť sám k sebe. Preto musí byť schopný rozpoznať a pripojiť sa aspoň k jednému z jeho \"trusted_domains\" alebo \"overwrite.cli.url\".", "Could not check for JavaScript support via any of your `trusted_domains` nor `overwrite.cli.url`. This may be the result of a server-side DNS mismatch or outbound firewall rule. Please check manually if your webserver serves `.mjs` files using the JavaScript MIME type." : "Nepodarilo sa skontrolovať podporu JavaScriptu prostredníctvom žiadnej z vašich domén `trusted_domains` ani `overwrite.cli.url`. Môže to byť výsledkom nesúladu DNS na strane servera alebo pravidla brány firewall pre výstup. Skontrolujte prosím manuálne, či váš webový server poskytuje súbory `.mjs` pomocou typu JavaScript MIME.", "Active accounts" : "Aktívne účty", diff --git a/apps/settings/l10n/sl.js b/apps/settings/l10n/sl.js index 0a0928aff38a0..1b665457ad81f 100644 --- a/apps/settings/l10n/sl.js +++ b/apps/settings/l10n/sl.js @@ -662,7 +662,6 @@ OC.L10N.register( "Reasons to use Nextcloud in your organization" : "Razlogi za uporabo oblaka Nextcloud v vaši organizaciji", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Okolje razvija {communityopen}skupnost Nextcloud{linkclose}, {githubopen}izvorna koda{linkclose} pa je objavljena pod pogoji dovoljenja {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Spremljajte naš Facebook", - "Follow us on Twitter" : "Sledite nam na Twitter!", "Follow us on Mastodon" : "Sledite nam na Mastodon", "Check out our blog" : "Preverite naš blog", "Subscribe to our newsletter" : "Naročite se na novice", @@ -747,6 +746,7 @@ OC.L10N.register( "Show to logged in users only" : "Pokaži le prijavljenim uporabnikom", "Nextcloud help resources" : "Viri pomoči za okolje Nextcloud", "SMTP Username" : "Uporabniško ime SMTP", + "Follow us on Twitter" : "Sledite nam na Twitter!", "Active accounts" : "Dejavni računi", "To allow this check to run you have to make sure that your Web server can connect to itself. Therefore it must be able to resolve and connect to at least one of its `trusted_domains` or the `overwrite.cli.url`. This failure may be the result of a server-side DNS mismatch or outbound firewall rule." : "Če želite omogočiti izvajanje tega preverjanja, je treba zagotoviti, da se spletni strežnik lahko poveže sam s seboj. Zato mora biti nastavljen za povezovanje z vsaj eno od določenih »varnih domen« (trusted_domains) ali naslovov za prepis »vmesnika ukazne vrstice« (overwrite.cli.url). Spodletelo preverjanje je lahko posledica neujemanja imen DNS na strani strežnika oziroma pravila požarnega zidu." }, diff --git a/apps/settings/l10n/sl.json b/apps/settings/l10n/sl.json index 46075e4b8ef5e..3fa28ba1c217f 100644 --- a/apps/settings/l10n/sl.json +++ b/apps/settings/l10n/sl.json @@ -660,7 +660,6 @@ "Reasons to use Nextcloud in your organization" : "Razlogi za uporabo oblaka Nextcloud v vaši organizaciji", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Okolje razvija {communityopen}skupnost Nextcloud{linkclose}, {githubopen}izvorna koda{linkclose} pa je objavljena pod pogoji dovoljenja {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Spremljajte naš Facebook", - "Follow us on Twitter" : "Sledite nam na Twitter!", "Follow us on Mastodon" : "Sledite nam na Mastodon", "Check out our blog" : "Preverite naš blog", "Subscribe to our newsletter" : "Naročite se na novice", @@ -745,6 +744,7 @@ "Show to logged in users only" : "Pokaži le prijavljenim uporabnikom", "Nextcloud help resources" : "Viri pomoči za okolje Nextcloud", "SMTP Username" : "Uporabniško ime SMTP", + "Follow us on Twitter" : "Sledite nam na Twitter!", "Active accounts" : "Dejavni računi", "To allow this check to run you have to make sure that your Web server can connect to itself. Therefore it must be able to resolve and connect to at least one of its `trusted_domains` or the `overwrite.cli.url`. This failure may be the result of a server-side DNS mismatch or outbound firewall rule." : "Če želite omogočiti izvajanje tega preverjanja, je treba zagotoviti, da se spletni strežnik lahko poveže sam s seboj. Zato mora biti nastavljen za povezovanje z vsaj eno od določenih »varnih domen« (trusted_domains) ali naslovov za prepis »vmesnika ukazne vrstice« (overwrite.cli.url). Spodletelo preverjanje je lahko posledica neujemanja imen DNS na strani strežnika oziroma pravila požarnega zidu." },"pluralForm" :"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);" diff --git a/apps/settings/l10n/sq.js b/apps/settings/l10n/sq.js index 3a096c8e3a4db..475139018de69 100644 --- a/apps/settings/l10n/sq.js +++ b/apps/settings/l10n/sq.js @@ -212,7 +212,6 @@ OC.L10N.register( "All checks passed." : "I kaloi krejt kontrollet.", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Zhvilluar nga {communityopen}komuniteti Nextcloud {linkclose}, {githubopen}kodi i hapur{linkclose} iështë licensuar sipar {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Pëlqeni faqen tonë në Facebook", - "Follow us on Twitter" : "Na ndiqni në Twitter", "Check out our blog" : "Shikoni blogun tonë", "Subscribe to our newsletter" : "Abonohu në gazeten tonë", "No user supplied" : "S’u dha përdorues", @@ -228,6 +227,7 @@ OC.L10N.register( "Name your device" : "Emërtoni pajisjen tuaj", "Active users" : "Përdoruesit aktivë", "Disabled users" : "Përdoruesit të çaktivizuar", - "SMTP Username" : "Emër përdoruesi SMTP" + "SMTP Username" : "Emër përdoruesi SMTP", + "Follow us on Twitter" : "Na ndiqni në Twitter" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/settings/l10n/sq.json b/apps/settings/l10n/sq.json index 470b046e6eba9..b7b2409afe611 100644 --- a/apps/settings/l10n/sq.json +++ b/apps/settings/l10n/sq.json @@ -210,7 +210,6 @@ "All checks passed." : "I kaloi krejt kontrollet.", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Zhvilluar nga {communityopen}komuniteti Nextcloud {linkclose}, {githubopen}kodi i hapur{linkclose} iështë licensuar sipar {licenseopen}AGPL{linkclose}.", "Like our Facebook page" : "Pëlqeni faqen tonë në Facebook", - "Follow us on Twitter" : "Na ndiqni në Twitter", "Check out our blog" : "Shikoni blogun tonë", "Subscribe to our newsletter" : "Abonohu në gazeten tonë", "No user supplied" : "S’u dha përdorues", @@ -226,6 +225,7 @@ "Name your device" : "Emërtoni pajisjen tuaj", "Active users" : "Përdoruesit aktivë", "Disabled users" : "Përdoruesit të çaktivizuar", - "SMTP Username" : "Emër përdoruesi SMTP" + "SMTP Username" : "Emër përdoruesi SMTP", + "Follow us on Twitter" : "Na ndiqni në Twitter" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/settings/l10n/sr.js b/apps/settings/l10n/sr.js index c94bcc5eca824..df42a39f768ca 100644 --- a/apps/settings/l10n/sr.js +++ b/apps/settings/l10n/sr.js @@ -691,7 +691,7 @@ OC.L10N.register( "Passwordless Authentication" : "Провера идентитета без лозинке", "Set up your account for passwordless authentication following the FIDO2 standard." : "Подесите налог за пријављивање без лозинке користећи FIDO2 стандард.", "No devices configured." : "Ниједан уређај није подешен.", - "The following devices are configured for your account:" : "Следећи уређају су подешени за Ваш налог:", + "The following devices are configured for your account:" : "Следећи уређаји су подешени за Ваш налог:", "Your browser does not support WebAuthn." : "Ваш веб читач не подржава WebAuthn.", "As admin you can fine-tune the sharing behavior. Please see the documentation for more information." : "Као администратор, можете фино подешавати понашања дељења. Погледајте документацију за више информација.", "You need to enable the File sharing App." : "Морате да укључите Апликацију за дељење фајла", @@ -796,7 +796,6 @@ OC.L10N.register( "Reasons to use Nextcloud in your organization" : "Разлози да користите Некстклауд у Вашој организацији", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Развијено од стране {communityopen}Некстклауд заједнице{linkclose}, {githubopen}изворни код{linkclose} је под {licenseopen}AGPL{linkclose} лиценцом.", "Like our Facebook page" : "Лајкујте нашу Фејсбук страну", - "Follow us on Twitter" : "Пратите нас на Твитеру", "Follow us on Mastodon" : "Запратите нас на Мастадонту", "Check out our blog" : "Баците поглед на наш блог", "Subscribe to our newsletter" : "Пријавите се на наше новине", @@ -885,6 +884,7 @@ OC.L10N.register( "Show to logged in users only" : "Прикажи само пријављеним корисницима", "Nextcloud help resources" : "Ресурси Nextcloud помоћи", "SMTP Username" : "SMTP корисничко име", + "Follow us on Twitter" : "Пратите нас на Твитеру", "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`." : "Ако желите да се ова провера изврши, морате обезбедити да ваш веб сервер може да се повеже на самог себе. То значи да мора бити у стању да разреши и да се повеже барем на један од својих `trusted_domains` или `overwrite.cli.url`.", "Could not check for JavaScript support via any of your `trusted_domains` nor `overwrite.cli.url`. This may be the result of a server-side DNS mismatch or outbound firewall rule. Please check manually if your webserver serves `.mjs` files using the JavaScript MIME type." : "Није могла да се провери JavaScript подршка преко било ког од ваших `trusted_domains` нити преко `overwrite.cli.url`. То је можда услед DNS неслагања са стране сервера или одлазно правило заштитног зида. Молимо вас да ручно проверите да ли ваш сервер служи `.mjs` фајлове користећи JavaScript MIME тип.", "Active accounts" : "Активни налози", diff --git a/apps/settings/l10n/sr.json b/apps/settings/l10n/sr.json index 6a4667ea5e1a1..0652de7be5fab 100644 --- a/apps/settings/l10n/sr.json +++ b/apps/settings/l10n/sr.json @@ -689,7 +689,7 @@ "Passwordless Authentication" : "Провера идентитета без лозинке", "Set up your account for passwordless authentication following the FIDO2 standard." : "Подесите налог за пријављивање без лозинке користећи FIDO2 стандард.", "No devices configured." : "Ниједан уређај није подешен.", - "The following devices are configured for your account:" : "Следећи уређају су подешени за Ваш налог:", + "The following devices are configured for your account:" : "Следећи уређаји су подешени за Ваш налог:", "Your browser does not support WebAuthn." : "Ваш веб читач не подржава WebAuthn.", "As admin you can fine-tune the sharing behavior. Please see the documentation for more information." : "Као администратор, можете фино подешавати понашања дељења. Погледајте документацију за више информација.", "You need to enable the File sharing App." : "Морате да укључите Апликацију за дељење фајла", @@ -794,7 +794,6 @@ "Reasons to use Nextcloud in your organization" : "Разлози да користите Некстклауд у Вашој организацији", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Развијено од стране {communityopen}Некстклауд заједнице{linkclose}, {githubopen}изворни код{linkclose} је под {licenseopen}AGPL{linkclose} лиценцом.", "Like our Facebook page" : "Лајкујте нашу Фејсбук страну", - "Follow us on Twitter" : "Пратите нас на Твитеру", "Follow us on Mastodon" : "Запратите нас на Мастадонту", "Check out our blog" : "Баците поглед на наш блог", "Subscribe to our newsletter" : "Пријавите се на наше новине", @@ -883,6 +882,7 @@ "Show to logged in users only" : "Прикажи само пријављеним корисницима", "Nextcloud help resources" : "Ресурси Nextcloud помоћи", "SMTP Username" : "SMTP корисничко име", + "Follow us on Twitter" : "Пратите нас на Твитеру", "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`." : "Ако желите да се ова провера изврши, морате обезбедити да ваш веб сервер може да се повеже на самог себе. То значи да мора бити у стању да разреши и да се повеже барем на један од својих `trusted_domains` или `overwrite.cli.url`.", "Could not check for JavaScript support via any of your `trusted_domains` nor `overwrite.cli.url`. This may be the result of a server-side DNS mismatch or outbound firewall rule. Please check manually if your webserver serves `.mjs` files using the JavaScript MIME type." : "Није могла да се провери JavaScript подршка преко било ког од ваших `trusted_domains` нити преко `overwrite.cli.url`. То је можда услед DNS неслагања са стране сервера или одлазно правило заштитног зида. Молимо вас да ручно проверите да ли ваш сервер служи `.mjs` фајлове користећи JavaScript MIME тип.", "Active accounts" : "Активни налози", diff --git a/apps/settings/l10n/sv.js b/apps/settings/l10n/sv.js index 7e5c051135403..15e7309660362 100644 --- a/apps/settings/l10n/sv.js +++ b/apps/settings/l10n/sv.js @@ -676,7 +676,6 @@ OC.L10N.register( "Reasons to use Nextcloud in your organization" : "Anledningar att använda Nextcloud i din organisation", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Utvecklat av {communityopen}Nextcloud-gemenskapen{linkclose}, {githubopen}källkoden{linkclose} är licensierad enligt {licenseopen}AGPL-standard{linkclose}.", "Like our Facebook page" : "Gilla vår Facebook-sida", - "Follow us on Twitter" : "Följ oss på Twitter", "Follow us on Mastodon" : "Följ oss på Mastodon", "Check out our blog" : "Kolla in vår blogg", "Subscribe to our newsletter" : "Prenumerera på vårt nyhetsbrev", @@ -763,6 +762,7 @@ OC.L10N.register( "Show to logged in users only" : "Visa endast för inloggade användare", "Nextcloud help resources" : "Nextcloud hjälpresurser", "SMTP Username" : "SMTP-användarnamn", + "Follow us on Twitter" : "Följ oss på Twitter", "Active accounts" : "Aktiva konton" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/settings/l10n/sv.json b/apps/settings/l10n/sv.json index 3c35052afdf4a..a1c5fc2a91eeb 100644 --- a/apps/settings/l10n/sv.json +++ b/apps/settings/l10n/sv.json @@ -674,7 +674,6 @@ "Reasons to use Nextcloud in your organization" : "Anledningar att använda Nextcloud i din organisation", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Utvecklat av {communityopen}Nextcloud-gemenskapen{linkclose}, {githubopen}källkoden{linkclose} är licensierad enligt {licenseopen}AGPL-standard{linkclose}.", "Like our Facebook page" : "Gilla vår Facebook-sida", - "Follow us on Twitter" : "Följ oss på Twitter", "Follow us on Mastodon" : "Följ oss på Mastodon", "Check out our blog" : "Kolla in vår blogg", "Subscribe to our newsletter" : "Prenumerera på vårt nyhetsbrev", @@ -761,6 +760,7 @@ "Show to logged in users only" : "Visa endast för inloggade användare", "Nextcloud help resources" : "Nextcloud hjälpresurser", "SMTP Username" : "SMTP-användarnamn", + "Follow us on Twitter" : "Följ oss på Twitter", "Active accounts" : "Aktiva konton" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/settings/l10n/tr.js b/apps/settings/l10n/tr.js index 8b7e04ef552e5..a17f34a41a85e 100644 --- a/apps/settings/l10n/tr.js +++ b/apps/settings/l10n/tr.js @@ -796,7 +796,6 @@ OC.L10N.register( "Reasons to use Nextcloud in your organization" : "Kuruluşunuzda Nextcloud kullanma nedenleriniz", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "{communityopen}Nextcloud topluluğu tarafından geliştirilmiştir{linkclose}.  {githubopen}Kaynak kodu{linkclose} {licenseopen}AGPL{linkclose} koşulları altında lisanslanmıştır.", "Like our Facebook page" : "Facebook sayfamızı beğenin", - "Follow us on Twitter" : "Bizi Twitter üzerinde izleyin", "Follow us on Mastodon" : "Bizi Mastodon üzerinde izleyin", "Check out our blog" : "Bloğumuza bakın", "Subscribe to our newsletter" : "Bültenimize abone olun", @@ -885,6 +884,7 @@ OC.L10N.register( "Show to logged in users only" : "Yalnızca oturum açmış kullanıcılara görüntülensin", "Nextcloud help resources" : "Nextcloud yardım kaynakları", "SMTP Username" : "SMTP kullanıcı adı", + "Follow us on Twitter" : "Bizi Twitter üzerinde izleyin", "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`." : "Bu denetimi çalıştırabilmek için site sunucunuzun kendisine bağlanabildiğinden emin olmanız gerekir. Bu nedenle, `trusted_domains` ya da `overwrite.cli.url` değerlerinden en az birini çözümleyebilmeli ve bunlara bağlanabilmelidir.", "Could not check for JavaScript support via any of your `trusted_domains` nor `overwrite.cli.url`. This may be the result of a server-side DNS mismatch or outbound firewall rule. Please check manually if your webserver serves `.mjs` files using the JavaScript MIME type." : "`trusted_domains` ya da `overwrite.cli.url` değerlerinden biri ile JavaScript desteği olup olmadığ denetlenemedi. Bu durum, sunucu tarafı DNS uyuşmazlığından ya da giden güvenlik duvarı kuralından kaynaklanıyor olabilir. Lütfen site sunucunuzun JavaScript MIME türünü kullanarak `.mjs` dosyalarını sunup sunmadığını el ile denetleyin.", "Active accounts" : "Etkin hesaplar", diff --git a/apps/settings/l10n/tr.json b/apps/settings/l10n/tr.json index 31d03ad3b8bd2..5daa8a6242202 100644 --- a/apps/settings/l10n/tr.json +++ b/apps/settings/l10n/tr.json @@ -794,7 +794,6 @@ "Reasons to use Nextcloud in your organization" : "Kuruluşunuzda Nextcloud kullanma nedenleriniz", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "{communityopen}Nextcloud topluluğu tarafından geliştirilmiştir{linkclose}.  {githubopen}Kaynak kodu{linkclose} {licenseopen}AGPL{linkclose} koşulları altında lisanslanmıştır.", "Like our Facebook page" : "Facebook sayfamızı beğenin", - "Follow us on Twitter" : "Bizi Twitter üzerinde izleyin", "Follow us on Mastodon" : "Bizi Mastodon üzerinde izleyin", "Check out our blog" : "Bloğumuza bakın", "Subscribe to our newsletter" : "Bültenimize abone olun", @@ -883,6 +882,7 @@ "Show to logged in users only" : "Yalnızca oturum açmış kullanıcılara görüntülensin", "Nextcloud help resources" : "Nextcloud yardım kaynakları", "SMTP Username" : "SMTP kullanıcı adı", + "Follow us on Twitter" : "Bizi Twitter üzerinde izleyin", "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`." : "Bu denetimi çalıştırabilmek için site sunucunuzun kendisine bağlanabildiğinden emin olmanız gerekir. Bu nedenle, `trusted_domains` ya da `overwrite.cli.url` değerlerinden en az birini çözümleyebilmeli ve bunlara bağlanabilmelidir.", "Could not check for JavaScript support via any of your `trusted_domains` nor `overwrite.cli.url`. This may be the result of a server-side DNS mismatch or outbound firewall rule. Please check manually if your webserver serves `.mjs` files using the JavaScript MIME type." : "`trusted_domains` ya da `overwrite.cli.url` değerlerinden biri ile JavaScript desteği olup olmadığ denetlenemedi. Bu durum, sunucu tarafı DNS uyuşmazlığından ya da giden güvenlik duvarı kuralından kaynaklanıyor olabilir. Lütfen site sunucunuzun JavaScript MIME türünü kullanarak `.mjs` dosyalarını sunup sunmadığını el ile denetleyin.", "Active accounts" : "Etkin hesaplar", diff --git a/apps/settings/l10n/uk.js b/apps/settings/l10n/uk.js index 1ba1fbac96da4..bc1080d2ae048 100644 --- a/apps/settings/l10n/uk.js +++ b/apps/settings/l10n/uk.js @@ -690,7 +690,6 @@ OC.L10N.register( "Reasons to use Nextcloud in your organization" : "Дізнатися про переваги хмари Nextcloud для вашої організації", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Розроблено {communityopen}спільнотою Nextcloud{linkclose}. Ліцензія {licenseopen}AGPL{linkclose} на {githubopen}вихідний код{linkclose}.", "Like our Facebook page" : "Вподобайте нашу сторінку у Facebook", - "Follow us on Twitter" : "Слідкуйте за нами в Twitter", "Follow us on Mastodon" : "Слідкуйте за нами на Mastodon", "Check out our blog" : "Перегляньте наш блог", "Subscribe to our newsletter" : "Підпишіться на нашу розсилку", @@ -778,6 +777,7 @@ OC.L10N.register( "Show to logged in users only" : "Лише авторизованим", "Nextcloud help resources" : "Посібники та допомога у користуванні Nextcloud", "SMTP Username" : "Ім'я користувача SMTP", + "Follow us on Twitter" : "Слідкуйте за нами в Twitter", "Active accounts" : "Активні облікові записи" }, "nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);"); diff --git a/apps/settings/l10n/uk.json b/apps/settings/l10n/uk.json index 7facb07e6d041..86aa0bc4e5f60 100644 --- a/apps/settings/l10n/uk.json +++ b/apps/settings/l10n/uk.json @@ -688,7 +688,6 @@ "Reasons to use Nextcloud in your organization" : "Дізнатися про переваги хмари Nextcloud для вашої організації", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Розроблено {communityopen}спільнотою Nextcloud{linkclose}. Ліцензія {licenseopen}AGPL{linkclose} на {githubopen}вихідний код{linkclose}.", "Like our Facebook page" : "Вподобайте нашу сторінку у Facebook", - "Follow us on Twitter" : "Слідкуйте за нами в Twitter", "Follow us on Mastodon" : "Слідкуйте за нами на Mastodon", "Check out our blog" : "Перегляньте наш блог", "Subscribe to our newsletter" : "Підпишіться на нашу розсилку", @@ -776,6 +775,7 @@ "Show to logged in users only" : "Лише авторизованим", "Nextcloud help resources" : "Посібники та допомога у користуванні Nextcloud", "SMTP Username" : "Ім'я користувача SMTP", + "Follow us on Twitter" : "Слідкуйте за нами в Twitter", "Active accounts" : "Активні облікові записи" },"pluralForm" :"nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);" } \ No newline at end of file diff --git a/apps/settings/l10n/zh_CN.js b/apps/settings/l10n/zh_CN.js index f922a8818bc97..613420d7a1767 100644 --- a/apps/settings/l10n/zh_CN.js +++ b/apps/settings/l10n/zh_CN.js @@ -659,7 +659,7 @@ OC.L10N.register( "Loading app list" : "正在加载应用程序列表", "App Store" : "应用商店", "Loading categories" : "正在加载分类", - "All accounts" : "所有账户", + "All accounts" : "所有账号", "Admins" : "管理员", "Create group" : "创建群组", "Group name" : "分组名称", @@ -750,7 +750,6 @@ OC.L10N.register( "Reasons to use Nextcloud in your organization" : "在您的组织中使用 Nextcloud 的原因", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "由 {communityopen}Nextcloud 社区{linkclose} 开发,{githubopen}源代码{linkclose} 基于 {licenseopen}AGPL{linkclose}许可协议。", "Like our Facebook page" : "给我们的 Facebook 页面点赞!", - "Follow us on Twitter" : "在 Twitter 上关注我们!", "Follow us on Mastodon" : "在 Mastodon 上关注我们", "Check out our blog" : "浏览我们的博客!", "Subscribe to our newsletter" : "订阅我们的最新消息!", @@ -835,6 +834,7 @@ OC.L10N.register( "Show to logged in users only" : "仅显示给登录用户", "Nextcloud help resources" : "Nextcloud 帮助资源", "SMTP Username" : "SMTP 用户名", + "Follow us on Twitter" : "在 Twitter 上关注我们!", "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`." : "要允许此检查运行,您必须确保您的网络服务器可以连接到自身。 因此,它必须能够解析并连接到至少一个 `trusted_domains` 或 `overwrite.cli.url`。", "Could not check for JavaScript support via any of your `trusted_domains` nor `overwrite.cli.url`. This may be the result of a server-side DNS mismatch or outbound firewall rule. Please check manually if your webserver serves `.mjs` files using the JavaScript MIME type." : "无法通过您的任何 “trusted_domains\" 或 \"overwrite.cli.url\" 检查 JavaScript 支持。 这可能是服务器端 DNS 不匹配或出站防火墙规则造成的。 请手动检查您的网络服务器是否使用 JavaScript MIME 类型提供 \".mjs\" 文件。", "Active accounts" : "活跃账号", diff --git a/apps/settings/l10n/zh_CN.json b/apps/settings/l10n/zh_CN.json index 98b1f23070b03..948f4109af927 100644 --- a/apps/settings/l10n/zh_CN.json +++ b/apps/settings/l10n/zh_CN.json @@ -657,7 +657,7 @@ "Loading app list" : "正在加载应用程序列表", "App Store" : "应用商店", "Loading categories" : "正在加载分类", - "All accounts" : "所有账户", + "All accounts" : "所有账号", "Admins" : "管理员", "Create group" : "创建群组", "Group name" : "分组名称", @@ -748,7 +748,6 @@ "Reasons to use Nextcloud in your organization" : "在您的组织中使用 Nextcloud 的原因", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "由 {communityopen}Nextcloud 社区{linkclose} 开发,{githubopen}源代码{linkclose} 基于 {licenseopen}AGPL{linkclose}许可协议。", "Like our Facebook page" : "给我们的 Facebook 页面点赞!", - "Follow us on Twitter" : "在 Twitter 上关注我们!", "Follow us on Mastodon" : "在 Mastodon 上关注我们", "Check out our blog" : "浏览我们的博客!", "Subscribe to our newsletter" : "订阅我们的最新消息!", @@ -833,6 +832,7 @@ "Show to logged in users only" : "仅显示给登录用户", "Nextcloud help resources" : "Nextcloud 帮助资源", "SMTP Username" : "SMTP 用户名", + "Follow us on Twitter" : "在 Twitter 上关注我们!", "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`." : "要允许此检查运行,您必须确保您的网络服务器可以连接到自身。 因此,它必须能够解析并连接到至少一个 `trusted_domains` 或 `overwrite.cli.url`。", "Could not check for JavaScript support via any of your `trusted_domains` nor `overwrite.cli.url`. This may be the result of a server-side DNS mismatch or outbound firewall rule. Please check manually if your webserver serves `.mjs` files using the JavaScript MIME type." : "无法通过您的任何 “trusted_domains\" 或 \"overwrite.cli.url\" 检查 JavaScript 支持。 这可能是服务器端 DNS 不匹配或出站防火墙规则造成的。 请手动检查您的网络服务器是否使用 JavaScript MIME 类型提供 \".mjs\" 文件。", "Active accounts" : "活跃账号", diff --git a/apps/settings/l10n/zh_HK.js b/apps/settings/l10n/zh_HK.js index 2ff528d63f58e..34361751e01f3 100644 --- a/apps/settings/l10n/zh_HK.js +++ b/apps/settings/l10n/zh_HK.js @@ -794,7 +794,6 @@ OC.L10N.register( "Reasons to use Nextcloud in your organization" : "在您的組織中使用 Nextcloud 的原因", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "由 {communityopen}Nextcloud 社群{linkclose}開發,{githubopen}原始碼{linkclose}以 {licenseopen}AGPL 授權{linkclose}釋出。", "Like our Facebook page" : "到我們的 Facebook 頁面按讚", - "Follow us on Twitter" : "在 Twitter 上追蹤我們", "Follow us on Mastodon" : "在 Mastodon 上追蹤我們", "Check out our blog" : "逛逛我們的部落格", "Subscribe to our newsletter" : "訂閱我們的電子報", @@ -883,6 +882,7 @@ OC.L10N.register( "Show to logged in users only" : "僅顯示給登錄用戶", "Nextcloud help resources" : "Nextcloud 幫助資源", "SMTP Username" : "SMTP 用戶名稱", + "Follow us on Twitter" : "在 Twitter 上追蹤我們", "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`." : "要執行此檢查,您必須確保您的網路伺服器可以連線到其自身。因此,其必須至少能解析並連線至 `trusted_domains` 或 `overwrite.cli.url` 其中一個。", "Could not check for JavaScript support via any of your `trusted_domains` nor `overwrite.cli.url`. This may be the result of a server-side DNS mismatch or outbound firewall rule. Please check manually if your webserver serves `.mjs` files using the JavaScript MIME type." : "無法透過您的任何「trusted_domains」或「overwrite.cli.url」檢查 JavaScript 支援。這可能是伺服器端 DNS 不符或連出防火牆規則造成的。請手動檢查您的網頁伺服器是否使用 JavaScript MIME 類型提供「.mjs」檔案。", "Active accounts" : "活躍帳戶", diff --git a/apps/settings/l10n/zh_HK.json b/apps/settings/l10n/zh_HK.json index 6f96254281ae1..ed5605bc78b35 100644 --- a/apps/settings/l10n/zh_HK.json +++ b/apps/settings/l10n/zh_HK.json @@ -792,7 +792,6 @@ "Reasons to use Nextcloud in your organization" : "在您的組織中使用 Nextcloud 的原因", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "由 {communityopen}Nextcloud 社群{linkclose}開發,{githubopen}原始碼{linkclose}以 {licenseopen}AGPL 授權{linkclose}釋出。", "Like our Facebook page" : "到我們的 Facebook 頁面按讚", - "Follow us on Twitter" : "在 Twitter 上追蹤我們", "Follow us on Mastodon" : "在 Mastodon 上追蹤我們", "Check out our blog" : "逛逛我們的部落格", "Subscribe to our newsletter" : "訂閱我們的電子報", @@ -881,6 +880,7 @@ "Show to logged in users only" : "僅顯示給登錄用戶", "Nextcloud help resources" : "Nextcloud 幫助資源", "SMTP Username" : "SMTP 用戶名稱", + "Follow us on Twitter" : "在 Twitter 上追蹤我們", "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`." : "要執行此檢查,您必須確保您的網路伺服器可以連線到其自身。因此,其必須至少能解析並連線至 `trusted_domains` 或 `overwrite.cli.url` 其中一個。", "Could not check for JavaScript support via any of your `trusted_domains` nor `overwrite.cli.url`. This may be the result of a server-side DNS mismatch or outbound firewall rule. Please check manually if your webserver serves `.mjs` files using the JavaScript MIME type." : "無法透過您的任何「trusted_domains」或「overwrite.cli.url」檢查 JavaScript 支援。這可能是伺服器端 DNS 不符或連出防火牆規則造成的。請手動檢查您的網頁伺服器是否使用 JavaScript MIME 類型提供「.mjs」檔案。", "Active accounts" : "活躍帳戶", diff --git a/apps/settings/l10n/zh_TW.js b/apps/settings/l10n/zh_TW.js index 4ac6d94547520..ac8a6c243b098 100644 --- a/apps/settings/l10n/zh_TW.js +++ b/apps/settings/l10n/zh_TW.js @@ -796,7 +796,6 @@ OC.L10N.register( "Reasons to use Nextcloud in your organization" : "在您的組織中使用 Nextcloud 的原因", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "由 {communityopen}Nextcloud 社群{linkclose}開發,{githubopen}原始碼{linkclose}以 {licenseopen}AGPL 授權{linkclose}釋出。", "Like our Facebook page" : "到我們的 Facebook 頁面按讚", - "Follow us on Twitter" : "在 Twitter 上追蹤我們", "Follow us on Mastodon" : "在 Mastodon 上追蹤我們", "Check out our blog" : "逛逛我們的部落格", "Subscribe to our newsletter" : "訂閱我們的電子報", @@ -885,6 +884,7 @@ OC.L10N.register( "Show to logged in users only" : "僅對已登入的使用者顯示", "Nextcloud help resources" : "Nextcloud 說明資源", "SMTP Username" : "SMTP 使用者名稱", + "Follow us on Twitter" : "在 Twitter 上追蹤我們", "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`." : "要執行此檢查,您必須確保您的網路伺服器可以連線到其自身。因此,其必須至少能解析並連線至 `trusted_domains` 或 `overwrite.cli.url` 其中一個。", "Could not check for JavaScript support via any of your `trusted_domains` nor `overwrite.cli.url`. This may be the result of a server-side DNS mismatch or outbound firewall rule. Please check manually if your webserver serves `.mjs` files using the JavaScript MIME type." : "無法透過您的任何「trusted_domains」或「overwrite.cli.url」檢查 JavaScript 支援。這可能是伺服器端 DNS 不符或連出防火牆規則造成的。請手動檢查您的網頁伺服器是否使用 JavaScript MIME 類型提供「.mjs」檔案。", "Active accounts" : "活躍帳號", diff --git a/apps/settings/l10n/zh_TW.json b/apps/settings/l10n/zh_TW.json index bd58d9aa49526..4098f3a106782 100644 --- a/apps/settings/l10n/zh_TW.json +++ b/apps/settings/l10n/zh_TW.json @@ -794,7 +794,6 @@ "Reasons to use Nextcloud in your organization" : "在您的組織中使用 Nextcloud 的原因", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "由 {communityopen}Nextcloud 社群{linkclose}開發,{githubopen}原始碼{linkclose}以 {licenseopen}AGPL 授權{linkclose}釋出。", "Like our Facebook page" : "到我們的 Facebook 頁面按讚", - "Follow us on Twitter" : "在 Twitter 上追蹤我們", "Follow us on Mastodon" : "在 Mastodon 上追蹤我們", "Check out our blog" : "逛逛我們的部落格", "Subscribe to our newsletter" : "訂閱我們的電子報", @@ -883,6 +882,7 @@ "Show to logged in users only" : "僅對已登入的使用者顯示", "Nextcloud help resources" : "Nextcloud 說明資源", "SMTP Username" : "SMTP 使用者名稱", + "Follow us on Twitter" : "在 Twitter 上追蹤我們", "To allow this check to run you have to make sure that your webserver can connect to itself. Therefor it must be able to resolve and connect to at least one its `trusted_domains` or the `overwrite.cli.url`." : "要執行此檢查,您必須確保您的網路伺服器可以連線到其自身。因此,其必須至少能解析並連線至 `trusted_domains` 或 `overwrite.cli.url` 其中一個。", "Could not check for JavaScript support via any of your `trusted_domains` nor `overwrite.cli.url`. This may be the result of a server-side DNS mismatch or outbound firewall rule. Please check manually if your webserver serves `.mjs` files using the JavaScript MIME type." : "無法透過您的任何「trusted_domains」或「overwrite.cli.url」檢查 JavaScript 支援。這可能是伺服器端 DNS 不符或連出防火牆規則造成的。請手動檢查您的網頁伺服器是否使用 JavaScript MIME 類型提供「.mjs」檔案。", "Active accounts" : "活躍帳號", diff --git a/apps/theming/src/UserTheming.vue b/apps/theming/src/UserTheming.vue index a5c3d029158b3..4766886be903d 100644 --- a/apps/theming/src/UserTheming.vue +++ b/apps/theming/src/UserTheming.vue @@ -6,7 +6,6 @@