From 6e79c41ff01f904f2b5b01dc141586d8cdd24712 Mon Sep 17 00:00:00 2001 From: Lumpiness Date: Thu, 26 Sep 2024 11:25:47 +0300 Subject: [PATCH 0001/1895] Fixed webhook equals operator from $eq to $e --- admin_manual/webhook_listeners/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin_manual/webhook_listeners/index.rst b/admin_manual/webhook_listeners/index.rst index dd10f4cfa..e99cbfffc 100644 --- a/admin_manual/webhook_listeners/index.rst +++ b/admin_manual/webhook_listeners/index.rst @@ -31,7 +31,7 @@ If you would like to match events fired by a specific user, you can pass ``{ "us If you would like to enforce multiple criteria, you can simply pass multiple properties ``{ "event.tableId": 42, "event.rowId": 3 }`` -You can also use additional comparison operators (``$eq, $ne, $gt, $gte, $lt, $lte, $in, $nin``) as well as logical operators (``$and, $or, $not, $nor``). For example use ``{ "time" : { "$lt": 1711971024 } }`` to accept only events prior to April 1st 2024 and ``{ "time" : { "$not": { "$lt": 1711971024 } } }`` to accept events after April 1st 2024. +You can also use additional comparison operators (``$e, $ne, $gt, $gte, $lt, $lte, $in, $nin``) as well as logical operators (``$and, $or, $not, $nor``). For example use ``{ "time" : { "$lt": 1711971024 } }`` to accept only events prior to April 1st 2024 and ``{ "time" : { "$not": { "$lt": 1711971024 } } }`` to accept events after April 1st 2024. Speeding up webhook dispatch ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ From 9d5c5eb1a35dc9314055d773bf145c3b4a49b48a Mon Sep 17 00:00:00 2001 From: Ronny Bremer Date: Mon, 19 May 2025 12:13:43 +0200 Subject: [PATCH 0002/1895] adopted documentation on how to create a new file or override an existing file previous code was outdated and didn't work anymore in newer NC versions (possibly since NC 29) Signed-off-by: Ronny Bremer --- developer_manual/basics/storage/filesystem.rst | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/developer_manual/basics/storage/filesystem.rst b/developer_manual/basics/storage/filesystem.rst index 2bb304933..2f346f8c9 100644 --- a/developer_manual/basics/storage/filesystem.rst +++ b/developer_manual/basics/storage/filesystem.rst @@ -81,13 +81,12 @@ All methods return a Folder object on which files and folders can be accessed, o try { try { $file = $userFolder->get('myfile.txt'); - } catch(\OCP\Files\NotFoundException $e) { - $userFolder->touch('myfile.txt'); - $file = $userFolder->get('myfile.txt'); - } - // the id can be accessed by $file->getId(); - $file->putContent($content); + // the id can be accessed by $file->getId(); + $file->putContent($content); + } catch(\OCP\Files\NotFoundException $e) { + $userFolder->newFile('myfile.txt', $content); + } } catch(\OCP\Files\NotPermittedException $e) { // you have to create this exception by yourself ;) @@ -163,4 +162,4 @@ The recommended way of adding your own mounts to the filesystem from an app is i and registering the provider using ``OCP\Files\Config\IMountProviderCollection::registerProvider``. Once registered, your provider will be called every time the filesystem is being setup for a user and your mount provider -can return a list of mounts to add for that user. \ No newline at end of file +can return a list of mounts to add for that user. From 6293cab3b2c190056e74c24bbb45436bd502d992 Mon Sep 17 00:00:00 2001 From: Pekko Eskola <44174921+pekkoeskola@users.noreply.github.com> Date: Wed, 28 May 2025 15:45:39 +0300 Subject: [PATCH 0003/1895] Fix typo in logging_configuration.rst, "admit_audit" to "admin_audit" In first section about logging, the "admin_audit app" is referred to erroneously as "admit_audit app". Not a significant typo but can cause confusion upon first reading. Signed-off-by: Pekko Eskola <44174921+pekkoeskola@users.noreply.github.com> --- admin_manual/configuration_server/logging_configuration.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin_manual/configuration_server/logging_configuration.rst b/admin_manual/configuration_server/logging_configuration.rst index fc3160b53..f5473f2ea 100644 --- a/admin_manual/configuration_server/logging_configuration.rst +++ b/admin_manual/configuration_server/logging_configuration.rst @@ -4,7 +4,7 @@ Logging Use your Nextcloud log to review system status, or to help debug problems. You may adjust logging levels, and choose how and where log data is stored. If additional event logging is required, you can optionally activate the **admin_audit** app. -When ``file`` based logging is utilized, both the Nextcloud log and, optionally, the **admit_audit** app log can be viewed within the Nextcloud interface under *Administration settings -> Logging* (this functionality is provided by the **logreader** app). +When ``file`` based logging is utilized, both the Nextcloud log and, optionally, the **admin_audit** app log can be viewed within the Nextcloud interface under *Administration settings -> Logging* (this functionality is provided by the **logreader** app). Further configuration and usage details for both the standard Nextcloud log and the optional **admin_audit** app log can be found below. From 5ffbbb902b504a8d4c15ca7aa593562e095ce483 Mon Sep 17 00:00:00 2001 From: Josh Date: Fri, 30 May 2025 11:13:41 -0400 Subject: [PATCH 0004/1895] fix(admin): Update Desktop client config interval default values * Updated `notificationRefreshInterval` default interval value (was changed in nextcloud/desktop#4426 * Added sec / min / hr equivalents for quickly referencing by those that don't deal in msec (similar to what we do for bytes->MB). Signed-off-by: Josh --- admin_manual/desktop/configfile.rst | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/admin_manual/desktop/configfile.rst b/admin_manual/desktop/configfile.rst index 89ffbfd5f..73692bffe 100644 --- a/admin_manual/desktop/configfile.rst +++ b/admin_manual/desktop/configfile.rst @@ -22,19 +22,19 @@ format. You can overwrite changes using the Nextcloud configuration dialog. Some interesting values that can be set on the configuration file are: -+----------------------------------------------------------------------------------------------------------------------------------------------------------+ -| ``[Nextcloud]`` section | -+=================================+===============+========================================================================================================+ -| Variable | Default | Meaning | -+---------------------------------+---------------+--------------------------------------------------------------------------------------------------------+ -| ``remotePollInterval`` | ``30000`` | Specifies the poll time for the remote repository in milliseconds. | -+---------------------------------+---------------+--------------------------------------------------------------------------------------------------------+ -| ``forceSyncInterval`` | ``7200000`` | The duration of no activity after which a synchronization run shall be triggered automatically. | -+---------------------------------+---------------+--------------------------------------------------------------------------------------------------------+ -| ``fullLocalDiscoveryInterval`` | ``3600000`` | The interval after which the next synchronization will perform a full local discovery. | -+---------------------------------+---------------+--------------------------------------------------------------------------------------------------------+ -| ``notificationRefreshInterval`` | ``300000`` | Specifies the default interval of checking for new server notifications in milliseconds. | -+---------------------------------+---------------+--------------------------------------------------------------------------------------------------------+ ++---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| ``[Nextcloud]`` section | ++=================================+====================+========================================================================================================+ +| Variable | Default | Meaning | ++---------------------------------+--------------------+--------------------------------------------------------------------------------------------------------+ +| ``remotePollInterval`` | ``30000`` (30 sec) | Specifies the poll time for the remote repository in milliseconds. | ++---------------------------------+--------------------+--------------------------------------------------------------------------------------------------------+ +| ``forceSyncInterval`` | ``7200000`` (2 hr) | The duration of no activity after which a synchronization run shall be triggered automatically. | ++---------------------------------+--------------------+--------------------------------------------------------------------------------------------------------+ +| ``fullLocalDiscoveryInterval`` | ``3600000`` (1 hr) | The interval after which the next synchronization will perform a full local discovery. | ++---------------------------------+--------------------+--------------------------------------------------------------------------------------------------------+ +| ``notificationRefreshInterval`` | ``60000`` (1 min) | Specifies the default interval of checking for new server notifications in milliseconds. | ++---------------------------------+--------------------+--------------------------------------------------------------------------------------------------------+ +----------------------------------------------------------------------------------------------------------------------------------------------------------------------+ From e130678fe18f569bc6d34594184c04fa06e2e734 Mon Sep 17 00:00:00 2001 From: alperozturk Date: Mon, 2 Jun 2025 19:04:26 +0800 Subject: [PATCH 0005/1895] remove note --- developer_manual/client_apis/OCS/ocs-share-api.rst | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/developer_manual/client_apis/OCS/ocs-share-api.rst b/developer_manual/client_apis/OCS/ocs-share-api.rst index 69c42b155..167a84aa3 100644 --- a/developer_manual/client_apis/OCS/ocs-share-api.rst +++ b/developer_manual/client_apis/OCS/ocs-share-api.rst @@ -116,7 +116,7 @@ Statuscodes: Update Share ~~~~~~~~~~~~ -Update a given share. Only one value can be updated per request. +Update a given share. * Syntax: /shares/** * Method: PUT @@ -133,8 +133,6 @@ Update a given share. Only one value can be updated per request. * PUT Arguments: attributes - (string) serialized JSON string for :ref:`share attributes` * PUT Arguments: sendMail - (string) send an email to the recipient. This will not send an email on its own. You will have to use the :ref:`send-email` endpoint to send the email. (true/false) -.. note:: Only one of the update parameters can be specified at once. - Statuscodes: * 100 - successful From dc716d27089b2a0bca96b795fd6eccc599fef09f Mon Sep 17 00:00:00 2001 From: Julien Veyssier Date: Mon, 2 Jun 2025 14:21:27 +0200 Subject: [PATCH 0006/1895] feat: add warning about context_chat not respecting files_accesscontrol rules Signed-off-by: Julien Veyssier --- admin_manual/file_workflows/access_control.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/admin_manual/file_workflows/access_control.rst b/admin_manual/file_workflows/access_control.rst index dddc6614f..02cc3be12 100644 --- a/admin_manual/file_workflows/access_control.rst +++ b/admin_manual/file_workflows/access_control.rst @@ -8,6 +8,11 @@ rules. If all rules of a group hold true, the group matches the request and access is being denied. The rules criteria range from IP address, to user groups, collaborative tags and :ref:`some more `. +.. note:: In case you are using the :ref:`Context Chat App `, + please keep in mind, that it is not affected by the File Access Control rules + and will respond with indexed information, even when the file is not accessible + by the user due to access control rules. + Denied access ------------- From 27453dbf6d9a4a565071dabd7a57586d64384e1c Mon Sep 17 00:00:00 2001 From: Daniel Kesselberg Date: Tue, 3 Jun 2025 18:08:46 +0200 Subject: [PATCH 0007/1895] docs(groupware): add stable url for microsoft oauth settings Signed-off-by: Daniel Kesselberg --- go.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/go.php b/go.php index 24f3667d1..48d7908f0 100644 --- a/go.php +++ b/go.php @@ -9,13 +9,13 @@ $mapping = array( 'admin-antivirus-configuration' => '/admin_manual/configuration_server/antivirus_configuration.html', 'admin-background-jobs' => '/admin_manual/configuration_server/background_jobs_configuration.html', 'admin-backup' => '/admin_manual/maintenance/backup.html', - 'admin-bigint-conversion' => '/admin_manual/configuration_database/bigint_identifiers.html', 'admin-big-file-upload' => '/admin_manual/configuration_files/big_file_upload_configuration.html', - 'admin-code-integrity' => '/admin_manual/issues/code_signing.html', + 'admin-bigint-conversion' => '/admin_manual/configuration_database/bigint_identifiers.html', 'admin-cache' => '/admin_manual/configuration_server/caching_configuration.html', + 'admin-code-integrity' => '/admin_manual/issues/code_signing.html', 'admin-config' => '/admin_manual/configuration_server/config_sample_php_parameters.html', - 'admin-db-conversion' => '/admin_manual/configuration_database/db_conversion.html', 'admin-db-configuration' => '/admin_manual/configuration_database/linux_database_configuration.html', + 'admin-db-conversion' => '/admin_manual/configuration_database/db_conversion.html', 'admin-db-transaction' => '/admin_manual/configuration_database/linux_database_configuration.html#database-read-committed-transaction-isolation-level', 'admin-delegation' => '/admin_manual/configuration_server/admin_delegation_configuration.html', 'admin-deploy-options' => '/admin_manual/exapps_management/AdvancedDeployOptions.html', @@ -25,6 +25,7 @@ $mapping = array( 'admin-files-access-control' => '/admin_manual/file_workflows/access_control.html', 'admin-files-automated-tagging' => '/admin_manual/file_workflows/automated_tagging.html', 'admin-files-retention' => '/admin_manual/file_workflows/retention.html', + 'admin-groupware-oauth-microsoft' => '/admin_manual/groupware/mail.html#xoauth2-authentication-with-microsoft-azure-ad', 'admin-install' => '/admin_manual/installation/index.html', 'admin-ldap' => '/admin_manual/configuration_user/user_auth_ldap.html', 'admin-logging' => '/admin_manual/configuration_server/logging_configuration.html', @@ -34,8 +35,8 @@ $mapping = array( 'admin-oauth2' => '/admin_manual/configuration_server/oauth2.html', 'admin-performance' => '/admin_manual/installation/server_tuning.html', 'admin-php-fpm' => '/admin_manual/installation/source_installation.html#php-fpm-tips-label', - 'admin-php-opcache' => '/admin_manual/installation/server_tuning.html#enable-php-opcache', 'admin-php-modules' => '/admin_manual/installation/php_configuration.html#php-modules', + 'admin-php-opcache' => '/admin_manual/installation/server_tuning.html#enable-php-opcache', 'admin-provisioning-api' => '/admin_manual/configuration_user/user_provisioning_api.html', 'admin-reverse-proxy' => '/admin_manual/configuration_server/reverse_proxy_configuration.html', 'admin-security' => '/admin_manual/installation/harden_server.html', From 28e94b195f490fd283f4c0fd571c7ffbda6436e7 Mon Sep 17 00:00:00 2001 From: Andrey Borysenko Date: Wed, 4 Jun 2025 16:36:50 +0000 Subject: [PATCH 0008/1895] feat(preferences_ex): adjust note about sensitive flag with encryption (#13177) Signed-off-by: Andrey Borysenko --- .../exapp_development/tech_details/api/appconfig.rst | 2 +- .../exapp_development/tech_details/api/preferences.rst | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/developer_manual/exapp_development/tech_details/api/appconfig.rst b/developer_manual/exapp_development/tech_details/api/appconfig.rst index 6893800ed..079ffc83c 100644 --- a/developer_manual/exapp_development/tech_details/api/appconfig.rst +++ b/developer_manual/exapp_development/tech_details/api/appconfig.rst @@ -25,7 +25,7 @@ Request data { "configKey": "key", "configValue": "value" - "sensitive": "sensitive flag affecting the visibility of the value (0/1, default: 0)" + "sensitive": "store value encrypted in the database (0/1, default: 0)" } diff --git a/developer_manual/exapp_development/tech_details/api/preferences.rst b/developer_manual/exapp_development/tech_details/api/preferences.rst index 407ab0de0..54aca6d79 100644 --- a/developer_manual/exapp_development/tech_details/api/preferences.rst +++ b/developer_manual/exapp_development/tech_details/api/preferences.rst @@ -23,9 +23,11 @@ Request data { "configKey": "key", - "configValue": "value" + "configValue": "value", + "sensitive": "store value encrypted in the database (0/1, default: 0)" } + Response data ************* From a69bcba83bace8b2c47fa26fef3247fc4339aec0 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 05:01:03 +0000 Subject: [PATCH 0009/1895] Translate external_storage.pot in nl 100% translated source file: 'external_storage.pot' on 'nl'. --- .../external_storage/external_storage.pot | 29 +++++++++---------- 1 file changed, 14 insertions(+), 15 deletions(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/external_storage/external_storage.pot b/user_manual/locale/nl/LC_MESSAGES/external_storage/external_storage.pot index c89f4c74c..acf966e83 100644 --- a/user_manual/locale/nl/LC_MESSAGES/external_storage/external_storage.pot +++ b/user_manual/locale/nl/LC_MESSAGES/external_storage/external_storage.pot @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021 Nextcloud GmbH +# Copyright (C) 2025 Nextcloud GmbH # This file is distributed under the same license as the Nextcloud latest User Manual package. # FIRST AUTHOR , YEAR. # # Translators: -# Chris Raymaekers , 2021 -# Julia Boersma, 2021 +# Stephan Paternotte , 2025 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: Nextcloud latest User Manual latest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-04-19 08:14+0000\n" +"POT-Creation-Date: 2025-02-12 13:02+0000\n" "PO-Revision-Date: 2019-11-07 20:28+0000\n" -"Last-Translator: Julia Boersma, 2021\n" -"Language-Team: Dutch (https://www.transifex.com/nextcloud/teams/64236/nl/)\n" +"Last-Translator: Stephan Paternotte , 2025\n" +"Language-Team: Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -23,23 +22,23 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../../external_storage/external_storage.rst:3 -msgid "Configuring external Storage" +msgid "Configuring External Storage" msgstr "Configuratie van externe opslag" #: ../../external_storage/external_storage.rst:5 msgid "" "The External Storage application allows you to mount external storage " -"services, such as Amazon S3, SMB/CIFS fileservers and FTP servers… in " +"services, such as Amazon S3, SMB/CIFS file servers and FTP servers… in " "Nextcloud. Your Nextcloud server administrator controls which of these are " "available to you. Please see `Configuring External Storage (GUI) " "`_" -" in the Nextcloud Administrator's manual for configuration howtos and " +" in the Nextcloud Administrator's manual for configuration how-tos and " "examples." msgstr "" -"Met de Externe Opslag applicatie kan je externe opslagdiensten, zoals Amazon" -" S3, SMB/CIFS servers en FTP-servers... in Nextcloud koppelen. Je beheerder " -"van de Nextcloud-server bepaalt welke van deze diensten voor jou beschikbaar" -" zijn. Zie `Configuratie van externe opslag (GUI) " +"De externe opslagtoepassing stelt je in staat externe opslagdiensten in " +"Nextcloud te koppelen, zoals Amazon S3, SMB/CIFS-bestandservers en FTP-" +"servers…. Je Nextcloud-serverbeheerder bepaalt welke hiervan voor jou " +"beschikbaar zijn. Raadpleeg `Externe opslag configureren (GUI) " "`_" -" in de Nextcloud beheerdershandleiding voor configuratie howtos en " -"voorbeelden." +" in de handleiding van de Nextcloud-beheerder voor configuratie-instructies " +"en voorbeelden." From 5c1947cc49637d8e977ab67c6d5438b1cbeab03c Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 05:01:16 +0000 Subject: [PATCH 0010/1895] Translate external_storage.pot in nl 100% translated source file: 'external_storage.pot' on 'nl'. --- .../locale/nl/LC_MESSAGES/external_storage/external_storage.pot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/external_storage/external_storage.pot b/user_manual/locale/nl/LC_MESSAGES/external_storage/external_storage.pot index acf966e83..0ab7930a7 100644 --- a/user_manual/locale/nl/LC_MESSAGES/external_storage/external_storage.pot +++ b/user_manual/locale/nl/LC_MESSAGES/external_storage/external_storage.pot @@ -23,7 +23,7 @@ msgstr "" #: ../../external_storage/external_storage.rst:3 msgid "Configuring External Storage" -msgstr "Configuratie van externe opslag" +msgstr "Externe opslag configureren" #: ../../external_storage/external_storage.rst:5 msgid "" From 3dda4ee3241bc410b49102c16fd2b723c4e29fa2 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 05:26:56 +0000 Subject: [PATCH 0011/1895] Translate access_webgui.pot in nl 100% translated source file: 'access_webgui.pot' on 'nl'. --- .../nl/LC_MESSAGES/files/access_webgui.pot | 101 +++++++++++++----- 1 file changed, 73 insertions(+), 28 deletions(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/files/access_webgui.pot b/user_manual/locale/nl/LC_MESSAGES/files/access_webgui.pot index 30c977439..0a9570b9f 100644 --- a/user_manual/locale/nl/LC_MESSAGES/files/access_webgui.pot +++ b/user_manual/locale/nl/LC_MESSAGES/files/access_webgui.pot @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021 Nextcloud GmbH +# Copyright (C) 2025 Nextcloud GmbH # This file is distributed under the same license as the Nextcloud latest User Manual package. # FIRST AUTHOR , YEAR. # # Translators: # Chris Raymaekers , 2021 +# Stephan Paternotte , 2025 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: Nextcloud latest User Manual latest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-13 18:09+0000\n" +"POT-Creation-Date: 2025-02-12 13:02+0000\n" "PO-Revision-Date: 2019-11-07 20:29+0000\n" -"Last-Translator: Chris Raymaekers , 2021\n" -"Language-Team: Dutch (https://www.transifex.com/nextcloud/teams/64236/nl/)\n" +"Last-Translator: Stephan Paternotte , 2025\n" +"Language-Team: Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -32,11 +33,15 @@ msgid "" "administrator has the option to disable these features, so if any of them " "are missing on your system ask your server administrator." msgstr "" -"Je krijgt toegang tot jouw Nextcloud bestanden via de Nextcloud webinterface" -" waar je bestanden kan maken, bekijken, bewerken, verwijderen, delen en " -"opnieuw delen. Jouw Nextcloud-beheerder heeft de mogelijkheid om deze " -"functies uit te schakelen. Contacteer je beheerder van je server als er een " -"van deze functies ontbreekt op jouw systeem." +"Je kunt toegang krijgen tot je Nextcloud-bestanden via de Nextcloud-" +"webinterface en bestanden aanmaken, bekijken, bewerken, verwijderen, delen " +"en opnieuw delen. Je Nextcloud-beheerder heeft de mogelijkheid om deze " +"functies uit te schakelen, dus als een van deze ontbreekt op jouw systeem, " +"vraag het dan aan je serverbeheerder." + +#: ../../files/access_webgui.rst:10 +msgid "The Files view screen." +msgstr "Het bestandsweergave scherm." #: ../../files/access_webgui.rst:14 msgid "Tagging files" @@ -49,11 +54,15 @@ msgid "" "after creating each tag. All tags are system tags, and are shared by all " "users on your Nextcloud server." msgstr "" -"Je kan labels toewijzen aan bestanden. Open een bestand in de detailweergave" -" om labels aan te maken. Voer vervolgens jouw tags in. Druk na het aanmaken " -"van elke label op de retourtoets om meer dan één label in te voeren. Alle " -"labels zijn systeem labels en worden gedeeld door alle gebruikers op jouw " -"Nextcloud server." +"Je kunt labels toewijzen aan bestanden. Om labels aan te maken, open je een " +"bestand in de Detailsweergave. Typ vervolgens je labels. Om meer dan één " +"label in te voeren, druk je na het maken van elk label op de enter-toets. " +"Alle labels zijn systeemlabels en worden gedeeld door alle gebruikers op je " +"Nextcloud-server." + +#: ../../files/access_webgui.rst:21 +msgid "Creating file tags." +msgstr "Bestandslabels aanmaken." #: ../../files/access_webgui.rst:24 msgid "Then use the Tags filter on the left sidebar to filter files by tags:" @@ -61,6 +70,10 @@ msgstr "" "Gebruik dan het Tags filter op de linker zijbalk om bestanden te filteren op" " tags:" +#: ../../files/access_webgui.rst:26 +msgid "Viewing file tags." +msgstr "Bestandslabels weergeven." + #: ../../files/access_webgui.rst:30 msgid "Comments" msgstr "Opmerkingen" @@ -70,13 +83,17 @@ msgid "" "Use the Details view to add and read comments on any file or folder. " "Comments are visible to everyone who has access to the file:" msgstr "" -"Gebruik de detailweergave om opmerkingen over een bestand of een map toe te " -"voegen en te lezen. Commentaar is zichtbaar voor iedereen die toegang heeft " -"tot het bestand:" +"Gebruik de Details-weergave om opmerkingen toe te voegen en te lezen over " +"elk bestand of elke map. Opmerkingen zijn zichtbaar voor iedereen die " +"toegang heeft tot het bestand:" + +#: ../../files/access_webgui.rst:35 +msgid "Creating and viewing comments." +msgstr "Opmerkingen aanmaken en weergeven." #: ../../files/access_webgui.rst:39 msgid "Video player" -msgstr "Video player" +msgstr "Videospeler" #: ../../files/access_webgui.rst:41 msgid "" @@ -97,6 +114,10 @@ msgstr "" "US/docs/Web/HTML/Supported_media_formats#Browser_compatibility voor " "ondersteunde multimedia-indelingen in webbrowsers." +#: ../../files/access_webgui.rst:46 +msgid "Watching a movie." +msgstr "Een film kijken." + #: ../../files/access_webgui.rst:50 msgid "File controls" msgstr "Bestandsbeheer" @@ -112,7 +133,7 @@ msgstr "" "serverbeheerder. Beweeg je cursor over een bestand of map om de " "bedieningselementen voor de volgende bewerkingen weer te geven:" -#: ../../files/access_webgui.rst:63 ../../files/access_webgui.rst:158 +#: ../../files/access_webgui.rst:56 ../../files/access_webgui.rst:157 msgid "Favorites" msgstr "Favorieten" @@ -122,6 +143,10 @@ msgstr "" "Klik op de ster links van het bestandspictogram om deze als favoriet te " "markeren:" +#: ../../files/access_webgui.rst:59 +msgid "Marking Favorite files." +msgstr "Favoriete bestanden markeren." + #: ../../files/access_webgui.rst:62 msgid "" "You can also quickly find all of your favorites with the Favorites filter on" @@ -130,7 +155,7 @@ msgstr "" "Je kan ook snel al jouw favorieten vinden met het Favorietenfilter aan de " "linker zijbalk." -#: ../../files/access_webgui.rst:72 +#: ../../files/access_webgui.rst:65 msgid "Overflow Menu" msgstr "Overloop Menu" @@ -142,11 +167,19 @@ msgstr "" "Het Meer menu (drie punten) geeft de bestandsdetails weer en maakt het " "mogelijk om bestanden te hernoemen, te downloaden of te verwijderen:" +#: ../../files/access_webgui.rst:69 +msgid "Overflow menu." +msgstr "Overloopmenu." + #: ../../files/access_webgui.rst:72 msgid "The Details view shows Activities, Sharing, and Versions information:" msgstr "" "De detailweergave toont informatie over activiteiten, delen en versies:" +#: ../../files/access_webgui.rst:74 +msgid "Details screen." +msgstr "Details-weergave." + #: ../../files/access_webgui.rst:77 msgid "" "The **Settings** gear icon at the lower left allows you to show or hide " @@ -164,6 +197,10 @@ msgstr "" "geven. Meestal zijn dit configuratiebestanden, dus de mogelijkheid om ze te " "verbergen vermindert de rommel." +#: ../../files/access_webgui.rst:84 +msgid "Hiding or displaying hidden files." +msgstr "Verborgen bestanden tonen of verbergen." + #: ../../files/access_webgui.rst:88 msgid "Previewing files" msgstr "Previewing bestanden" @@ -213,6 +250,10 @@ msgstr "" "Publieke share links zijn gemarkeerd met een kettingschakel icoon. Niet " "gedeelde mappen zijn niet gemarkeerd:" +#: ../../files/access_webgui.rst:110 +msgid "Share status icons." +msgstr "Statuspictogrammen voor delen." + #: ../../files/access_webgui.rst:114 msgid "Creating or uploading files and directories" msgstr "Bestanden en mappen aanmaken of uploaden" @@ -225,11 +266,15 @@ msgstr "" "Upload of creëer nieuwe bestanden of mappen direct in een Nextcloud map door" " te klikken op de knop *Nieuw* in de Files app:" +#: ../../files/access_webgui.rst:119 +msgid "The New file/folder/upload menu." +msgstr "Het menu Nieuw bestand/map/upload." + #: ../../files/access_webgui.rst:122 msgid "The *New* button provides the following options:" msgstr "De knop *Nieuw* biedt de volgende opties:" -#: ../../files/access_webgui.rst:126 +#: ../../files/access_webgui.rst:124 msgid "Up arrow" msgstr "Pijl omhoog" @@ -241,7 +286,7 @@ msgstr "" "Upload bestanden van je computer naar Nextcloud. Je kan ook bestanden " "uploaden door ze te slepen vanaf je bestandsbeheerder." -#: ../../files/access_webgui.rst:129 +#: ../../files/access_webgui.rst:128 msgid "Text file" msgstr "Tekstbestand" @@ -251,7 +296,7 @@ msgstr "" "Maakt een nieuw tekstbestand aan en voegt het bestand toe aan je huidige " "map." -#: ../../files/access_webgui.rst:132 +#: ../../files/access_webgui.rst:131 msgid "Folder" msgstr "Map" @@ -303,7 +348,7 @@ msgstr "" "De linker zijbalk op de pagina Bestanden bevat verschillende filters voor " "het snel sorteren en beheren van je bestanden." -#: ../../files/access_webgui.rst:155 +#: ../../files/access_webgui.rst:154 msgid "All files" msgstr "Alle bestanden" @@ -316,7 +361,7 @@ msgstr "" msgid "Files or folders marked with the yellow star." msgstr "Bestanden of mappen gemarkeerd met de gele ster." -#: ../../files/access_webgui.rst:161 +#: ../../files/access_webgui.rst:160 msgid "Shared with you" msgstr "Gedeeld met jou" @@ -326,7 +371,7 @@ msgstr "" "Toont alle bestanden die met jou worden gedeeld door een andere gebruiker of" " groep." -#: ../../files/access_webgui.rst:164 +#: ../../files/access_webgui.rst:163 msgid "Shared with others" msgstr "Gedeeld met anderen" @@ -335,7 +380,7 @@ msgid "Displays all files that you have shared with other users or groups." msgstr "" "Toont alle bestanden die je hebt gedeeld met andere gebruikers of groepen." -#: ../../files/access_webgui.rst:167 +#: ../../files/access_webgui.rst:166 msgid "Shared by link" msgstr "Gedeeld door link" @@ -344,7 +389,7 @@ msgid "Displays all files that are shared by you via public link." msgstr "" "Toont alle bestanden die door jou worden gedeeld via een publieke link." -#: ../../files/access_webgui.rst:171 +#: ../../files/access_webgui.rst:169 msgid "External Storage (optional)" msgstr "Externe opslag (optioneel)" From e65a79c6352923d10c26bbcbb23c6e0e3f45448d Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 05:27:19 +0000 Subject: [PATCH 0012/1895] Translate access_webgui.pot in nl 100% translated source file: 'access_webgui.pot' on 'nl'. --- user_manual/locale/nl/LC_MESSAGES/files/access_webgui.pot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/files/access_webgui.pot b/user_manual/locale/nl/LC_MESSAGES/files/access_webgui.pot index 0a9570b9f..6b590424f 100644 --- a/user_manual/locale/nl/LC_MESSAGES/files/access_webgui.pot +++ b/user_manual/locale/nl/LC_MESSAGES/files/access_webgui.pot @@ -238,7 +238,7 @@ msgstr "" #: ../../files/access_webgui.rst:105 msgid "Sharing status icons" -msgstr "Status iconen voor delen" +msgstr "Statuspictogrammen voor delen" #: ../../files/access_webgui.rst:107 msgid "" From 80b9c8d6e57b124c385be9a93d63cbe10eebc5a4 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 05:27:48 +0000 Subject: [PATCH 0013/1895] Translate access_webgui.pot in nl 100% translated source file: 'access_webgui.pot' on 'nl'. --- user_manual/locale/nl/LC_MESSAGES/files/access_webgui.pot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/files/access_webgui.pot b/user_manual/locale/nl/LC_MESSAGES/files/access_webgui.pot index 6b590424f..d6d7103e9 100644 --- a/user_manual/locale/nl/LC_MESSAGES/files/access_webgui.pot +++ b/user_manual/locale/nl/LC_MESSAGES/files/access_webgui.pot @@ -246,7 +246,7 @@ msgid "" "Public link shares are marked with a chain link. Unshared folders are not " "marked:" msgstr "" -"Elke map die gedeeld is, is gemarkeerd met het ``Shared`` overlay icoontje. " +"Elke map die gedeeld is, is gemarkeerd met het ``Shared``-pictogram. " "Publieke share links zijn gemarkeerd met een kettingschakel icoon. Niet " "gedeelde mappen zijn niet gemarkeerd:" From 714be3ac66a5c52d38633c3b733eb2bb3a747f25 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 05:39:55 +0000 Subject: [PATCH 0014/1895] Translate desktop_mobile_sync.pot in nl 100% translated source file: 'desktop_mobile_sync.pot' on 'nl'. --- .../LC_MESSAGES/files/desktop_mobile_sync.pot | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/files/desktop_mobile_sync.pot b/user_manual/locale/nl/LC_MESSAGES/files/desktop_mobile_sync.pot index a079888ef..f5461fa5e 100644 --- a/user_manual/locale/nl/LC_MESSAGES/files/desktop_mobile_sync.pot +++ b/user_manual/locale/nl/LC_MESSAGES/files/desktop_mobile_sync.pot @@ -1,19 +1,20 @@ # SOME DESCRIPTIVE TITLE. -# Copyright (C) 2023 Nextcloud GmbH +# Copyright (C) 2025 Nextcloud GmbH # This file is distributed under the same license as the Nextcloud latest User Manual package. # FIRST AUTHOR , YEAR. # # Translators: # Chris Raymaekers , 2021 +# Stephan Paternotte , 2025 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: Nextcloud latest User Manual latest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-01 16:07+0000\n" +"POT-Creation-Date: 2025-02-12 13:02+0000\n" "PO-Revision-Date: 2019-11-07 20:29+0000\n" -"Last-Translator: Chris Raymaekers , 2021\n" +"Last-Translator: Stephan Paternotte , 2025\n" "Language-Team: Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -72,3 +73,15 @@ msgstr "" "Bezoek je Persoonlijke pagina in jouw Nextcloud webinterface om " "downloadlinks te vinden voor Android en iOS mobiele synchronisatieclients. " "Of bezoek de `Nextcloud download pagina `_." + +#: ../../files/desktop_mobile_sync.rst:29 +msgid "" +"Unfortunately, 2-way-sync, a.k.a bidirectional sync, isn't fully implemented" +" in the Android client yet. See `this issue on GitHub " +"`_ for the current feature's" +" status." +msgstr "" +"Helaas is 2-weg-synchronisatie, ook wel bidirectionele synchronisatie " +"genoemd, nog niet helemaal geïmplementeerd in de Android-client. Zie `GitHub" +" `_ voor de huidige status " +"van de functie." From 14e0374e170d8dc7d65fdc2d8ce3665f170df538 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 06:22:10 +0000 Subject: [PATCH 0015/1895] Translate encrypting_files.pot in nl 100% translated source file: 'encrypting_files.pot' on 'nl'. --- .../nl/LC_MESSAGES/files/encrypting_files.pot | 179 +++++++++--------- 1 file changed, 90 insertions(+), 89 deletions(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot b/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot index 9f14d9e90..6b9f324f2 100644 --- a/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot +++ b/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021 Nextcloud GmbH +# Copyright (C) 2025 Nextcloud GmbH # This file is distributed under the same license as the Nextcloud latest User Manual package. # FIRST AUTHOR , YEAR. # # Translators: # Chris Raymaekers , 2021 # Julia Boersma, 2021 +# Stephan Paternotte , 2025 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: Nextcloud latest User Manual latest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-03 13:19+0000\n" +"POT-Creation-Date: 2025-02-12 13:02+0000\n" "PO-Revision-Date: 2019-11-07 20:29+0000\n" -"Last-Translator: Julia Boersma, 2021\n" -"Language-Team: Dutch (https://www.transifex.com/nextcloud/teams/64236/nl/)\n" +"Last-Translator: Stephan Paternotte , 2025\n" +"Language-Team: Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -33,19 +34,19 @@ msgid "" "automatically encrypted on the server. Encryption is server-wide, so when it" " is enabled you cannot choose to keep your files unencrypted. You don't have" " to do anything special, as it uses your Nextcloud login as the password for" -" your unique private encryption key. Just log in and out and manage and " +" your unique private encryption key. Just log out and in and manage and " "share your files as you normally do, and you can still change your password " "whenever you want." msgstr "" -"Nextcloud bevat een Encryptie-applicatie voor de server, en wanneer deze is " -"ingeschakeld door je Nextcloud-beheerder worden al je Nextcloud-" -"databestanden automatisch versleuteld op de server. Encryptie is " -"serverbreed, dus als het is ingeschakeld kan je er niet voor kiezen om je " -"bestanden onversleuteld te houden. Je hoeft niets bijzonders te doen, want " -"het gebruikt je Nextcloud-login als wachtwoord voor jouw unieke privé-" -"coderingssleutel. Je hoeft alleen maar in en uit te loggen en je bestanden " -"te beheren en te delen zoals je normaal doet, en je kan je wachtwoord nog " -"steeds wijzigen wanneer je maar wil." +"Nextcloud bevat een encryptie-app aan de serverzijde, en wanneer deze door " +"je Nextcloud-beheerder is ingeschakeld, worden al uw Nextcloud-" +"gegevensbestanden automatisch op de server versleuteld. Encryptie is " +"serverbreed, dus wanneer het is ingeschakeld, is er geen keuze om bestanden " +"niet-versleuteld te houden. Je hoeft niets bijzonders te doen, aangezien je " +"Nextcloud-login wordt gebruikt als het wachtwoord voor jouw unieke privé-" +"encryptiesleutel. Log gewoon uit en weer in en beheer en deel je bestanden " +"zoals gewoonlijk, en je kunt je wachtwoord altijd wijzigen wanneer je maar " +"wilt." #: ../../files/encrypting_files.rst:14 msgid "" @@ -71,19 +72,19 @@ msgid "" "If your Nextcloud server is not connected to any remote storage services, " "then it is better to use some other form of encryption such as file-level or" " whole disk encryption. Because the keys are kept on your Nextcloud server, " -"it is possible for your Nextcloud admin to snoop in your files, and if the " -"server is compromised the intruder may get access to your files. (Read " -"`Encryption in Nextcloud `_ to learn more.)" msgstr "" -"Als jouw Nextcloud server niet is aangesloten op een externe opslagservice, " -"dan is het beter om een andere vorm van versleuteling te gebruiken, zoals " -"encryptie op bestandsniveau of encryptie van de hele schijf. Omdat de " -"sleutels op je Nextcloud server worden bewaard, is het mogelijk dat jouw " -"Nextcloud admin in je bestanden kan snuffelen, en als de server " -"gecompromitteerd is kan de indringer toegang krijgen tot je bestanden. (Lees" -" `Encryptie in Nextcloud `_ voor meer informatie)." +"Als je Nextcloud-server niet verbonden is met externe opslagdiensten, is het" +" beter om een andere vorm van encryptie te gebruiken, zoals bestandniveau- " +"of schijfversleuteling. Omdat de sleutels op jouw Nextcloud-server worden " +"bewaard, is het mogelijk dat je Nextcloud-beheerder je bestanden kan " +"bekijken, en als de server wordt gecompromitteerd, kan de indringer toegang " +"krijgen tot jouw bestanden. (Lees `Encryptie in Nextcloud " +"`_ voor meer " +"informatie.)" #: ../../files/encrypting_files.rst:31 msgid "Encryption FAQ" @@ -96,63 +97,62 @@ msgstr "Hoe kan versleuteling worden uitgeschakeld?" #: ../../files/encrypting_files.rst:36 msgid "" "The only way to disable encryption is to run the `\"decrypt all\" " -"`_ script, which decrypts all files and disables " -"encryption." +"`_ script, which decrypts all files and disables encryption." msgstr "" -"De enige manier om de encryptie uit te schakelen is door de `\"decrypt all\"" -" (alles decoderen) functie " -"`_ uit te voeren. Dit decodeert alle bestanden en schakelt" -" de encryptie uit." +"De enige manier om de versleuteling uit te schakelen is door het script " +"`\"decrypt all\" " +"`_ uit te voeren, dat alle bestanden ontsleutelt en de versleuteling " +"uitschakelt." -#: ../../files/encrypting_files.rst:41 +#: ../../files/encrypting_files.rst:43 msgid "Is it possible to disable encryption with the recovery key?" msgstr "" "Is het mogelijk om de encryptie uit te schakelen met de herstelsleutel?" -#: ../../files/encrypting_files.rst:43 +#: ../../files/encrypting_files.rst:45 msgid "" "Yes, *if* every user uses the `file recovery key " -"`_, `\"decrypt all\" " -"`_ will use it to decrypt all files." +"`_, `\"decrypt all\" " +"`_ will use it to decrypt all files." msgstr "" -"Ja, *als* elke gebruiker de `bestand herstelsleutel " -"`_ gebruikt, zal `\"decrypt all\" " -"`_ deze gebruiken om alle bestanden te decoderen." +"Ja, *als* elke gebruiker de `Bestandenherstelcode " +"`_ gebruikt, zal \"decrypt all\" " +"`_ deze gebruiken om alle bestanden te ontsleutelen." -#: ../../files/encrypting_files.rst:50 +#: ../../files/encrypting_files.rst:52 msgid "Can encryption be disabled without the user's password?" msgstr "" "Kan de encryptie worden uitgeschakeld zonder het wachtwoord van de " "gebruiker?" -#: ../../files/encrypting_files.rst:52 +#: ../../files/encrypting_files.rst:54 msgid "" "If you don't have the users password or `file recovery key " -"`_, then there is no way to decrypt all " -"files. What's more, running it on login would be dangerous, because you " -"would most likely run into timeouts." +"`_, then there is no way to decrypt all files. " +"What's more, running it on login would be dangerous, because you would most " +"likely run into timeouts." msgstr "" "Als je het gebruikerswachtwoord of `bestandherstel sleutel " -"`_, niet meer hebt, dan is er geen manier" -" om alle bestanden te decoderen. Bovendien zou het gevaarlijk zijn om het " -"tijdens het inloggen uit te voeren, omdat dit hoogstwaarschijnlijk tot time-" -"outs zou leiden." +"`_, niet meer hebt, dan is er geen manier om alle " +"bestanden te decoderen. Bovendien zou het gevaarlijk zijn om het tijdens het" +" inloggen uit te voeren, omdat dit hoogstwaarschijnlijk tot time-outs zou " +"leiden." -#: ../../files/encrypting_files.rst:58 +#: ../../files/encrypting_files.rst:62 msgid "Is it planned to move this to the next user login or a background job?" msgstr "" "Is het gepland om dit te verplaatsen naar de volgende gebruikerslogin of een" " achtergrond job?" -#: ../../files/encrypting_files.rst:60 +#: ../../files/encrypting_files.rst:64 msgid "" "If we did that, then we would need to store your login password in the " "database. This could be seen as a security issue, so nothing like that is " @@ -162,11 +162,11 @@ msgstr "" "moeten opslaan. Dit zou gezien kunnen worden als een veiligheidsprobleem, " "dus zoiets is niet gepland." -#: ../../files/encrypting_files.rst:64 +#: ../../files/encrypting_files.rst:68 msgid "Is group Sharing possible with the recovery key?" msgstr "Is groepsdeling mogelijk met de herstelsleutel?" -#: ../../files/encrypting_files.rst:66 +#: ../../files/encrypting_files.rst:70 msgid "" "If you mean adding users to groups and make it magically work? No. This only" " works with the master key." @@ -174,11 +174,11 @@ msgstr "" "Als je bedoelt dat je gebruikers toevoegt aan groepen en het magisch laat " "werken? Nee. Dit werkt alleen met de hoofdsleutel." -#: ../../files/encrypting_files.rst:70 +#: ../../files/encrypting_files.rst:74 msgid "Using encryption" msgstr "Gebruik van encryptie" -#: ../../files/encrypting_files.rst:72 +#: ../../files/encrypting_files.rst:76 msgid "" "Nextcloud encryption is pretty much set it and forget it, but you have a few" " options you can use." @@ -186,21 +186,22 @@ msgstr "" "Nextcloud versleuteling is zo ingesteld dat je het kan vergeten, maar je " "hebt een paar opties die je kunt gebruiken." -#: ../../files/encrypting_files.rst:75 +#: ../../files/encrypting_files.rst:79 msgid "" -"When your Nextcloud admin enables encryption for the first time, you must " -"log out and then log back in to create your encryption keys and encrypt your" -" files. When encryption has been enabled on your Nextcloud server you will " -"see a yellow banner on your Files page warning you to log out and then log " -"back in:" +"When your Nextcloud administrator enables encryption for the first time, you" +" must log out and then log back in to create your encryption keys and " +"encrypt your files. When encryption has been enabled on your Nextcloud " +"server you will see a yellow banner on your Files page warning you to log " +"out and then log back in:" msgstr "" -"Nadat je Nextcloud admin encryptie heeft geactiveerd, moet je uitloggen en " -"vervolgens weer inloggen om je encryptiesleutels aan te maken en je " -"bestanden te versleutelen. Wanneer de encryptie is ingeschakeld op je " -"Nextcloud-server zie je een gele banner op je Bestandenpagina die je " -"aanmaant uit te loggen en vervolgens weer in te loggen:" +"Wanneer je Nextcloud-beheerder voor de eerste keer versleuteling inschakelt," +" moet je uitloggen en daarna weer inloggen om jouw versleutelingssleutels " +"aan te maken en je bestanden te versleutelen. Wanneer versleuteling is " +"ingeschakeld op je Nextcloud-server, zie je een gele banner op je " +"Bestandenpagina die je waarschuwt om uit te loggen en daarna weer in te " +"loggen:" -#: ../../files/encrypting_files.rst:82 +#: ../../files/encrypting_files.rst:86 msgid "" "When you log back in it takes a few minutes to work, depending on how many " "files you have, and then you are returned to your default Nextcloud page." @@ -209,7 +210,7 @@ msgstr "" "van het aantal bestanden dat je hebt, en vervolgens word je teruggestuurd " "naar uw standaard Nextcloud pagina." -#: ../../files/encrypting_files.rst:88 +#: ../../files/encrypting_files.rst:92 msgid "" "You must never lose your Nextcloud password, because you will lose access to" " your files. Though there is an optional recovery option that your Nextcloud" @@ -221,11 +222,11 @@ msgstr "" "Nextcloud-beheerder kan inschakelen; zie het gedeelte Herstel Sleutel " "Wachtwoord (hieronder) om hier meer over te weten te komen." -#: ../../files/encrypting_files.rst:94 +#: ../../files/encrypting_files.rst:98 msgid "Sharing encrypted files" msgstr "Het delen van gecodeerde bestanden" -#: ../../files/encrypting_files.rst:96 +#: ../../files/encrypting_files.rst:100 msgid "" "Only users who have private encryption keys have access to shared encrypted " "files and folders. Users who have not yet created their private encryption " @@ -242,7 +243,7 @@ msgstr "" "de tekst \"Encryptie-applicatie is ingeschakeld, maar je sleutels zijn niet " "geïnitialiseerd, meld je alstublieft af en log opnieuw in\"." -#: ../../files/encrypting_files.rst:103 +#: ../../files/encrypting_files.rst:107 msgid "" "Share owners may need to re-share files after encryption is enabled; users " "trying to access the share will see a message advising them to ask the share" @@ -260,11 +261,11 @@ msgstr "" "bijgewerkt en kan de eigenaar van de share de individuele shares " "verwijderen." -#: ../../files/encrypting_files.rst:111 +#: ../../files/encrypting_files.rst:115 msgid "Recovery key password" msgstr "Herstelsleutel wachtwoord" -#: ../../files/encrypting_files.rst:113 +#: ../../files/encrypting_files.rst:117 msgid "" "If your Nextcloud administrator has enabled the recovery key feature, you " "can choose to use this feature for your account. If you enable \"Password " @@ -281,11 +282,11 @@ msgstr "" "Als de herstelsleutel niet is ingeschakeld, dan is er geen manier om jouw " "bestanden te herstellen als u uw login wachtwoord verliest." -#: ../../files/encrypting_files.rst:123 +#: ../../files/encrypting_files.rst:127 msgid "Files not encrypted" msgstr "Bestanden niet gecodeerd" -#: ../../files/encrypting_files.rst:125 +#: ../../files/encrypting_files.rst:129 msgid "" "Only the data in your files is encrypted, and not the filenames or folder " "structures. These files are never encrypted:" @@ -293,27 +294,27 @@ msgstr "" "Alleen de gegevens in jouw bestanden zijn versleuteld, en niet de " "bestandsnamen of map structuren. Deze bestanden zijn nooit gecodeerd:" -#: ../../files/encrypting_files.rst:128 +#: ../../files/encrypting_files.rst:132 msgid "Old files in the trash bin." msgstr "Oude bestanden in de vuilnisbak." -#: ../../files/encrypting_files.rst:129 +#: ../../files/encrypting_files.rst:133 msgid "Image thumbnails from the Gallery app." msgstr "Afbeeldingsminiaturen van de Gallerie app." -#: ../../files/encrypting_files.rst:130 +#: ../../files/encrypting_files.rst:134 msgid "Previews from the Files app." msgstr "Previews van de Bestanden app." -#: ../../files/encrypting_files.rst:131 +#: ../../files/encrypting_files.rst:135 msgid "The search index from the full text search app." msgstr "De zoekindex van de volledige tekst zoekapplicatie." -#: ../../files/encrypting_files.rst:132 +#: ../../files/encrypting_files.rst:136 msgid "Third-party app data" msgstr "App-gegevens van derden" -#: ../../files/encrypting_files.rst:134 +#: ../../files/encrypting_files.rst:138 msgid "" "Only those files that are shared with third-party storage providers can be " "encrypted, the rest of the files may not be encrypted." @@ -321,11 +322,11 @@ msgstr "" "Alleen de bestanden die worden gedeeld met externe opslagaanbieders kunnen " "worden gecodeerd, de rest van de bestanden kunnen niet worden gecodeerd." -#: ../../files/encrypting_files.rst:138 +#: ../../files/encrypting_files.rst:142 msgid "Change private key password" msgstr "Wijzig privé sleutelwachtwoord" -#: ../../files/encrypting_files.rst:140 +#: ../../files/encrypting_files.rst:144 msgid "" "This option is only available if the encryption password has not been " "changed by the administrator, but only the log-in password. This can occur " From 472d7f77376e8057f7eb4552923c9c1bef7d5b39 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 06:23:19 +0000 Subject: [PATCH 0016/1895] Translate encrypting_files.pot in nl 100% translated source file: 'encrypting_files.pot' on 'nl'. --- .../locale/nl/LC_MESSAGES/files/encrypting_files.pot | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot b/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot index 6b9f324f2..69c9f6914 100644 --- a/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot +++ b/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot @@ -38,14 +38,14 @@ msgid "" "share your files as you normally do, and you can still change your password " "whenever you want." msgstr "" -"Nextcloud bevat een encryptie-app aan de serverzijde, en wanneer deze door " -"je Nextcloud-beheerder is ingeschakeld, worden al uw Nextcloud-" -"gegevensbestanden automatisch op de server versleuteld. Encryptie is " +"Nextcloud bevat een versleutelings-app aan de serverzijde, en wanneer deze " +"door je Nextcloud-beheerder is ingeschakeld, worden al uw Nextcloud-" +"gegevensbestanden automatisch op de server versleuteld. Versleuteling is " "serverbreed, dus wanneer het is ingeschakeld, is er geen keuze om bestanden " "niet-versleuteld te houden. Je hoeft niets bijzonders te doen, aangezien je " "Nextcloud-login wordt gebruikt als het wachtwoord voor jouw unieke privé-" -"encryptiesleutel. Log gewoon uit en weer in en beheer en deel je bestanden " -"zoals gewoonlijk, en je kunt je wachtwoord altijd wijzigen wanneer je maar " +"versleutelingscode. Log gewoon uit en weer in en beheer en deel je bestanden" +" zoals gewoonlijk, en je kunt je wachtwoord altijd wijzigen wanneer je maar " "wilt." #: ../../files/encrypting_files.rst:14 From 5d04ae598dfdeac587c6e3833639ca5ae0eb0f85 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 06:24:01 +0000 Subject: [PATCH 0017/1895] Translate encrypting_files.pot in nl 100% translated source file: 'encrypting_files.pot' on 'nl'. --- .../locale/nl/LC_MESSAGES/files/encrypting_files.pot | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot b/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot index 69c9f6914..d5f5bb329 100644 --- a/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot +++ b/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot @@ -78,11 +78,11 @@ msgid "" "nextcloud/>`_ to learn more.)" msgstr "" "Als je Nextcloud-server niet verbonden is met externe opslagdiensten, is het" -" beter om een andere vorm van encryptie te gebruiken, zoals bestandniveau- " -"of schijfversleuteling. Omdat de sleutels op jouw Nextcloud-server worden " -"bewaard, is het mogelijk dat je Nextcloud-beheerder je bestanden kan " -"bekijken, en als de server wordt gecompromitteerd, kan de indringer toegang " -"krijgen tot jouw bestanden. (Lees `Encryptie in Nextcloud " +" beter om een andere vorm van versleuteling te gebruiken, zoals " +"bestandniveau- of schijfversleuteling. Omdat de sleutels op jouw Nextcloud-" +"server worden bewaard, is het mogelijk dat je Nextcloud-beheerder je " +"bestanden kan bekijken, en als de server wordt gecompromitteerd, kan de " +"indringer toegang krijgen tot jouw bestanden. (Lees `Encryptie in Nextcloud " "`_ voor meer " "informatie.)" From b975bd8599c5417b80d4f6607ab23280e651f83e Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 06:24:52 +0000 Subject: [PATCH 0018/1895] Translate encrypting_files.pot in nl 100% translated source file: 'encrypting_files.pot' on 'nl'. --- user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot b/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot index d5f5bb329..910c9e9ba 100644 --- a/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot +++ b/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot @@ -109,7 +109,7 @@ msgstr "" #: ../../files/encrypting_files.rst:43 msgid "Is it possible to disable encryption with the recovery key?" msgstr "" -"Is het mogelijk om de encryptie uit te schakelen met de herstelsleutel?" +"Is het mogelijk om de versleuteling met de herstelcode uit te schakelen?" #: ../../files/encrypting_files.rst:45 msgid "" From bb3f445636b5bf2ead13c81ea53abfe7da4c57c0 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 06:25:11 +0000 Subject: [PATCH 0019/1895] Translate encrypting_files.pot in nl 100% translated source file: 'encrypting_files.pot' on 'nl'. --- user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot b/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot index 910c9e9ba..0654acc75 100644 --- a/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot +++ b/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot @@ -128,7 +128,7 @@ msgstr "" #: ../../files/encrypting_files.rst:52 msgid "Can encryption be disabled without the user's password?" msgstr "" -"Kan de encryptie worden uitgeschakeld zonder het wachtwoord van de " +"Kan de versleuteling worden uitgeschakeld zonder het wachtwoord van de " "gebruiker?" #: ../../files/encrypting_files.rst:54 From 4a30a19582e6a531bf976f8c0239402e779b7580 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 06:25:37 +0000 Subject: [PATCH 0020/1895] Translate encrypting_files.pot in nl 100% translated source file: 'encrypting_files.pot' on 'nl'. --- user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot b/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot index 0654acc75..c3af875fd 100644 --- a/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot +++ b/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot @@ -176,7 +176,7 @@ msgstr "" #: ../../files/encrypting_files.rst:74 msgid "Using encryption" -msgstr "Gebruik van encryptie" +msgstr "Versleuteling gebruiken" #: ../../files/encrypting_files.rst:76 msgid "" From a01e3c31702c63fadd4748eb1bd2f611b7946db4 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 06:26:35 +0000 Subject: [PATCH 0021/1895] Translate encrypting_files.pot in nl 100% translated source file: 'encrypting_files.pot' on 'nl'. --- user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot b/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot index c3af875fd..76c6de4e6 100644 --- a/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot +++ b/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot @@ -183,8 +183,8 @@ msgid "" "Nextcloud encryption is pretty much set it and forget it, but you have a few" " options you can use." msgstr "" -"Nextcloud versleuteling is zo ingesteld dat je het kan vergeten, maar je " -"hebt een paar opties die je kunt gebruiken." +"Versleuteling in Nextcloud is zo ingesteld dat je het kan vergeten, maar er " +"zijn een paar opties die je zou kunnen gebruiken." #: ../../files/encrypting_files.rst:79 msgid "" From 4a83760d9411721127b820468712bc1c1f96022e Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 06:27:00 +0000 Subject: [PATCH 0022/1895] Translate encrypting_files.pot in nl 100% translated source file: 'encrypting_files.pot' on 'nl'. --- user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot b/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot index 76c6de4e6..371f5d9fd 100644 --- a/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot +++ b/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot @@ -224,7 +224,7 @@ msgstr "" #: ../../files/encrypting_files.rst:98 msgid "Sharing encrypted files" -msgstr "Het delen van gecodeerde bestanden" +msgstr "Versleutelde bestanden delen" #: ../../files/encrypting_files.rst:100 msgid "" From be44eac1d1138eb12bee26fb8e712bf301aca85a Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 06:28:13 +0000 Subject: [PATCH 0023/1895] Translate encrypting_files.pot in nl 100% translated source file: 'encrypting_files.pot' on 'nl'. --- .../locale/nl/LC_MESSAGES/files/encrypting_files.pot | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot b/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot index 371f5d9fd..f98be19bf 100644 --- a/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot +++ b/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot @@ -235,9 +235,9 @@ msgid "" " see a yellow warning banner that says \"Encryption App is enabled but your " "keys are not initialized, please log-out and log-in again.\"" msgstr "" -"Alleen gebruikers die over een eigen encryptiesleutel beschikken, hebben " -"toegang tot gedeelde gecodeerde bestanden en mappen. Gebruikers die nog geen" -" eigen encryptiesleutel hebben, hebben geen toegang tot gecodeerde gedeelde " +"Alleen gebruikers die over een eigen versleutelingscode beschikken, hebben " +"toegang tot gedeelde versleutelde bestanden en mappen. Gebruikers die nog " +"geen eigen code hebben, hebben geen toegang tot gedeelde versleutelde " "bestanden; ze zien wel mappen en bestandsnamen, maar kunnen de bestanden " "niet openen of downloaden. Ze zullen een gele waarschuwingsbanner zien met " "de tekst \"Encryptie-applicatie is ingeschakeld, maar je sleutels zijn niet " From 4941871e421ebc98383719a823c792a75bf3861f Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 06:28:41 +0000 Subject: [PATCH 0024/1895] Translate encrypting_files.pot in nl 100% translated source file: 'encrypting_files.pot' on 'nl'. --- .../nl/LC_MESSAGES/files/encrypting_files.pot | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot b/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot index f98be19bf..870b0b3bc 100644 --- a/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot +++ b/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot @@ -252,13 +252,13 @@ msgid "" "access the share. This updates the encryption, and then the share owner can " "remove the individual shares." msgstr "" -"Het kan zijn dat de eigenaar bestanden opnieuw moet delen nadat de encryptie" -" is ingeschakeld; gebruikers die toegang proberen te krijgen tot de share " -"zullen een bericht zien waarin hen wordt geadviseerd de eigenaar van de " -"share te vragen het bestand opnieuw met hen te delen. Voor individuele " -"shares, un-share en re-share het bestand. Voor groep shares, delen met " -"personen die geen toegang hebben tot de share. Hierdoor wordt de codering " -"bijgewerkt en kan de eigenaar van de share de individuele shares " +"Het kan zijn dat de eigenaar bestanden opnieuw moet delen nadat de " +"versleuteling is ingeschakeld; gebruikers die toegang proberen te krijgen " +"tot de share zullen een bericht zien waarin hen wordt geadviseerd de " +"eigenaar van de share te vragen het bestand opnieuw met hen te delen. Voor " +"individuele shares, un-share en re-share het bestand. Voor groep shares, " +"delen met personen die geen toegang hebben tot de share. Hierdoor wordt de " +"codering bijgewerkt en kan de eigenaar van de share de individuele shares " "verwijderen." #: ../../files/encrypting_files.rst:115 From 574ac1d9ce41adb7d805aaefc4d344be792cf59e Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 06:31:21 +0000 Subject: [PATCH 0025/1895] Translate encrypting_files.pot in nl 100% translated source file: 'encrypting_files.pot' on 'nl'. --- user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot b/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot index 870b0b3bc..40c526c67 100644 --- a/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot +++ b/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot @@ -284,7 +284,7 @@ msgstr "" #: ../../files/encrypting_files.rst:127 msgid "Files not encrypted" -msgstr "Bestanden niet gecodeerd" +msgstr "Bestanden niet versleuteld" #: ../../files/encrypting_files.rst:129 msgid "" From 2908492375ef2ccc6854290fe56a100cdfd1b14f Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 06:38:25 +0000 Subject: [PATCH 0026/1895] Translate encrypting_files.pot in nl 100% translated source file: 'encrypting_files.pot' on 'nl'. --- user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot b/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot index 40c526c67..23b37d2fa 100644 --- a/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot +++ b/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot @@ -291,8 +291,8 @@ msgid "" "Only the data in your files is encrypted, and not the filenames or folder " "structures. These files are never encrypted:" msgstr "" -"Alleen de gegevens in jouw bestanden zijn versleuteld, en niet de " -"bestandsnamen of map structuren. Deze bestanden zijn nooit gecodeerd:" +"Alleen de gegevens in jouw bestanden zijn versleuteld, niet de bestandsnamen" +" of mappenstructuren. De volgende bestanden zijn nooit gecodeerd:" #: ../../files/encrypting_files.rst:132 msgid "Old files in the trash bin." From 5cea529c3993accaece2fb481b156b77ca035869 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 06:39:15 +0000 Subject: [PATCH 0027/1895] Translate encrypting_files.pot in nl 100% translated source file: 'encrypting_files.pot' on 'nl'. --- user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot b/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot index 23b37d2fa..e6267a2e0 100644 --- a/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot +++ b/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot @@ -320,7 +320,7 @@ msgid "" "encrypted, the rest of the files may not be encrypted." msgstr "" "Alleen de bestanden die worden gedeeld met externe opslagaanbieders kunnen " -"worden gecodeerd, de rest van de bestanden kunnen niet worden gecodeerd." +"worden versleuteld, de overige bestanden niet." #: ../../files/encrypting_files.rst:142 msgid "Change private key password" From 4b2bd292441f8787c6b1371217aebf97690801f5 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 06:40:33 +0000 Subject: [PATCH 0028/1895] Translate encrypting_files.pot in nl 100% translated source file: 'encrypting_files.pot' on 'nl'. --- user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot b/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot index e6267a2e0..c7e8dd635 100644 --- a/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot +++ b/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot @@ -342,5 +342,5 @@ msgstr "" "(bijvoorbeeld LDAP) en jouw login-wachtwoord met die backendconfiguratie " "heeft gewijzigd. In dit geval kan je jouw versleutelingswachtwoord instellen" " op jouw nieuwe login wachtwoord door je oude en nieuwe login wachtwoord op " -"te geven. De Encryptie-app werkt alleen als je login-wachtwoord en je " -"encryptie-wachtwoord identiek zijn." +"te geven. De Versleutelings-app werkt alleen als je login-wachtwoord en je " +"versleutelingswachtwoord identiek zijn." From 52a5fd3838c73928edbb8acf69e15668a588f3ef Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 06:45:48 +0000 Subject: [PATCH 0029/1895] Translate federated_cloud_sharing.pot in nl 100% translated source file: 'federated_cloud_sharing.pot' on 'nl'. --- .../files/federated_cloud_sharing.pot | 54 +++++++++---------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/files/federated_cloud_sharing.pot b/user_manual/locale/nl/LC_MESSAGES/files/federated_cloud_sharing.pot index a5c71063f..bf8c4fd0a 100644 --- a/user_manual/locale/nl/LC_MESSAGES/files/federated_cloud_sharing.pot +++ b/user_manual/locale/nl/LC_MESSAGES/files/federated_cloud_sharing.pot @@ -1,20 +1,20 @@ # SOME DESCRIPTIVE TITLE. -# Copyright (C) 2023 Nextcloud GmbH +# Copyright (C) 2025 Nextcloud GmbH # This file is distributed under the same license as the Nextcloud latest User Manual package. # FIRST AUTHOR , YEAR. # # Translators: # Chris Raymaekers , 2021 -# Julia Boersma, 2021 +# Stephan Paternotte , 2025 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: Nextcloud latest User Manual latest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-01 16:07+0000\n" +"POT-Creation-Date: 2025-02-16 14:31+0000\n" "PO-Revision-Date: 2019-11-07 20:29+0000\n" -"Last-Translator: Julia Boersma, 2021\n" +"Last-Translator: Stephan Paternotte , 2025\n" "Language-Team: Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,14 +32,14 @@ msgid "" "servers, in effect creating your own cloud of Nextclouds. You can create " "direct share links with users on other Nextcloud servers." msgstr "" -"Federation Sharing stelt je in staat om bestand shares te koppelen vanaf " -"externe Nextcloud servers, waardoor je in feite jouw eigen cloud van " -"Nextclouds kan creëren. Je kan directe share links maken met gebruikers op " -"andere Nextcloud servers." +"Federation Sharing stelt je in staat om bestand-shares te koppelen vanaf " +"externe Nextcloud-servers, waardoor je in feite jouw eigen cloud van " +"Nextclouds kan creëren. Je kan directe share-links maken met gebruikers op " +"andere Nextcloud-servers." #: ../../files/federated_cloud_sharing.rst:10 msgid "Creating a new Federation Share" -msgstr "Het aanmaken van een nieuwe Federation Share" +msgstr "Een nieuwe Federation Share aanmaken" #: ../../files/federated_cloud_sharing.rst:12 msgid "" @@ -53,29 +53,29 @@ msgstr "" #: ../../files/federated_cloud_sharing.rst:15 msgid "" -"1. Go to your ``Files`` page and click the **Share** icon on the file or " +"Go to your ``Files`` page and click the **Share** icon on the file or " "directory you want to share. In the sidebar enter the username and URL of " "the remote user in this form: ``@``. The form " "automatically confirms the address that you type and labels it as " "\"remote\". Click on the label." msgstr "" -"1. Ga naar jouw ``Bestanden`` pagina en klik op het **Delen** pictogram op " -"het bestand of de map die je wil delen. Voer in de zijbalk de gebruikersnaam" -" en URL van de externe gebruiker in dit formulier in: ``@``. Het formulier geeft automatisch het adres weer dat je invoert" -" en labelt het als \"remote\". Klik op het label." +"Ga naar je \"Bestanden\"-pagina en klik op het pictogram **Delen** van het " +"te delen bestand of map. Voer in de zijbalk de gebruikersnaam en URL van de " +"externe gebruiker in deze vorm in: \"@\". Het " +"formulier bevestigt automatisch het adres dat je typt en labelt het als " +"\"extern\". Klik op het label." #: ../../files/federated_cloud_sharing.rst:22 msgid "" -"2. When your local Nextcloud server makes a successful connection with the " +"When your local Nextcloud server makes a successful connection with the " "remote Nextcloud server you'll see a confirmation. Your only share option is" " **Can edit**." msgstr "" -"2. Wanneer je lokale Nextcloud server een succesvolle verbinding maakt met " -"de externe Nextcloud server zie je een bevestiging. Je enige optie om te " -"delen is **Kan bewerken**." +"Wanneer je lokale Nextcloud-server succesvol verbinding maakt met de externe" +" Nextcloud-server, zie je een bevestiging. Je enige deeloptie is **Kan " +"bewerken**." -#: ../../files/federated_cloud_sharing.rst:26 +#: ../../files/federated_cloud_sharing.rst:25 msgid "" "Click the Share button anytime to see who you have shared your file with. " "Remove your linked share anytime by clicking the trash can icon. This only " @@ -86,18 +86,18 @@ msgstr "" "pictogram van de vuilnisbak te klikken. Hierdoor wordt alleen de share " "ontkoppeld en worden geen bestanden verwijderd." -#: ../../files/federated_cloud_sharing.rst:31 +#: ../../files/federated_cloud_sharing.rst:30 msgid "Creating a new Federated Cloud Share via email" msgstr "Het aanmaken van een nieuw Federated Cloud Share via e-mail" -#: ../../files/federated_cloud_sharing.rst:33 +#: ../../files/federated_cloud_sharing.rst:32 msgid "" "Use this method when you are sharing with users on ownCloud 8.x and older." msgstr "" "Gebruik deze methode wanneer je deelt met gebruikers op ownCloud 8.x en " "ouder." -#: ../../files/federated_cloud_sharing.rst:35 +#: ../../files/federated_cloud_sharing.rst:34 msgid "" "What if you do not know the username or URL? Then you can have Nextcloud " "create the link for you and email it to your recipient." @@ -105,7 +105,7 @@ msgstr "" "Wat als je de gebruikersnaam of URL niet kent? Dan kan je Nextcloud de link " "voor jou laten maken en deze e-mailen naar je ontvanger." -#: ../../files/federated_cloud_sharing.rst:40 +#: ../../files/federated_cloud_sharing.rst:39 msgid "" "When your recipient receives your email they will have to take a number of " "steps to complete the share link. First they must open the link you sent " @@ -116,7 +116,7 @@ msgstr "" "openen die je hen in een webbrowser hebt gestuurd en vervolgens op de knop " "**Toevoegen aan uw Nextcloud** klikken." -#: ../../files/federated_cloud_sharing.rst:46 +#: ../../files/federated_cloud_sharing.rst:45 msgid "" "The **Add to your Nextcloud** button changes to a form field, and your " "recipient needs to enter the URL of their Nextcloud or ownCloud server in " @@ -126,7 +126,7 @@ msgstr "" "jouw ontvanger moet in dit veld de URL van zijn Nextcloud of ownCloud-server" " invoeren en op de retourtoets drukken, of op de pijl klikken." -#: ../../files/federated_cloud_sharing.rst:52 +#: ../../files/federated_cloud_sharing.rst:51 msgid "" "Next, they will see a dialog asking to confirm. All they have to do is click" " the **Add remote share** button and they're finished." @@ -135,7 +135,7 @@ msgstr "" "enige wat ze hoeven te doen is op de knop **Delen op afstand toevoegen** te " "klikken en ze zijn klaar." -#: ../../files/federated_cloud_sharing.rst:55 +#: ../../files/federated_cloud_sharing.rst:54 msgid "" "Remove your linked share anytime by clicking the trash can icon. This only " "unlinks the share, and does not delete any files." From 3510d365cc490c86f3fe2b40b958b52946d90553 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 07:02:50 +0000 Subject: [PATCH 0030/1895] Translate federated_cloud_sharing.pot in nl 100% translated source file: 'federated_cloud_sharing.pot' on 'nl'. --- .../locale/nl/LC_MESSAGES/files/federated_cloud_sharing.pot | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/files/federated_cloud_sharing.pot b/user_manual/locale/nl/LC_MESSAGES/files/federated_cloud_sharing.pot index bf8c4fd0a..6ef7b666f 100644 --- a/user_manual/locale/nl/LC_MESSAGES/files/federated_cloud_sharing.pot +++ b/user_manual/locale/nl/LC_MESSAGES/files/federated_cloud_sharing.pot @@ -111,8 +111,8 @@ msgid "" "steps to complete the share link. First they must open the link you sent " "them in a Web browser, and then click the **Add to your Nextcloud** button." msgstr "" -"Wanneer je ontvanger jouw e-mail ontvangt, zal hij/zij een aantal stappen " -"moeten ondernemen om de share link te voltooien. Eerst moeten ze de link " +"Wanneer je ontvanger jouw e-mail ontvangt, zal deze een aantal stappen " +"moeten ondernemen om de share-link te voltooien. Eerst moeten ze de link " "openen die je hen in een webbrowser hebt gestuurd en vervolgens op de knop " "**Toevoegen aan uw Nextcloud** klikken." From 4675c30fbac9b8a7107ac2868876bb385e395956 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 07:05:36 +0000 Subject: [PATCH 0031/1895] Translate federated_cloud_sharing.pot in nl 100% translated source file: 'federated_cloud_sharing.pot' on 'nl'. --- .../locale/nl/LC_MESSAGES/files/federated_cloud_sharing.pot | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/files/federated_cloud_sharing.pot b/user_manual/locale/nl/LC_MESSAGES/files/federated_cloud_sharing.pot index 6ef7b666f..f95fe61e5 100644 --- a/user_manual/locale/nl/LC_MESSAGES/files/federated_cloud_sharing.pot +++ b/user_manual/locale/nl/LC_MESSAGES/files/federated_cloud_sharing.pot @@ -122,9 +122,9 @@ msgid "" "recipient needs to enter the URL of their Nextcloud or ownCloud server in " "this field and press the return key, or click the arrow." msgstr "" -"De knop **Toevoegen aan je Nextcloud** verandert in een formulierveld en " -"jouw ontvanger moet in dit veld de URL van zijn Nextcloud of ownCloud-server" -" invoeren en op de retourtoets drukken, of op de pijl klikken." +"De knop **Toevoegen aan je Nextcloud** opent een formulierveld waarin jouw " +"ontvanger de URL van zijn Nextcloud of ownCloud-server moet invoeren en " +"Enter toetsen of de pijl klikken." #: ../../files/federated_cloud_sharing.rst:51 msgid "" From f0df5fca37aafa64ac89d9cdec03a3f7ce86a4e1 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 07:06:41 +0000 Subject: [PATCH 0032/1895] Translate federated_cloud_sharing.pot in nl 100% translated source file: 'federated_cloud_sharing.pot' on 'nl'. --- .../locale/nl/LC_MESSAGES/files/federated_cloud_sharing.pot | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/files/federated_cloud_sharing.pot b/user_manual/locale/nl/LC_MESSAGES/files/federated_cloud_sharing.pot index f95fe61e5..127b09f6b 100644 --- a/user_manual/locale/nl/LC_MESSAGES/files/federated_cloud_sharing.pot +++ b/user_manual/locale/nl/LC_MESSAGES/files/federated_cloud_sharing.pot @@ -131,9 +131,9 @@ msgid "" "Next, they will see a dialog asking to confirm. All they have to do is click" " the **Add remote share** button and they're finished." msgstr "" -"Vervolgens zullen ze een dialoog zien met de vraag om te bevestigen. Het " -"enige wat ze hoeven te doen is op de knop **Delen op afstand toevoegen** te " -"klikken en ze zijn klaar." +"Vervolgens wordt een dialoog getoond met de vraag om te bevestigen. Het " +"enige wat ze hoeven te doen is te klikken op de knop **Delen op afstand " +"toevoegen** en het is gedaan." #: ../../files/federated_cloud_sharing.rst:54 msgid "" From 3af139c661109d323d7610c52a60a1462f61fd11 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 07:22:25 +0000 Subject: [PATCH 0033/1895] Translate federated_cloud_sharing.pot in nl 100% translated source file: 'federated_cloud_sharing.pot' on 'nl'. --- .../locale/nl/LC_MESSAGES/files/federated_cloud_sharing.pot | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/files/federated_cloud_sharing.pot b/user_manual/locale/nl/LC_MESSAGES/files/federated_cloud_sharing.pot index 127b09f6b..238aba887 100644 --- a/user_manual/locale/nl/LC_MESSAGES/files/federated_cloud_sharing.pot +++ b/user_manual/locale/nl/LC_MESSAGES/files/federated_cloud_sharing.pot @@ -140,6 +140,6 @@ msgid "" "Remove your linked share anytime by clicking the trash can icon. This only " "unlinks the share, and does not delete any files." msgstr "" -"Verwijder je gelinkte share op elk gewenst moment door te klikken op het " -"prullenbak icoon. Hierdoor wordt de share alleen ontkoppeld en worden geen " -"bestanden verwijderd." +"Je kunt je gelinkte share op elk gewenst moment verwijderen door te klikken " +"op het prullenbak-pictogram. Hierdoor wordt de share alleen ontkoppeld en " +"worden geen bestanden verwijderd." From ae7dc905269f660bbf1e053d3ce629bc80227451 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 07:23:52 +0000 Subject: [PATCH 0034/1895] Translate access_webgui.pot in nl 100% translated source file: 'access_webgui.pot' on 'nl'. --- user_manual/locale/nl/LC_MESSAGES/files/access_webgui.pot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/files/access_webgui.pot b/user_manual/locale/nl/LC_MESSAGES/files/access_webgui.pot index d6d7103e9..06f767fd8 100644 --- a/user_manual/locale/nl/LC_MESSAGES/files/access_webgui.pot +++ b/user_manual/locale/nl/LC_MESSAGES/files/access_webgui.pot @@ -192,7 +192,7 @@ msgstr "" "Met het **Instellingen** pictogram linksonder kan je verborgen bestanden in " "jouw Nextcloud webinterface weergeven of verbergen. Deze worden ook wel " "dotfiles genoemd, omdat ze voorafgegaan worden door een punt, bijvoorbeeld " -"``.mailfile``. De punt vertelt jouw besturingssysteem om deze bestanden te " +"\".mailfile\". De punt vertelt jouw besturingssysteem om deze bestanden te " "verbergen in je bestandsbrowsers, tenzij je ervoor kiest om ze weer te " "geven. Meestal zijn dit configuratiebestanden, dus de mogelijkheid om ze te " "verbergen vermindert de rommel." From b378063bd85592e4dfd0e5c3f69496675196946e Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 07:24:09 +0000 Subject: [PATCH 0035/1895] Translate access_webgui.pot in nl 100% translated source file: 'access_webgui.pot' on 'nl'. --- user_manual/locale/nl/LC_MESSAGES/files/access_webgui.pot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/files/access_webgui.pot b/user_manual/locale/nl/LC_MESSAGES/files/access_webgui.pot index 06f767fd8..01e1ac17c 100644 --- a/user_manual/locale/nl/LC_MESSAGES/files/access_webgui.pot +++ b/user_manual/locale/nl/LC_MESSAGES/files/access_webgui.pot @@ -246,7 +246,7 @@ msgid "" "Public link shares are marked with a chain link. Unshared folders are not " "marked:" msgstr "" -"Elke map die gedeeld is, is gemarkeerd met het ``Shared``-pictogram. " +"Elke map die gedeeld is, is gemarkeerd met het \"Shared\"-pictogram. " "Publieke share links zijn gemarkeerd met een kettingschakel icoon. Niet " "gedeelde mappen zijn niet gemarkeerd:" From 6909f3979dfa2438332ae942f30166baa77b85bc Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 07:24:25 +0000 Subject: [PATCH 0036/1895] Translate access_webgui.pot in nl 100% translated source file: 'access_webgui.pot' on 'nl'. --- user_manual/locale/nl/LC_MESSAGES/files/access_webgui.pot | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/files/access_webgui.pot b/user_manual/locale/nl/LC_MESSAGES/files/access_webgui.pot index 01e1ac17c..d51bb19c0 100644 --- a/user_manual/locale/nl/LC_MESSAGES/files/access_webgui.pot +++ b/user_manual/locale/nl/LC_MESSAGES/files/access_webgui.pot @@ -325,8 +325,8 @@ msgid "" "at the top." msgstr "" "Wanneer je meerdere bestanden selecteert, kan je ze allemaal verwijderen, of" -" ze downloaden als een ZIP-bestand met behulp van de knoppen ``Verwijderen` " -"of `Downloaden`` die bovenin verschijnen." +" ze downloaden als een ZIP-bestand met behulp van de knoppen \"Verwijderen` " +"of `Downloaden\" die bovenin verschijnen." #: ../../files/access_webgui.rst:145 msgid "" From 1f35c4df4a8a9b0cfde22c05640ec6895346e2c2 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 07:24:37 +0000 Subject: [PATCH 0037/1895] Translate access_webgui.pot in nl 100% translated source file: 'access_webgui.pot' on 'nl'. --- user_manual/locale/nl/LC_MESSAGES/files/access_webgui.pot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/files/access_webgui.pot b/user_manual/locale/nl/LC_MESSAGES/files/access_webgui.pot index d51bb19c0..c4db00f2f 100644 --- a/user_manual/locale/nl/LC_MESSAGES/files/access_webgui.pot +++ b/user_manual/locale/nl/LC_MESSAGES/files/access_webgui.pot @@ -333,7 +333,7 @@ msgid "" "If the ``Download`` button is not visible, the administrator has disabled " "this feature." msgstr "" -"Als de knop ``Downloaden`` niet zichtbaar is, heeft de beheerder deze " +"Als de knop \"Downloaden\" niet zichtbaar is, heeft de beheerder deze " "functie uitgeschakeld." #: ../../files/access_webgui.rst:149 From 9acfd6e9599c1a34a0da0801d5fe22a627dc2f9a Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 07:25:16 +0000 Subject: [PATCH 0038/1895] Translate access_webgui.pot in nl 100% translated source file: 'access_webgui.pot' on 'nl'. --- user_manual/locale/nl/LC_MESSAGES/files/access_webgui.pot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/files/access_webgui.pot b/user_manual/locale/nl/LC_MESSAGES/files/access_webgui.pot index c4db00f2f..bc3527ca3 100644 --- a/user_manual/locale/nl/LC_MESSAGES/files/access_webgui.pot +++ b/user_manual/locale/nl/LC_MESSAGES/files/access_webgui.pot @@ -403,7 +403,7 @@ msgstr "" #: ../../files/access_webgui.rst:174 msgid "Moving files" -msgstr "Verplaatsen van bestanden" +msgstr "Bestanden verplaatsen" #: ../../files/access_webgui.rst:176 msgid "" From 2c23f93eab29ab78102251bb1e885f7e1708a4b9 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 07:26:16 +0000 Subject: [PATCH 0039/1895] Translate access_webgui.pot in nl 100% translated source file: 'access_webgui.pot' on 'nl'. --- user_manual/locale/nl/LC_MESSAGES/files/access_webgui.pot | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/files/access_webgui.pot b/user_manual/locale/nl/LC_MESSAGES/files/access_webgui.pot index bc3527ca3..6777156d2 100644 --- a/user_manual/locale/nl/LC_MESSAGES/files/access_webgui.pot +++ b/user_manual/locale/nl/LC_MESSAGES/files/access_webgui.pot @@ -425,6 +425,6 @@ msgid "" "Federated Cloud shares." msgstr "" "Met Federated Cloud Sharing kan je gedeelde bestanden van externe Nextcloud-" -"servers mounten en beheren, net als een lokale share. Zie " -":doc:`federated_cloud_sharing` om te leren hoe je nieuwe Federated Cloud " -"shares kunt aanmaken en er verbinding mee kunt maken." +"servers mounten en beheren, net als een lokale share. Lees " +":doc:`federated_cloud_sharing` voor meer informatie over nieuwe het aanmaken" +" van Federated Cloud shares en er verbinding mee maken." From 52e486ccaa766e8bd71afaa79fbb1621f12c3893 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 07:26:58 +0000 Subject: [PATCH 0040/1895] Translate deleted_file_management.pot in nl 100% translated source file: 'deleted_file_management.pot' on 'nl'. --- .../nl/LC_MESSAGES/files/deleted_file_management.pot | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/files/deleted_file_management.pot b/user_manual/locale/nl/LC_MESSAGES/files/deleted_file_management.pot index 6dc092359..6789e850c 100644 --- a/user_manual/locale/nl/LC_MESSAGES/files/deleted_file_management.pot +++ b/user_manual/locale/nl/LC_MESSAGES/files/deleted_file_management.pot @@ -1,19 +1,20 @@ # SOME DESCRIPTIVE TITLE. -# Copyright (C) 2023 Nextcloud GmbH +# Copyright (C) 2025 Nextcloud GmbH # This file is distributed under the same license as the Nextcloud latest User Manual package. # FIRST AUTHOR , YEAR. # # Translators: # Chris Raymaekers , 2021 +# Stephan Paternotte , 2025 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: Nextcloud latest User Manual latest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-01 16:07+0000\n" +"POT-Creation-Date: 2025-02-12 13:02+0000\n" "PO-Revision-Date: 2019-11-07 20:29+0000\n" -"Last-Translator: Chris Raymaekers , 2021\n" +"Last-Translator: Stephan Paternotte , 2025\n" "Language-Team: Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -50,7 +51,7 @@ msgstr "" #: ../../files/deleted_file_management.rst:14 msgid "Quotas" -msgstr "Quotas" +msgstr "Quota's" #: ../../files/deleted_file_management.rst:16 msgid "" From a67a2dc28d7d5fc60fe300cd3fc2aade3bfa91c9 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 07:29:35 +0000 Subject: [PATCH 0041/1895] Translate encrypting_files.pot in nl 100% translated source file: 'encrypting_files.pot' on 'nl'. --- user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot b/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot index c7e8dd635..baeccabc9 100644 --- a/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot +++ b/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot @@ -121,7 +121,7 @@ msgid "" msgstr "" "Ja, *als* elke gebruiker de `Bestandenherstelcode " "`_ gebruikt, zal \"decrypt all\" " +"users-file-recovery-keys>`_ gebruikt, zal `\"decrypt all\" " "`_ deze gebruiken om alle bestanden te ontsleutelen." From 4790f737b2c6986570bf4c5d100ca366f79c2463 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 07:30:22 +0000 Subject: [PATCH 0042/1895] Translate encrypting_files.pot in nl 100% translated source file: 'encrypting_files.pot' on 'nl'. --- user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot b/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot index baeccabc9..f4e8db29c 100644 --- a/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot +++ b/user_manual/locale/nl/LC_MESSAGES/files/encrypting_files.pot @@ -240,8 +240,8 @@ msgstr "" "geen eigen code hebben, hebben geen toegang tot gedeelde versleutelde " "bestanden; ze zien wel mappen en bestandsnamen, maar kunnen de bestanden " "niet openen of downloaden. Ze zullen een gele waarschuwingsbanner zien met " -"de tekst \"Encryptie-applicatie is ingeschakeld, maar je sleutels zijn niet " -"geïnitialiseerd, meld je alstublieft af en log opnieuw in\"." +"de tekst \"Versleutelings-applicatie is ingeschakeld, maar je sleutels zijn " +"niet geïnitialiseerd, meld je alstublieft af en log opnieuw in\"." #: ../../files/encrypting_files.rst:107 msgid "" From cfbe200b9aa2f942c2880e23dfbbb7feb07667a4 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 07:34:02 +0000 Subject: [PATCH 0043/1895] Translate large_file_upload.pot in nl 100% translated source file: 'large_file_upload.pot' on 'nl'. --- .../LC_MESSAGES/files/large_file_upload.pot | 44 +++++++++---------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/files/large_file_upload.pot b/user_manual/locale/nl/LC_MESSAGES/files/large_file_upload.pot index f2eb8d1cb..c2abcdc50 100644 --- a/user_manual/locale/nl/LC_MESSAGES/files/large_file_upload.pot +++ b/user_manual/locale/nl/LC_MESSAGES/files/large_file_upload.pot @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. -# Copyright (C) 2020 Nextcloud GmbH +# Copyright (C) 2025 Nextcloud GmbH # This file is distributed under the same license as the Nextcloud latest User Manual package. # FIRST AUTHOR , YEAR. # # Translators: # Chris Raymaekers , 2021 +# Stephan Paternotte , 2025 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: Nextcloud latest User Manual latest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-07-28 07:41+0000\n" +"POT-Creation-Date: 2025-02-12 13:02+0000\n" "PO-Revision-Date: 2019-11-07 20:29+0000\n" -"Last-Translator: Chris Raymaekers , 2021\n" -"Language-Team: Dutch (https://www.transifex.com/nextcloud/teams/64236/nl/)\n" +"Last-Translator: Stephan Paternotte , 2025\n" +"Language-Team: Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -23,46 +24,45 @@ msgstr "" #: ../../files/large_file_upload.rst:3 msgid "Large file uploads" -msgstr "Grote bestandsuploads" +msgstr "Uploads van grote bestanden" #: ../../files/large_file_upload.rst:5 msgid "" "When uploading files through the web client, Nextcloud is limited by PHP and" " Apache configurations. By default, PHP is configured for only 2 megabyte " "uploads. As this default upload limit is not entirely useful, we recommend " -"that your Nextcloud admin increase the Nextcloud variables to sizes " +"that your Nextcloud administrator increase the Nextcloud variables to sizes " "appropriate for users." msgstr "" "Bij het uploaden van bestanden via de webclient wordt Nextcloud beperkt door" -" PHP en Apache configuraties. PHP is standaard geconfigureerd voor slechts 2" -" megabyte uploads. Omdat deze standaard uploadlimiet niet helemaal bruikbaar" -" is, raden wij jouw Nextcloud admin aan om de Nextcloud-variabelen te " -"verhogen tot een voor de gebruiker geschikte grootte." +" de configuraties van PHP en Apache. Standaard is PHP geconfigureerd voor " +"slechts 2 megabyte uploads. Aangezien deze standaard uploadlimiet niet erg " +"praktisch is, raden we aan dat uw Nextcloud-beheerder de Nextcloud-" +"variabelen verhoogt naar groottes die geschikt zijn voor gebruikers." -#: ../../files/large_file_upload.rst:11 +#: ../../files/large_file_upload.rst:7 msgid "" "Modifying certain Nextcloud variables requires administrative access. If you" " require larger upload limits than have been provided by the default (or " "already set by your administrator):" msgstr "" -"Voor het wijzigen van bepaalde Nextcloud variabelen is administratieve " +"Voor het wijzigen van bepaalde Nextcloud-variabelen is administratieve " "toegang nodig. Als je grotere uploadlimieten nodig heeft dan de standaard " "(of al ingesteld door jouw beheerder):" -#: ../../files/large_file_upload.rst:15 +#: ../../files/large_file_upload.rst:9 msgid "Contact your administrator to request an increase in these variables" msgstr "" "Neem contact op met jouw beheerder om een verhoging van deze variabelen aan " "te vragen" -#: ../../files/large_file_upload.rst:17 +#: ../../files/large_file_upload.rst:11 msgid "" -"Refer to the section in the `Admin Documentation " -"`_ that describes how to manage file " -"upload size limits." +"Refer to the section in the `Administration Documentation " +"`_" +" that describes how to manage file upload size limits." msgstr "" -"Zie de sectie in de `Admin Documentatie " -"`_ die beschrijft hoe je de grootte van " -"de upload van bestanden kan beheren." +"Verwijs naar de sectie in de `Administratiedocumentatie " +"`_" +" die beschrijft hoe je de limieten voor de bestandsgrootte bij het uploaden " +"kunt beheren." From 239519a09e79820264ebe320fe676937f9c325f0 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 07:34:37 +0000 Subject: [PATCH 0044/1895] Translate projects.pot in nl 100% translated source file: 'projects.pot' on 'nl'. --- .../locale/nl/LC_MESSAGES/files/projects.pot | 30 +++++++++++-------- 1 file changed, 18 insertions(+), 12 deletions(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/files/projects.pot b/user_manual/locale/nl/LC_MESSAGES/files/projects.pot index 662a07207..2084f43a5 100644 --- a/user_manual/locale/nl/LC_MESSAGES/files/projects.pot +++ b/user_manual/locale/nl/LC_MESSAGES/files/projects.pot @@ -1,19 +1,20 @@ # SOME DESCRIPTIVE TITLE. -# Copyright (C) 2023 Nextcloud GmbH +# Copyright (C) 2025 Nextcloud GmbH # This file is distributed under the same license as the Nextcloud latest User Manual package. # FIRST AUTHOR , YEAR. # # Translators: # Chris Raymaekers , 2021 +# Stephan Paternotte , 2025 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: Nextcloud latest User Manual latest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-01 16:07+0000\n" +"POT-Creation-Date: 2025-02-12 13:02+0000\n" "PO-Revision-Date: 2019-11-07 20:29+0000\n" -"Last-Translator: Chris Raymaekers , 2021\n" +"Last-Translator: Stephan Paternotte , 2025\n" "Language-Team: Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,6 +27,11 @@ msgid "Projects" msgstr "Projecten" #: ../../files/projects.rst:5 +msgid "This feature was replaced by the shipped related resources app." +msgstr "" +"Deze functie is vervangen door de meegeleverde gerelateerde bronnen-app." + +#: ../../files/projects.rst:8 msgid "" "Users can associate files, chats and other items with each other in " "projects. The various apps will present these items in a list, allowing " @@ -42,11 +48,11 @@ msgstr "" "items in een project leidt direct naar het project, of het nu gaat om een " "chat, een bestand of een taak." -#: ../../files/projects.rst:8 +#: ../../files/projects.rst:11 msgid "Create a new project" msgstr "Creëer een nieuw project" -#: ../../files/projects.rst:10 +#: ../../files/projects.rst:13 msgid "" "A new project can be created by linking two items together. Start off by " "opening a file or folders sharing sidebar." @@ -55,7 +61,7 @@ msgstr "" "koppelen. Begin met het openen van een bestand of mappen die de zijbalk " "delen." -#: ../../files/projects.rst:14 +#: ../../files/projects.rst:17 msgid "" "Click *Add to a project* and select the type of item you want to link with " "the current file/folder. A selector will open that allows you selecting a " @@ -65,7 +71,7 @@ msgstr "" "koppelen aan het huidige bestand/de huidige map. Er wordt een selector " "geopend waarmee je bijvoorbeeld een Talk gesprek kunt selecteren." -#: ../../files/projects.rst:18 +#: ../../files/projects.rst:21 msgid "" "Once the item has been selected a new project is being created and listed in" " the sharing tab of the sidebar. The same project will also appear in the " @@ -75,7 +81,7 @@ msgstr "" "het tabblad Delen van de zijbalk vermeld. Hetzelfde project zal ook " "verschijnen in de Delen zijbalk van de gelinkte items." -#: ../../files/projects.rst:22 +#: ../../files/projects.rst:25 msgid "" "The list entry shows quick links to a limited number of items. By opening " "the context menu, the project can be renamed and the full list of items can " @@ -85,11 +91,11 @@ msgstr "" " het contextmenu te openen kan het project worden hernoemd en kan de " "volledige lijst met items worden uitgebreid." -#: ../../files/projects.rst:26 +#: ../../files/projects.rst:29 msgid "Adding more entries to a project" msgstr "Meer items toevoegen aan een project" -#: ../../files/projects.rst:28 +#: ../../files/projects.rst:31 msgid "" "If another item should be added to an already existing project this can be " "done by searching for the project name in the *Add to a project* picker." @@ -98,11 +104,11 @@ msgstr "" "kan dit worden gedaan door te zoeken naar de projectnaam in de *Toevoegen " "aan een project* picker." -#: ../../files/projects.rst:33 +#: ../../files/projects.rst:36 msgid "Visibility of projects" msgstr "Zichtbaarheid van projecten" -#: ../../files/projects.rst:35 +#: ../../files/projects.rst:38 msgid "" "Projects do not influence the access and visibility of the different items. " "Users will only see projects of other users if they have access to all " From bb2b984487a3c6b557b8669c44450f2fd9cfff80 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 07:35:02 +0000 Subject: [PATCH 0045/1895] Translate projects.pot in nl 100% translated source file: 'projects.pot' on 'nl'. --- user_manual/locale/nl/LC_MESSAGES/files/projects.pot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/files/projects.pot b/user_manual/locale/nl/LC_MESSAGES/files/projects.pot index 2084f43a5..1b06dc11f 100644 --- a/user_manual/locale/nl/LC_MESSAGES/files/projects.pot +++ b/user_manual/locale/nl/LC_MESSAGES/files/projects.pot @@ -50,7 +50,7 @@ msgstr "" #: ../../files/projects.rst:11 msgid "Create a new project" -msgstr "Creëer een nieuw project" +msgstr "Een nieuw project aanmaken" #: ../../files/projects.rst:13 msgid "" From d884dd9293d2b168982e401d18cdaf1cbd03c378 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 07:35:17 +0000 Subject: [PATCH 0046/1895] Translate projects.pot in nl 100% translated source file: 'projects.pot' on 'nl'. --- user_manual/locale/nl/LC_MESSAGES/files/projects.pot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/files/projects.pot b/user_manual/locale/nl/LC_MESSAGES/files/projects.pot index 1b06dc11f..3744fabf6 100644 --- a/user_manual/locale/nl/LC_MESSAGES/files/projects.pot +++ b/user_manual/locale/nl/LC_MESSAGES/files/projects.pot @@ -57,7 +57,7 @@ msgid "" "A new project can be created by linking two items together. Start off by " "opening a file or folders sharing sidebar." msgstr "" -"Een nieuw project kan worden gecreëerd door twee items aan elkaar te " +"Een nieuw project kan worden aangemaakt door twee items aan elkaar te " "koppelen. Begin met het openen van een bestand of mappen die de zijbalk " "delen." From aff544c1a2ff725aef3351aced7699674c474b8e Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 07:37:44 +0000 Subject: [PATCH 0047/1895] Translate quota.pot in nl 100% translated source file: 'quota.pot' on 'nl'. --- .../locale/nl/LC_MESSAGES/files/quota.pot | 40 ++++++++++--------- 1 file changed, 21 insertions(+), 19 deletions(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/files/quota.pot b/user_manual/locale/nl/LC_MESSAGES/files/quota.pot index 73accf7ce..0228b0633 100644 --- a/user_manual/locale/nl/LC_MESSAGES/files/quota.pot +++ b/user_manual/locale/nl/LC_MESSAGES/files/quota.pot @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. -# Copyright (C) 2020 Nextcloud GmbH +# Copyright (C) 2025 Nextcloud GmbH # This file is distributed under the same license as the Nextcloud latest User Manual package. # FIRST AUTHOR , YEAR. # # Translators: # Chris Raymaekers , 2021 +# Stephan Paternotte , 2025 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: Nextcloud latest User Manual latest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-10-05 20:47+0000\n" +"POT-Creation-Date: 2025-02-12 13:02+0000\n" "PO-Revision-Date: 2019-11-07 20:29+0000\n" -"Last-Translator: Chris Raymaekers , 2021\n" -"Language-Team: Dutch (https://www.transifex.com/nextcloud/teams/64236/nl/)\n" +"Last-Translator: Stephan Paternotte , 2025\n" +"Language-Team: Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -27,13 +28,13 @@ msgstr "Opslagquota" #: ../../files/quota.rst:5 msgid "" -"Your Nextcloud admin has the option to set a storage quota on users. Look at" -" your the Personal page to see what your quota is, and how much you have " -"used." +"Your Nextcloud administrator has the option to set a storage quota on users." +" Look at your the Personal page to see what your quota is, and how much you " +"have used." msgstr "" -"Jouw Nextcloud admin heeft de mogelijkheid om een opslagquotum in te stellen" -" voor gebruikers. Kijk op jouw Persoonlijke pagina om te zien wat je quota " -"is, en hoeveel je gebruikt hebt." +"Je Nextcloud-beheerder heeft de optie om opslagquota voor gebruikers in te " +"stellen. Kijk op je persoonlijke pagina om te zien wat je quotum is en " +"hoeveel je ervan hebt gebruikt." #: ../../files/quota.rst:10 msgid "It may be helpful to understand how your quota is calculated." @@ -92,16 +93,17 @@ msgstr "" #: ../../files/quota.rst:31 msgid "" "Your administrator may have configured the trash bin retention period to " -"override the storage space management. See `admin documentation " -"`_ for more details." +"override the storage space management. See `administrator documentation " +"`_ for more details." msgstr "" -"Jouw beheerder kan de bewaartermijn van de prullenbak hebben geconfigureerd " -"om het beheer van de opslagruimte te overrulen. Zie `admin documentatie " -"`_ voor meer details." +"Jouw beheerder heeft mogelijk de bewaartijd van de prullenbak geconfigureerd" +" om het beheer van de opslagruimte te reguleren. Lees de `beheerder " +"documentatie " +"`_ voor meer details." -#: ../../files/quota.rst:34 +#: ../../files/quota.rst:36 msgid "" "When version control is enabled, the older file versions are not counted " "against quotas." @@ -109,7 +111,7 @@ msgstr "" "Wanneer versiebeheer is ingeschakeld, worden de oudere bestandsversies niet " "meegeteld bij de quota's." -#: ../../files/quota.rst:37 +#: ../../files/quota.rst:39 msgid "" "If you create a public share via URL and allow uploads, any uploaded files " "count against your quota." From 86f5d410173cf3263fa2834da04fc8a7927cb162 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 07:41:13 +0000 Subject: [PATCH 0048/1895] Translate version_control.pot in nl 100% translated source file: 'version_control.pot' on 'nl'. --- .../nl/LC_MESSAGES/files/version_control.pot | 52 ++++++++++++++----- 1 file changed, 40 insertions(+), 12 deletions(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/files/version_control.pot b/user_manual/locale/nl/LC_MESSAGES/files/version_control.pot index 6b04af310..0657b8197 100644 --- a/user_manual/locale/nl/LC_MESSAGES/files/version_control.pot +++ b/user_manual/locale/nl/LC_MESSAGES/files/version_control.pot @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. -# Copyright (C) 2020 Nextcloud GmbH +# Copyright (C) 2025 Nextcloud GmbH # This file is distributed under the same license as the Nextcloud latest User Manual package. # FIRST AUTHOR , YEAR. # # Translators: # Chris Raymaekers , 2021 +# Stephan Paternotte , 2025 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: Nextcloud latest User Manual latest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-09-14 14:29+0000\n" +"POT-Creation-Date: 2025-02-12 13:02+0000\n" "PO-Revision-Date: 2019-11-07 20:29+0000\n" -"Last-Translator: Chris Raymaekers , 2021\n" -"Language-Team: Dutch (https://www.transifex.com/nextcloud/teams/64236/nl/)\n" +"Last-Translator: Stephan Paternotte , 2025\n" +"Language-Team: Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -43,11 +44,10 @@ msgstr "" #: ../../files/version_control.rst:13 msgid "" "To restore a specific version of a file, click the circular arrow to the " -"left. Click on the timestamp to download it." +"right. Click on the timestamp to download it." msgstr "" -"Om een specifieke versie van een bestand te herstellen, klik je op de " -"cirkelvormige pijl naar links. Klik op de tijdsaanduiding om het te " -"downloaden." +"Om een specifieke versie van een bestand te herstellen, klik op de ronde " +"pijl rechts. Klik op de tijdstip om het te downloaden." #: ../../files/version_control.rst:16 msgid "" @@ -96,11 +96,39 @@ msgstr "" #: ../../files/version_control.rst:31 msgid "" -"The version app never uses more that 50% of the user's currently available " +"The version app never uses more than 50% of the user's currently available " "free space. If the stored versions exceed this limit, Nextcloud deletes the " "oldest versions until it meets the disk space limit again." msgstr "" -"De versie app gebruikt nooit meer dan 50% van de momenteel beschikbare vrije" +"De versie-app gebruikt nooit meer dan 50% van de momenteel beschikbare vrije" " ruimte van de gebruiker. Als de opgeslagen versies deze limiet " -"overschrijden, verwijdert Nextcloud de oudste versies totdat deze weer aan " -"de schijfruimtelimiet voldoet." +"overschrijden, verwijdert Nextcloud de oudste versies totdat het weer " +"voldoet aan de schijfruimtelimiet." + +#: ../../files/version_control.rst:37 +msgid "Naming a version" +msgstr "Een versie een naam geven" + +#: ../../files/version_control.rst:39 +msgid "You can give a name to a version." +msgstr "Je kunt een naam toekennen aan een versie." + +#: ../../files/version_control.rst:44 +msgid "" +"When a version has a name, it will be excluded from the automatic expiration" +" process." +msgstr "" +"Wanneer een versie een naam heeft, wordt deze uitgesloten van het " +"automatische vervalproces." + +#: ../../files/version_control.rst:47 +msgid "Deleting a version" +msgstr "Een versie verwijderen" + +#: ../../files/version_control.rst:49 +msgid "" +"You can also manually delete a version without waiting for the automatic " +"expiration process." +msgstr "" +"Je kunt ook handmatig een versie verwijderen zonder te wachten op het " +"automatische vervalproces." From e3c643a98b5a4ca7101dd4ce52fda2982858ef47 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 07:44:08 +0000 Subject: [PATCH 0049/1895] Translate index.pot in nl 100% translated source file: 'index.pot' on 'nl'. --- user_manual/locale/nl/LC_MESSAGES/index.pot | 36 ++++++++------------- 1 file changed, 13 insertions(+), 23 deletions(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/index.pot b/user_manual/locale/nl/LC_MESSAGES/index.pot index 5eb27ac92..23da13344 100644 --- a/user_manual/locale/nl/LC_MESSAGES/index.pot +++ b/user_manual/locale/nl/LC_MESSAGES/index.pot @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. -# Copyright (C) 2020 Nextcloud GmbH +# Copyright (C) 2025 Nextcloud GmbH # This file is distributed under the same license as the Nextcloud latest User Manual package. # FIRST AUTHOR , YEAR. # # Translators: # Chris Raymaekers , 2021 +# Stephan Paternotte , 2025 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: Nextcloud latest User Manual latest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-07-31 17:04+0000\n" +"POT-Creation-Date: 2025-02-12 13:02+0000\n" "PO-Revision-Date: 2020-07-27 12:48+0000\n" -"Last-Translator: Chris Raymaekers , 2021\n" -"Language-Team: Dutch (https://www.transifex.com/nextcloud/teams/64236/nl/)\n" +"Last-Translator: Stephan Paternotte , 2025\n" +"Language-Team: Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -27,7 +28,7 @@ msgstr "Nextcloud |version| gebruikershandleiding introductie" #: ../../index.rst:7 msgid "**Welcome to Nextcloud: A safe home for all your data.**" -msgstr "**Welkom bij Nextcloud: Een veilige thuis voor al je gegevens.**" +msgstr "**Welkom bij Nextcloud: Een veilig thuis voor al je gegevens.**" #: ../../index.rst:9 msgid "" @@ -50,26 +51,15 @@ msgid "" "synchronize them with your Nextcloud server. Place files in your local " "shared directories, and those files are immediately synchronized to the " "server and to other devices using the Nextcloud Desktop Sync Client, Android" -" app, or iOS app. To learn more about the Nextcloud desktop and mobile " -"clients, please refer to their respective manuals:" +" app, or iOS app." msgstr "" -"Je kan één of meer bestanden en mappen op jouw computer delen en " -"synchroniseren met jouw Nextcloud-server. Plaats bestanden in jouw lokale " -"gedeelde mappen en deze bestanden worden onmiddellijk gesynchroniseerd met " -"de server en met andere apparaten met behulp van de Nextcloud Desktop Sync " -"Client, Android app of iOS app. Voor meer informatie over de Nextcloud-" -"desktop- en mobiele clients verwijzen we je naar hun respectievelijke " -"handleidingen:" +"Je kunt een of meer bestanden en mappen op je computer delen en deze " +"synchroniseren met je Nextcloud-server. Plaats bestanden in je lokale " +"gedeelde mappen en ze worden direct gesynchroniseerd met de server en met " +"andere apparaten met behulp van de Nextcloud Desktop Sync Client, de " +"Android-app of de iOS-app." -#: ../../index.rst:22 -msgid "`Nextcloud Desktop Client`_" -msgstr "`Nextcloud Desktop Client`_" - -#: ../../index.rst:23 -msgid "`Nextcloud Android App`_" -msgstr "`Nextcloud Android App`_" - -#: ../../index.rst:28 +#: ../../index.rst:20 msgid "" "`Help translate `_." From bee356bcc445676c3c3a787b1e8368d2c4b2e746 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 07:46:38 +0000 Subject: [PATCH 0050/1895] Translate session_management.pot in nl 100% translated source file: 'session_management.pot' on 'nl'. --- .../nl/LC_MESSAGES/session_management.pot | 46 ++++++++++++------- 1 file changed, 29 insertions(+), 17 deletions(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/session_management.pot b/user_manual/locale/nl/LC_MESSAGES/session_management.pot index 826091612..3a483ba11 100644 --- a/user_manual/locale/nl/LC_MESSAGES/session_management.pot +++ b/user_manual/locale/nl/LC_MESSAGES/session_management.pot @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. -# Copyright (C) 2020 Nextcloud GmbH +# Copyright (C) 2025 Nextcloud GmbH # This file is distributed under the same license as the Nextcloud latest User Manual package. # FIRST AUTHOR , YEAR. # # Translators: # Chris Raymaekers , 2021 +# Stephan Paternotte , 2025 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: Nextcloud latest User Manual latest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-23 19:25+0000\n" +"POT-Creation-Date: 2025-02-12 13:02+0000\n" "PO-Revision-Date: 2019-11-07 20:28+0000\n" -"Last-Translator: Chris Raymaekers , 2021\n" -"Language-Team: Dutch (https://www.transifex.com/nextcloud/teams/64236/nl/)\n" +"Last-Translator: Stephan Paternotte , 2025\n" +"Language-Team: Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -45,6 +46,10 @@ msgstr "" "In de lijst met gekoppelde browsers ziet je welke browsers recentelijk aan " "jouw account zijn gekoppeld:" +#: ../../session_management.rst:14 +msgid "List of browser sessions." +msgstr "Lijst met browsersessies." + #: ../../session_management.rst:17 msgid "" "You can use the trash icon to disconnect any of the browsers in the list." @@ -52,11 +57,11 @@ msgstr "" "Je kan het prullenbak pictogram gebruiken om de koppeling met een van de " "browsers in de lijst te verbreken." -#: ../../session_management.rst:20 +#: ../../session_management.rst:22 msgid "Managing devices" msgstr "Beheer van apparaten" -#: ../../session_management.rst:22 +#: ../../session_management.rst:24 msgid "" "In the list of connected devices you see all the devices and clients you " "generated a device password for and their last activity:" @@ -65,14 +70,18 @@ msgstr "" "waarvoor je een apparaat wachtwoord hebt aangemaakt en hun laatste " "activiteit:" -#: ../../session_management.rst:28 +#: ../../session_management.rst:27 +msgid "List of connected devices." +msgstr "Lijst met verbonden apparaten." + +#: ../../session_management.rst:30 msgid "" "You can use the trash icon to disconnect any of the devices in the list." msgstr "" "Je kan het prullenbak pictogram gebruiken om een van de apparaten in de " "lijst los te koppelen." -#: ../../session_management.rst:30 +#: ../../session_management.rst:32 msgid "" "At the bottom of the list you find a button to create a new device-specific " "password. You can choose a name to identify the token later. The generated " @@ -87,7 +96,11 @@ msgstr "" "voor elk apparaat dat je met jouw account verbindt, zodat je deze indien " "nodig individueel kan loskoppelen:" -#: ../../session_management.rst:39 +#: ../../session_management.rst:38 +msgid "Adding a new device." +msgstr "Een nieuw apparaat toevoegen." + +#: ../../session_management.rst:41 msgid "" "You have only access to the device password when creating it, Nextcloud will" " not save the plain password, hence it's recommended to enter the password " @@ -97,22 +110,21 @@ msgstr "" "ervan. Nextcloud slaat het wachtwoord niet op, vandaar dat het aan te raden " "is om het wachtwoord direct in te voeren op de nieuwe client." -#: ../../session_management.rst:44 +#: ../../session_management.rst:46 msgid "" "If you are :doc:`user_2fa` for your account, device-specific passwords are " -"the only way to configure clients. The client will deny connections of " +"the only way to configure clients. The server will deny connections of " "clients using your login password then." msgstr "" -"Als je :doc:`user_2fa` bent voor jouw account, zijn apparaat specifieke " -"wachtwoorden de enige manier om clients te configureren. In dat geval zal de" -" client het koppelen van clients met behulp van je login wachtwoord " -"weigeren." +"Als je :doc:`user_2fa` voor je account bent, zijn apparaat-specifieke " +"wachtwoorden de enige manier om clients te configureren. De server zal " +"verbindingen weigeren van clients die je inlogwachtwoord gebruiken." -#: ../../session_management.rst:49 +#: ../../session_management.rst:51 msgid "Device-specific passwords and password changes" msgstr "Apparaat specifieke wachtwoorden en wachtwoord wijzigingen" -#: ../../session_management.rst:51 +#: ../../session_management.rst:53 msgid "" "For password changes in external user backends the device-specific passwords" " are marked as invalid and once a login of the user account with the main " From 6a1d465530b8f9f50c534d30446dc7ae30405721 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 07:52:45 +0000 Subject: [PATCH 0051/1895] Translate transfer_ownership.pot in nl 100% translated source file: 'transfer_ownership.pot' on 'nl'. --- .../LC_MESSAGES/files/transfer_ownership.pot | 61 ++++++++++--------- 1 file changed, 32 insertions(+), 29 deletions(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/files/transfer_ownership.pot b/user_manual/locale/nl/LC_MESSAGES/files/transfer_ownership.pot index 6cd5cc9e0..3596c5f2b 100644 --- a/user_manual/locale/nl/LC_MESSAGES/files/transfer_ownership.pot +++ b/user_manual/locale/nl/LC_MESSAGES/files/transfer_ownership.pot @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. -# Copyright (C) 2020 Nextcloud GmbH +# Copyright (C) 2025 Nextcloud GmbH # This file is distributed under the same license as the Nextcloud latest User Manual package. # FIRST AUTHOR , YEAR. # # Translators: # Chris Raymaekers , 2021 +# Stephan Paternotte , 2025 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: Nextcloud latest User Manual latest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-09-14 14:20+0000\n" +"POT-Creation-Date: 2025-02-12 13:02+0000\n" "PO-Revision-Date: 2020-07-27 15:35+0000\n" -"Last-Translator: Chris Raymaekers , 2021\n" -"Language-Team: Dutch (https://www.transifex.com/nextcloud/teams/64236/nl/)\n" +"Last-Translator: Stephan Paternotte , 2025\n" +"Language-Team: Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -27,36 +28,38 @@ msgstr "Overdracht van eigenaarschap" #: ../../files/transfer_ownership.rst:5 msgid "" -"Users can transfer the ownership of files and folders to other users. Share " -"ownerships of those transfered files/folders will also be transferred." +"Users can transfer the ownership of files and folders to other users. " +"Sharing ownerships of those transferred files/folders will also be " +"transferred." msgstr "" -"Gebruikers kunnen het eigenaarschap van bestanden en mappen overdragen aan " -"andere gebruikers. De eigendom van deze overgedragen bestanden/mappen zal " -"ook worden overgedragen." +"Gebruikers kunnen het eigendom van bestanden en mappen overdragen aan andere" +" gebruikers. Het delen van eigendommen van die overgedragen bestanden/mappen" +" wordt ook overgedragen." #: ../../files/transfer_ownership.rst:8 -msgid "Navigate to *Settings* > *Personal* > *Sharing* > *Files*." -msgstr "Navigeer naar *Instellingen* > *Delen* > Bestanden*." +msgid "Navigate to *Settings* (top-right menu) > *Sharing*." +msgstr "Navigeer naar *Instellingen* (menu rechtsboven) > *Delen*." #: ../../files/transfer_ownership.rst:9 msgid "" -"Click on *Choose file or folder to transfer* >> A file picker opens, showing" -" all files and folders in the user's account." +"In the *Files* section, click on *Choose file or folder to transfer*. A file" +" picker opens, showing all files and folders in the user's account." msgstr "" -"Klik op *Kies over te dragen bestand of map* >> Een bestandskiezer wordt " -"geopend en toont alle bestanden en mappen in het account van de gebruiker." +"Klik in de sectie *Bestanden* op *Kies bestand of map om over te dragen*. Er" +" opent een bestandskiezer met alle bestanden en mappen in het account van de" +" gebruiker." #: ../../files/transfer_ownership.rst:10 msgid "" -"Pick a file or folder and click on *Choose* >> The chosen file or folder " -"name gets displayed." +"Pick a file or folder and click on *Choose*. The chosen file or folder name " +"gets displayed." msgstr "" -"Kies een bestand of map en klik op *Kies* >> De gekozen bestands- of mapnaam" -" wordt weergegeven." +"Selecteer een bestand of map en klik op *Kiezen*. De gekozen naam van het " +"bestand of de map wordt weergegeven." #: ../../files/transfer_ownership.rst:11 msgid "Click on *Change* to change the choice if necessary." -msgstr "Klik op *Wijzig* om de keuze te wijzigen indien nodig." +msgstr "Klik op *Wijzigen* om de keuze te wijzigen indien nodig." #: ../../files/transfer_ownership.rst:12 msgid "" @@ -68,22 +71,22 @@ msgstr "" #: ../../files/transfer_ownership.rst:13 msgid "Click on *Transfer*." -msgstr "Klik op *Transfer*" +msgstr "Klik op *Overdragen*" #: ../../files/transfer_ownership.rst:15 msgid "" "The username autocompletion or listing may be limited due to administrative " -"visibility configuration. See `admin documentation " +"visibility configuration. See `administrator documentation " "`_" " for details." msgstr "" -"Het automatisch aanvullen van de gebruikersnaam of de vermelding kan beperkt" -" zijn vanwege de administratieve zichtbaarheidsconfiguratie. Zie `admin " -"documentatie " +"De autocompletion of het overzicht van gebruikersnamen kan beperkt zijn " +"vanwege de administratieve configuratie t.a.v. zichtbaarheid. Lees de " +"`documentatie voor beheerders " "`_" -" voor details." +" voor meer details." -#: ../../files/transfer_ownership.rst:18 +#: ../../files/transfer_ownership.rst:20 msgid "" "The target user receives a notification where they are being asked whether " "to accept or reject the incoming transfer." @@ -91,7 +94,7 @@ msgstr "" "De beoogde gebruiker ontvangt een bericht waarin haar/hem wordt gevraagd of " "zij/hij de inkomende overdracht al dan niet wil accepteren." -#: ../../files/transfer_ownership.rst:23 +#: ../../files/transfer_ownership.rst:25 msgid "" "If accepted, the target user finds the transferred files and folders in " "their root under a folder *Transferred from [user] on [timestamp]*." @@ -99,7 +102,7 @@ msgstr "" "Indien aanvaard, vindt de doelgebruiker de overgedragen bestanden en mappen " "in zijn root onder een map *Overdracht van [gebruiker] op [tijdaanduiding]*." -#: ../../files/transfer_ownership.rst:25 +#: ../../files/transfer_ownership.rst:27 msgid "" "The source user gets informed about the acceptance or rejection by a " "notification." From d1236d2b33211e1d7466dbcbac5fab9ff28c4b33 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 07:53:17 +0000 Subject: [PATCH 0052/1895] Translate transfer_ownership.pot in nl 100% translated source file: 'transfer_ownership.pot' on 'nl'. --- .../locale/nl/LC_MESSAGES/files/transfer_ownership.pot | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/files/transfer_ownership.pot b/user_manual/locale/nl/LC_MESSAGES/files/transfer_ownership.pot index 3596c5f2b..71e78374f 100644 --- a/user_manual/locale/nl/LC_MESSAGES/files/transfer_ownership.pot +++ b/user_manual/locale/nl/LC_MESSAGES/files/transfer_ownership.pot @@ -91,8 +91,8 @@ msgid "" "The target user receives a notification where they are being asked whether " "to accept or reject the incoming transfer." msgstr "" -"De beoogde gebruiker ontvangt een bericht waarin haar/hem wordt gevraagd of " -"zij/hij de inkomende overdracht al dan niet wil accepteren." +"De beoogde gebruiker ontvangt een bericht waarin deze wordt gevraagd de " +"inkomende overdracht al dan niet te accepteren." #: ../../files/transfer_ownership.rst:25 msgid "" From 2336d994571885ae968174b42eb5be2e48f654ea Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 07:58:05 +0000 Subject: [PATCH 0053/1895] Translate user_2fa.pot in nl 100% translated source file: 'user_2fa.pot' on 'nl'. --- .../locale/nl/LC_MESSAGES/user_2fa.pot | 83 ++++++++++++++----- 1 file changed, 63 insertions(+), 20 deletions(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/user_2fa.pot b/user_manual/locale/nl/LC_MESSAGES/user_2fa.pot index 87ef15ac6..a8ef9e704 100644 --- a/user_manual/locale/nl/LC_MESSAGES/user_2fa.pot +++ b/user_manual/locale/nl/LC_MESSAGES/user_2fa.pot @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. -# Copyright (C) 2020 Nextcloud GmbH +# Copyright (C) 2025 Nextcloud GmbH # This file is distributed under the same license as the Nextcloud latest User Manual package. # FIRST AUTHOR , YEAR. # # Translators: # André Koot , 2020 # Chris Raymaekers , 2021 +# Christian Wolf , 2021 +# Stephan Paternotte , 2025 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: Nextcloud latest User Manual latest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-23 19:25+0000\n" +"POT-Creation-Date: 2025-02-12 13:02+0000\n" "PO-Revision-Date: 2019-11-07 20:28+0000\n" -"Last-Translator: Chris Raymaekers , 2021\n" -"Language-Team: Dutch (https://www.transifex.com/nextcloud/teams/64236/nl/)\n" +"Last-Translator: Stephan Paternotte , 2025\n" +"Language-Team: Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -39,12 +41,12 @@ msgid "" msgstr "" "Twee-factor authenticatie (2FA) is een manier om je Nextcloud-account te " "beschermen tegen ongeautoriseerde toegang. Het werkt door twee verschillende" -" 'bewijzen' van je identiteit te eisen. Bijvoorbeeld * iets wat je kent * " -"(zoals een wachtwoord) en * iets dat je hebt * zoals een fysieke sleutel. " +" 'bewijzen' van je identiteit te eisen. Bijvoorbeeld *iets wat je kent* " +"(zoals een wachtwoord) en *iets dat je hebt* zoals een fysieke sleutel. " "Meestal is de eerste factor een wachtwoord zoals je al een hebt en de tweede" " kan een sms zijn die je ontvangt of een code die je genereert op je " -"telefoon of een ander apparaat (* iets dat je hebt *). Nextcloud ondersteunt" -" een aantal verschillende tweede factoren en er kunnen er meer worden " +"telefoon of een ander apparaat (*iets dat je hebt*). Nextcloud ondersteunt " +"een aantal verschillende tweede factoren en er kunnen er meer worden " "toegevoegd." #: ../../user_2fa.rst:14 @@ -54,8 +56,8 @@ msgid "" " how." msgstr "" "Zodra een app voor twee-factor authenticatie is ingeschakeld door je " -"beheerder, kun je dit inschakelen en configureren in: doc: " -"`userpreferences`. Hieronder kan je zien hoe." +"beheerder, kun je dit inschakelen en configureren in :doc:`userpreferences`." +" Hieronder kan je zien hoe." #: ../../user_2fa.rst:19 msgid "Configuring two-factor authentication" @@ -70,6 +72,10 @@ msgstr "" "Auth op. In dit voorbeeld is dit TOTP, een Google Authenticator-compatibele " "tijdgebaseerde code:" +#: ../../user_2fa.rst:24 +msgid "TOTP configuration." +msgstr "TOTP-configuratie." + #: ../../user_2fa.rst:27 msgid "" "You will see your secret and a QR code which can be scanned by the TOTP app " @@ -101,10 +107,18 @@ msgstr "" "kijk je onder de instellingen van de twee-factor authenticatie. Kies " "*Genereer back-upcodes*:" +#: ../../user_2fa.rst:41 +msgid "2FA backup code generator" +msgstr "2FA back-upcodegenerator" + #: ../../user_2fa.rst:44 msgid "You will then be presented with a list of one-time-use backup codes:" msgstr "Je krijgt dan een lijst met back-upcodes voor eenmalig gebruik:" +#: ../../user_2fa.rst:46 +msgid "2FA backup codes" +msgstr "2FA back-upcodes" + #: ../../user_2fa.rst:49 msgid "" "You should put these codes in a safe spot, somewhere you can find them. " @@ -133,10 +147,18 @@ msgstr "" "inschakelt, maar ook een andere, krijg je een selectiescherm te zien waarop " "je de twee-factor methode voor deze login kunt kiezen. Selecteer TOTP:" +#: ../../user_2fa.rst:62 +msgid "Choosing a two-factor authentication method." +msgstr "Een methode voor tweefactorauthenticatie kiezen." + #: ../../user_2fa.rst:65 msgid "Now, just enter your code:" msgstr "Voer nu je code in:" +#: ../../user_2fa.rst:67 +msgid "Entering TOTP code at login." +msgstr "TOTP-code invoeren bij inloggen." + #: ../../user_2fa.rst:70 msgid "" "If the code was correct you will be redirected to your Nextcloud account." @@ -179,22 +201,30 @@ msgid "`Nitrokey Storage `_" msgstr "`Nitrokey Storage `_" #: ../../user_2fa.rst:85 -msgid "FIDO U2F based:" -msgstr "FIDO U2F gebaseerd:" +msgid "FIDO2 based:" +msgstr "Op basis van FIDO2:" #: ../../user_2fa.rst:87 msgid "" -"`Nitrokey FIDO U2F `_" +"`Nitrokey FIDO2 `_" msgstr "" -"`Nitrokey FIDO U2F `_" +"`Nitrokey FIDO2 `_" -#: ../../user_2fa.rst:90 +#: ../../user_2fa.rst:88 +msgid "" +"`Nitrokey FIDO U2F `_" +msgstr "" +"`Nitrokey FIDO U2F `_" + +#: ../../user_2fa.rst:91 msgid "Using client applications with two-factor authentication" msgstr "Gebruik van client toepassingen met twee-factor authenticatie" -#: ../../user_2fa.rst:92 +#: ../../user_2fa.rst:93 msgid "" "Once you have enabled 2FA, your clients will no longer be able to connect " "with just your password unless they also have support for two-factor " @@ -205,5 +235,18 @@ msgstr "" "Zodra je 2FA hebt ingeschakeld, kunnen je clientapps niet langer verbinding " "maken met alleen je wachtwoord, tenzij ze ook ondersteuning hebben voor " "tweefactor authenticatie. Om dit mogelijk te maken, moet je daar " -"toestelspecifieke wachtwoorden voor genereren. Zie: doc: " -"`session_management` voor meer informatie over hoe je dit kunt doen." +"toestelspecifieke wachtwoorden voor genereren. Zie :doc:`session_management`" +" voor meer informatie over hoe je dit kunt doen." + +#: ../../user_2fa.rst:100 +msgid "Considerations" +msgstr "Overwegingen" + +#: ../../user_2fa.rst:102 +msgid "" +"If you use WebAuthn to login to your Nextcloud be sure to not use the same " +"token for 2FA. As this would mean you are again only using a single factor." +msgstr "" +"Bij gebruik van WebAuthn om in te loggen op je Nextcloud, zorg er dan voor " +"dat je niet dezelfde token gebruikt voor 2FA. Dit zou betekenen dat je één " +"enkele factor dubbel gebruikt." From 540bc0cbce0dcdf7df2677f8477d742b44a6ae52 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 08:00:11 +0000 Subject: [PATCH 0054/1895] Translate whats_new.pot in nl 100% translated source file: 'whats_new.pot' on 'nl'. --- .../locale/nl/LC_MESSAGES/whats_new.pot | 28 ++++++++++++++++--- 1 file changed, 24 insertions(+), 4 deletions(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/whats_new.pot b/user_manual/locale/nl/LC_MESSAGES/whats_new.pot index 0256b6367..caaa54a72 100644 --- a/user_manual/locale/nl/LC_MESSAGES/whats_new.pot +++ b/user_manual/locale/nl/LC_MESSAGES/whats_new.pot @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021 Nextcloud GmbH +# Copyright (C) 2023 Nextcloud GmbH # This file is distributed under the same license as the Nextcloud latest User Manual package. # FIRST AUTHOR , YEAR. # # Translators: # Chris Raymaekers , 2021 +# Stephan Paternotte , 2025 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: Nextcloud latest User Manual latest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-13 18:09+0000\n" +"POT-Creation-Date: 2023-04-17 10:07+0000\n" "PO-Revision-Date: 2019-11-07 20:28+0000\n" -"Last-Translator: Chris Raymaekers , 2021\n" -"Language-Team: Dutch (https://www.transifex.com/nextcloud/teams/64236/nl/)\n" +"Last-Translator: Stephan Paternotte , 2025\n" +"Language-Team: Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -29,15 +30,30 @@ msgstr "Wat is er nieuw voor gebruikers in Nextcloud |version|" msgid "Easier way to select a new app:" msgstr "Eenvoudiger manier om een nieuwe app te selecteren:" +#: ../../whats_new.rst:0 +msgid "screenshot of apps menu at top-left of Nextcloud Web GUI" +msgstr "" +"schermopname van apps menu in de linkerbovenhoek van de Nextcloud Web GUI" + #: ../../whats_new.rst:10 msgid "New Contacts menu to reach your colleagues or friends easier:" msgstr "" "Nieuw Contacten menu om je collega's of vrienden makkelijker te bereiken:" +#: ../../whats_new.rst:0 +msgid "screenshot of contacts menu at top-right of Nextcloud Web GUI" +msgstr "" +"schermopname van contactenmenu in de rechterbovenhoek van de Nextcloud Web " +"GUI" + #: ../../whats_new.rst:15 msgid "A contact popup menu over avatars everywhere:" msgstr "Overal een contact popup menu over avatars:" +#: ../../whats_new.rst:0 +msgid "screenshot of popup over avatar" +msgstr "schermopname van pop-up boven avatar" + #: ../../whats_new.rst:20 msgid "" "Ability to send multiple unique sharing links each with their own settings, " @@ -47,6 +63,10 @@ msgstr "" "eigen instellingen, door het invoeren van e-mailadressen (de ontvanger " "ontvangt een e-mail):" +#: ../../whats_new.rst:0 +msgid "screenshot of multiple sharing links" +msgstr "schermopname van meerdere delen-links" + #: ../../whats_new.rst:25 msgid "" "Many other improvements and new apps, like screensharing in Video calls, new" From 17e075d882a2b9b759c92b500c4ee8e529937d78 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 08:14:19 +0000 Subject: [PATCH 0055/1895] Translate webinterface.pot in nl 100% translated source file: 'webinterface.pot' on 'nl'. --- .../locale/nl/LC_MESSAGES/webinterface.pot | 175 ++++++++++-------- 1 file changed, 94 insertions(+), 81 deletions(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/webinterface.pot b/user_manual/locale/nl/LC_MESSAGES/webinterface.pot index 9bf082632..016342ab7 100644 --- a/user_manual/locale/nl/LC_MESSAGES/webinterface.pot +++ b/user_manual/locale/nl/LC_MESSAGES/webinterface.pot @@ -1,20 +1,22 @@ # SOME DESCRIPTIVE TITLE. -# Copyright (C) 2020 Nextcloud GmbH +# Copyright (C) 2025 Nextcloud GmbH # This file is distributed under the same license as the Nextcloud latest User Manual package. # FIRST AUTHOR , YEAR. # # Translators: # Chris Raymaekers , 2021 +# Jasper vk, 2025 +# Stephan Paternotte , 2025 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: Nextcloud latest User Manual latest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-23 19:25+0000\n" +"POT-Creation-Date: 2025-02-12 13:02+0000\n" "PO-Revision-Date: 2019-11-07 20:28+0000\n" -"Last-Translator: Chris Raymaekers , 2021\n" -"Language-Team: Dutch (https://www.transifex.com/nextcloud/teams/64236/nl/)\n" +"Last-Translator: Stephan Paternotte , 2025\n" +"Language-Team: Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -35,6 +37,10 @@ msgstr "" "hoeft alleen maar te verwijzen naar jouw Nextcloud-server URL (bijvoorbeeld " "cloud.example.com) en jouw gebruikersnaam en wachtwoord in te voeren:" +#: ../../webinterface.rst:8 +msgid "Nextcloud login screen." +msgstr "Nextcloud inlogscherm" + #: ../../webinterface.rst:12 msgid "Web browser requirements" msgstr "Vereisten voor webbrowsers" @@ -49,42 +55,50 @@ msgstr "" "gebruiken:" #: ../../webinterface.rst:17 -msgid "Microsoft **Internet Explorer**" -msgstr "Microsoft **Internet Explorer**" +msgid "Google **Chrome**/Chromium (Desktop and Android)" +msgstr "Google **Chrome**/Chromium (Desktop en Android)" #: ../../webinterface.rst:18 +msgid "Mozilla **Firefox** (Desktop and Android)" +msgstr "Mozilla **Firefox** (Desktop en Android)" + +#: ../../webinterface.rst:19 +msgid "Apple **Safari** (Desktop and iOS)" +msgstr "Apple **Safari** (Desktop en iOS)" + +#: ../../webinterface.rst:20 msgid "Microsoft **Edge**" msgstr "Microsoft **Edge**" -#: ../../webinterface.rst:19 -msgid "Mozilla **Firefox**" -msgstr "Mozilla **Firefox**" +#: ../../webinterface.rst:22 +msgid "" +"Not all versions are supported. Nextcloud is tested and built to work with " +"`these versions only. " +"`_" +msgstr "" +"Niet alle versies worden ondersteund. Nextcloud is getest en gebouwd om te " +"werken met `alleen deze versies. " +"`_" -#: ../../webinterface.rst:20 -msgid "Google **Chrome**/Chromium" -msgstr "Google **Chrome**/Chromium" - -#: ../../webinterface.rst:21 -msgid "Apple **Safari**" -msgstr "Apple **Safari**" - -#: ../../webinterface.rst:23 +#: ../../webinterface.rst:25 msgid "" "If you want to use Nextcloud Talk you need to run Mozilla **Firefox** 52+ or" " Google **Chrome**/Chromium 49+ to have the full experience with video calls" -" and screensharing. Google **Chrome**/Chromium requires a additional plugin " -"for screensharing." +" and screensharing." msgstr "" "Als je Nextcloud Talk wilt gebruiken, moet je Mozilla **Firefox** 52+ of " -"Google **Chrome**/Chromium 49+ gebruiken om functies als videogesprekken en " -"het delen van schermen optimaal te kunnen gebruiken. Google " -"**Chrome**/Chromium vereist een extra plugin voor het delen van het scherm." +"Google **Chrome**/Chromium 49+ gebruiken voor de volledige functionaliteit " +"van videogesprekken en het delen van het scherm." -#: ../../webinterface.rst:28 +#: ../../webinterface.rst:29 +msgid "Microsoft **Internet Explorer** is **NOT** supported." +msgstr "Microsoft **Internet Explorer** wordt **NIET** ondersteund." + +#: ../../webinterface.rst:32 msgid "Navigating the main user interface" msgstr "Navigeren door de gebruikersinterface" -#: ../../webinterface.rst:30 +#: ../../webinterface.rst:34 msgid "" "By default, the Nextcloud Web interface opens to your Dashboard or Files " "page:" @@ -93,47 +107,48 @@ msgstr "" "Bestandenpagina:" #: ../../webinterface.rst:36 -msgid "" -"In Files you can add, remove, and share files, and make changes based on the" -" access privileges set by you (if you are administering the server) or by " -"your server administrator." -msgstr "" -"In Bestanden kan je bestanden toevoegen, verwijderen en delen, en " -"wijzigingen aanbrengen op basis van de door jou ingestelde toegangsrechten " -"(als je de server beheert) of door jouw serverbeheerder." +msgid "The main Files view." +msgstr "De bestandenweergave." -#: ../../webinterface.rst:39 +#: ../../webinterface.rst:40 +msgid "" +"In Files you can add, remove, and share files, and the server administrator " +"can change access privileges." +msgstr "" +"In Bestanden kun je bestanden toevoegen, verwijderen en delen. De " +"serverbeheerder kan toegangsrechten aanpassen." + +#: ../../webinterface.rst:43 msgid "" "The Nextcloud user interface contains the following fields and functions:" msgstr "" "De Nextcloud gebruikersinterface bevat de volgende velden en functies:" -#: ../../webinterface.rst:41 +#: ../../webinterface.rst:45 msgid "" "**Apps Selection Menu** (1): Located in the upper left corner, you'll find " "all your apps which are available on your instance of Nextcloud. Clicking on" -" an apps icon will redirect you to the app." +" an app icon will redirect you to the app." msgstr "" -"**Apps Selectie Menu** (1): in de linkerbovenhoek vind je al de apps die " -"beschikbaar zijn op je instantie van Nextcloud. Als je op een app-icoontje " -"klikt, word je doorverwezen naar de app." +"**Apps Selectiemenu** (1): In de linkerbovenhoek toont alle apps die " +"beschikbaar zijn op je versie van Nextcloud. Klik op een app-pictogram om " +"deze te openen." -#: ../../webinterface.rst:45 +#: ../../webinterface.rst:49 msgid "" "**Apps Information** field (2): Located in the left sidebar, this provides " "filters and tasks associated with your selected app. For example, when you " -"are using the Files apps you have a special set of filters for quickly " +"are using the Files app you have a special set of filters for quickly " "finding your files, such as files that have been shared with you, and files " "that you have shared with others. You'll see different items for other apps." msgstr "" -"**Apps Informatie** veld (2): dit bevindt zich in de linker zijbalk en biedt" -" filters en taken die verband houden met de door jou geselecteerde app. Als " -"je bijvoorbeeld de app voor Bestanden gebruikt, beschik je over een speciale" -" set filters voor het snel vinden van je bestanden, zoals bestanden die met " -"jou zijn gedeeld en bestanden die je met anderen hebt gedeeld. Voor andere " -"apps zal je andere items te zien krijgen." +"**Apps Informatie** veld (2): Gelegen in de linker zijbalk, biedt filters en" +" taken die verband houden met de geselecteerde app. Bijv., bij de Bestanden-" +"app biedt dit een speciale set filters om snel bestanden te vinden, zoals " +"bestanden die met jou zijn gedeeld en bestanden die jij met anderen hebt " +"gedeeld. Bij andere apps worden andere items getoond." -#: ../../webinterface.rst:51 +#: ../../webinterface.rst:55 msgid "" "**Application View** (3): The main central field in the Nextcloud user " "interface. This field displays the contents or user features of your " @@ -143,7 +158,7 @@ msgstr "" "Nextcloud gebruikersinterface. Dit veld geeft de inhoud of de " "gebruikersfuncties van de door jou geselecteerde app weer." -#: ../../webinterface.rst:54 +#: ../../webinterface.rst:58 msgid "" "**Navigation Bar** (4): Located over the main viewing window (the " "Application View), this bar provides a type of breadcrumbs navigation that " @@ -155,7 +170,7 @@ msgstr "" "aan waarmee je kan navigeren naar bovenliggende mappen tot aan het hoogste " "niveau (thuis)." -#: ../../webinterface.rst:58 +#: ../../webinterface.rst:62 msgid "" "**New** button (5): Located in the Navigation Bar, the ``New`` button " "enables you to create new files, new folders, or upload files." @@ -163,25 +178,23 @@ msgstr "" "**Nieuw** knop (5): In de navigatiebalk kan je met de knop ``Nieuw`` nieuwe " "bestanden of mappen aanmaken en bestanden opladen." -#: ../../webinterface.rst:61 +#: ../../webinterface.rst:65 msgid "" "You can also drag and drop files from your file manager into the Files " -"Application View to upload them to your instance. Currently, the only Web " -"browsers that support drag-and-drop folders are Chrome and Chromium." +"Application View to upload them to your instance." msgstr "" -"Je kan ook bestanden vanuit je bestandsbeheerder naar de Applicatie Weergave" -" slepen om ze naar jouw instantie op te laden. Op dit moment zijn Chrome en " -"Chromium de enige webbrowsers die drag-and-drop mappen ondersteunen." +"Je kan ook bestanden van je bestandsbeheerder naar het Bestandsscherm slepen" +" en neerzetten om ze te uploaden." -#: ../../webinterface.rst:66 +#: ../../webinterface.rst:68 msgid "" -"**Search** field (6): Click on the magnifier in the upper right hand corner " -"of to search for files." +"**Search** field (6): Click on the Magnifier in the upper right corner to " +"search for files and entries of the current app." msgstr "" -"**Zoek** veld (6): Klik op het vergrootglas in de rechterbovenhoek van het " -"venster om te zoeken naar bestanden." +"**Zoek** veld (6): Klik op het vergrootglas in de rechterbovenhoek om te " +"zoeken naar bestanden en items van de huidige app." -#: ../../webinterface.rst:69 +#: ../../webinterface.rst:71 msgid "" "**Contacts Menu** (7): Gives you an overview about your contacts and users " "on your server. Dependent on the given details and available apps, you can " @@ -191,15 +204,15 @@ msgstr "" " op jouw server. Afhankelijk van de beschikbare gegevens en beschikbare apps" " kan je direct een videogesprek starten of e-mails versturen." -#: ../../webinterface.rst:73 +#: ../../webinterface.rst:75 msgid "" -"**Grid view** button (8). This looks like four little squares, which toggles" +"**Grid view** button (8): This looks like four little squares, which toggles" " the grid view for folders and files." msgstr "" -"**Raster Weergave** knop (8). Dit ziet eruit als vier vierkantjes, die de " -"raster weergave voor mappen en bestanden wijzigt." +"**Rasterweergave** knop (8): Dit lijkt op vier kleine vierkanten, die de " +"rasterweergave voor mappen en bestanden in- en uitschakelen." -#: ../../webinterface.rst:76 +#: ../../webinterface.rst:78 msgid "" "**Settings** menu (9): Click on your profile picture, located to the right " "of the Search field, to open your Settings dropdown menu. Your Settings page" @@ -209,55 +222,55 @@ msgstr "" "om het keuzemenu Instellingen te openen. Je instellingenpagina biedt de " "volgende instellingen en functies:" -#: ../../webinterface.rst:80 +#: ../../webinterface.rst:82 msgid "Links to download desktop and mobile apps" msgstr "Links om desktop en mobiele apps te downloaden" -#: ../../webinterface.rst:81 +#: ../../webinterface.rst:83 msgid "Server usage and space availability" msgstr "Server gebruik en beschikbaarheid van ruimte" -#: ../../webinterface.rst:82 +#: ../../webinterface.rst:84 msgid "Password management" msgstr "Wachtwoorden beheren" -#: ../../webinterface.rst:83 +#: ../../webinterface.rst:85 msgid "Name, email, and profile picture settings" msgstr "Instellingen voor naam, email, en profiel afbeelding" -#: ../../webinterface.rst:84 +#: ../../webinterface.rst:86 msgid "Manage connected browsers and devices" msgstr "Verbonden browsers en apparaten beheren" -#: ../../webinterface.rst:85 +#: ../../webinterface.rst:87 msgid "Group memberships" msgstr "Lidmaatschap van groepen" -#: ../../webinterface.rst:86 +#: ../../webinterface.rst:88 msgid "Interface language settings" msgstr "Interface taal instellingen" -#: ../../webinterface.rst:87 +#: ../../webinterface.rst:89 msgid "Manage notifications" msgstr "Beheer van meldingen" -#: ../../webinterface.rst:88 +#: ../../webinterface.rst:90 msgid "Federated Cloud ID and social media-sharing buttons" msgstr "Federated Cloud ID en knoppen voor delen via sociale media" -#: ../../webinterface.rst:89 +#: ../../webinterface.rst:91 msgid "SSL/TLS certificate manager for external storages" msgstr "Beheer van SSL/TLS certificaten voor externe opslag" -#: ../../webinterface.rst:90 +#: ../../webinterface.rst:92 msgid "Your Two-factor Settings" -msgstr "Je twee-factor instellingen" +msgstr "Jouw twee-factor instellingen" -#: ../../webinterface.rst:91 +#: ../../webinterface.rst:93 msgid "Nextcloud Version information" msgstr "Nextcloud Versie informatie" -#: ../../webinterface.rst:93 +#: ../../webinterface.rst:95 msgid "See :doc:`userpreferences` section to learn more about these settings." msgstr "" "Zie :doc:`userpreferences` sectie om meer te weten te komen over deze " From b6f2517feaf336cea5672cacffcaff7de98fe67b Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 08:43:51 +0000 Subject: [PATCH 0056/1895] Translate userpreferences.pot in nl 100% translated source file: 'userpreferences.pot' on 'nl'. --- .../locale/nl/LC_MESSAGES/userpreferences.pot | 225 ++++++++++++++---- 1 file changed, 180 insertions(+), 45 deletions(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/userpreferences.pot b/user_manual/locale/nl/LC_MESSAGES/userpreferences.pot index 7dbf802f3..5c90e6ca3 100644 --- a/user_manual/locale/nl/LC_MESSAGES/userpreferences.pot +++ b/user_manual/locale/nl/LC_MESSAGES/userpreferences.pot @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021 Nextcloud GmbH +# Copyright (C) 2025 Nextcloud GmbH # This file is distributed under the same license as the Nextcloud latest User Manual package. # FIRST AUTHOR , YEAR. # # Translators: # André Koot , 2020 # Chris Raymaekers , 2021 +# Stephan Paternotte , 2025 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: Nextcloud latest User Manual latest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-13 18:09+0000\n" +"POT-Creation-Date: 2025-03-18 16:40+0000\n" "PO-Revision-Date: 2019-11-07 20:28+0000\n" -"Last-Translator: Chris Raymaekers , 2021\n" -"Language-Team: Dutch (https://www.transifex.com/nextcloud/teams/64236/nl/)\n" +"Last-Translator: Stephan Paternotte , 2025\n" +"Language-Team: Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -36,33 +37,38 @@ msgstr "Om toegang te krijgen tot jouw persoonlijke instellingen:" #: ../../userpreferences.rst:9 msgid "" -"Click on your profile picture in the top, right corner of your Nextcloud " -"instance." +"Click on your profile picture in the top right corner of your Nextcloud " +"instance to open the menu" msgstr "" -"Klik op jouw profielfoto in de rechterbovenhoek van je Nextcloud instantie." +"Klik op je profielfoto in de rechterbovenhoek van je Nextcloud-instantie om " +"het menu te openen." #: ../../userpreferences.rst:11 -msgid "The Personal Settings Menu opens:" -msgstr "Het menu Persoonlijke instellingen wordt geopend:" +msgid "screenshot of user menu at top-right of Nextcloud Web GUI" +msgstr "" +"schermopname van gebruikersmenu in de rechterbovenhoek van de Nextcloud Web " +"GUI" + +#: ../../userpreferences.rst:14 +msgid "" +"Clicking on *Settings* from the drop down menu opens the user preferences" +msgstr "" +"Klik op *Instellingen* in het dropdownmenu om de gebruikersvoorkeuren te " +"openen" #: ../../userpreferences.rst:16 -msgid "*Personal Settings Menu*" -msgstr "*Persoonlijke Instellingen Menu*" +msgid "screenshot of users Personal settings page" +msgstr "schermopname van pagina met persoonlijke gebruikersinstellingen" -#: ../../userpreferences.rst:18 -msgid "Choose *Settings* from the drop down menu:" -msgstr "Kies *Instellingen* in het uitklapmenu:" - -#: ../../userpreferences.rst:23 +#: ../../userpreferences.rst:19 msgid "" "If you are an administrator, you can also manage users and administer the " -"server. These links do not appear to a non-admin user." +"server. These links do not appear to a non-administrator user." msgstr "" -"Als je een beheerder bent, kan je ook gebruikers beheren en de server " -"beheren. Deze links zijn niet zichtbaar voor een gebruiker die geen " -"beheerder is." +"Ben je een beheerder, dan kun je ook gebruikers beheren en de server " +"beheren. Deze links verschijnen niet voor een niet-beheerder gebruiker." -#: ../../userpreferences.rst:26 +#: ../../userpreferences.rst:22 msgid "" "The options listed in the Personal Settings Page depend on the applications " "that are enabled by the administrator. Some of the features you will see " @@ -72,15 +78,15 @@ msgstr "" "applicaties die door de beheerder zijn ingeschakeld. Enkele van de functies " "die je ziet, zijn de volgende:" -#: ../../userpreferences.rst:30 +#: ../../userpreferences.rst:26 msgid "Usage and available quota" msgstr "Gebruik en beschikbare quota" -#: ../../userpreferences.rst:31 +#: ../../userpreferences.rst:27 msgid "Manage your profile picture" -msgstr "Beheer je profielfoto" +msgstr "Je profielfoto beheren" -#: ../../userpreferences.rst:32 +#: ../../userpreferences.rst:28 msgid "" "Full name (You can make this anything you want, as it is separate from your " "Nextcloud login name, which is unique and cannot be changed)" @@ -88,61 +94,190 @@ msgstr "" "Volledige naam (Je kan hier alles invullen wat je wil, omdat het los staat " "van je Nextcloud login naam, die uniek is en niet kan worden gewijzigd)" -#: ../../userpreferences.rst:34 +#: ../../userpreferences.rst:30 msgid "Email address" msgstr "E-mailadres" -#: ../../userpreferences.rst:35 +#: ../../userpreferences.rst:31 msgid "List of your Group memberships" msgstr "Lijst met je groepslidmaatschappen" -#: ../../userpreferences.rst:36 +#: ../../userpreferences.rst:32 msgid "Change your password" -msgstr "Wijzig je wachtwoord" +msgstr "Je wachtwoord wijzigen" -#: ../../userpreferences.rst:37 +#: ../../userpreferences.rst:33 msgid ":doc:`user_2fa`" msgstr ":doc:`user_2fa`" -#: ../../userpreferences.rst:38 +#: ../../userpreferences.rst:34 msgid ":doc:`userpreferences`" msgstr ":doc:`userpreferences`" -#: ../../userpreferences.rst:39 +#: ../../userpreferences.rst:35 msgid "Choose the language for your Nextcloud interface" msgstr "Kies de taal voor je Nextcloud interface" -#: ../../userpreferences.rst:40 +#: ../../userpreferences.rst:36 +msgid "Choose your preferred first day of the week" +msgstr "Kies je voorkeur voor de eerste dag van de week" + +#: ../../userpreferences.rst:37 msgid "Links to desktop and mobile apps" msgstr "Koppelingen naar desktop- en mobiele apps" -#: ../../userpreferences.rst:41 +#: ../../userpreferences.rst:38 msgid "Manage your Activity stream and notifications" msgstr "Beheer je stroom van activiteiten en meldingen" -#: ../../userpreferences.rst:42 +#: ../../userpreferences.rst:39 msgid "Default folder to save new documents to" msgstr "Standaardmap om nieuwe documenten in op te slaan" -#: ../../userpreferences.rst:43 +#: ../../userpreferences.rst:40 msgid "Your Federated sharing ID" msgstr "Je Federated sharing ID" -#: ../../userpreferences.rst:44 +#: ../../userpreferences.rst:41 msgid "Social sharing links" msgstr "Social sharing links" -#: ../../userpreferences.rst:45 +#: ../../userpreferences.rst:42 msgid "Nextcloud version" -msgstr "Nextcloud versie" +msgstr "Nextcloud-versie" -#: ../../userpreferences.rst:47 +#: ../../userpreferences.rst:44 msgid "" -"Available options and settings depending on your administrators " -"configuration. If you are not able to change the password or the display-" +"Available options and settings depending on your administrator's " +"configuration. If you are not able to change the password or the display " "name in your personal settings, please contact your administrator for help." msgstr "" "Beschikbare opties en instellingen zijn afhankelijk van de configuratie van " -"jouw beheerders. Als je het wachtwoord of de display-naam in jouw " -"persoonlijke instellingen niet kan wijzigen, neem dan contact op met jouw " -"beheerder voor hulp." +"de beheerder. Als je het wachtwoord of de weergavenaam in jouw persoonlijke " +"instellingen niet kunt wijzigen, neem dan contact op met je beheerder voor " +"hulp." + +#: ../../userpreferences.rst:50 +msgid "Sharing your data in the global address book" +msgstr "Gegevens delen in het algemene adressenboek" + +#: ../../userpreferences.rst:52 +msgid "" +"Some administrators decide to share their global address book with other " +"Nextcloud instances (so called *Trusted Servers*) or even with the wider " +"world. This is helpful when two instances want to work closely together, or " +"when people want to use Nextcloud as a virtual telephone book for others to " +"browse. It also allows searching for contacts, creating shares and much " +"more." +msgstr "" +"Sommige beheerders besluiten hun globale adresboek te delen met andere " +"Nextcloud-instances (zogenaamde *Vertrouwde Servers*) of zelfs met de " +"bredere wereld. Dit is handig wanneer twee instances nauw willen " +"samenwerken, of wanneer mensen Nextcloud willen gebruiken als een virtueel " +"telefoonboek voor anderen. Het stelt ook in staat om naar contacten te " +"zoeken, shares aan te maken en veel meer." + +#: ../../userpreferences.rst:56 +msgid "" +"You can change what personal data of yours is shared by setting the scope of" +" your data. Clicking on the lock icon will open the following dropdown next " +"to each entry:" +msgstr "" +"Door de reikwijdte van je gegevens in te stellen kun je zelf bepalen welke " +"persoonlijke gegevens van jou gedeeld worden. Door op het slotpictogram te " +"klikken, wordt de volgende dialoog geopend naast elke vermelding:" + +#: ../../userpreferences.rst:59 ../../userpreferences.rst:92 +msgid "screenshot of scope dropdown on personal information form field" +msgstr "" +"schermopname van het scope dropdown-menu boven het formulier voor " +"persoonlijke informatie" + +#: ../../userpreferences.rst:63 +msgid "" +"If you set your data to **Private**, nobody but you will be able to see it." +msgstr "" +"Zet je je gegevens op **Privé**, dan zal niemand anders dan jij ze kunnen " +"zien." + +#: ../../userpreferences.rst:65 +msgid "" +"If you set your data to **Local**, all logged in users within your Nextcloud" +" instance will be able to see the information, but no one outside of it." +msgstr "" +"Als je je gegevens op **Lokaal** instelt, kunnen alle ingelogde gebruikers " +"binnen je Nextcloud-instantie de informatie zien, maar niemand daarbuiten." + +#: ../../userpreferences.rst:67 +msgid "" +"If you set your data to **Federated**, the trusted server(s) which are added" +" by your administrator will be able to see this data, in addition to all " +"logged in users." +msgstr "" +"Stel je je gegevens in op **Federated**, dan zullen de vertrouwde server(s) " +"die door je beheerder zijn toegevoegd deze gegevens kunnen zien, evenals " +"alle daarop ingelogde gebruikers." + +#: ../../userpreferences.rst:69 +msgid "" +"If you set your data to **Global**, anyone can see your data. For some use " +"cases this is wanted. Someone with a public facing role such as marketing or" +" sales might want to share their contact with a wide variety of connections " +"which might not be using Nextcloud." +msgstr "" +"Als je je gegevens op **Globaal** instelt, kan iedereen je gegevens zien. " +"Dit is wenselijk voor sommige gebruikstoepassingen. Iemand met een " +"publiekgerichte rol, zoals marketing of verkoop, wil zijn contactinformatie " +"misschien wel delen met een breed scala aan connecties die mogelijk geen " +"gebruikmaken van Nextcloud." + +#: ../../userpreferences.rst:74 +msgid "Restrict who can see your profile data" +msgstr "Beperken wie jouw profielgegevens kunnen zien" + +#: ../../userpreferences.rst:76 +msgid "" +"If the profile is enabled by your administrator, then your profile data can " +"be read by other users and guest. To control who can see which information " +"you can adjust the scopes already mentioned:" +msgstr "" +"Als het profiel is ingeschakeld door de beheerder, dan kunnen je " +"profielgegevens door andere gebruikers en gasten worden gelezen. Om te " +"controleren wie welke informatie kan zien, kun je de eerder genoemde scopes " +"aanpassen:" + +#: ../../userpreferences.rst:79 +msgid "" +"**Private** will only allow you and users you have added to your phone book " +"to see the data" +msgstr "" +"**Privé** laat alleen jou en de gebruikers die je aan je telefoonboek hebt " +"toegevoegd de gegevens zien." + +#: ../../userpreferences.rst:80 +msgid "**Local** and above will also allow guests to see your data" +msgstr "" +"**Lokaal** en hoger stelt gasten ook in staat om jouw gegevens te bekijken." + +#: ../../userpreferences.rst:82 +msgid "" +"To restrict the visibility even more you can disable guest from seeing your " +"profile data by changing the profile visibility to logged-in users. On the " +"personal settings you can find the button for profile visibility:" +msgstr "" +"Om de zichtbaarheid nog verder te beperken, kun je gasten verhinderen je " +"profielgegevens te zien door de profielzichtbaarheid te veranderen naar " +"ingelogde gebruikers. In de persoonlijke instellingen kun je de knop voor " +"profielzichtbaarheid vinden:" + +#: ../../userpreferences.rst:85 +msgid "screenshot of the profile visibility button in personal settings" +msgstr "" +"schermopname van de knop voor profielzichtbaarheid in persoonlijke " +"instellingen" + +#: ../../userpreferences.rst:90 +msgid "Which allows to configure the visibility for each profile attribute:" +msgstr "" +"Wat het mogelijk maakt om de zichtbaarheid voor elk profielattribuut te " +"configureren:" From 03e1bc847dadc3cc529f18abb1bd3fd17fb13aae Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 10:22:50 +0000 Subject: [PATCH 0057/1895] Translate sharing.pot in nl 100% translated source file: 'sharing.pot' on 'nl'. --- .../locale/nl/LC_MESSAGES/files/sharing.pot | 123 +++++++++++------- 1 file changed, 75 insertions(+), 48 deletions(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/files/sharing.pot b/user_manual/locale/nl/LC_MESSAGES/files/sharing.pot index cc431ed09..8ae535ec5 100644 --- a/user_manual/locale/nl/LC_MESSAGES/files/sharing.pot +++ b/user_manual/locale/nl/LC_MESSAGES/files/sharing.pot @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. -# Copyright (C) 2020 Nextcloud GmbH +# Copyright (C) 2025 Nextcloud GmbH # This file is distributed under the same license as the Nextcloud latest User Manual package. # FIRST AUTHOR , YEAR. # # Translators: # Chris Raymaekers , 2021 +# Stephan Paternotte , 2025 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: Nextcloud latest User Manual latest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-23 19:25+0000\n" +"POT-Creation-Date: 2025-02-12 13:02+0000\n" "PO-Revision-Date: 2020-07-28 08:00+0000\n" -"Last-Translator: Chris Raymaekers , 2021\n" -"Language-Team: Dutch (https://www.transifex.com/nextcloud/teams/64236/nl/)\n" +"Last-Translator: Stephan Paternotte , 2025\n" +"Language-Team: Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -57,21 +58,25 @@ msgstr "gebruikers of groepen op federated Nextcloud servers" #: ../../files/sharing.rst:14 msgid "" -"Some options may note be available due to administrative configuration. See " -":doc:`admin documentation ` for details." +"Some options may not be available due to administrative configuration. See " +"`administrator documentation " +"`__" +" for details." msgstr "" -"Sommige opties zijn mogelijk niet beschikbaar vanwege de administratieve " -"configuratie. Zie :doc:`admin documentation` voor details." +"Sommige opties zijn mogelijk niet beschikbaar vanwege administratieve " +"configuratie. Lees de `documentatie voor beheerders " +"`__" +" voor meer informatie." -#: ../../files/sharing.rst:19 +#: ../../files/sharing.rst:21 msgid "Public link shares" msgstr "Publieke links voor delen" -#: ../../files/sharing.rst:21 +#: ../../files/sharing.rst:23 msgid "You can share files and folders via public links." msgstr "Je kan bestanden en mappen delen via openbare links." -#: ../../files/sharing.rst:23 +#: ../../files/sharing.rst:25 msgid "" "A random 15-digit token will be created. The link will look like " "``https://cloud.example.com/s/yxcFKRWBJqYYzp4``." @@ -79,20 +84,20 @@ msgstr "" "Er wordt een willekeurig 15-cijferig token aangemaakt. De link zal eruit " "zien als ``https://cloud.example.com/s/yxcFKRWBJqYYzp4``." -#: ../../files/sharing.rst:25 +#: ../../files/sharing.rst:27 msgid "A number of options are available for public *folder* shares:" msgstr "" "Er zijn een aantal opties beschikbaar voor delen van publieke *mappen*:" -#: ../../files/sharing.rst:29 +#: ../../files/sharing.rst:31 msgid "**Read only** to allow viewing and downloading" msgstr "**Alleen lezen** om het bekijken en downloaden mogelijk te maken" -#: ../../files/sharing.rst:30 +#: ../../files/sharing.rst:32 msgid "**Allow upload and editing**" msgstr "**Uploaden en bewerken toelaten**" -#: ../../files/sharing.rst:31 +#: ../../files/sharing.rst:33 msgid "" "With **File drop**, the sharee can only upload files to a folder without " "seeing the files that are already in that folder." @@ -101,36 +106,39 @@ msgstr "" "alleen uploaden naar een map zonder de bestanden te zien die zich al in die " "map bevinden." -#: ../../files/sharing.rst:32 -msgid "**Hide download** prevents the sharee from downloading" -msgstr "" -"**Verberg download** voorkomt dat degene die toegang heeft tot de gedeelde " -"map bestanden kan downloaden" - -#: ../../files/sharing.rst:33 -msgid "**Password protect**" -msgstr "**Wachtwoord beveiligen**" - #: ../../files/sharing.rst:34 +msgid "" +"**Hide download** hides the download buttons and the default browser right-" +"click options in order to make downloading for the sharee harder" +msgstr "" +"**Download verbergen** verbergt de pictogrammen van de downloadknoppen en de" +" standaard rechtermuisklikopties van de browser om het downloaden voor de te" +" delen persoon te bemoeilijken." + +#: ../../files/sharing.rst:35 +msgid "**Password protect**" +msgstr "**Beveiligen met wachtwoord**" + +#: ../../files/sharing.rst:36 msgid "**Set expiration date** will automatically disable the share" msgstr "**Stel vervaldatum in** zal het delen automatisch stopzetten" -#: ../../files/sharing.rst:35 +#: ../../files/sharing.rst:37 msgid "**Note to recipient**" msgstr "**Notitie voor ontvanger**" -#: ../../files/sharing.rst:36 +#: ../../files/sharing.rst:38 msgid "**Unshare** to revert the share" msgstr "**Delen stoppen** om het delen te stoppen" -#: ../../files/sharing.rst:37 +#: ../../files/sharing.rst:39 msgid "" "**Add another link** to create multiple public links with different rights" msgstr "" "**Nog een link toevoegen** om meerdere publieke links toe te voegen met " "verschillende rechten" -#: ../../files/sharing.rst:39 +#: ../../files/sharing.rst:41 msgid "" "For public *file* shares, you may allow editing the file with one of " "Nextcloud's collaborative editing solutions:" @@ -139,10 +147,18 @@ msgstr "" " Nextcloud's collaboratieve bewerkingsoplossingen:" #: ../../files/sharing.rst:45 +msgid "" +"Password protection as well as file expiration are also propagated using " +"Federated File Sharing since Nextcloud 22." +msgstr "" +"Wachtwoordbeveiliging evenals verloop van bestandsdeling zijn sinds " +"Nextcloud 22 ook beschikbaar via Gefedereerde Bestandsdeling." + +#: ../../files/sharing.rst:48 msgid "Internal shares with users and groups" msgstr "Interne shares met gebruikers en groepen" -#: ../../files/sharing.rst:47 +#: ../../files/sharing.rst:50 msgid "" "When sharing with users, groups, circles or members of a Talk conversation, " "rights for the files or folder contents are adjustable:" @@ -150,7 +166,7 @@ msgstr "" "Bij het delen met gebruikers, groepen, cirkels of leden van een Talkgesprek " "zijn de rechten voor de bestanden of de inhoud van de map aanpasbaar:" -#: ../../files/sharing.rst:51 +#: ../../files/sharing.rst:54 msgid "" "As a sharee, you can configure if you automatically want to accept all " "incoming shares and have them added to your root folder, or if you want to " @@ -161,7 +177,7 @@ msgstr "" "laten toevoegen, of dat je telkens gevraagd wil worden of je de share wil " "accepteren of weigeren." -#: ../../files/sharing.rst:56 +#: ../../files/sharing.rst:59 msgid "" "For adjusting the acceptance setting, go to **Settings** > **Personal** > " "**Sharing**:" @@ -169,11 +185,22 @@ msgstr "" "Voor het aanpassen van de acceptatie instelling ga je naar **Instellingen** " "> **Persoonlijk** > **Delen**:" -#: ../../files/sharing.rst:62 +#: ../../files/sharing.rst:64 +msgid "" +"If the owner renames a shared file or folder, the new name will not be " +"reflected on the recipient's side. This is needed to prevent overwriting " +"existing files or folders on the recipient's end." +msgstr "" +"Als de eigenaar een gedeeld bestand of map hernoemt, zal de nieuwe naam niet" +" zichtbaar zijn aan de kant van de ontvanger. Dit is nodig om te voorkomen " +"dat bestaande bestanden of mappen aan de kant van de ontvanger worden " +"overschreven." + +#: ../../files/sharing.rst:67 msgid "Others with access" msgstr "Anderen met toegang" -#: ../../files/sharing.rst:64 +#: ../../files/sharing.rst:69 msgid "" "In order to find out if a file or folder is accessible to others through " "sharing of a superior folder hierarchy level, click on **Others with " @@ -183,7 +210,7 @@ msgstr "" " het delen van een map hoger in hiërarchie, klik je op **Anderen met " "toegang** in het tabblad delen:" -#: ../../files/sharing.rst:69 +#: ../../files/sharing.rst:74 msgid "" "The list shows all users, groups, chats etc. that the current object has " "been given access to through sharing of a superior folder in the hierarchy:" @@ -192,15 +219,15 @@ msgstr "" "gekregen tot het huidige object door het delen van een map, hoger in de " "hiërarchie:" -#: ../../files/sharing.rst:74 +#: ../../files/sharing.rst:79 msgid "Click on the three dots to:" msgstr "Klik op de drie stippen om:" -#: ../../files/sharing.rst:76 +#: ../../files/sharing.rst:81 msgid "see who initiated the share" msgstr "te zien wie de share heeft opgezet" -#: ../../files/sharing.rst:77 +#: ../../files/sharing.rst:82 msgid "" "see where the share was initiated (click to navigate to the folder, as far " "as you have access there)" @@ -208,13 +235,13 @@ msgstr "" "te zie waar de share is opgezet (klik om naar de map te navigeren, voor " "zover je daar toegang toe hebt)" -#: ../../files/sharing.rst:78 +#: ../../files/sharing.rst:83 msgid "unshare the initial share (only accessible for the share owner)" msgstr "" "de oorspronkelijke share niet langer te niet delen (alleen toegankelijk voor" " de eigenaar van de share)" -#: ../../files/sharing.rst:81 +#: ../../files/sharing.rst:86 msgid "" "This information is only visible to the owner of a file/folder or sharees " "with resharing rights." @@ -222,11 +249,11 @@ msgstr "" "Deze informatie is alleen zichtbaar voor de eigenaar van een bestand/map of " "voor gebruikers met resharing rechten." -#: ../../files/sharing.rst:86 +#: ../../files/sharing.rst:91 msgid "Federated Shares" msgstr "Federated Shares" -#: ../../files/sharing.rst:88 +#: ../../files/sharing.rst:93 msgid "" "Federation Sharing allows you to mount file shares from remote Nextcloud " "servers, in effect creating your own cloud of Nextclouds. You can create " @@ -237,11 +264,11 @@ msgstr "" "Nextclouds kunt creëren. Je kan directe share links maken met gebruikers op " "andere Nextcloud-servers." -#: ../../files/sharing.rst:93 +#: ../../files/sharing.rst:98 msgid "Creating a new Federation Share" msgstr "Het aanmaken van een nieuw Federation Share" -#: ../../files/sharing.rst:95 +#: ../../files/sharing.rst:100 msgid "" "Federation sharing is enabled by default. Follow these steps to create a new" " share with other Nextcloud or ownCloud servers:" @@ -249,7 +276,7 @@ msgstr "" "Federation sharing is standaard ingeschakeld. Volg deze stappen om een " "nieuwe share aan te maken met andere Nextcloud of ownCloud servers:" -#: ../../files/sharing.rst:97 +#: ../../files/sharing.rst:102 msgid "" "Go to your ``Files`` page and click the Share icon on the file or directory " "you want to share. In the sidebar enter the username and URL of the remote " @@ -261,7 +288,7 @@ msgstr "" " de gebruiker op afstand in dit formulier in: ``@``. In dit voorbeeld is dat ``bob@cloud.example.com``:" -#: ../../files/sharing.rst:104 +#: ../../files/sharing.rst:109 msgid "" "The sharee is receiving a notification in their Nextcloud, allowing them to " "either accept or decline the incoming share:" @@ -269,11 +296,11 @@ msgstr "" "Degenen waarmee het bestand wordt gedeeld ontvangen een melding in hun " "Nextcloud, waardoor ze de inkomende share kunnen accepteren of weigeren:" -#: ../../files/sharing.rst:110 +#: ../../files/sharing.rst:115 msgid "Adding a public share to your Nextcloud" msgstr "Een publiek share toevoegen aan jouw Nextcloud" -#: ../../files/sharing.rst:112 +#: ../../files/sharing.rst:117 msgid "" "Nextcloud public link share pages offer an option to add that file or folder" " as a federated share into your own Nextcloud instance. Just enter your " From 7f9127c6fc3d318b787c9070ec5888dc394363b9 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 10:26:01 +0000 Subject: [PATCH 0058/1895] Translate index.pot in nl 100% translated source file: 'index.pot' on 'nl'. --- .../locale/nl/LC_MESSAGES/groupware/index.pot | 54 +++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 user_manual/locale/nl/LC_MESSAGES/groupware/index.pot diff --git a/user_manual/locale/nl/LC_MESSAGES/groupware/index.pot b/user_manual/locale/nl/LC_MESSAGES/groupware/index.pot new file mode 100644 index 000000000..65167eff5 --- /dev/null +++ b/user_manual/locale/nl/LC_MESSAGES/groupware/index.pot @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2025 Nextcloud GmbH +# This file is distributed under the same license as the Nextcloud latest User Manual package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stephan Paternotte , 2025 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Nextcloud latest User Manual latest\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-02-12 13:02+0000\n" +"PO-Revision-Date: 2021-12-01 18:40+0000\n" +"Last-Translator: Stephan Paternotte , 2025\n" +"Language-Team: Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../groupware/index.rst:3 +msgid "Groupware" +msgstr "Groupware" + +#: ../../groupware/index.rst:5 +msgid "" +"Nextcloud Groupware is a bundle of apps which is consisting of an " +"**Mail**-client (IMAP/POP3) and a **Calendar** and **Contacts** server " +"(CalDAV/CardDAV) with the respective web interfaces." +msgstr "" +"Nextcloud Groupware is een bundel van apps die bestaat uit een " +"**Mail**-client (IMAP/POP3) en een **Kalender** en **Contacten** server " +"(CalDAV/CardDAV) met de bijbehorende webinterfaces." + +#: ../../groupware/index.rst:9 +msgid "" +"We complete those productivity tools with **Deck**, a project management " +"tool which allows you to create Kanban-style task boards and share them with" +" your team." +msgstr "" +"We vullen die productiviteitstools aan met **Deck**, een " +"projectmanagementtool waarmee je Kanban-achtige taakkaarten kunt maken en " +"deze kunt delen met je team." + +#: ../../groupware/index.rst:12 +msgid "" +"You can find out more about Nextcloud Groupware `on our website " +"`_." +msgstr "" +"Meer informatie over Nextcloud Groepware is te vinden `op onze website " +"`_." From 60f8dc4f7196bf92476db7284a83f34f8c788217 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 10:31:57 +0000 Subject: [PATCH 0059/1895] Translate absence.pot in nl 100% translated source file: 'absence.pot' on 'nl'. --- .../nl/LC_MESSAGES/groupware/absence.pot | 80 +++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 user_manual/locale/nl/LC_MESSAGES/groupware/absence.pot diff --git a/user_manual/locale/nl/LC_MESSAGES/groupware/absence.pot b/user_manual/locale/nl/LC_MESSAGES/groupware/absence.pot new file mode 100644 index 000000000..699f709d1 --- /dev/null +++ b/user_manual/locale/nl/LC_MESSAGES/groupware/absence.pot @@ -0,0 +1,80 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2025 Nextcloud GmbH +# This file is distributed under the same license as the Nextcloud latest User Manual package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stephan Paternotte , 2025 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Nextcloud latest User Manual latest\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-02-12 13:02+0000\n" +"PO-Revision-Date: 2025-02-12 13:33+0000\n" +"Last-Translator: Stephan Paternotte , 2025\n" +"Language-Team: Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../groupware/absence.rst:5 +msgid "Setting out-of-office messages" +msgstr "Het instellen van automatische afwezigheidsberichten" + +#: ../../groupware/absence.rst:7 +msgid "" +"If you are absent for vacation, sick leave or similar, you can add an out-" +"of-office message in the **Absence** section of the **Availability** " +"settings." +msgstr "" +"Als je afwezig bent vanwege vakantie, ziekteverlof of iets dergelijks, kun " +"je een afwezigheidsbericht toevoegen in de sectie **Afwezigheid** van de " +"instellingen voor **Beschikbaarheid**." + +#: ../../groupware/absence.rst:9 +msgid "" +"The interface asks for the time of absence, a short and a long message and " +"an optional replacement user. This data is used for the following purposes:" +msgstr "" +"De interface vraagt om de duur van afwezigheid, een kort en een lang bericht" +" en een optionele vervangende gebruiker. Deze gegevens worden voor de " +"volgende doeleinden gebruikt:" + +#: ../../groupware/absence.rst:11 +msgid "" +"Your user status will change to the short message when your absence starts " +"and reset when it ends." +msgstr "" +"Jouw gebruikersstatus verandert naar het korte bericht zodra je afwezigheid " +"begint en wordt teruggezet wanneer deze eindigt." + +#: ../../groupware/absence.rst:12 +msgid "" +"And event with status *busy* will be created in your personal calendar. This" +" allows others to see that you are not available when they use the free/busy" +" feature." +msgstr "" +"En er wordt een gebeurtenis met de status *bezet* aangemaakt in je " +"persoonlijke agenda. Dit stelt anderen in staat om te zien dat je niet " +"beschikbaar bent wanneer ze de functie beschikbaar/bezet gebruiken." + +#: ../../groupware/absence.rst:13 +msgid "" +"If enabled, the Mail app will apply an autoresponder using the long message." +msgstr "" +"Indien ingeschakeld, zal de Mail-app automatisch antwoorden gebruiken met " +"het lange bericht." + +#: ../../groupware/absence.rst:14 +msgid "" +"The Talk app will show the long out-of-office message to others when they " +"try to reach you in a 1:1 chat during your absence as well as the " +"replacement user if set." +msgstr "" +"De Talk-app toont het lange afwezigheidsbericht aan anderen die je tijdens " +"jouw afwezigheid proberen te bereiken in een 1-op-1 chat, evenals de " +"eventuele vervangende gebruiker." From 6a01bc3436a41d0d57f83b86a715735dcd307ec6 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 10:38:38 +0000 Subject: [PATCH 0060/1895] Translate index.pot in nl 100% translated source file: 'index.pot' on 'nl'. --- .../locale/nl/LC_MESSAGES/desktop/index.pot | 68 +++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 user_manual/locale/nl/LC_MESSAGES/desktop/index.pot diff --git a/user_manual/locale/nl/LC_MESSAGES/desktop/index.pot b/user_manual/locale/nl/LC_MESSAGES/desktop/index.pot new file mode 100644 index 000000000..cf8dc111a --- /dev/null +++ b/user_manual/locale/nl/LC_MESSAGES/desktop/index.pot @@ -0,0 +1,68 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2025 Nextcloud GmbH +# This file is distributed under the same license as the Nextcloud latest User Manual package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stephan Paternotte , 2025 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Nextcloud latest User Manual latest\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-03-04 12:42+0000\n" +"PO-Revision-Date: 2025-02-12 13:33+0000\n" +"Last-Translator: Stephan Paternotte , 2025\n" +"Language-Team: Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../desktop/index.rst:3 +msgid "Desktop Clients" +msgstr "Desktop Clients" + +#: ../../desktop/index.rst:5 +msgid "" +"Available for Windows, macOS, and various Linux distributions, the Nextcloud" +" Desktop Sync client enables you to:" +msgstr "" +"Beschikbaar voor Windows, macOS en diverse Linux-distributies, stelt de " +"Nextcloud Desktop Sync-client je in staat om:" + +#: ../../desktop/index.rst:8 +msgid "" +"Specify one or more directories on your computer that you want to " +"synchronize to the Nextcloud server." +msgstr "" +"Een of meer mappen op je computer te specificeren die je wilt synchroniseren" +" met de Nextcloud-server." + +#: ../../desktop/index.rst:10 +msgid "Always have the latest files synchronized, wherever they are located." +msgstr "" +"Altijd toegang te hebben tot de nieuwste gesynchroniseerde bestanden, waar " +"ze zich ook bevinden." + +#: ../../desktop/index.rst:12 +msgid "" +"Your files are always automatically synchronized between your Nextcloud " +"server, computer and mobile device." +msgstr "" +"Je bestanden altijd automatisch gesynchroniseerd te houden tussen je " +"Nextcloud-server, je computer en mobiele apparaat." + +#: ../../desktop/index.rst:25 +msgid "You can find additional information here:" +msgstr "Je kunt hier aanvullende informatie vinden:" + +#: ../../desktop/index.rst:27 +msgid "`Admin manual`_" +msgstr "`Beheerdershandleiding`_" + +#: ../../desktop/index.rst:28 +msgid "`Developer manual`_" +msgstr "`Ontwikkelaarshandleiding`_" From bd9965ed00060528d0f569ddcac9f8aa76ba6dde Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 14:59:42 +0000 Subject: [PATCH 0061/1895] Translate sync_gnome.pot in nl 100% translated source file: 'sync_gnome.pot' on 'nl'. --- .../nl/LC_MESSAGES/groupware/sync_gnome.pot | 107 ++++++++++++++++++ 1 file changed, 107 insertions(+) create mode 100644 user_manual/locale/nl/LC_MESSAGES/groupware/sync_gnome.pot diff --git a/user_manual/locale/nl/LC_MESSAGES/groupware/sync_gnome.pot b/user_manual/locale/nl/LC_MESSAGES/groupware/sync_gnome.pot new file mode 100644 index 000000000..75bc51a4f --- /dev/null +++ b/user_manual/locale/nl/LC_MESSAGES/groupware/sync_gnome.pot @@ -0,0 +1,107 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2025 Nextcloud GmbH +# This file is distributed under the same license as the Nextcloud latest User Manual package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stephan Paternotte , 2025 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Nextcloud latest User Manual latest\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-02-12 13:02+0000\n" +"PO-Revision-Date: 2021-12-01 18:40+0000\n" +"Last-Translator: Stephan Paternotte , 2025\n" +"Language-Team: Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../groupware/sync_gnome.rst:3 +msgid "Synchronizing with the GNOME desktop" +msgstr "Synchroniseren met de GNOME-desktop" + +#: ../../groupware/sync_gnome.rst:5 +msgid "" +"The `GNOME desktop `_ has built-in support for " +"Nextcloud's calendar, contacts, and tasks which will be displayed by the " +"Evolution Personal Information Manager (PIM), or the Calendar, Tasks, and " +"Contacts apps. Similarly, Files integrates into the Nautilus file manager " +"via WebDAV. The latter works only while the computer is connected." +msgstr "" +"De `GNOME desktop `_ heeft ingebouwde ondersteuning " +"voor de agenda, contacten en taken van Nextcloud, die worden weergegeven " +"door de Evolution Personal Information Manager (PIM), of de Agenda, Taken en" +" Contacten-apps. Op dezelfde manier integreert Bestanden in de Nautilus-" +"bestandsbeheerder via WebDAV. Het laatste werkt alleen wanneer de computer " +"is verbonden." + +#: ../../groupware/sync_gnome.rst:8 +msgid "This can be done by following these steps:" +msgstr "Dit kan gedaan worden door deze stappen te volgen:" + +#: ../../groupware/sync_gnome.rst:10 +msgid "In the GNOME settings, open Online Accounts." +msgstr "In de GNOME-instellingen, open Online Accounts." + +#: ../../groupware/sync_gnome.rst:11 +msgid "Under \"Add an account\" pick ``Nextcloud``:" +msgstr "Onder \"Account toevoegen\" kies ``Nextcloud``:" + +#: ../../groupware/sync_gnome.rst:15 +msgid "" +"Enter your server URL, username, and password. If you have enabled two-" +"factor authentication (2FA), you need to generate an application " +"password/token, because GNOME Online Accounts `doesn't support Nextcloud's " +"WebFlow login yet `_ (`Learn more " +"`_):" +msgstr "" +"Voer je server-URL, gebruikersnaam en wachtwoord in. Als je de " +"tweefactorauthenticatie (2FA) hebt ingeschakeld, moet je een " +"applicatiewachtwoord/token genereren, want GNOME Online Accounts " +"`ondersteunt nog niet Nextcloud's WebFlow login " +"`_ (`Meer " +"informatie " +"`_):" + +#: ../../groupware/sync_gnome.rst:24 +msgid "" +"In the next window, select which resources GNOME should access and press the" +" cross in the top right to close:" +msgstr "" +"Selecteer in het volgende venster welke bronnen GNOME zou moeten benaderen " +"en druk op het kruisje rechtsboven om te sluiten:" + +#: ../../groupware/sync_gnome.rst:29 +msgid "" +"Nextcloud tasks, calendars, and contacts should now be visible in the " +"Evolution PIM, as well as the Task, Contacts, and Calendars apps." +msgstr "" +"Nextcloud-taken, agenda's en contacten zouden nu zichtbaar moeten zijn in de" +" Evolution PIM, evenals de Taken-, Contacten- en Agenda-apps." + +#: ../../groupware/sync_gnome.rst:31 +msgid "" +"Files will be shown as a WebDAV resource in the Nautilus file manager, and " +"also be available in the GNOME file open/save dialogues. Documents should be" +" integrated into the GNOME Documents app." +msgstr "" +"Bestanden zullen worden weergegeven als een WebDAV-resource in de Nautilus-" +"bestandsmanager en zullen ook beschikbaar zijn in de GNOME-bestanden " +"open/sla op dialoogvensters. Documenten moeten worden geïntegreerd in de " +"GNOME Documenten-app." + +#: ../../groupware/sync_gnome.rst:34 +msgid "" +"All resources should also be searchable from anywhere by pressing the " +"Windows key and entering a search term." +msgstr "" +"Alle bronnen moeten ook vanaf elke locatie doorzoekbaar zijn door op de " +"Windows-toets te drukken en een zoekterm in te voeren." From 4ac039c04792b136eb21fda0c1e5a5669fdd8f5f Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 15:10:29 +0000 Subject: [PATCH 0062/1895] Translate conflicts.pot in nl 100% translated source file: 'conflicts.pot' on 'nl'. --- .../nl/LC_MESSAGES/desktop/conflicts.pot | 166 ++++++++++++++++++ 1 file changed, 166 insertions(+) create mode 100644 user_manual/locale/nl/LC_MESSAGES/desktop/conflicts.pot diff --git a/user_manual/locale/nl/LC_MESSAGES/desktop/conflicts.pot b/user_manual/locale/nl/LC_MESSAGES/desktop/conflicts.pot new file mode 100644 index 000000000..0f91a1fc4 --- /dev/null +++ b/user_manual/locale/nl/LC_MESSAGES/desktop/conflicts.pot @@ -0,0 +1,166 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2025 Nextcloud GmbH +# This file is distributed under the same license as the Nextcloud latest User Manual package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stephan Paternotte , 2025 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Nextcloud latest User Manual latest\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-02-12 13:02+0000\n" +"PO-Revision-Date: 2025-02-12 13:33+0000\n" +"Last-Translator: Stephan Paternotte , 2025\n" +"Language-Team: Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../desktop/conflicts.rst:3 +msgid "Conflicts" +msgstr "Conflicten" + +#: ../../desktop/conflicts.rst:6 +msgid "Overview" +msgstr "Overzicht" + +#: ../../desktop/conflicts.rst:8 +msgid "" +"The Nextcloud desktop client uploads local changes and downloads remote " +"changes. When a file has changed on the local side and on the remote between" +" synchronization runs the client will be unable to resolve the situation on " +"its own. It will create a conflict file with the local version, download the" +" remote version and notify the user that a conflict occurred which needs " +"attention." +msgstr "" +"De Nextcloud-desktopclient uploadt lokale wijzigingen en downloadt externe " +"wijzigingen. Wanneer een bestand zowel lokaal als extern is gewijzigd tussen" +" synchronisaties, kan de client de situatie niet zelfstandig oplossen. Het " +"zal een conflictopmaakbestand maken met de lokale versie, de externe versie " +"downloaden en de gebruiker informeren dat er een conflict is opgetreden dat " +"aandacht vereist." + +#: ../../desktop/conflicts.rst:15 +msgid "Example" +msgstr "Voorbeeld" + +#: ../../desktop/conflicts.rst:17 +msgid "" +"Imagine there is a file called ``mydata.txt`` your synchronized folder. It " +"has not changed for a while and contains the text \"contents\" locally and " +"remotely. Now, nearly at the same time you update it locally to say \"local " +"contents\" while the file on the server gets updated to contain \"remote " +"contents\" by someone else." +msgstr "" +"Stel je voor dat er een bestand is genaamd ``mydata.txt`` in je " +"gesynchroniseerde map. Het is al een tijdje niet veranderd en bevat lokaal " +"en op afstand de tekst \"inhoud\". Nu, bijna op hetzelfde moment, werk je " +"het lokaal bij naar \"lokale inhoud\" terwijl het bestand op de server door " +"iemand anders wordt bijgewerkt naar \"afstandsinhoud\"." + +#: ../../desktop/conflicts.rst:22 +msgid "" +"When attempting to upload your local changes the desktop client will notice " +"that the server version has also changed. It creates a conflict and you will" +" now have two files on your local machine:" +msgstr "" +"Bij de poging om de lokale wijzigingen te uploaden, zal de desktopclient " +"opmerken dat de serverversie ook is gewijzigd. Dit creëert een conflict en " +"je zult nu twee bestanden op je lokale machine hebben:" + +#: ../../desktop/conflicts.rst:26 +msgid "``mydata.txt`` containing \"remote contents\"" +msgstr "``mydata.txt`` bevattende \"externe inhoud\"" + +#: ../../desktop/conflicts.rst:27 +msgid "" +"``mydata (conflicted copy 2018-04-10 093612).txt`` containing \"local " +"contents\"" +msgstr "" +"``mydata (conflicterende kopie 2018-04-10 093612).txt`` met \"lokale " +"inhoud\"" + +#: ../../desktop/conflicts.rst:29 +msgid "" +"In this situation the file ``mydata.txt`` has the remote changes (and will " +"continue to be updated with further remote changes when they happen), but " +"your local adjustments have not been sent to the server (unless the server " +"enables conflict uploading, see below)." +msgstr "" +"In deze situatie bevat het bestand ``mydata.txt`` de externe wijzigingen (en" +" zal het blijven worden bijgewerkt met verdere externe wijzigingen wanneer " +"deze plaatsvinden), maar de lokale aanpassingen zijn niet naar de server " +"gestuurd (tenzij de server het uploaden van conflicten inschakelt, zie " +"hieronder)." + +#: ../../desktop/conflicts.rst:34 +msgid "" +"The desktop client notifies you of this situation via system notifications, " +"the system tray icon and a yellow \"unresolved conflicts\" badge in the " +"account settings window. Clicking this badge shows a list that includes the " +"unresolved conflicts and clicking one of them opens an explorer window " +"pointing at the relevant file." +msgstr "" +"De desktopclient meldt deze situatie via systeemmeldingen, het " +"systeemvakpictogram en een gele 'onopgeloste conflicten' badge in het " +"instellingenvenster voor het account. Door op deze badge te klikken, wordt " +"een lijst weergegeven met de onopgeloste conflicten en door op een van hen " +"te klikken, opent een verkennervenster dat naar het relevante bestand wijst." + +#: ../../desktop/conflicts.rst:39 +msgid "" +"To resolve this conflict, open both files, compare the differences and copy " +"your local changes from the \"conflicted copy\" file into the base file " +"where applicable. In this example you might change ``mydata.txt`` to say " +"\"local and remote contents\" and delete the file with \"conflicted copy\" " +"in its name. With that, the conflict is resolved." +msgstr "" +"Om dit conflict op te lossen, moet je beide bestanden openen, de verschillen" +" vergelijken en waar nodig de lokale wijzigingen van het 'conflicted " +"copy'-bestand kopiëren naar het basisbestand. In dit voorbeeld zou je " +"``mydata.txt`` kunnen aanpassen om 'lokale en externe inhoud' te zeggen en " +"het bestand met 'conflicted copy' in de naam te verwijderen. Daarmee is het " +"conflict opgelost." + +#: ../../desktop/conflicts.rst:46 +msgid "Uploading conflicts (experimental)" +msgstr "Conflicten uploaden (experimenteel)" + +#: ../../desktop/conflicts.rst:48 +msgid "" +"By default the conflict file (the file with \"conflicted copy\" in its name " +"that contains your local conflicting changes) is not uploaded to the server." +" The idea is that you, the author of the changes, are the best person for " +"resolving the conflict and showing the conflict to other users might create " +"confusion." +msgstr "" +"Standaard wordt het conflicterende bestand (het bestand met \"conflicterende" +" kopie\" in de naam dat jouw lokale conflicterende wijzigingen bevat) niet " +"naar de server geüpload. Het idee is dat jij, de auteur van de wijzigingen, " +"de beste persoon bent om het conflict op te lossen en het tonen van het " +"conflict aan andere gebruikers verwarring kan creëren." + +#: ../../desktop/conflicts.rst:53 +msgid "" +"However, in some scenarios it makes a lot of sense to upload these " +"conflicting changes such that local work can become visible even if the " +"conflict won't be resolved immediately." +msgstr "" +"Echter, in sommige scenario's is het heel logisch om deze conflicterende " +"wijzigingen te uploaden zodat lokaal werk zichtbaar kan worden, zelfs als " +"het conflict niet onmiddellijk opgelost zal worden." + +#: ../../desktop/conflicts.rst:57 +msgid "" +"In the future there might be a server-wide switch for this behavior. For now" +" it can already be tested by setting the environment variable " +"``OWNCLOUD_UPLOAD_CONFLICT_FILES=1``." +msgstr "" +"In de toekomst kan er een serverbrede schakelaar voor dit gedrag zijn. Voor " +"nu kan het al worden getest door de omgevingsvariabele " +"``OWNCLOUD_UPLOAD_CONFLICT_FILES=1`` in te stellen. ." From ac8d47267db2f1a80df47fa404b7fbd890de1bc3 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Fri, 6 Jun 2025 08:05:48 +0000 Subject: [PATCH 0063/1895] Translate join_a_call_or_chat_as_guest.pot in nl 100% translated source file: 'join_a_call_or_chat_as_guest.pot' on 'nl'. --- .../talk/join_a_call_or_chat_as_guest.pot | 130 ++++++++++-------- 1 file changed, 73 insertions(+), 57 deletions(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/talk/join_a_call_or_chat_as_guest.pot b/user_manual/locale/nl/LC_MESSAGES/talk/join_a_call_or_chat_as_guest.pot index baa01b416..3d54ff6d7 100644 --- a/user_manual/locale/nl/LC_MESSAGES/talk/join_a_call_or_chat_as_guest.pot +++ b/user_manual/locale/nl/LC_MESSAGES/talk/join_a_call_or_chat_as_guest.pot @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021 Nextcloud GmbH +# Copyright (C) 2025 Nextcloud GmbH # This file is distributed under the same license as the Nextcloud latest User Manual package. # FIRST AUTHOR , YEAR. # # Translators: # W J , 2021 +# Stephan Paternotte , 2025 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: Nextcloud latest User Manual latest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-30 18:32+0200\n" +"POT-Creation-Date: 2025-02-12 13:02+0000\n" "PO-Revision-Date: 2021-10-11 16:50+0000\n" -"Last-Translator: W J , 2021\n" -"Language-Team: Dutch (https://www.transifex.com/nextcloud/teams/64236/nl/)\n" +"Last-Translator: Stephan Paternotte , 2025\n" +"Language-Team: Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -22,16 +23,16 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../../talk/join_a_call_or_chat_as_guest.rst:2 -msgid "join a call or chat as guest" -msgstr "Vervoeg een gesprek of chat als gast" +msgid "Join a call or chat as guest" +msgstr "Neem deel aan een gesprek of chat als gast" #: ../../talk/join_a_call_or_chat_as_guest.rst:4 msgid "" -"Nextcloud Talk offers audio/video and text chat integrated in Nextcloud. It " -"offers a web interface as well as mobile apps." +"Nextcloud Talk offers audio/video call and text chat integrated in " +"Nextcloud. It offers a web interface as well as mobile apps." msgstr "" -"Nextcloud Talk biedt audio/video en tekst chat, geïntegreerd binnen " -"Nextcloud. Er zijn zowel een web interface als mobiele apps voorzien." +"Nextcloud Talk biedt audio-/video-oproepen en tekstchat geïntegreerd in " +"Nextcloud. Het biedt een webinterface evenals mobiele apps." #: ../../talk/join_a_call_or_chat_as_guest.rst:7 msgid "" @@ -43,71 +44,86 @@ msgstr "" #: ../../talk/join_a_call_or_chat_as_guest.rst:10 msgid "Joining a chat" -msgstr "Een chat vervoegen" +msgstr "Deelnemen aan een chat" #: ../../talk/join_a_call_or_chat_as_guest.rst:12 msgid "" -"If you received a link to a chat conversation, you can open this in your " -"browser to join the chat." +"If you received a link to a chat conversation, you can open it in your " +"browser to join the chat. Here, you will be prompted to enter your name " +"before joining." msgstr "" -"Als je een link naar een chat gesprek hebt ontvangen kan je deze in je " -"webbrowser openen om te chat te vervoegen." +"Als je een link naar een chatgesprek hebt ontvangen, kun je deze in je " +"browser openen om deel te nemen aan de chat. Hier word je gevraagd om je " +"naam in te voeren voordat je deelneemt." -#: ../../talk/join_a_call_or_chat_as_guest.rst:16 +#: ../../talk/join_a_call_or_chat_as_guest.rst:17 msgid "" -"You can change your name using the edit button on the top-right by clicking " -"the ``Edit`` button." +"You can also change your name later by clicking the ``Edit`` button, located" +" top-right." msgstr "" -"Je kan je naam veranderen door middel van de knop \"bewerken\" rechts " -"bovenaan." +"Je kunt je naam later ook wijzigen door op de knop ``Bewerken`` te klikken, " +"die rechtsboven staat." -#: ../../talk/join_a_call_or_chat_as_guest.rst:20 +#: ../../talk/join_a_call_or_chat_as_guest.rst:22 msgid "" "Your camera and microphone settings can be found in the ``Settings`` menu. " "There you can also find a list of shortcuts you can use." msgstr "" -"De instellingen voor je camera en microfoon vind je terug in het menu " -"``Instellingen``. Op die plaats vind je ook een lijst snelkoppelingen die je" -" kan gebruiken." +"De instellingen voor camera en microfoon zijn te vinden in het menu " +"``Instellingen``. Daar bevindt zich ook een lijst met handige sneltoetsen." -#: ../../talk/join_a_call_or_chat_as_guest.rst:24 +#: ../../talk/join_a_call_or_chat_as_guest.rst:28 +msgid "Joining a call" +msgstr "Deelnemen aan een gesprek" + +#: ../../talk/join_a_call_or_chat_as_guest.rst:30 msgid "" "You can start a call any time with the ``Start call`` button. Other " "participants will get notified and can join the call. If somebody else has " "started a call already, the button will change in a green ``Join call`` " "button." msgstr "" -"Je kan op elk moment een gesprek starten met de \"Start gesprek\" knop. " -"Andere deelnemers zullen verwittigd worden en kunnen deelnemen aan het " -"gesprek. Als iemand anders reeds een gesprek startte zal de knop veranderen " -"in een groene \"Vervoeg gesprek\" knop." +"Je kan op elk moment een gesprek starten met de knop \"Start gesprek\". " +"Andere deelnemers krijgen een bericht en kunnen aan het gesprek deelnemen. " +"Als iemand anders het gesprek al heeft gestart, verandert de knop in een " +"groene knop ``Deelnemen aan gesprek``." -#: ../../talk/join_a_call_or_chat_as_guest.rst:28 +#: ../../talk/join_a_call_or_chat_as_guest.rst:35 +msgid "" +"Before actually joining the call you will see a device check, where you can " +"pick the right camera and microphone, enable background blur or even join " +"with any devices." +msgstr "" +"Voordat je daadwerkelijk deelneemt aan een gesprek, zie je een apparaatscan," +" waar je de juiste camera en microfoon kunt kiezen, achtergrondvervaging " +"kunt inschakelen of zelfs met andere apparaten kunt deelnemen." + +#: ../../talk/join_a_call_or_chat_as_guest.rst:40 msgid "" "During a call, you can find the Camera and Microphone settings in the " -"``...`` menu on your video." +"``...`` menu in the top bar." msgstr "" -"Tijdens een gesprek kan je de instellingen voor camera en microfoon " -"terugvinden in het ``...`` menu op het videobeeld." +"Tijdens een gesprek vind je de camera- en microfooninstellingen in het " +"``…``-menu in de bovenste balk." -#: ../../talk/join_a_call_or_chat_as_guest.rst:34 +#: ../../talk/join_a_call_or_chat_as_guest.rst:45 msgid "" "During a call, you can mute your microphone and disable your video with the " -"buttons on your video on the bottom-right, or using the shortcuts ``m`` to " -"mute audio and ``v`` to disable video. You can also use the space bar to " -"toggle mute. When you are muted, pressing space will unmute you so you can " -"speak until you let go of the space bar. If you are unmuted, pressing space " -"will mute you until you let go." +"buttons in the top-right, or using the shortcuts ``M`` to mute audio and " +"``V`` to disable video. You can also use the ``space bar`` to toggle mute. " +"When you are muted, pressing space will unmute you so you can speak until " +"you let go of the space bar. If you are unmuted, pressing space will mute " +"you until you let go." msgstr "" -"Tijdens een gesprek kan je je microfoon en video tijdelijk uitschakelen met " -"de knoppen rechts onderaan op het beeld, of met de sneltoetsen \"m\" voor " -"microfoon en \"v\" voor video. Je kan ook de spatiebalk gebruiken om de " -"microfoon te dempen. Terwijl je gedempt bent kan je de spatiebalk indrukken " -"om toch te spreken. Je wordt dan gehoord tot je de spatiebalk weer los laat." -" Wanneer je niet gedempt bent zal de spatiebalk je dan weer dempen tot je " -"die weer los laat." +"Tijdens een gesprek kun je je microfoon dempen en je video uitschakelen met " +"de knoppen rechtsboven, of door de sneltoetsen ``M`` te gebruiken om audio " +"te dempen en ``V`` om video uit te schakelen. Je kunt ook de ``spatiebalk`` " +"gebruiken om dempen in en uit te schakelen. In gedempte toestand, schakelt " +"het indrukken van de spatiebalk je weer in zodat je kort kunt spreken totdat" +" je de spatiebalk loslaat. In niet gedempte toestand zal het indrukken van " +"de spatiebalk je dempen totdat je loslaat." -#: ../../talk/join_a_call_or_chat_as_guest.rst:36 +#: ../../talk/join_a_call_or_chat_as_guest.rst:47 msgid "" "You can hide your video (useful during a screen share) with the little arrow" " just above the video stream. Bring it back with the little arrow again." @@ -116,11 +132,11 @@ msgstr "" " (handig tijdens het delen van je scherm). Breng de video terug met " "hetzelfde pijltje." -#: ../../talk/join_a_call_or_chat_as_guest.rst:39 +#: ../../talk/join_a_call_or_chat_as_guest.rst:50 msgid "Starting a screen share" msgstr "Je scherm delen" -#: ../../talk/join_a_call_or_chat_as_guest.rst:41 +#: ../../talk/join_a_call_or_chat_as_guest.rst:52 msgid "" "You can click the monitor icon on your video stream to share your screen. " "Depending on your browser, you will get the option to share a monitor, an " @@ -128,19 +144,19 @@ msgid "" msgstr "" "Je kan het scherm-icoon op je video stream aanklikken om je scherm te delen." " Afhankelijk van je browser zal je de keuze krijgen om een scherm, een " -"applicatie of een enkel tabblad uit je browser te delen." +"applicatievenster of een enkel tabblad uit je browser te delen." -#: ../../talk/join_a_call_or_chat_as_guest.rst:44 +#: ../../talk/join_a_call_or_chat_as_guest.rst:55 msgid "More settings" msgstr "Meer instellingen" -#: ../../talk/join_a_call_or_chat_as_guest.rst:46 +#: ../../talk/join_a_call_or_chat_as_guest.rst:57 msgid "" "In the conversation menu you can choose to go full-screen. You can also do " -"this by using the ``f`` key on your keyboard. In the conversation settings, " +"this by using the ``F`` key on your keyboard. In the conversation settings, " "you can find notification options and the full conversation description." msgstr "" -"In het conversatie-menu kan je kiezen om schermvullend te werken. Dit kan je" -" ook doen door middel van de ``f`` toets op je toetsenbord. In de " -"gespreksinstellingen kan je notificatie-opties terugvinden, alsook de " -"volledige beschrijving van de conversatie." +"In het gespreksmenu kun je kiezen om het scherm volledig te maken. Je kunt " +"dit ook doen door de ``F`` toets op je toetsenbord te gebruiken. In de " +"gespreksinstellingen vind je meldingsopties en de volledige " +"gespreksbeschrijving." From 1b0fdbde78e6663af60ed741d3e0b3e5ad0e949e Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 7 Jun 2025 03:08:48 +0000 Subject: [PATCH 0064/1895] generate documentation from config.sample.php --- .../configuration_server/config_sample_php_parameters.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/admin_manual/configuration_server/config_sample_php_parameters.rst b/admin_manual/configuration_server/config_sample_php_parameters.rst index 190ca0449..6b5dde154 100644 --- a/admin_manual/configuration_server/config_sample_php_parameters.rst +++ b/admin_manual/configuration_server/config_sample_php_parameters.rst @@ -336,7 +336,8 @@ Your host server name, for example ``localhost``, ``hostname``, ``hostname.example.com``, or the IP address. To specify a port use ``hostname:####``, for IPv6 addresses use the URI notation ``[ip]:port``. -To specify a Unix socket use ``/path/to/directory/containing/socket``, e.g. ``/run/postgresql/``. +To specify a Unix socket use ``localhost:/path/to/directory/containing/socket`` or +``:/path/to/directory/containing/socket``, e.g. ``localhost:/run/postgresql/``. dbname ^^^^^^ From c3ea7af58446dfc42c760d95940276a83d4dbdfd Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Sat, 7 Jun 2025 08:55:23 +0000 Subject: [PATCH 0065/1895] Translate universal_access.pot in nl 100% translated source file: 'universal_access.pot' on 'nl'. --- .../nl/LC_MESSAGES/universal_access.pot | 278 ++++++++++++++++++ 1 file changed, 278 insertions(+) create mode 100644 user_manual/locale/nl/LC_MESSAGES/universal_access.pot diff --git a/user_manual/locale/nl/LC_MESSAGES/universal_access.pot b/user_manual/locale/nl/LC_MESSAGES/universal_access.pot new file mode 100644 index 000000000..bb245c6d9 --- /dev/null +++ b/user_manual/locale/nl/LC_MESSAGES/universal_access.pot @@ -0,0 +1,278 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2025 Nextcloud GmbH +# This file is distributed under the same license as the Nextcloud latest User Manual package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# W J , 2021 +# Stephan Paternotte , 2025 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Nextcloud latest User Manual latest\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-02-12 13:02+0000\n" +"PO-Revision-Date: 2021-04-19 08:18+0000\n" +"Last-Translator: Stephan Paternotte , 2025\n" +"Language-Team: Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../universal_access.rst:3 +msgid "Universal access" +msgstr "Universele toegang" + +#: ../../universal_access.rst:5 +msgid "" +"Universal access is very important to us. We follow web standards and check " +"to make everything usable also with keyboard and assistive software such as " +"screen readers. We aim to be compliant with the `Web Content Accessibility " +"Guidelines 2.1 `_ on AA " +"level, with the high contrast theme even on AAA level. We also follow the " +"German BITV 2.0 guidelines." +msgstr "" +"Universele toegang is zeer belangrijk voor ons. We volgen web standaarden en" +" zorgen ervoor dat alles ook bruikbaar is met toetsenbord en " +"toegankelijkheids-oplossingen zoals scherm-voorlezers. Ons doel is om steeds" +" de `Web Content Accessibility Guidelines 2.1 " +"`_ te halen op AA niveau," +" en halen met het hoge-contrast thema zelfs het AAA niveau. We volgen ook de" +" richtlijnen van de Duitse BITV 2.0." + +#: ../../universal_access.rst:12 +msgid "" +"If you find any issues, don’t hesitate to report them on `our issue tracker " +"`_. And if you want to get " +"involved, come `join our design team `_!" +msgstr "" +"Moest je fouten vinden, twijfel dan niet om deze te melden op `onze issue " +"tracker `_. En als je graag zou" +" meewerken, `vervoeg dan ons design team `_!" + +#: ../../universal_access.rst:18 +msgid "Zoom and responsiveness" +msgstr "Zoom en responsiviteit" + +#: ../../universal_access.rst:20 +msgid "" +"The Nextcloud interface is fully responsive and usable on any size of " +"screen. You can zoom in and out to fit the text and element size to your " +"liking. The navigation and sidebar can be expanded or collapsed." +msgstr "" +"De interface van Nextcloud is responsief en bruikbaar op elke schermgrootte." +" Je kan in- en uitzoomen om de grootte van tekst en andere elementen aan " +"jouw smaak aan te passen. De navigatie- en zijbalk kunnen uit- en ingevouwen" +" worden." + +#: ../../universal_access.rst:26 +msgid "Navigating via keyboard" +msgstr "Navigatie via het toetsenbord" + +#: ../../universal_access.rst:28 +msgid "" +"You can navigate the web interface with keyboard only just like you can with" +" the mouse:" +msgstr "" +"Je kan de web interface navigeren met het toestenbord net zoals dat met de " +"muis kan:" + +#: ../../universal_access.rst:30 +msgid "``Tab`` and ``Shift + Tab`` to move between elements" +msgstr "``Tab`` en ``Shift + Tab`` om tussen elementen te bewegen" + +#: ../../universal_access.rst:31 +msgid "" +"``Enter`` or ``Space`` to activate or open the element (depending on the " +"type of element)" +msgstr "" +"``Enter`` of ``Spatiebalk`` om het element te activeren of te openen " +"(afhankelijk van het type element)" + +#: ../../universal_access.rst:32 +msgid "``Escape`` to be used to close modals, popover menus, and file viewers" +msgstr "``Esc`` om modals, popover-menu's en bestandsweergaven te sluiten." + +#: ../../universal_access.rst:33 +msgid "" +"``Left arrow`` and ``Right arrow`` to navigate between photos in the viewer" +msgstr "Pijltjes-toetsen (links en rechts) om tussen foto's te navigeren" + +#: ../../universal_access.rst:34 +msgid "``Ctrl + F`` to focus the search field" +msgstr "``Ctrl + F`` om de focus naar het zoekveld te brengen" + +#: ../../universal_access.rst:35 +msgid "``Ctrl + S`` to save changes in editors like Nextcloud Text" +msgstr "" +"``Ctrl + S`` om wijzigingen in editors zoals Nextcloud Text te bewaren." + +#: ../../universal_access.rst:37 +msgid "" +"For quicker navigation, we offer 2 \"skip links\" at the beginning of the " +"document which allow you to:" +msgstr "" +"Voor snellere navigatie bieden we twee \"overslaan\" links aan het begin van" +" het document. Deze laten je toe om:" + +#: ../../universal_access.rst:39 +msgid "Skip to main content" +msgstr "Verder naar inhoud" + +#: ../../universal_access.rst:40 +msgid "Skip to navigation of app" +msgstr "Verder naar navigatie van app" + +#: ../../universal_access.rst:42 +msgid "" +"Nextcloud Talk has shortcuts which are also documented inside the settings " +"of the app itself:" +msgstr "" +"Nextcloud Talk heeft sneltoetsen die beschreven zijn binnen de instellingen " +"van de app zelf:" + +#: ../../universal_access.rst:44 +msgid "``C`` to focus the message input field" +msgstr "``C`` om de focus naar het veld voor bericht-invoer te brengen" + +#: ../../universal_access.rst:45 +msgid "" +"``Escape`` to unfocus the message input field to be able to use shortcuts" +msgstr "" +"``Escape`` om de focus weg te halen van het veld voor bericht-invoer opdat " +"sneltoetsen beschikbaar worden" + +#: ../../universal_access.rst:46 +msgid "``F`` to fullscreen the chat or call" +msgstr "``F`` om de chat of het gesprek schermvullend te maken" + +#: ../../universal_access.rst:47 +msgid "While in a call:" +msgstr "Terwijl je in een gesprek bent:" + +#: ../../universal_access.rst:48 +msgid "``M`` to toggle the microphone on and off" +msgstr "\"M\" om de microfoon in en uit te schakelen" + +#: ../../universal_access.rst:49 +msgid "``V`` to toggle video on and off" +msgstr "\"V\" om de video in en uit te schakelen" + +#: ../../universal_access.rst:50 +msgid "``Space`` for push to talk or push to mute" +msgstr "" +"``Spatiebalk`` ingedrukt houden om de microfoon tijdelijk open of dicht te " +"zetten" + +#: ../../universal_access.rst:51 +msgid "``R`` to raise or lower hand" +msgstr "\"R\" om je hand op te steken of weer naar beneden te halen" + +#: ../../universal_access.rst:53 +msgid "" +"Nextcloud Mail has shortcuts as well, also documented inside the settings of" +" the app itself:" +msgstr "" +"Nextcloud Mail heeft ook sneltoetsen, beschreven in de instellingen van de " +"app zelf:" + +#: ../../universal_access.rst:55 +msgid "``C`` to compose a new message" +msgstr "``C`` om een nieuw bericht op te stellen" + +#: ../../universal_access.rst:56 +msgid "``Left arrow`` to switch to a newer message" +msgstr "``Pijl links`` om naar een nieuwer bericht te gaan" + +#: ../../universal_access.rst:57 +msgid "``Right arrow`` to switch to an older message" +msgstr "``Pijl rechts`` om naar een ouder bericht te gaan" + +#: ../../universal_access.rst:58 +msgid "``S`` to toggle a message as favorite" +msgstr "``S`` om van een bericht de markering favoriet te wisselen" + +#: ../../universal_access.rst:59 +msgid "``U`` to toggle a message unread" +msgstr "``U`` om van een bericht de markering ongelezen te wisselen" + +#: ../../universal_access.rst:60 +msgid "``Del`` to delete a message" +msgstr "``Del`` om een bericht te verwijderen" + +#: ../../universal_access.rst:61 +msgid "``Ctrl + Enter`` to send" +msgstr "``Ctrl + Enter`` om te verzenden" + +#: ../../universal_access.rst:62 +msgid "``R`` to refresh and load new mails" +msgstr "``R`` om te verversen en nieuwe berichten te laden" + +#: ../../universal_access.rst:66 +msgid "Included themes" +msgstr "Inbegrepen thema's" + +#: ../../universal_access.rst:68 +msgid "We offer several themes you can activate to aid accessibility:" +msgstr "" +"We bieden verschillende thema's aan om de toegankelijkheid te verbeteren:" + +#: ../../universal_access.rst:70 +msgid "" +"**High contrast theme:** A high contrast mode to ease your navigation. " +"Visual quality will be reduced but clarity will be increased." +msgstr "" +"**Hoog contrast thema:** Een hoge contrastmodus om de navigatie te " +"vergemakkelijken. Dit thema vermindert de visuele kwaliteit, maar verhoogt " +"de helderheid." + +#: ../../universal_access.rst:71 +msgid "" +"**Dark theme:** A dark theme to ease your eyes by reducing the overall " +"luminosity and brightness. It is still under development, so please report " +"any issues you may find." +msgstr "" +"**Donker thema:** Een donker thema ontlast de uw ogen door de algehele " +"helderheid en lichtsterkte te verminderen. Het is nog in ontwikkeling, dus " +"rapporteer alsjeblieft eventuele problemen." + +#: ../../universal_access.rst:72 +msgid "" +"**Dyslexia font:** OpenDyslexic is a free typeface/font designed to mitigate" +" some of the common reading errors caused by dyslexia." +msgstr "" +"**Dyslexie-lettertype:** OpenDyslexic is een gratis lettertype dat is " +"ontworpen om enkele van de veelvoorkomende leesfouten veroorzaakt door " +"dyslexie te verminderen." + +#: ../../universal_access.rst:74 +msgid "To reach the accessibility settings:" +msgstr "Om de toegankelijkheidsinstellingen te bereiken:" + +#: ../../universal_access.rst:76 +msgid "Open the settings menu at the end of the header" +msgstr "Open het instellingenmenu aan het einde van de kop" + +#: ../../universal_access.rst:77 +msgid "Pick **Settings**" +msgstr "Kies **Instellingen**" + +#: ../../universal_access.rst:78 +msgid "In the navigation, pick **Accessibility**" +msgstr "In de navigatie, kies **Toegankelijkheid**" + +#: ../../universal_access.rst:80 +msgid "" +"Contrast of elements can vary based on custom theming. For example, the " +"primary theming color is used as background color by the header, log in " +"page, and primary buttons. If this causes contrast issues, please contact " +"your administrator for help." +msgstr "" +"Het contrast tussen elementen kan variëren op basis van aangepaste " +"thematisering. Bijvoorbeeld, de primaire themakleur wordt gebruikt als " +"achtergrondkleur door de header, inlogpagina en primaire knoppen. Als dit " +"problemen met het contrast veroorzaakt, neem dan contact op met uw " +"administrator voor hulp." From f9bfc98efbe5c97f02396ed8d4465cb7917350d0 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Sat, 7 Jun 2025 10:07:50 +0000 Subject: [PATCH 0066/1895] Translate sync_ios.pot in nl 100% translated source file: 'sync_ios.pot' on 'nl'. --- .../nl/LC_MESSAGES/groupware/sync_ios.pot | 149 ++++++++++++++++++ 1 file changed, 149 insertions(+) create mode 100644 user_manual/locale/nl/LC_MESSAGES/groupware/sync_ios.pot diff --git a/user_manual/locale/nl/LC_MESSAGES/groupware/sync_ios.pot b/user_manual/locale/nl/LC_MESSAGES/groupware/sync_ios.pot new file mode 100644 index 000000000..9910ccd8d --- /dev/null +++ b/user_manual/locale/nl/LC_MESSAGES/groupware/sync_ios.pot @@ -0,0 +1,149 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2025 Nextcloud GmbH +# This file is distributed under the same license as the Nextcloud latest User Manual package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stephan Paternotte , 2025 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Nextcloud latest User Manual latest\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-03-26 17:33+0000\n" +"PO-Revision-Date: 2021-12-01 18:40+0000\n" +"Last-Translator: Stephan Paternotte , 2025\n" +"Language-Team: Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../groupware/sync_ios.rst:3 +msgid "Synchronizing with iOS" +msgstr "Synchroniseren met iOS" + +#: ../../groupware/sync_ios.rst:6 +msgid "Calendar" +msgstr "Agenda" + +#: ../../groupware/sync_ios.rst:8 ../../groupware/sync_ios.rst:37 +msgid "Open the settings application." +msgstr "Open de instellingenapplicatie." + +#: ../../groupware/sync_ios.rst:9 ../../groupware/sync_ios.rst:38 +msgid "Select Apps." +msgstr "Kies Apps." + +#: ../../groupware/sync_ios.rst:10 +msgid "Select Calendar." +msgstr "Kies Agenda." + +#: ../../groupware/sync_ios.rst:11 +msgid "Select Calendar Accounts." +msgstr "Kies Agenda-accounts." + +#: ../../groupware/sync_ios.rst:12 ../../groupware/sync_ios.rst:41 +msgid "Select Add Account." +msgstr "Kies Account toevoegen." + +#: ../../groupware/sync_ios.rst:13 ../../groupware/sync_ios.rst:42 +msgid "Select Other as account type." +msgstr "Kies Overig als accounttype." + +#: ../../groupware/sync_ios.rst:14 +msgid "Select Add CalDAV account." +msgstr "Kies CalDAV-account toevoegen." + +#: ../../groupware/sync_ios.rst:15 ../../groupware/sync_ios.rst:44 +msgid "For server, type the domain name of your server i.e. ``example.com``." +msgstr "" +"Voor de server, typ de domeinnaam van jouw server, bijvoorbeeld " +"``voorbeeld.com``." + +#: ../../groupware/sync_ios.rst:16 ../../groupware/sync_ios.rst:45 +msgid "Enter your user name and password." +msgstr "Voer je gebruikersnaam en wachtwoord in." + +#: ../../groupware/sync_ios.rst:17 ../../groupware/sync_ios.rst:46 +msgid "Select Next." +msgstr "Kies Volgende." + +#: ../../groupware/sync_ios.rst:18 +msgid "Open Advanced Settings" +msgstr "Open Geavanceerde instellingen" + +#: ../../groupware/sync_ios.rst:19 +msgid "" +"For server, type the domain name of your server and username, i.e., " +"``example.com/remote.php/dav/principals/users/username/``." +msgstr "" +"Voor de server, typ de domeinnaam van jouw server en de gebruikersnaam, " +"bijv. ``example.com/remote.php/dav/principals/users/username/``." + +#: ../../groupware/sync_ios.rst:20 +msgid "Close Advanced Settings" +msgstr "Sluit Geavanceerde instellingen" + +#: ../../groupware/sync_ios.rst:22 +msgid "Your calendar will now be visible in the Calendar application." +msgstr "Je Agenda zal nu zichtbaar zijn in de Kalender applicatie." + +#: ../../groupware/sync_ios.rst:24 +msgid "" +"If you get an error message related to SSL, you can try the following: Make " +"sure that you either specify both the protocol (``https://``) and the port " +"(usually ``443``) in the ``Server`` field, i.e., " +"``https://example.com:443/remote.php/dav/principals/users/username/``, or " +"none, like in the step-by-step guide above. Either way, the application " +"automatically tries to use SSL, which you can confirm in “Advanced " +"Settings” of the account after saving." +msgstr "" +"Als je een foutmelding krijgt die verband houdt met SSL, kun je het volgende" +" proberen: Zorg ervoor dat je zowel het protocol (``https://``) als de poort" +" (meestal ``443``) in het veld ``Server`` opgeeft, bijv. " +"``https://example.com:443/remote.php/dav/principals/users/gebruikersnaam/``," +" of geen van beide, zoals in de stapsgewijze gids hierboven. Hoe dan ook, de" +" applicatie probeert automatisch SSL te gebruiken, wat je kunt bevestigen in" +" 'Geavanceerde Instellingen' van het account na het opslaan." + +#: ../../groupware/sync_ios.rst:30 ../../groupware/sync_ios.rst:50 +msgid "" +"Beginning with iOS 12 an SSL encryption is necessary. Therefore do **not** " +"disable **SSL** (For this reason a certificate is required at your domain, " +"https://letsencrypt.org/ will do)." +msgstr "" +"Vanaf iOS 12 is SSL-versleuteling noodzakelijk. Schakel daarom **SSL** " +"**niet** uit (Om deze reden is een certificaat op jouw domein vereist, " +"https://letsencrypt.org/ is voldoende)." + +#: ../../groupware/sync_ios.rst:35 +msgid "Contacts" +msgstr "Contactpersonen" + +#: ../../groupware/sync_ios.rst:39 +msgid "Select Contacts." +msgstr "Kies Contactpersonen" + +#: ../../groupware/sync_ios.rst:40 +msgid "Select Contacts Accounts." +msgstr "Kies Contacten Accounts." + +#: ../../groupware/sync_ios.rst:43 +msgid "Select Add CardDAV account." +msgstr "Kies CardDAV-account toevoegen." + +#: ../../groupware/sync_ios.rst:48 +msgid "You should now find your contacts in the address book of your iPhone." +msgstr "" +"Je zou nu je contactpersonen in het adresboek van je iPhone moeten vinden." + +#: ../../groupware/sync_ios.rst:54 +msgid "" +"If it's still not working, have a look at `Troubleshooting Contacts & " +"Calendar`_ or `Troubleshooting Service Discovery`_." +msgstr "" +"Als het nog steeds niet werkt, kijk dan naar `Probleemoplossing voor " +"Contacten en Kalender`_ of `Probleemoplossing voor Serviceontdekking`_." From 4c24791c33718f414bbb85dc6b3a3d713feef77a Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Sat, 7 Jun 2025 10:08:38 +0000 Subject: [PATCH 0067/1895] Translate sync_gnome.pot in nl 100% translated source file: 'sync_gnome.pot' on 'nl'. --- user_manual/locale/nl/LC_MESSAGES/groupware/sync_gnome.pot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/groupware/sync_gnome.pot b/user_manual/locale/nl/LC_MESSAGES/groupware/sync_gnome.pot index 75bc51a4f..335444ce8 100644 --- a/user_manual/locale/nl/LC_MESSAGES/groupware/sync_gnome.pot +++ b/user_manual/locale/nl/LC_MESSAGES/groupware/sync_gnome.pot @@ -23,7 +23,7 @@ msgstr "" #: ../../groupware/sync_gnome.rst:3 msgid "Synchronizing with the GNOME desktop" -msgstr "Synchroniseren met de GNOME-desktop" +msgstr "Synchronisatie met de GNOME-desktop" #: ../../groupware/sync_gnome.rst:5 msgid "" From 3996b2dea34e7282a8ee005b3346578d37e5c8c2 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Sat, 7 Jun 2025 10:08:46 +0000 Subject: [PATCH 0068/1895] Translate sync_ios.pot in nl 100% translated source file: 'sync_ios.pot' on 'nl'. --- user_manual/locale/nl/LC_MESSAGES/groupware/sync_ios.pot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/groupware/sync_ios.pot b/user_manual/locale/nl/LC_MESSAGES/groupware/sync_ios.pot index 9910ccd8d..28af1455d 100644 --- a/user_manual/locale/nl/LC_MESSAGES/groupware/sync_ios.pot +++ b/user_manual/locale/nl/LC_MESSAGES/groupware/sync_ios.pot @@ -23,7 +23,7 @@ msgstr "" #: ../../groupware/sync_ios.rst:3 msgid "Synchronizing with iOS" -msgstr "Synchroniseren met iOS" +msgstr "Synchronisatie met iOS" #: ../../groupware/sync_ios.rst:6 msgid "Calendar" From ba602fe72d63eafe3cb77a9fba769251778b0239 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Sat, 7 Jun 2025 10:10:39 +0000 Subject: [PATCH 0069/1895] Translate desktop_mobile_sync.pot in nl 100% translated source file: 'desktop_mobile_sync.pot' on 'nl'. --- .../locale/nl/LC_MESSAGES/files/desktop_mobile_sync.pot | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/user_manual/locale/nl/LC_MESSAGES/files/desktop_mobile_sync.pot b/user_manual/locale/nl/LC_MESSAGES/files/desktop_mobile_sync.pot index f5461fa5e..e27cb219c 100644 --- a/user_manual/locale/nl/LC_MESSAGES/files/desktop_mobile_sync.pot +++ b/user_manual/locale/nl/LC_MESSAGES/files/desktop_mobile_sync.pot @@ -31,8 +31,8 @@ msgid "" "For synchronizing files with your desktop computer, we recommend using the " "`Nextcloud Sync Client`_ for Windows, macOS and Linux." msgstr "" -"Voor het synchroniseren van bestanden met jouw desktop computer raden wij je" -" aan de `Nextcloud Sync Client`_ te gebruiken voor Windows, macOS en Linux." +"Voor synchronisatie van bestanden met jouw desktop computer raden wij je aan" +" de `Nextcloud Sync Client`_ voor Windows, macOS en Linux te gebruiken." #: ../../files/desktop_mobile_sync.rst:9 msgid "" From 09a1eb770d4757eabc41d4c9199e5081e3330893 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Jun 2025 06:50:58 +0000 Subject: [PATCH 0070/1895] chore(deps): bump zipp from 3.21.0 to 3.22.0 Bumps [zipp](https://github.com/jaraco/zipp) from 3.21.0 to 3.22.0. - [Release notes](https://github.com/jaraco/zipp/releases) - [Changelog](https://github.com/jaraco/zipp/blob/main/NEWS.rst) - [Commits](https://github.com/jaraco/zipp/compare/v3.21.0...v3.22.0) --- updated-dependencies: - dependency-name: zipp dependency-version: 3.22.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 9a73e68bb..7a2138258 100644 --- a/requirements.txt +++ b/requirements.txt @@ -33,4 +33,4 @@ sphinxcontrib-serializinghtml==2.0.0 sphinx-toolbox==4.0.0 sphinx-reredirects==0.1.6 urllib3==2.4.0 -zipp==3.21.0 +zipp==3.22.0 From 8d406ad0e8ce3960aaf8cf3411f68f1a83b49c2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20M=C3=BCller?= <28591861+alexanderdd@users.noreply.github.com> Date: Mon, 2 Jun 2025 05:16:58 -0500 Subject: [PATCH 0071/1895] add how to list just enabled/disabled apps MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit added: List all of your installed and enabled (flag -enabled) or disabled (flag -disabled) apps:: sudo -E -u www-data php occ app:list -enabled Signed-off-by: Alexander Müller <28591861+alexanderdd@users.noreply.github.com> --- admin_manual/occ_command.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/admin_manual/occ_command.rst b/admin_manual/occ_command.rst index 37943fd8b..acba4b9e2 100644 --- a/admin_manual/occ_command.rst +++ b/admin_manual/occ_command.rst @@ -250,6 +250,10 @@ enabled or disabled:: sudo -E -u www-data php occ app:list +List all of your installed and enabled (flag -enabled) or disabled (flag -disabled) apps:: + + sudo -E -u www-data php occ app:list -enabled + List non-shipped installed apps only:: sudo -E -u www-data php occ app:list --shipped false From 30aab35bbc2286d193a85546715cb0bd722b8c6e Mon Sep 17 00:00:00 2001 From: rakekniven <2069590+rakekniven@users.noreply.github.com> Date: Sat, 7 Jun 2025 19:03:28 +0200 Subject: [PATCH 0072/1895] Update admin_manual/occ_command.rst Co-authored-by: Daniel Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com> --- admin_manual/occ_command.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin_manual/occ_command.rst b/admin_manual/occ_command.rst index acba4b9e2..a8009f3ec 100644 --- a/admin_manual/occ_command.rst +++ b/admin_manual/occ_command.rst @@ -252,7 +252,7 @@ enabled or disabled:: List all of your installed and enabled (flag -enabled) or disabled (flag -disabled) apps:: - sudo -E -u www-data php occ app:list -enabled + sudo -E -u www-data php occ app:list --enabled List non-shipped installed apps only:: From 408f5a2e52aa148588ca94baa8d4ba1623a44450 Mon Sep 17 00:00:00 2001 From: rakekniven <2069590+rakekniven@users.noreply.github.com> Date: Sat, 7 Jun 2025 19:08:18 +0200 Subject: [PATCH 0073/1895] Update admin_manual/occ_command.rst Co-authored-by: Daniel Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com> --- admin_manual/occ_command.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin_manual/occ_command.rst b/admin_manual/occ_command.rst index a8009f3ec..896c77fac 100644 --- a/admin_manual/occ_command.rst +++ b/admin_manual/occ_command.rst @@ -250,7 +250,7 @@ enabled or disabled:: sudo -E -u www-data php occ app:list -List all of your installed and enabled (flag -enabled) or disabled (flag -disabled) apps:: +List all of your installed and enabled (flag --enabled) or disabled (flag --disabled) apps:: sudo -E -u www-data php occ app:list --enabled From a3fb70da9b8e758e5b12cc7f731edc3a97754ea8 Mon Sep 17 00:00:00 2001 From: Josh Date: Fri, 30 May 2025 09:00:20 -0400 Subject: [PATCH 0074/1895] fix: remove unused Piwiki & Mautic code from index.html Signed-off-by: Josh --- index.html | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/index.html b/index.html index fc4a700bb..fdd9eb6dc 100644 --- a/index.html +++ b/index.html @@ -53,34 +53,6 @@ }; - - - - - - - From f9f776dba0d8663bf8612a28029ecc2051bff30f Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Sun, 8 Jun 2025 14:16:21 +0000 Subject: [PATCH 0075/1895] Translate updatechannel.pot in nl 100% translated source file: 'updatechannel.pot' on 'nl'. --- .../nl/LC_MESSAGES/desktop/updatechannel.pot | 121 ++++++++++++++++++ 1 file changed, 121 insertions(+) create mode 100644 user_manual/locale/nl/LC_MESSAGES/desktop/updatechannel.pot diff --git a/user_manual/locale/nl/LC_MESSAGES/desktop/updatechannel.pot b/user_manual/locale/nl/LC_MESSAGES/desktop/updatechannel.pot new file mode 100644 index 000000000..5d61b1dfa --- /dev/null +++ b/user_manual/locale/nl/LC_MESSAGES/desktop/updatechannel.pot @@ -0,0 +1,121 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2025 Nextcloud GmbH +# This file is distributed under the same license as the Nextcloud latest User Manual package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stephan Paternotte , 2025 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Nextcloud latest User Manual latest\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-03-04 12:42+0000\n" +"PO-Revision-Date: 2025-03-04 14:20+0000\n" +"Last-Translator: Stephan Paternotte , 2025\n" +"Language-Team: Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../desktop/updatechannel.rst:3 +msgid "Update channels" +msgstr "Update-kanalen" + +#: ../../desktop/updatechannel.rst:5 +msgid "" +"Whether you want the latest features, want to help with testing, or just " +"want to wait until everything is perfectly ready to go, we’ve got options " +"for you." +msgstr "" +"Of je nu de nieuwste functies wilt, wilt helpen met testen, of gewoon wilt " +"wachten tot alles perfect klaar is, de keuze is aan jou." + +#: ../../desktop/updatechannel.rst:7 +msgid "" +"The desktop client has 4 update channels: *Enterprise*, *Stable*, *Beta* and" +" *Daily*." +msgstr "" +"De desktopclient heeft 4 updatekanalen: *Enterprise*, *Stable*, *Beta* en " +"*Daily*." + +#: ../../desktop/updatechannel.rst:12 +msgid "Channels" +msgstr "Kanalen" + +#: ../../desktop/updatechannel.rst:14 +msgid "Enterprise" +msgstr "Enterprise" + +#: ../../desktop/updatechannel.rst:14 +msgid "" +"Special version for enterprise customers for the best possible experience." +msgstr "" +"Speciale versie voor zakelijke klanten voor de best mogelijke ervaring." + +#: ../../desktop/updatechannel.rst:16 +msgid "Stable" +msgstr "Stable" + +#: ../../desktop/updatechannel.rst:16 +msgid "Latest feature releases ready for most users at minimal risk." +msgstr "" +"Laatste functie-releases gericht op de meeste gebruikers met minimaal " +"risico." + +#: ../../desktop/updatechannel.rst:18 +msgid "Beta" +msgstr "Beta" + +#: ../../desktop/updatechannel.rst:18 +msgid "" +"Short-term versions created in preparation for testers to report bugs " +"against before a stable release." +msgstr "" +"Korte termijn versies gemaakt voor testers om fouten te rapporteren in de " +"voorbereiding op een stabiele release." + +#: ../../desktop/updatechannel.rst:20 +msgid "Daily" +msgstr "Daily" + +#: ../../desktop/updatechannel.rst:20 +msgid "" +"Daily versions to reproduce bugs and to follow the development of the next " +"stable version." +msgstr "" +"Dagelijkse versies om problemen te reproduceren en de ontwikkeling te volgen" +" van de volgende stabiele versie." + +#: ../../desktop/updatechannel.rst:23 +msgid "References:" +msgstr "Referenties:" + +#: ../../desktop/updatechannel.rst:25 +msgid "" +"`Enterprise deployment options `_" +msgstr "" +"`Enterprise implementatieopties `_" + +#: ../../desktop/updatechannel.rst:26 +msgid "" +"`Latest stable release `_" +msgstr "" +"`Laatste stabiele release `_" + +#: ../../desktop/updatechannel.rst:27 +msgid "" +"`Pre-releases `_" +msgstr "" +"`Pre-releases `_" + +#: ../../desktop/updatechannel.rst:28 +msgid "`Daily builds `_" +msgstr "`Daily builds `_" From 8017eb2f4b6683a0ee5d124d6a25d211bdeea73d Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Sun, 8 Jun 2025 15:06:55 +0000 Subject: [PATCH 0076/1895] Translate faq.pot in nl 100% translated source file: 'faq.pot' on 'nl'. --- .../locale/nl/LC_MESSAGES/desktop/faq.pot | 331 ++++++++++++++++++ 1 file changed, 331 insertions(+) create mode 100644 user_manual/locale/nl/LC_MESSAGES/desktop/faq.pot diff --git a/user_manual/locale/nl/LC_MESSAGES/desktop/faq.pot b/user_manual/locale/nl/LC_MESSAGES/desktop/faq.pot new file mode 100644 index 000000000..c8a2668e7 --- /dev/null +++ b/user_manual/locale/nl/LC_MESSAGES/desktop/faq.pot @@ -0,0 +1,331 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2025 Nextcloud GmbH +# This file is distributed under the same license as the Nextcloud latest User Manual package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Stephan Paternotte , 2025 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Nextcloud latest User Manual latest\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-02-12 13:02+0000\n" +"PO-Revision-Date: 2025-02-12 13:33+0000\n" +"Last-Translator: Stephan Paternotte , 2025\n" +"Language-Team: Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../desktop/faq.rst:3 +msgid "FAQ" +msgstr "Veelgestelde vragen" + +#: ../../desktop/faq.rst:6 +msgid "How the \"Edit locally\" functionality works" +msgstr "De werking van de functionaliteit \"Lokaal bewerken\"" + +#: ../../desktop/faq.rst:7 +msgid "" +"This functionality depends on the desktop client ability to register the " +"mime to handle the nc:// scheme. That is the handler used by the server to " +"open a file locally. This will allow the desktop client to open a document " +"with the local editor when you click on the option \"Edit locally\" in your " +"Nextcloud instance." +msgstr "" +"Deze functionaliteit is afhankelijk van het vermogen van de desktopclient om" +" de mime te registreren voor het afhandelen van de nc://-schema. Dit is de " +"handler die door de server wordt gebruikt om een bestand lokaal te openen. " +"Dit stelt de desktopclient in staat om een document te openen met de lokale " +"editor wanneer je op de optie 'Lokaal bewerken' klikt in je Nextcloud-" +"instantie." + +#: ../../desktop/faq.rst:10 +msgid "" +"Without properly registering the mime, independent of the browser and distro" +" being used, the desktop client will fail to open a document with the local " +"editor when you click on the option \"Edit locally\" in your Nextcloud " +"instance." +msgstr "" +"Zonder de mime correct te registreren, ongeacht welke browser en distributie" +" wordt gebruikt, zal de desktopclient niet in staat zijn om een document te " +"openen met de lokale editor wanneer je op de optie 'Lokaal bewerken' klikt " +"in je Nextcloud-instantie." + +#: ../../desktop/faq.rst:12 +msgid "" +"The browser will warn you of the failure: \"Failed to launch 'nc://...' " +"because the scheme does not have a registered handler.\"" +msgstr "" +"De browser waarschuwt je voor de fout: 'Kon 'nc://...' niet starten omdat " +"het schema geen geregistreerde handler heeft.'" + +#: ../../desktop/faq.rst:15 +msgid "How to enable it" +msgstr "Hoe je dit kunt inschakelen" + +#: ../../desktop/faq.rst:17 +msgid "" +"In order to do that, you need to install the desktop client with the MSI " +"installer on Windows or use a third party software to integrate the AppImage" +" in your system on Linux." +msgstr "" +"Om dit te doen, moet je de desktopclient installeren met de MSI-" +"installatieprogramma op Windows of een derde partij-software gebruiken om de" +" AppImage in je Linux-systeem te integreren." + +#: ../../desktop/faq.rst:20 +msgid "On Linux" +msgstr "Op Linux" + +#: ../../desktop/faq.rst:22 +msgid "" +"We use AppImage due to its universal compatibility but to take full " +"advantage of the desktop client features you will need a third part software" +" to integrate the AppImage in your system: we have tested `AppImageLauncher " +"`_ and alternatively there " +"is `Go AppImage `_." +msgstr "" +"We gebruiken AppImage vanwege de universele compatibiliteit, maar om " +"volledig gebruik te maken van de functies van de desktopclient heb je " +"software van een derde partij nodig om de AppImage in je systeem te " +"integreren: we hebben `AppImageLauncher " +"`_ getest en als " +"alternatief is er `Go AppImage `_." + +#: ../../desktop/faq.rst:25 +msgid "On Windows" +msgstr "Op Windows" + +#: ../../desktop/faq.rst:27 +msgid "" +"The MSI installer will alter your system registry to register the mime to " +"handle the nc:// scheme." +msgstr "" +"Het MSI-installatieprogramma zal jouw systeemregister wijzigen om de mime te" +" registreren om het nc:// schema af te handelen." + +#: ../../desktop/faq.rst:29 +msgid "" +"Alternatively, you can manually register the mime to handle the nc:// " +"scheme:" +msgstr "" +"Als alternatief kun je de mime handmatig registreren om het nc:// schema af " +"te handelen:" + +#: ../../desktop/faq.rst:31 +msgid "Save the following content to a .reg file:" +msgstr "Kopieer de volgende inhoud in een .reg-bestand:" + +#: ../../desktop/faq.rst:40 +msgid "Double click on the .reg file to import it into the registry." +msgstr "Dubbelklik het .reg-bestand om deze te importeren in het systeem." + +#: ../../desktop/faq.rst:42 +msgid "" +"See https://nextcloud.com/blog/nextcloud-office-release-solves-document-" +"compatibility-overhauls-knowledge-management/ for more information." +msgstr "" +"Meer informatie is te vinden op https://nextcloud.com/blog/nextcloud-office-" +"release-solves-document-compatibility-overhauls-knowledge-management/." + +#: ../../desktop/faq.rst:45 +msgid "" +"Some Files Are Continuously Uploaded to the Server, Even When They Are Not " +"Modified." +msgstr "" +"Sommige bestanden worden continu naar de server geüpload, zelfs wanneer deze" +" niet worden aangepast." + +#: ../../desktop/faq.rst:47 +msgid "" +"It is possible that another program is changing the modification date of the" +" file. If the file is uses the ``.eml`` extension, Windows automatically and" +" continually changes all files, unless you remove " +"``\\HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\PropertySystem\\PropertyHandlers``" +" from the windows registry. See " +"http://petersteier.wordpress.com/2011/10/22/windows-indexer-changes-" +"modification-dates-of-eml-files/ for more information." +msgstr "" +"Het is mogelijk dat een ander programma de wijzigingsdatum van het bestand " +"aanpast. Als het bestand de extensie ''.eml'' gebruikt, wijzigt Windows " +"automatisch en voortdurend alle bestanden, tenzij u " +"''HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionPropertySystemPropertyHandlers''" +" uit het Windows-register verwijdert. Zie " +"http://petersteier.wordpress.com/2011/10/22/windows-indexer-changes-" +"modification-dates-of-eml-files/ voor meer informatie." + +#: ../../desktop/faq.rst:55 +msgid "Syncing Stops When Attempting To Sync Deeper Than 100 Sub-directories." +msgstr "" +"Synchronisatie stopt bij het synchroniseren van subdirectories met een " +"hiërarchie dieper dan 100." + +#: ../../desktop/faq.rst:57 +msgid "" +"The sync client has been intentionally limited to sync no deeper than 100 " +"sub-directories. The hard limit exists to guard against bugs with cycles " +"like symbolic link loops. When a deeply nested directory is excluded from " +"synchronization it will be listed with other ignored files and directories " +"in the \"Not synced\" tab of the \"Activity\" pane." +msgstr "" +"De synchronisatieclient is opzettelijk beperkt om niet dieper dan 100 " +"submappen te synchroniseren. De harde limiet bestaat om te beschermen tegen " +"bugs met cycli zoals symbolische linklussen. Wanneer een diep geneste map " +"wordt uitgesloten van synchronisatie, wordt deze vermeld met andere " +"genegeerde bestanden en mappen in het tabblad \"Niet gesynchroniseerd\" van " +"het paneel \"Activiteit\"." + +#: ../../desktop/faq.rst:65 +msgid "" +"There Was A Warning About Changes In Synchronized Folders Not Being Tracked " +"Reliably." +msgstr "" +"Er was een waarschuwing over wijzigingen in gesynchroniseerde mappen die " +"niet betrouwbaar worden geregistreerd." + +#: ../../desktop/faq.rst:67 +msgid "" +"On linux when the synchronized folder contains very many subfolders the " +"operating system may not allow for enough inotify watches to monitor the " +"changes in all of them." +msgstr "" +"Op Linux kan het besturingssysteem, wanneer de gesynchroniseerde map erg " +"veel submappen bevat, mogelijk niet genoeg inotify-watches toestaan om de " +"wijzigingen in al deze mappen te bewaken." + +#: ../../desktop/faq.rst:71 +msgid "" +"In this case the client will not be able to immediately start the " +"synchronization process when a file in one of the unmonitored folders " +"changes. Instead, the client will show the warning and manually scan folders" +" for changes in a regular interval (two hours by default)." +msgstr "" +"In dit geval kan de cliënt niet onmiddellijk beginnen met het " +"synchronisatieproces wanneer een bestand in een van de niet-bewakingsmappen " +"verandert. In plaats daarvan zal de cliënt de waarschuwing tonen en " +"handmatig mappen scannen op wijzigingen in een regelmatig interval " +"(standaard twee uur)." + +#: ../../desktop/faq.rst:76 +msgid "" +"This problem can be solved by setting the fs.inotify.max_user_watches sysctl" +" to a higher value. This can usually be done either temporarily::" +msgstr "" +"Dit probleem kan worden opgelost door de sysctl fs.inotify.max_user_watches " +"op een hogere waarde in te stellen. Dit kan meestal tijdelijk worden gedaan:" + +#: ../../desktop/faq.rst:81 +msgid "or permanently by adjusting ``/etc/sysctl.conf``." +msgstr "of permanent door ``/etc/sysctl.conf`` aan te passen." + +#: ../../desktop/faq.rst:84 +msgid "I Want To Move My Local Sync Folder" +msgstr "Ik wil mijn lokale synchronisatiemap verplaatsen." + +#: ../../desktop/faq.rst:86 +msgid "" +"The Nextcloud desktop client does not provide a way to change the local sync" +" directory. However, it can be done, though it is a bit unorthodox. " +"Specifically, you have to:" +msgstr "" +"De Nextcloud desktopclient biedt geen optie om de lokale synchronisatiemap " +"te wijzigen. Het kan echter wel, hoewel het een beetje ongebruikelijk is. " +"Specifiek moet je:" + +#: ../../desktop/faq.rst:90 +msgid "Remove the existing connection which syncs to the wrong directory" +msgstr "" +"Verwijder de bestaande verbinding die met de verkeerde map synchroniseert." + +#: ../../desktop/faq.rst:91 +msgid "Add a new connection which syncs to the desired directory" +msgstr "Voeg een nieuwe verbinding toe die synchroniseert met de gewenste map" + +#: ../../desktop/faq.rst:93 +msgid "Remove an existing connection" +msgstr "Een bestaande verbinding verwijderen" + +#: ../../desktop/faq.rst:96 +msgid "" +"To do so, in the client UI, which you can see above, click the " +"\"**Account**\" drop-down menu and then click \"Remove\". This will display " +"a \"**Confirm Account Removal**\" dialog window." +msgstr "" +"Om dit te doen, klik in de client UI, die je hierboven kunt zien, op het " +"**Account** vervolgkeuzemenu en klik vervolgens op \"Verwijderen\". Dit " +"opent een dialoogvenster met de titel \"Accountverwijdering Bevestigen\"." + +#: ../../desktop/faq.rst:99 +msgid "Remove existing connection confirmation dialog" +msgstr "" +"Verwijder het bevestigingsdialoogvenster voor het verwijderen van de " +"bestaande verbinding" + +#: ../../desktop/faq.rst:102 +msgid "If you're sure, click \"**Remove connection**\"." +msgstr "Als je het zeker weet, klik dan \"**Verbinding verwijderen**\"." + +#: ../../desktop/faq.rst:104 +msgid "" +"Then, click the Account drop-down menu again, and this time click \"**Add " +"new**\"." +msgstr "" +"Klik daarna opnieuw op het Account-keuzemenu en klik deze keer op \"**Nieuw " +"toevoegen**.\"" + +#: ../../desktop/faq.rst:106 +msgid "Replacement connection wizard" +msgstr "Vervangende verbindingsassistent" + +#: ../../desktop/faq.rst:109 +msgid "" +"This opens the Nextcloud Connection Wizard, which you can see above, *but* " +"with an extra option. This option provides the ability to either: keep the " +"existing data (synced by the previous connection) or to start a clean sync " +"(erasing the existing data)." +msgstr "" +"Dit opent de Nextcloud Verbindingsassistent, die je hierboven kunt zien, " +"*maar* met een extra optie. Deze optie biedt de mogelijkheid om ofwel: de " +"bestaande data (gesynchroniseerd door de vorige verbinding) te behouden of " +"een schone synchronisatie te starten (de bestaande data te wissen)." + +#: ../../desktop/faq.rst:114 +msgid "" +"Be careful before choosing the \"Start a clean sync\" option. The old sync " +"folder *may* contain a considerable amount of data, ranging into the " +"gigabytes or terabytes. If it does, after the client creates the new " +"connection, it will have to download **all** of that information again. " +"Instead, first move or copy the old local sync folder, containing a copy of " +"the existing files, to the new location. Then, when creating the new " +"connection choose \"*keep existing data*\" instead. The Nextcloud client " +"will check the files in the newly-added sync folder and find that they match" +" what is on the server and not need to download anything." +msgstr "" +"Wees voorzichtig voordat je de optie \"Start een schone synchronisatie\" " +"kiest. De oude synchronisatiemap *kan* een aanzienlijke hoeveelheid gegevens" +" bevatten, variërend van gigabytes tot terabytes. Als dat zo is, moet de " +"client nadat deze de nieuwe verbinding heeft gemaakt **alle** informatie " +"opnieuw downloaden. Verplaats of kopieer daarom eerst de oude lokale " +"synchronisatiemap, die een kopie van de bestaande bestanden bevat, naar de " +"nieuwe locatie. Kies vervolgens, bij het maken van de nieuwe verbinding, " +"voor \"Bestaande gegevens behouden\". De Nextcloud-client zal de bestanden " +"in de nieuw toegevoegde synchronisatiemap controleren en vaststellen dat " +"deze overeenkomen met wat op de server staat en niets hoeft te worden " +"gedownload." + +#: ../../desktop/faq.rst:116 +msgid "" +"Make your choice and click \"**Connect...**\". This will then step you " +"through the Connection Wizard, just as you did when you setup the previous " +"sync connection, but giving you the opportunity to choose a new sync " +"directory." +msgstr "" +"Maak je keuze en klik op \"Verbinden…\". Dit leidt opnieuw tot de " +"Verbindingsassistent, net zoals toen de vorige synchronisatieverbinding werd" +" ingesteld, maar met de mogelijkheid om een nieuwe synchronisatiemap te " +"kiezen." From f302c2b1b8f9e3f840e3dfe52a2dc0436433c691 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Jun 2025 07:09:12 +0000 Subject: [PATCH 0077/1895] chore(deps): bump zipp from 3.22.0 to 3.23.0 Bumps [zipp](https://github.com/jaraco/zipp) from 3.22.0 to 3.23.0. - [Release notes](https://github.com/jaraco/zipp/releases) - [Changelog](https://github.com/jaraco/zipp/blob/main/NEWS.rst) - [Commits](https://github.com/jaraco/zipp/compare/v3.22.0...v3.23.0) --- updated-dependencies: - dependency-name: zipp dependency-version: 3.23.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 7a2138258..c897321ac 100644 --- a/requirements.txt +++ b/requirements.txt @@ -33,4 +33,4 @@ sphinxcontrib-serializinghtml==2.0.0 sphinx-toolbox==4.0.0 sphinx-reredirects==0.1.6 urllib3==2.4.0 -zipp==3.22.0 +zipp==3.23.0 From a75f1ae909d6ae5bfc7aea3f4687cf710e1f1d2a Mon Sep 17 00:00:00 2001 From: Andrey Borysenko Date: Tue, 10 Jun 2025 17:59:57 +0000 Subject: [PATCH 0078/1895] feat(translations): ExApps on Python support Transifex translations sync (#13184) Signed-off-by: Andrey Borysenko --- developer_manual/basics/translations.rst | 12 ++++ .../development_overview/ExAppOverview.rst | 59 +++++-------------- .../tech_details/Translations.rst | 19 +++++- 3 files changed, 44 insertions(+), 46 deletions(-) diff --git a/developer_manual/basics/translations.rst b/developer_manual/basics/translations.rst index 7a745c5a0..de654dfd5 100644 --- a/developer_manual/basics/translations.rst +++ b/developer_manual/basics/translations.rst @@ -119,6 +119,18 @@ They differ a bit in terms of usage compared to php: t('myapp', '{name} is available. Get {linkstart}more information{linkend}', {name: 'Nextcloud 16', linkstart: '', linkend: ''}); n('myapp', 'Import %n calendar into {collection}', 'Import %n calendars into {collection}', selectionLength, {collection: 'Nextcloud'}); + +ExApps (Python) +--------------- + +For ExApps, Python is currently only supported for automated Transifex translations. + +Alongside the usual ``l10n/*.json`` and ``l10n/*.js`` files, translation source files located in ``translationfiles//*.po`` are also included in the Transifex sync. +These ``.po`` files can be compiled into ``.mo`` files, which are typically used by the ExApp backend for runtime translations. + +For more details, see :ref:`ex_app_translations_page`. + + Guidelines ---------- diff --git a/developer_manual/exapp_development/development_overview/ExAppOverview.rst b/developer_manual/exapp_development/development_overview/ExAppOverview.rst index 1ee545e4d..2306b1b2c 100644 --- a/developer_manual/exapp_development/development_overview/ExAppOverview.rst +++ b/developer_manual/exapp_development/development_overview/ExAppOverview.rst @@ -93,7 +93,7 @@ The bootstrap of the Vue app (`UI Example bootstrap ` are supported. To add support of your programming language from translations string extraction using Nextcloud translation tool, you just need to add your file extensions to it `in createPotFile `_ and down below adjust the ``--language`` and ``keyword`` parameters. -Here is an example using translationtool adjusted in the same way: + +Currently only Python is supported as an additional language in translationtool for ExApps. +Here is an example using translationtool adjusted for Python: .. code-block:: @@ -158,7 +159,7 @@ Here is an example using translationtool adjusted in the same way: $keywords = ''; if (substr($entry, -4) === '.php') { $keywords = '--keyword=t --keyword=n:1,2'; - + } else if (substr($entry, -3) === '.py') { + + } elseif (substr($entry, -3) === '.py') { + $keywords = '--keyword=_ --keyword=_n:1,2'; } else { $keywords = '--keyword=t:2 --keyword=n:2,3'; @@ -167,7 +168,7 @@ Here is an example using translationtool adjusted in the same way: $language = '--language='; if (substr($entry, -4) === '.php') { $language .= 'PHP'; - + } else if (substr($entry, -3) === '.py') { + + } elseif (substr($entry, -3) === '.py') { + $language .= 'Python'; } else { $language .= 'Javascript'; @@ -187,46 +188,13 @@ and can be used to translate ExApp strings on the backend or frontend in the sam You might need to convert the translation files to the format that is used in your language. -And this can be done with simple bash script, as `in our example for Python `_: +And this can be done with simple bash scripts, as `in our example for Python `_: +- `scripts/compile_po_to_mo.sh `_: compiles the ``.po`` files to ``.mo`` files. (needed in case of Transifex sync, only ``.po`` and ``l10n/*js|json`` files are provided) +- `scripts/copy_translations.sh `_: for Python example ExApp transforms ``translationfiles//*.(po|mo)`` into the locale folder structure: ``//LC_MESSAGES/*.(po|mo)``. This can be adjusted to your needs, depending on the language you are using. -.. code-block:: - - #!/bin/bash - - # This script is used to transform default translation files folders (translationfiles//*.(po|mo)) - # to the locale folder (locale//LC_MESSAGES/*.(po|mo)) - - cd .. - - # Remove the locale/* if it exists to cleanup the old translations - if [ -d "locale" ]; then - rm -rf locale/* - fi - - # Create the locale folder if it doesn't exist - if [ ! -d "locale" ]; then - mkdir locale - fi - - # Loop through the translation folders and copy the files to the locale folder - # Skip the templates folder - - for lang in translationfiles/*; do - if [ -d "$lang" ]; then - lang=$(basename $lang) - if [ "$lang" != "templates" ]; then - if [ ! -d "locale/$lang/LC_MESSAGES" ]; then - mkdir -p locale/$lang/LC_MESSAGES - fi - # Echo the language being copied - echo "Copying $lang locale" - cp translationfiles/$lang/*.po locale/$lang/LC_MESSAGES/ - cp translationfiles/$lang/*.mo locale/$lang/LC_MESSAGES/ - fi - fi - done - +.. note:: + Your translations conversion should be also included in `Dockerfile `_ build process, so that the ExApp translations are available in the Docker image. Makefile @@ -242,7 +210,8 @@ It is recommended to use the following default set of commands: - ``register``: performs registration of running manually ExApp using the ``manual_install`` Deploy daemon. - ``translation_templates``: execute translationtool.phar to extract translation strings from sources (frontend and backend). - ``convert_translations_nc``: converts translations to Nextcloud format files (json, js). -- ``convert_to_locale``: copies translations to the common locale//LC_MESSAGES/.(po|mo). Depending on the language, you might need to adjust the script. +- ``compile_po_to_mo``: compiles the ``.po`` files to ``.mo`` files using the ``scripts/compile_po_to_mo.sh`` script. +- ``copy_translations``: copies translations to needed location depending on your ExApp backend programming language. .. note:: These Makefiles are typically written to work in the `nextcloud-docker-dev `_ development environment. diff --git a/developer_manual/exapp_development/tech_details/Translations.rst b/developer_manual/exapp_development/tech_details/Translations.rst index ad6ca880f..1d9a2f272 100644 --- a/developer_manual/exapp_development/tech_details/Translations.rst +++ b/developer_manual/exapp_development/tech_details/Translations.rst @@ -1,3 +1,5 @@ +.. _ex_app_translations_page: + Translations ============ @@ -19,9 +21,24 @@ For the front-end part, AppAPI will inject the current user's locale ``l10n/`_. +There are two Python functions used by `translationtool `_ to extract translation string: ``_('singular string')`` and ``_n('singular string', 'plural string', count)``. + + +Manual translations +******************* + +Manual translations instructions can be found :ref:`here `. + + +Transifex sync +-------------- + +For automated Transifex sync there are only ``.po`` files included. +You can then compile them to ``.mo`` files using `ui_example's `_ ``scripts/compile_po_to_mo.sh`` script. + Manual install ************** From 4f9f1c9f96d9aa163b1a6a814d15281f68ff1b38 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 11 Jun 2025 03:13:07 +0000 Subject: [PATCH 0079/1895] generate documentation from config.sample.php --- .../config_sample_php_parameters.rst | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/admin_manual/configuration_server/config_sample_php_parameters.rst b/admin_manual/configuration_server/config_sample_php_parameters.rst index 6b5dde154..468c19d55 100644 --- a/admin_manual/configuration_server/config_sample_php_parameters.rst +++ b/admin_manual/configuration_server/config_sample_php_parameters.rst @@ -4160,6 +4160,20 @@ Automated deletions are not affected and will continue to work in cases like low Defaults to true. +enable_lazy_objects +^^^^^^^^^^^^^^^^^^^ + + +:: + + 'enable_lazy_objects' => true, + +Enable lazy objects feature from PHP 8.4 to be used in the Dependency Injection. + +Should improve performances by avoiding buiding unused objects. + +Defaults to true. + .. ALL_OTHER_SECTIONS_END .. Generated content above. Don't change this. From 336106f7677ad8c216e59f7d5ff81c37934c3746 Mon Sep 17 00:00:00 2001 From: Jonas Date: Tue, 10 Jun 2025 18:50:21 +0200 Subject: [PATCH 0080/1895] fix(ocs): Minor improvements to the OCS OpenAPI documentation Signed-off-by: Jonas --- .../client_apis/OCS/ocs-openapi.rst | 22 ++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/developer_manual/client_apis/OCS/ocs-openapi.rst b/developer_manual/client_apis/OCS/ocs-openapi.rst index 671f7b140..ac06ce07f 100644 --- a/developer_manual/client_apis/OCS/ocs-openapi.rst +++ b/developer_manual/client_apis/OCS/ocs-openapi.rst @@ -2,11 +2,11 @@ OCS OpenAPI tutorial ==================== -This page explains you how you can add OpenAPI support to your app such that you can automatically generated an OpenAPI specification from your server code. +This page explains you how you can add OpenAPI support to your app so that you can automatically generate an OpenAPI specification from your server code. Please read the whole tutorial before starting to adapt your app. -Do not be afraid that you do not know everything from the start. +Don't be afraid that you do not know everything from the start. The openapi-extractor tool gives you many warnings and fails if there is something utterly broken that would not work. Let the tool run and it will tell you if there is something wrong. Psalm will also help you validate your changes to ensure that nothing is broken. @@ -544,10 +544,26 @@ It is best to start with helper methods that are used multiple times like the `` ... } +The return type for [`DataResponse`](https://github.com/nextcloud/server/blob/master/lib/public/AppFramework/Http/DataResponse.php) and other inheritors of [`Response`](https://github.com/nextcloud/server/blob/master/lib/public/AppFramework/Http/Response.php) expect different arguments. See their class annotations in the code. The following table lists some common ones: + ++--------------------------+----------------------------+ +| Response inheritor class | Expected arguments | ++--------------------------+----------------------------+ +| `DataResponse` | status code, data, headers | ++--------------------------+----------------------------+ +| `RedirectResponse` | status code, headers | ++--------------------------+----------------------------+ +| `StreamResponse` | status code, headers | ++--------------------------+----------------------------+ +| `TemplateResponse` | status code, headers | ++--------------------------+----------------------------+ + Afterwards you can add the return types to all the other methods. If two different status codes return the same data structure and headers, you can use the union operator to indicate it: ``Http::STATUS_BAD_REQUEST|Http::STATUS_NOT_FOUND``. -You are required to add a description for every status code returned by the method. +If you wonder about the return type syntax, the psalm documentation on [typing in Psalm](https://psalm.dev/docs/annotating_code/typing_in_psalm/) might be helpful. + +You have to add a description for every status code returned by the method. .. code-block:: php From 7db6cd5c23fe21051de9ba4badf2e67720e78098 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20M=C3=BCller?= <28591861+alexanderdd@users.noreply.github.com> Date: Wed, 11 Jun 2025 05:05:14 -0500 Subject: [PATCH 0081/1895] fix formatting of code snippet MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Alexander Müller <28591861+alexanderdd@users.noreply.github.com> --- admin_manual/occ_command.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin_manual/occ_command.rst b/admin_manual/occ_command.rst index 896c77fac..6a570b0cb 100644 --- a/admin_manual/occ_command.rst +++ b/admin_manual/occ_command.rst @@ -250,7 +250,7 @@ enabled or disabled:: sudo -E -u www-data php occ app:list -List all of your installed and enabled (flag --enabled) or disabled (flag --disabled) apps:: +List all of your installed and enabled (flag `--enabled`) or disabled (flag `--disabled`) apps:: sudo -E -u www-data php occ app:list --enabled From 9f0d709a6ab4eb2d3b000d4d4c4ad7fd9e304285 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Molakvo=C3=A6?= Date: Thu, 12 Jun 2025 10:42:09 +0200 Subject: [PATCH 0082/1895] fix: proper name for documentation build workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: John Molakvoæ --- .github/workflows/sphinxbuild.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sphinxbuild.yml b/.github/workflows/sphinxbuild.yml index 0643be251..2921e817b 100644 --- a/.github/workflows/sphinxbuild.yml +++ b/.github/workflows/sphinxbuild.yml @@ -1,4 +1,4 @@ -name: "Pull Request Docs Check" +name: "Build documentation" on: pull_request: From 9adf177e402a11f371c35acf117f84d2b01d2838 Mon Sep 17 00:00:00 2001 From: Damien <100437527+u-damien@users.noreply.github.com> Date: Thu, 12 Jun 2025 16:47:00 +0200 Subject: [PATCH 0083/1895] Patch of add repository command in example-ubuntu.rst Added -e option at echo to enable special character to be interpreted like \n or it will raise this error due to a bad interpretation of apt in the collaboraonline.sources file: E: Type 'deb\nURIs:' is not known on stanza 1 in source list /etc/apt/sources.list.d/collaboraonline.sources E: The list of sources could not be read. Signed-off-by: Damien <100437527+u-damien@users.noreply.github.com> --- admin_manual/office/example-ubuntu.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin_manual/office/example-ubuntu.rst b/admin_manual/office/example-ubuntu.rst index 9023a6e67..45298cf5d 100644 --- a/admin_manual/office/example-ubuntu.rst +++ b/admin_manual/office/example-ubuntu.rst @@ -14,7 +14,7 @@ Add repository: .. code-block:: bash - sudo echo "Types: deb\nURIs: https://www.collaboraoffice.com/repos/CollaboraOnline/CODE-deb\nSuites: ./\nSigned-By: /usr/share/keyrings/collaboraonline-release-keyring.gpg" > /etc/apt/sources.list.d/collaboraonline.sources + sudo echo -e "Types: deb\nURIs: https://www.collaboraoffice.com/repos/CollaboraOnline/CODE-deb\nSuites: ./\nSigned-By: /usr/share/keyrings/collaboraonline-release-keyring.gpg" > /etc/apt/sources.list.d/collaboraonline.sources Install packages **************** From 6f95e5bb60bc22cec5cbad68c6ebc6bad8e536dc Mon Sep 17 00:00:00 2001 From: Josh Date: Thu, 12 Jun 2025 16:30:26 -0400 Subject: [PATCH 0084/1895] perf: enable caching setup-python to build docs faster Signed-off-by: Josh --- .github/workflows/sphinxbuild.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/sphinxbuild.yml b/.github/workflows/sphinxbuild.yml index 2921e817b..b489f757f 100644 --- a/.github/workflows/sphinxbuild.yml +++ b/.github/workflows/sphinxbuild.yml @@ -15,6 +15,7 @@ jobs: - uses: actions/setup-python@v5 with: python-version: '3.10' + cache: 'pip' - name: Install pip dependencies run: pip install -r requirements.txt - name: Build using Makefile @@ -35,6 +36,7 @@ jobs: - uses: actions/setup-python@v5 with: python-version: '3.10' + cache: 'pip' - name: Install pip dependencies run: pip install -r requirements.txt - name: Build using Makefile @@ -47,6 +49,7 @@ jobs: - uses: actions/setup-python@v5 with: python-version: '3.10' + cache: 'pip' - name: Install pip dependencies run: pip install -r requirements.txt - name: Build using Makefile @@ -67,6 +70,7 @@ jobs: - uses: actions/setup-python@v5 with: python-version: '3.10' + cache: 'pip' - name: Install pip dependencies run: pip install -r requirements.txt - name: Build using Makefile From 4312ef9134bf5d129de90be57a0d9e726bb000a1 Mon Sep 17 00:00:00 2001 From: Daniel Kesselberg Date: Fri, 13 Jun 2025 12:26:14 +0200 Subject: [PATCH 0085/1895] docs(groupware): create filter from message Signed-off-by: Daniel Kesselberg --- .../mail_create_filter_from_message.png | Bin 0 -> 48653 bytes user_manual/groupware/mail.rst | 19 ++++++++++++++---- 2 files changed, 15 insertions(+), 4 deletions(-) create mode 100644 user_manual/groupware/images/mail_create_filter_from_message.png diff --git a/user_manual/groupware/images/mail_create_filter_from_message.png b/user_manual/groupware/images/mail_create_filter_from_message.png new file mode 100644 index 0000000000000000000000000000000000000000..edf81f420275c25c6f002dc5da930210b96d937e GIT binary patch literal 48653 zcmcG$2{e}P{x|w)Fcc+o6p?5&6q(AD5*kz_WKJ>;1p)TIW6I?6vpWCC~HR&vjqd_xqW?cYyjSWrlT}>nIcogUWHG zvlPmz3JQg)j+Pof`TVQsD*kWHRYesITKva@_R?(%WgA6BNkPLkX6&1b21{!v&A70p zd0=AV&Z@m<*;v#!Wj@Zj;A_mH@G3|l_)jHMg({1$0Gn~}yGoycTl{NSx!Bg6VO$@0 zA(QuPvRdriMty-gwzgZQrQ;s;y<47+#mcx`{^jXBP_MVv&xnIjk(T!+<7cH^2OX)& zpA>1$kFzi`lb_xb2wr9UuYXQDBY)zbe|;#n?lv9ywd3K(s6_wu`=57i6Cf|-J;}MY z;-5bxsXV#<;GcIEGyi}1X7^th6mPJ#wY`7;epBABa{rCJy}dUI3lF8{9{JDbIR*v> zju)@|-N-I5)I|L1Z!V=sSvXw>>bPhCq(+0|9@ z>FM~peSO9WGrztS(40Pf`upJElhg6C59GXynmW%Ka`=TFefrPWqYcfjxt{y@F~xIX zy7b0sn#XBrI{o|2)&IQ=oY~jrei`*u1XS179*LLrd}Z4$d&qU1a_;E~1qB7Fg}L7$ zhp){x?dG8V&)URaU!42>MsNGxy?e*!Crnt_*vh)PxI1%g{R0D4pMQD!@AdLv;+FNG zC0F+SJLUQbAEWE~Y1{v`xLf|SxS!Iu=gt+T(a)mg|DSu6Lbu^L z8w<-#tlbeky{%d=E^d$~U}=QrMe-Ll}bR#tnt#%F(b8|>^6mymcL zx?TBkYH9#h@OG%;q^6a!Sz9KaP=goK5<^l^BEp2S>lFvGF zWc8;{pJ?gn@4M?Znfmu8woy7dIuyHVFy#ZqK=`#>U2tg>F}!V{hJEvo!tX^jOxL zH&>tMx(qe)&Mz)LDJ;BrMcc+kh>3}*%|Kk|t-}r>gCcs0WpjZZb}GH$JAaKYNxb$F}?Kt5+i52L=N58cIqiPn1Kd<|q1ZabNYS z!JAEtzAWy;%gFNj(Qo#_%8NVZ(5ABL>guMXr6uO&aZn5|Up{YZa9P5ttt8sn!J#Zh z>S|-M8aoRsYwyfxtNQunT=zGbnWaJO!jfOI6NIR|L<>kHdDRJ$gLx)Cw z{4!TnUH7Z&UG1sS(NUAm9BV5|Mso74gVr5(vTrVZU>X`4>M8Z58EStcc)9MunRM$f z;%cT`-VO>167^hgR62Gn@ZyWKv~~OT?ZXPZc6qq_ZC+mW_Mn^hbo!?L^i2Jk z$q)A5$m8%-IfVP;Tduu<`T5cVA0KJOxAS2Q>B6tc7rIUuCm23x7&IxnNoVKa(D$|7 z?eBuPO;=&Sy?cyF$;k=2xi*vaLcB?#snQSEP#i~^Qg1k5SAQ>7d_gr4eZXvdFy7l? zz|GCA^!F;_lwlI!MPGd_hHp&P+#7@7;f1X+veNt-X2G>eW(H zRd+V~RtB-FO}m{5)^~H0!j`oAyWmvu{(V30TXjv1BDO_SQ&VG+=QWPan@c-8b-#c6 zfm0JBX}@Z)A^!a%3EO+|@gcK6JImYJID~|R>>M34X3tn%y2M`}E8~xyUFh|flSkG= z9-9zv^!V8`nmv2=xVpNQ)YY9x^gLwOL)oxJa+_FpOUwE19u!=4$?%tF6Rif`y|}RI z>gwxv?{1i$nVI+zWnlchI<)cg=dde_lWoch+S=NAZc_r}6joFy6?!hR{q8O%wMkV? zE#bwByQgBMOFKF^nFUTR|oRz~OTIQRZ2 zHE2_hj|Q=ch=`Q18+cG{+_>?|l`Gp0AKr?sMh+?yGjnKs{6+=_2FKygYiDO?9~^RX z$QDj+nYqBu%39jgbUzlGzK`DIyn%b&u#^ou+K@ZC#m zYS!uISSb`Z|5UQ+|6RONHPQe6)&M&T%d5`i{t&sI{(j$=#mo6@*Dkz!@PMQ4k;LgM zdFd{{yLz#vhN~*?7x6a&iXWm#`eOD~XAGr?l3Wj_T`=xPN40XMcigou8k0Qa%0V_3L{P z5w|KTDmeX<(S#?3kGfe8)kN%x8BRFjuXygMO0LjPmX8n){n~u>gwC36WP@_eb@N-zU0R0^pEGP-?`7M zL!D<|=eKr;pkO&p=U6pu@bHBd_78mzO*xKPiComowfRQS%V;5!;_-9ab7d+tf2UAg z_x1HX@kI;pL0+DM)AcFw=z5R&aVngk_jp68kV0X-{F~ODIhkK9EG*`K75wh`{(X&; zlM}yyfbo~7C-ZP$t_SjVAGG;OYhYlIU_Cqhg+^9ZR^-3|-=ZSftgI|`v>>gQ`n`<_ zN9IwZ+MFb8yXdc7TeO%nn*9FZ!s|-`jUGpj{+f$K^QnuKi8^p8*59Az>({TO)bI-m z_M`e*dH=-i@mTpgN4sIe3+KheYIh#XzW)Bzs32KZ?M(FLJ*ZM`Z?6iX2sFHynre_+ zKXa7k(mA1n2M^)`j+vY9qS*B4?vj&>59fKzXUDeG=QK5Nvffc|Ro|H>$BdTdCmKI} zQoyePcHKrlpTzu!w>PyYQ)ZteclAW>F zpy=XI5IrReJ*6x6TVrcRLIN-9yT9|#js&-<0o1M%l*bW|H#cx5IdLY<&CO$mQ7UW2 z{sNaa&+mMPosoY2x$!erR#y9-5~>T@+L=?1PEJN9Cac-m*|FHGD9iKx8~0v#C7&Xf z866#6y?p;?N49T71gnFCgWb%CCZz;0tgXnW50$e?(u0L!)sYo2HQ)OFJOiM;v%*;lgcdY8t91%-{U(n#=UB zZ;xUR?%(f|n!4*5Peyd~=DXa7YyQOG4;mU8l5*#^Y}&-Te_P~SW+bbgo?gIWWUbB- zgE#S>vzq}B&iWtTc9U^cb!M&7`SWaMI(9uCZh4-I2ld~%SDq@!%d_+8RZUAvi;)e( zp)Yx^o14_t1$-v;Mf~vY2&FS;HYpxC(msre81S><&qs-FyQdAYGFpQ_*QbSevLwBD zAvA5OJnmZk`eItwpS?mtZ0`AIHnW^(-MV$3*n&dy^*j{D{l%7Mmo8PfX-|I$7gThk z?A8}bSJjx?pia~9T8gt-pU*-Dg zpPgFY^EdLyDqXy|B`iEV^wFdBnwpwdEG@Uo$UJ%z*E64*Ju%*U1RUV?7hjrj0KgjILmD}_4t`yeNMcnYl9BbWrX)Kr@n(6-i z`zf^EQmjpl?-z=nCcMxFo(K!qmB09B^lHTCFJC?Zez{q5%U5pn)Y$Ry(WDO*2j!-} zzsa|JC#%-LhsP%mG>dQg>hHNYYt&uj$>e#yNwz78clOMEAbb0#YkftvBh{jW^b8FR zONyEtf7Gzn#mmKiJN08H3r;23PKyW1Pyh ztOzRm=FwMaRSp>|mft-;GAYuA#(m8{K}%hXG8^9dR9o}+=i_R2Noql8Vy+A<}*mk-G_ zw6w5+sUHI{4F#ITH%LlKdJGnoXWvg<(1qfd{B7&og{HeR&yML6RD7=kx6sPgwt-G0 z@yQeW{wju3-E|8Bu2D9hlT>14ZiMAun-hA*Gf)?Opj~++VtRVoVoR&$_^-GW_QW-G zck4gp+8Trwf7aA`-J$Fj>h$)(qeoB9Jv-$(HNbE^P}mL^Y2Ayvh$_u zK;(+2Plrs28CTrilwI$C$iw1&KCk!yIU&b?et2GcGa@3Q@!Q>GwWxIr@6X4tF$k1# zo4oY=v)khAJ~N&1wTD#bW>-#}Jo$X$fQM}S)Z50!Mro(Do0QKl?i8LmBV^$9XUF0S zSdKk7&Ou7rg5u@oga#q~!rO1m8eV^4V`DS+-uxo--e4x1$J?9)FVRyhrG)_t3E@>9 zWXq%;M!}`r^!m!TYZskK)t%H#IeRZJ*;6r+yiK+mIzTFehtdvVslk1Pouqw&`#{?) zBY3Q>txxHo$Qc{BrX?jNmTk`5CN9njcqP898l811J7n@K&yT*ozOrQk3UNa+zi6&D z=HlX-&2-h!U@0prYcusZ5+{Ca@=(jj$Vkj^n%rPlxDgRm=s*O1rTzD>I{@t!A!=Q5Z`j2K|R zy2FPL({J8?bLx2Z(s4cf6%My@q4>&Rx4UEgXFg zfL>8mb$+q^-o1O$G!+IO6KfA0K5YNJdXsb4$43&kye{Xa37(F#^D0dT$mQ67iT0Y{ zt5>fWrv^T*Ru>)Eqdt)s#_w{yu&}VLiZz8}k9Je7Ul7|qV*^UlmoMdMn(40$OIJA$ zr2~uBZ#{vI$q<%iAMr!BM$Pkn5D>%C(vsv}&QW!NIgxO?|*tK0`bLauIZMs2T*+VY+D6zH40y9_a^ zDehvy2@0$2tCu?2>wqWN^0%L3)}AStnwxw7+O(E`;e#f{s$Z|UBir)mvbyr+%K~8D zJ2r5;&;9yH&C|ST?EHR*@5h&BJ8hY|HJP(FiibAK)`Vx&nu1IzhI~G{wgP2YQTX)R zf&#Vs{#EjE?-#JISayG@8ZV1OyNKMY%_n9cVjKMD-!-xL$VGD;c@AmEoj|nq!=HB$ zx(Kpf-O%747RDqdE}rn@$!cb1<_kJHeL=!S^1$q-Ie$~nJu?QzkhJex!?%6=#L}Ou zvr&2Em!V6XJ9mzrLxgho?p?+B)~2QkNJiw1V`M!!U4DHfZExLsaT7Q9UBEe1=qFiOEC4x;&CRzmGesAshtK_dIT^6M*7Lrgc4QD#pJSlzvS&m@ zMHTRIw_48O%)fba!1;F)Wdgu?&jG znSrT-aF#VXUjQ0YLPJ9x>NNZ9Mw)g(mq<)_qwr9q)Kd7+p)IwM`@*lua_Y%14SeL< zB56mtb?X*GENe6f1hbU);_OdX+^l!jb6}ISbabh?)5%Wr<3`|&#dwpno%{AZk8+aR zvC{lEZQ7t)?hMczwh)z?ni~C9X%?_AMF)rd5DtB`-&`hg#aO=g@*hC}EXjCwEi>=H zimfZaC}5D)QWBHAwf%Dj((IgPLAk)~LZhPI*E1K+LW=h1lCY^hZ0o>qd$XUyl`A_1 zPQ}pTGsgdT(4#mIsSv*;*pN}JsjtrssViWQ)(b2X?WX2C4f&Wjesrs+_8(Norxi(u7wYbHC?fpZ4xV}sBih=9GGZ75&V7s_&MtM#Fd5RfXRt| z<%@3});>CDjT1scA^HeKMc3V%ssqx#t3)YQ}&4GsQ~jFy6@&P%5417{ca=|Zl! zkZHV@g_TQ>X6>J~6{D>$-$TH8<+^c8yH1W66ZBS$LO|2gy)AF|+O@YV ze2o;3|24l;DzfdF5Hq2_c+bCIxN+4zk>LXbsie*E|mGh_2D{}%255o4Y{eQM|I z%;uiqJW#j!4yX7!yek9_XyZyMDk{N0L`Z`fJ}MsH+n>?7;B zVE7?yNA<^#tg72_@6do0e|Nq61a3tXg~VS1ki9tMybkT%x9`()U5UKByq>CeGf=#Zf$u5&GBy#Q9ZZXys?OqGBV|5 zWvd{KG{aO}I= zc}*Q1PI`L!n+tb-eE&`su=S;Z*`SI;3>e{UbeKfE;ZSorJK^C3<4&oc+e|dCHz`mQr05gLnv*3oOJsT1)+#VMQ;dVGyj?Z?k53+v{bxHNZN zGyS}M{t#5$($-dXXn(+A`0xC{BU`0`Orm|;L5o1+qDJE|;<+|BFwh5d&i8Vy0<0aY zXt!(E-c0RC-IM&m_9P0AD9$X@tupK{ax-&t**g!eOZzq7o$s_B{);~txBK+a4Tz`x z_@APA)6>792fM{%r>Ll?aO(#Ow`pIva2v3t7ff;>NmK8UZUp~~s*|~jL#&YY>ow#( zl9P9wIB`PcO5---NAPtXv0t}-ed*wo{aBl5f@!zM6vN=xuq>e$Cl|9}g+Q&K`)KgW zkP49L=0ImhhcOyG z5IU6W^w1{g{u>|n-7Wk6AzbuQH6z3%c8VQj3@G@ohPOyLtU=9qAazxMP3YonU^lC_ zS5&E~sq@3n;?uqfVn0H&;G#fbtk8Z6=ZlV6;4yGE(N1%$+I_OJ#KyYbJ<<~t7T);c z#S5s#(S_XznEU1ukCuERU+1Zs)u7f{+KD&m7#sp+b(ruFe zS$YkuA418NetWMR0XJscyg6X)dbaCE95}zPMrVdTtp@ZV-b9?7_uXvER#+ns&QW78 zSB^BN_YMySz{%N;OE7DQs{{s=bPIPZhB-wx5M-z=kc5sv_=b?TL)u2Oy|dEZ3begY%}P?S@opWMx(N;Rw13npasg4?8;z5WTZb*yP4_>wExk zE;qz6fWu}EvQqAFALhhLn>=$n6xUYh^0R}rcxiII%=7g0^^X%@J72v@J{jNC7qVCH z^aM{MDCM6G#LmfHR>nUV) zWxbYegQgI9W#7KwZ!eOZf}ud-{L?^Sx^(%n@o39)D8-y$W|A{^^8TiujFys=G(@d* zo%~KWc*+tG1Ki?cefZP6krm+J_I(v}^Yim16%}jbKe{}EfE5UZfQo{0LQV#>Nt5~* zDM`--u|a9(A5e0ybQMZbz=6hR4L*0fiyZ#Lv$UCT%77$I+bNL=BhV zJuo=R%U2U_52!vn*6xcP*Yi19ZA>)HdU5;7q8(C$C`%#h+5Nc;rT>!!5HkGuP~3{L zR4ZI8j}A;AfmvsB_S*=4Yq^T#9m7uUOY`>RPT>ftpE*+spEJ|4RS2?8KaK^Kj3v4_ z4fczniHR?WVO~MO)yT@Ks@GKZo~@PGA8jC5*n0I+A#i|hE_{8KoXjgFwHaDy>X(B* zd_q^_oK)4+s3tnue#@^McReH^B^7-Dp23ehv9ViaV#CAB(fJQpwq*2XL`6ncp?U1* zI%s7$_$|-gw|By|4l01;D0I9C@)vN0&3;A?uta|E`$b`1@l8d>#(o6e8OZJS>aUZ7 zb5h0VNRJLt-`vnxL7v7u<&~7h5ox5v|bU|I5AG}#y?0(Nd=sYH{!UA zwsr?H<+=0ct3>F_FPWN(LY1JSr)SY|nIG@1TbLP5?h-z;SSljUBcXs+V(fZ|o0*;c zeROxRxA$zDs(U?Nh624GU@pU6ZY}uK0r1Qpbyw}|4B<;Yc>H*qvp$#%`DQTwgHEcw zTH1VUa>@d4e?ngVdRtcdb%%cu?||I^8Shpc6y6$O#XR!p1*(-(@09w8btQ>00hW>Rb`gq5|z_Z^b*qt^!O-d5M>4;f)lJhep=}+W9 zOh{m$F?#z0ET9Ms_&eyp&z4hCKR#Ctb2hlB^ZC2Bh9|-Cp{>WAHgF%RCOhuv(W7I9 zQNjlM@tG6p2m^(=HbhuXQyjT88 z$o!7?UWT`LqtV(OmNxXgS0Qg@7sn1zSVOiQrQ5hsSz9~0Q5UU$R$X0P{^G@pv9pKMEoK}c1F z9qj9|k<>3-sFtnDcc0mfAdHCl=OoUlv#o#AhV$t5A3S)BbQdvrINqn0M*bn?fy_8Qr&=2YwGUAuReefSV?m4S-&$f5Jj z$@iY#U2bYhesN#CH0KN(Y>-dcmRg9_T#ps3ouy%{&lMXi3=U=h7$xmsFEESA`@5#2 zHs&gwUK*OM4<6&McJ}t678f+IV954d?YNDvOmIM}7wQ~JC^1e1H*VUr=~Y(NO`P^; zk91+GBHAH2V`j1=YDFG(X1gGHOVB*u< zkBn4=LI*G}vVT8Q^b2SQVPRnu3RK1SL@2Uo-i`iWUR%3v-Gnq` zEl#Vd`ozV>HBQ0^Q~=6OITLnM%;_WW%`3A8Za}!lfH@z7`1?1sCf8lm)9W1>3B+0M zgHBiuH8wOXtjsImKG_w=b+l@H4Lf(%I*u0nrCR=&oAq-v@n}#ZN-r$<9(0Xx_r(Z{ zFJ2m9M^6}9SOfyiKFQ0wkZ3(JJe=UYvOJG^WMpPW^O$cagTCy?8TQqz3M)i)cOHRo z#(@SB7!+g=F<@407Hc(uP*AJewaIN!4^vRYiIs=LM2sGt^S^x;8-DdvE4z> zJT)c7?lXi}Wn{>De*YGB_*>)Wj2lfXO~PQ1zERZFWJTlapHA0QSHG9{GG^~=dVaq^ zjh2Dut&$RXrK3j^42r$-oPTnnf=P`Ycdv(?-!h`Sv97L;Sg9BD9RnC{(`?v63-J`k zkWW^Y`|{<>c^-fEM+)iHc%2HHe0jIWZHHQOM0B2M#9#owTiP#4tri9lb48+g$?9gW zJj+T-wcL%pduFv@V3O0vU@i#}rx6XLI1J(9BY3a_COBcW0XgTQ_K(8jK^?c7{H_A) zhX-%sivuEfJ92uaLowT`GTPUXV*tL6=)dq5a^Hc1_nG(lhn_h3r{OM zcjgS0dagkrq=f5naokXVV1KEPI;MTWq5GO=|DneDN^U^V*@6>z59$kD3uv}Et(Rz;x!#$*Fy9;~Qy(ksv`SsnDfYE5mnG^ zh&y})2)&(MZilGrxM9Y{w@l!HBIs}MaL~#q@(cNSIX|_C&xq5GMR^P*7c~`i9by$A zu!5tb7%qz(p_-ZX#(LGs8|{H%L~#qOx{G4Jn7tMn`}q?IpsEc8n!C1dU;XSo zV#_)ePOv!Wh?_W*70%;0P5`VdL2qt;p#{yr5TZa7DK=!j^+C&!zsEAQc2)kb_ zhOP46nc?20Z-~qUT3v+Sd$)LHnTwIX8hAmkYLiogMn8K=$;fOM6Jvqk#Bs<~1nI$qq@*=K0YqMTb~=9G z;$R=G{xuvCCI-_zmJXwZ*@)g1di-Gu7d%~s48f;or+Em4gye=*JcgZuD9(0!cO4xa zWL4-Qg$?ck7Phsw^J1&WIFDUN=f&Bpe9?&(1ZLWgT2hHHa>?LS=z|Bh4ZQ!dBDz)n zSizShx-5$OqtW{aL7Mp9RBYO{u-6m#cU)$opIrW|` zFxZG@MJh0{P;jC?A#8fceVX?C`STEjsMXJia!WhXE-WnIR#VhPTg)J?>5Rixn(Ous z$;j9XQ7rJ?dW{*0TGLE|DeN;cGKgiEp;y3$q;oHQ^7dh=)f$IvupS%;Nm8Lor=+H0 zg^ncJeuIY9GvRt6*JkUp_y}L$)olB8Zlb!<1#jA=@<+|2@v*{uuRqT#>&}D37ss}N z$zo(sl3oMn824$Pn*m$o6IuIy3JG<+Ff$LBj*3r=TTlg=AWxcR>bgUrq zgvTETdai@?$V$OHWpZEA0e8x&yB^rf_v}Qp4_x9>P^~YmIuE5gpoGBVL@)8l&6R+P z5fl@%1qPZ{fv5HedIAh;D#)D(50gM8P9>4MpPq_c=Vvtj{R1;@r$Jx-*%&k+Lu@eI zEq3>WOxfdCgM-d>gGUW60fTPZvW4gmvnsbyUExS>Vq^2;J>o~XSNJg^2}f(6xv`J9 zWedqMBd~P@Iz*0jCpD;4efSgrD-qVn(#m{|Ck9p-cHJfx7XE2|jfeSpLO)wm&OCW# z^G$lq+O5s1GBF%srf zDFh*?y!St-L6{mVd7)P@4y})O=T2IvJMU4l4QM!STq|H{ym0@0t!nE1`yPn zAt4({uoZ81?%Wqnu49iA<=PtLR_-9jmN|vMUC+?aZR8GTD+5%+B8!v2lE%Sxw;Xb1 z{PX9}JlarYWGompNnN6Ckz%=3+R?D~)VXuaWIYWHw;i-oUaiG563~P3)yan zCzAL$K_y@lipW^uRVBAKZEv$#AGXB|m~v@(@poH}HP=BnP+z}Z#L5>{^{eY`b{uVC zz#G2@Xz3XpT~8t1g=EL>0(A@YcT1t8TEu!N5FjRw+!tATTshTHvk3Yfe{dm zrCPn(m$P9jB6Y@V$(<(l9|Wo!2p{Ai3<2c=D&J#xWUpSoCTtEwfZa!A zPr%MnW6_SSd6JV?y!oXDTQjstCa<1d)x^XElBUt$g&9P)eL(ywtY7>~NoQszk^v}8 z6~fQJ`*&a!5e60$#dH8LDmGTnT7+IBYtxfs!DUD;ilVyL?>8Um%g-{vN#~HX+lDPv zp^b)7L}X5!t{o#n0f|NyJWwo9}V&H*s?6{B%cois8V6ir0Sla05uCZFCq*XqCGUc^KT;<2K*u9B4(aWh3StRDYbX82&FYlE9|FD+Ojlotwpat~GO;jYiO@CfX-2}E?PqaXprVg@ z%7op=0FGqjKHc-b-Tr7`B)}MrmLWFyG?)M*zCmka`}`%O0Sr-j7`h@EKYT@!5(>V} zkd?+B?0opB_~X4}@?a)d)J&J(`XFgFCRg`=AOlNiHoMOWq#jqc~yc`m=X5fta0{`2|sXZMc=CQh(^PpL=6#Lz>^ z8~aue^(HQF(%#Y3;@ zZkMt@;nK@dP~Zty)Th7jz($*ZhwNq=(iED~pKaHx2%o(Ku~%^25)i&d2r)Xz-k|i3 zzq_`g2EMMg@lCPe0R|k0@NsNrZGOUNcmCu2sOmt6BW69tFA&CUZ*NDyAQYEI!yWSe zZReBZYocbie|~-mzulesS3Bn{&&~mox7J8Jqz+DrLGRpo9TVdqvL)F z>_lQ!$hsc|T^Nb+LO~j=ZF-iH?@4@DQ6#O8In_%z{?%pIm}AmTxSmI+cIp(7?v#YS zeEJk>dzq6X;+B=lmo|x~CD)ryjJv*rfFxhZ&dax1dXUcCs1RZ?22Fs5c7HgM!VBEp7EDQ93y!n!(&U5(YT zSo(_U4E{=ip9vw~A@YAR!izbJpLgSifxNuR%)AjAx(Rl4CWhdg-LO6c>A`z{0{iNL zh|wy*hxaNFV>l3Bmc$}0l6^?Q6wMLjV+(8$nj>R*uzbtWV1WaCgM!u*!9UkQ+Hr`H z8p;K_;572(YLR;tY;0brb7o6`V-Ck8$NrwE0R+ybF z4wsW4u!I>D$6LQLg7(A*Fbf(ZIUnP+`F|A(AhZrcWpGMMtE*{YE0<)Mf4RA^0z5!W zB=XLXMv#=SgXxrMx<|z`4BinqLD{EIn-C)aCcc652UN3b|3{oGk3T=6NX8yzfUGho zNhUJN^|g@jo}g)vP9e|Hb#6F8(vXLtLxh^ zSdP7972W!jo0JfI53uodQ2LN#>%}!Gjy5~~4e0a-F2R2Y-i&d=i3o(ulYr9!?VAQ> z?*w#~dg;$GS1~(D*c+nvM&{;pn1X~Xu2Jy&wav5ZfkFq-z5Kx=kQfzp98%wM*j?j$ zezvtlMe{yHg@9H#um?$`0Zlry^_V6!feO$sNvAA+r@W+@(48}9448+jXExYlHVGqO zi0S&nPBnt$ndiMCOYRgfBt;(HBCrzz9ycMoY=h^D9K{}R)J;rGtI+*I&C}D<@vW(_ znTX7QHv=|Yi`Xcv+~ctu&yY6)wy2AdV#XyXVM>nRDl%vYOC3uXAJ2nm9s`*{G9HZo z-@D%I(fVZO2jgJiM^9j3AmnfOyYc&vAEnLBtc07QfC6HU10Rpp%Q&5ohS0}x_nN*?;(I5K(= zE7n3uu+qQL5ij@o{w+x|m`H>?G+JC{iS}0s#i$N(?{H!J8|CTh~5QA9pwi^CRNP<33|S6dH2-QPc0i4>g}B`9HAEvWA9@7^^voxlTn0f(S%s=)dCx z*B{Fd(~kl(D2El?J2rMlC0sxOcLF}x6$oM3Zig`_wk3BcS;YBy73is)R;I2LLu0Lu;U2 zzusgt>ER1GmDz+eBq9N8Z{SRKck|#z(IN_vp1ubwPK~G&Or&49HJF?&cj@+|A!0H- zE0lTT&Tv(nP|7ygKw!yaR_HMXDWSuXWCFGh`AOT%$Y-0|>AFZ{BF#X@9paBMY{DGC zgB34a;2@@1sJS&DJz%b+*ODYI4!)K2#ju6r_ZL!Ls_YYSup4dJM{Hl1N-=*Rl3XG# zC?{u4J=edj&w6*{I_@A~%*@2Z*X(Ro_n;I*%*p5f*txiv5wZJ}nVA{Mn*aHk+btQ7 zA>{wtWv)Bo?0k?Iv)Hcd_5p($;WR{pBijwY3KvC6s}4M-;#Vh-9tTvF&{}ZUT0~Z_ ze`shh8;ppGI)G+uh<~lBe}O)E+*g;fIU`X}W85B70`+~ff0H#f116tbw;r+pbNm?t8CL8gj*Q5z2Z{rfCcIK|(*P-?OVBa`@_pN0}v z|MolpA%|>y15BiK$xE7^#BK(P1z|Sn@J@1E0Vr5rToU6BJ$IHD| z=W$a#d9o7MEDF~x)1{D@3P^Vkjf^-9Tyt|vc>Gx2N-Ij$$8>S|@3pT5E*oKUu;gDA zwj>!)cru0<5Q(<6v|JBJMF!uSz4W!T*s&igp^i`}=y*!7pOAnFkPg1gYwr0O>Sm$) zOyJKA_ShTPYeq=moV9&}0iQesyE;9U&w{}mgF+y5F^?iYIXa01(9XSk@3)J%A|8lD zxH1+;MtJw`br5w##Ki7@I7sQ;A7y%2Bf6o+MEJvuU@#(9O3KP6@ES1fJ(uttU5Nlf z09DSA;+|y}1VhnbjyXCy#!hMR{A{|v>m0E@$H(m`la>+~D=X=rP|_z^L&A?yt{SoV zoxSu%?MfGpvuL-rCOLC1B})U$61}&iSlH~uqk|_?Mio_50vh{M(j2Z{#p4Oilcs?B z0p5KRP2-`srGS&H5~k)DaBglbXi~BM-D)}IXM=uD(n7M4sWsrT;2QFn9()#-K?jTU zKUVI15@=%8`?${*&}=cM*EYPcQ_vo@FCitR+NM}&@U&-Y$RW*HGf2DX)ju%C2&{z3 z;Ma|>fh81hM}+kYQ=GYcOm(HG9i6^yxwHdAEC@{UMQ!Hd+P-U7YL!@8Tok4T+TNIL zL{=*p_9KCJfZK}Mm(X!B zmvRKdYbC`d-&!31s-#bH1V|6UCa2Q4$Q<#9@u=O3;K_$KA;Du-U^U<+iHEg6R?(UH zbSnGGr&Z{MrlS!H781J)n8Dw+$;fb#Ik@xZ*>qn-fW3+!H3DH)GbQHI8UOV;;hN3L zo+mAym994K>6WnBWALCI3DoMEr}?rM5b-Png%G4|T-@;efv5?}%sF!v#iK`W9e8lfGa_6PnU}HIQHSNGsD*0g zsg)!2&5kZ<`B&A#re0XIt4>L2r;Iv7l$H|i(Y%}K4&)9>&3f)T_x|;|8=<+!|)$xDs_zxM+SAkiq?-4MOKkckWhsspe;N$)WYl?*GQ)ynZ5= z_X4SaWb7Nnj;tX`vf_-w9QT3v`3jCNR$XYYuxA-zZ4wiEAZE@4#21VK#(rW=Lnh#x zILW8|<9WW=o-fZsoH2&Tg&rUxE?$Xg=1&PnXz;WVL-_WJqY%b8iEjb?2ntl;_WL;7 z|EPu14BU)@{QMjBBstGF4tE+>j5U0wV!tLL&;dc7K5f(g- z0CI*RhP*m#M|^NrDYut*#DZQUV7z+s=FN&OA>49acW`J`x0dY2htetb3}A)`rI zN+m64Fk~;R%#?;hnq8r;vt!ZK>wpufAmJ+-8z(lt2J<81S@1L?EgnUT;_7a{yQaI< z{>OG3-M(Y3u1LjYx0*ZQG*g340N(Th62C`WAPB&SZf*MOl+$TMbw@uNNBy@j_|8n8 zAOLR-0o(VOLYXMvC`UZ7v7qyb(69IqF+9A&|4vB8Y2@aeJM_pGzINFPS}JSz7V{G>{)#h;UNSf~x&86qOPv8GLvE~mPKfr_4*jav{fv={H z9{x)nX#hnIA9MqG_(aH>R#DFvY_vw66bWR1dF*)`nQKB{;Z?0paV@-ztT_gUku$x} z=eWDrt@+>sraBt+3G4I`J7FACbJX9f8NiJ;g#d zexj06y7lp9d#gaWRGm4Gv9WGKOymX5%LC;PvP3=V?5lSvCQqHwf*9(h*O~mKIbh8F ztF1)t^SK%KV*Q4>QR%}kTNh`%-bG}h!csRsM=Dj;dLa!ag*-Tx@msN;AO4k)1c+2Z z&HX_QTK@4q8|RY4)4?-KtzYwb2wZ4InR=kdO#dp=f1gc zeO>M*@g#7nw{PEycd2Bg#tXi5aB@0|haxbtvNnIu2MC~&FI=NzO}rB@$BC%?tlzcB zS7UbXZHL*}bA%|MTiy;1u7ruuGce$X+S9C4WFe;B(W-Wmb5TkIS^nQsLLV1j^1df} z3kH?oP3t8VA!&(GHew5$jQeGZ2$zXTzm9>#%f)LJ@Mh5c*j9S1#-`RbEw@k3y;=L& z9iBt)=x7i$<)CMm-`)KkF|b_tw94)I_6o$552G7_KHY#@$cs=G7=KuvD^ZSt@XKK4 zkU#@OUS6at;1q7^R-MxXTNvtkSKxZs2tWbPZP3y!&*Zg-DMjL>l1?Kmc>d2Cs2};+Wlf_>hxWHDtV%66GIXs&! zcuq=VOA8u0HJ&%KMpw6!^R&ys>8T`Hl5T-+1No9X%Lv;B3}H2PNp*ewi>uwx%M-C0 zeMMbp`zWT3hzHt7(`@A41~&&<9E`SdA__xpA)}no)hXNlE}lh$2dg6W32AR4M`2*H z7p)4J>-2+jXLU56{Q|-bMovz;7C^rYiW*4yE~LHa6&MNYy6Nw)_D$bJ&L4y`6Ui-1 zjL@P>_+qVrZqmNdJujLwI1<8(#f8*KfXsZ~bBI0t-Ybg+!K0F`f>8N!2q9q0o0{&x zUb_X0^}O!y#osz3*LKUv@qoB6)vn@3SRaoaVvN6arDpD!Ui>~70S~~Yo}P$awRP)O zY!|)*2j0|gn!}(Gc@_f(OJp&=yYcAJO12e!^MD3Ri@eq_MlMcHV~maxg%N5bdRrrM zgdUS01e;%c1&XWyY0U&BAcFunxA@J~kkm)5OrQjj$2x&2;$drih;%3diGi922V#DB zbDq;E8|D@(wJh*d8xl2aEAo`V@2(3yz6QtB!qTe90%vNzcx6$JFkfs9xa?KH7sTj7 zLLKY74f7009%G)tA7Tg+Uadn?FM;O&Jw8hsD1yfdhzG)>ho5Tw=_bdOXs@vICI)g0 z6ED60uE(QH=7qMTubQWo3?HZ z4v}4;#U3E|8Y&{PH+8FKbP6Wbi~wfHqobrG{^OUy09cS6Wyr+!gdc3Mixb>s;V8rS~KAa(n8*G&npGg~)p z`a5;$(xo1BP@MHr>0X-eDj&h&dlSB9HT1v@ASK%bdtk>Rw_-dY>K@5;T&< z*7Cz(;nUfFUx#fpdE^&H^7eI|!ekj#I9~*?-&S^p9kUD?j8DwSpogoOlJC0+l0!zl zupi$=l2_}j7O1d|2DWP5Z=tKLjfi(4o2|0W^L=sNfhZBTK$!jH3ivO`%_6*UI1Nw@_gzA_WAa}Fqgk*FOn{Wh1e^|k9M;PSkM97^kb!YPWDJCpQc69~p-QZUx-MSC zjiSGaon3HQ1}y^a&kZD`V0IzMGi2dpcKLEyT^&6rJ5wh{Mad{QfWz%vPrx^*lt*x! zjBIQ+U_=wK#G;l9w*PvlT3cslIe;PnHBvhnb+nk|Z&iJgu+afRaGDj)W^2 zR&O3bnDtp+Jam?d&ZB&r(5`P{aI_re5~O29!_%B&;94@u4PuA}LuQws|5RBl+Rn#k zu`BT9lTg@|{e*B}{EI*kbW;>bh-Tzb4UoG@WFFCnS6+YJZ~FQ5A*aOn+Z$RDDeK(a z+$86UZCieR8TtYx6jiBcLK%0G_>LT8~+NW=lh@-}ljq*dbGgIcrZ znt+bLnIw~v4e@gCNx?U*VIk}S{fTm2#^qNDh7%zemtyFj9(5P}htyqS)Iss2?)ed; z1;~?wwP9E$;LT76fF`4}AO~Y^ zjd(T*g>g>dB$>s6HexvZIT?MV0wHgr$m0Qs%n+LhQb2pR!^|zI?3gWqxNMOF*4XX~ zILQHk^gz;{4^vQfSYz}T@jTl!JgkSEJmCsYX)(mbbj9IeD-bKm$SiSad@!|_0P7N@ z+Xqu+#O**yHu+H#fqdHY>~4#2g#C~=A|(sZ35?@rYN~m#DRh)|7@5M1gh^MS8wuG1 z4t*j%$Um+<$xXt$Aa9A-IVj^rvqgdnkRql83^M?&f$vpf=WGQ0Ch37+U*9sWp+W|k zLY^Z^ru+KlWYp(UUWxsdK}}`bQAiCO%nWbr7WQ0FZh#UWi3OLT_Ux#Mle&5gWS^Bp z0=f=@Tp9t+F#Q0>7a${?D8WA4XfetD8s^<@fUFjda=~~HzB?SEi3;`xZyk=37ZXRe z>mbY%BQQ_IWuld|@dbO4d1qUBhj|C`afk^N;rRxC&&P}xUV|i zpVns^V2wWFM^S|T1~}k>TTG}RyijE6e8wlmE%B{m4qwaBS%TqOM%0q7^XI%<5NH%F z1Dr^ICy?IcIF^0b89J>_w=#0VOvu*Xgw&*FWq{|Hk*(kMHe>2cKQ@wf>YSY0Vs$(_`(-c!(|KpW*kC+AlA~QF}_! z(gKhl)g0mY`0*nZ1*C&=9b1xYgMT#A^I!rbr3c@hX?r7i4A|AH<$%H)Cx!%wWBfrEXXnV2 z-v|g0X_1U@fUlOrZ7(qxUG9Pe?z63=qa(k*pJ@#htU*QO!iyG0_5{4gHk%hK0`es;r$&R_eSb?s}fvh)t$@ArA0`~FOKaHemhGUr6$Lu38+ z(|xUMkd7rw+^=zCI$LzWw~Ics9S;$!<2#9LK-(;jt)ytRu4<6W_?M~_a^KjKPA68v0Ep2(ABsM0- z2T%cnfASPq0y(d*lb&7&(AqYi?p$!BDU+9C)#$qdODMqwfwqJAVx&t1k%J8fkXvW; zslIYyOL9EZj)Uf2fS=z7wmoz|EC7fUv6wxPWDf&-jL2S+Zs6b|!z@aVw?`b=yni8;t^F*5UBuVE_1^Y&!{8%oT0j0AyLQg&7e#1djWY7h#p?e0>tXW%fNau%Vn0}W z@|y`HT8lStHXX}`P6C&kN+~k`<6t8LxeKy)QKjtkcn?3{&ZV0Tmt4Ym#I$JT%-`h$ z?;Rw3YYhJ)gc?vC4%0xuS8WAD&83iR*yr=3AWD3(fsEBPxk3Mp1O4i?ybY-Gp z?T&_8HyAO_VI{-LHy=%(^WZSO0-AglIzbBOLqWU5X&bsBk|=}CP40ccLCin zCPw-PySi3r>$(PzcIu_<4)eO#auPiRhT7XF8Kl|SZU4tbNb%aLLlF*p_qN@1E`+8p zr*_oN!66n-A;BuA@o2c{AhIaGXl!Iue{;+g3=1L!X!&$IwgB?N=Vz@HtI8|2obp-22-5x|((u(0U5t)J(Jao&4b0I+&t?b%jO>Iym8!3xtBE5Q-71F>vGx zUIZ`oU!ZXuZks|JP_qH#lruX5D1-z^C~q^)Dk3AIwQjhHEy3L7NiD2TiC>s^Q@K zkbim>5U~Qc7s=o*p!h6C5(T0&2-2b`J!(>mtE5N44O>CkL#h&VrkAf?)$f^;f%<$c zF;f5w>G{NWE(PG`GBI{K_;Ln14i-u%YIyOaQ8WjYIVk+x00@=+I1CrVacq_pnS~u4 zxfxW+Iuu-ugxU!UB>-^%ly`;T4}Yzt_$EcQ<6oh4hcXVRTP%=3h7YQS6w@3aj3mzm z)}sc^p9{>DyKbzX0r{w2)~{R^Os5qn=KFEd0qx$3{T}dU0Kf+H6F29#qx*oAoAdPP z-}Wl*mQg(6pLi;17}Ax8%1nF zNsoGj4M+tL*$o>{+BKg-fI?qiA8G8-J#TVHm-+I0idGPs0Fp(Lv;&rM6*S1ug^Bl1 zK{a`vdI+Gozz0RorOVNi_`W z4*^z4@(DyC-3rJVhXeStIndmfZ+F**h9KR#oQsso_;h}E@9q!#ajjbxNh;I*d=OWr zcxI3X)Z1D33`md!I87=Gwv@4!$#F68?0h(Usb#|1^zt^p{5HkEfsc2hv#kD23-F&o z5cPbcqx!$l(u2^|fG=mMpm}SDe+(*1vSEYRy8@tkoAABPFJFy*K>*JMD$!WDgK#d8-Uu0L_R&K- zo#TNMA3zZe9H1hvx6rK9U=CUj_cJb)oPS`BCq_lzMCnhuJFWlE5sZTU(G?p0cVSW|DhAi;LtUYCW&^j(l ztB$COpuAiDxAb&FnQsk~d2Kg~SZP{%CP)_kX8Q@C(ZI;a8uhF5=4)B?5R-v{m?54TAiHcejfkH*pfBoTQQ|$O=HA*s&i3z zFq@B&(iSb(QAq9Q1S3rFo<^7F0&3O}v}c=`oauG=>%`>pS;3}*TeJzrF}lNlC*RV? zw<$GtSfj(iacJ;|EKj4?g1zOuJ2{~{>a?Zj+5jPUq`6$t^8L)AZfDx9VE(<-`e@9N)lk zXyKd?v7)Q`Q+u~~v%bxqm)LEN)s4_k@-~v}5Zf;5gN+c3A=aTxB4cK8WmkmM{Dz~T4)h+skiJE~# zHVzzu@UdSpWg#UmLqUXC_h$Q9tdac0iBrdpslugL?mdl@(+Vv` z*mTd;R)rEAG+7Nw4((oe;CXiLCKmpaY znyw1&<^2Z_b{u()I76tbA=6!wK91s_@Cv-+8%WqOp24^Y2-^?bYc-gM%LXYY8gZVa zXa)R5W>^3zhM`|k*@0Ig4KI#+vaU@|3>C2|(#&(%@jm@UI0YER;T2Cq0GYbM6Mr5?NG^RUE5pWE=R#%Kwv0f z3lzUxroQV#)H2tumn;$tegx73A!#OxFCiyMY%FB{Qqvw66A)nghddgQs?_FDPLiLW zpZzatp3ofzU{VGo(a5Lp0gHh^rTg_>DPb@Qp*Oz>`xclOLsmLc>;fa|q^n3T*`rf1u7~ zumJ}Hctz5W+TPzb%0x9`1L5NZe3fxX z6{YA?x*CaM;Wx$&7u}|L2Z4hm1_5w~lmuaCBx;e>tl4|g6QU_`pr(e5g{sMG%KN1ApTIz0@#un{Hy zswjzH%gPuOvjJ_85TH`hs-pUD%!*8X*$CmEAeb3e5g-;+yXU|iv9K_i--nR-MT9e; z8)0YsKQWqO^JmIJ;7s92tVhzllx-hCAt%wL2gW>1`&UjaY8ue5n)vDtVM{P~2d!Hm zCV3#1QUDAMo|FFBe-dHP?2!H*<=?SmOJDN&NuG>Bg zsf%KOTr`2@^}kqtCnyUoiYO%kLKrv`YlQ*(4F^Gx=*_n;EyH4U#K&E_`|v(L%>g-U0S5ZU~o+1JBRTvSgr`C)g4T;1+oXe-`;UeXkkMq#A?q;ch}a%ofBmCMea{I#6Ps7@*P^u;>h+RjIN5d{k_ z9V`W1V;LCVV3B$BYULDO32Etz5IYkgosB0o%myU2ACB3@GBP^Wc~GwtKy0xPE8tM} z(KdE)!HX}S-=2&T*L4|SfY3Kdn&Y&d32VnYFf1;}kQf@ZGDqLB6Ef1$Y4y1bYV%O- z*J)nq)-yE?v3vXADSUB20{w2?x;31R!mt#Pb+>qo`}_J-0OS_*ucw?>2I)cm8GQ@u z@^0;@T!te9;VplVIt;=Pg{zS8fS*4tUU@1b-d26FF4IsJnN#eWHs!b*$I-3v@bI{F z>(=V#2>3eyVj0Ynn90Wn;iOBL{&MW#rm@)M9yS@}mNDxl5{=#0i^)E~9Ol1w9~WxZezXco^nh?AP^<4`Q zUL6w?W8VQr7WkM>_eD8C-1QIYmX$?pUUS@L?5XnczO6+!I&&vJPRzR!-{UCivhxsn zC47723C+NE@b0kyaP79wM%(5@bl>F-O?aTf303Mfm zO{Ym$w8`QLBkw-?h9EIS3|=)!+l1zaOu$GHs762l`i*v=SycXOCQ9I?W?N|_*Hy$w8hS`5`f#pkV4PTgOCvVY8?z(oyamg!yL+pLWq8pOle7a!} zHXEj`_(RVk4tDO zIGAm@Cj~(Qu_qKO1X~0;W$m#gF#vA>8>VF3@p&+$rk(U)9)(@j);`g71>zqv%Ni~L zIy^}dLpE9A2FO>b^@6S=Y9$MgFxxLlUa7l)@ zF*Z#|Z$gaslTH{V90VtIKF=rhaH>M#9D{CwDb;U#@F11?WNca?o#r`_fsGV3n!vny zW)6Dy($X&C*XoAd(CorhXL2YXg@xdZwG0AVAPK{@xL2li4_~Bgz{2pyftzRX&tVBA z{Mlph{UKHlN!Ir4p)3W<&I#9FY6t!aX1f`ugqI^x1?GiaHrZ5y5C=e{?-0-s+Xd9W z98Gv29HsFzoswmLa0C@;SV$<^;!RH)1*{n+ZMNstvW{KW zZ_JO~h7x=KuMV4YL%oa!DbYtYh8kV5s`CrOL#4gK^M_x)Nm%e;C~@+HECWvWor(*J zvHl3tgdVAIe9(;4px8rLk5QRpYx2R`1=d0eg4?gn^b2rZ{Biyv7lvP0I1tOcK9B1u zq=$6W!i@eD?h%3{;cx+KMfnyXRT}E*R)E%l*ZaT*0g|o{iY+j3Pq7E#KqS@8oYf{i z_{J3RgCY%)oj5AgcI@CHgo>LxRJ45s26kLDFv131OyaNu2Mz@H;PPYB*ruU@Kwu%N zuK#Da>{WYeDAXo2`VCJlMU3O*B6=OvHzgKhS>DCe4}7<$V0=;HGQbxz5;DYYu)u6R z!(v~HI{f?sg*gDHFwp6tn`3(bV%DBP62gzl84@*$4+Z)*+_9dM|#a++P! z{{^V#+~)#8hMZCI?jQxb744UbBtD!p-2^zsELK&UZXn;nSxT20+3^aXhu@{xd`%is| zRWW0%Q+d)Cs7tna-HN1pEXzHKXc16*grZbI#mGzT6e^jr85TnSp+q7K4#y9d1ZZM-{Y6I>@lfP&VBnoGs@$WFikA!j%fZ;xw z0t-+D^DkV;hq8d43mjo#g;lpuL;~qcN3DiBX9~H@o zi8F9@g47p7Ca#nMkSbx*iy7WUst>|9kH;`38(mRKCGFXEcxA+9$&Eq>c|BJ~+MRg| zz1u}XsgYf2_lEn^mtP4FAD)9U1VTYH8hxfssiGQ_qa#&d+9nUCxSz`o*?GuyY*WVa zh-k0#AB`VhHme$I`E2#ZVoJuSYw>J_EeR_!Cz3x&TNa*&ZJ9t;Q0cn@T2!$it3qfB z!x#k_AhZdz3|6@?lqz0t+kn%Iw-*RuLp)(%{4CO9*>Fu2=b^XUE?bg0zy9t>I1VEd?uUv$L|h^>F6m3!r=QHVXFlCEjpMH` z$ukYhv%DGO$h{rL7HMju>H!J@fJw-t*Vyn{1ZDYxK15sgi&t~mnZnWU3V?PCzslgY zGzVoZUZnKn5ku`%vwDAMIg+V>PqCYU#Xh^WO4qPVye#t%V2b`pzi5Iy1Du0C*71uaPtW zRoPQ8+4~(Gc>!QPG|S?HN$JuG96|pIKiZe?CP32{|IVzSP$B>VhO3tUI}#=GH@K>* zr*}m?3Ofu1CS%Z$FQ{4c7Hf}x-u0icu>+z1l?tv|X)TZ$R7}g$*Pwd9&IDLL0Ixxj zrzqyve{o|_RuVPw$a=<|?8lrBXqw3}57yBi9492+et6)(42z;CDg{V0ul5w`5S%M@ zucm&;cHw|43Xw(k-I{Rnw|@IZK^h>gu<1}=DL9G>r}g8h77d(Eq&mYD0z=4w=)+Qk zg3+`9nN_d^X{T?)2lG-(NHT=#i2FD{qsek z5G)ILMiqP=CJWDm&=1l)DET$V+yJB*rJB#c+ri*ZegQ0XG`_ah%>$+25jp_~2VQU8!F0O80}Y-4ah>Nr~(tz5nO94bxpcN9;G zW@Isd8!*fqeZam}mqj%+Np=R8hV&JH0V2hdwQZ zyAiMf91?FkJXACphS{NaQ8WczytoZ@5yc&0BViQ7!9zPXwhb~wp|yqiMH8w&ilGBk zS@(XZ=BI-;l>&HDX+{MwX7bFzz7;~zb7V`zbIit|sCG(7BgH;E9e--*#>nt+5~^bN zq<;pUPzOvZ3PZ|@BCh>fnmC^8mD5vdKmXV>MSY_2+hqOZhs zmW(`3pf%D6En1|YkY@^kts=(InF59hEE^Q_8s19EG0L!MMnNRs2GO5j2X5d}(u1KJ z7Igm6-!FhB(;u8~@MBsP!!_!IOB#W)q@9Nd7!@Zy?xq*WnIcjG3tEs7p8=^^Jv~^Q3xl+`U+j|HDuBHR7 z_S0IL#8k$sAiZV@+5;nNv;F(;!t=3)I^+B`e+%4F>USSJc%ObMa1lCHh(DidF6eIQ z=i zu9tb0SzyrdtnrK1n5RU>{fH}9fWXmshI9V@`?2|mAVUfd?E# zc2ywu5b>EDnrG-xZc#KbU|kAf1PhvAa*YtI@-`SB*!bkz$B1 zSrWT-)KGgBCQ3i-cd@(Ji9Qsul0N7NeIl21;o4mjvGWQCZihVi=GIJxI8u&4wGQ`{ z{t;{9nU3)s&9yv(x)|DY1iCmycR-G(>nOR4-V4vk2aMl&<;i9Rz?xvEJ<8(-4pGkv zcY96zJ_LE9k=f@x5GxRo;({yc-p=9k>C-_TF{S)QMQ7BE5!LqbyJi<1j$#JzHm=-m zm}+)LD7a`HS7n@&8gwfZ_=rnGBMNBAqny>mk|&SB&z~esg#Tk{|AS2B}3|5jQu;wtJ~>O0Ua{*wePbWgjnfq~Y(K=J8>1E5}V zShJ+3A28g`rS}(K*7E2o+<@&taK>@9k=WF=Ak%dPv5_30j4mZlmMdJ5Tz(T=z0v%M3jPuMzn5W#*-&y@Enl7RHHms z*&R|BZg1~N_lt;WApGE*Nmj~&w!gbPkiPI?H)ij0X1NVczU z&E?$c^Y~bg!`7W=6ybS#{^Ga8Zg-rPE^Q@Kf*+?1wqRewZhmoUmSG39BY41yVUeZ^ z44O&(F%w9~XgUX!%`w!zBeNf}T!bLqFulkO0eQ7?t*7f5o46AWt_@EnTjV-iYii@V z@Sa$<@^-{2Nu>Ph!U8|NSH+4QXEm(lPSE5c6Lxk^4V+tjC&`d8w<+{ zN|);jr=(~H-TfWg6>^NF*D~RBe$woIlg4mh@*7gV<4vp954zSM#Q5N$LuB^dy!p!8 z3ln2M_TXcrH>(>%VTQv1T$6)N6V_u`oqZ?&Wb#d;(AvDgZ&%%&$2}%o1P1p_I($#~ zgD>tlRgrr`^9#Cn8aUD)LhcM)^9ZfX8>&b_h8qBl@Xmtm;i#mb;_Sz8IB4SU|sS~A27f9k7>=3GUT8+*a%ENY)K6;M@j^sXei(? zfR=?I0Iu8p7Pij0IB!c}eC7t(n~-EA=6?qxamX_;Hrg`z3|Pi~ID$bMEkOy5^EZ6N z4N6w(DUP7HLidH~oIbd{fFH}VoKkNb7()$B7C8-#fz|#`9AP%#h4+SaGaZ^RD`?&c z)58XS77uGNxJ?ipl->-H27^%qjIqG8MTdm2sCtmzgBa!j)WB09f4&YScG;EF&{;i0 zK@NF0H^jDy7v)fy1DDo7MGE4LKpxac6ut$%mf#OmhcKD(f_=b2xLs%nRX3T#$f}8k zh%`Om`FtV36YX41sF_Bxb`YDD|IM|0A1hN%sb}5Q6B8=ws;Zja+rpN*Z@pDqa!Bnq z|BW82ge}J;PiM^77JKq~bNs}ng5oOmQxJkvMh%jgp#|YW^b@%VAlu$_{p|Kt8r= znm9;_ZHbKl94V2weAR~h%9k&BVWi!LMh0FyOfBNX+e700l*Utkx11aiMu4m@EKS61 zKRagvHy(gGl7CTch&P05-W2UjcEVqj%GhdQZ$GMayD4{sLb;c_|?p2tG!JQcNv9kLQHq zDfJetVo>lY{wnyw6%rI+!u&7^LX-)sNh!W0kiq0%az7+d57Sbmt4kq4059(WfJWKr zeAZYJezK&Cw{%+Sz~p|^1(&g@;nVkP9QU?NDMi2rfN`(00)h;ZqN4bt zWsQ8YMI7y zqAG*8>d}D;J`^XN+JP`9Ov;81bKGGz zmWaR`YYcbVve{y`|Pp;sDe}T0CbCfQim4B z8`N6&oT#%u8^t&E`Ws`hq!8x{#t3flTI;guRMx}wk>=Qf{yM?uo^`v06F>V}g0m#f64jvkm1u*{R7Te2O=iniMudATmGmeSiWeP+_!{uB% z0l)+3o8#w%8^8_~XjTO!tzlKt2u#ufL+wOcKS1*Qulzu0wRWT^EmAsN#85kF?%mVV z>}3(KwJB|hYsi`tO*>k&N$iR04)WS5sJimq`q^>96$5EN)F>Nx|7pNpUWz6oD3OwB zPyY_Mcv#-X(hgG>w=T6GOPIL4WHPNl;o`-w_G8l~UMve$e=c?T+KbJL)5}dIFJEh1 z8NRsd^0weU9o651iEf;6DF!`TFE@tk>D8uX-YaXKlCG()F8E&l{W7EnIWC*~-uC%3 zkLEOEi>RET5652>tZQ3$>eZH^!zqJ%gh1NSyf>7vlrcmnX8@>Epb$_K`v82T3?3?D z0Ghmk5ozSRES8L6?AB?lFHbyp-g{=%cZqe_b4?C@uCA|DakmhN*yk3~B6g^%L0PM+ zBIe^Mm#0O{N>{jYEhpX~ngUxdkyW&DqRgn*nyhjUFMg*}VrwI+HwkH3Ahs-Vj5$Tu zYHWh}fdN3lgh^C_9TjbLI{f78?e8~c@u12x$P(RMlTiH7^1$W2IzQU|n@mMpUk5ur z`r&zI_=!FH>#XxKwK;QNjVH?uh8^`u^!nO)?)mcf@5U-JjGf-XJwjv3p`;O?9%sy6 zc~BMy>{JXu^)rwpQ5-d5$C>~`9RR^W!Ylk3#jyjiei}amypp zN_z4=h!_S5u*nOB3RrT>NqTAQy&bPJ9zT}BN;=V1I|Fqq#K`i9(Gki-rdS0)QZk%8 zLFx_uC+IwrPRxHSJ9-9#WC>EHf&*tU?b$HVlUqwKaW;i`LIEEGh8SdWD@-z=cMjxa zk~fj^OC-bZ!LdOeR}5-eVOazq=>*Cz*kA{2fF^813DgI-VP&LaOW^{rk(BEXe^wyI zz=7T}x|>3E1C(@h2~Zv5pqK{aehIokaty-jeP3@S28H_rHVRk3`~+W$&;w}D3Vl7r zK%r3J>TOFh$Vv-;0r3yuO6sWr!dt_*hvCcWImgJYg9L#fxLHYlhY!J3>Hwn47rne1 zK0os6aSxy379+DU*c7M-RHa&ei%D7!EY)X#e{1b60C8dd?B+e0BBn_8Pg}oF)`peaVOa&9 zM3^|)7}sTOxF|u3T;Ev1&+w|`fThXPNa&%YCJG0|N1?Ii{2Znz9ogC0`=C=>jHDKX z`M_da0_u@1s5clV!U3R`0}RBN9fQ+$KkPySUNm+Sn=O)L)u91IRmltMHUjE*O-!H& z6+w<`I--#&xdkR}dMc?Hplo&&`ThVdye7v_kr)v}40Fbs!tnL*k9kNy2pK0NxJS`* z6MBeDKtPm-!_%(Hj+$P^N-l-`kc1HMFhd=BbmXTU^=M?(n7? z0;GC3K7JYlB+fHH$&|v0=|L*|oHU?=GHL*%#r91sUA$Os`Ffr1)TLb0b4=QmS4k~f zQRg)ooh6ic=7wQR?MYNsbCwEj_wR<}YX!<~w%*l)ni zQ{aLfL*8OBbW>~6irBYd*Nzr z1#bX6k*fn6wDI@s6&XbcKK6@^jiqa}m7lW>EUKUSVu4i4BB_?oSaS3iXiR89C}Ilk zC9S2ZM~*xs3+&~~i?C6W-G|F@9N&a~6ZCXP71H*^;biB=qAI~2$cZf$+IMclg=gW+ zxYn(&QQ-tIklqwF+W1Ev*iXpb*716kLV(2h77!U8@6imd0wqy(C;4%jv}wAve>JAM zL8RL6{EIMrgy2%b)$hl`EqM~q$S#IhiAKj7nRo%Dp)ZMx6`l#Ip)39=UsTZUe#yM>V8}|t_}zyY2Yi?bycJ*xJXQopzMH9FsMAxjj5nd zOa37LM>sOLkz7~Ht`a-59}^(Y~zMQWg=8 zJAbw1l1Zh=9)LVEA#*i;^XvlI%Vs7D$9c^*)axeQIvaeuaiySurJ7*T1`+#X?-b#Kb__ z@16K5f+rp{Zos%-NP&NMMW?6(o1mr?d*kAjD`$XeB|9-h^wEWBgsB2@M=O|3ydiO8$#X`8j`2ixI@WQI1JCVF*Ctk}iY4X*DsxG^7kS5p3T; zp<&#?&!NJWOQ7F@&d4CgaYmwn>DM#Ubv!MrQV~B<4pnqz3KW%d0c`hUGLQYJ@PY;V zzW0Wpx|QYKz<+b@3So0Yq3DR2+cUb(>K_SU&9yfi)gN5UgpdXVRD?pQG58E@%i>Fy z-Y?m_gZ+Z|bh*v?zB=Vobj!mz-7ymXZ6e}aBa$kCuf`%w*bP)Swhk+MNw1rI)-i?0I=J8tC6&8M zzK@=zWl>4!GB$`#Roi}}6J9i(9Wsi3(B&m9EtZ8+Ab_ZY15-@!DE4M(!`XmOxG*bX z4%S}~jxR}m(V$)D>G>wKLhrq+O%rDKMSH8E6@B^EiX%NE(c+iCMakVfyW#txhRlw^ z7Nh)_G-gQF2~6X?s%(LvCpz7U8bVz((18JuD!@&kx=4Ol1*sQCS7z<#F(zXQiD^() zNSa$dR$RV3zR_#t&TZS`8#5v*ckJH%j0UTFjk{w^#`8#o-mVe~vb>KA;js~r0+F=D zcLAND(;fT1KN3Z7O&APdrWz;%NkjwLeWhA9YGjZBe4d`3r#-{B;}`~ZuS`cGl(s}c zfxV_lD2(E^(!fRGJA{;WZI9E7E3ww51_ir)T({x-hR5(BR^QX$Mokz0As6r&kdhb5 zRtDt=F-MV>oH-xss@f-h-YMLZN>%;9fmUS z0)P!7qe$26k%RFtKyvyJ@^75u2@&>DD80Gjcj+4fbpy28+R!HNf>z77aj}{ZQ3W z&3J1idaZ)t#NXb5`+p>(5R&223@Cui^vxA^gWswc>0Lg zATuxcTU>r?*uV!?W?IaiH;;0$cn}kZ-G!#05&VnwQd*fbknsssVg)t>nIrFH$e~S7 zF*diq)xqN7Lj|a^N%KYXBPePHtPCnn;$)F0O=>7XLA~!KnIZ5Gk-eS#K{Q+&7X=53 zN}SI4Vw<5;VD^V8unS`SrvROh@kID3jl8>glN%I2QMq_wI5U9Z86B=b;0$6dW{{~K z?vPSUo4}C)waQuSBOa3Z$}l|;_xh*&bVe~p1_LxAccC<(8xLm=2}dYhebZ=ie-2y-q<8~zN^(XN4oh&@f^AFcZwI}YRy1`Uz|if^ zX7dXpEqdneGt^Le5m41wB$JUWq}XE5F1*fDUFpTM%V)ltc33=;UmhDA9yG`9@I-{HC>A;kZsJ%ZEKfhJKQX_y6r9YweRRV2&;^R@hd=>tQr1jvR^pr`Ow z93Af4zaB&70q9Q?zr96XMkYZvMp#JbMc@KPF?lc0gi#3(G@P(lNP@9-jq8o;pY#so znd^tlcOt|A6c6lQ3v7_9Ei0*bgI&$ickkZO=&1^nR*SB_02m!gGCvDjl;P;h6H5G} z5OqdEaF|G2+uP5gvi%deipq~H%YedZqUD$Rl$#zV8rolRQwfEI^9VkjRwRp-p#i-o zqu5Rf0_a-#1qJ;mm;=u0L{A8ESK=fW3h2W*YmF_Eig$id(GUn_XfFYG$+ak75^V<= ztg$H|O4Al0AvF4o@&j-!I*tpGJjW+MXI}g@`)dE}BR`u({T26qJf&Y_AS^uD!?o`0 z)bX6Vs+2fJMQq1{RtsTt^(9!$sItzFeCGm@MdJri6;S_(xYM+X zB7JN_U1^j{O@k~?(G0MK9qkWLrS!d0=&d~!$zY(e)x?8Eh&K2D0#~@Q*y@p=2DIpI zT3VyVb%PABJy3D}na>4~0(>R8s;H^LoV?moLns=2Pp_%5*rTxILp19``JwjoZcVP5 z9}b5uSTl~wzA61FWz^?z(Pwtu}i)#8bz`>lujsGx1s|Rm9wX6oZ!9=r#aBm)wTxiGWeuwzTw`L zJ4>W880B)+qnf6om)5`a-*#MW<8=e&ZEJCI2^4Iys8acptY)Au`c1J6U8cIatFP}L zMPscf$DdzHl$&Y|=4-K@1J9pdxL+?4^hW}jvi9$EHq!&*f25GiXMewzeb|5B7kIF* zWr5pV;X4Q0>oYptZteB4Zma8dxF6>mq3!ynzJ`(dc_htZ(VuI#!Q!UM*!n#Fo!%EK zGK;QUj#!?|JZUOdS3Y~@PR^5$eF``1iIL}oq=JT-VSlQR={7*n?^Y2QV{@@mTlRrU zaJNg-V2zHu%$aXA861u{3ppN+;?kcUe{EjKJ@m_aiBfWmQB%@N^maJliqXV$oiL+J z^n#z609{G}emXpoXX?jq9zp+p>B<$omX8q9xJ&R(@brJ(wzscQ)UdOsdC$uVg_doL zYFdPBr&fwRz$r&85p^fP9soCBV)t2W0+nK zuk4N8Z;{8NPAPTDm36ZxdS2d5N%Z}hzj$?C-|QmgR}pF6mm)51&Ff|Pc{{{)d!X8- zAtWe#@4~7D%B>6_RXW^SB!far9*~i7JnTE!NG3+Qr4QRDd6i5WW*Qp7P;l^ZDZZJ7Gr`F?= zy@Q=kirUhnS?hI7lmJwEo!?P@zjUqEX(_LAvENJQ-JEorI(hQ5B=ZfD+iE}_i-f2FnI|81N(j@s1C-fFP7y*=03nMSQo1~7n z*i#^ZPhu$dZt3jEy*?bLYV7kZVl{7URIE%i7m-?PZttgk)^z1+v*Vlk>zd?bOTbSb zh23epHk+&6ND0q_$K-$5U1KDxdSg8;>7$^#5x^kd{`@47CtwXhkdnezD0t7E@W zw^L9JsSf}*;?yh!X6gbj#WB|+2m)Z);70dA0iwh*A_H7})26+5{{n(fbM{~c#p!St zj|8RRLrPc0#Ad~dGr!6kk_mQ|{A?IZcmd8P4GaUzq?vhCZJ<0Owiod@5v!I@XGbNr zT6s4Fel)!U`mnJYS6~2wpqgP)SqD;{2s6|f_s}SVq4q}+O%4uN7igXzu&?Z69U-a< z>Iz=rD&Tyj@l!&Xd7h&ipwV{$5c2ymi8mma#l-flC>BW`3RG#;5n=oRg(i{4K-j)u zmNcE2P>vE0f}?aEw7OvkL1_biq5sY(d}z1EHP1c9pAgoIU@A@$*&%Oo(Z-FKV>p+~ zh6IZgfQLd9R}=pSO8#=%>sPOy0al~Jd!vFvENDm($OBMMB^roGvhi5_H3D0yfI4c~3hqKSz3Eo5z|(!ZY6cKa#CI9hb?=!y|t61+Ebf*k?vD`Wgxx zMHg@v5FgE?#8C;2Ljd0b$(9Yk4aq-4UR7YeNa};&(x9;(R3M?>Kq^Z?5kmz6$#OAH zG74uxKwnmkqcg%%P#2&Vqfv6uvOdELP>+C9B1U&f|1jZ0*dvfSB!jr~00`xXxd($l zlQwyHb||0thZu996L1N`2ZBEmohT_4Rvs7vI}ZPfk_t*z03##|Ap0lXYD!9zmWMi% zJSs>%Rz;ISK`3x1F{oQ)z$`k>n7tRFEDDis3La+2TKx!vq+g z;^C}uv|<~*lx6s_`yuAV0IL-wiUANdRs0COY{wXQH8eCB7_%}hnI33JweSguC#L)= zob@KTCld4j0tN(Bj#RT`yP?=9;KwnLNWpt0hAs3gJT;llEf>&h+}h~E4j3YBtXbFA za#e=+q!%SIz`KqB*{kqpo`+tz75E&&6MV+T!SgR69)L{nKtp|MoHxPTO->aQ|CD77 z&nv8Q+g*&u}n0D5&;YwaUv0IU|+l<)V|@pG)Z^jrS?vUU_85;Y5I56O^-N z!1#nxZ^A=H(T2Z&pbMOi{aMw(;F@XFa33P14H{DsXGeV4?;qHO z39|2~^gnlQx?ZAz7DA^^G@*6o1{uKB1a^*i4pbiJJfiO0xkC|L{>R{lCp1vi6S!vy z(CJm*vUV+-g-u2OtCwN@1^gLN86+@y9;u_w>o|mtjbH3{!ugaV41~ zMfy>!o=LhYZXrK1AU@gP0!sl_)}HVH9Ht7f$?Qhs&#qF5McCabp6ZcJ)ttNdGgq3S z26%_1ASAeCqjnX3D{nC1=cGhJ3fmKkusL)H3)KKMZKSk*N5K;Ckhru3wS^Jkc-QQ_ zJZ{wdx+W8_2;K!lfbmZW9`7+7i@;ut(Tz+#g!D?xElTE}H!u0o7{DkYRBx*s@8GtW z{R34K-oJN)(f8G9f1_%WyPqP8>>R)vaykLZC&mFa=iQ?LUHC}gVPeNt8_$3=8DmPS ziX@fXf36@F%q>4{wQg@vGCqzu`TYL zKw7Y+u`vMmg`hwvuC9Jm<4(-TjT@5Qso%PJ7%0*M&_z-F64@HbFcBQQJ$(G+v128u zGcMn@_?0CIxDgVw+a-^|h0q)`+^VEwW-%i}d@+rM5x;Q3pyf5&FT&5jq}Ddv_X^nZ zl6u4#*l1`HLdUbyXetcjfceU-b7Qv62oK&}6?i|&iP>SjZg%`4eWtSXtEG!BYY}ur z_;Mr;yf%22FYSoqvhnwRCK4YXPqU4Y)sOX~lQ>=pIWPdjdo>KK`e_WDThj9SlzfWn zCCL%t&YS?y)0*GgU)$v}2bcl49^k7FYL50`P8OP}@NT%=4W{46&JDD7FK|hPn_Y&MUnJ(|-VE52 zYhq~TH0fB*Jz|>dwzKoGa3a>KIHHR1#2T*9|4;DbvlCo?;$m55vpDY#jP8px_sFy^ z58+aCdl6NWgmfxnbQX>)6?STBYo9XGi-*g!re;SAH%8G*o{AVN-#|$sz`}nYx3TOL zBndB2II7hMZigIfz?DRXfD+Ko@lb4cn5Y~{@vFivrUpes82P6a;54X7GdAp9pz_Oe zO}C+?!d8BqXGy#-al@tUA59+5@2q}e)WutH$;ZX<<(pl5l51p*S;rqqC;eRI{0CNh zXez#DUJy>tU?L!a5OFFn5Pzux)MxeSLao)^xbezz<#zE)A)cWP{WO5y|2#L zauEjF|82G029Xa)CW>Uhayo!Hk^`H=J)_xL(Ywq?%RA3l^6+aQZsLc}-&(kjKXLhv)F+jb~MVa(Dy-GZ4vl<-NTJiok+p9$?N zU?Lfm(U9#dLYx^6+YYHutGa;;QNANUQ}9vxBvK{K3+k3nHqBn6j)Z_t{(kLEGz9oQ zQjC%G0AT_&;UTd4Ls&5Jq@&d7DyY;VTs1 zl!=dem@VkQNgRj%^bz4ffufdX&f~66g%6pOhYadf!Y!|Mtr%@i&&VLp9b^Pt7?T$_ z^sBt#Bd#!Ih~l0Gf?NmKyBG@tFxg>XQ%IzEXi$VcA_S-UezLeA@iCU9w8+Mi;9u;YQxe0h*sq>J_{? zB%m7@Yei^213GrPOr$Eru1{SJR}=m|2fwuu)8mL-0y;(yF}9Y0&?Jk4Fkd0GkMfv7 zQovYIiuF%{;gX~8A&4e55qh$xh)9H>U$|WeL&m$};GW9r+ zOH%Mq8a(Q@7iYu${aMrEuH=NT()-wb3*nZi{H=kRarurA9*A{9B1-(COs8kEVw1L+8jZIc1L9xT%y!}0EEMB^M!?CG_W@2HGkw6yF=&l^gpBzA5lE{QERKaM7y_x-__uS4^E}~c`F?M zV%PB3`6)j~u4*l%drjFkMTb+rUH<~n*(x4p%t${H$B|#sZ$9wzEvtL2yQ^zEWTB`R zC_o-Vn{l8({KKH}9?rM7x-P-fj~;#2z1Ua`(VPKkDp5FSO*PzQjiE*kn5``&#UcGkA8x4Z9e)7#kA z&iDD(M zweLD&`gAY%ebF;no>_)%yN=AUofI|u1H|d= zWG)O6vzcvG9#_`r6!3+a#nM~6&}Me+DS6za+TAJBSo`Gl?DJ;alYi#hl=$o86#7j1 z-M+&OU(Po=`F#m<`NlSBf#2;i#qUnDJI(ya`DWe{$=^V{eSsSE)VhoBelGQ}XIW6Q z$k-VYC!fJv{;+X%Z<%?oLGX>`JCH)-wgGdZV~M*>G^!{y~OyH}RBJu6WLoI>Gs2Bb#FA z)Pw#$mp4^^nDIqMUfRt8$M51cBl+3N8vhLt}0BS9oUj>%||P^scmaoSv6X0DhqHk8KN z9G{h(+Ucs~h1$~~w)vZiM{h~8e_e^9)wU>^Z(Y1k2H8*W`uvP9F3>8@*%o%fFh#_S zp?@;}LuT+BR_`1~hMjbOdg0~arsq6;mP1|R$k18L9QZtyW!b=fsA!s|7u%D5ubj z*YF8nSM8wKTCI_O+w(_RXw_qVHpd0UB@4f7;yaq!`mi(3lQokea)WVa;hKH%yUs|v z3rc+7#^OjHA3G9bcRXfPBz@xf78Q@#F^RnIG6gP%o=&dmNz-6lR%S#6t9YemhgB)~ z3>{QSOE+28&-Tdn$*^1H?&6xlfr;zAS!UcP9=9@4cyQFL}x&_Gg!h7c+;d8h+sF_S$afDD4ZC z74&&~b9Q9MwH#jO585u@9JWTylUB^-J2E;;WZd;@)Mrh1mWbJV5>dVkrgw#R03#45z@A^XFlh6X`M))JiiZ~a*578i8;hyb?7h{tRgGg~o}uE^(bg*)2eYD> z_7#t1m#rz|H&@L{7YQ;n)UVi+wN}QCJ0^DKK}Dh0%g_$LakyLW{FiQgWkB0dXOXFh zl;rH!uh`@68tr|M$#SdzyxUsF<5=>EFXhF1*k;Y^U;OBbc*J~;`^&F6_15m=@fguA zOMmP*8eFy0R%gXdwOQ3~guI{33$8M7Oj~^821_US!Asw)@g0$7n}QGcB0Q#Ofg=rWqOUh!W3sI#O=)_)2-7 z`SqE%W=wO6p8Yz({&2)p<`o}{t34}YzuhYS{XV4XcumjfIs_eZQ-9(2;iib^Ei`*UfWzR~FmN z(q3vYc>cJH?$-l>QmiR<(lzU5d-qy0J}54ly5CIRW&V+pf|}45_PJYZu6-;tF|y5x z7&aU3JXtzp$Y+hO&qFQ6*sf~B`P>Wk*{=T89rI6bydjg_)RjL__~TOGl-mNk-AVnucl&)Qj*86#}B6mZC<0aaCl|4-Sy$&Z$m7v z2*ZJJ4~=%)aL2R<8qsrx?%Ex!rfJS1x+tq*@Jf%J&K06Bslm#Vk7ZkXd=c{~sHlyD< zV^()^TEzpVh#*^Qv1;jhg^a>Y$&tYBiSH2LWY$LaUEq|H8TW4*nFP*Ffz1S?o zCX%x!qWgWAq1oPgdt9EE&$OT+I2=w zyODd?F~jX)#LQV0XSmBN!xlK%uCdU%F1p<7xj=}olD@+O%faZf-VhiUKJv;ernNn()jQKsoZQ@7sHafjmU3}ZIwq}m>isRq-^5-R( zZxNi?+TQE4p*KX{sk%ns(EdlR(^gBwbp*Ve0b%N4OsKuKu1T zDc_y2yTwjr)R#4FKK}9Ef4jx&Iq!Z7NiemyYKv=3%$Av1T`jpFe#g%M{?D$dy;4w+ zCWbdSJXhbl`BrB*zFUyR$8Pz9e)Ok=ssDMM{$J2lRky}E>c1QWGKcBU>5dQQr`Im}fQkdQU^rNu|&`iy5b2D!)a_{kMekUa9d6E+y0OGP#cjRwc~7y8sIRbZU){V(&3tjzBawBJmaFS6cP1q-3l@E{eZlHJ zZ7~IrFGqJA#g`b-i}%e|_b^(t!F*>)fWvmT8~aQeUe2mpmHce;aQ4|v?3+zX8nxmJ y^B_jKKiDPlr&<<}n>}_rg09zpNAi1clI>&5)JXXiA<7K=XS>F3^;A_WzyAS8TG!nG literal 0 HcmV?d00001 diff --git a/user_manual/groupware/mail.rst b/user_manual/groupware/mail.rst index 277c01173..0db015091 100644 --- a/user_manual/groupware/mail.rst +++ b/user_manual/groupware/mail.rst @@ -391,12 +391,12 @@ How to Delete a Filter 4. Hover over the filter you wish to delete, then click the trash icon. -Tests -^^^^^ +Conditions +^^^^^^^^^^ -Tests are applied to incoming emails on your mail server, targeting fields such as subject (the email\'s subject line), from (the sender), and to (the recipient). You can use the following operators to define conditions for these fields: +Conditions are applied to incoming emails on your mail server, targeting fields such as Subject, Sender, and Recipient. You can use the following operators to define conditions for these fields: -- **is**: An exact match. The field must be identical to the provided value. +- **is exactly**: An exact match. The field must be identical to the provided value. - **contains**: A substring match. The field matches if the provided value is contained within it. For example, "report" would match "port". - **matches**: A pattern match using wildcards. The "*" symbol represents any number of characters (including none), while "?" represents exactly one character. For example, "*report*" would match "Business report 2024". @@ -409,6 +409,17 @@ Actions are triggered when the specified tests are true. The following actions a - **addflag**: Adds a flag to the message. - **stop**: Halts the execution of the filter script. No further filters with will be processed after this action. +Create a filter from a message +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +.. versionadded:: 5.2 + +To create a filter from a given message, open the message and then open the menu by clicking on the three dots. Next, click on "More actions" followed by "Create mail filter." + +In the dialog, please select the conditions to match incoming messages and continue by clicking on "Create mail filter." + +.. figure:: images/mail_create_filter_from_message.png + Follow-up reminders ------------------- From 8bc14fab930499c941ad070f95fb610af79ad630 Mon Sep 17 00:00:00 2001 From: nextcloud-command Date: Fri, 13 Jun 2025 10:52:22 +0000 Subject: [PATCH 0086/1895] chore(l10n): Updates catalog templates (POT files fetched automatically by transifex) Signed-off-by: GitHub --- .../locale/source/.doctrees/contents.doctree | Bin 3690 -> 3690 bytes .../.doctrees/desktop/autoupdate.doctree | Bin 20370 -> 20370 bytes .../.doctrees/desktop/conflicts.doctree | Bin 11359 -> 11359 bytes .../source/.doctrees/desktop/faq.doctree | Bin 25394 -> 25394 bytes .../source/.doctrees/desktop/index.doctree | Bin 6809 -> 6809 bytes .../.doctrees/desktop/installation.doctree | Bin 42202 -> 42202 bytes .../source/.doctrees/desktop/macosvfs.doctree | Bin 21881 -> 21881 bytes .../.doctrees/desktop/updatechannel.doctree | Bin 10066 -> 10066 bytes .../source/.doctrees/desktop/usage.doctree | Bin 47333 -> 47333 bytes .../source/.doctrees/environment.pickle | Bin 192579 -> 193176 bytes .../external_storage/external_storage.doctree | Bin 4665 -> 4665 bytes .../.doctrees/external_storage/index.doctree | Bin 3051 -> 3051 bytes .../.doctrees/files/access_webdav.doctree | Bin 117974 -> 117974 bytes .../.doctrees/files/access_webgui.doctree | Bin 30751 -> 30751 bytes .../files/deleted_file_management.doctree | Bin 13478 -> 13478 bytes .../files/desktop_mobile_sync.doctree | Bin 7663 -> 7663 bytes .../.doctrees/files/encrypting_files.doctree | Bin 26909 -> 26909 bytes .../files/federated_cloud_sharing.doctree | Bin 11785 -> 11785 bytes .../source/.doctrees/files/file_drop.doctree | Bin 7301 -> 7301 bytes .../source/.doctrees/files/index.doctree | Bin 3384 -> 3384 bytes .../.doctrees/files/large_file_upload.doctree | Bin 6145 -> 6145 bytes .../source/.doctrees/files/projects.doctree | Bin 9373 -> 9373 bytes .../source/.doctrees/files/quota.doctree | Bin 8753 -> 8753 bytes .../source/.doctrees/files/sharing.doctree | Bin 25189 -> 25189 bytes .../files/transfer_ownership.doctree | Bin 11209 -> 11209 bytes .../.doctrees/files/version_control.doctree | Bin 9985 -> 9985 bytes .../.doctrees/groupware/absence.doctree | Bin 6559 -> 6559 bytes .../.doctrees/groupware/calendar.doctree | Bin 95192 -> 95192 bytes .../.doctrees/groupware/contacts.doctree | Bin 35151 -> 35151 bytes .../source/.doctrees/groupware/index.doctree | Bin 5467 -> 5467 bytes .../source/.doctrees/groupware/mail.doctree | Bin 90156 -> 92022 bytes .../.doctrees/groupware/sync_android.doctree | Bin 26331 -> 26331 bytes .../.doctrees/groupware/sync_gnome.doctree | Bin 10363 -> 10363 bytes .../.doctrees/groupware/sync_ios.doctree | Bin 17117 -> 17117 bytes .../.doctrees/groupware/sync_kde.doctree | Bin 19160 -> 19160 bytes .../.doctrees/groupware/sync_osx.doctree | Bin 14298 -> 14298 bytes .../groupware/sync_thunderbird.doctree | Bin 17418 -> 17418 bytes .../groupware/sync_windows10.doctree | Bin 20814 -> 20814 bytes .../locale/source/.doctrees/index.doctree | Bin 5871 -> 5871 bytes .../.doctrees/session_management.doctree | Bin 10148 -> 10148 bytes .../.doctrees/talk/advanced_features.doctree | Bin 40127 -> 40127 bytes .../source/.doctrees/talk/index.doctree | Bin 4325 -> 4325 bytes .../talk/join_a_call_or_chat_as_guest.doctree | Bin 12695 -> 12695 bytes .../source/.doctrees/talk/talk_basics.doctree | Bin 40208 -> 40208 bytes .../source/.doctrees/universal_access.doctree | Bin 23626 -> 23626 bytes .../locale/source/.doctrees/user_2fa.doctree | Bin 19655 -> 19655 bytes .../source/.doctrees/userpreferences.doctree | Bin 21376 -> 21376 bytes .../source/.doctrees/webinterface.doctree | Bin 23535 -> 23535 bytes user_manual/locale/source/groupware/mail.pot | 68 ++++++++++-------- 49 files changed, 40 insertions(+), 28 deletions(-) diff --git a/user_manual/locale/source/.doctrees/contents.doctree b/user_manual/locale/source/.doctrees/contents.doctree index 87d64862083f32c5312e3eeb1310dd320710bec7..68a2764dd168fbf88aa8ae91305ffe2d9d99f246 100644 GIT binary patch delta 83 zcmWN{+X;Xm6aY|+zM8>6Xn}jh`HL2gQ%u$V#m j0ea)A82K9e^0+{3$^_Um$iLL2bP=o;D`OKL$9irbCpZ^r delta 83 zcmV~$;R%2s5C%|+el>%E&;n}SsS`AZdf&|#xKlseA?Uqnrg^@_N*AgvsR9zkr6wF| j0cTCMkoIw`?_$wH%3dz0N6b_Tff)>d9Cf&HZukBJsOlOB diff --git a/user_manual/locale/source/.doctrees/desktop/autoupdate.doctree b/user_manual/locale/source/.doctrees/desktop/autoupdate.doctree index ff83d2e94629daf28fd21ebf30692526e8b3f7da..aba80fc1a5634ad1e0bcb21be2f9beb4a8862bb0 100644 GIT binary patch delta 1420 zcmX|BF{oWd5as?)G#L4!1V04fZz2(66lQm4W@kkSf*{x##6q-~o!xE4MyzeDZ1TiT zf~FIM$ksMmh=ruEi-mJ3+&<0#E*7eR|JqU?pHXAyOGe&GeEu-3~ zHmzu(-Pezw?0!A>ap*k>bx^D_amJ`sw8bVY8uK7r??3juH%(L9$Y3*0#Mx>p15(jR zsh23`eU*M#S2o*RgJ#zj+XfBN?RP51`l4CY5reT+^IG%lhGo zYX>2M&e2*V?~1vV22P?f*Opr@BD+UV{(Tu+8_l|4hlahf0wr(FPC3t*=9jx~E{5Gb zKEI=*-$Lgi&Aiu)fH9d;Hox8q?V0Zn z0ti6{*iVzu#SvlNQykqan(2CY@pKERM0Po~w3N}n$Ch!l)Vj2U3Hq($UxL$y>aE_L0#^3q{&BhEN{;E+2ebppM`kz7HsuGw~v zuKp4BTzb(s6DuaSVw!pIfXZN6nbtoqe6^jV=(DeJ%;|kJHh@@()J;}$LR#Ow_<{Ss zdU5Ekkh`o55$&0B_FxT`D!dEu^16BboR4-$aT5(HSTN<;xT{vv#{MP3e<$y}^5H=k z;#x^et@VgZL!*x5IU%avTIUMztRK zc#y@Uxh9;uXC<)@es_$2hC0~Fh(#<7#M)}O3 z!r`ftxV(;Dz3+4}*NU@ynmwVeiN|(;#oc^x_ec z+b+$slMi3N>U2smQH*;dVHT^?lZybvE_s#of38=*@x>Mx8;%l{_ftr|K;0|qL#@8r lbWUDRzwzE-D2>!tpliV5K%?iI+@CWOQ)7hn`I{Fm{0s4|mKgv5 delta 1418 zcmX|BJIEbH6lQOT1|tzA7zo1MKN2y#FNwT%{HAt~%)Az~3oDVQRa-~S7;7w+!NnKSdf=H{*C=B?$J*f*Y4K=gkX0uLD9gNsv7?}q|8I9A4HSXthD{}!k5cFkBA2{6MSW4*5MEmAO(36wr^j2f47fv zET6z0Q3RS4h83NaDu#j{_Tk!g!kk z>b;A`ks?4GZRcLOhsr$vQ=kKdcr7xKJ}QV4v6-L1l~+GrR_$t@oja})$b}C;1px!F z(_lHNeE8bs<*3h)l>w9#k&4L*yh#zq%(?Yo|EGHM>z^ZJD9Ht}9yD=*;kwIp9)p@A lv2fX*e*N83tMUNXeddf?r$xvH$&wT-oeJu=&)ztD_Ftm5l)L}{ diff --git a/user_manual/locale/source/.doctrees/desktop/conflicts.doctree b/user_manual/locale/source/.doctrees/desktop/conflicts.doctree index 715260b6021f87983da5caa92bb498321c85d30c..bd2bd149098fe07a7063794107420577be0e87ed 100644 GIT binary patch delta 590 zcmXAnF^bhe42OAdT|p5M1dA1xd7fZ0lT0R!H?UmTPLi2qJ39-#fm*(8J%Eh}|4RrW z9$~@8)=Dg$#r{X~`@ZDn^5*i(yWJs>2SjZJc%pF8JYh~_uVk~>ygq(DJ3oHic?t&= zVw6IJC_@KI6%U<+9JOyR_ODM;ZW$Z3Jl!*vO5LHj0!~#2n&bHM^jnHbb#yE=ildFH znWOc}+C89I-M-&_dy)o7nFOI>hA_Ev4_7O_HZ9o4c6I;PE}?4Bin#`0G0>L53Dpo8 z419a_;9_^^k%P#3F042tcLJ+<&M2j8cw8S3DQ$Ni{@xwNVggoB<$+{k+yOId4GC1h@&o_t)i zlRSEEsAWxHw_n%{1}S*JuJ52i$*ID|A?S$^yQS~>T5b@%7CJ82Xwg+(2g84p(VL^N9T zA~9dyd%hi{W3_~l13Nkm!7yH%$s=VOy->eX=7)QNPAo!moS$twqxBNz$$Ma_Rk`am@FRZ%+0xGAxbB z8YKHywe@P?eNk?$&36~yx20lmEVe!_>s85$qNNcW!MTn)U+*tg`l!iWl?QZ8HFJ!* QSb8uo9+>B!Cs%j=0>1{U?*IS* diff --git a/user_manual/locale/source/.doctrees/desktop/faq.doctree b/user_manual/locale/source/.doctrees/desktop/faq.doctree index b8149526e3962f76d1f5d6d8318ef2b4ed5a3458..757a527d080622dc946b78b15c55c3267f3fc48a 100644 GIT binary patch delta 1440 zcmW-hy{leD5QjPUVnkw;fTAhP-7APeqU`L<&hCm5)JRAmpb)U0ncWo&>!4*?D}951 zfQVfnW{F@Sb}6)qjfJF8u&@*qB$e}~J0E-Y%sjtm_RhWS&b{sS_3gM2w48DT$U4(zQ0W*W=_5sGLZNn158>!T-ZJI**KP>HRX(QKm*BA%eq zZPX}qbNBZ;xU7)B*isxYvv`zL?g0_w2g)x{x`*s9LhG7pRt zClQq0?NbkeH)f5LVX8ljRHgdzQAIi?nX+y@_4J9O(a}ssoViost^;!Cf|amj;JN$l znO_4~nv=80Y>lSCe$j+dTGm-}8S9s4U)@5NS)~YLbzqL6X`?*La3qeX)phjT;TER( zr`%17BIVIqi(Y`TaN+5HSZ_c7@)mM;_;~<%BE$@h=V*{DW~hC3-fb7oue)bHISiFr z9GYu%yfnaf&`~*i9vD+<_Gsm&FFZI1C=x4{2Bw3UibfdTYOknhjqAD|9&UjUeNh>1 zj#6f?GjmD_6r!4DS)adn@kD5|w_Kzp|Bk>D2me1nETc^Y!u9XDKeu3Yk|*tPb0*E! zYUd%I&%_+PiuLf7mkyoVFo%yh0T6kZHryW&*VpBoye_=<*LDO1X0>QVFFv7CQr{;R z$Cr`Qx)i_n;$zOn04!C=5gCo%H~XQnfI|+$1(iwK`nuf^%&b?r*{0&BXh3u~8JRP26jb zGC{VU+fJ^WUuWNX^6-dgVs{rPC#qHjWbe6oA-Saz*X4^>w~&&sO$683qqkZ86c`Sq zj+t{3d$ipj?+$kyJG7W)M>cYzBA$}9q!Ut#W2_G^ec`KIK#yhA>@t;z()~h}Q`U}x zahckF(I|j>e^kQ+ox8K4mlS0UxjbuKjdyoz F{2!8dn)?6% delta 1438 zcmW-hy{lbS5XCv~VMJn-fTAhP+fNXKB(nF+>@QIsY9u5OPzYGh{ur^a4qB$QGB@}K zh}Z>UHW4huE`?UHv5*uB7M6m7q;kD97cTeQIkVRKt+{)DyL*4TbA3D1Y013RIn+xG zu~@LcoU@G-n}u7u_YcqRzT0jeB;Q8moW>|gyr&Y`a*C`W6p3}+*!ySC&0c(tRk9Z^ zHmnUx>~mF~osHW1@`<(YhV>XJ8Tk}s%v3Nb&>TTB`y#wPeyVSW6l10?Hfty0S*s-( zT2f1M&Ya}d?(cWq?$pVz9kU;e2jOijy+$1&=Q6T%Z!v0K4^IBLxmG!JJepfAQgv1= zP-=hyRUy0W?woq)2$QJhQmj;|v#O@xxvJ^x_`%lgXP!NAfR~9caEgM&QCo^5<-!<6 z)?3>B_S~<|v<6X9iAg2(P-gZeMM$)wndAE9`3sv%zE>=iJuDF8Qu_3H!YcN0W*O_? zg?+5vh>fwpj7>POB8(zFr4TG*!}ZRKuWpVdmgr}KaV*tlD>3*!BsPr`vv=Fk`E~Ei zr~5ACIXYEl?OtZEMkX1dC>ag>@$r+Nz4UO;)zNG9g)70dB&qgJ@YJG2pJH$8x_h)a z>!}UNTB@n2@2%FUftn%s5U8#%UcPw3P3_=93*>-S?_*w#TG?D~^4FrKU_>VOMt?lRmB8oBgfl5Q5 z_?Su|e|#ERfvxa%r&rFevu{7Wf6#13Zn2_zf>Ko_8KX&ygVP9MUA}k~9iU(xu(TQi zDvPsIX3b-a>?fh{kH`J--rSt;A*o76`L8okDC-B zsIskZuAY9<3EI&^56$D~F!f5HK93Y)Vw5kSPlxNjYd`HBRB2pl9Nj!t(}oi|P*L)| NH+a5&|L}v8{{!8enKl3b diff --git a/user_manual/locale/source/.doctrees/desktop/index.doctree b/user_manual/locale/source/.doctrees/desktop/index.doctree index 578f2811e6629d7b8b0072c916a0f079cf050430..cdad9c31fe8eb36a664155c9866ce18afcf9b487 100644 GIT binary patch delta 398 zcmZ9IF-{~w3`JF1u|hB!X|*{T^#v$*+2tz40Z2h2Be7j}vN1Uqm|!&|oPu5TIS4oc zHy|XWGb9f1-+%u<(G&gqn|8yyW@$bE0KMlPPAD~ktl~_x{7=_uSNg!YJGLT%!$XN# zvr*4r+BlZ!$7`Ahf?J(4gcWQw1j|?<3}!{Gz~lYl?bq+a`F3;IZ;zMDqpLKzj8<7g zI~itBWzaS_W)&KN`CI1Y=R-Oxf@0(j&IlZxdSR#TCDtlf{v1E2T`w|pbs3H`T6OVx zxQc15l^Eb~aq_Wi;zA+@%^EVdX0vzVK&q(gnC0g5HcjHCP%BXiI-+XJ-hBjEHXoJR iH^ukOU7Di9dQBe4;wyQGf`ynVqbr(!WtRPRv-t$)L3Ppq delta 398 zcmZ9HF-iqN5JVY7`RMXN%w^dN*fZ1J+btfzRKd(-re`KGHunNQkTvSE%Q_u=x+z$jAqoT(!ntIfk*o+SWXqDm%j5EOdbV6_hh?|jtXGHEZemZNGg>kT zLMU3Bucn|y44cqD&&Sb|JI`JBu|~ySCbZ}@4Bkr)*&0w|OyEh^+mkytRVg#6$Kqo`4xl-3f153JjH3Rl g_&waaNqRD%NzV$XoCK0*>eB>OK={wI?zY453!n6I)&Kwi diff --git a/user_manual/locale/source/.doctrees/desktop/installation.doctree b/user_manual/locale/source/.doctrees/desktop/installation.doctree index 4ef3e46e99dfbe6c1ee00463513a63136f9f125b..eec70f41378fc77e3461ed87a53f38e177fc4f7b 100644 GIT binary patch delta 3018 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 XtbwS2v4N(?F4!wrh;X&F zH&IZo3ffv}r-iM*1nk7ZKpOQtjnCq7dEB|PGv~LL&rO%lO&_0|W|JWleF?)FSM@p? zC$SPF<~ZC~znP9sGfNIB6dolg5AMo@ca0(iOVnw-ac{rsh!p7(Vj$l$yPiuoXEF4| zgK``3-Q{^XynJ%a*;yq@tVM7%`VGP#S7Ym1aDr2}oVxbcxfP+J)H^2PM80UZ=u$MU z#go(Jr=#<7=DK~$>-#>NxhCIAcFu8QKZ2y#QZFI6;GBhYrTEji#bT}07S%EKX{A(( zrE;ZitZKWiuU!A_Mr>qs0Y+RnXDTUp?3b!TRP6?@zOsQ6g?FIxJOE zk>FC#HE{N+hOz7X>i#bN$bQ8f2Icjb(txE}T-6 zYTfHUt&goIZo6ZeBPCykM9-)wprBh2FQY4vDK4*PZ~uLoeJ#|6!^aR`&0brQO2hY% zTqVovTZiJ_8QgTIspUa|qY{u6mn@FzV#Rjr51XI&&N*@>=c!dvhz64CfF5cPEeTRx ze>(c-p4n3x5<-j?9FIU&OCq8Qdj!J5>tA=DnKnTQvv_L?%^9?x1Ez-vgMlJi-@Z5R znG+5h+aZ*B3$H}0uFxpplB?Nz@xFrqqSrV;n1N;{D3No>00q>iI&xTVJ@(afc+0+~ zqQw|KF$!U1sa}eDk+@!dU@tnAP}v7*J#9zNmP-sdWe?&qAYKnWh|ybzn_(tcg&|Q( zEk#UCNP`i9=y~_tG-I8ZSp|(U13^`vdm0J6M_lA0EA5!PAn)U$hL!<4Q|&pi&ThIN!`ZVktG zSKL@WKYnTB2ZPWwuo`oYQhYC4$hk@Cp)Wrk{nz||JoL^qmux8@{IX*Ys6uIo(w@vi zrDMR)pC7+#`TE3nGg1+dQ$-^@8WmGSipB&5RB60h=fcBiTLn=@b->b%vl-R_WJc(o zokq93`^crusF-M|K%yWV^{_|iJk70Dfy!${dhoxBS96v9qzeh zMtT!ujWx4GRn6cSHv;Q&df)xag(ue83Bt6C)y$OxZiB8cVMJ`=E@-yPmF34LFV3ke z&he;gAT}u^zs=7E1EjX?dgVe`_n$(vDEcB_rR46gFs=;{(zN8-a`8Fts$YBRn(O`s D`iKrI delta 1811 zcmYL~J&0XJ6vug4C2rIhP2)$*-msz)BhHyQGjj$dqQnnk6G0F}ku!5uvf4M z!i}xHiGp%f(AG*jEo@CR0XwlUkVgGKad*4-F7xJ|^ZS3i8y8nMF0MYmxSEQM(p!)m zBQdpDx^*Tg%D#@^;_}04do`Iz?41f1*El&X&eUQEL&ivz-E#Xzzv-A(EhTGF&z`fh zQapzdxJn+LbX=HUm80_)`_D}jQ&wRrG$K2VwFR>E+pE;*oXw|i`F+ZznrO>;4B_sSHg+k9nvn$I5CoZsF2YVyPNm>iAd8>==6Eq51~ToZlv+u> zWgY`-NXZt=v5VyV-mGsQ{AQ{nw-m5iAh4q-IG-SZMjyc~?_52fz2nkWX4hOE-9H`J9@dp1Xx8>Zuf3Bt=U5nMME#i5k zf|K2yj=5eh{>7_DzS5w23&8k7o(PjDP!LzF^vdUS>Ggs~vZ{pt4kX%Bf zF!FN#;k*ylux_C%F*hb(OYTOLDSDuRIhSk453fOxM%Q48j2F6rJ@C8I;S2y~Tkbyb z-Rh{Mb;d|#u*YbIWK|2CLa{Pzx$)=*VC9@7A*d-blDv*=T7(kPjBadP9fgA** zY9Jbu2=#&)vty3Aaak_8R}gzvs=kGkYG+Mc13I8qO~BPV%lzrHTgxf`+iL1LwJ{ty z43AVHI6dQQ84;Q4o_76lmS0{W0PDtakkWvJ8*Er4TgyTQ8}4Q6PS#ru9xBz zr(>0#LhGtfF_u<$@BS>GSxuzeeW@6)d#2h|pnh0;2iftSmix;&h@#QpQ0xSJ1N3Bo z5Sjs!^r3$K`tj>W0SjFxnhNY#wZlazXGGgWZ=26-KC=Av#D^f>U4&XT5-P&PY4SB@ zYF2!P7aA^mVE+E(PdLcc41Kn4G=kw--9X_L1QdGhrReIDxYk!N7lI4pKvMVkn9LHUwv+wf;Ie^fL2D)qFHP7XuB9kh@+0WSB96LzXl|s zAzMak3}Y0nKAFOc26Lvqdw4l`8s(x+%YfQ%AstRL^(Y-WSVy_XI|fd&lC*)=&yVTvqc{j~RCnmL$_>W3Am zB3CrXmPtFISWU~t_IQ1D_i&ni{BsIaVRzstfT7}$eaVQ{632nXDzV!l26WArpy%UcjiE~N@ z1BdMT@R2XpgU6?C4(M3OHwZ}3oPi{-s5poidxrJ=$+yi+>}FV;I09K_?Sa842{AHb z_IdMief(g3^R#ScNTu7Z5a&-J*U|~%5RaQ3KeSu*pJykV8O_p2twZWe%&j0`(i(73 oPt1C&es}b8bCN*)N5z5eOyaQ6Ii*~)GYlA)n@6YX_3``tzfw2KEC2ui delta 716 zcmX|;F>01U5Qh1FA(&`lP!J)6tY9jencdl)ok|1?tAICfcXqZ99>7LV@K;tIK#<_q z=rwWxL(U-f&JU7qif4v-pZEIW`r_)#5|mRfV~BDclnb=X1(@3C%5w;pBQHAw zu-^;Yo70Eu+ox?4*t_;}RbwQYD&h-R)JAMoQ_FYs-)Cn|?<%fEriUfgD$q)8Ju(@v lTDqg(pS;=xHI&wiNP$jKq&8|bCl}|oI`6cG_2%@${yz)L$!Y)q diff --git a/user_manual/locale/source/.doctrees/desktop/usage.doctree b/user_manual/locale/source/.doctrees/desktop/usage.doctree index 278c62db78c237a39e0d614bac335ecaecc8ce94..3ca0571b6e6a65a221f1be3be2dc559db24e3772 100644 GIT binary patch delta 3438 zcmYk9Tc~Aq9mm;c8XZS1hinFKv)3q7Iw}6|m$V+t@`gxhNJZH1e=DXeC?qQ(h$1P{ zhiy(lg<=*nBnnHE3PLIMBw<)ON91Wd%VP9&K&kx>;L~N=b)IkwWO?elZ1r&m)nHu6buqi5%wlIWB!y(yJAK&AP_ zuIpBl;w&jnnu*DkT8e2(v{t^f7|oD*-|pLXrp6WBjp0KMPDV;9s}^$@PI?R@ZC*HV zaDL?U{i}&GyhIg8G}V<7aw|~@Kg8g42yU})_hs|W8E34fErBShpL@N z>+lb3^tA^!2ljt)8a*sSshksB*RjMdO4;ftwVNF06Z;Q9hegryc`r>pRF%}wp*!VLY{^Kbg%3_T)u>7zIgjSFq@qR>aGP{!EywZt!SlY0E?BKq=mT_tgj$>_0vwc< z*!^HSDQ#Xpyghlo`{0LHlWr}T0fw`#F6LTvG|mT03(&6T1sa<@)3a07CIw>#Bn_?x zpFxyXy5%g5FWIi~;zOr#q=v)RaN1B*Te62}$`oU|%R|h3{l!V5aAHgd)j8I1^vHa{JO4nX5C3# zOCNx~F8c;6y@8fJBL*YdmPRopSMz_X-E-v6Q!*gRrJx3SHF^|fNA4geG_bfO<|!Op z`tILNt}VOlCa7MWRUm*2gbio_61qrnDhY!usSL+dJ#7+Ds6 zPV>ntez}@P>OH#3hbU)285u63iH;?W>IQmybjlK=O43_out<^EU^!d@+s;0{39MhK z$5v}dnRx*4VcMnyn*pIX7C%gXEin7G;|(b90HXL*?aLp$AAc%H(R_vej8MR(AO{lZ>mT7Qv@PrxtBM|Lgpz8_!;?i|egJvRJUCE?T6bgv_5hjL5vX>FS-S$EqBv z+Mzt{;#oOSJf7UUt-a4L-TWh3t#nlrh7gBK!%%>jf}R90KZ?vhzvUR-YHAmeXp8m^ zvt&T6S7ujqMsfUHKXl(}&HI^4aUU$w+6>wadg%bCbKcG8+ zMcPJWI8)Cz+;+`s%}c&niuKuLZX+TjE7^Jj(EsN-IAKm|L7N17lqOk`0+z6YquPls_r>^4-w|$ zAA8%PI>Ywf3LPy?m24Wqm^|`c5ez>+|M6FLCKPE@1`c8s!G|mZ<2=EH$`qjAdiJ?@ z+{_NWg3(xMRIbLF;V$BVl_?mtjKab*1vHjb=g00m zi;l5Eg)uV-QqXX@8{}Lpyn$4v%zyvfC8tfD8K6vy6B8pGYV5Vg-9pNUbPV%_cRjQ- zVfG1__d?*HG!zh3X{{0x7C4n{6aV=Vx0Y(q>y$}SfFLw6sqmJEZDc`@#qPdrbIX^X znNVg^8wyHujuwjx#0k+0q@Y=S&1C+z?n^|lT~j!b)X=6+)(X)EWp^0?JTl+;Rj%ek zp9}^Hqa22wLpNZeQ%%hQJpJIFS9eb=TvAgydySxlO4=a|hGf&i7>V0f{`&QIkqL9J z8UG~(g1AyV;VU3shA0!_wv+h--`Goj%Q~W>F3^u7bO3eUXgzf1qidZ%|IPpIOx5^G zHW|bT#xH^{pgh{DrC?pg_TuCB9@|;h&@5RZ6ja6#MvV_1j&#uIYmM_A-}%!n@^@_k zjnk3wuwfE`OQiH#`V!x_COv=V{+mu)`&wXKH+P{*5jT(cGp|hp@YiottOH%6{#91lFrmf9^IQi`@?71g;IE= z$M+xw;XIR012IN&Ayp`uKk?&#?yQw61?RDR2Lp6UDkA)o4Um^amOgrD{?@|}?o1Ii zA$p(-nRG*jCXiUROa8Z`%b4H$6aIuSgK3bV5_SM$Fkz&F%{ouBDDgH~eE-p<+pxq| zWG*&l0zwy52Oxv|Bm(+t-goBw)1Uo&XL2L>*7*hd7>} delta 3441 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%0D0(2A0Zj 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 diff --git a/user_manual/locale/source/.doctrees/external_storage/external_storage.doctree b/user_manual/locale/source/.doctrees/external_storage/external_storage.doctree index 8d10db210616acae041fbb8cc8c941e0c93a2e39..a5807876440e683a382387a5f10f10da8aea7601 100644 GIT binary patch delta 83 zcmV~$!3}^Q3zEC)%W( j%#<}@n&^5Qxqv7G4AGW_hmmq^8hdOMF*E8qws-#lF}fI6 delta 83 zcmV~$yAgmO5CyiCNY8*Xvv)G diff --git a/user_manual/locale/source/.doctrees/files/access_webdav.doctree b/user_manual/locale/source/.doctrees/files/access_webdav.doctree index 1aba26439ecc405ce25cbcbb668368f7f31d37c6..5bce470b4be3786328eabc7fa741603e08fac064 100644 GIT binary patch delta 7655 zcmYkB3$SlhUB_pgd#{KW7huqBWp1sbxOK z$5H^F{PrVFH(l2f;Dx-?&`=&Hd8_vPR+NAQ+KB3lrmB)6P2da zT-Uyrmim0G>HwuAen;3QX!{%IV8-7GLzv%w6ShcKEtgYIjxmV&D+8A~q zH))Mm^LY>05tEg@Wm!#$McQgi@vO}y*{iQ9<~l#`_&dc^Z0f0&6tb6gv{HgBBkJU> zb?imiJ^zlA=l4(V-CBy)<^G#^G+fMa{*wI_Z=Od}b~`Ihar<;q*I zw3>s-I(Iq3eA!9v=v8COtJWoF>8y?^S>;npx)&K@aqHK;S)8!@%$pC+KhvMyKXsRZ zV{6*EXhV-tnUGSKHGlzE?Cv+izZ}v!yB@UhOoxMO09Ep${MzKxDZq_K1;4`iX%C+ z-NKX3yj)DYkOxQ_OtPR<6L&S5C2#|VAw2-`_ti+n%2>M{dX&K}bF8wuqLtb` z?~c7w`Qq8;sK5)O5`%5VISa6x@$+Mza9=>pWesj%B9=2`zKk8UX20M* zc(Wj9_nLDyQ$HZ|Meb?j=`<$X@xz4qK|rfz&Hz_3TFY$?8!4mEKw zImQ-8+FrPR;-9U&l$@6{wkcy>GMU-7O7U*F*VuTQ!@F0W_th!7;23r1x`%yQD4G5A z!8$#X4tZ}3{`!0;R?<2@inkf|;SW{3(!Da<#;F>@`s-JU!}IAE9LE^w0&A+2B=iAL zW8nvkJ81LGjJ>*yy6dEC@=z8uF`{A6GiTJCtHH(j(NF)&ovGGQ_=`VP zxA0}Qtt3W^qml}$-M#a=ljbv?dECBfc+JiwHoP$OmF;iKF1nfqjFIJhSw6S}efbPd z3(riPpUX^LmZrubWs5S**VQw2rohpg=%s29dEGuWDrcPW!8xbheAGC0|D-#LqC)Pb zSg!IVHuw|vimq3eFQMR`UbB&Wjs!sqPnOv(>_9EysG zs0F3Tw>&`ogPGK4sHTxw7$!`*HBbm*gaD$cxlCUwm+-^ zus85;wbU(^`43)n`hm%NTe1cT9@0<@Kj7!@tON7bRh@5t$;o2U4&{Ol0Fr`kbV+^4 zrgSmMbng@@`tpf^0^!h#l*YnNxh6av38tx=^W% z#fRN@{Nb0T&Tmy842Wi6N=`gzj1l5+gV!DN<$v@gsM90aIk+L&hE#0~QK}dKQdpEQ z&#(F8v!R??x=%`n2>1bFhUTLOrDYiCV)sX{c>M&u@M8m%KtqWp1vOeP9c(X(mUrLt z%A2QFnFgof8^wP5n0mmSgd82W%e~K+zv^QLAP*LpBnKxw+>FD4b{B#{JMc4R{@vIA z487*$RASbV5!lKtq}`-f?4=y4rTKMlc+x#4RSR?zy7%Zo98jB8g#+r~3oJG!caMS9 zwQuL13fUgTbR8Y*TM!sQfEw5s^q|joURQS}4Wk%W8QNj2Vf8gj#Ktfvn(Y|##qT{= z9Lh|DPRe=601x0HUR0QWgRV>0eXDi5uRZUm`Iz^8pZTpRJ1sLt2BRZWv_+%WHb_*~WDL*Nr~xVFJ*C~RUw_K{{`t6_mDj3f#p)r7Mcj &E5Y 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 diff --git a/user_manual/locale/source/.doctrees/files/access_webgui.doctree b/user_manual/locale/source/.doctrees/files/access_webgui.doctree index 745a75ff8b445396755afff7f94f52ed7483eed2..a1423ccdd86b22fd22950f84cca0d12c5443b105 100644 GIT binary patch delta 2702 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 WzGUdVMQ90pw%b}x=kK%6cmDv{w8Z@Y delta 691 zcmYL{!D?195QVv|w56q%BBChx--{c&k;!Bxnc0YMPy|=f%_NgRpTc+W@4mZk74A+S z!G&vGxe~#bFzu$BkibbM=R4=-^5*i(=V@+{HH)HJO_WO&p@_^(V3JCV>yPPtXRgG( zC+S`+lL4285R2wMwvklUHxDj$mXKnPy@e26$a@-sklCnY?GkFb`gHVS`*Y7`2FC_H z>9|V}T*Yc+R4nQey{sSh-|o)Bl!$``ZiNV>Bo3a2%$#$zwthW4o;J0YR)jE@yGg-Z z3XEe0tToX3=jhcmvkFU045UC((12pFTSrMHds|;0A52Rlt0cf4$jK6v25y#;nJXrX zSKD_d^Y;4mVEy=TcUn+^S*QlBNR6rV1W>94#9W2>UjF@LJ1q*0Q{u`rzQN5+2AH5w zTTLjYck=c6RHsF_W3QD$5+&E79mI#fOchg3_5S7M(eG&kE^Xi;)IluZ&^JR*RjVOo zT<6EXrny7Rgu_$vMnR()7at^}V{e1|`s_)Y=89u<7)4-2;$o^}fgYSSaw)i8KRw%> z1Kh^xo~^67eLMUQTdcwr diff --git a/user_manual/locale/source/.doctrees/files/desktop_mobile_sync.doctree b/user_manual/locale/source/.doctrees/files/desktop_mobile_sync.doctree index 9e8a7190220ed8fef7947bf36ab0a6691cf65acf..6e00f70cf6e16bdd9a73e7e41a703216a8f7ef0e 100644 GIT binary patch delta 272 zcmWNLJxawf5X5;Oh))nK?EQlm*d&u=mv;gi@35O}DzWk&mR8<^1)%+enSM_CneV+)XQF389x19bx|NUiJ@6ja`U2I1+y8l zs6)NWSY&}jSa&lZBBm@uFh8#U)?kX=6*;11)JTR9YNe5sO;>b&-aPHML^*iyL5Ub* zZn-0}d*^Ju$2PBSpAVatrppv42{;!m9tEaNF>F1XZ+Gv9ZLFnMMs*a2u0paDngpcU LO3OSS?|)AJfP+lX delta 272 zcmWlSJxYW@3_$sI7jXr_!rl+OKqiy<33~z??~r7YYO(SjmR8H{njjwb8{m;?-fq2c^l&btSTLDEnnIXSCRWsJ~H0X_!Lm&5U} zD#IqSC-p>8V8B1XCWTE9Erb;If+@s#lkObOb7ps*=QneDeRFz!bM?1Pph<;AqVzTq zTjFAoYqx?U$%wN4*<3yd*pxL_K#+l02M_9Gxl3h~$YuR}*Zx7!Xa&;1GzqZOCRQf$ zNJavM$kw0t+&DZ+&5A%%n6V+w%2BBfgwdrFLJIfouDrsezV4jD4apD$O!YI9iM| zx$3zGU)l?UYNTGQq@p;pF=#Nk$5d4wr6j{Pc80?i!WZkivo|*( z617fL31`I4U9`^0SyDTL>}U3* zU9;_Y@__w(UXR05u9~g32q?+#HF}lYD>XN(IYJ)a`Y7Gp3tpwQnk$JjloeX?JSu1} zf|VPtPs)#bL0p!5x8yCLbavA;HsjcHHYs(T@cReBJYu#yup%OhHYcc8t2F0;QEhwm z^`rIg^ABwT?3|t1(@Y7~!E|p)T?uJcDY)YK8~bNmVBTSEV-Qw95DA&0gQAIbJ@Mk{ z{*j80h^9G4L+{?EkZrvaVeCV?T&M z%~+)uE%kP%i8TV-u#3)%B z&rZI3)T14#+!o?nzxdM1zMr~fbF#;7l6^n18}EdbsJr_euNU6_Y2(YLMlawyN(=g^ zsQDZ=x7m@Y-t(O}p1t^`$FVc6Q1vj;urwG}twc*P!o;@zzWCumXq=#7f@qGhRF&qe Rs|UMdG-+EOzkB)K{{h2ZjbZ=* delta 1373 zcmXApy{lhE5Qh2Pd!rx-YN1xiUJ;2Jb!TUGXGSHUNCd%;_>o2|W)#e1O5RvDQtphA*8SuOd(EkIj1>?+1cIqecrizV|V$+?%Hp=5}Ts3l%;w`&G^;PbI+VSy8Xb#RNdSQiX&31tM}%4 zMoTJvlxD|;S06k|jptkt2d~qq^6b-b0@U0HnE|&C9=g7tCTk^|6^#c8xJ>P`gDvF>_o>FkmHqF;|`dQv3Dz#XHoQ)RcxT4Gq?%8CP1!HcXKlkM>nR<3y&so?yGQjo(JiSY~OL%k#vmPvT=wXy)gWkZS^V~iuxAu}KlYye*D6}LREDM;t zl6slEw$JL1dr6xxx`_}h;t|YY*RXB0T6H;X=jFqLG_ZyGtD`m}=q}ic>3~^m2DE&1 z?ajmO-xnX*rKJFZ0Zr?Tszzhbg&o_9$2)BK?9Kg?Fv`kf)>;F>1{Q`>2F(k2jkZ1c z^5y-*7Cea7Tp}$5-c{pBX68tXVZt%9C(eD5JY?;$oHI9ap|DV?PvJ3_8;$Mixj%y0 z#tPMgcvFH5#?@=>rA-;#ryQM^$G2Z!JHMAg%Lqv%*A!?#)qn#y;ADz8qHkwke{UC& z8d()`6|BT=)*}EMdXO3CZb#c2zo%*=jvqu}Oom9Ynzvvv4C!j|6~g_Of_{>2cmA#* zD8@sE2tp(VT3j2W=*-dWx2~s}DaVdNWmcM@PQX~uM!aN^KRkx(z`$H4*SFaJfJ|288>4n zSu0X%#wxKSAKUT#g-dD1Op;7t0tcRB#7uJX;jBx**4qBQ@bN+7h-O&?0r&{{LZ1eA QYHF_P9n1FV`&aJ&AF7gxumAu6 diff --git a/user_manual/locale/source/.doctrees/files/federated_cloud_sharing.doctree b/user_manual/locale/source/.doctrees/files/federated_cloud_sharing.doctree index 25481fe328830684bd96cfcfda87cab6c0770415..a00be38c646b06d933d5c2f5ddcb392880fc6547 100644 GIT binary patch delta 549 zcmW-eJ&M#p5XG69Wke7`@M8nTRy;s;*H_mOOvD2$N_AH^cmmI`hK?8tMyBdNFfj2(`JwuyAh+H>dmd;P$iKLus+>6SuC!wk~jbmN1OkA@ua-&fgSb zwsdI{$a>Qqqfen)Oluwr+o!v)cB!>0Mr97~lWf7HI8YQZkQoshoc}l^$!xG(D345~ zdo7||a;Lfiz)?6^m< delta 549 zcmW-dJ*w3~3`e>5KCTEN2!6amaTFJjWHQOj5^Tf;Jd|WI1Fpa|JWH=w3Rbr2zp%6t z!R~EFYy=1Ulu^8vjDWMp5%K2eQLtrHdH z?c?!yOk8JZF2RAu!_=$!LU80EVuiP#H{PE;l2%(GUKkSQ+Fhj7Y=%Taeek;z+)Uet zTQB#?5%WSqX{GSmY-I$3%qk>(1Z)p(KifUjAv!ZvYn}75DY*Jnt5U-1z|)&Mf79wx zJFXaG2|#NOg*)mj90DkP`*io!E_JYID8;j9rrF(B;)1TTu}8=T=RXdKuz42;EFnx9 zW}a0V6B;d~oZ$TF_Tv8YLlPaejXVof=Q*Yu6;f9Sq_O_~U*1dK_i3&wxxuh5gSm&} n5Hjl;1J@jFzaQH!H6x3;oCJbVsp0w~?hs3)PTyWXd3*gImhGG- diff --git a/user_manual/locale/source/.doctrees/files/file_drop.doctree b/user_manual/locale/source/.doctrees/files/file_drop.doctree index 8e2fc673055d0a6ca0ad9015b5d93041aae5689b..46ced8b68150aa6de3537d8ff59075743612261a 100644 GIT binary patch delta 389 zcmWNMJ#JP(3`O-mlpvBwC^U5BQPA6C&x|e6kUeApddlmVW=f1hKz9P5}qA6XdHjGmp7k_M+^=ZrOr8G0RYELqvGMVRbe|f#_U0aZ7=jP6qDM3*sQ)?h$%;WLx z?`=;kAc{%k#EX#4e0z6)+Dq-$N{AaMFO>;+OM+UUm0I!md3~|%klu-< z1(aBSg*BLcacdx_E!W?hhtr)Hs{$|=WfB^};LA~GoxMXpzP|r*+F^pEMU&YFtBaxX lvaJee5RLQq+kd-toFk>7QR9Ne0DXlR0~3(!c=~XA^&gpdZ8rb_ delta 389 zcmWlUF-~1U3`O-mf{1{GprIo#1^swzk8Ozt_K*dP?U{})8%RM-@!0`NAL(TakF zyp&hE(mChFUhLP;Wu+Pl$aMe@Vpb~{+I70RfS0lTSzb@RW}9r9Vj)0TOAoevJ2X(H zG2V{1mv_hG>FZjl4J+17eA1|>1apqjvt)L1-JZ@amUVD#-3&k{k~dL`I-wdms+i#R z{OR|y&Qu*NQzIs6LyxFJJCKWM5N?m>Plr{}U8ocG7F3-bs;YY}lVOVE_I`1?tP(9i zuq$MeFj~X((j3@r&!Fw^<+sBZnxX$Cb}A`=b2bR`=}BE8w}-3y!y292o*6Es5(ca6 mO2uP9S|;N0$MwIpK}j|oeF9P=u>I4qkW?UZjqUr*_2&;m0&0H% diff --git a/user_manual/locale/source/.doctrees/files/index.doctree b/user_manual/locale/source/.doctrees/files/index.doctree index fdb89d63a6febecae5ac51844350ea46101005e8..d332b5c4e9c2321d025d1c4b296a714ceb8dcae9 100644 GIT binary patch delta 82 zcmV~$!3}^Q3;@7jd^iIi9f1~_mMNS8DE&K;E12-%HB5k;l1y+Yb;67{dSn delta 82 zcmdlXwL@ydd`5Ybq_niO)FcCwB%?Hwq~s*a6ysEj)I=j=%fwVe)1=M&7z>#c%neP_ lQq#=S3=PxFOpMG8lFZUfO)LzJOwG)IS}amG`?I{{002ba8B+iN diff --git a/user_manual/locale/source/.doctrees/files/large_file_upload.doctree b/user_manual/locale/source/.doctrees/files/large_file_upload.doctree index 7117ad489a48e0d1c897f2c5bf1743187ef8fdc0..c8b6261c97e5d408f7b82bddfa4e56512ca7643f 100644 GIT binary patch delta 200 zcmWN}y-fr$5I|w=2@pcM8rYO{3|y*abmj^j*gSuwg@iU02R;yQYzRER@(b^f*{w?dowq< z!Sk`K!5mT~RgaMv#MBylmh7Q43^sn2*Jd>$CALzrIC*Q91aqV|8Efw_{F(wy}EK3&H5;ksL?Csu+96Hu2b R0XllD5yiw?9`DoU_yHruIphEU diff --git a/user_manual/locale/source/.doctrees/files/projects.doctree b/user_manual/locale/source/.doctrees/files/projects.doctree index 2d37c075a70ba9c889e891e346d88047ac6bdf46..61cdc14ed1b309f91284843c41634be5192f9b66 100644 GIT binary patch delta 482 zcmW+yJBn375aqrxa8!gr#2E&jS8xH#HB1mK7TfLDXKmQgp4PXjl?)8VJL;ugmA%)8OVkic(RaNXc2e zIdTkZPU6QmwI9CRz1ZI0`g8ImJIwE3tcWx;c|o3Br74=E@bU2Ne1G_P`|WB8sPG8v z$^@OwoH&~`6e1gKdvSWTta-pF9-T7>)l%w=LdG=`A%)iM*PT}Wkm%-$*!)36C; z?inn247J1l?Ai9={=3~8GIE)yGc-z~Mh(3;Nf6pnz_vd-?p7ZHMcry-B1(1U9B80A zeIpm%em}Te9@pp+B2XI}ffbuKAloeDP}+9y;rVXOHTiIz<@DbOR7jH|VRDnC1^-9; z_~>R?xuhYzBf8D1+=>Xvq|Jo@1k3jN;`_3a^uSsJ&fnyjvBUOt`Mi7TL7fnVQZ3lp zU}%PrLuzeSh)-|Sk6-RyZSQaWJ$s^#g-eW@B#^Rl=NLgzUD2xe>G~IC2!JLcaaF^XhDNg*CM@`GARB z6je(T5JF?rlmyz<=_7|t!nl0uonVWXQ9Lx!` zk`zmgbpp0O53ZNT;1V`O!kN%%hKITlQiQ3(cJJZkZk?N!i7Kez2=ikVi(!4vZl<;T zr+s|%ds$m57RZ2Y^5+@0G}K6=AX8Y~USEBmgRn_N=Sd%EnuM90YsJjeGo{r DO>2xv diff --git a/user_manual/locale/source/.doctrees/files/quota.doctree b/user_manual/locale/source/.doctrees/files/quota.doctree index 14204152a90d562ff70ba97718df6e98169b9b7c..0e64e8f72d60e4ff9189818efd8a02bd6bf088b4 100644 GIT binary patch delta 392 zcmWO0A#RsJ5Qg!5{|0CR35pclHb@e(J3BKw>zg2Zf{K})Sp%lB4u?R(Eig2j`ktVI zOK=GUYhLrb;&*>_fA#zOkw$mO(S`#|^bCf~iefx7b)CL`9S=wH+!-Y(5FE1>QRTq_ zEnw_K>+9LyBNaiw=+x0WVk;~t2!g|4pK-vO&`#bdlD-H!n_!$*dxb tz>Uik+WQEqSX*=Q=Ij02k4LI4q;j5wlaa(FU^`49%z-Pd+jo!W{{eAFZ`A+* delta 392 zcmWO0EpFC95P}NfI;HwDk|X?7@7^96Ck(* zmq74d;Q2id*ALe}?vFwt!BYk6L>U-HTvH=Qbiw4gzaKx3Vw_qb!wp#$PMZ|Qs^I7~ zoA29;zehP&0?-z*vDBQsPVc!=TM!It`|i<~Q=uLPi+Q0;X;eo8#O7nv)zQdyxqN$3 zmN$eoh}x>cExR{GbW~cTP}lzW^!-sfBLdA_v6i5OCAVpv19J$U#XrwJoC*vL673Eh z#D`l9?VMh%&AEErH&>q?zdnz6t1+6+6!z9>|JLX*8;=-F@H}a+!d}=~Y^-M5*4K8vbaUElRk^nrNbp4n5<;aY zO5DV+>;4n#tNY${%{U~%I2l;pRXuyEG}MM9<%Wk>TyA}O>(#Rk>e7pH6$w*wV#!^% z(_X&ieHW)?!`4}`mW12LS%>y6A)3(M!{fJp>I!Gv97`=NQkb!%LIKZu&cG+OnYbLd zZQsiITziOMb@9%VW#Q zgCB!upPg5JHS#BPFbLDu>*h*>^C)j1G0@+F&79{$Xbh&iblkqN|MR3XxOs%+1>xHoKmZy_EP-t zod<=Q=u?YI^qA=9RYpjZ z2DiWo14yYBfx5i!0o<4^Ja`f<&4wwdh99nhb%*JR$nL~i~#PZ`)r#B^>^2ii$6_F>dRuxo6 zcuEn_J)gBR??CD5L*)Sy6H$v5C4%~%kiW&mVY7YD7Z09&2`qwGMY&oJsHZw=k;Emo z0PQV%UM@fV-|ARxHRC6w+Thq!0Vwr=D3AbZOCPO&I(y&xhi5K3Y&2Zw@h>6BqJi%+ zvIiBd7A9Ffe73F}`oE_Tuvro+gvvlpJqiV1YW8tCeD2VG#~RH~>VX2-!RZ3_M{QC~ zw8pS?O@HA9q-NqA%?1N>qA}41(|fd^k2nMkzwy_f=U>@z!*VWW;;|k7EC{s^(*lSo n)gs5`?F(NaTPP;*XjagDF$EP#5r^S|SQ8Z7%zNwN&D;M6%pC`- delta 1828 zcmXX{J*Ztp5azr*H3%_8AtFTIK21WR;@jDs-JMk)MnXgl5~9Jhnf*fx5gRRRB4}qJ zTnnS6Z3^XpjfIJ%vxwM;olQ_gNF{3F&v)*#y61A{%+B{S-`=`0-MTS-{=sB&YL2`e zBfG*~NgBn}Ye_js4zaJUPQRPzWoU1j3OQ~=vy7-|q)?J$WxKk*@uf+vc~5B!R}(8a zEs;YJ9^U61-B{`7$PB#-WOm)Dr!iXYj?_l!8HHC(>~(M&F4a_-Sj))h zJlOf#V()$3?Ug&;HzPzep_(-|_Bc5V9|DIcu}Jl_E3?nzIJbWFHB(oDWw=} zB=X|Jx^Uiq*S^U}LO~5K`$TNnsjEF`>%Ng2mUwA7U)cZ2rU~3#<6s>HX7#qXT!P2k zDW@V`QMox7=JN}<8pLZINP9bv3~zUNz0h(K@^43N3e$ilV+wK+Gk zqr3V0gMTlrk|*z^`vA#eRBlycaJ?;6CC#@Fy*U}*ip^G9jyxsN3f)Ge|JjqP+VQwe0a5UVE_ExiN|3G8G}R5Eddvf10EY%O;}N-ILdtF(KjYDs9OAK zN|rfO)#4hOc3UtCzFQxD^Rd4$rj_V&K&e`|anYpJP-?dXsi~s!^y>1?*8IZGd;1JF zSK#1|NtcaXoP-63T0^0}?t!}3AKqu+JD9`T&e>zHC__STMT(9dzyRnp^Q%!NqgXYv zEtNE&c^|nC#EE(jTe_xUzLs8G%-dywB2+= z9C31SOGXUFm(|5S)9!DR0kal>t%Ei22JW$~VLzMz7Y$kMKK-?En%vqifXW;Ptkng! zP7N+gHLN{x=G58AAY)Qjm$4$5r9@eBHZc;h`AYxW?8j$LO{RIq+*Fb}$F3zsj9P?_ z#!9fpp2y4ScQ9fux#bpJ7$6V?D;}Lkw2h9WSSZ|H8{_zymnYMMUF?{9N|{S@5@AIe z)+6%RB2TV7`|q^vk!pcGbufnnwdj>o4-g$uU|srX_0yS$RzEy<#Z)Xuw<-GpN=DZf^C4`-K69p+q4?P7yo? zdb=R^S9bT<+|Hfb*lINnS{#B4h$A*hw5acm;%6oQw>*DRZ{{sW&2QB~r diff --git a/user_manual/locale/source/.doctrees/files/transfer_ownership.doctree b/user_manual/locale/source/.doctrees/files/transfer_ownership.doctree index e6cc247858d756920d6e46249c69a4d6742fd3b2..76e45a7d174b0f020532ed62ec38841f0c0a0f30 100644 GIT binary patch delta 486 zcmXAmF>X~s3`O<+Ckh~h=u#lTh%TKy;~9_lffS|mjO{ul4XX%J3YtJofp|MWG}!?S zum*O(=+j@Hd#w9#^>Fp|^Oi(KicFuTKw~s1WQaCZ8wAX}f8RcCX#h8rVNL=hmb;+W zPQ@YDI*9i7$KxSkqZ|x9<3#e-dgD@w1q3^h#D0JFNcg;Sq;meX=PM|QJONBi0=QH z^z74?76dA1kB}hpA}cCXi$$d}pq!Ymo?jnQ@4dJ|L-!ylG1SF5tb5f^sQcZE^Ydi1 ziU1g*5ObFS9;|bQj^>#@-2S~t`|pcC#{{N0oU1U+_4ib>%z$Cen5C5c*UN8@62pKh wSy<+vGP!$pGaR*KnYr1??`L|qhC@;H$S@sgtQn)RES1`ak-^+=-dsQV2bXP%_y7O^ delta 486 zcmXAlJ#JM&425;yBMKmd=u#lTh>mW4Y|nTfNKs0AY}b@DtRhG$XaY3_;_d*^WCt|B z8rT8DOJ!U7e00vayS%&n`gu#E`7mugs&xqAfrz6vb>Pfh`~H3VxTWkY1~V(pfZ3Z= z7SZaHsuIfB-ye^MgzW3^*}?+Wvy`>e-bGyluJfL}dHiNetTXP4(vC&J=Mmbt| z8Qwrj8&MEMvC@r&N&oQ9`!mM}#|Lj;uBPN#dW)pW!oZ|KTG!eoWw+MT@^SU)!i2&h zGP1Y<_n_J<4%RhSXcgn~`r^}#Nr{DA6^$x))H0CN#Uo3Ox!2{v=DeB^1e__gR*YGq znsJIPvgO2{dH%8WZOx6X6BIEq?iOp(iXO772Tv4V%;f7toD=70vRTf;(3VVEur zNt&xcAU{Wcx$=FjJ+h_-Eu*rL)>eDN5PDZ>vGbYs-K#&>#jy7V=tzxa*scVSlW|P} zsNjEkv1@g;rkX~h=9!8!7g2ISNga{`NDu$;swe!jP}9PWMIn4-p36IHL0I0V$Bxn$7cxJIltKe_d5 zsxU5l^n}At7OJ^NvQkF3o=2GF==ORwy-FW>jR&R`lVQvgX36Bg;@##Dz?iaG1^3n z2p%HVq|8<$5i6#St%WUpeBswTVsZa_D21UMq+?=@!whzZn6~u${V%h$9wSN!IR=cJ z1t7GV2}^`%2wVE|#cwkwj+WG8!l7E4MJR^cYab~~YFqmDr5`hutku|wZp^v%d><1_2I#%ov8srsG|=dM?zx4S^~4Uj2Ty2 z9^d#mjV_@$+kgPammFfIPL`a6CXpi8QC=iMe)Bpm4?n3W*7Pc^u!yLzAp26>3?O+e~I&N^NKzJ9~y@ zfAcaNxO5hWp1T;MQ7PWtsDinrBJ=Wj8^h$(B~uup0%Kr7fJ`7OP?;lMpU>a-59i}< zvz#_MPLWUx$2yf~mXfs!CRf5-m~GZ8|FyjvrrI3X(75U9yH}_o)z|l>W_SDd%W?Pg b*M@L(*4(&rTd#t64WJgS5nr``_V3$Y@2y#s delta 309 zcmYk%KT1PE5XW)yKnWql*3QQ}!R-9m*==$NZ!kMMTWRSzEMh6-05-y_y^IhuMBb_#JO?gm7PjFo$1h`t_f zUN(jPQ3t!ZT(h@}BY{gVtl9mcWOB8tJzjt?=#X1g$4AvxZAXIX5CC7p0(&OK+$NlrP cfL^|8)ode}q*~>~rtaA&1JtYb@8M(j2k84)fdBvi diff --git a/user_manual/locale/source/.doctrees/groupware/calendar.doctree b/user_manual/locale/source/.doctrees/groupware/calendar.doctree index 5a5cb196aedffaf4da8871c6d525c049962bc2f0..d9724638c11962cec26170dc758b7575b334b28e 100644 GIT binary patch delta 5883 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 G`Tqdu^T|>G delta 5885 zcmYkAd(ftJS;xKK_g!E`WD#&74$r*?$^opMkHolQoG%EruMk{RrCKW~4;41c^k_jBLB z-*tVj@8SB&)4RU%^sa}`-Wa73(KsnxYTc-ka<9b*>Ael2$DpRT@n6GOja5Mk-AXd1 z3zfV#!HZz|oitr<|I?YnMbq22ZW`M*VEN^@2{OQvt zKe{p65M6D)YM1%G$vJo3L^Hm&l%&hc^!okN=U#kd7(=P1nE={{mzZCOH+DNF&kNocQGo}wJq~u zqp#6U&!2hou!zN~)TQuIn54WkUTHcLTt^i-wC-g{BW zxExZisjuI8WMSxGaiLY0tdW$O1_$abM2^bz{eQ@4u zLCVaX5C6(fs zUZt6tL~&!1npQfYtdeSZz&t+M)MAj@$)1#n^9%`Di_1z- z?A61lO{`jErak~%-vO-bA!ny4gK%#80d4)h#$IJqmBM51A`YhhDR1 zb1ZWK4K2{p8j(wkQi)#avrR=;Gu`^ypBP3%3!#kYqHxBD#^B^46E_aB1liX3fBtn> zo-mqZy3ejtHD{nFdfuXTHI-6%G)lU z-uL>C4r38an{c&5+orf0Y>FXO(LJ6}+M>FArT z+8k4<*6FGNnc|vtrb8D(>Ag0WjhYVJa0{Jsk?*MxQp?~0qD>+eW*L5vHn?>;zL9Q) zI9#_789jtzWkUrbpoP4%PeO9vl*M+;hy%N<) zNLc8gUzHuHi4KxhS_mht@Y93+6#%mesJB+Hdj)bT_Y90`V0HwQ*mp2|$&Eh>4ES9Y zTDdB~o@$|l+$oLKnV*_Az4N9!x5h+CU{b_LD`pdI30i2MWQ-vOX!XDi*H7=h_0(a3 z;6~GG?;dJ}3h52fRxGD0&^6~O@4!8cu!UKe}cFFnScB|KkMi^vS{nGj^T0tl4$_ZGfFp}}%; zz8iY-)=DN@SE|l4)0b{P5t(bVsul}I6{Cwf**cTIMDOTfoBsP9pXGb1@k3j~uv%qRN_UC;e-Oca6OV^fyy46wv|$ zW*8Z*K%$7?>vZhMkxdB2RSpvZbwf8jeZeuLkTD{h(oJu>V{0aqQn+__6{O6xUNn>f zv%uEfm^j`0n|E!DM!H#h5HcSOT9J#38kw!zU7|ppFF+&cXv^n zX5klO1v80;+N@h(X3#NELF?y&Zy$WaFe~q=(~}>5H$5r|@L&iTd<0ct5`hwx%1Vgh z?ewnu{|MH{55R6r6O)GniH>q6h(>A^dlBnSzU9HZwU1}e@tOCVU$ZoB2BLNnUpSM_ zJbDIkB!8Y+T>%@E>2qLDg);i^qmAhInu2 zG)j0ep)6hshIL$i>tp{os>JAmJgneMca&>(G)e;J070ASiI4yIFm`xexx_sfi-bc- zwj;_Y4BT#7T+jaXe{#v%I>@MO*AnFLro>PLXwj@q}xI5>mk@3BM<# z3_i<>g_k?BnQiKn5Z zY1}OV$z+}R%U0qA?3d)s2K%R%eqIh2#f<#JIe3RcLP7&`sNHvkeaLuUOzd0kJK+T{ zSl)HhIm?H?uzUH)P3KJyf8o1Z3uT>$?+emo=eB0$G;N0WXjt&mqsPwL81+14Fc4vl zx8aE}yCEPv9-e|&rvLeem%)Yrf|_gScXsBp8I=v5Z>T?sW?k3mx-UPpIf~$%%-DQ~ zV@iqi!0%?yh#oRt>zufM`suGeyfH!}kRn9sgJ7ch1i(fhQ-an~-679IPZ|zc_1suf zWtZeZB*0UUw_p=QAG(Mk`*yLdM2)_4J^qN!BnL#pZNI8mS-KmYXNN( z9Chac^eEEt8hofT>skf{yRd)xAIJZW^hrK#7+NwFLzAM!egdm#a>K^VXuoLM{KnN7 zvYEt5z0Hv<$QbAkUaDb3C1c$DblX!8Y%a1xwy>2M`ZCyhrm>e6c&Thv*zMzI4i`^v ze)^ltgu)L)ZyJp^Glg)9*(eDC=80H4_;~*_FCIpPj1Wf%u{NVw%#JQa01j+p(>hFl z_Ajp>umpkqWEP-nXdU(=`YFqBDz4+)^6YPaW`v+HGO$?2@RcM;$`}oB?y#Fg>oo`N z{rBI%lvAhFJI0>SE9OjrsR@mb$Jub2>6732`sUa&r&nZ{CNm#FVDE4P zaJb58c4G-M4Ed}s+&g@GW5FsXH}pkg@5DT8WG0jiv+KPN7FJ`;H#cpNJ7D=qpAC8Y@IGQRDiJ=gQ&o6GoOTFe1U0H4Q5_Hf}IE z?uGrzni}Ru|KG8%3LN|I{qW=_VFP+1aUf@oB!)<^f1r_69Z5s-XGA~!V}pZ^aCeee zu3gD2Pv|g<3A%|mWewl14jvkwn$4u69n1sHFlI2%+bFZh%JZT1hHHhIUx%OyAf=gj zLJrGqW)etS{E5=Fy8*=e}y#HIEbt5pPOs*#>|P3^wqO{I5jGdBv9H;Ksrd z*GdV!%!#)NNd%|~_h>OJmDLq)cJ-+%hKJ^r9jhHF*+O`lWgMQ99!G2{0_^hotjkZI ze8%=;R}A}BU;D}7B~$?)g`Tq9g9kj~TuW$@K|)S?-C3@zF1dPm?bb-{$Z=lCCU6H= zfL?43HkLjHuDce5)zNDPha${3f(BSCv0|yLfj9u$KPWh(BYt(}&ko0D<)0Tn5Cu-2 zu3=B{YNS+lBB-z3!6)t7w|)HD;j|T-rVl~Gj2)Onh_NslZlB4T;bXdR&^tDH1*jVp zVaBjf*up@*$(l(pct;*2q?1ZlfBB~2UTkVa7&_}t!D(gZ7~BXJOvQ1Ls#fp(g#m>n z)v!UCsSLOaveUd0#sa%}{n>3=ee3#x6=I>2bSPPNZMY`(D1-$f2xg%Zebed#dAQ=V F{{=d&$fy7S diff --git a/user_manual/locale/source/.doctrees/groupware/contacts.doctree b/user_manual/locale/source/.doctrees/groupware/contacts.doctree index 8367337d720541278e20ee0232f3a6218fc41f8d..805b2fcee5262b3bd68bfb7005043ccbd87e560f 100644 GIT binary patch delta 3100 zcmYM0U8v?&6~=kbFwBIbF)`Ux!@U2K6R8R9kG1z+yD|)OhO!2YB4wOvuf5i$PgI66 zC}`|L2`eoBwqAH->*r6drszhnR(wu9(kN6zO{_785{K2EmS|-%; zPS4Jlwhzx?%H((JXkR3gQZst~C)-zk`>jODj`F0Ll-RZ{jY#O8^dwGg>m_eNHU zd|Q6{rp?`AR-wY2OQuwNqe=-kiR@4S(&ge6H?Ah%LKq1ztRc{Fo?}T-LJX;3dDP{| zm2Y3IsYMHed}pG;p@ukea*~)_#iQr*$G7Jf)86@ktDc!mhs5rB;q0m4KdFQi+R$dM z;!FQuygc~k+g95HPfMwH%7U7O!jW>pPZzBuBYC|xZ{7d!)FR`(y^;))N)cPUPtTU z@_Uxk2cBQ8i*U`15^@)kfnKxKs5qGeHeWt__2Z~^FS*n_8t#wY_l8b1at_Z^bGCW) zb<5F%2ezixm3pWq7L^)yweGB#q4Sgym*wm4`1Wcl6fMUbmC-9sxPoPCTB<97!?2zG zZaws;)mj7El3k%rRJAj<=^TR7?#CD%3#a+Q?faH{4}WAeNfyJco$rCEmrXydrpzTn z6v@5u@=NPeczGd+v`2@B}r7{#}= zTzuEBR)-0uL1(MOi8=I^t;amFh>A-(|LDlMDQJ_LYKeg%HQ#DijiYMlJ+>Coa`N5J zuO{d`1?7r9LAJ4T^i22$tgOad8b^;CNoIBhxKX>dO>x$57y?NVEyBpYLvEzmSEcT{(`_T3dMfQI5dOQQg z@CjNOurqTJq=lB?H~&|1n{b{#gud46gmhQmh;EIhuDq@Q5+B{@DzC6peJ>SeK2XGw&nP3Zgm(5Qc`M` znhBGK~L9p|^EF@QoOk!4^j z84%;p7TB*Vh&psRdE%X`b;#W?j`R&v2p=KE1))EN zVsuGRFxL3_FQ0#ELg@xtRuia)PU3XrSAxRLP*)V|C+$%%3S<{+&H_Ru7BMtG<79Ld zPTTlvd%jWF2kenz*jc!lCPsgC>WDtDE}`cQvy%uW9qA22 z#Zb6BUtavA{$K*QkSxHc!QutE*)V2#gjgQZy}mJeeABkTv>Jzaa$dn-aJ2y#uw+Nx zTS%@iPmBkE4HTGa1;|-YUacsYI1CmN@MW&^EnoQcdPDVsnSus}FwAMykSK^u0I#$0 za^#CgA#+aFa(6BHgoEJS(t_YAAi4Ku^Fv>HX2Q|%Rl)oKv(}BuOUMvfoqj8vkGGtt7x@qYcacJy65TDG*}AQ z=Fxai6@1f#$~urJ6GDLISMPmo?SXp3k&NjLaK)UE5{!yzhy`$1_MLiZHQ`1WNj4*> zU_QeXXK)l?-4Ih4LfX9d^xvlqO*Xk0a)v60uMyLhPe{!G(s5j_y6?H&6V!zO1fm3^ XG~85kjnxmvAW!PsSpM~mJFfg6R%DHN delta 3102 zcmX|DZRp=s73cStv4zuEEL$b}eW#1mgzh=_+=o*chB+x~XcQ^7>Yn>RkEo0p6f}FG zgcX+G`DPe85{xJ)zDT}V6c|I_C=^5_^rDBC`l2KuT7AA7ZT}6%pZmS{ob!1)FFm&N z(qlV6e|j^yVId{U8iokDSQ z*}pfFW*q3&Ge=!dW;K;WBQ>9dIWDJn-Mu-)sRSzCmma;i;&VzZiFwt|+?}18&mTHC z^X}u5B!?R;7Z;mQl}trj%!RnPVz}?OyU*d(rbAUllA1`f5=~l`JTz#mG?t&f3AIU* zT1N{daFS81v=l}qiZ%+VOUt>-Z`w?`waQeRbRT7KKu4TATC_+RO)ZD7c>8ASc%+gg zO7=o%p^$futJSJmI?ZQ}9-3bcd*+9(d~T8vI3!nc#L?^-h1HhL@O4M;?*E6Ehu?h1 z=1{TT+#taWvvBX4g8CMH%ox7n$OrM-L-obi<+E2k2~zonm$?+sLo6veH85d?(eQxc%IlXS2lnqwl-;O0 zTJH`V8D_n9)dUa(P)J$6{*G_szSh;M*$90|*8m=r&{JrmcIqi#xbOC>{{*6X)Sqf# z0Ehz$vL@ggz4KN|z`!>X^l$ z{_Z*@1!}G&6focR?!O%x$~l#qdahYOd$W|3IFBxsAgWXIw+>vloVe~6J6lwmS)u&M z9fFdqZXI;Aq634RpE`QYO6}#|_guZ%T5NG;Va`b)O^qIeCCy%ilB^(KoZjzl+;!Ph zXsDFpav&_!__|%!Z*Ja9mU4LEX)}>Dj3RQda1x zLL{|8OQYr#@wV^y+viv4{M29^s9#fdRRq#Ws@{?XpcgErOT}I5FW+oa?cylrR1NMh zg0Y2A5}4GxvA@*z*W|!vYSd9%BnN?l2(S{MXFwbf!xsE{_40Cf5OzXfOlbw)$MDu* z_!j`OWOlCmu-unUUAFDMNU6@}0S9iFVRt2_K`{;*&6aE5e-(f(S^*YUE(9+_ah4;s z;X`w#MDyJrcy02qndXvf0T!0P6ifk=OU`_PRA@eS&%x#4oA%(koM99_12u+oj%>KN z5xyiC9SM54e*VJ;U!4LJ>m(X;V*wgAMjsiZhXF(y8CTvozq)_l{M}pj%s1Tp$0-o5 zWXx|hJj`!(aM&MSXq@3@>&?r@K6DyVsVQ|#u@>aX@GcjIM|+rR>F|_vq1wZ@+`coZ zKtl}Et_Bm$PT5!U2n+5QCv^Jgt>-3~g#im#qBn@A8A67KR!^%3Ib9w&;$e0xVM`Z; ziH8FtJ22x4!;8_XD`S4)wtq~x9smr-w30LRB2K}B6@uLGgB~ur$exeffIc{}8Tu<| zAbM~y;AK2iYe4wb>^yaKFaQAHv|Q-+wvWGWGYvT8h!}Hc z6H@>_LJHC0af*&)Idk-Tn<;gqpsR$;8wl&F5xC$0n=e+0m!o&M&6Wak52QkhNE@;A z7U8NrL*K~VvNp1uz4K=~Qye2o9ne-Yp{Q5`V1mUw(8*N8{KzN&yB$N`SGWIzXPuhS&{iZV zdF_BunM#9c z3?MuI<@3)>Tx0LVuoeiO&@XHmszJZmWmw?+lk)hK@@NGqz_EJ7y}(K>xf^S*fpQ)}=GUAFye!LeOJTnjiVna}y#zt}CLc!?p;S(Taa**l4g*VAA&G|4hI# zAmdYm&Eh63v)C&s81@k;bJ%?HE6-iafRwF4T$}K4Eo(bM_8dEz^C^u1iZqW_pbg zeo0{Vz(TFkV}p(`ule=+-`EB-c#{J<*jeG`aO$X`B_9K*Ji@TrvuU=fK*~|E+`Mif7C5kKJdb>i5bS9JXTN#y<@)) T;Lix&w{FPcy!`7McU|#6&WDDK diff --git a/user_manual/locale/source/.doctrees/groupware/index.doctree b/user_manual/locale/source/.doctrees/groupware/index.doctree index a59ca41c9cdfef64c703cb19f93a74db9a88830b..185012970f341c044bbbb8908c34ec13d7121d30 100644 GIT binary patch delta 197 zcmWN~F-}7<41i(vRfwuWVq;>++{sQH$GHX)d+j*BN>9<56)DGgM`7U&|M=_uiWfEUrA(&*}S|z)af!@SdFY>r+`g(nCNt?0~srFaQ7m delta 197 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 delta 9691 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 delta 1156 zcmXYwzpGtE5XU(;mqg=3L`?I9+zp670+OBC+1(kDC@2yUOadtcA+S3;TU%L*jR;o8 z8?mS-vVU!(jzO46yR<<$QWY{5 zrN--(lh3!;h@*m3Bt$<^?5b@Ts+>#9Vh{H}zZLd(ZauO7^~^_0z*uwU(q}Xyh1>*E zMAXve6p-fo?)DF#{W|FEYRoC6%#>4Uxn`|-Kr}#Vvi^Y|Z`Pl#e7_A7#(Z0VqlKM zhm~W?M=!p4G2|r8n)aFq2vX|qwf~f}T93ZdvGT^NpKY#I*BMjRAs(8j%^e(79eU?H z^ZxF=Yx}dCPp<#m_+kkThUP5L2O9Y?$AN;vf<9_$S|7plOMsCS6b*7zN)>&X=uD@K z45MLmyDwh~-8Io1t|ofgtcs2pXKrXIj*NCxNUy!V-9??SaBN>u6L`>r9RQ zm-u_I(Z!6>@^H+WIJwix1=ago#$(6B8!vAIG=D0x2Mj2YBgy`%9&)8piI0^x-|m~; zRP$?64HP<+SeTnesXE%wf@%Nd>Gk#RcV1d{LnkC+D9{MF_R(0YFXhz^pq_W!e{k!U zAVrghWsVvU%dKwC!?PKftA@Aj9J}?W2L@#eH(;3 zv?`9JOe&tP?6aNYM97}n^H_xSaND+_dqFmr%8iKYkmM=}f4F_Jesb^q gi=lh=D|PI~esT5O?NqdSRG}1?a_oEZ;jd5q3uin}t^fc4 diff --git a/user_manual/locale/source/.doctrees/groupware/sync_gnome.doctree b/user_manual/locale/source/.doctrees/groupware/sync_gnome.doctree index d6d329f48047e7ded6223afd055f3155d79fdec0..002dbbff1c38ba5f500347741ed6a6eec030c5c1 100644 GIT binary patch delta 383 zcmWNNp-zM`5QOs|1dg+W5E8=G;JfYawskzhy~1v{4VovwppfU_B}gjpSR4|E;UPFf z<%pU2W)8coI6l$?PSk{E+Q(DAdp9J|gwM^G~Mj48CtUbK0T*fUPo z{`KVDSw!4Wy28A34n;>}tkHsNz7#6`8 z9^#sldvDIe-NW72@7pC&mnB^`fITB%d@VsEYSJT?i8u$w@$vSf diff --git a/user_manual/locale/source/.doctrees/groupware/sync_ios.doctree b/user_manual/locale/source/.doctrees/groupware/sync_ios.doctree index df6ebde6f02b7ecb38627e13702c744c15f31649..87a85f34044084d637f191341934c9a455f0016b 100644 GIT binary patch delta 1291 zcmX9;J)7-7#0PUqJVuIXj)&!dm&iu2a+0iEF0-ges6v#7W zK%VNvWpnS`>E_N8w-@0?xp^nYiYZkVN{AT|r-c;W13xxofvHcL-J&FoEfCsPON}{4adXi z*Ps4=4cH2D>ym2VoVh?F)grB;`rH#ykBW7*vHPjv+#GHcO@$vt#tX$5%H0J^RIC zAt#LiIeC0)on0q!#wsoO;N9py)`~2{Sak@_aL|dWM`DqS=EJ_*hbO0JmRxw&?vW;k zH(mr=BrcI7jWlS#$mWgbf4j(-$q>yFR$%rNswQb^WTJaxw%1>Hd$pdHT%-Y`;P9@P ziq<5}N1fd3_JgO z$ULCn=JEM!o1fNyEhQUe^i-+IFDK+ey?egnF;dTqI?pUy5ei9R_fr9zG>%z1HgC8A$4JE{C|jdFiXArl~1mp}_-tuiR5>i6bsSNcm9v zPhS3UX{DKX%~@dAy`bR$LgOlAlyP5x+ppYRMzXfk+ebm{GuBNg-eQ>oRmTDN@vA>C zm1c_0^)A(s#3Zf?2bSuDn({&8&DZWP+ImzT2+Vurz};q*3f?fxpW3(YU%tOurzv4V z%K){Yno4(SLZJkLuI`Jcr@t>Dzc7vxh7D9zF&~!0!-A4R$9|CyuY9`@uuRW!oihS~ zcs|^~W*k+}7fL(eR<2%OEmMQRYS@)#yaT{>#$ox)BdP}6w-2wqd9;So3uqcqw-f~& xN;JY2iySLQ_a21;%s6c*MpXU>eh;2&TSf)I#u1uabF z1Ajxpk&V9R(X?^8s@R zS`o06Nyn$_(Xy<6ZS>UIOiC%|>IIV95UPM3p%ZqW>w6deIW0;#5Cdv&kVpiwYtA`E zb;@J?_wdSk`;l9V_5_TWqb~p#7#Zs*T4(m&bG7yEQ)lZ32cIo~%{kSS1`t3MNmjE} z$;pdZ^F8pLNAE11Y9ERk6IMv5Lf(8#%ATl|BzxeSkKJB!D~%YWOJT6itV0E&14$+^ z*aKgC{JRsW+N!G9B%p~S+Ue+^J>J#1-aERoUOxPG(ZaK(7zV3?Qxe6BV-_23HhApn zZJ&SQ#%7_+eL&FGq5`GXTVkuDI^|9d=S%;6^vjYF3pO=qlw!~*f_=u=g6ysL^QHfL z^7F+Fhy=A{W5Ap`2Y(5%%ZxQ8MejdOyizeNDZZdudWnUBtFT2M-$}B)e|&af>CLI^ zrWrb6W)q-p)^j!m9bEUsy#CB@Cr%KCNvVeXt~_V2#A(J$Kq>ouuRZ(L=Crj|tko_c zph=k2ry|!@!)Uoq&1T zxvrnQ_`@=iMHGsbND;8u=yh~UF`3fvh{w+Lw_dt)id`G%RLR~TvL@^x8T0U#r13sR zAHMwa(lmkMNK$D)gh({3D2-YhDKdG!%8gfkih?_Dj}+j@8#_Z{oMhpRfaBf-A6@=< zv#5Gvacp4(kWeG+RuVxgvzIpa>aOGL_XR})C(a>hkhHrSJ8gk9j)RPI;QLp;S!712 zx!J5ebg$0JI%TI6R7Bf(^lU4yUfV1wBxgo3FCC`As9Zgy%oSUUR@?hm-#Az_j#5Ln ynjAp1k4(*q#h9WJN!XcT`))oySek{*9@nXA93&U1IlPz$r(Q!&+up>tkN*cySbWd` diff --git a/user_manual/locale/source/.doctrees/groupware/sync_kde.doctree b/user_manual/locale/source/.doctrees/groupware/sync_kde.doctree index 22a03b0c7d3d3c88e848855e296e38204ca6781d..1bc39e5695f846f345010d23cd28e2b68501d2f7 100644 GIT binary patch delta 689 zcmX9*y=s*~5ar9gA%X!5iJ)Mzq9BUJ%9b| z8pVoMTOS_2KR7i6k+cJ{>J9_QJ5e)MS*in^%xJjg1QR2wylLXudMNA%s7 zqZjMryI+^kYAiaap}SD&^N<~hN3nQojMtmv-v>cDVbdu`Gb9NJcyh6UtR==?_I!Wu z{W&ljJ6fs{-jy%}Wmk_d89?zX!*K3!j* zTyD>#NS3T!`)xZ)QczhSM{B9T*qtA}T%SC;+=P*mLK(RTL`qRwuB}QhU2qx)+Kb;g zy>l4256onox-oH^{l?U)mrgucyR7i^$0m?Z`!N~U2`;5-1~nfEeMBYw&xg;iw?PEk zT!7VTG+nhke}R(`v4CmbD}Q|TZ5ym>*4k4ZiDnoTuDQ45i4x{ic_PF524Qn1ZtgHr XFE%5CRyLveQ*H!9#-8$uo;~;nNSVVX delta 690 zcmXAmv1*k;5QX`3Z%Dv^g+x#=Sy2$dVrF-CXII2duvPE@W@mRE!X~~$NSnsaO88S) z`4l24^A?sm_gXG{=9@X^++HoWSIhUCC8Vh{jnaxiC8|RVVUCzgNYg}Fe=Q%DfK?$) zM$2(fAF+0EWyA`t#-eF`w>e#c6hx&NMWGP(-cpw7+=6XL$#(g9dl6D0U!gq~%v3o_ z2Pm<}EC!H^t&a}hADs2ZKBQS|^P^CV>xfJvNzRJv#nGotKu%DmAZt@?C zJ2_ilpI&dnWWR_dmlhi#f_Sv4k?m~b#Q)5vkFPhOSDr}f=>Sr)*wdKZJPZ_K$Ya0# z`0V&FOl@x0{I4Yf0P){li@d8RGpz9J$0j89)VUS0R7qhr4pk6g3YP~D4vtnZA=ma>Aj_j zh>S#?tM9RXaz`ZJJ_C0XwmVu4;$j1*~Z2tiVQoLRO delta 643 zcmW-fv5J*J42Ajct|;OK1s6qO{jb~TVlkOXGMSfAlFSTti?vo3*1}z|v(`@dA3$O4 zUF=-3vJgw(z}cJnaK7Z6T%25-eEKkLV&UGQ#?ZMVyA(`OVh$8FF{qtxZyX(N|4c7u zFsxABj8n#9#X^sbFcEVLS$uiDdcK-lkIb>uVxXu5Rxsz-IzU$UnwRTWzD~1|Fr>yF zba=&HII{HABAHVc+n%o8JsOTzbpcgc6F{a=w1Ew_&C%QG%!%qMM+Y)m9Udw^sOc`{Lfbyu0;dHCrdDq1SF1 z(7cx>*f7Ve)<-zByuJN!nnNNob+O_NLm+iP)t0rJy^|7oLDI-MMh;(qMpa?&L$&vUT)t1cp35Fhnj2kip^ZA19gXj2qh}* zB3T{2-9uKxnbT@@4aTnxnN`G!?1bFuLmahzi-;Q2N+zIXil? zKSQII*&&SD5TcD%)Z0)J2CgOTsPgF7^uV%Su2p*|fITF^-~yv-f#OBC-`2;=)8kj` E|8#7=6951J diff --git a/user_manual/locale/source/.doctrees/groupware/sync_thunderbird.doctree b/user_manual/locale/source/.doctrees/groupware/sync_thunderbird.doctree index 2c9d442c605902415560af2e63cd8d1c55241aeb..6d846a1f744e5e63b6c2ee42f3635d866a94cfe7 100644 GIT binary patch delta 1032 zcmX9-yQ*GQ5N7`;#9&a5hX{sX{(bNQ$DqzyYu06a2JNgYgt;v(BPdp;ltT)eKZPg= zX;P&SHl)#)5Gz3+z!$JmaQ7>tJO^F=kP$BQd9Hxnb_w zDW|&qvAlV0ooyO94D;4;w$3Sc*U4fEV-`M~U;l2!*(=RaT~f!E8;_ah^zNA%TY?kB$RN za4Nm3kQEFOW=)R{kDuEgK794B6|7LrGW~dof{Z!kHXNO~H}J##i~aWH?LU_lvWLZ? zui-$gBqNk>Bs2^5W_ZQ@g(oQV7ivRe)s10ubfgt=D<@{Lb6k2k+h5-L=$AvvoF}m?(|hAtLIMjk|6S zQaM?3Yw-tiBr@R~Al;n6<{+yPCE9+)p97VT86WON8a7qY#ze@#F=WxaJsqFi{0}H@ BB}xDQ delta 1034 zcmXAozlvr>5XHGO%euITZK&bAj)^G*IXg8E$1Cwt9 zQ4maw41^1t=u3!^pby{+7%5mYa-&;RpRRN2*N-l@N0-}Azig>5*0GFnkznQ}vx|=< zh)uj8?SE{q-AIaBJl9-`64q69Az3FYv!YC~#s05q@!KXo|1|H5C1BGy`QjOBpQF~+E}&_tL^&wjjrao9h9@y{(ajsUec zmOjH!{CY++vc@h@|M&duy@y*Opw6)qX(J{B8!iLdB8FBLwX(}gPficIrp9WEV2p=t z@vueR=3MdBb^P?+8#|wWx253*5y7awdiW4lshANJBp`FTj_~lx$6H!?vG=0=YP%4~ zcGRoVsW$pOfU>l%+-TmEyL{pklyE z&De8Z`~8d0wv-FetQ_+KUBwrxSyZ^m%(2YL`;9k0JULLwN*b_?rRaUK*EZjK=kCeNk!=7OMAd=_@rJ||FvMAa$NmuN zX_~$Es9a$g1Q(IvUGR#frmGR}zv9oQDO-}=E92zHhhv3P>uynE%8XU@zw-|w6A@b2>P?()M=%L_tNGZz|dIHoaq zPOs8bu_w+5U+vy~W80lCb^=_>ECgv})QP>$+Q(?X>b1M?KVQFIH<<(jTl16!g+##f zPyi{(uvOgMK7Don;bXrn8%lJbIYyz5h+X>>rvi|5wA%clayK47-wM?MqmD%6Xt^jg zmC{Rx9N$?xwEXUgzn0CJG6+HAUeQMhmDMc1H!Nw^W99Epo-JF+nP&HCTsVYe1}np6 zFNMVz#-ZoE%b%p%~C0L??B zJ90Txo;~x;x@9aC>x951-!V4N>7H=LviiKwq{sLzX8dCQU zp8sdLmR)+Qu}#7-s@;|2z5PwKWuW7$H2F#?~!3){J2wH|>#umXFg<&X;Yv z8#0xYJ7MRpjw)4@iyF+_50!7e`0KKP)rrDmHbc-xt?^Ok;9Or#+WK->Bh}QPd)eU`}_IhWor^tGP{7qW#)+MY@(Et z^^zML^Zh=4b}1_BXyFCri(^&m1xcIP6q{?zG7Qaq$LjEm7fi2+p%NuZDXN#*LI1^}?(`M+sA0ZNV0KqW$gD zN6S{nh502YRYq6PF;d4F|DSjfhj;+|v%9miI~t;hrGY>|5EPl2oh@x8Abhoj)e~$i zBw)%YzD6+E*`~J<>?|!}5h38b_pBb=cka1!er6urSsvV3e*AfPsfx&C7*lOx#-*I|3^7phNAH z+)|#c`tIiS*Y_Vk@$0fNa*>i-tGQxv?oF^(1*oHB!hAsP?8!%)*9l#uW)IR-xqDA3 zz@2?oBRf)l|J2{h)@G`uOq|IPO;Humjob8@bE|wr{_*trvJH1h*fVA#WKzu*uL6LA z*2?vWynFGpb(5?#5^)-ZF#&1nDMoFqCFuD$=Khmse_yxhRHS8x+zBE6Hc2KjnszH( z`;qhfxo_94d8*nOrl*cV*tJ=ia-ZFw) z#sQtF=7a$xsTKN(^Xk=G(YKyBm}H7HOlfu-V@MW8$zBuhzk73ca0sc7SgszVd8Wuz zEhf#eX$hzAZ^5ajV`U%R{>8k;+Mg`$o%gf^J51*)Pf+Ux%2^@ky( z5EOQS9>+s4ZcV|^YtRxS<&%)F-n|jXL2)`DIisOVFb?u@EI0D3?U>su?|peVJsvg} ajG{W0sBNqPj<_z-qC(?@{OA3TF8&9BX>#5G diff --git a/user_manual/locale/source/.doctrees/index.doctree b/user_manual/locale/source/.doctrees/index.doctree index 1735894e2ca2d503af9e5ce690ea8a1e2d550055..abf150088c1c84b7b76d57f8d7132de233851b5b 100644 GIT binary patch delta 197 zcmWN}!3jb!3;k#WR3fRRZifAIo_ch^TR+QIjXkUc_?rET*bbOntuB+ZqhBXlpS8H%v3oxF#7i#I|=jr HoUVr-bc8tb delta 197 zcmWO0v26n}3`Sx2Tm*2uLI71M0vM3QpQJcKwg@Fkb7T%rVc_bNp2sWX`VV;Tb$i_& zKU=ComCA@J0pvc+tU@PHxtAej|J^=LsScZ?9suHy-d!*zLvsmGJ=EX%`;Wq84LpIM zC(r{F+)BX_!EFe?=gBWu`>Xx+mnGEH2Ir!sP)5trBC6!b#iFYdZ$Fl_yd>|`6op2t zsIFC6RJ9J_WSHdR`su;h`tI;Dq+ByOd+AOH+?pd;k5v`CUV`S*ljdy02r2qplSr1$rdla+JwFZW#mR16@7;!Gz}+!*YzcFM zn#*wDG{mL~we9-;`y~)0D3*QVJ1TKaQ7oFImZ?_uZNIZ6%$1U2o-;EniJLnN1B-*= zfI7jC&emT?-(FUeh;rbY&BUZ@&ktQ}|QzmnLX_KCg;Y|1gmWIzM4Hc2ScBpawiHT%omE>1olgjSq@ zthSgtf|O24ON#=iKy~1De){%KNKsqC+C`gTr`&ANY|zT=4PwWc_h$R~(L)c$+p-4 delta 642 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 I_UCv00rfY&-2eap delta 656 zcmWNPKZ@2t42Jo>#YL1wP=v)oM-;Z5KbcHY*zFBGfFzkr>0UsT1rMNn#g^I&i|_+G zv9Yu82$p*Y5lrgLJI_4tT-lX<{jp1RHFBxl8DeM&NtvRERK20__GfpoOL?(tsXmPu zrjRy9Y~H~zQ%2cdAHCZr7H_3zWvdIIG=Wz8=nB|$R_=$B;}3}@LMd^Jmjcs4s?jRw zwL?jSL zt8t!M8i0kkR&@0ls?15SZ1*3$4=iD?7BA{EB0#iTm6_G%Lggjfw})T$3CGIh#p|rW z#l|ZK&X9?*GMa6dr@wDKk(CS543`TCShKYf9n^-SX|e6%@yA^X1G#I2Wp1EDh@8~} zHN*{`cu47Af{77TnrbkOQPr}mFEZ&lfO&iI^k$cw3X8>O$UVquQKLGC!EBib%ns+z z{w5mEp_w$+p!j54Wm<Xl8i^kaF$R?}sqX4F!Nn*T zbzwphH4ud`=FUPPNOU1&p~SQbMsXQji5M56hEZ{)L$VRGaH0S6c9(PdR@cY>|EqK5 zh3%CWw$J@=v&2EkLXxO~DNEx>X3hCzUaxxa3El_Z|Dnv4d!0Ub~YXGnH60rRK!>l8v(_y1F|! zyUZJ2|C3_}+OyBij9ZPQrE)3iNh&ugWjH%Jx;y!X|LwccB}8&*v_ObnUAIIn#4gQ7 zoaf&7kL}W1FfCLi_e@@@R+Ypl1r9a2YV(#ees3XWX(MQ6L_k^+V{ew6L*yE@%!l7x z_m-NK5UggZgSbXE)<$Tf4Ca{P^Ed2o7Y%Oh7XGSCg!-iRq~@&_L8fu{OgotOz4bqv zC0G-{sc+8am(Konvsh}X!xI%}q-b`o)s57ItII-V+Ww8(#n)17 zpzhEkB`U0=VzPmKr`)p6?;V`kF0GgDYjaA22>q4f-6+%y4JOE7{_Y)j?Ja7pIqyel zCKOx~vqB~L(n2kr+wR)U2h(nPe6yr%xjN@^?13B;gyBjclGsr@^U=w}bHCZ#QcPpE zGI($%ZcPzgi)gIogLJ<7V7=d+d-UoSk1puUC=h0;!BYxeC3=qR zFqpv{69mjDdlPRES8Jj8dF|$}ZQq5<60DbE2ul(B5N9YL;9dn?>fmJJ% zV@0*Fi#A`A7t#2Lz_5tGM3gG7bUmSsY8`qDZN7Zlah&RjV+c;TIr1GDdh52j+|Sk_+R zK*g=RJ2` zLmv#zu4^x#M#zo@Mt2?L=p!iz`H7GG46$U@xc9)JM+cHd=yeqDL66#_?yg@xm>>Sw zpEt{ZXnd$PFl=BJQ_?1(0Y_w_o#zKHz7x%0SGkH&^{`qi)k~6)J${11qPthmzh(D> zyZ*g|1m8joKuI9UL5Bsm3KG;=DL;Sy@y~1lHBOB@tf@jdBn`ROz!`J}T8kX1{O)_c zvt7s=EXbj^3OUsPjgFNbaX0}c+dTcLlbg32mjI`L9RPw~&5o(YpuT%;I`gOh1@hG( zoT13Z1M@5(0f_7!NZ)gnGA~^E6WZZjbFq2?b3muUMKi^W+(-AVk9pg@e*kYYoPymn zvUOxND%`nZPtxlz)YcA z7*J{)strH}@n!z_oXFPz;j0YOBw4)QCFVK;an_@f2n#f{yS2cWetUImP>E-^qPR*;&#k4g zHA0@I{-}^U9{cEaflfy>->^s()mmi$51%(pMWN`r&TMx%9-n{t`cI)eBvc~?9DUVe*h@FgV^SCkH4~Aj@%5{C9Z)0R>?GCvQ$#VR;4(9{lqCKuS2geItU0O@(_oG zkzIvTqmNeSKfm?Vc8NuXO8{W*Sd82mQXHjA#>W&OmFCk=ejlGH_+SF+bp#JbNEd{& Q-g3lFVJT@|`u05ef6i9a#{d8T delta 2497 zcmW-jO{ktn6~}qsn;0aCVnC$Tc%O?(jkl%qan6}J)CPl~mHI)bwW!2)X3mT)E}~%7 zg)ME>LKRBvn}tG=>O$y3sT~!p;wMXXWoorFoqQO=SJ=UCLW(Ws5xi<|#0u5{0?^%kg77%4~UKD!W9>(J)r z-?sN|7Duf_Z^dd>a^gxEt~BY5N5o@1?>qLDV+R(<1)oDGmMGU)l8n+vPM&k>u3z09 zoL%M(um8!h12(eMN9r7Kw%m(ZiX0_nPEm(HTDm*=hX3v3H6xVVSehsAYV|pfP;s@G zT9SG0jsMs#!CS2@yDUSfD>g5<=*TYh+_mVu<&583YEGdh#bTT|=3xFjSei_cNLjl||Xk%dCtiA5`EI4y&x?ccav zS_&?PVOF8KOIpksdx8)n;W%S{@8HaKNsgo>HwG*q@xB(wI~sGQ7OEffckj4sZy9-% zQCt;vgHn6R!XG&d+FiT(VA@TOZ9S;i%~HNZj@p=j#eI?`_1MS z_JS=;YJw{4Tyf5iSa3RqQW~y4Snqe|9=-a|)py^2e0TBiaChh7qf2A8%pw{?q){n* zm57bF6LgcXyMFl6QZzajq6~J4D5p#@q}&1w&7KF%Yd3#w`!3GiVNK|%7s9VR+VH{0 zp0r11w;tf7-FwfxZFlX7*Ue{d{l?zX3~^FNh;xN*R-q`T)`R-0&FYbpm*ac(mS9CW zCZGFCc+i}!9g$DP1Me(SLRcF=_ z$eywZ9N0bm=rnrX)3XEJrPp$JuAHu5A;ZKs5(jZhbW*(?{VUnHz*?s~6c?+0 z_v-n#?0#_9zZayi19vqA8YB^UX;h?_UWtY@oj?EhXSR!u5mUmd;tZt2J)t!8u3i9+ zIF3?&_dVa)E-pD~5@YT)gRwcI3J7k?1#zf7&eNYdxp}+qf`0faC>#Z^m8Gah7LXr| z1Nrp7HcL)b9XNsU;>b7Lp(CUn$MhtvxOw5ypEe7Lg@Kk^_nlz0)*3LWZ0I^>jOK0k z{$aat5@Hk~4?;FFET}+P^x0ek&Fj3iUWB1R(T3|?`gc=##9P^p>700TI-+rp<6n87am2%g?>(*b*^DymlQCgflN%Kv{An7l#pIeO|x(cZ`8FqB&Nd zK_tkO8$yB^j*;bSS3h6*!dW1u6%^4{lY#n<*Y*zR;I1KfAM) zMc3X`a}KYL9b?uY;`3j=`#9Q}fLpvmpsgw6nl6Dd&@f>p@qF;BPa)tSXtY)YgBFv3 z%R2B3qbZK&w3m6)!zfErzkXnpz`$b~1Ha>lp*4=77sPgj(H|c# zV6v6`)qo2>boCpb4*?V0dbau8g|Zs&$a3l|l3AC%=!$EZ7d? Ypvp>-3ix24Ln4RqAcft$^zC`_|HGfx)c^nh diff --git a/user_manual/locale/source/.doctrees/universal_access.doctree b/user_manual/locale/source/.doctrees/universal_access.doctree index d61b58061889edd880f14469d09f6e3af42d089d..d78624a122071d679f05ce9f5ab9b8463f1cf037 100644 GIT binary patch delta 1896 zcmYjSJF8t)5N2OrL=7q zp-PXHOKi2YGNdoxO&{Mf*B*&eAC$YJ*hnZa1>Xb5P~1q%h1-6Dy(+52eSeCVk(($=MguIl_? z7c+}4rw{C#W-Trk9ZJ-da*C`j@JKW)SWHIC#k&qpb59znq|s{*m|v@vn1f4Ai|@nH za^)aytT_8XY_)jeE|q+iZq&mLWF9C~DHZV8QYOTMH?4zmG~fNd})m7#uJ zxw>)aj^*6px2HLA9HB9JNsWRP&Ta7MZ5R!oq-?5>9NCY(L4s@MBO7{0=C0f=R8N(h z4`WmP#yuyd?S^@Y8hJF!8ftBEL^aTd8wPKR|Gf9gG!F_Qrk?Z2av`Qi~KyYg!9L0O~__KIYxx<0akOdu-~KM@MFiO?czflP)%}B0DPIp;O1co@42_VaX&nM0?XB2 z@HKKw4DYEBw?C1vocI*Q%LuiQK?2FU)bm=~5L;+#D3;6aT`bn4 zia7ibjifm%yJ7k=Sx2`poa|)crffj2~viJy%WSAvqwGF%<(X${~kpNkR z)f1%-ZTR9!0m~r_D|J(SET5US(JvW{(-9yLq1B)@4e@J{P`1^pCyy^b6gSO+z`)*I zopcJY@W5(CU`?>>+eVg4Y7Yb9lC1d}2wk18%{gn`z$B&E#-5qKIB`Grg94Pxfb|2x z?#vZ|gxo+@mY#Mn+d=r?lSdJ)70Hup7-Tf-^W6cBB(658V|s}D~7HdAD$9qR*Hq&3J; z2?C^t;h>4P#HkZ$9_V)@;U{q_!M`AZVft=3KnDW?X>uE)1*s!rwDK;Q<+j)Qn`kNlZaO zv9{c5E_rqC%s<vMyK8e!1^oO*AeR delta 1900 zcmYjSJF8tq6lPyvL=7R$_)}uymwI(4KV`y2H7w-7w);Y&O%`~gaL_@0% z8eUpk)priOIDhvS+fG`fmRNFa~VXEE8qrwM^64ZNf z(X%a2?b|cWI=GfKh^O^US!QN$ySS07^?AuH#)u0C{V@7ByCYH7I0^@fW?B=*d%b8(|# z(7O7K`;JfBIH_>JszfA_lwE`^! z<@x718HP{=Hvz0Ni*<=Edwlf~SKcgMe!BDeG>Znyo`4$*Fjfg9*@I*Wo?K3t|M2qk zk%QAbN)0LWs=%2vC$$V!4Tv|D9Kr_QZyvfd&8bGIRDJT+z<$-Tnp8xF4eYo zN}N^Hs3+WmsjZF@*`TGxt0#^v?|d==-KaGu7a3|NH-a{o*n{#xP}FFv9hR5fyIZrc z_vD#?tx$oE2{yz7J$I!vbeD&d@%Cxxby@=x?4No|P2+@C|-<+?%d@|HuxGGq?<1?qLXZ zHZ=$gVpdm1jQ^`n<>+*{#smQkm5wkgrnQBf`tY8I`Ly`_?1Q_e`11H+Y(0FS3_Ny4 z*^wtTF_+pBm@KZW_t^i`4z$)~NHTT^Ga9g@kf-iP4sHx|SXaMy;uYWrNG;ha(E>$w z;zsq*bZ3DJ+NSrtProqDxfVwehNfsRKax*WBRW@yZMZK!IQjeBM%82?c15%&N(Be; z2qPei#YW#H@9Ss&0AwW%gs@vB4go#|KaxRB=@?TtI{WR^vs-fuc)oG1EDBp-ra>ZB zl1Hc@GS`Q_`TRSm_6+WDlp>uYb!guu%?|2hMBpYR2@HZ08QF3r> zfQ}dEPX9ZHj<{>FA$A6NLo$hEmKwbqY+>DT`PobRrkQdSkECK`I^m^N5$Fk7%7`J$ zWwY(yFJHvVLd KF0Y>bYR`W-mMcU6 diff --git a/user_manual/locale/source/.doctrees/user_2fa.doctree b/user_manual/locale/source/.doctrees/user_2fa.doctree index cb4b08f772d59f8f695eaaef8280c9029efbf1e8..12eac0fa1286442ed987ec6171862ab4034af485 100644 GIT binary patch delta 1300 zcmX|ByQ^PC5awJpM5BT!3`$5&UXX|4?9A+AP`Dc20o@$)a{=WUoC6=-kW3Wrp}_;sdxplB!wqc+}(fS z@3kkNhLtVX%+_a5iAIjoFqsx;y9cMPY=6G^-rg!{s?AXWDKodCLk847L0c@?Z2RD) zo6CwyrFH9w5|WTDY2djI-JYX`RhH_@GTh5)?{qpkf zYc(7>C$Ct9$84Gll_?q64n=6&gHxB5wF4B&G2v>QY7ffQ`EW5B)pZ=fU3}%|wK8Q@ zR34*o(}4Czn+Kdg|%}SU6)?7rr%8 z!CIL9Gh+AQ`ES=mlQabEg%h)x2zZbUjW`m}@QCb<3%{)@iK|f<%$akx=Ck)!-CV_p z=MmYDE*^^jr(vM8%5-DTwQDWKGDno$lyUp=(x-cCQYVTBYr-I2wcDJv_MBSGbq>6B z+rRw9@_L%+gWaoGFcw!%kZZI=Op$ONe4@AD%I$;C4=&$&X4kKNyt{ez!AeQMq7buc zW!9>$VSD!2HG1H@y>;#VWz97OZ)jF}u!69Oa^_K~h?L5(yF-_@$FH5=TZ^>;N+z=q zC(9vu5k&{LpqCHLUU$#p^V{_|PVKFS!sjS)q;kgUD6?}B!a(+!r9YXzpB^o%ahtJf zmXU~gwl2U4J6O|tAI!v#3oeVaxV-6q4^$F&M5;@6zW^W_9JmP4m zf?_^Uvy(-0?f>Z?9yqmYBXlI%3|CrM!0%t zlA;3{w%hyrOO!Ej&jm8p=tsCPXK59Hpm>-I+aGV=joT!*Is>13it8igxWfie$Yf2m Ll(F5tfzSO5L5Fl> delta 1299 zcmX|>y^CH&6odL)SnG>e0f1mkc2?m`yS@%(pxXoH)k_eh~+7Q>g*3p#JLnY=~ zDf)h4y?*(#*H50Z1xol z+iYdTR49sRu9=6+Q!5j|_Q$=0?bGn=dgHadP2f>7GYl9GC^>=L=dMTay492H!kw&s zkRI)X^Y>NBO3ZGxRwsc@LTu+o<@GMUwFwOXdvV45;!{@#;Dl4E17y_1>Hj@1X4k}G zNB;MwcZ#Yu4ZzbTjxBlN|E>N`Z@5#O{dRKa-KCG%EOFCBoQGoSn7^v8KN;d=H@up) zIH`2DEF4v0EY3?hu6M3qUjn(2F(v0y1#l diff --git a/user_manual/locale/source/.doctrees/userpreferences.doctree b/user_manual/locale/source/.doctrees/userpreferences.doctree index 26eaf901914c6da3ec3d0848e00d9e71f46db11f..9e713be48ce8f3ef02ef4b35c1b8c128e48c7924 100644 GIT binary patch delta 1711 zcmX|C%j?xu5cgh*tUxO4AwGUzEy^Hb&Y3xnF(d@3Ttx0#&p9)Ph&Bl=L;r$8zkwU2 z2bqNg#TTJg1<@jKQ|+RpXwyz=9n{<#xVfwO&Y92ip1-y_e{J>o)zuU-lpI3>q)LHR zqyXoX3PGSW`uyGMrwLNhuC>M1gmNi@y;iJAL+>h)=P%b+ClgZ=Or1idh?Oyx#=;#E zsHrS(?LN7lXoM^nfdVpd8jS~6Y5r~NQMoO*?s|1KMTw@01#&FJ28}JHP)3h{2-@ch z2an9>V9)Z--MW6P4J)P=I~kI6s9Y!$F;`N*wY>Xgo5PC-=5X)dQ`8nE)Bwy#YN1(I z2Fo2CBVxX@`StrgTJKb zwi#SresKSKl4=l|>k=eW9HY4?rCIUaqhzYvm0#?;GGPw{Hfm~W1S7h7v4nvB6c}jO z4qkfb>#5~hLWD5P0u}92dh`KtMn@NR@Oj-5xnV z^3BRuB06=Q9SWhja}qcWxvF)S4Y!k*_kX&Ya)#Keaa3|U3OJ~iVixNqmumk%{`P@C zCg46&lEK5NZ0c^L*d^uCE2k21xo~j3+Obq=42x#|u&-vwR0}dVQ)T zjZqaUrHwpEQnG+fYezS;jrp&mx2906Wlas@aO6&7G7q&5Fm?aJ7R&PJ<0p4dTFE^H z6+GPzOxfJCMXdr+=eV)Ok@?KtJ@bc8{yYVjqzzwQDA3^8VgVeej4h2^!*co9@4F`_ z3$u;E(wMU6o<>Y8=x8hi2+NhHZ>%O|t+|p@2!m7-YlvZJ)s0N<`sM61H&>Gl8(1(z zX^F_46H{e!MN&@LcthclGcxw%)*ez_szFd6n(rPLmn;cwhuQnGL#GI4LS+r5^ z4K~(W&Yo=RV=4PwOwhA+X9O$w9J9daHDDmG&eve~u3htIr`}&KpVHNYIYmg`E+}pY zkBJNzDe92m_J>U;9$HR3f7;dC{8jj+?6IPdOpi${sXWI_M-p* delta 1701 zcmX|C%j;ED6!u<;tUxO4AwGUbjnatNkF_7mkPxJD5IJkS*4}Fq(IlZ^=wDFk37jZB z$Sfo%4nmCzqCw!Knng$vjitsxefKAHxMy$GIw8G^Th(q->-h2dhfOH=;kAn_@aTiva$^2R-?^dt*=d`bb85k<#*m3DskcZ2SND=e zuJgtHhvsu`*YfVYeSM^n1yPA9WhLo_s{xA{=i!8%zW0{S{-u4hzyI%vtA=7!tz{#@ zu@MDbqC_An&i=3b#seR(w^H(bRFjy2J0{i=Ir{2ZeU;ERhnF+Ee^_k=;C0pem$TFU_0 zB@FgTRsH7R^2)<|*HeksTI{_PDl|H8W(2_GytI(zZpknAT%Fv=#f9!tF{RK353jkF z(pw0P*=_f}{Kz*`_T5o4jTAe6wMwy6!)W9qEW+Cd-+%PR6uWp0zGBKionVJ%u_j}4 z5wdQ$IkwD?eY=`Q$%WXptm-Lrl|!uMNAps) z%l&%byMuxgz-ZD&q#8^0VJKuO=)!HjaQevn+rd946C&7*eAY(6BI=W7EhffA@?Exf zPd{#j5c_CNQ4q6P=S0nA%Hp7v8}o(zPtQjW-GqGAHz^TB7-4p4%52oISTs`EW@di! z@Qn#x!z9_&)G~Q28aI;cyd_F_)91eq-`-*l9n0vv1A9d0Jh9SwJcYT z{=RdnCDa0R02C>EgSnEoGQYikwMAE~`-R<15WB&Zq2g{XHeKjG`z?xy@ zyaW2GmMu$82$YefZ!|fuoOt2%M!i-fv{ECIJ3tgy@$b@{!K+=YFQ2@4YqbUYA`LT( WwFp#PGc-*2L|}!Smy4(G-1i^wxA_JD diff --git a/user_manual/locale/source/.doctrees/webinterface.doctree b/user_manual/locale/source/.doctrees/webinterface.doctree index 31cada0213a3d442316846c1b6d06c01a6d62a95..0ba72108094f67205445d7f4ab4b625770c9121e 100644 GIT binary patch delta 1626 zcmX9;yQ`d45NGerMX!%0MF@#zzogMz4bIG&b7l@ALQK>c5+QbC;d#vY6D-pS5k!!$ z5Wym%q9Q@V8dHcU1VIZC3vIMXVJ8H!ia~I8!?MLL!<_j&Z(U#9y1w}0lf~4tkpe-` z$UIW6rH0NKn$?Q2ht&^@8;glG(MV~uf$J$$<5+@!I7`kYfAHD%VyZQdI(kIZ!JR?1 z7R0O#qa>3$BORUp+IMZ)!2rd&hQx_uttwCzM)Zwwgw=ODuP>$%Sw;;2T_PuowO6aq zdhV@e(Xg_6E-sb@1V*!AOxbU-LOrvTJj}?n&wroaTRpz}^kNxPCp3c=va*(>17!@# ziDK*pW}v;*m-oS9BL6=y^x9bb0#^SmJ}MP3qa;Uhe0Ac1{fo(jas$Q0A#)E_l~j87 zp_-g0+)Q42@Xo#^r6i0P&>v-~m|Kh?H{~IXq0N{1#Omk$7q^#9q_xmcLkk=U^MF=k z<1lLO$u@)U9=N?&g7hd5g3}_b&R(VvoGcfp#F$rC55D41MwO%q3UXnrwH62Liex`C zBrU5Ghjtbd#vGEdfVl-+&^mJO1ruoFJbIol9KJoZfYzK-F#t|+vv`CmF}T))Wv%V% z&48_#c?T&{R| zXnX1|QlLt$WLKp*(Bw>tNw!=>Y(w%p$1dzlQ5r%X!N?aB1~;-brl3g8k>|}MJ^Izw z#07>sRS_Gxa9T=^!oaLOv=RGe5+D0;dl}HNFlnjUIVH~8DO6`C3_3GdYK;CTGDXMf~koS`?qoo;^}UY8BNzp2VX-Akoi@5{BQj8T|FR_a_|918CVj4NTH&@Vr{_Dp@y7TzA;< z`P=8OEzSL%dRT+@;?z_O5o+zJ3JQ*OpUmH!`FN?#6o;kkJ;mtF)2muYy^D4vncqIO zH(z<-&xv6`D(+MdmD6IL>FN;y4g}^_**yIF*_%^~*}I@Z3NbNxdulA%i?N2%i>G)q zxO49Fsl?ITAO#}0eMa-&4%V8NeGjGHh4SCI-;OkLN!i`ykUfJrqleB5r?AJ!HqChW g#e*J2Lv`s~5AVk4F%#+|DtUNQE@rEjF1)wn+a delta 1617 zcmXw3J*!?t5azu%7ma9>LPDZBCu!7tklERp*;zz{n5Z!%LhQt5XFq;|WjY~3EaVh6 z76ug+2^wBw3K4}MXeAcfXp_QD2x6r{aPE5%PIJ!gnVIKfo_n`f_inE~|9CYgqb{l= zP$GZCREkB_GK3{)S%1H}vzkliA)rmd=%hl{3AM(^tcp6?`=4&F<}q|6)J`oh1<0jg z#wseDu>sa4;L+ueeYd8Zdl-2PW1*^&2NkT%G*cz4wElMIjn!PUh0bW?RS7v+AhuAu zhLnRQUiSyCc+ZxT1j}VqufnmA`A7}oC{QpD@A=gFYW9$nr$w|{-=;RCBl#3yb=TJ22K z(R!kuL>u<%@5|d~kFT#ja(~|}U4~?-HXKqT@0ca|Q+z1u8kg&Ia{c3hE8ElH9vFH} z785Buk0Q=~4-vXlUjDpvbp6(&J6ltSWSPT|lzd<%3t}Ux5jOL$>zfB(a~eYe*D|#M zL`*do^`A-%hKWYk^{GQUt64H6Mh4?zB#n$T*l;AS4T8dQ`S9Np?E+9N5h0Q!r*qT} z03jnIpbvIzeeJPJt2ve=b+j=^h;m@>D9|*zkezkZ<)6pz&%upUF;de2#F}*g2LmJy zB59=M%`?-QrbFAa(?G2kbI~1x3*r!kIaV4Lfa6BvcaB}&nZX)lii!@`4^dgWWDL80 zsepTKz$d@lnq%)hrli5`>h5cq5~Pfoa?_EGHZ{YE54LCVI;}QLqY5SKIRy>f4IDYZ zNP9Jpoc?QTYC}s%oSO*}`noV+4yhSeW^2yR@%5|t#MaykrG~q94?-hCZjLzDQEQH+ zimk8HwXMmg_h~?@`c8DjQoSJ)dtK%nHsxMV=eH;0=q@a~AYD0YMRSj#q{31h_U7V) zPwUnZ?re^PxfY7KXC=}`n4tO!)8^jQXYTHsT(j)7;g;|$@zmL?_{q7SW(mGpfXM|6B+|@$i(+A=?r}hQ)B4WyKg^ju z6?#zUT->l=Zn%!YqF6&8cysaR7p~95Zn_|x#0u4zG7UE&X5QUd8?d?f&5O6DmJA@# z?s=tv9#N$QcUTLKPW%7auzY>~qq)>D0CJ6{;6+^!^sp^3JR~dDJ>WN9`hAL)E!J2p zx%)j^%|p`)_|}Wo5EsDX%dZ#i9_h{&x_rYwQdZ3^gNn%T$f3HN#uLlV#m|m(8!n#* zfO$9tQ0+NHFXpsX&YNrhUi@W(?DkTM&KX(rQiAAPQd;Ux{GP23zkG0erV^vJTp)OG Wg6BC7<=S0OXE#+?zjFEA{r>@&1Jbtu diff --git a/user_manual/locale/source/groupware/mail.pot b/user_manual/locale/source/groupware/mail.pot index 5aa989511..44fe01176 100644 --- a/user_manual/locale/source/groupware/mail.pot +++ b/user_manual/locale/source/groupware/mail.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Nextcloud latest User Manual latest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-03-04 12:42+0000\n" +"POT-Creation-Date: 2025-06-13 10:52+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -635,15 +635,15 @@ msgid "Hover over the filter you wish to delete, then click the trash icon." msgstr "" #: ../../groupware/mail.rst:395 -msgid "Tests" +msgid "Conditions" msgstr "" #: ../../groupware/mail.rst:397 -msgid "Tests are applied to incoming emails on your mail server, targeting fields such as subject (the email\\'s subject line), from (the sender), and to (the recipient). You can use the following operators to define conditions for these fields:" +msgid "Conditions are applied to incoming emails on your mail server, targeting fields such as Subject, Sender, and Recipient. You can use the following operators to define conditions for these fields:" msgstr "" #: ../../groupware/mail.rst:399 -msgid "**is**: An exact match. The field must be identical to the provided value." +msgid "**is exactly**: An exact match. The field must be identical to the provided value." msgstr "" #: ../../groupware/mail.rst:400 @@ -674,90 +674,102 @@ msgstr "" msgid "**stop**: Halts the execution of the filter script. No further filters with will be processed after this action." msgstr "" -#: ../../groupware/mail.rst:414 -msgid "Follow-up reminders" +#: ../../groupware/mail.rst:413 +msgid "Create a filter from a message" msgstr "" -#: ../../groupware/mail.rst:418 -msgid "The Mail app will automatically remind you when an outgoing email did not receive a response. Each sent email will be analyzed by an AI to check whether a reply is expected. After four days all relevant emails will be shown in your priority inbox." +#: ../../groupware/mail.rst:417 +msgid "To create a filter from a given message, open the message and then open the menu by clicking on the three dots. Next, click on \"More actions\" followed by \"Create mail filter.\"" msgstr "" -#: ../../groupware/mail.rst:422 -msgid "When clicking on such an email a button will be shown to quickly follow up with all recipients. It is also possible to disable follow-up reminders for a sent email." +#: ../../groupware/mail.rst:419 +msgid "In the dialog, please select the conditions to match incoming messages and continue by clicking on \"Create mail filter.\"" msgstr "" #: ../../groupware/mail.rst:425 +msgid "Follow-up reminders" +msgstr "" + +#: ../../groupware/mail.rst:429 +msgid "The Mail app will automatically remind you when an outgoing email did not receive a response. Each sent email will be analyzed by an AI to check whether a reply is expected. After four days all relevant emails will be shown in your priority inbox." +msgstr "" + +#: ../../groupware/mail.rst:433 +msgid "When clicking on such an email a button will be shown to quickly follow up with all recipients. It is also possible to disable follow-up reminders for a sent email." +msgstr "" + +#: ../../groupware/mail.rst:436 msgid "Please note that the feature has to be enabled by the administrator." msgstr "" -#: ../../groupware/mail.rst:428 +#: ../../groupware/mail.rst:439 msgid "Security" msgstr "" -#: ../../groupware/mail.rst:431 +#: ../../groupware/mail.rst:442 msgid "Phishing detection" msgstr "" -#: ../../groupware/mail.rst:435 +#: ../../groupware/mail.rst:446 msgid "The Mail app will check for potential phishing attempts and will display a warning to the user." msgstr "" -#: ../../groupware/mail.rst:437 +#: ../../groupware/mail.rst:448 msgid "The checks are the following:" msgstr "" -#: ../../groupware/mail.rst:439 +#: ../../groupware/mail.rst:450 msgid "The sender address saved in the addressbook is not the same as the one in the mail account" msgstr "" -#: ../../groupware/mail.rst:440 +#: ../../groupware/mail.rst:451 msgid "The sender is using a custom email address that doesn't match the from address" msgstr "" -#: ../../groupware/mail.rst:441 +#: ../../groupware/mail.rst:452 msgid "The sent date is set in the future" msgstr "" -#: ../../groupware/mail.rst:442 +#: ../../groupware/mail.rst:453 msgid "Links in the message body are not pointing to the displayed text" msgstr "" -#: ../../groupware/mail.rst:443 +#: ../../groupware/mail.rst:454 msgid "The reply-to address is not the same as the sender address" msgstr "" -#: ../../groupware/mail.rst:445 +#: ../../groupware/mail.rst:456 msgid "Please note that the warning does not mean that the message is a phishing attempt. It only means that the Mail app detected a potential phishing attempt." msgstr "" -#: ../../groupware/mail.rst:448 +#: ../../groupware/mail.rst:459 msgid "Internal addresses" msgstr "" -#: ../../groupware/mail.rst:452 +#: ../../groupware/mail.rst:463 msgid "The Mail app allows adding internal addresses and domains, and will warn the user if the address is not in the list, when sending and upon receiving a message." msgstr "" -#: ../../groupware/mail.rst:454 +#: ../../groupware/mail.rst:465 msgid "To add an internal address:" msgstr "" -#: ../../groupware/mail.rst:456 +#: ../../groupware/mail.rst:467 msgid "Open the mail settings" msgstr "" -#: ../../groupware/mail.rst:457 +#: ../../groupware/mail.rst:468 msgid "Navigate to Privacy and security section" msgstr "" -#: ../../groupware/mail.rst:458 +#: ../../groupware/mail.rst:469 msgid "Enable the internal addresses by clicking on the checkbox" msgstr "" -#: ../../groupware/mail.rst:459 +#: ../../groupware/mail.rst:470 msgid "Click the Add internal address button" msgstr "" -#: ../../groupware/mail.rst:460 +#: ../../groupware/mail.rst:471 msgid "Enter the address or domain and click Add" msgstr "" From 42b90cf95586cf87f28d70a139d4c04833aca6f9 Mon Sep 17 00:00:00 2001 From: SebastianKrupinski Date: Fri, 13 Jun 2025 07:21:26 -0400 Subject: [PATCH 0087/1895] feat: mail display mode Signed-off-by: SebastianKrupinski --- .../images/settings_mail-ui-defaults.png | Bin 0 -> 16902 bytes admin_manual/groupware/mail.rst | 12 ++++++++++++ .../groupware/images/mail_display-mode.png | Bin 0 -> 13965 bytes user_manual/groupware/mail.rst | 16 ++++++++++++++++ 4 files changed, 28 insertions(+) create mode 100644 admin_manual/groupware/images/settings_mail-ui-defaults.png create mode 100644 user_manual/groupware/images/mail_display-mode.png diff --git a/admin_manual/groupware/images/settings_mail-ui-defaults.png b/admin_manual/groupware/images/settings_mail-ui-defaults.png new file mode 100644 index 0000000000000000000000000000000000000000..73c48ca5f0746537c8d5846a235c3ce4bb1f93f4 GIT binary patch literal 16902 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 literal 0 HcmV?d00001 diff --git a/admin_manual/groupware/mail.rst b/admin_manual/groupware/mail.rst index 22329ad03..fc093e977 100644 --- a/admin_manual/groupware/mail.rst +++ b/admin_manual/groupware/mail.rst @@ -86,6 +86,18 @@ Mailbox Share ------------- Users can share mailboxes with each other. So far, there is no UI for users to change the ACL in the Mail app, but if you want to use it, you need to enable it on the IMAP sever and configure the shares there. +.. _mail_ui_defaults: + +User Interface Preference Defaults +---------------------------------- + +.. versionadded:: 5.2 + +The Mail app allows administrators to set default user interface preferences for all users, these preferences can be changed by the user afterwards. This can be useful to ensure a consistent experience across the application. + +.. figure:: images/settings_mail-ui-defaults.png + :alt: User Interface Preference Defaults + .. _mail_llm_processing: LLM Processing diff --git a/user_manual/groupware/images/mail_display-mode.png b/user_manual/groupware/images/mail_display-mode.png new file mode 100644 index 0000000000000000000000000000000000000000..512198f365bfd4c200f53e0283ef2611ce89a17d GIT binary patch literal 13965 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 literal 0 HcmV?d00001 diff --git a/user_manual/groupware/mail.rst b/user_manual/groupware/mail.rst index 0db015091..d8f06b38c 100644 --- a/user_manual/groupware/mail.rst +++ b/user_manual/groupware/mail.rst @@ -20,6 +20,22 @@ Switch layout .. figure:: images/mail_layout.png +Message Display / Operation Mode +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +.. versionadded:: 5.2 + +Mail has the ability to switch between two different message view and operation modes: *Threaded* and *Singleton*. + +In *Threaded* mode, messages are grouped by conversation. In the mailbox message list, related messages are stacked so only the most recent message is shown, and all relates messages are shown in message display panel after the stacked message is selected. This is useful for following discussions and understanding the context of replies. In this mode, message operation like move and delete apply to the entire thread, meaning that when you move or delete a thread, all messages within that thread are affected. + +In *Singleton* mode, messages are displayed individually, in both the mailbox message list and message display panel and operation like move and delete apply to only the selected message. This mode is useful when you want to manage messages separately without affecting the entire conversation. + +1. Visit mail settings +2. Choose between *Threaded*, *Singleton* + +.. figure:: images/mail_display-mode.png + Add a new mail account ~~~~~~~~~~~~~~~~~~~~~~~ From 06dbaf29c7e448d61b18384be9624c239fb68b4a Mon Sep 17 00:00:00 2001 From: nextcloud-command Date: Fri, 13 Jun 2025 11:48:14 +0000 Subject: [PATCH 0088/1895] chore(l10n): Updates catalog templates (POT files fetched automatically by transifex) Signed-off-by: GitHub --- .../locale/source/.doctrees/contents.doctree | Bin 3690 -> 3690 bytes .../.doctrees/desktop/autoupdate.doctree | Bin 20370 -> 20370 bytes .../.doctrees/desktop/conflicts.doctree | Bin 11359 -> 11359 bytes .../source/.doctrees/desktop/faq.doctree | Bin 25394 -> 25394 bytes .../source/.doctrees/desktop/index.doctree | Bin 6809 -> 6809 bytes .../.doctrees/desktop/installation.doctree | Bin 42202 -> 42202 bytes .../source/.doctrees/desktop/macosvfs.doctree | Bin 21881 -> 21881 bytes .../.doctrees/desktop/updatechannel.doctree | Bin 10066 -> 10066 bytes .../source/.doctrees/desktop/usage.doctree | Bin 47333 -> 47333 bytes .../source/.doctrees/environment.pickle | Bin 193176 -> 193729 bytes .../external_storage/external_storage.doctree | Bin 4665 -> 4665 bytes .../.doctrees/external_storage/index.doctree | Bin 3051 -> 3051 bytes .../.doctrees/files/access_webdav.doctree | Bin 117974 -> 117974 bytes .../.doctrees/files/access_webgui.doctree | Bin 30751 -> 30751 bytes .../files/deleted_file_management.doctree | Bin 13478 -> 13478 bytes .../files/desktop_mobile_sync.doctree | Bin 7663 -> 7663 bytes .../.doctrees/files/encrypting_files.doctree | Bin 26909 -> 26909 bytes .../files/federated_cloud_sharing.doctree | Bin 11785 -> 11785 bytes .../source/.doctrees/files/file_drop.doctree | Bin 7301 -> 7301 bytes .../source/.doctrees/files/index.doctree | Bin 3384 -> 3384 bytes .../.doctrees/files/large_file_upload.doctree | Bin 6145 -> 6145 bytes .../source/.doctrees/files/projects.doctree | Bin 9373 -> 9373 bytes .../source/.doctrees/files/quota.doctree | Bin 8753 -> 8753 bytes .../source/.doctrees/files/sharing.doctree | Bin 25189 -> 25189 bytes .../files/transfer_ownership.doctree | Bin 11209 -> 11209 bytes .../.doctrees/files/version_control.doctree | Bin 9985 -> 9985 bytes .../.doctrees/groupware/absence.doctree | Bin 6559 -> 6559 bytes .../.doctrees/groupware/calendar.doctree | Bin 95192 -> 95192 bytes .../.doctrees/groupware/contacts.doctree | Bin 35151 -> 35151 bytes .../source/.doctrees/groupware/index.doctree | Bin 5467 -> 5467 bytes .../source/.doctrees/groupware/mail.doctree | Bin 92022 -> 96681 bytes .../.doctrees/groupware/sync_android.doctree | Bin 26331 -> 26331 bytes .../.doctrees/groupware/sync_gnome.doctree | Bin 10363 -> 10363 bytes .../.doctrees/groupware/sync_ios.doctree | Bin 17117 -> 17117 bytes .../.doctrees/groupware/sync_kde.doctree | Bin 19160 -> 19160 bytes .../.doctrees/groupware/sync_osx.doctree | Bin 14298 -> 14298 bytes .../groupware/sync_thunderbird.doctree | Bin 17418 -> 17418 bytes .../groupware/sync_windows10.doctree | Bin 20814 -> 20814 bytes .../locale/source/.doctrees/index.doctree | Bin 5871 -> 5871 bytes .../.doctrees/session_management.doctree | Bin 10148 -> 10148 bytes .../.doctrees/talk/advanced_features.doctree | Bin 40127 -> 40127 bytes .../source/.doctrees/talk/index.doctree | Bin 4325 -> 4325 bytes .../talk/join_a_call_or_chat_as_guest.doctree | Bin 12695 -> 12695 bytes .../source/.doctrees/talk/talk_basics.doctree | Bin 40208 -> 40208 bytes .../source/.doctrees/universal_access.doctree | Bin 23626 -> 23626 bytes .../locale/source/.doctrees/user_2fa.doctree | Bin 19655 -> 19655 bytes .../source/.doctrees/userpreferences.doctree | Bin 21376 -> 21376 bytes .../source/.doctrees/webinterface.doctree | Bin 23535 -> 23535 bytes user_manual/locale/source/groupware/mail.pot | 415 +++++++++--------- 49 files changed, 218 insertions(+), 197 deletions(-) diff --git a/user_manual/locale/source/.doctrees/contents.doctree b/user_manual/locale/source/.doctrees/contents.doctree index 68a2764dd168fbf88aa8ae91305ffe2d9d99f246..53ca8d38f42d62d1dd7dd5a3390621af5ebe1971 100644 GIT binary patch delta 83 zcmV~$?FoP&5CBk$el>%E&;puw>P^rb_o4Fz?$i%=2zqb2>7H-#CR77<4n`S@7Ez3V j+&ig=K^n*UF8<0PGC)SI0H($y)TAd6Xn}jh`HL2gQ%u$V#m j0ea)A82K9e^0+{3$^_Um$iLL2bP=o;D`OKL$9irbCpZ^r diff --git a/user_manual/locale/source/.doctrees/desktop/autoupdate.doctree b/user_manual/locale/source/.doctrees/desktop/autoupdate.doctree index aba80fc1a5634ad1e0bcb21be2f9beb4a8862bb0..fe23e5e7d8efc33ccb8a42d769a627056bdc53d5 100644 GIT binary patch delta 1420 zcmX|>J*b^U5Qh2gB^r!Gl;DLR+`US~7z6t=J3pcXK@jW=Vj)`0{!ANe#M;KnCPzyN zY9|Pht!=ar3rS%Y3lR%7rC^Fw&bfjI4xH~}&h9(&KJVPTwcWh6-Tq<=*on0#;RXaV zwU%)-iJf{j8({0Z?Zy^{B0$bkW;I|e4Ryp4ktZf%>+6j}IS7zhtYAy22$a~>a9~NJ zWE-k6?mm0?c=zL(_X0{OL`5Yb0<*P2Q%2=E{6(d--hSwrEzE&r(5frR&_SeVETxw` zTh6hFANOIPsF@R_>K6l-skKXvk*(%j6VkeN_WD5(p;DnKmnvW#TEfngYsstth1WNa zTz37VOdc}3Hi6MM$1+-u_b=RYKWlYAXC09VIIEV*?yOrw4brGLkA4U#dxf#( zo(L*S8w2xzm|a~N)z%+JzaIpf(Tru^K6!6h5R)iToRAw)U-vG)zJ;8}EaE1pX1^zk z%vpvQXrs|(tT&%}?JyMcMqE+JlmQbcNbZ*WjYaG^osx0)`1??LMQ)fF#sEiBJD@dV z#tylft#8B6ThMHsYxOZXjs(4tHJrt9oURb_y8ZO?havADs-R7AY0>B6aHIdUQ5dQ2 z9$fk*s6sC6rNw7agk=ATe(LlnXwmi0v!8B(BS&c{0P0nBN~IQCYtsSgslfW`xp&-0 z!vwtZ5Yu;omlD$(Ni3wO&-2R^}n0X=fAuXM{<1` zokbAOJ+-OH39jI=A=n+kuc4FYHaclh-E2}#msi$^kN=N$H@T&DMR;mI;+mK zk^}5hIa%jlyt^Hn15P@~`^&&49%}MkV9mlKd{>zuPlc{~=>W=vrjL~-r5ls&|f=4m^AL}))eY^!g&OCfOc(cxy>Qwf$ p_(0qmWLb~D^44MCt`4#I!gNN)6vw8vo-F!e0bji9qgT(J`xla$l4k$_ delta 1420 zcmX|BF{oWd5aqs4G#H5}!9WoHekEdzf!W=e*;!G7AP9B_u@Eh0XLnn%5o;SOn>;Ng zsGT50wzkniEF^_pEJQ5Sl!7TzIqw(3eZ{?RcjlZq=giGp+s#|s?Ju`5tdt@uHY}lZ zk}(-005e&s7}xjPds~<^3qt~ZYAE+mrKZ0In~7_kYpjB2CW zw4#OfpFe!O|LM&8q4y-zL9xoj8KYLw7MrkW%!6>f{m?VsG)-+IgUvV*XRE0UNJS^5 zUZR+n`zX}L+OS$Ktzy^S=18#`5o?ED$GU#@#x4{`GDyWAK(C`sD&k2@D>=DlVFjLDR;`Sn&92NYN*kNvd^WSD_WRbt1OTLr3wsY@Cp#&unJ;+tIn zA;@5Wi;@qWgIQFE-hh#e)Hmw!C6Cf)~G3> zl9S-%%BQBIW*D;my!eNssaK_>DhTJi!6X-3DBKSTVU1)69bhR0h+^wElhevn}KlefTwwIlYm_1`sQey2(mTNbBq8-q{_e z>eZpUMDDUOM6_qh*@HD$s_cJ{*Vc`zXLiRlq_~F$6)c$YY}{3=X=DEq;q>5F*WTTQ zAug4~)LM_oG&Jf+o)V(!jdiX7o?%y(z%n7tgngFkmmFACIb>tnKEMm>eENF}sF~-O z?ho)Bi%D}$ICqaqVjukeBK{WYU@IdQu{02CtEJmaSw-?89k!mN54V%TjBX&SYKDGW z+w^N*lF9QE^Jxy&9lp8+7%n6nz|Vm?LAU~@;&wqlIODn`%Qum)j95B3km*h(-v%Wn zW$^vr@YGqHtn)A4b-tKu#o0Z~9#EIWQ#-)oa3^~h@suyV^uZR)6O#QqbTN#)FYCi`D7DMF3(~yh{2%)~jFtWDAT9M~TXZDJ0*Y?iKZ+ oR^MzoC$Gm}dFv>YM(P{TMPPBD(eq92&zXs-F~a)z)pO_m1MUZx%m4rY diff --git a/user_manual/locale/source/.doctrees/desktop/conflicts.doctree b/user_manual/locale/source/.doctrees/desktop/conflicts.doctree index bd2bd149098fe07a7063794107420577be0e87ed..a822d122ca7c4c3308c8be2528817f2de6e77c74 100644 GIT binary patch delta 590 zcmXAmJ&M&q5X5=!xq>1h2nH)G^E|r#i)B~7^@V|s0 z;t>{1OpV0Q5yPgci=uuvmp7N6-|mh?fD9EGhm!U%>x@OJIuz^;uTP)OFHT=}Bbi7c z8!>7CjmDO{Gz(%Xz(~G5+rK&_&FW}vv^p{18-;sjM1 zixQfZ5ac%c_U-nYLz3dTLUY6*5}MX}loADqI?2r2)!m=F6uDMiA;hNC3R+%L28-e5 zUFY`l-t*mY0)ZF^w)LyPP9Xw;UO-FXd3`#jwB5S@Yj=ds1*wo{Syq>SI(Kf>E63>V zzqLMidPp>ehv>s74{PDAqs^FNzG`pt{A`!hnAf1ydCl7ee6H9YPPL=5%l7{9%|4kakHrKl z14*&gbYZQNr46S!w|5uccS(#ij2$(CGB(SM?2b%c`vSDRPA~R}e8`|Wtm+C}loUNv PXl3;lFt$HWuI~H=yN0JZ delta 590 zcmXAnF^bhe42OAdT|p5M1dA1xd7fZ0lT0R!H?UmTPLi2qJ39-#fm*(8J%Eh}|4RrW z9$~@8)=Dg$#r{X~`@ZDn^5*i(yWJs>2SjZJc%pF8JYh~_uVk~>ygq(DJ3oHic?t&= zVw6IJC_@KI6%U<+9JOyR_ODM;ZW$Z3Jl!*vO5LHj0!~#2n&bHM^jnHbb#yE=ildFH znWOc}+C89I-M-&_dy)o7nFOI>hA_Ev4_7O_HZ9o4c6I;PE}?4Bin#`0G0>L53Dpo8 z419a_;9_^^k%P#3F042tcLJ+<&M2j8cw8S3DQ$Ni{@xwNVggoB<$+{k+yOId4GC1h@&o_t)i zlRSEEsAWx`d$8Smu-*M|3%vqbnGv#5j-ZuH z8O1V<>Yv-Ycg~&NeY4#;OafWtj}41so1)6>ePu4M@lV=cJTSLb!(Pnf;XI|qtNb`r+*IQ zy9{rHLk7jj+7+>R71db$-umg8i(4puz2}NLQl{F9O|MQPwdim5s>5gZx8Q%XS*zY* zkYHw^&Mh{@qJEoyWO8gwlsPBItrU=!+xq+b?^}?DB8{vdqEDvI(C9UH z=%5ZKt;a9FxE}zs#DO(cQyS{y%priPFuTB*>*$p~wg5VqdjoaNkn7`Es|7TVGN4GD z>oR=ns4-TZh^2QWnZ$7posQqg@%Zuz_{m-%olRVP%%G%o>V&AAG7N{-##lentu3HJ zPCByyHHu71-Fk{{k&Z3dTpyJ4d!a{Ti?J(6r0FVi)Mc7$)6LjQUHAD5N5Z?#gi;uc zGPCPguUiHto%zcQI2k&yuE4vM_i$)%E`6-F7HUGtaD=ocNK|1tifC0s(W` ztTR{6`x4Pnk3-b6h?;*q6KWnhq$h@+mtH-VTFpFtsnRpjh$6K!8F^%Mt-^JEb?x+% z!A)ruva7lz!NwT>oJ&G;vvp@5jdxJEM8r6m2Oba16MuU*CK8 F;9tCVn5h5& delta 1441 zcmW-hv8!E05QjPMVMHDY1QbnS-bN6EMA_Myo!u2BsF9FBKp|i~GrKD(tfQ7`t>gy( z01>-D%o4#u>;hsH8w*LHAlM2DlFGU1?mcJE?#%c5X74@N?mgJk_St#2UA(aFpZWAKRBCZ( zuF?6@0N+7Jt=ZD5+VAcGTa=c z%wA{aloBXJHO;cVcQ7+Ce zBd2vae(%-CoQ(lks*vj=N-!7=RS_EE3hDEMU~$aSNpYq~$q_s30UD)hg`8piOt<{R z-U}l8V?c@sE(ug~Vw26Mp|6km{6P>c#4xDo?BtC$H&q0ged4T@zV6qrwopM03?XLo zz}$=}n#tQ%ZVj8Qn{WKE1;?%~vTAXL#SN*oM)eYt8K}y-{^n_?YQ34qkw!+^SM8(b z15;;H$PM60;@`d%oko^K-o3IWAKKg`HcGWRUF(8#Z5JPI!Qaiq`*^WY6s}ENY|k=5 zww~Kgu3lJY-#$7F9>~P*Hc(DftqREAbn{AbOC_!=m#%FgC1INgF0_Ylv-&+SoJbur z=Op%Izdzm^ZaH>nG0l!_lOutHhu^TIO7xz@%v9+H*H0M&vp@EME7n*s2JcLkP6xu9U?5_5~S1o965 hI)0D$!#alw?$A|8se|bJ3CwR)$P8WnFwchOmN-hF}?M2!mNsEAV)Kc>DGHaK7Cf_S@s-^5`l}E~8b} z&`yRKR2j4lj#-69VE)Fu{Cr3|ErMd?4$cT1oqA!X?j_bPXv?4D=d|lZhORclaYm~y zJ`Yzht+f&Z94<~i&cua8R>m4Kw`Q|<;y|jX>zd`}^fpc6rBEwT3Ob@{%ietiST-M( j+Be7d&0U(J!}?7g$l`1A5Csb{Q$|-b|6-Q?cC+~eY<_k% diff --git a/user_manual/locale/source/.doctrees/desktop/installation.doctree b/user_manual/locale/source/.doctrees/desktop/installation.doctree index eec70f41378fc77e3461ed87a53f38e177fc4f7b..fd350a9fcc36df5fa5a37b50b288979ea90f9d27 100644 GIT binary patch delta 3020 zcmYjTZK$V375D$YS6R@O%w3}0+WXwvbait(GjnF}4TpX3oq9Unr|h zgQTStF*B-XD@3def*=cX0wap(OSakesV^y}L7z-N7J@|mp1Z3A_wCP}=R9YA=l61+ zIkSG|%=+0OM=VO~wF5OX1vA1NnW-U#8?y2?M)cYF7 zKQFm%W6B=S6}3bn%sr;&oR2g*V6l!B`k`foqIS|hE8qECX z%buNpk~uJGlbz zwRPuqPoK>fk2?=sx!MXg_FlEtPz|?;F~*EfCe&0+*74heA6ai_Pu>;f6e*)*$~C7h z#$!z2N2%wKy7|zpQz$7ptz->GP2?oo8mT7b;CxauUO2R8Jw^4gR|^bEW>X1ZQwl94 z%EBe-*t31b#^kIEg62Yt8N3OpTXGF!HK|xz%Gf#lhZSm3@90K-_S|q!k}hHvq+&AQ zV7&YafD!`P+%SEkT=6t+S{wn=R$F8XP>#$yM=zQmJMs`-OsJ;4`NRwk3VL_8pn8#* z?EfD=H2?g{+ox0jT8}0MSGil2jPjxp7=nmqnf90Q-QKH1eF?F zje#UChsVy*OIA}0zIF?KHg8$*6*2uq3_iyWaqN~ob@k!-sdwEmb=NC7BR+x6(Q<|i zJMhn7Wbm|Gc0P6WBU7o4E2d@=$S)>k5IU=CF%?%+qw`e{%wIb8Dypgn{W7XL=uJ~m zl9pq%0ZyRj4nIJL=XcA&c}2%3F&KmG5kCVbao}Dzc(7#~6|S&b{Q-J%VguMc)Xr5n zc+iw%SsaI|_2}>X!Nc><%+pi%peQ$ErG@3NP-@-D${j2EkBwxtu?I(R}mKcg|;zrFkcQ zZUQS}%upXgJT^$Gu9!$oOf68~g7uBS`QuY|sa1+hmMq*Opnq6V_oZM^7|rg%SLFUF z1!&fJu@(YkZvlz`)n){1V)lDk#XPkFRZ7f!KMLj-78$e3PQm9W*TT5 zz^`%N4SP4Ys)G?EQJZ|^U=~k_u*%%5jfjr%i}&BTF~M)Zw3b~?0+tf|q{FCfc3ncP z30K~pcRljPoz+&3IMNVMuu#uV@H@b~x+k>D^7`RRKe%tT(DLFm$xDKh zbz23-iYy(^>5CU`XEYBywPIV~(BaV@_KDS^IUj-#r{_OCba39d_1_b#l7p{S(T3!L zIUygcDn@7x!fCwawy)!@E}4>zgZ(fYAHjRGD5@el;R}5{b^FG8a;Su0U7)m#*pR4f zn4HI=0eQLc;-_!}7(Ps0dW#-DjO__)1CW6+YqEiKJaNZ?HI#|i$pON!p0O7dtT~to zgn)$VRpysI``i|o+oLzI4Ge=6G)_60WR_I`Tf&^p+jmL2|Kw5RputoN;t~nK1=Pd` z7z6{U3iRyw-+k8_luWXO3`tl_Gl0L{w`#1xGGUt^_nvwLAqHi~+L3SG!JaVpAPD`| zh+_3k#_=zo0BQpB$2*J<73Ru-G-8@D0?1%6_g{a-f|J?ifaG-0@~%@=B1Y7Qn z^J{NiZ6W>~^r<0Zi7Y`>z=35Z$W?5xwivi=)@9ulU{{ZT?fe!!x delta 3019 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 diff --git a/user_manual/locale/source/.doctrees/desktop/macosvfs.doctree b/user_manual/locale/source/.doctrees/desktop/macosvfs.doctree index aecde24721a60795658c0e4ec7807d5cfeb7fe2a..45eea7cf495a4d78ed522ede888f7797433ca774 100644 GIT binary patch delta 1817 zcmYLKP3Wgn6z(@e%=jEOzW=WVO%pli+;i_eHzFELY$&Bfy61jaF_Yb7PbpGAw)SQy zdQt2w*|D(oU6w4U+2Hw=|6jek_uTV7_xXA+p5I(Nzxn9=X6c!kVSDv3>mV-xf>U#%Qcls{)OO7+Pzo_RxEq zef#6_WqbDMk?pHTK3!tu);r$R!YWF&C7M;GYBz3f{|$e#cu71Oi6=7ElH8ba|5&B> z(dqxKFJ1A?lDszROfh@c#@Va@HIBvto~Z3ZSYN;Lz0DF+$-_#Itu#$qjJv0l^9aTk zQ{124zI^rP3)d8xl-U5YQ?5OS;oeNFMwxOjeD<0POVrFoXB#zUbq1{yhi9z8z(wGL z;ePEGdzcC4xr!=eh|Ogt>?}#SMT*;}j-1@Sc1>?pCxl;5k_O z+I4R&v*e_)Cz1#`oLwWE<<2`IXZHQ!_4(`Hy>zcsX*Nf1mZyd?YoK1LMNU}~h4t8t zr#DL}l&3{X+(pI3qf0kUG0U8-^Lp;4KVZFBW**f#T%xIg^*%=+n3HEC?&}-3#KVj2 zjM&m_nI>Mv3V$-dR!TK{(DnPhpAIiBHq1sGJrB*e=#H11t4A7+8?HYd|NGDq#lVaW zlGb&y);99s$hl$h%z6Fit}~mx$(cCofM5)o<#MAj0X4R4L>tUA;R+OQRwseZArCFE@)-*pqsK>PTu9YZPE2 zutDIg>w58?!ywf#kw8q0LleBJFbGkEYQ?04^_F|jU>5;Q9z_XQLXlZ4= zK+kTLDb*$tAlV{}G>}hEgR9XPP$+Ldcyw<)B|mQ#Knt@;o3)u*4yCdUgfyUBl8*y3 zuV?icOlRzLR}FLOPr}40ZRIMN8 zC$T$3kcS%Zo&P&|^BE;3s0eR+SZ^)o4#8Bh5d|zF(t;Z3QwBy&LX8yi_Otu`+Et1; z?wLwLn9*sYR%pvOH+w@#{ntP1pZC8FvJBOSC?-KwFci0BUQue@D+)%j@{a9S4}81y z!DyW7twEDX>@C|a_m~cO$UIp4%Y#@uIQuSWVIUgOxHzXVoI0dXN^|?pLx1hTb|HHa zR5UJM40deB6=ZTJ(e?d@U)Z2g!97>}~dNr9n&%GcdjZXH0Y+Ac8#7xV`Y`?@K`0h#<`x@PPtyt1Gw* zK}JL!?%#9!%VX=ZOT2_B0TSsMrLSDv`+=)V|>7JC2y delta 1805 zcmX|CO~|KH6z`drczq8WA7lQ{c%x||_ug~vz2`(kV@zx)r9?XS%L$!Au7DG=w zD7O*MEicN^<+E$f&MHx2ErO%bZxH^t8e7+b6P&u`scV1Rv?5fLddEbZ$QSJvU5duF zcyi0(JB}@9uG?MS-2GzantUtSImeCt2$Et;y@cR`a~9HaX>UgH=W~n2TB$9nW31Ck zsT51)O5Ir1{x95JUcLVNS!`r<0YqFlXDTUpte36%)||M5;`QwtKAcc(l!#l44oj6( zB)HUb4V-Z+bq2ODtf-X^D%!U3`qFJ5T)j!4u?89DLt_~r zu?wfvq+0h{*TZ+5p5{o&mm$$JUKU{AEr^%V6^Im<*Ryy2G0nafYQy0>h^}U@ElH)} zdq}R5<@KE-ac2f8-DzrhP~fNpM8zeGqq2Lw>=)&id|g zIW#96Hui^5=6zr#T6Kj+0gGJC)?ZKD1|WKk15_CZW`YDchYV0ada5Ib_4fO}ndad3 znb%ab7{eh(A&e~5OHnTp*DDX~pjQc%eUR4E{_xpyi6N)#!CD5$>yZavN3YglWcUa+ zVW`tmOA&Juf?z~|dcnOg%~&XARzauC08!QFo<;)e(O2=y$EP;y$?yyM5k&(dkQ(+9 zkM~1k%=^~rh=~K)t!Mc8X@fXuH6vuK8YkCF_G7r}UBXv&tGo4<^xQOS*D*X%58hZ* zw1oy66saANV6tufNq%OU9YaKLXK@~ya%?%3l+?6{i}1~Qx1K#T8>Vz!dhT&xHLRml zb89%gyW+<3qn2jJk2ED5l|*)gEd2C4WOpzgew;7 z>+zHKPBUCkkX2?C#3xNsP$L7#I*}rcG;Ap!6CM-8>TPF+!_-5S$m=ST3CU zebaNxjN~Rr8+&Gns+z$uZUff-UtnE+a-E$ZO1oIiTshz>=n5xBWF{_xX4_m@emec@ zCUwO*9(4`WCWY$v!?VEysYN~rto5d+?t*a87TGE#cZZE}Wq^>TCD)dV&vA?N8&6+z F-M<8O3qAk< diff --git a/user_manual/locale/source/.doctrees/desktop/updatechannel.doctree b/user_manual/locale/source/.doctrees/desktop/updatechannel.doctree index f464b2c7304d17381a2844aeb691d7553bfdebde..ad6538667572b29704e6b43022485a4f777e52e9 100644 GIT binary patch delta 718 zcmYL{O=?v^5QVu<2qv2NR1iVJYr$lqgX-$)s_Kyl4jg3-_U~A60Zw!UcP4@h5F~gf zx{WNrkSz$#t*e65;&AHJck1Ho;_Upxv|~gh@^N6L)>Nb9!X%Zm4hXb-pFU4cpqJup z65AjRQ8`douOSS@OnG^C?P}w^MBhUkNu<(9rR3mq;$Af70Y#Sgdv7NPxV#-I$yniq`wou*|DX2;< zbIGb+1V_@;Aj7JhuMWOBjiqo0CX_~Nu9hg}%mFDe2%GR^{&C}{tEKv2qA2=m%}>`Cs!pI`t@E-RIP0i8q`R#RhG0aXLrABTpDAPLIyt*F*L<0 z9Lq>(lcK@=+I#r*1t5`BIM!YyXagM*%KB^iHq90q zw?-psjg%W}ZdTd)02w9NSU=sl-OL7&doLY`0u30NvokqKVTvqc{e19onmL$_>WdYq zB3CrXmPtFISWV02_H2E1_hg!zX-!@wO3wr(EBGcPKiP#;!O3Uqa(Fb&c_2XHAt^TE zN_PKKh%jxmej*=-$0nJ0nl*eb{bD_S_|&rjT?%>qfCSAANb&&{*AQdRuwFd+zL|+V3yb?kAj_;hFc>8v zMrO?3a9(cC?yqkim(2{RblZ=^?Ni9Lbb>g<+h&&!?LYnZ$!;^FSsJNzNS%qf6$DIL p0}kqmS^v}TPG4^31nU1O4)kOacZIGg<(ge#z*zV6dUN*S@E^2e$sqs$ diff --git a/user_manual/locale/source/.doctrees/desktop/usage.doctree b/user_manual/locale/source/.doctrees/desktop/usage.doctree index 3ca0571b6e6a65a221f1be3be2dc559db24e3772..fd64581ea8a59e17847fcb1801e73d3c70f32cec 100644 GIT binary patch delta 3442 zcmYM1TgatV8OPb*G&;>VF+(6>qf>KsSY4gF|H|bpuDw-l0#!H9 z96mbVf9|2xRJ3*7W~o|+nAoC@UZUzPCOcdjn}fUGJny`E?`kcsi?Y$%z(v7kU4w}= zxoqQzT5U^SyZ88N%0m_9`*I*j9X7^bxPqr-J~VDy^09qat=5&tXBS8CT}#X%<-w6w zRh87FZvK9FJ->DTWpo`Fhl@d?DPkKHyOplA_G)lR+LnCiHO$BKNTZUIR$i*@u@n`C zYu;y9g7({I%7Fu`sj8N&b4GRVL~1M2Yz@O_+mx%RZEN0j@Q&3KOjRJ2LmWwZPN@ZP zt?3ec3B_$|Zmxdqi<7kGOjD7;b#WY2wTU05R9X+CZ%cmj{OeZ7Y7EUR->!z|dtbcQ z#wXXEZNhv{ZS<8#H-`^>da?{9MWt1@TJ+MMg$yGFAF8u@%%=|>UQM)TluK@mnn9;W zhGj%+n@8aKF+X#dmUXktKcvKslADg48v;43HCYYW9K7JUDM%`*_-JWZ#4Nzo4k>Nx zBRgF-)9Zh?&Lu^jPzIk#i;}^y=^(~M>s{O&*nMpC{E726_QHoJF{;|6N_G(2sS%aS za80#XnySSzm1%qU@+0?5R_MQK+f7o^QcJnUuANpUJ11SAJv<+L!;#f`RO3=ECD|yk zj@;C+;-UuDG#ve$sXX6)^!>o-ql&sYty5&iIl|IWO7xJum)sX>Z1zk~PR271t*Wt< z?M&bLmVFyWLTe~<3*$w{_N|(7>PBhJp;+9DTJ706r6%5__AxbLG)6(lG zwYlDg;)S3iYQF!C0B9Mv)+$<91Is1*YD*4KGZl?tY#(?17hbpd^_}N#9y-2vbM*Kl zYY14Sw1#B(ySO4*wW5tJW;A$t@Z_cQg%|&RwQkT`r>0XXkcU4Vl!L0lN!BrK{&4y6 z`I1Xct)>)P==`c{-@wY3m_2@lM|k|p{vWG7m;Pxg-J!6ijfQL4(R0zd>xh7?Qj|Rl z>?Lpc?c|}6p(`C?l+?l91$+V-pu9TF*~4?Z?Do}KD@)(Qj*^hE@Cx)@WRurv0ur5GiVyFsn$)dL;4v7{{;)e^KTLR9% zQa{^@WU<}UqJdOx5rV=QK`+N9DxN*PdBi+ADH9=@={jq8+gegMlSt-F9pw^vHfhy01v zy7x{DXkAk_VtOkvsNo2b9GuNO`s7xS^WEX=46SSO1p#3AVgSI@+@V4#uuk_hr}VB} zQw9T!5ovfW2_uNsRjk(nvGF`$36WpC?HWQv7Ev`96|7O&$DRhh(p@AmdTsNucgXH_ z#zys!WIaN1w%A}ib{hi*S>#OjPv3jqeBZkjX~^I?TMb-+TQM<=mYnZmM`V8U^H<)y zd%_wpAM(faF4A-^!}}4pEKb&>`D54Zhtv)$Gzn+NtgMcC3@kD?AGkb}GM{?S6+06- z5+!V@WX0bkbJjt_W#y%R_=bOfLwYZcNrjf#;|aujL@V&Vf|!UA(v)mI15WGNyfR9Xe! zV*0?Q=4)?eU&$)i3YPdSLV@Bg^n`sY9fq}D<|7}xjjblQ!7r??hP%lO89m^aZKQ5c zzJ&h4zq!NtP7UL{rORo#j*;gL?=)caLYR`^<8oU65p_X;JY0MEcyAO6- z^Qn)onF_XH%fK^Kci1tp`Mfx?z@PQf9j%ZEpDd zQ znPl|byUZu$JYcJfrfDEIb^gvBFYTV(B6g>8>5**@uTHpm^{!#VEQx1Uv%h@#;?-J( zq)9f%MMH}uO7=L#OA}0bO`VVxMgVaAQR*BZD0NG4$Bc3 zu|U;PMQoQclnO+5gWrY)a?6AV@4N>dMpcLetc2~skc^lv+XaE0F|0J^TfXtfT~lEF zZBT)^p*6kT=11US1?q@?TkjKhUv~}(>9rn2UqBwQKx|_OAvCOp(WTFS{?-$#qecl? z5C{=e$u#h85{s63i7}f4Coh_xzV|b)ntF8_>G0hW#RHk@5Kt3-?2n zwX=@xrVhFdnLfbSyWA^)jQJzq|L4wxA>}@XE(JlSfukqySbLdbCKI+PH-GI1%*5-C zzks<@nsWvZ(&Q_vOs~*1)R$9m-~7Oj|Gl$ri&|TxbG_%#h7sPP5loBQxgUdp>9dm7-&bl!jDB+PUCU z2_-teJ@VAvV>FVxlPbkXaBk?7d`^Sk#5p@epE>f0eOIq0QqxE0U!f zD@C?vy8ZiC>+X$i)psM@)tX2jB{M5swPzEX=Z{@F-*w=Q)s%S5WZ#=J)_EmjMskT& zb|tOrZR?wBUirc#qlTWeP-}5kT1p{jme{qlXOOc-9(9OlB#T7#v zs&*c&!{4*fR~^|LI{2|^^svmNa!znv#}d0JWvipoZgQL-K6nUN)Sjrx8$Y6x+}VF) z2Q3t>vy3u7bBK;>v^{7bRlIjSSTWH>%>*(qq&zy_Tyf#ArXH$FYUt3Naw)cCBxP1@ zGu`_UHq)zrJpo;(I~Y;1IsROHtGQ+$$LPxUPP5bIxs&H@>_v}Gv|xufBXE){SrrKZ z2nV1ZhAQ#w!{J?8jqR)`ZR`yzfdF(*U=EBfJj6Ec^E$;eHziRWdJI~!ba%}JB$g#&J zyKr1`Ri;~~Mo8=hq!<%Ib*?XyJuzQ&$!{QV@LIxPG7y8-lPWqDro_w5wasrYKQR#?n*ZDEo=bl}B?G2h3Thx&qeoG8IZP{cuLG|ja8o6oXf(BpACCNgN?Zb1r?Do~VNDRR=8f<{ZMzO6n#I6E}kp;LO zou51Tlhrg*@6lC0LpcM=$ZQc!bS!C9H_+OHYl%@M=`Au=q)2SA94&!OXP;gI)lbzA zR}-YnJOL+TL?TrgL8XywmmUE6SyXKvGmkR@G>8$1ay$$T9TVmGSeI_~*{(K^+b7pe zdGHav8n(fND9%&^WHJkHI&AjuKDw}G{<+(;S~uS`bRJ$D0-{WYxSESx95B5t6WBg{ zFq}jqRkab0I=ukLScKVo@j=Ic2Ah{UygPmgNCMB?h60T&d0Dvxfb9pYre~RRe#@@O zvzP|UBlrc9tt3eySVXH2oAs72^N-(fEw^W2;%fE228QR0RwY>g(43FGn)&FP-0pRP zan+B~7b}t>C0MIk5CG$?JyYW8`_7y1f2)G5b#cq6yzb&eB{UUd(0E_b9i5z?yXxlM z6PyX9#DpUmS4}N~ONmY`+JN}i`2*LTznY5ctwXR_Fr_Y9q@sfipE`_)%=f(Q%AKjl zsvM%)VLR<&SvgTWj@-Mgz0d!+{+qN~>8d9DAP$#?p#m`lDG3066q$c;!+kibshxwP zE!sQ0k^!||nO)HtvGH?#$6W|F2V`!=e6UDsGgvo>r30MKc{lIB@j`AKx)>6Ku2?c2 z35SM?G>*h@sGd*V^k!DdTVRuNeRi4qhzQ9_w%)+AK!SMJXIGQx41|J|ia%pb1u?|O zVzgQT;WD4Pnaol;@8yC)hvFh-MeE9tP((MZAh9K3c{O75>aD2t&i=ZqRhG@CS04GXMFbuRCYW43MYAj|meFMfTd`Zy{xbI)?f1 zC+^>wu>1tvdm(mE87hdhv{s1<3#!Vthkt$YJa$$Mnw>In3M7OkCKcZDl90{l%VGta z8$R{qggTqrP*HkwbXZ&Nd@jpk2NUxI?|n!3rQhBke&RtPw#yUU9Vo|td_ z40rRXPX-T#S`Jgsp&MY)DW~QDs=j{5i@PT_E~zPK&*fBf7f zNP5k^W;~cM2=Gergs^~$86r)H+g|3YKfiZ1^{gXe>H-}(k_U+Ajn+eFLb}%ZwlDm9 zXI+i21e8IfVE!T~1RA8RS}N9M^Or;G`Jp@S1%@>=OP~k^y)k4`&mX?~x^t%CYk_@{{{-75<3>&7N}70`N|gBz zU;PD;*6g@~0$|`8A(EJ;2XQ9q0sYKkjPvRHKK`;PgbpyXx0+zWT%>B?NJvv7c{FhT z$Tyy19ZKPq9s`6I#Pm!~4TKrVg><20e&4tLwlgVJ3KnGf2@dF$Y{a(!G6F(F2;1KJ z#cwl}h^~-9P>4*-Ax)D^EF0#lfE``N{KoI_Wx@;wLX=8a1F*r45fQfQJnbUO+lcYC z?=Jm@CBdS2u`v~3x>t9w_g`+m~c(#qECO7ev-Y*~kGWJyMnZ7??D*_pRHGn$_j%&fT88aKy1UUdtVY_U+8x*e_T zlP?qHYC2KPxMQx@NPd(~mX9XJifKGvq)MiWrHSEMwOTAp)tAaMR9h`)hX=>p@>nvP zo~rjMd{Eh7wU{nW)%(kp>W)%+WDx%k6U|+abD6JLworA;azEwPXXlfJ(OPm8^`7aX zqIp8L1c*a;*LxHhr;@0PNttj9sbV@?05#^+sw43y#4ALZ`3119l2CvT)aPfaWBCgc zn>tZnn7gy)mM0QmQKC}L;>i*!ktk79^4Y@CN+OHqP1VnO^v~}Dp@Dt^JgbrT z2nA-ny}_y8K5$`@8<)LguiFPuVh%ykOIsso;bZ3<3;_*Tx2X7FtBj%_PB9*zk2An<UP zP8KStnI-i^eU0xvfhLWX-AW~q$|oxow*s!sCfLN8smxG)?pU${_UhXONI79!ijzo9OKvMD~EgmPqf7L(;m3dt(35!70g;jT~#KOX=k@d^!!NDQm zi^iuD#H(s$$SXBfpPMi@ZoOCEB!e5_(6UXdg(H*0~_le2fGo zsJ2R?R?Y+9>_WC$%BGG^5J%K?B0E|rmR&-1N$?TaI_h#8W)*5f9ZMe1j-hgB-9nN&R07%)KW2lPx`^{~|Elt(W7(~6*d?f*HWk)9HJ>8|iuQJpzMr$5w zL0k;(fK>rYs(04V8@Pk{ZWBpGhO_S6jYclb(PF8!l43I=^H6;@m#x7dz>Q#-Dx#TF zTh!es-nqC_=s{*^wBP|=>M0eei|J;@6 zue=e(f%+Wi$zq~d$W#AZQb-=lj`A>$_Cf<3btkAVF5wX;L7K5#Najgd9Hr-dsvAI; z<)NR@k`uLhAJ+u>l&gs<%XocWz?71f$RKv0K8K4F7E|@j;RaNyKqm!5e6$!J&%h2G zERog7mSJK9=#ssMp@*U5{KB@@$WE>@q=$PRCI@p${?-M`FmV$Vv>d&ntP8oiMU06i z_CPag3$j!7U6@3aW%4kDImb|G0!Clqg2C+<3{}vCI7axRBxXZ0f(MQFAq{2cq~{?FuM}9QW{n&EFZQ9SB77ZG}o#rbO<4F1xjEz2~CKx zQQ*Khg3uO8E_k4%H;WmNjIPufvMJW-f{d}&Nrbp$rIgQBRj)aro>6lWVhmDulyYQC z$up8ce7{Vd^Q?j%C6wI=tFa0bQDH)@KvyqR++;bGnaW(H>L8t=zc`?t`Jo(8-*ay_ z>i7Qo3LiQQ6Hvy;q%cilRK-HWsKMoV@&T-9#@d^zmC4BTh7#E6^A7FVx%MYNBlD$Ju} zS$ACNnB|x&SBJy|_fLIcN~q4w!{olT^=+AIwN$xmXb7+?gI?8xFxQ5F4oVO0xHJIb zxl{YroyunyY-{{%{V9F6z2P%h#L5i1aC%&&XafZB;1oU;Q?ubyx4z7DK$`T7m7xE? zAd6YY_XgiI7SL^m>!; zTY`rQU=qN^!LywdEPhy6WNKVhU+XIhE$EW*3?nt49pgzjN-Xh};Ndb+IW|h4F800f zMuhsJboSVwHwAHE)?;?*D=Ee#&%LIea?jiuGxRLX!LXSuxrf}*J;zG}nEPR5+~V9l z*TKIsJS63UBM%4FEMQ>hX@lpTf7R2^x%=LME%!X_w%c#J?e?M3tqsAaDP3Lc@0K*?-r_W(UpPl)<2Wk+qvnQF#3=qMbE1$?;LmH@a3~bqQ zIm5ZvFE9cyTY#NO6u6wZJ>=}d9A_AVG9BU}4fJRJ&FwyP#13Y2(JN4(X8H#nf)n zApA%Rz%dlz>2XQ;MEBekFQ3aC0||E*opIMe=LBcKYKN*p<4iqxr&L$PA*yb?ZqK1T zaXt7|HeSV$2r|e>C=-&vV#9`J82bxfCunn7e-k|1Qe_vGlWGC=Rp=_3NkhSr>SuHy ziSYH%w4179@YEADBQzyQ(uESJuHcSC@vzF<{Pcm%&iPHbiN~9_3=E#PW%CvW3ta+^ zD&;s0yntFIhBk`ImJoDlH7F0gAc9E5B(Zqf?S^~O^1a0xIH6?Byc{i7eGFg$47@Z1 z_q~%EiFnr*t0IfOI!Po3OcC9Qh{rIj2HB__*nC@I^A1^Koc%e)0_O#CRWE?QqiW=xK1c~H8RYLoWaPPywRB&=|wh)aSco9ak zn4iga3{jKV>sEu6;+Q*dj0REs09794{n*m@q`DS*kDn^JVzwatOnNjdC}IQ@_#qyO zF`#1lnFTRMNxczKNMR*?tJbe{oJy6Ni#@h-T1KrwJ z3h4Rn1}hl7-GOaeo%nW<{(wc`D+yx&K0Bik;qc()1I&d63F$(SoToAqmG=AAv1al* z7CGZ-MGBK5O!DE6huf75aG5HL%a?qrdX{?TpaXxVOeSR>sXdr*YRD{F=B$4Ip;V!s z!-rKC%Uw-{X~iuTe;1E>Hepo+qGnYGonw3DpWHjSOZf z@XAvaSdXIzIk?1VF?Fhbxt?XE(gk=+Xp(TOjG19|s8AZioRZ64eZi1hxd`hB$KzvT z`FM(ICfADimymRRhtfa_SSd)kB zub8Fnbib9T>& zGxp2^+#id5kI5&6H49!rlgF4y$bv8&Rm1LE<=jxL7=jhmc^b z!RCwQa&f!@*_)?|vp+qz4{;0{4e`DBq+F3lo^w|MdHSfYvZ?D^PFigqDqTd=ac?~v zH1$5>}y_r_1R+>j;7c(o!WyVeN;s)rk$p01t7d#JGn({rZ zX2)FUKJx7No>KG#EsyM*>3^Cmq~HZ6^|!)+RS$iQJoD)r;Gm|#Nwq&%gjSn)@oh_e zjVV)x2tjSZDFG+5pmgok<&W`VjK3U{B~dHL@=EqDm-=$d2M7K#c2qNr3YI;wo>@GK zFoqNLIp_$=rzt&WvFG)I6k`dDyGdsI?O38o?mMH3RxF@Tj5waCuc8NI$)j*Hia=9T z1g?s36=G2h{UBQyDF(QTKAPFaJ#miLQ>W^yjsyY_sOPHS1T3>H*q^PW+&sn(Fh@cX z`ZefaFYMEg1HC{$40SLMLDQ!CY`tg=O{G69pb2gjV?26R4GmkNU!=-KECG3|+awGG zv#QBK6F79Gp7XAZ|Jla#??6-dtuhnv=ImMltHAZe{FoNvy+M@6RSiq6RR+e@xyLCs z1a6Zmxn+A(i7b}2tB`6;cp%v54E-ta7Xw_wq^+dwa-tFMm=!9b{u0?Xo2tej!(+B{={ zpjazB9>^t+C1s6kTCgk0`Bn0*Jd@uAu_KiX0Bw+!5)SaG74F0+MC+Cac0!PV3cWZ{ zKSvdst^pfWIqgLU#^~u-XrMJl6?cFpp?~DvjGHfEP%osh9)RH)Q&nV0+>#&$8(df}@s4-IDvLzyf^!(l9 z7?`!dDmnnidXQl!WQ3i`K}4BtV%qZ4;8F{ly!@P0u{MXX1al`wMX-XyY&Z}GR;PN# z<0aPd3s`G925ZRw*l$EG(rbO*;@;GW++qyKnX7V3@aIHsDSq$IE#u$i{JR3bc)e2o ztdc*g@h7*2e%8~EgP;0R-}FG7-%MiI)bmt8T_QDxpt`fi#?mQ_r@n_67oeiifW72> zBLi3>@Di|@pe9RXm@n1O)cgWtA8cL(w3UfZwYZ5U=`muDZ1M-9h3W|tgJA?xiN8lNe zA{db7(^uXUunu*TxaqKZJc4@RU`N0LSVrZBF@#|5M&>dFCM=<6GI8?a%BUe+i--qt z0VVkfiGYq%=%-IZgMS}ArD8fX3&0lXXB-?t#x)-D=lsA65raW1i`)Eou!`Xk@=G5> zm-uD{LOojkWkZ|CbSi}<9r#xhVtuoTjTLBm!HuR>XmpBVn!;DZX7sYT1NqoUj#9M7Wimk3{ z+IOa)qG$H?b4kl$iMDMx@(`-1)P^}WgUlm}vddgvU+fF&#VB4X(bNl5g600_2;Ryl zyPJ&tz&F|sKTu!m|3r-#G&32IU_UUUr&3K{hN%opW{D>X1PW!|P0>M__ww)i=@(I3 zJ{3QZxiE84{VW8BQ?ZLPm*iq+&X|GACmt~0(t0UgkO_`hZ>s!3)pW5{i+o~|zwnLBiW z)B$~!_P%#BBf8|MS7#=Z)g^P8qxyZ`!+6XqS;!Ri>wyEAt3abt=1%@w_DWYy@B@V2 z^WS5casGSU!(n3I85+o4nY;DnvpoRM@k&0|d-gmJh5Iw!>q+n7^Sy#~@9G8K+ZSeD zq-!~ud9l9y3k|0(QDxNABtY7DQE1{{sosPM*?u)6q&C0C3k}S?4!5t(ypI3AKJy0t z`$kOg==qy6JLsS^DxL9$h|aB`hy4Yzcc@%KF)0*n|34p2((-b*ZPy(IrQRO-`h>N)|KQo(~AM$+by`xTt$62 zcOEW1Fz54gUBgzo`-HxWe({~BFBX1@{xP$JJ`fix+ zQtGb0P#mD>hP=@OrUQSHrb4d%WQ6WU^<9SUvidGZcSrSIp6%&S&R~E=x?IPX zCAyr+mv`b)+FZs}u7V$aUcexaooF_z*X)p{BVgs^PWFLU)2{^ zU>Lz;04oDt3>6LO_5Iv43BY|Cz;o&DdHU{tx;vroCUGGsKcAl0_460tLeP4lSK>uf z;w1ejL3=S>zr^?8rMT8gJ2yoyUgmrIa{t>`(2H04-oA>iU+sJF7j*p^--9>fTKCo5 zTj<3@zPE3s>%a6pcpF{6-S^-fxc0t(7&p?uzw)jg@fUa}J=QIKm;dJ7{$lU(y{RuX zJ__Z>nRcA6&+)#2C71hahJD6aWJ%`Ui<{j4qaXF)eRTbP--8d}`ha@tcNf9Eg9X_% zHY&k!;tgDlMnYU3Olj~R^g+x0jsNCDxH+MVec1QL@47-*eMvl(Fkb~@Y+LetR6J|P z#L;`#Yu>3C?F}BPdO#(MM!A@s>)@2pxYk#jkF}2oPBYqMfa#@25}%9ADNG%o5|`c(@G0L- zy;r%EP6@moo<8k^koyd7a-XFiHF$lFu0L-cWX|&jy1&Cy?`AP>yn$W0sT7E%c;yYK z%ltRX{WmKD5LO26Rt4@><4*iqs)qISz@Z=Y;0uBBU!*r*^1c2tU4O;*;O}v5u>UH( z`3K+YuhI3_eGk5YYp?0w^xu37HwMx_(l_6xABEUI1zvxL-u$!g^>=X%FOx3)z2NP? zP|5H6ivIxDrm}yfH$U{f{t>P{EPsp}j|)HXzxk=}CKJyL9)OJf49{{u#}D27g8tIQ zFR3J5{EA-xn|l2y-Tb?{`8ED#uA(xJ;c6d${~x%zpC0|jd-PlV=s)$v@ASp*^~HbT zBKHUU(5L@RH~*t<{)oQ}@PBc^2>pp(&w%YiWzWE0I8o^GOkC#9QqRw(o0;ln7XI?5 zJ^ErcE*R<@T)+uJ-_O-A=iwqZA3yYT0sczU7Sh$3^sJW(^r-@i@HcZgJ?^K+i|I!V zd`obx#{8wY6pLpW6*JOtq^e8V;K|i$rJ;ip2!jpIn!prgGL*K5BT=+ zE)?(8AXK?*?CnAD6<>MVw9WqS%tG1_p1C%2{d3@#hIfZHELLQvvs#hLTwk9J(}?}r zQ!m0g@-p)Ml;B6i_VS5BDuM9DGU8zn$q#q@QK<8wk>s6#)=&&P4QYFBFRZ^Z`EIbb z4G%9?B$n#WWJ?Fu)ez(gpBr?hfE!Duij`wn2(QoMHSQtWYKQ%Ceb`=fbclZ7lB#4= zD6l{Z&`wZt0?|HU?DQJq_yyFMzy>m`_GYr!}w0ODM(M3q=! zN^sN1@f?fj+u@y6sHuVrO+f@wqA_soOJj(W2H^kR-woKlBY%?amJG^cMR7b%HfW{O{rjKFq2cL|<8;a;sRI^y1 zB~xH~B{A*}r)f1r)qxlsm-q7!HT>Y_qab_bMre0&eHr;ic`p|%hcYT1QY~94&{cck znH(la)JVvpp#nVcSZ(G|nff9_NrXj^I5t5Ny9cq{YDzNMj*=I*@nNxoWz;^b`jYD& zj#p{uRDA;zgksGSNo*p`=M#tvfS6+^dL=PRfedg$2==Pef><+Evo?g<+xP%tLwzc- zV+4JoU$>NkeWXJL5G6-#0n1D1c2c8SW}q2n6?>1TPS*R_rw`#CW3iGwej}bzI*R%9J?SFe@=i)6_hQ(ixp(6SOUtx9+PrzI_hwmGfK0Jh zdBv7A64exXvsY-orh<9-Ht*%)2DM|#Jj*N7=a)27;I&?XWnto)VsH0~c?!+z>!#F; zyi&ay7__B%|4i?_r!g9c_cE`<3JoEP=w>a|2Gkq8f}Z$mO==1~+bgtELkp;3Q}WNf zk{)KPV@!!Duf(~HGCI`wz@BJbHp~h)b;(1<)HBurx za+|{Udxe$mZ_s6?Z`VrC#wh4aGg9%M`AAg;zBST+BE zu2}Q_h^|<-{*=e{U1S4Y zaUVE`u2{@B(-lkdd343X8mB9k!)>&RvBon#+0l zjmU;lfd$CMMZ2pigQ=-~XVq7z`I`3-^B?T6cM++2MtynX%Peh=N8$jy)0xJ+50OZ0 z-yAP_n10LxPUTlNz%rq4gvR2Ax3u&yg=Kn`d&|RFLer-9ogJ#5avkA=MzpYAj>nmG z_}_se{MLO}V<&>r)HKzAktEyjF-cN5aNaZCN{UGmwj1m4bIue4W3xZ-Irb}HXD)Ix zfo3#$q4;6gs~qi)xJeZ!P(PEVs0$?Wi6&A!fjOIk8(_4%$QOfo4W%dISQvm?in$Jg zRA?g{O!;)0V_zuBV}1#_g2>UvL2tC7UUrw`ab-}*Gl=+h1S>40lD?@fBErfeDc`r7 z^tZ@mkVGr7SF=2rb*m!`0Ot1)IqL}$eHVbVFk8T`O0$h4vl+YYku8YU9TUeX`U-8p z{0uWq9WkMwF47?x*tv_C9iqSqEL$d#Q%Z&8%#a%H*gw`-CSvgMjy#0aizOH=9ELL)p zJ$HRa?nu#1_B`}^xg%va+4JKkeveC%!kg^*!c*jql-^{|XFn--r1&O#UOneuxFjjR z$(}1V%N;4e$)0b&Tkc2+PWHU~<8nueaI)u(UzR&khLb%n{NDE&3Ms_Np3ATO0pF2Q zoa}jYRPIPIPWBwVSMEqTPWCMNpxlvyoa}k>cjS(glxxKjQjGnNIe+>x*(n3U#vQGe49&QmT_ZuUr2UE=h`Yvgd|`+>vsf?0NP*az_ew zvgb>0mpf9jlRa~OC3mD~Cwrc^=BEsWl<-VXkeV|dH$>9js{2I z@D5R7pdtO_RJ5tPO!)xV^l=EcIolp8Xm!yGpvgcR#%N-4_lRfYM zl-$t(JK6L9X8wXp(jYt8likI4HA=!pv0$+0X`?}X9`;kvCV2D|x>GS-*g#UHxiP10 zf@Z?2vq-PMl+!8>@X$;Swe@=D#mWh}RVaz#kZhckq%ls@5;VQcmdB(>b0Fi{yOQNJ zmpIA8KGnCe0h$zojuVefb9k!I2vXsfWhFt0Q;KD2NMntR5^e0D=v|1jlxk$8#>-#l>V`TooK4W43W0EL!&}bP$4)0q z`V*#HBR;yO1UBc|}w}RF_z$%3wC9oVMEqfmP}SGBaQ|8E7L=PUi3V{Y%2!yQsHQamcR>(^ zOg0TIFC8cN#)tOBE#F+&^36r^X1$LH+zlXLW8_D#DCAG_Op55GDXN`F#X>{#%nQ|s z@E1bHlRPIQn3`&`wTrc^8&|Y;6l#($BEf0>Qj%mdu3Fr#$feT2c147BCwX2-*yyrJ zY?PQ7Qwtungg|Obz{M0&stDMlR!3;Rve%hc1WU=vNs!I_F#UvYxrSLhe3SSTx`H*7Ue8mW_B6h%_=TU;6 zxboRT&an@*R4Lc~gg{3NEbdtRlR9f;h58ItN7!>FaxadKtHk@Z|nGq;5bc~qoS1f;l)9uTCb>8e^lxdHM;8{sfQ z=jYXyHdrB)FffE|YF$=K-n7Iv0)XAj)r^!6lg2LrnziCjRDHJ%F3Refz92=8AP7ax z)Glb62J`?rZH561x0Or+0U@m< zr3vDkY(e#iFyfy4DvE0xjC@}-lxhKp)fS3lmZ(<++s^F9miJhF@^EQhB`Emz~H7WeO;5MZ}c2ZzffOG^{YeGr?Tag zwjH&Fqd%3P9OVfoaTXwY2BV9Ku`QX|q(mc?yd7a{re5@iho#aJ6k}NICqs3$#0vs>E z>BOOIL21#VOvOwQ@zF@N+6HGwNgTVY;f>KSq`#izRYa;(_x_`LgyXRyLDC-twoexT zY7`&F=9Ls#s>rM>YWtR9t4jqO_9-_p?y1L|A>U~R=UYJ}Q9__|ohNynoKW*B*8?Z5G^#SReB(!7tIPy8K2X{%MFd4x@2!d! zRIfc;w2M}KOzlzi(83Vavz@~-6gX_1KPq-Dk1uh;pVS?NWJ3LEmo<_MBfMCBRcy@)roBh>%vb zu&~l!kRnmJv4Y$d|2w*lbEX1lbhi5|age{J=8oG=scdW7K;($*_^9Uvz)DkSWJfs_uAv$+uY)xZuvmD&IYK9skP>p00VM5Lnvy`8@v z#rafm&t5pmF-BB!y}up~AZHQq>8^mVN`LocBtQaDnI45*z_Yu7Wf;Cs3hF;|yEx=$^3AwJ@ly0*V-F zJd$!oSp|B8B7v7VTsOd{oZ87kfOi_D3Y42xqig(l%j~1#<9(om_{r=wKQI;qsw2p7 z%K1ec!9#ecdwUw&J9r=^7l&{p0ALJ_PkI$efdIZpO_s~X$tKk{VnER|0y16oFA4^9 zGxwd45UC*{P*RO7G!OL?LeN^_Zxu7?{^5%hXONXF)0; zNKHBcNUMTcq&yB(FwDUU0&<{cOUO3llZOERm~6pru+a~K>5s)VN+9RcbI8r;tA|d= zP>TFGj?w_@*mYrhOt3?Jc1lj^hs zivpMkBR&73rcsL`(|f9xJmS_#>rLM3?HfpJ3W znQxOCr7G=H^9t~JX8i6X$1@Y&dhRPkr1${&SU+cljSy<}{3OB#RVK9bRIW^sxHbIn zfwv0~oj^$|llk!^&INlBwvmxD?kMG(rl3jk|8s&UN*lF8j%}qE;g_?=kSvs_sH&)- ziu&0q(n}84)v+EIY^NwGiKV;IXjiXxwY6FiF9na z*UcpGM=+zHK(a+g_>4pxxd9EsyR8sOM#l)(XYqnwbt?Bpd{7xq*5|?q)9FGf9QLd% z=K@8(Pj!|lQd!NUL6~DVXXAJ|b3?+3SW|jatM|ZfL$9WCuLtPbumqXE0oQVXaqa9qEJklS>6s)$+Wh?v>*oyv?dzX^y>Am*pz?p~uyWp`(7tlyDo!0d z?A)9!SCM(u*-P;vbfOIi5kTd?J4A&yNwi0$SEQZJccE>}K|ai$)tT(^){OS`Bf%8x zUOuwtu;-)U;ZaFOfFMgdM2L5Yv`1(SbwfI>nb6v!Ht#xzW%F(TnT;JH!<$svBh%Lw zfuRl&;Jq>J5!ggAE!Z;+T9~vYJd)wS3wnBsJG^`6%>lYx(IHyAQKvmx7aO$T$}iK= zU+6)C5n^|IxB@>M>I55-w`2R2%=I0j$-9W!qq%H9?K3AbsqNx|Xnx- zFh15HI=nlzJvz&b*|tlq08{Sz09F3fAsW0j_SDf(%XT3&=J#}F#PYt}_GrwxR>v6x z2(Yrlnt2~^`(4c{J-W^_5?OHt();cAEI@Rt1c=&Wr*ms_yn zg0x)@@^<;LxvxWPXoqUcQGY;OV{?sN9;o|;T(^{&r7~>#ar3`lNoOO{k+XD)6HUe> zX(tBLCLmpF7aQlFXiwa8c|OJ`+ZM3>73clp2&!=)Cx_aqc#Hs64|GUm&b`nct7SXY zPFCj#77`pU0hynk@9Yo_PW;dwjkBrtK-)juVWqT{xut-K?5uebf;$|X1C8Zg9G^*U zD4gh9aU{){p8}un5E)vTod%f|*Kk@sI^NcZeTXXG><|&!#61lneK+Z(Yz{?1SAyo< z4?9GF_Ki=2z&?t));hz~9NOoPt~ZT+&Zz@LuMFCzcj zAtIcarhO+_O-ltvI9hv`=FRTN>a5l0;#Bz2hP4@9E|C=tT9A;mIkZ3^X>-VJFKKhg zfi7ut$eS%`bI6%2X>-V}D`|7cpDJl{$eAf=bI7YGX>-VtCuwuYS0-t5$Xz9AbI401 zX>-UUBWZKUCn9Nc$SEOdbI2_qX>(|HE@^XUx-4mPXzD6yb7&qZX>({gCuwtNVkK#F zXimf1#d0*QkhD2u*-P3Sva}^_4jH_XHizs@Nt;7Po}|qoJ4@2$kclH{bI8V!v^g}q zOWGV7S|zm+4P=tqh(-cQr9;YCQt6O}^UsV7OLL;68dAW=t^6iC!XaxCX0qmlxN zB&1e98^_t0#Wz_%n>SoTdImYu7VBtD7p{1vZ4Si|B`El)MX>=KKvT+O3&#hsvaFW# z7Ex?9IyIIe5wK8BmM9@&n>xHSF0G338d}S>K3UNjeB9lER!8Bs#lkL_dwn9xuCaC4II$s#^r(f*`o;HM6#e+vMnB0 z3sjxngW3ArC_1iduIO8J3fWw&a~mF@t5Wp*)V`kjEVcSwKd=4qPkPmxbE*kvcLQH5 z*<3@d<)vtmO$$4Dg9l<=Cs^n;^_HDuBcM0yH3PYU7H@L#RxeIb)`Eg%_t(C|qqw zSwGS_G2dZJOj~*EQ4{h25x*K45ogC#3dyMu^}gIW^}b*W!l;wa2?JWmtSy;mhW$am zjf}{%VyF$t#X}^1%$7c;w?AqNB6UW9XV2%e)tzT=b2hZbA3LwUG(H+89hrIspPm#3^A4 z$J@mvfp?Rxx7(Jfrt9rw5EcWitNoRd_%vJS;$h-iRc4*hmwFMD5nK$0Vp@?Kp!p|ie z7n}j?ZgR_6GHR0fEddT(5E%zH#3U+`tV$0R+Gpiq5}tBwv!$!iAaPp|jjXX4Jk0nb zddvcZ!QxZ4U0IDkyu;-5jX$B?Do48{S=5f{MxKl<(~aD?48mgMv7Y-4URNCFXzCw4 z^EG?02ic)~hxz=(51#p2XQWo(l#WSCn&^<9E;t*UjEcDREwM~-JdRc6IBg1!E1cp1 zgxGP|WM=rh&e`y6TQ=Cv4EvZ1MMt(nI@#b>pSMLu=S4#2BIX6O9S^y>!s_s$&guD} zEeNBC-Y6{Twm~raV8IFdxxN?~!C`q7kl~@JtLyW&R5JSGGqxZiC-htpx|wVI-yl4*P@G+yoU-Cvj}3AloJz2k zcJ^|<_6qmvYg{Ui4Lp=h$~olbv#>%Yf-H928&@^lSWPVIl05>o9?$w6!Ebx2^zI&x~cz%Z3V!{&<7br%c+0vIym%I zR@pS)boM?4@ zw{_T_?euE#;fV^&QA8y1$Nc5lGq_32Ol9+W3X#*lMkDT548Np-YFK$(X)bikIp zM(+0sd0T0W?#un`y)I5VY|OZEXJoXU6Z3Z6h3Hr4oPI}bK^O_o2n$+CxUGU|t(vDI zBlg*`YnAHaBujgE$s~Xzh(;}a`LaDLBp8IoT|agdlGVqLKU-95g~8b9@UB28&s?nqGNWIfHDg$yUoHTvnm3)Z z<{?{IFyizegE)=On*PHzoatJov@)Jq?RO1)E-L!f7so2P>NXbrr#q+VCu~8O&har} zOSdPo>jD-%B|61Xa@8yrsgM@F7EDa{%g7k9K4{$2SuP3<%EJ#dLe|XBY$<94{l~T- zB4?6YwI_1nhui4Veki2XQqLJhlrmnG;#mKS%VX%0k?eL|nWj^HKaa+r_GqJYkCA_ms5=Bj# z&O(0Jmj6bC-ewEJFz+E-5Q=$xLd4@{p7m7c@trpDPhDasHF7$3e#@4ShMiw$5T|j% zGoMzc%gG7ndZ@dAJK_&fQLes#m!(lDpROIYr+?Qu9e-mB!gPyY3oE)k$=Rd_GxD69 zEQB}=gN_h)RFcG?eX+K;J2rMmi0hlZQI6J>3NSPRXHDU_5MSF2-rSnue zDQUOFTn3o%myt1HRgBK*B#krz4C0i%7rQGs>NCuWx7gCru;Kw*5RtQD;k9l7r|;%f z1X+OoUxm+|JZiJQFDip|y^kGPK|}5S zqaEl#Bjl&)1uh*Ls`G6@G&04)$zuF8GB>mUVX*kB?X*Zu_4(|@$34}z_0ydCF^*5_ zlDtv-rkmwoYby+*X@3Z2txN2qMoq`QvMu2Z`-%*r zrIRL#EkMjJ*#dN+z5&y8&Z?e3U_0`^yF-l+uoWk%w&LVo32c-0du?XQUYjSh-)qx| zz!0t69rtazdA=>#js6p|cclOFonV1YH+FYH%C%3*IP3%S%ZEEUted)cngu^?AZ|#f5I$&H0|-sR$CB_th2D`j9DmM(*lISBBF6?+paRUK$7oP4O%$<8=HTfqMVD) z8WV{($I!Xc4s=&A-RX-Wlb`LeltN4oWrA27iMYtw&T15ylo&C(bHhEqZp(WkJ|}EJ zoHFCA$GG|X3dQk)ldV*04JXFGJ2I{;h#jR$%loW$?DxZoL#0 zc4*l4+k%Lk#LZ>-@PlUmFu!$(Ku zB4d858D)zDrABQzYJ?(f3*wa7VQu|vZk+h=?AqC%O_ht4;z(6zPzem?FNlmc1EJ}T z%=X7LKCQFIPTCUL@acIB;xw8{=j>0GN;GLmm$S#*io>%`%3ITNrtolNq(2uYsxdNg zK?an@M3d$S?PmvX>zwWn*@7_r<3V9vw~ef(3{p9hoju2qbGF>zsrkxjW{^%Qg!2;w znUHbzMO*5cj`4Y05RDA77?RAWCf(Blgux=BQEh#5ExK!B*e$1PsiOhy`KQPv#A%^D zQyv~6;rJh0&KlwPFIy0ivn6KOQmP?;Ny?${Ht1Q3@l=kQ0Bbfbj>@V($HyAMB`&yd zys7fdge}tbK&V5je~m4OQ)Z8~@v%@`FKYfCT;SOg87q2~^Tn$+)G4m9C7J0IS22jw zXi7AlrMi(3k!GnEhUIm*bIK)bK^S?xO^DxZV_>fKxH#JbTI2r6s65Z}xx|}fV0(@& zrHq(9%NE3GB=(K~vEP0=h~30D@K#$&8DhWL7DVL4ZmK-K6d9#Sd0Z4$9)D*`A4B5L z+JcCj#LZn?zmAl~7lZ?*(7H2#Gxh{$Q&RE(D_iOQxUF}@^B;zg*iLz``(Er`fT zJZop6GTt!dy(BUU_r#J?UC2bc(3V0*jdnVoM)G;v=>o zA}4Wkb$oB6G`=)Ut{<3mXqfief@oxjMF%r|R5lV=fG}7*VjFZ#SYUU^o3Le~rFXCUIX^Ep;zpaY zITE#^qOobc(ClwO_#x--D~}{o!63u^T@plU`gFTRo@6U0rte?NAX?J6`@2OJ97&Fj z(qb&Dwm=`wM@72&!dO*mmEiWU7R`1}$q`!+rn{ts8Qu1%&fbN<)6gL~FN%!XbC3c@ zRT!F4)@`X|MD~O&h{y>&|K@DkEjlG6Hffl=zdJHwFNhtZO5>{15Wyd@rIsQ1J8VHj zPVfbLX)6cvY*ov}d~jv!>yc4>p=7f0Y7LS6tG4tqB>%E4h{#FacVpQ-mUUtMG*jWf zkBsVz5P+;JZl%S4YfCjl_{VHPL{50;K=N32RCYhW^hBq3*huk=lE7HHdRceu;gA_p z-+--58WB2_0*FWo8!y*ccz9g_Y&x`wm)e4eoH0vuJ|Ue|7@8rdi=G%6GnRU(gmg|} zt~{iYF1Mwg=^0P31ra#|&i8f&70ZsCQ0{3b-dW~5RXfm0l9BOctJx4#EUQz~X$~** zdD?&M$0@|Fr`yunu5y`hnyQ0fopO^aj@4sJ2LL9Miw-Mg5n66q)`Yl z<33wT8fN^NEr`gOu>uwpQeO}=Xok!3>CpHd=qL|G#)_3>ObG%U1uGqd5ePBjL0c*s zM!eA$MC6Q^k3+=0E)gL9=OZKjf*4K<_ta8&*#3+ywG6>OX$vB9f^YYa8W=STN+(r| zP726r} z6I&3Ctg~<-8ZV?cs4PGjEOy)4^vVnQn$zorT(+N56Ob-QW0c~9b0{lZKqs8LygTMS zHElXC<3`lgq4B<+L7YY}R$Fdg7>A%D01 zis#*uNmiW<_OrMJ?5fGQ1&RE|Nl%={ko2Y!;ehatM#hNqW8*+6u26~-N}?rkrYoTo z2TDk_%DpPAGt;(|HaatD3nFr64P93pXA>`=R2(o*r9!FTR2FuHMJ%vs6WJLsa$iMhj;n6|2KJ()MDWWh0wbB1Al z@^R*F`lh=ub^6PQPV$~@X zE0rvg6*=&&C`$PG+US z%SGTD_HXBla78&-qDeZ#$<)!&GBWO^om_D^*g^j`GN$g;9aPYz{z>S9kLb9#q1+jS zuAFGY=*F>}lZ+d5<3KmeTSO#G32a@7ogH@a?;{AR75*F%>Yg2{Do^Ko~5BxFKDiNcP=C z5$C=!I$%C6UKx>LUtgroA~D8OxZC!j_6|+`1-2kgnef(gg5^4xM3DgcnLU>Q23#B& z16FwPBwqdEkPGwS0$U=QZn%v>w48EvU96WL@)?+(brK-$&5@CISfCB9nt996nl!qi#LHK;0p)_Oop1 zZ@Skr7{ux8UaNOyl7&&%DIv{Tvg(pq(Y%wrIWpp|iKQ5axWa)fh&EmAO`Q|@^|l~P zS9^^u2-DSs)m`Xn79b23;zF|kVQA53Ync%iaF4$7^twlvi=osQE)raL{#lpAo!T~? zBlO3%vSif8zcPrHYNNFy)Y^CFMdBne@f;5Y-vku%>{Z<{K10N;J0|WXi5ca1DAXpb zq-O$|4sFphZ9$km^Cw|gx1D!`&DjErbXUGuORK=BW7(wRjwQ4C0GG~>j7vi;xa6j> z{sgpCR20yP3tFL(b-2}YQ1XAq}R->${^)4ZSu?+~x)(a8)n z%S3|QVkyv%pA{7;>+9$wYQh51@v?t}j%pw*kQoIx3h_4$i=@{*%i`N2|ofW_DfV&D@9LZ=Clo!l3M`lT`VcBjkiCRRT|oO7VCf53bs*C zBG?_Nr>}K_1?J8#u~JXAv%dZtNEF5HXlBJd0qpF?v8&Xo=@ipNsH?+y+zwk1W_TI0 z1)+wQhphN#?L(b?qgDaWnYwT4-l^O>a5Ppf)g`u3W2R%<9kv8BjY!xH^;;4cgpMQLw&L=FT|Oko_CF^02AhIbH9u1!20wgs`UDrna*)ohCbb42Md< z`Clz(k*c0IeQA35#re&VF=In4$%r7D0hi`%VEEbb*~r+j9C=i9_3`2e77$eRAtrpvmV$-}AGZb3$OH>}!I&JP z`z$~hEN-=Jh#InM*inj8xbs~s+4==ud~#+vR}8`PlbhOIx^63qzEA8bJw*8R>F zgks(E+Oe+nxM^)}%->5MDit0P7%(-nE_6bhj-C(;s#UTe@v-oO^u%=?x0Wygn6&qn#ADd!Xg^gl{#N079eA2bTCN$>dZ0T!M)~GFr$XV2X5HX}+2XjUo zJAwXjGBSQFjup9TVS}nVMEn=nQqB;6(iTJ`@hz+cV{nM(vjAbR*vJiO85w3hy7Z|f ze5`KL5Yw>T{-cpez@nJv7Hg>=KV-{1!~YKm+14URVhhdH2XYT!vYxpr_aGl<-FmpT zHMQ0^Up)2_Y6Lpi_aY;&#hU(iI;ZwO+JZ20{taPRw@0JRYVwKPX!w&YjZLTcA6pQOY_ia3Mkz|yv;bkS z5T$4VLYeaSw=?Bi>RMaX(0@cN6F3LGWdi?H?6NM28?|aWbN&+4)uB0mp)Cl*zwNdl z6#pK!;-B?c*?Y4r3+cqG0cGKKiF?$h>9{v+OE;qf5)9%rPR9BUB*)18m~_exogjM&erzC9(n}UCIK4!QwXChA4&jMk|GAJD{!8@l>?E6t3gq$VfKjI%967 zk{oTANqnzMQbsMDPCb6dmWoEA{?QhM;pI1MK`36n!-|*IgWEER=%!7uyOMdgkWOOj zYbh8NH+Nlk3}R~9bWH3)T^(8|XEO+kG0vKZ%e@qKJgrD6LI&MjTcV<3eMOApYe?bp zG{V#$8uB)EPTrU;d2RL0(!dh3mePP7aeZX8T^3wJ)}#$j(Drst*jv3fW!oB z*HJ)4)1L66$XKx<<^q$r%ZO0Q0g3Qy%bB_@Sq*1S*n)_hGfOoC9G>Bq;6^Q^CITJf z-H~wvdP$8kaSlV&wTCqRBewK2EO>`4h{##6NUe_|6_VI4!6EnSk&(aO+c<7&4w3$= zwsbS3|FSKJ$VtDHS6LDC%9DFdg@E+`J~HwzlZ95Uy{!WJtu6fw3m&rt5jhKbcWI0L zmTY>|tp5{)d52c~QdD$@d%!C5Js3nKbm7skkfk zhC1a7Y*}ZxKgl30JRG)D@czIQoLd&qcJGXgpo@d^Z>c&&(}z2!>Dz2U7+HQu*wXFE z_fjlkJ4cfFqqG1;iy7fW(f<$`{g=^_b-aq&kG%S zU`euCh5Oo7yBnHuWu+69NxT+;hJ-}iLxN4SmJC@2OgglW7u$k}oFUGxjGL0Y1)3#D zkLnE9DicmMi)Es~&~Zg%Oj(EINP>uuErdl}un4KJOKnMNy2-`1AR_0=rkzMiJX&zd z#p0NR;v(t~K}V@J9VQVOZ#Kt}ix%j_86A$r_0VbGb#Akzuwl|uZ9zoNq(z6o9VdAV z`DK!_H7L+mo)sBC`eVe1c%bG`|9FNi-3;mPu>}!1=~t4K1@)awWoVx|?~&u-G^noL z92pB%v8Cn1fck;LAjFC{+0xOl;`O#5B4wzRWbd+T*(R5DR{4OFzSc zAK8M4oCR~RmQ=|&!`VVW^Do>GmFYS+hV`RLCQdbmNIehLc4(*0wgnM6sh94oRf}Vo z&83~2DE0f{YO-1j>YDA5ksZ>mYnM#!a-emX1%tNqGtz#(Er>=ISa|x3vrwE?79b23 z(>M!ly;~~}xs_6}z}w{E(dVfg`&fd)a7Sdquqp=QS7AV-z8`~7pS<0cn?@jRwFMD5 zE7t7v*}l%eEyXfVB(K9nrLrZU5&t|gZmf>^&EPmr^dKDK8NwmlKc8t!OT&(PZ9zoN zjz!mG%he36s(6b`{;dmdiHryRv0+tnn{|{2Z0Tl5{{~wSr%Zb56^!{iOQj}XBSy$%rgXOR(j zlP{fXA@0M5yz4$}LX`h;=am0fTM$Op|3#SB?G=t?*A$B?(W#$90iMj?7?lOQJT@%V z!wuzUNm$p<0S+CS!?SEbM9zem9&Eky$%rg4j(t)Z;K)#9962YZ2VL(RGQp)id$!ur z)@Y|Kwjd&B&wyHj<%K|U);S|sgbK4LXtN%Qj7MAa!Yr>1viA@O#lw7RVly4IrLtkv z4YnW}8D%jcF>@Lj%q&0{EM!h&0m5J*8y+k`7%a}@!@p|Ne8iTVwoZgq zvPFUjdNZajHDthPO4zSQM%dMAuLRNdn4r*x#$WB6#$UDtVf4-ygiYNxC|5Lywu5Le za3mj$&i{R6tXSD7w9qW#jA5z-&m;}ziM8WC~9jK|)51efVl@N1Q0G|#m{-w4cB48ZiV!&qb@z-xUz8$gaoZ8B5H*>cec!l*5X$XT#Ku^@>PhA}`Taq{perR&9FK*hNR zlkXrqPDaL#je58OCNxqpCh??T!c)2?ta*VgT@7m{Z9$weYpjjqnMd5@SdjkjiH!cU zVpXm!qzB(=OCUqzhZ%&$yu#KHUf{)wQ={}JeF8Q?@^T@V*iINrHt7AyDf;wiOoSWWA4~6<a!pzan`>WRzbZ60a)_$^50Z z)G{)Eu`P(`3C>AE(+)!18wSNhgaofpX3}(ADh(0*Hd|^LfqNz30`HkOTD}Y9Z zU&|m`+ILZ$5XOA+P6+GgB-%vAAvLd;L$dtO)joAOP|K9(b5!ZHu0`fqa=3yt8ZH-I zW**bwUjS9X%5pHeL}aofUGnNqu)u=U3s0{u={ITA_G9x#Xff&! zXihgy_o8M^r&NAtOFE-ee#0PIDwPNpqgHti5Kf^+n!!PW_+kzF8T|&{%5x(kWPP>S zy3JYC2!*&tA!L0l10Ghr#1MHggRmg7_00S*!YNW2C!a(EgJiulGO{j=Rk+r;sx?H( zi#w;}1-2lJ?Xpdn(e0VJvtP1eI=i!#5-8vdIR{Iwgq%71ix^}4!hKt0Tv#7d={e(R zK?K_?6dE{?3uuJc@>E-z8UerA7DVK1Sq3kwBS+G;)HKhCj2X*irxzbe*IvuqV@pB9 zgb7;^kuzb@u1vCkBQYzKS+H1!F&5|yZ;Fim{n!{xHOHxDY@nx_L-PN6Te=z2zs43s zS{~7TP1E*%Dl*zHj#YHkaj)tS@jq@$IYa!9+JcCj_zQ0=XNzSz_Agr) zE*=jE{ZAt!d~d9zs>O;oRU0Duk8CMsi2egx5Rnso-p+hp=-uEWpSLM0gK~Zh5hp_I zW=`_isJKH5a;7ba$jRNeQ*3t!J8CHjeQ+ghFfy7iiYbdd?o}L;^Yd+~X5@Up7DVKP zU$Y;vEuK=R^@%6da17o^G2b}8J~=Wbtc`JijaKipOpyZ;afL*PAqQ-!X&AE47DVI> zS#;PN+#q@+?O2GX2U}T(F z5p%hI?g|KLNlz$_gzcdB+0xLk;je8$M9zkOJup-Hve9q==08WqfyLg??5jGYkiKn8 zIYaz!+JcCj_$yS#fo#g*qzjTmt}zC7#^$IjQiLT-(t&J>vW6q;11GT~1VW7Xqb(H; zBmQ6uqLC36D+y*XLfottAPg3LJgsTDjm6d<+qbKT!wo9NTnp&Jp~%Ew5dv_z;x;qz zt*E`j*~u1L5Rnsp)gd>PEoG7B31-~TM(zr4C_$KzWrbXbP%7fM_ai9-Jlj34;H~E&K2ve08Jv<%C=-P zlrJ)fmdiX{*D9;`XA9Y}>|MxCjzgWaP&x4OC-VWyzAQ4zu8EB)9OA&i6Kq;(01hGX zeo5y&&JAiICI)hA|p2?9p`$nTrKs6y4VkGiDu~jeFo7|kF|~our-es$ReHg zUHBJDdj_I1kr%49IbCarl4qmp4h^F-Y(W?a{$F86x0kE?gycA2Lbu;f_46X5I^4F% zGMWAzOMG0seq3h{#DkhmNIis>z1s)gN?1?w7scH#7L({qYx74vS8kBI@%uojYh#Ah>Y;_O=L+Wj9k&fH4&TzlVAWox2y8fnucV?qAQl=w5cpaSbJ>;{MU?~2pBcrYp zs~J4vga@YFH1(rQ9E?Y(uf3vkYERjMFjD?vVOX~<)>(%O#o}GT5d05EM*W^xMXC!C z`Gd9;G9vvxTM&^GdBI@}995jAWowtwU8pHJi0bS3PeWOUXGjc zRU4vZxpP_;Z9y2>&I>zQ*-6&2JxgRe;M03$WYq3aVjT8ryv&wFMq*zgBw9Or#*8iZ zO;M`j2WHNgk+~}OApYEr+g8N0)yB)OD~?kbzO1YraL1h{#C(5b#9R@}6vsJH5HGM5 z-0`?5i7<8F+c|aLZ41K4@FT*YZnI&TVuNxWC7W^KpCaSJa?J&fx5N@bOD25FmV!pa zzita6awg10!clmv5$hGy-2WRH;pb7VQC($7YyY<`r3|ruZwn%FV)yK95`?nh{HToo z*$D4$5qz=^m3C}M!B+J_q~$RE44L_Ig_~ z8A`u~L7c`ZU;mAnY$Zdk@-!Cxc#H{9^5cVJUU3G}2AMKo`AF>5ur1t~D zmTsHP{nr=Z)F|LE3k2vGqeSb#8CNZv0C5C)51+h!jlEReYE8K*aK+p5DzESM=53)#C!#qil@J5`!N z|C;BPt=%!4sd<4=n#@%pjj{=Kb!acg7{qDR(#zr1aB&C|T%UzvH9L|`H90}|x~Pa) zUqL=2x594EVErNL?&+Mm*VuwE-Q+4^P%C|HZEY;Y6kDB#1y=0Ri8uYCd^9pHAUsLc z&W!NRj1BQ1V@p7zwp}6M>2u_*y(L@C@Sdsz?(u3WU#uZ{QgIk!7s~ed{KzQ0E=C%P zcU2WM7T8urSkT#sVW-~xom2WbwjhkOKTDX^O4@B_y$-PiTa8YQD}NOkS2i$LfXL%u z%-e0LYP!H%Z9z0L#$v!XHiL9T3lIhiQHB;E3>GrrS%5HDIJV?emdkxsmW!?IpVP!} zp$(tc9yqvv52i|$qt#+5Fj0D}OY%?coX&)K)RvY;x_@a4!f^CwwjdNoUv9-w>#=)T z6P9KV9u6>ZZM-{nC^c<5CaywV9onJG8N_L{LuWTNd9H|xYV|p>)>h7?ozw4PTM(ub zTp%py_SidH8=3*}OhifOmgj}uW=kcbZJufiqLI)RLy#H8q`O#vFjy?HZHUr&4_N6u z+fi&?6P34b_a0}T@H!w{ujrC&Q46P2eN(nnG!pew;AvGJp}1T<{?5Q8|4BiQ1@ZWU`aoCaSd>k6)xe?KY$)|X)E0CmSX z|Gi42*<^FkcRQ!*KiPsXo#R`=m~M}2y+?2mCKA=^TZ{*0NRbX>0m5K$C>n-eypy&C6tEh0%)QJp$3*Q)meX{`GcBwm z`=2wQ=hMhWn4j1Z&}d(bOgb)%B@KG_PfHw^4(?Ok#c%Bm8s^Aq7!hR@py zfsv!n*n()}poI_^Ig-)L0))Zh0^5ct)1-cSO_Q}vCT+LKNp=p7vh!OeGl#lk{Zb33 zvrNuJT^$;`e_}>hSSI#^XtU+kbE2YJTi@e`&gr+#7KG^ws~JSs_f#~uR<4bb&@HW% z-L_ORs&A()h{y@ub~2ocjNYd(86LHznIU`H7DVJ^Z!X_2h>YH6$Fk||;Zc3kmOzHa z&$9*5NMnm3*^KHk5?FvRSo}|iqxxH|M)k)(5)I@Y!bZ0GToa=b7{WirG9+bYVUM=k zkbJ`bex*~ZxMd`&DAW-DiD=AnF&5^lx$)ESgpZCh2_wk?RJf)US$J5{1Qq%DCF$QrOExpxDQVJLi6E)D^ zmT&8h$s8hN9XYm%tu$ftaENQhhIRQ8Akv{dy~q}X={XA-MAz*>B)kw(AnqkB%$G&R z14?+Ic%Ul|c>^!8rJ51%3vEF}PWZvyOz(K5gwqTV^Xrt7mC86y)D+dC?;Ocm7j${u z9vNGPkgScwz(Xsp5s?64eHYhgg_w4$EyWGfZm|W?$h5~ZvZ{s{%SSY$1qg%1qqh24 zjdrg-y`vqD_Em>|9ZBYK@EuaJ*06CUpp{?NCDEg%O*g!~#8wWBD7}b5oW|j8{{CbY zPRrqPHa!|lkM-A4QLerKy3|)`s7t=9b2|Q&EeO*Y-Y%@@_Nu_l8;Zlj!3~1njEvH= zVtKADMB=a6(#MGE-`j$SoWz(@BcEg;9n=JWh>Xg#!lfz<5&CzwR5FDAjV*}C3EeAt zm$Dr4o}hr{UAw(I_Han^QUC??y=*w=y+C0bcoiz|&<0*^3nFr|$5jS^D$-zAWcxqN z8#-9ssbrF6%9cwna11Fu4lw2F$e1#y69RDM!W^m|hpxvNE9BD!R&**RV-@NtSK89s z^pwkNL7XzntY_v6uR)@=qqKpgTr7?SHB%}wru4>!Rkd-cHbnJ1Y)NLQemjFWjW){) zte=i#M`7#1z0s1Ye;yfCS5icSAb@GOAkd1w&+MGO_u7ImQhk@OsN1&8Ql5;r<-%Jc z=ISWM5%3{N_m1qg%1G)AqxdPA&B9+_WLa0oO;Qhq%$ z5$L6Wmpt-~=xRgi?W?woGra#YgE)=qtzY%3WD9!!HZpoH)?F&uj;4=wPSZziK^RH? zrLd*jDs2%(9I_0Pzqf)@BLnu+iXBlIwf!7$$TgFfmun7*^HNmbp;_B+3!;(q7JA62 zGU-$nAPg2!sj_8z-Sq!&@55+&Nd`m#G0=FC5eDUnD54+;K9nbJ_}pbtM8FOA1veB#aC`3W`>Jl;>eEXG zZl?3s`~7CBZr%FoRP{NvoH|vv%E@EBte-Vt2i8t%4^}?4Y1N=><$%ea)xc(7Qx{GO zD@fb5ZB!&0c5M@GyzknIoxJMc2z+ti&QM<-f`wlM$VN z4RibVp1JX`By1HwKP(B`(6oprprM5zVN0RSnjuJ7UU*@xAS?wAn|aH=wM|c^XigUB6Oe`LwW*E!nV>C9z;)U2? zi5nnxk2$WZb8sKQFLWQJ^Ee#GP2>Hh{oP@BeQpMB+0809r`!wRZrabyt3Uznc`!Sb z_;QZB1Dh(LTz)aD z?|xTh+m;s8UbU@T_NEkQTet1owzcF{5OE|Pp@?bpqKG5$LPU$WavSUO_+f>_i(zm5 z%?P0i*owUO zQqP?omV_O0W+)O9t_4*x9W_`C66^O3)0u6J&T~Xqj@b&_6P85NnclUvh+ATGRWBs- zj+4>0a>4zxn#O&oo__wk`dHU#}*cO(DRt&EWOQPvwXz9h34iS8MOi@U^|H7s* zzjfs>a*YPL*3|r+VfkfQUJOg3n&lw|a;ppI0VD(oTZ*T`4r9Kay?fv40^KJl-7u0J zh}eCw+p2Z%dnTxE@yCs)2izUDCfLe!mm;wb^#Fa3asx%+v1Tz33%TeCVO`mSCh*AK zbMvcVN!Uj5pccqP8ygqDCWT8vlop%AfK+Mkk$vMInmQ_wT}zXu3ESViN=QLh183BqJ&(6?JW`~53& z_>04G%`*PNuq2w!_*VVVes4U#y+6A%BdYuRn#T6IEA`j- zxW`myTf_95!*a|r{id)an$GkkI0Z}9_PjGp`)D4=BGj+>_cu)hOL-iYQbbK5coah8 zR`A8J+_VDuTv!rK7s%2rxJ!40{SPj)GdxhscAQ6xM)6eBB(e|fI~_IKNl&Y*r)=3i6$4-3mfTl-gsCDC*-%iSe|lIFO=thy3fno?+yv`OO=CSeA8RvL`PQ&K zAC_m9?b)y-n$GqYv}AEZ)7bwamMpFh%R?)MYr~Rgz8Fp%if8!ob%d5O-xN{Z3hry7 z7_c&{@{cM@oi;@<|C-kDiLgAhVz@UfiE1%~Sc9<37~1|Ff`l!_9bv7E{xZg``*s962#sat#x4Bh`h-UrkM_@~>&4b5V%B)RyOjC1D%KOhsbCH#T(j#do9z)p`#4 z%6MeEGm^;SbU~pnY-pkwGC}_6E9221{~9r@4a-AY$=8G>(R4AuXq!xzcw#P&cZBvT z*nf7@*iWOa&X>nZGT$1upBa{CmhD@@lBi~Th|$FkP`ZZ;LBf{eH(~o(e}MYnz8#>J z`^TB?%ti-r`!{yo#Y+%#rs&`PCo0+K1XVKr#_`6htHV|ZTc@s4B=+HWbsCs&F-3tm?kg%n=B5XhIPZuuRx6_4gv!<`^w#wz50VnTds?Q#M`vg@k{!A1}tKhho|l8N|6>v=#RE!{Stk@css&f!^CJ&U(>cYa9y| zWud6rpiog=DBdH%LPb@fY8v%DdoPE(!;-Mg=`KZL!YyD2Z^1`~`BbtP**TQO_i6aZ z#8GpGd?c68axYqKP)e98j^Wz_D*QjzLhJS6{zkZ)uuHR<5jAVc>|zqTnhe zCyyb}w6PlDY!1s=+nJsomPEC1LiB{TGu2Hn1PNP;>0y6}?o3PG++sEv%an#=Xo>k0 z78!VE{oBw5;miFy>CJGjp*O|7gx*Z|dL4H&z1i;N^rpLS(l5v8&2sP1p?7QVMtTwV z7J4o2yXZ}E-$QSb`wn_@+#Bdkc1N{$HNE}aYqj?QdQ;pt>(CYSrn^__(1++vcHgT* zchQTuSJ7*A%lhS8>8*9&NN=ipseZ{D+>wsA86zX!D2fm-eFTIzEWzWI3W($3@yMNL zW`ZUURKUyI=uLI`y~(CFm+O~+(CC4ZQFR6}cH)~Rm%LW8x8Nkf;RKeW!Cn0dr`=V& zY6Gf>Z)juwijS27PHu3w;V=aEHFVCVa}J$z>6}mJb#xMR`sobN8G_>|NiqGCv+?Q| zbbdwWDLTKU^9-G5;W#d3b>5hJL)(7)#a#-33HMu!_(^o8(3wVO2Ax@S=Fn-S(?+L* zPA8oObh_a>4bRMPiIGu0O`8J&==zI^3qZrQgRYyydyf*b6 zNvxQS<()(+mF`#dmYli|fShR9YMB7bd&jJ6?i+=j?{8=?$s zh%#V^t!GpT!-gmo8=`n@h;p(a3e1KmIUAzr7@{OcmFO6vC`XkHZHU6OAxhPTC|(<) zoNb5#w;@X2hFAq`h;_k+SSf6XwZn#3O>BtOgdw)wQB_}Th!w|%Sc7bcRmp}}r)-Fo z%Z6CXY>3s(hFI@xh!xO=SOFPg4=}0@Ik6$0b`pe2UJIvfsF|uo7sjp`^V)S&clyQK zS^ZfKcWVA}@z^SF|0L_MHya0w7Gs5x;Y2n)=5-fxL#fQJ9*r&ZBzuCWXA1i7v(KB}pG{`s z!$_hIVd?YcrV3kdbe6@Gy>^`bg0=?BLo6{8Q)qN(o#L$_!=5e{&tx+}ELc%Wc+;~9 z7gwpUi*rwyf?jgJk~dRr$#U??fMUUPKd1te)@~SM7jQDL-b}T3%z-gv>^ksjR=)#N zNRnrZjk#)|nA+FpoqJO7HiBCjlTL&?fnbS?tle;IWZO^*XZ-4;?ISyJ$_cl{LzleJQ5MG@2p^ivdJw=QQt z%?p*8Z^SX}_#(rJI1oM0cP!+1G+hJ&!vVvYESADDgZyA)0QMau&XtM(W5F3K|q;{bHz5`+)`|HUuQr^&F{cgBC#5Pf=ri zTU{DRr)kvBohf_Is{aduq+sN_9$gt5XTPpN_Wn<3oc*Rt!lvw9(Wv0#X4-pb_@oyx z>G3s{1}r)@vay664XSeU^CQ}A2C`}NKas*nq38?;2UcjAD8{meuG#~85)IhnSJ6GB z90{HBrm!h{PjAH6af{nKJWf(@Yi-XF4I7eb1Q*mTIFbboX?@SyaTtDYT^dL?UPIdS z*{~^lkE#FLUqGh4iE)yuN;ckaeyDEA*Ny+1dt2*gA0$=T?^$ZSCpV%|DYkKFTvngP zdLept<$Gvrz4tXD;`il^8(Z(g;gkMwoTOmkhH-1{qPh}9y76jl@7?vY50W~iKwp`W zOcnJ)fy5 zRiFC^U2mq+;Wp6qC=C4Ee}JYcWSeH_na zZ>Ckv&KvVul(u%Fui&AEKv|ng9Z#rgQ`L!k>St)}&6{3rIlvH4%KMuL%I%$u%qjvhWXbbMbCT)goZaB=F^ z%_nZ!I_BPlK;`?H37ks0Gu2-ls*Rgf9Li^lMJma)ku%b%VfC$eZBz^9>=@OsLy2b? z1O+-m6sX17r8aH)AoupFf=$nLs4~9pB2|OB1;L%_Lj|LNXG?>7n>IaXi7d%e7;BowbM}rAG8cg8P zU;>W@6L>V3z@xzg9t|e&XfT0Cg9$tuOyF_41dj$2cr=*6qrn6o4JPntFo8#d394Ml zo8+>-t#ZGMDvCM8^kLkbNp@dsrwdbX-O*4bsAUKTQo^9C+N4fS6F^zj!?LP|WmOBy zsuGq}9W1LVSXMQ#tSVqx38JjzPD0o@nK zoWT~4i5=#%=m*rq7Zm_BaC|i8!c$LEq^=lCTruX&K)ukUQIL^n5E?q(eHK}Pg!>$P z_jx$poL*IlB9#QD6`XiJiSFSas$_Li&EBdIkuz`u=$Ot`WL2H9H}8y*;t-~pRk?XH zurUMkKFoQQWvU|VwQq|ju!xD%wgL=(+){OZf#2Pz-p0W^4;Q~E-s;|RJdn4{-w%e_ z;AwuxbqYJK2oJ-^=JAWX_Q8C%l;d`=Xgq1mf8{^GHO)LyWh(ci&1cl-0v)su$1S^0kP@`B(qA~M9 z_k>a6Oe|wW@TF(5qMtdDwO&Y=L`HCJsZpxN2MSB*X zrq&?RYul*tc38zv^@nuTshEJb+AewOyN(;*XbciKE;N!D``l=oj;Y7Yp=@g~5wO`o+@V#WMY31z&LFbPv!k4hmiz ztY56=3yzWQq54IXFF0DdJ?e$&m%XW2_<|Zojd4mb+n-gPu&--Pv?VLHmL~Xo5BlD!e$gbM6L3csq?XQT6G+CbP(4* zs?SP$a!@X56sFFjt;Svl;Z=~`W8T6_Dm=&+8%xq@Nq`E}sMjK6k@h8(Y0b^8jy?=D zns5eqOlKo%%g4i`^^Cyi%3nbZe$<s*F-!C?p#KU)j{BQ7a>#zXL2_{{(+Bc=yFh3n&<`-h3Z&@?NT(u_%Akf~w1n*xxy0bPsQ=kfI(a>5FLh95_Fvat@3qHtmJCG#$e7wy@-KX zMQ2wrR#}4UMbZPgn<1v_1d^w*^npY4>lEv4BH8kaWEkB2WU`Fch!hK0HJrL7x=H}s zG*Hqi3rJ`1JN+MScsJSrmT|DNKfm3;-XdV#z9Osp)0kFe4fLHpl(Vf-ZxOcW^v8F^ zpsx-)>#)Maj<^(5;~NEdZnm%seFhU8VaVOo2odxL?-Gc4ID{mPUNY|!GIZYOqc{m4 z_2yC<>?rMYxe(~Ktf`%0gNd4HGmV{Q#CKU}b`mg{k zRA=ovv0Mr3t=QzDutBl!86O)|f{%=kJ;t!(<35(ApHZ)yYV*i&44-5qx2qylbldj| z=n@|aNjXYRv2?1yLBde}n1HwY@DiFwJm}{?DliKL2Fu%`fqcrx(jEof1=a$!?i+CP zll9{Rp?$i3d?2#>>cnY^jd}|yJg~yZQupqLF`pOM zu4*irtU*2?kevpp_OfA(*1#SVutTb0F@2d*U$&US3|owj_luNEO-gi=SQW2C9r`-#`J=*;KzS+9ANP4e(j*d8Ly18-cWfvd9=rqPENV zj==MpPi3czX}sD^qB@#b8gGJ*>Zc-={fPtItC%PiMr0;`5b*i@WwH1U^bGMtDxE3@ zlKZv5Ee{F!K`)*h;!c;KNBM?GvBIXX&={ssqObggNMj4Hf3i82G|1uy0&c6G zf#;1`DDA{!suc%B?!XuE+c*1#%ub6_^}~-I6lgQQ6X}=NORw^?vyZ1l z3dv*9tA zOu~Li8n-mDZiCYrZ=wWr(2oBlNX|9TiUu=T5DPNp5p(P$1E&64P?~2baoC->WMN3RiYOXt(lJbCvAARqZ33Z|G+@dpaLUW|zJOWN1g?{# zHK|dn}H2^Sr{e^c$NUeh6x@R z41PgB=MvVAHdUb2tcI&nNQ9rNte1xFbb;*DyIrBY41zjrCk8fGz*_rZv?@A;8Nh4- zz)`%AxUZ-}AI7RjY#iM;8VLv0ty5r^4rb&0cs81W zi7uJWmee)1l~rQCz;_dGvD)fpim}9patj0u#G5wf2jdw?As<5yyc|>MQwALo=w;ip z0ov>)#@3rGmQPKBg(AViO{Vj!NBls6U9#O^8<1Wm;EO8C0_JlsIIN=q2M-Y7_-+y36)<1v`Z0F*26>P`wr$#|`EWu-_j-sA z;f9(~Z?-bu+j+~O^(G>>59oJ9tLDHuRV^H8?6D?MW=&aA1hh zAaBU@2+TZ^@r7MEh8!kPofQc61%V-UxPWzY2?E=+*u+paowXj~WuEi}*Hw z60hzGHIQQkq@Al8>Htp8Q4Qu4foY);Lrh;!67kFM?Z|dL$JM<&RwDD<_h1)mwul6g z`U&Jh#nB?kK{g3(TU_i!78rjqNEJm^$BA^S_L#0p0LP1@OVzABfqT}rb0Z8VxdqDA zE=s;a;16twkIG;6YLRSt-DGkZa;r#j@E%g2w#2bsWdzwL64o!F&Pu6sCfR8s*>ZK7 zI6kCKX7il4*Q_^ViTITw#p3D|m22HVzf_<*3dL;Bk~f8Tl>q5WM=h$Z!SG~}WWK5? z{WeX|7n~??OR(mTy;&9qbqC+-ScP(vfG--vA-RpgrwZ@^^}(pNXft+M^<^T_q6!nL z{{9E`E)(=SCkXJ;S}?Aoqnr#Qj}iDKwRl-QHw*ZR3OLw8>!>om6rx;JFj<`Er_tLN zTGb~?c6$UQey#w_^;JvmwJ;=JD-a!;M0GcMmH^GuAn0Ui(FL4S55@K?P#60sZrm8f zHZXQ1%21w#!pU_&Q?d&LaIxRVarRNk5QBc5Krd5hHkz7C0!@O~iv%1tqcDKtc+gZX zUSS!_3)mcHUujXyiRi^@14&JmK?6t$G*=HXbQJ`9N)m$UAa?s{pecD;K-&BBm??0? zqEXmj;sT>*A9{V2!ylP$kUIo&h3@7#^ysr1DITqp|5u zWmPr8?9M{}l@ux3RYfycLp32VOLPVHudG%bOA_5(KA2#P2>1d;5^JZ!S?nnledn8e zAotN@VZ4|v=5UAuhb)uxr2^5pb|4O`ZE|}l$D>Z|Jma!G!h#9MeS)nI>3 zFloD_Ata!3r4Qk@|50xRPDjY0i{Tfnf$<|&y?S(oNHf1Cf%&~x30wy|YjvDfA&ClS zK)VHKSpeFR!iUppnF9LbAU;7c3CbctSDgd~>G?>0%P{J-YUXgmg8^JE0jd{MJ0g5Q ziRQ@FFT;+(R~!fD-!Fx83!SUzyq@n?@af&$JNi>TeTvS1FvXi0yMa%SFm?_j`uXly zIxnMh24nxir<>?3Bcz+oOBnnYlYN}Q0XpZpC40bR$lg@Q?j$_0alg(xDdP4q- zPiZ>8r}H%5y@Aeq>16rtEIOZHvK#oWi&QS>yRY%x_xSG1bnakq3!Rf0JDa$#^Xa2> zW-$0p#$HC}GjvYnyZ!leG@l;e(;o=_PdeYC^Bmtr7+c`eH|QM3;PcG#jST*ZxKA@U zi4pfRcqpCubUs4oyTm<7$bEczKcBwDr%tB$1)uJra{!&+()lVO57IfC!Mo^8CaF{S zbO@im$=EmW>E)!-N@ogVU&W^pKAleIBnIEXr+IXC(7BOm*D&HTK1E68lYE-aSdUM; z`0h~#%M8AaPrs(~M>;QM>;gV5r}IlfPUO@3=xk%`$M|k7^SFq?#dPjv>_6%JnZZ}m zc{QC|>0HYc-{(^sA-fqokipv+d=H;~PUjdpQ%U(*LUN2zOtFL!NAhVUi}pD_rRcns5swi!jlpj- zcodx^gE#Z3ht47%4|M2NFK7EDG?F=sDQ!kTU%HYFv zUPtF~IHNf0p+BwqxG{GZO5?Shge?KwPIL;@H~&MQ4p`VRh@k&h8>wTZdy_x)m zG3FnRfkQEz0kgG{v7Hz!`1KAB%)!@1v0|!7f{5sn5zL*l2^BYA#tmaZ3)&u2EtWBg z9QJ4i@!c{W3P44cRf%=kkmJj$KCfNvAJRM1 jVGF|?k!7A=`4-bb>t9zx@efmiwODkEkE6EqOF}AG3c4WziBpYL!VRq*2&WvVf#`9*h zl8pg}%UT9d!a^W`ISd8@F-Hg?;SLb4Kti|)NeCec0Rk8Z1VYIFS5@7w-iJ@J zU*OTprnWvf^}y6%gh4m zd#;O$<_XzSAP(W(=u>2zN~10&Wy&pO%GrDg)RK`%xn3;{W>&gh%auXRCA;~;DW%6Tq@HT54cw>Dq_L{&d8te>?Rl;TuFWRc#F?qwaAWRx+5>y_?E)nsUVU^l ze*&GmasCj*5xpNkYSntC28^?W!Ialnsgn2H(+o#Y0OHo%z`b8@}=nObGL27 ztNB@XG+i&&Qq^+NB~qlbSv01Up*8?q6+)783EhVpi|8HtRlVq@h&uFapjOVL$|J;d z2s1hqKfNIOH09+$CIRSyKiM*R9T>F^-;Ae5K?rc)O;z1d7jB1wzSN$_7a5JF{Mmn*^|P<3I=9j~ykuxe!evSw&# z82F;`*%a}r<_-I$rW$io=EiOG>zmX_HJ?S_Kh#)o%ylcNiFCDuo=qq(_Ue@i^WJ|5 zbuhpUQ%_R0lNBc2au7IQ%DN{Y`{U!p1CRs)fDh(^|0%bUFP5Pr)(s6g&s5_6OsDFi z4H@^!D;+KOTo^J(g%5#EL}k+35T4X%F%7&P0x9t{4Mn1vac%{@W07bdNS4;QAk%z| z1Qn<@FIBG=0dRIHU#sLZ$4(MQ)O9L9Rw`FrLUn2Q5!gEBavNrq>f@ySPc@dvRmyWS zxJqT+3WlNs=QI|m=c8pPvl@?TeJDc=0|^exm2)AY_Qa1{8Ur$i8vVc^mjXf~ z=$Po}#7lnU-V3fkY8k~tjd{8pHSHmD>$#Pw#yLZ%w^sC0;8uS0B)zA*4ER-rI>utl0X!zy9IdTH+n-xVPc>%VmrLzA zB!7?GLBo|A(xl9JU@&wHD-;)`kuH)#=g6hKJO&yTuw0o2L6YhDZlyj#O=5j}{k5~% zV42aF%g@!Qd_LVk(#^9}pzEok`5HKu+u4}MrPRQX+tpae_W)4LdpV4I{v)IE8;M;z zcJ4~z=ko1N+mWf!&yez25I8@Yr$M~0UOHAPPoTw8tCwLjBKMZYY%W`eL4X^jhJdRldoR z!n0vWf?G`&&HLry_jKpKbQO8^5TL7REZ~+v6RWOuo@y&Sfm!vCDd2&kV8PvrP*681 z=mm6k@OddiK}V5Csfm1+`sobSe%4`73Dh0)CF(s;soZ2TPFRtlrbP@S>w1}Lo>eaq zR~{-etX_jPfQO5@Bw0G>rOJq#3rit?9}Jds5j}~4i+tr)H~P)3*58elEz~!$*TZ-> z5GZd%aj-E5da|4 zmldI((2`U2#v-l>^r_ZTHJ0(lypSm+Es;U&P-6}kCoHBKTcQo{YCtCgLwu~9oXEir z9IBAj$d+Mh6zGz@hoOg|6oSIG&d5%|8`i@;50gU$C4cKfWtg}r4=qQpsOmzlZV_Xm zi9Ohg+JfvU`ijNoD8eON=;{RE+q zdJtP5gE%7#WhZh1&Q;SI^~N$GIn1t9y^@8M3d@J>!Bx>0B+d0&1|333>_G{Pq@f8h zHVPaVM-bXF$psIT^kxYIlF^kqLq5YgU63)>I*AaM^eV-CP4${n>KQdBCB`6iM=3|P zlsqFD#P`ePInOHSQA*j3uo`PH5fvuX3Uu|7=ccQf+*IxwRR`$|{ly{mEC}V0`ks5c zQNIs0RtC^vn1C`)CWUDdqbe2}Mhz~{lMi4;GuHl0y-G%=Ka{{upLg57-FuJRuy60p zdkzE8!fYOdNuNx~92HOI$rVk2pv>o#z*nBZK%J{MFo@8R7U)?I_vNX^3K8w&8IO5% zJnv2@9kT*+<=U{A;K8XcObOMwd6+z~uCXImt5v)!hlc^%8}h3jg1I&fbWnPD*A*cU zFPJ*8{!Bi*ct`VR7o5>&JDWa(MXb!AOQy$FiZ($256<9IF*Tb$bsNh~2c${Qcm?_o z3?gY;6MdEU#5k-#xHkk|lPc!vpN0W>ND~JupmJot)K0QhN3S;r zz9o35044!k96Z~}z~YC6MW)6zjdg*d(1I=*&oEMp`Ej0vqr}oc2_7y}-tjT|bV=Za zKO!_1XYeCa^&HVngt9F-!-)DqHCVM>HY@>w?6Z(yYIRC?t6yEwmVzyzI)T=EnBa0 zhKHR^o1JkNlT`;j!kK_s=Q^-qq3^Q_*xU!^&K=&iZLYJ;xs9ppIm*JwI>b(A6s&d9 z&LLRWLnuWBuf_B(J?`93&mM4U=_=;PT)?T79q1U4mWul21nmbjU}w+a!@hvrQ5R-5h#3X7;nKa`{P7IpEjhqsAaBP3Lc@0K*?*r_W(UpWVfx4{8XqvoD>=4HChetDnMOLmH@a3~t?e z6~lQTC@=yrUxJ-U6u64HJ?!kk9A^ZBG9gFlN+?T&CoVRnsF}nk6V*%Ib-$Q^~s+8;R-siUG-& zr7bn83aUQqR-!d~#J9Db(HHD*VLe18wxc2FO74jYcsiOc zdhT|IbPYj}Qa6#JA%=s$+ZAKvjd@Ch*+;4+T$pqU)vi^_9%vLm+PHDMLpo${IkT5E z2tU#Sa2!Q=dR!4c(LHy?tL8GtK*GIcXTo*RIl&pQ+M#ODI8zVaDb?jUMAeNq?7MAW zQV)LK#%mZ7K?WHKWkM2IY}n8W<6z+%1Z^%GY=Vzlrs~3SQZ1mq3SC7rX(%{S{frJI z5xyRpc2ji>o_d02gr)>Zx=;eumD~v^9#(lOG59cUr;rgYT3|212&U$8d3zHH7Q4MiCaM~ z$ic17)mLBbY}xWep-b=fwa$%X957f<4fGg-L~@`ip?yZV_hDcvIR!Xdh{g`Q2xEE7 z&*VFXs7dU1t0AvE?hYQOK@>kgl}Gs?wlqGeu7%zcq)MTjFG)X>9t{hM7y$)-8xO@8 zP%-_?gBW9^-iRoqFw@7&`K$xKS2aL0Bhxl^P+WDx{P!We+h&S*q9Jb3v4bD<$Zx>P3Tsmw&B{eg9?nY@lg z&Ujjp!lVe3eE8$xb|nK`rpn^-C7-IErJg(Fz@I6TNts7#4KS;&1{wE{{bhgk}| z@>B)Z_08RmL%=t>nzmuhqnu7cI`c`!0Ha58nHqV^AQE zv~pyll8b4^qaNu6EX5B$xXWtU4L}<_4wqbo31V9hsxD46rWG?(Gw6wbaKqC`cAm~02G!NzBxqX!h+i> ze~B`66chK9EOBC_IstDqoXxY~5y#>;FKo^g5aOQO+}S-hQmn%}mmS4QihPANdB_g? zey}vMMjk>TVU>yy9>?+<+;_$LcnS1fB@b)mN|Dx9X?cV=0Yv~dE|r&2hmt&J_l!7W z&n?0Iu_W-Ad{S7m;1x7^jERIS2*XjeTpk5{SiT#1vAklBg6bF~j4gJ`W6)@b?z9 zGF6BW)E1l)a54)@*I!%xC@;nY%Q0C}^^z>F5KRIW@Fm0exb`@l<0qJs3|PgPTzVnxZ0b zRfek&i)!cx`O;`P#8vds+z#%EbNrq<)mVKb6o5cIR|O|vnQg(ryq9r{7(2im2}u~x zpu@dzk$xQN1^Qv6gZT)WHZ^AJMQdm({b31BaBCRj(X;Ak*h>8(Q!Qf&$Y0$iVIY__ zO%9sCp)2)myE^%-jTb!wP2so7Ou(D->m{rLH$0&Vmm#01Nwge_l{ zq3OwQRA`krFdepgk_g zKu9{T$*#y$D&it1>ms~DzL?)Nw{9stZPmUF^kTaD7EvJ>2=y^wSw4o9Gpt>kXDkpD zYlX*yh4k^XtZ_{Xb`?3lDuI<}^1C2*#LEHD23aZL0H1p4UW`JtZi!$g1PQ3ni&KqF zs?c-|*r>{BFFG(rPsc(7tud;&12hT!qv+<`Vg-YGDU0<04EGpu%wxp*kgJy0;b*#~ zBsv(vMVh}--f}E^@5D-=d94E!3tAWA|kXR#VBcBjps|S z3##L0)qc5o$=_jY7elQdzUu1mNWL_j%TqKQ76eRD3KO6>09AIeUsk_B%#SGzVp4>G zSqrS818}Sd8FoTO*qIzel-nVuEk6w}wXn&{&q)<)a~Ml7_hM88D>%%C17Tows%Jc2 zVjaJPwWi~+hJufSM&x3>*5@zoO`R$%!GN5*rmz%$P8F8n_o2da{$0VpEAflhtK`pW z`LhOp3Tx@-0{U_A(^wXm9*FasNer8Mo(iZ-WyTRycmDWzHiPjr@DSqyR5Ti}pS*8m z080d33N{neWQ7d#W%`+#UtsKm&5MAxYI*`Evg;8)LRT_k$qR4jc9NIOs0}5V$;1-W@uM~xakCx~+I>rhm(6${zJBKcT zy4G*8B#U4h%s`=o5B~g|#!CGHez97r`K^zMdOOt^RON^0Ngn#(K6mhbDAQ`~=F&~& zboNU27Co@_D(KYg#bFfZ;(^~SXI?&Z1+~bp0x$0?m&ZXc#BycJP^}UxMmIFHEaayw zp1eG+%eiE8`0-4q8vPVy$gA1lFG8j;uH>GUMvReuEFJ5RJfVStBBIz1;Q+-^ct)fM z2Bi7)l|Kb+K;5K{9#)S>Q7;_q2v`8isN4vK5X{}kT&BQ;rSwcDPJUb&HH2#s@gOds zBtIb$&~XX_^l4=9Uqnx-m=4VXu*Lcr2ZxYxjfea>Kk!4uV9?6qHa{M!VR(f6(#Oyx zfmwl2kCuPg(B?6nN?}O{{?(LN-)v%I1)5%PqiGcyouZtj@Kt*1clkfrWsq$Z5v zI+6>dWy}fT0FDc?E~d{gC9}6sOQeQ;2@d0Y8bL{5x!{8FLK{7#>*mo@A`C)GG=VAd zPXbO3_HSt{*CoU*!4O7*MBlEUH^fRB_r|K^u2D;|GqK!7FdSObiBKRD^TRCNS zld&KAM%&?s8ta0es1bu^CZiJU2WIqnwd|Fc%D`lnc%o3CQ0_ex9hCc1{(V3FB5Et3 z;sB~K*8hvVlPPObkrC;pN4eQH&=JNX74f^Tk+!lR#Aa|3# zJe0dxU*76taoa=s*}*`89rMVD4euzBczT|9xHV_5Ak@ znBdX#H|BQHUj^RR{JD+%_7QoTdsFVseE(?fE&TVb>hIffZ_$|k(N=x+cK_-fxj)tq zAIrT{T^3fMPZU<;he3TH_d#9eLkG^&mml`&@)09JAJxRjeeA#tUGgt;A164f8wUmz zhW<%~=wGS7pUQojpMNH|T1(SsbDz_fpU-_kUFvW*i67hP&x2K%Z!oA{Khlm7ao}l? zU&?)1Uw*|G^{?i>rXPOYfB3H4yY<6wf7h4a^S}C!Q~KHWb3f3R zKg|87zWmWc`s&C2)kV4O`r#-1hd=QFJ?>xq)PMW4+|TtV{{^k3)Y>n6G=Aw{{kQ+k zul%cD`w;&p_Z#(bVFTH;8|g=&6%x4CpA4-x;^(@C?R58XeV4?Y-x0TJ6bnOmTo|Swh1U+c-WhnXi>@yYJh+UmFAqGp64x48 zSbS;rMDNmeuzpjxDp0KOWZax8?BD^Ta5Zio(l<{DzPX0q$gokk7B_|6^rIeJN7sAk zM*-SP*ZTqw_S5zC_+et*KzBFlyMuIhNZ;K|cem)fTXDfkQ@eGktHF7cg>QpF-G&0J zZVQKTCC`rFs&EuPT;g_IFo?n(^!%y%`JHt4G<|m$-QBJ4Qglb&Oos3bx=ZW35xUE$ zyT(FsfTA1nMh}<{{7IGyx%!h)x*OAXIl9a1y8_)E(|1L>8`pOwTpT!u0hZ}-Wh99O=Jke^K8iO}POe{~X9h5PWsC7$I!f407AEb(9% z!D9d`16~Xj4e9s&!gC0~gBrjK=(>MxycyTJuNEGq z7jFr?eJfqRE%4xv==$w}2k*eO|NS51MjH5-fA!8_fp^hk-O_glZ{8Cu_9uZijb+A1 zq5L@0j?;}f{x`7X3h!mu=bT5DWZ_S7Q+OZ!s0V*W*Y6KJ_;XwzQg4IqBDi<3Ae+TT zB{)v}fved_NXmmL4gN0z&OW*R|u=Gh^G?ft6+?6OTLeaXYH6c z`tSP9I~Ak7!ADgOsASP77qfE%oH82M#v1dn_7TBpMw<*Uz4S>EaFO|?WCPAU8dBlI zXiniH^rNW!QM&$E;K5(wTDQKj2(CDG51o-2Mq8k`I5GF*fCH~O4N#xJr9T9GGH}!A zS1zS90rna6)0-~@UjGeU|83yG7jbQ{|2ul~ zrNHYi)Ad&Z559_Pzv*8K-h3T52GTd^n{U#OLhSEDufIia{vq)CA8`#YlP>*F;oEOh z$$t(M{|>HAW&c8Nz8iS`uekQH{5RbAT=@6ko9_i~a>?A#A;{Q&;924O_@SF0&|kXv zA(f-QeXVHzW5a` z3ctn=efmFi^BZ;Zzxc}le~Sx7=>O>T4A?$Y_8k0$6NN6%#bx0<_56IgnW=7O;V*yM zr!QvXf}zgA1)L!C{apQW9xe*=@k37+;IA}oAzhtI&-$srB2{29{^qWt#{=|u3H_*n zZz-sH8C%C|*~5s-aCwghZFazNBs^WT{*65Y@}9Qbp|TCwW^`QlXz89!6q;&Q; z7Ej=Q8-+I!(V1Af32Xr$!2Vuxc!#L6ya`Xll~xg`6lwqjsfO?#S_o-T z=7oZ#k|2~_CJ&TLnr0(4>{IpmH0pwLKFW z+O@ri8%;lOFM9b5DqUMFrb5fMJg5#AgFsX}#{w0T5;LNwI2 z5{$T!KF?R$K2i^dq6m~v>j=4NQMq~*4 z8v{MA?y*C7Km(h-i*ge_r1YUQ^v=a#aU zKXD75QaXzHBom~Ic*{E}mBR1C9xc2FKUi9(?a}7VbNn~UqjGGDz05DRv{{Z!p+EEs z&DZM3ynN7qxul7^rpz1tGK+$2F$Lb@7g!#psVVjjznCu_K0i&VxB8{}H86B~^ZvB| z-j|9d;{C2)Vx@)U%4LAqO;0mppteE$o7h+;hw zR63^g>-^HI1%C7JV~RfH7geaV(W&N(SNUHkh2U!)Q|8Tn8Ks$;Wa*UuevKd)(RBva zBYxQdDXWJEQ{)f)BC0wbpw0Ui`0p1B2sL_|5)Hq^S}74#fTr-<{K9GkXd0hP$yfR% zmqi8@Q|h&TslZ68%>YwuvSl$fu9{*m_lqqtbvDuexqg|zI6+300rPCXNVCPHhIdnR z$}ieHw(}rs3clJe7-%Surx>10u}9k$!?0_LJ>0e!3?)rPgs0s2D!tEK!E{U|%e6nYH`VUxKY zRcV0b2n>v_GFJX6LE*9S{dC2{-v{W5$G8vE6%S}1qbnY^K0#MJK7ER=cnJC|UGXsU zdAi~O6xHI?D6?fPHy5c^$jIOxbt)wgNTx;lx`_Ov2;x4j*uDB0uqAM2jEp)|_yp66{ zSd(E0&?l=!(VV3c6wucrslPp9|OEiso{Dej~D>RA2$JanbH7ZzwZ$ z;Jn64HDB`|!kEMkdl!+a=QLI{zs%G2cq9(MJDq9F{}7494$SeBhv~;G;8cE96D$+@ zMrbT)dP_?WQ&^@~xwm|rB{Xg7!12FTI@tnnwsWe zFp^{&J`7=n1Lr;Ct)wuivE5jQpL3=d7@Gs3&#_+tJ9Ckn2{fab9mNmBUgcScF19(zMVo*~4yBUoV}l?==%5D``#%>=&PtiMGrgEU%+y_(gbyjvS( z05HFY$yra3=(`Z4h4~V8Rhn%axh>drk8DA-?wC43(N|~#riqwM=!gmZbg>S}z|LL7 z><|S`Vc9Z`oKh+zXQs@T5oLop5y>0sA>wDz{3XF0HsYS;crFfV$elNRdZ-0@tr)DQ zn4pbF7)3E7DV;&5-k433c(jID$;xrE?`uEW@U?p{pT$aUvTy(3M!q9OH`%vrpWKnM zo9uh*OXQ9e-eli7ZUXtMNNbybf{qdc0N6K%q@A?V3BLz6w_w`wuxFjjT z$-eKdkULU@lYN^v$sH-f$-Y?^U&tj%Ax`#v_;qqeN^!EU_EEVb#W>k_?5lD|%5k#q zl}k7CccdUE`#x})+>w%;?7Qn`xg$k6*>}}Fa!1N?vTyyk+>yeZ?3+3*cce5Y`)+~;YEnFWd(8<1E49OiS(aFBKd*zN4>15xne>TV^NtsUe?cKhW z??|Ce_LX+a9Vykxz8{^~#_ve6PWCPMu-uVyo$NdMEx98FJK1;lyoPdL&E!yX z^vsKu6LPCi62)PfJm#z8k~QXnmPID=_ob`ZP9s53{1cvJRQ{vunkSs zsS*=z5mA6Dkxd&YqsXndOQ39Q4Mlsl6jsy|39G@T(t56%q=`Thisl$Jwg67HD@x{M zk^p^wQox2bJ;HDXAy&KT&q3Par14&o>cw^byCL{cc!#6;6qdcaCy z=NWB85j2`hQA3in*Mb6SAz@N#OA{=_K_g}#?m|$@OHpo=a#c#MYc5IfTTU8!~zYCk0nWoJpIGtapo@UDEdQv+5 z7Q?x?sXgo#5}|;MORfs|O`F=Vrs*q;#wTe@h~PHV^fmx9>BF41xg?&x5MS5?Qko0i z@Wv2R_2o_FR9mULvbBTwPRj7cPFXlmQs&DQODGSBL&Yb{r0Fx6Avs?HyMu~XGe!z9(cLVYR{OYyDA%cbHLZ=Tfl z%_VK$TqbWcCd4z3wTZ%gl|tY+IxFU4$X7(m7xK{s0pysZpzk;>K6tuB3nVXYi;A?} zZ*nf5#n>Tzwe2^T@|)8>8NH(PKXqz?#oCb z&7>l^rjqRbO0t+HRRx_szd{<;sfaM>G|vkOo0STiG&V|{99Q0U0h0*70s)mvp7tsG zeM)mp0pOe_dNm@9PN)j4HWk6it|D}nsyel!OEtRru@b=M$BH@4k2MF#T%$@Bt4i2a zCN-SqX)nFpp!XogD6-oa+>`R#2O7U>Y!xKRBEa`8QWBT zgF;ZWotnU6*QOYaQon9QsEjY%8oSV2k2W0XBB$98LbYu+J~LIX_G9|vhE%z=eL;$q z2{CP3`?5?0-msTBDS$6&UziuI!J*^InIW@I`7GJ~GwiHP%BR>uSj$QIE$z!|E-DFm zN~9zjh&AIHY4sHCjV8&!5J^@y8(PZtpuOQ_MMj(73V^C@xMOWx%b4C5@I=5Xt#W3# zsPSkhf{QNXYPo6)rvmiPf^X-9{I$_%y4_cb(Lkj zt9@}FFWSu-LTegMs8#+HQ$m^_rB|>aK8A2Csp--g2%&25V5=4&1|WrPsQF?V3)hH5 z6D&G(VKrJSQH#>uN0G7vkh;SbrA&^k7lFMof(A+^$!ncNf^#+JjLMh~SHwnkItj!} zqYwkVOUb+LWXLa8RijUb{;n&5dV_td%13$QBjp>!!O2&n18<JalMn=8rJZ_x|!fz)sdo_lp%e^eM=g1MaQodKO&@)Z#Q-P79CTHb!a}t zJ|LLni4azzJ_K?Hp%}%!ZESb;P6qW=%U;F7JJPKKbD}8HB=FJhcbXRxc;JpugH7OU z65FxIl_Y3m0Cc738WokJoW{f|X_uaD>0(I7PN6;Wa;+Yy6^xNG4!;;j##(u;ZF&8z z&jxMt>K78DBAL-zL-v!X%Il3y6)UX5qtluQ6*Bp1M%#XRj-YUW|A8{?33zQdYWy^K zbXP8LnwMvY(icVQAm4iu{U4p~J~v4_P_a>15oA@%(o$z4@=kB%g(GF8d_qb^br$>j zDFe_iEv=IEHGW?>k2&=2mqkXdTK=3 ztmGu{*5@^ZfN~lO9v7;D$FL%$@X#nAMAG1^d#T?lwy{&BDg;m)e3T8Mbw~gokeh-r zSq%$_Wf7$1xu*UBP0{G5dKP_P@4j1*abr9!U+PI!pmh*N4(Law0x6?KAb^?>NH6Mf zvD3WdOZ*Ll8~B|OF@mW}1YEn<7k7TG=+y3OVe4sLZ6+kNCnN*^K8+uII*`<$837{E zk|e*SC_QFEkvMFSYL45iH7cV$ z%Gf~Aj7Kv-TD^*~Hu!;>A_N*5s;^ic895myQs{H?1rs{7rAL~yIS4)AL}M?9i!rIB zBzt-}B%w+M*AlqZTFL{kA>ZUjVqb-qBu8iqev-E+FsTd4DdC)K-3v`s459{k9NSFj@lDIqagzFMY}v*ZjX5Li}2T5zMaa7e+B0*N*- zSa%3j=~BMTMm?OTIW&lLRH!#FUB+t0zA56! z=YA!P7Jb~;Mj@FHMeA3bjOeZlf=Ea;G=&N%tQI9m^_dct>A)EsH2LAu(Osl39DUM zD)iTIHwH<`FtOA?>9hjk(Fhe{DD3`6ihJbq(sT$3XRu+0kwIC0VjK^ZHpyQM=+Gb( zQlwdIeqqH;9swb8h>+YK&37|`gt#vA3eSj71DXBJun(I7$I>85DU+`t^^F=nmIaH@ zDGO>g8X8P_tc%Ekf)FaH6cSB~g4C53C4zOeV7rtG(S?~E)>)xmqe(*R_z+lu5K>lB z4^r2;5M`E#42;04GK^OSQ6j93TQ5Ys0O11k4WY{P38NZnutL>KVhuTuT|mBcZwlf7 z0H{Fb)Cfvpm!7mL#A|pI(pBnG(CqR$+=1B%2bW13SfLK6Xy+%@_j{qCMM!;& z)Li>%4!9*nr43T-ZbSTD21x}ecrB&OdTn*r%C!pIcu1qz;f>h(?I5bR+TFtt#j;fx zQCt$MPNnHd2~hYTMieg}bRcVo5}oyl#B-FGHaJG=nPH3X;q@3pq5xrl_U-uP`0O!x zH>hwx2B}CbyaCF00-okDWx`v}0$DR60(wlN3b3u?htIKH zfQSXkMVT&6q;cHWOR;y3XW5iSnqnczSIBvvC>zvDIgOQGL|@JxM-EV;qN>6}6^-*% z0GFJZ%aN5PAd#ajDG~xF3PBPO+ci`6qx-uo=OFW)O!jH3=Il%k$I)VI8M3SuUOSV( zAAwa%@nMUP@X?1jNdvltH&G!#j7|q`%;F`r+En57_`n-UH|7SifKrs}d3jFpi8P+- zh*D&znn@-Bhh)yisd46p#1^rqhEgA0gWO%)yn==zAnj=v7qaxQV4$4d!Phlmz+>ZYW^!g>856mlkZ&fdHZ+Y8fxvAx~!7|RHtce z|6bV}=^v5o!j%( z8WO5H`zf@I4ypkmLUj0bm#FaGht8<^pFHuvL-~BFNG%5#o&>oe8p*x*;9HOla*>+nt@mvfVj^%!V$J;k_rFky+FcfuSxD z;4Lqm5!k$&cXSgiOg0i8;c$)xJ-x#n*}MDp5M8e75-p0On?`CbGiYHcp-Lxup$7>@ z2qg;O3jAYmEdYw_2eT!rr3G?7xT~&vsckZ-DGv`M?o6rv>REoSXf05yAFS9MSwHXh>|Fo)!!pUGW1f=bQT&I%Q=F73u7|KNKHeod zv{z~xVO(y^wmoWflTy-$sPfw`(cm4gov9K;LoM4y(3scPoe|61Z9Ahe=XxFI5F)_J zE^FrPy`5_wFnlBV$n5SB1KyOr|T*$kjmeDIE2PcU82DoygSooeG4=Yb>JM3eiK6H z&MwiR&5zSiWn~L=cvc)jWVA~}c$51Rr^}H*&aR*cdtIW#JMBB8v#teQ?toVr8LS+n zunJ=HoG!7Uji+t7G$^jIxyCLJ)%{|wTguE*i8F(^1>ditBM<2$Svs7FCS#I|6N70B zkgm0hjnhhWChmniAL9dSOW4(lV|;P4)C7=|vuaf=MhL4nc1dJTsn8j#<-1i%H0KDG ze;hwAT9BUa>=F&m=g=9A^Qrbw+dtT4rJOpVbERv42Vofwj(5g7Do({DHxv%)^&H7= z7o@;vx1ZX>W z+kP)y`T}KEOq7%Go51%)hl1h+Q@F>Y?t-6mi4QIOOoPu#ZT+&ZAehW9C?fycB_gyJ zei}s9&{BaBj`rTAxwE^nI_r(OIP86_X>Ep=OJqfZ79=Da4lNK!HXL%>7ufes4s^+e zL*8u3hC|L|$%aF2UCD++{#40^L(WXehC^OO$%aFYJjsSbzB0*%L+&cchC^N=$%aE7 z8Oer2J`u@=Lrw|FhC^-v$%aF-bIFE7(`CtqLsM7DhC}m6$%aGIImw1Y6D!GvLvtF* zhC|Z|$%aFgy=227OIxzxkije2aLC@2Y&c}(Nj4m^vm_f1nK+UShinYVhC{=W%Yp zN{v~3lLfSSBXwk5kfUm`j@EMFidWj^P;69+;`Q4U8^pOXm0Z4bVhGU$YB_H)MQc+q zKi1&VW7Twp@*H-k!_Usrt{AVOwO#9z6`kZ0?hdp%3b!rRcafWA7Lb5PUUDyDv5=3k z_B78TVJBd`DMCzxlx zYA7wB43mvMs9Qen^PZ`}Lpm4j3y=~woMn@qsI;*Zd~gD(wQ8VMIOLwjEw$k%<31jK}p!sU~o1OPqyd5kYCSo0>pF8O1PWriv ze(s^46#b;>Cqq9j{fyxUClTS`K{@FOd7An%X(Ymhae1h5{ulxtkppO!>`TYh0#&E~ zV75LEicaC0EBaO)E;bkI+=d6}suVpxb)c^?ORau4wsk($Nw0cysx;y39^h*wn`@}G zyc8|6X<;WjK8SVQV4>I4+jfo(fZnRt3>LPuc~jWl?gi_XGgzPheE@i3tK_Zq3uT&{ zPQSbqby@My=$8hAXscfa3q7adLbh$4JCKcqGTDR-%6G>_yheY5x4$JR2@F>oQPz)j zPt3R564O>5`_zOyM8q$~M#R|(l^Jp>LcK3^Prc9Cf-vgj)53suGHXlbnNfex&toI< ztORO94(kYsAGf8C>FqzV1ra}qZ_1bICqi<(Vopq&v@weg`9^IK5-&xST`JVYwji2G zY%#8yp;oIigEmhukPA>Z9P`9vqVSj7_ur2}9k`8tN5=lx`!tr)V z$;;iM>+P{+s_A;yG6;)-)>dg<(uvM+emdHjyANqXuv?9j7lb#o3Sa2_N|4K{SV`!T4PQE=^muQhywqQ?&Fg$qd~UYf@o%q#o%GaAJJnL zAPg3tu{coCNV2FM(~Uf1woEs2lVuPVBaijmZ|H{d1V>YU=Q*$0 zhmDsGl1^j2{p5F^^IB)LUgAuRX-d%Mke@C*8$1;kaT{9`x$;C3tIA2*&`61}38!QT zA$AIsHdp11RmJPNu!$r)6vLl-woqTw!&)Z_7^J1ZM8S?_#j)y!TQFZue_w;i|24d+O8|vDzzhrac+Xzz_`2WI(raJ z3dzS-mEuWkq^0v{5M@^@%LYHr-?iP@2Opqw2f~RQMAMvf=sP4vb`F-a$fk_6HX*xl z{k+~-?vc^GaX8@tdC7B;#P%LC9)0BDl@#PDQyvXcvJ;6D^(H5PJ3TzfpCJo$5=mwm z_o!-J1N^(31gx|L5j*?$Q?x2g0kAiv;t5Z8BYO?9B+}C(WrqqldtIC=QU$luB?PhV za1Pf;kO&A_W)NA1b4J1p-yIvn_a{6-7e{FTU11|Oo-1^T(^LSba1gp+aJrNPx=9=~ z6ht@5?h))marSW5MbEhr8{|MZm3=Mi z?B|mkJnq%kxhx5M22|F$%`N6(g`5ntJR2L!k0#Jf(X}ViUNVhe#y*)Q>?v~%9Y{ug zZ(_T~UZuqJDEASv1OfXbvQbjLEo9;n?4uHpwq>7@fT!Dnh+P5_H-hh_8g=J`a4ItsDFN}?!n-Y0&u~ehJD)~%L%FID}u4FTfvgdiWv^DH`&=y29dn|@= zV+qLQ(E^0QB5iBZsOdfjn4Z1qe#b-+AL)^xQJbcl`hUQyKqbL&>X6Swd{llT< znaU@@ul#eBVPL5YCj=>UIy?db3wc4a@Ewq;@Ll@(H~RS={d}K(en>w*!jD@xhO!6F zDHQSNP+=UurwS$hE%R>$zXxU%?&X^*evuodP@{(n3w8Wy40jIQ(~acl$w2(xS5Uc? zHD|i82tij}_<3+MO7xTgk9*MH}sE-TiV{yUpNwC%s`!}e^a zS4$3`^kAOCY`V7&dzt*|VfS1zE&?`|!dRxdVe|y*j;wKP>z=AxY(bbYZIdvjo#)8f zbGm6y9a9A)X(t;NmZWxXz~T+)&)^=ETVi9#g^7$ohNq-DS|g;)BOE$tOI{=Qza!*r zr!jgj_p|rAIP0)E<3=Sm+RjP%yY3?N8}FWe1zQkC!pDRK?Ihe*!L(P+FN=-X=O^;n zolzV8v@Ma0oW9r=MC^24!&7C_B1&_>E7nrR-xnL%*Cu$vOY>Q!FfgNSFZO?8OH0F! zciDo7ogGVp`dhgxLNnNJ#KwlDiJ-bx&W31j_^K`K4Eeug3nF&%ui2aT;02=Y&^Z?M zH?gr{Z6d32IFnG+U)j>qu;UlDAYy07s+-bS1xD76QEa%=3M#tK_ksm68S9PJi6Uc= zOcMrLJqZSp@pvuJ=+cf~WeXy9R;)c#hOv*cFKW|q-oLfltRpzs8b;r>pK@(SNdgn*OCN2-7(}B5djPM0S11 zqNhZsI9;!n$08N7!`H)!>3$F!BQ6LV_jHtwLWA<}1C59^^F3RN8bSY8TM)4`Wne$~ z&#Rn(7nvq_SAMWZEL_+di!!27&?82Z&8epNIOpG$m)-f{2~?%V|m8ft#|1 zys;pL9LyMYAMcEf0V_Dx0)ZA(J-FakA7R3fEd@;vxX2bn>`Yin0Z}*(0f{Fj&0acKA}(G9PmAgso-UnOMj365iP(iJ~S=XCc4C zmj6bC-ewEJFz-=Y5Q=$xLc|khp7m7ciJdm_%^tCn8aW+1zh+BF!_F@=h_g81nNO?J z)$~c{MyR`xJK|SyQLeFom!(lDAFdp=r+?8s9e-vE!gPzD2rGI$$=R$2GxD69EQB}= zgAR0dRFcH7eX+K`H#T-eh#On{QI6J>N-#9!oNA=3By{`}$D&MH1)RFHyO-O7h@DAG zc4z67UhrqaQJe{L8)&9jCIb73SlF08@a6Z@=??-*ymRg<(08z`{8YO$3qWlKrJjJs_?#LkQ*P)Qs& z!x^AuG8h^to*x?*5Wj?@84Rxz2|CV`G}0(ANK*D*?5^;RVf#gt6>qksqhZAxZ9&A&iiOv^C7fbf zR1st$`hPAq`u8Wsq*}E}E=u%I+fvLB{gbvJVki1ab2`Q$w?>Nn5fT{U>DaO8*_}1`BMu;nP;nUazq^x%JP`#9n04rlwBUm)>hjPScm( z%^=$LrQUB#NZw4R?om*IalWbP49@8E&sLR_oWt&huf|2%#!!OK0t8k8ADqG}Nf8Kg z;%ic46)|$Y)IBHu))s^rls+%a?6u2u^^sh@noZ)Y3#2!a!-~~O+hP9vDmMPC!4`BM zh2(@gl1(3P&x~K#QqpvbpV@*qV`f+n^y51$E1lGYZGvc z3J%KnmpNLSggvW(NS8B!quNU9vZ;D7#l5TBh9+h7a`*px+Y`cbG9Ii;C@;d(CZ;<_Th37W6XPq=(XggDQM{K0O5GSfJGD$%Ol*UAp<_Mi<2XE`1 z?vL7nF#Y2ZVO_6{td#|FPw)5sv@1 z1ra-25{506I`WrbdmX~tpl2z@Q#oovtl6+6E~|c1fHi_kQgGpTQ{|h9TBPfNP?uK! z8e0%&%pPmwW1+ZS)cifXz_T|tR`e_9i(hS|Q|z`SnduZyVGw80lxR6i&BjJVnx$S6 zmDhCllzX}@2qUj|3GsVv49wLY7iVWkYrHTvD$nzMF3A=d*q&!gDI=y2+JZQX#NHJm z_8*-MVz=-Oyv3GMhS+bi1ra;3TPlyw$3|&V9+yUy$7gNnV@UidTM)66xV4MxC$ZA_ zvM7!J)0RMn#^1LE5j%}rit&=AaoKbv#+OG)ya*L`X|pY`1ra-mXYDR|6HQaz%VMK& zUm`8lMNG7dZ7F2rc!w>B*ooXyj_-_($|T26ipufrw)8P1K5Ppjb`rN%$IpzF##cmX zeA1RchQ`NjLBvkumSX(6*hoARV!U%ll*X^IC6J- zSBuep_aj?=8j<*cEr{5ev9>icurzRZ&n+Q#EL|3t{kg6UJFq0+Wm;_5T?|aRG)x!T zf@o%lMF%r|R5lV=fG}7*W*c-(SYUU^A7RTxTkl@)bADcC#Emv(hoZ4*z0mA$K=>i& z@2ifcGvOe^n|dUO)b#0gi`-}{C#LW3XAo^^-22@k3y!46#{5wCP#-=P7wH-c6E&$- zg4?57G}k>PU0V>QyNn1kdhJo2y$6A(kwbD`5*xMWAO()9FfyZjku8;s$UbBXB6dR0 zzdfII%T5J}O`0a}?~aYw3lhhv(xj?1Lh#3IsbvWMc3Tj!6MVsb+RA}ETeWJr7+%@> za%>b|D4A^hS|cR?qAk4)$-iI=B6gB5x~1wK&%3aG)NZAa3jbwnR9}n$WL)&mw27D6f{2|lOLaaWomCi`A*_q8j*S`1{8U0Zr!ZF@QAtlwsZ z^fJ!6wO+2J!!+9y7tI=diF>8G$dGky_q4m(7KG^lR|@%i?N{7(M=o7+a@fz}mawZP z=awY$8z((+8bi{XN`yngI~p4!E=o)QrKCbBNhpby#F?&yQW7X3)hhR@sLssTQrhUu zXV`*>oms;-lqcB43n>)`%u}gQJe-Qdxz8N0(!8i~DmISoNaV^BZ22j?G@~jNl_bSO zmSV;$DR@Qt*b8iFZrJu*TM*4`vlyq$P$yc_0))Y0jcr5JQ1`mCJJfAdiI;|H`d-?XcH&0n;|U=fZ>K5q5|d^O5DAZ^uQt zMn7f|RBik8UH{NMDZgn8!t{-=*@7@VR2bS-4}E_(SYS!~p|jgVllw}U>d6XwYr^hk zHOQ;fJDyv`Zm-ZVzj9@7Y*cFTbe(k>>gv))9bgb`J8S!uaQlr}nzo?f{@u5Rh?7S1`&L^JMmHW3e)W2WaMg`CWU=N{%E)erWJL~qD~b|9KKc9c zt8Rw&jGlCkxhKOMyDv75U6sh=B*t1&<49f>g=3J1{x*G$V-h$6xWY2{$l0XD;v24Xp#vS}xL%V*hrr3|EwcC7QG| zlFl3(t0LoG)+v-n!X5OZu`zYO?x2D$^-n?2^4du=tbmc@FMmLG&oOIHln*_R1 z9)HM|L59bFVGAO59`68;iB}c&Uz0OYD>#$>M60r>y8V~fxVeM4$%wIIh87<*VkQ-e zMy$1t{kAR94d4F37DO}OET#fxHX%lm1qg%15I3af6UjwKIUBLDVM6B9z^a%G`^I8* z7D=Guh`XmBwRdUi&$k6}#)P+?6Rgm|B#H#k&+NGjG2qhJ7_ichC-LhShg?*B?y@DK z>4w7$qV1Hc=VHC=wt#`@TPGpX9*vE(%M(Gh*1`6;t$V`WYzx8&_)WGTjD8dL#;M<| zyV;Wcyh2eb*Yrfh&4%RQd9lgCQVt*WlBioxFi>|y%{^#Kf7895#URdJ_gb?jmoAOD zP6cV!(lwXNiq@U%O|cPoZ6d=sBoz*1L3HS9Z|I)L58Hw;UG3GjAWT;iR`;N*S%5HD zhzrdEgrP;htz|}7z&-k^v+EvRA%;?OxJY>6`FlMQcWT>oj?jO#l_jG#zQZ8es*U!J zP;1|vABmI3#B(ANd=pa4eXDz8d`5`ba7^4y8Z*j?NT^LzNuLj7y0k^lu?1oJ%x{HZ zy>{LWwPp(}(mlm;J*xtvj_1>kJD$!LLtNSx8<&RLaLLVL{RwEPs3@S76tp5E>lRyz zn=Z1+7DO}CEOez&x6)B9Ko~6k$yQw`b^GSCt8P~wOdlg(M!Hlkox~9fo(lI4>)VkY z2_H3XI(?h6l>{S9cQc5ysBhQd{Apg$gLjD6^yp*;nq?wEE{-66{?vn04@?!_J`;Oy zAB>BXjrDXAHDQ71c-cQfM>P-@$c)?SAmnFtPwD$@L6{D6LYUQSUE6;Yd1cddN_~sz z{+nWB!lHz~U83DI{|&Y@GXnmwEr@2aTc|ptEv1`TfG}9xY1JyNw(;xb@>+XEOJfYg<97?>9i_R2 z_TWeT@`!#@tV;>K74oo{u8z5agLHlVVxGL@C{}*3Oden{*2CE+DFmU@4qJY;P+lRg zYXK4Sg2YOBR;wbB*r;1gL6zgnT)x6zC<3U+bvK)0LoH=ccGbzMgN6SCdkg2R!Owa0 zGn0P$=w}Z7%%h(L^wUp2i|Js^?8# znjS%Mep77B*pNswB8XTi1TdEp?f7lj8?2K7{dmd3@`C`6y(kYK( z6+syoL3Vs9Hg>E)9u-}EvOJ0f1XX>637@c~pkcztY(X?L!NOiJCWq)g3lIj2J8c`H zhO8G@4OzA($AZIZhl?1xLBaaJ9tjpTXu4tRH?~AG0`x0e5QcTXumz!5*XYE$_T#3t zxiNn~<}*5)DKubiTiY8;kyE-l4P4B{-B90Rw=u`IMxSe?xhqTh{i(XX*2 zp-y3;s>L(!MORVwcTdwjwjfM@xK`NGYjfkm8%s!UP)Zl|sW=?%Orez??|R}`xbV!U z7#lw}C-Mp##SDqLV{G`OYlTf@%*)%-*Ql&fTM)6cXy9hVkb)h|8FB1{`o~LSs~@O1pr(#$1NZhDZ)0y*^p{_2?`HO8q82;_B1)=!&N-O?ZkCpwm%d(J8 zyc$v#*&cC^+B6;a(zbLnI^gLH;w(h_alBHl)||AjBtqmr z7905o5_zr}mPC8f=WOX_6u)Z=B6iYm*q6=MwmbVyFawa7fbBX8sA$;}UJ@HCHY8kN zl5`mnN;x1AejPdUB3rT=&OBrbB6iL!(+qHUhF?Ll#Zu;EsAIf4Hf}&KsZl1$VTii+ zh{k`+mVSl>Z?^>zI|~-;?c!v#%jxS?FkXVWKJn?=uvjU7%iJ92_Y2YdA%TbdfSJk1tFGg~bD zR^+G<*OyEMEkGD7E@182cG1OpO5X2J$@d+PB!_)zY|^mEOvPQPH_|B^wyZPUKgA#{ zJRG)D@PW`2oLd&scJGXhpi9E@Z>c&$(|2@F)3@1zFtYrpu%*|N?`2rTc8;Wr$7lhH z7BixWqW>;7`Y)#?>tqeJCquPISnxNt^fO}p*R~*HXTe69glDmFC!e8QFPMkR^cO*G zPP9M#S8V*)D6?=Mli)-gSy)NuM14~~wI!_K&5vzC#Lk)j|7`$Z5gr*m~?3$57>f;ogvPioSTun1)3#DkLrxny^~HYk7c6J z&~a64Oj(cQNPM}C>KYz+$al?P+v z$3TJ@kqp%w=^xLsrJEuB{k9-tC;ck2vY@`xnH=p?=RI;foQBoan_^?ZYPPfj7*Ib@ z7(`g{23tBBRy=GAB6e0RLVy7>-8fYjp+h+SEzE&W#m0ffl%s|6vzUq_g#Uys)ePZ3 zW(y*A!t+c6X*=sxJ|VM=b1<6E_Wgcr)R&otUwcy59$~@1+tSal;JdaUVrRh|tR;Cl zXCz+=Y5oNp;xb+5Ca`|w<&somgw%6UZI^axpDl>kNxf`$y;dH_Y%c2@rPS|-Yw21& ztZR0}Ms`TMu3a*@%YoKW79?%yXQX|bEr@0oSa|x3vrwE?79b23(>M!ly<4kpbG=Hr z#M|WI(dVfg`&h!lkcv$hRwrQmDhz1U4`LAMlXu&4(+I?!wjg3>#oFBg+t(Sqqg>^Q zeylF%UWW+$z1Rr6Igrk^lnh`)-t_=B z5z7B-_muyREeIp)|0K-o^$N%G>&j)7=rqWo5Krc9jLQOEkrAjEc2<}=zuFf_| z`|j?^`Is#^ZJh|KWs3w6^ma^L>d1i8lCWQnjj(IfUJ0V@aY3O2jlbAEjlWE#*^b3frw@Qb6YAJ-SN0Bh}apyfin~>bDPVD zZmKTf+*pFK0N*Rt7eZ=hb)q*`ene?E5)wEA69ua~bfBhEKXA4gR3gk-0erf&_?Oy( zh@Cn8nj5#|Gqrlv4RPY?*f@dsanbzAimEq4_A6~^X8OeCwji3xZedp$(@cgT3lIj2 zx5uL*X{|3X`a9Rt>8at#LoqfH;I+Ph4IoFPwwNj8ZMkR!Vbm5x>@3)zSdhjE!x*5_ zIC*%C()D67z;mv{H_jkR$+ z^N5=s57YlWvC)54qQSmZSKw`VMSygPU;BJ`@dqN_dJ$ZMDJ0R5n}(;mQqG+e{2gP zc4Bjo%(y!~LOC>f16V}PS8j^Sij^Q4RXYbtwvqQ`K%q;+b-)%x>@1ki@~#7ff-90& z#YXuBBJsM?h|E99mRd&UFSP{`KfyUkXx2f9d()u!^cV?FC+6UsL#Z@E@VjiOWeEOM zTM*3zw=nR{96?5C3lIhinIl+$Fj$EH(E^0QqG9WXP)_9Mo_AKA$a8qgGXWV34VrK4 zkwjB#rt=%W&Q<`848Mj!w6*WzI3bMr>*UiMCK`PEIZYPmYa79-50 zHN0b4!C`6BcVngUxV%}}^kxFV%H;`f=ML0oj`;c{_*3{4{d|UgK1V;Fr=P!}pD)tS zm+0p!^z$|P`38QvIM{1pp^i0~#?H`Irssv9h@Aoc9C zt4jt<8nuJiyb)Q9`W2efi_^WRS<@+%U)Yk)D3zZvh_*^4hQ+AWz5|3)sF7xHkRZNX z$9~43fw%I)mXkeJE zPl}DK3lkpKnpCw$D0yl3l-y+t!q_gu!i-+e%$LKR=g8S-ZAJR7*l52(wiNN{XPw3Q zskRg};(XK=MC?phyeF3~;p|0^QrMNN81+LcqUf-wagFuhS+GoB;o0*lYZ3^;y-LlIYazc+k%Ll_zQ2T=F3$& zUoKx7DW3=l{U>50e1D>%s>RYORU0At$80HPi2h+)5U~?|-tJ;i=-uRu{rA`?K0krb z1|fDUZ|rw%X=TX$&$b|9C-E4B2K&P16&$ z*n)_iA&U>Y=_;)Ie90kOuUX;W5*rtg3zKVx2EyX8)EpuGL0h^R(*KSvh}cQLdUy7C z8cwS$v`{A=c(L&Sd)5>R&_{$qM`l!PDQTE7ZVMuIW~|s(N{`^^OrCFzl(Q!lQ$ps? zD`Mls%7n}Hb5}s@ME0cONYoB`nJoQk zEfozTzG@4inGqH)Yvc76f1U*hgGE2v*=_er*gF0e?I|ORzGuv}kS?6JB|alLBNca; zfzL+mT^h+VZ9&9N_|><$nS3RWd_pkGM#~P4gH#j=yP$?*W5F7v7Ema_Bp59x%OylU zvoy5uMO|b|Nz)exZ9$wdGpu9!799j5po91zH`+54>IS#Q#)HKP+QW^CbCoCPQ{>o@Zl;G@7F8i64%h@I5SRIpN} zT*S6{%JCB+`#;A8LiS;61)yhi3N&zFC6oIJT~e&iMqifNqAt&O;bNg`M`KY z`kL20wJWwDjFgWH!+LG8&N^Hwm+uR2GkaBR)bC4pQeA||udt<%5$TuNf{2~S3l3x8 zsNv8EoYB=3dilZFXpP+sR4Z}{Nv#o*|G6!_49VYT3nF%sFFJ@mO%VnquNaN+_@~&Y zjs-PTEC*k!iX(*omMzr`;lE)EqM7g(Bd-~}We~9dVX&BH@V51vFFcZiBLYEhEo`=h z+v2j2`x7;;w!Pgp4|R8GB+s@5amGZqUi(?IKVPi5d_W5&4x&ICb$US4zLuS_v0!at zRO0|A6#VHS93owD$d;IW)?rC|z7KD-Q z8-yM0>?CX1o+Yv!^6AxLqjsMX2jVfeDLcF3J@S`c$8He#+!WMaI!d?V!k@*)g%z3$9B+vwg0@U}uPp_Qh`-wwMC?qMi_Dhr zSR>>rthv7#8{y|sQcGQBL~DP|mQse;U$zAiJF)wAw^&X5-`FTU8{yq;f=_;JOCv+( zU)q9bCbNaXZft%TJS;#MET$QvZAY2)dd<@j?e2S-#GMuzxwl^w*Bsyie+g9SH{Z#m z(1`TFt-z(rIl*RI5Y0@n;Hwc0v4kx^7%XC%4ldbWE*4<}v^}}=uGr*ZX#!jRr0!0K zcRtmYgGN6bwFPm;I|8C`XRrmyavrmwUGVWjuv!j@i}%>y@<;M6GL z)C2_RQ3B*97w*SmBt8yVXjxt1TzXIdQ9x+yLqHdd0)$o1Im8LmH~uQzm0 z-SxI0OgCA>AliDHtgVe@m}0Agm%xfWI>Td7l&_DC3y4!vwKF69!$~7N*lSBbqqcVo z0neU|oW?Y$!jVl|ND?sE4Fy@7}R5e}TdA1;$8DlZv8=FBo zq6G+pg(yP{5C#hw@GL+WEPi8a2rA3v)mD~^t;c6m3&Vvrd|rR(=7ak%Rq~G2%9YSW z=?guQe`@D+Cd}t-Mbk+4r)@zPj(*Y>gyQII2efw;A zvGLWm1T<`XC4)GNBiNF|ZVhWSoNrwv>k6-ye<&^jHkM-P0Cguh(Yi{c8Qo=6_>1nT z`e(KvOy_v7Fs9dY%KjrbaS@5?yj&T6tkPIW1${d<(l1KXn(B=>P5!}_W=5F5X$zv6 z>=r|m8Reu)S%5HDyxg`SN;5w1>}tkV!`zX;Nhd+~+{&Te*s9dT>Gb0=)YYwp${;NC zqxCQ|fb3o6apZ2wa{6+3fU==ZdU;#~Y%HOyUAk%{Pvfd1{q&OViMrF4sJ3=kYis_F z*eHoO|FS32fAqCM$qmJSo9g>_{Aa|ZQ%8rcYoC%1+) z+S_82j!P10gI==k(M~{4*#_)JfE}&9OKw70Rl;@gWOS9`QClG}a`cETh-MC22!WBK z0mi}tgu$ZUwjs(idBxc^P1d!TwA~>`ra3q>EohniGg{V*)3T_A(^)3}XiG&SQGd@M zEG!fILA2F!>x|);sMgW<_`luL@7J~_lDiDRHvkD%z6(=K+ueJqY zWZ{*zAe1b;%t{ul{UsM3OqbF)XAd*(65^-fG#RPlKwP&f;d)v3cs|n<*861^lXT%7 zkR{q9`514GEWAtpyhr}LSN^<@|Fq^QwRAe3e$keihNoX(5NFZSTf-!!fYB&XL;dY% zaS^hC9NWZJny~peBsF8By8I{IQ~5t_L71NNePL9u?Lj2G5Kpj|g*v z5?&}C=!zrWz$K`?OZ#wXgKP9^Pm6F5;*RExfIBz;}j<#k1D zY#BzfHWC9Lt)xao0)+KlQlk}N+GVyBH#+HJTM*4mdm!Y+MOx<$HT1depS(hPRTf92ikL#vsn(@HYQox(27^ zNHw1w3#Z3A9T(*q3!qB_l}5Vci@T@eq%8>38D1!?==A_L^QQ91NO*(bpTtJ#S&1Uo z79sJwZ0Tb}^^a{q#7<(&sgX~zlnrZwuf|4YTH#U^MhN{STPhhs|E(>E*a_V)dY7^s z@}8iO=KWP{^oGv}`d&7i^Io8+4g3pRni;bH%oarKWKXIL05zn+_GJ4%%o{pb-SKki zDrL*17dVEL9*3B+c4u!40*RgXj0lZ+Me=>jV{6_c@w^psUVtxM~9 zxh;q@W|{TOeBpIS)OL(EuvE+C@vvsPCN`$@Cq`7YNvSqM^(Whs%yg717{pn$Syp2G zbTmH(TMzDywp2~UM%7gm(I5z58ZHR5qwn3_)AvqW5JswR7Z&x}mRZJ=@s3>h-PpLW zTxR6%v@CeGE&Ys$KhqXOGYc%HXJ&>c9nAuS!D1St)?U3K)}@HduNgQ5njN_V2^7rLkE=WIb3N&d93 zrPnHLF-07*43odt!>N%W`|0Pg(SCpf4!LIX@^Z})aemyEZbqDcWDBC1^cH%^s50qP z79b23ajCN9``xTt#d=wmB;YvKPNIpG6T9LvqgNzGb@e0$ruv91IKZJxdwCs$XsgwtM1UZ41JP z_?5OGOh*$I_n@O$fG}8yThjuBp+(MiI!;(1+02X2u5bE$a*c%K`h`7`Yih`Jp6KV< z3XT~k9%K;hb;I>0t*+$L)!B95k457D*WQ)K$yHQqvXOPRWRl6A4nYV)50HgTlovL| zI71)^PX+t+^xT>0J3ZY^FG&VPHVL#`VUST=;GrzCgZf;a%X3FW1jHS85D*YhT%Y^< zzN%Zd?&&21H`Dp+{eJzcd+XL$OP^D9>eQ*tJrSWVVM^J(oskraPC-l@&fDv?)5vo$ zokU-m1zM@DJTP=-dUzafk7J^AtCON3S~qx8i1%n^SHc?&iJRvz4a+_biy5O8hv_E#u)G zbnqa~s3`Xxj9IbaVm_I24(6(g1Wb`wRiXaL!B}nS?C36_B>FF3tEl`^X5W2LW!si! z)NZw{x9v_T(6%nwvu$hnYr*1JGDa5D=tUOClEs*2ad;W)gZN{Uv5b{}aH2MMe^esc zHurUvM8h^W`6pJll9F880Af~~3ZH8h?Yy=%Y@=MxkZfQJd}jA)`Kzc&*e>UB&5p?) zVuXo~8Z0`A_VrDwu#)J^wnpb^LEgKmP|k^(MAM1hwY7v>Vsuq6rV5Ue)wXg${q;?w zK2%RXe_nm8^4C`JS~eUKm4;T1#G@wBbT+i~;7W%WwjPreQtv;#X~b_`GlE>>L9R75 ze`{2FS(0ywnnX3pBXs0e7tkF@gd}V!?ujZleLee{J*x{WK33_5vD`q+u7f?TTKB$u zlIj-!+(df7Wl?K_txT7yB=(>lpzl#`pa|UAEaG|oJ<7Y%1a8}XYTg_*3EL=c)C`$y zO<>vSXGL=wA;N=--#3jJOa1F`^r;-O1T~%3Z==%Dvf{a@Ni>}mU0bn`f$~VL z@8D8~IwO=t8zx6tu950EW0p%6D3?_JT(r<=sImZs*iEguJ!%q7XG7abn26A7von%& z(?VN5vT5XRUz0ZZ#&y0mwg0fFG_$pTebgkHPWE^-1e-f?&md)>}_lGZhYKhsCbBBVUe6Ps@@oL`|aU zENR<{W52VdfE$7dPc@AR?Q4oE-+=zL=Bg*6(#(?mv8YKjo$Os|DGpl#)X&h!NRWT- z#^$M^m^;!N|Db+`^RKD>vrvfLR6}P(O`_>+SkR*{6)VP^9r-lYX5d;u!Gi9lv7mEJ zAbLW1*O33fsI;@KU~SYSnoj<!BSKGtTg@~t6zZ&aFDvTu%>MAOOs zqNXfLO(XwHn6fxKDh(|gvQd+0J{yi3N@ltFIz~&GZ;GgH1y?tb4Val#`Nx%|PMac_ ze@$x`k4i(!hAX2cQO$-3a}ahKL)*V2Bwn?+EQxkbgtd$WNoK&X>nZ zGT$1q9~zZrR(qcsVh{FLFFVfPKd5YMFN&m>HH)O)e!*@= zlqOyZN)xYQa7}BzboVKLanvMiJGxLaZ?gNcgSig~8rdl9KDc2^ZKh5Z9nKBMGPz<& zPZF=gb_U%XME$?3Y0NrA?Gj?SU=KpM)OKo=i!;V?mP=0^qg;M7trfzzN2R%KFtvN;{TVr1d#a?NW~C_{W++tQYDDAWx zRSfvUh3oh1aAC2T(^q#}<#F(vE*cBVZxn8st_V>f$RE+Wd2BCpo*(}O>@nC5j3l(RfsM?@Vaa}0hBf&z& zRiSDc_2s+Ihs&ZSVVl#XDv3$o;Jn|d*ko8pr%JKyLpkhE!zL3)jTs8Dd?ClRgfS9K zu9IQJgr6gFO&xs8ERe#ZmmL9V2`+Dur!hxhrZC)l7;YHm&5i(tQIn`t?oto z<9U1>>W=dnW-0pJX3=oc&Q8KE|NQ~lV^R%+pO7a$+6e!$>>1a?_f5K^Zp-=5Vm9U34;m`P3 zF5u(_cPkDa73_5S1^CmiH(Mixr(n-;A=nTSf6sH*fvAOv4IGrcyJVoajI?vL1 z9**OZS7(j8SGVuASJEW|81Y|A5k6%ZoN07s(3weRHl4Y2TIjUV>7cWK&O$m}a2&-1 zrgYD~_;fFw`{>+H=K(qo(RrB8cj$bN&JXB30>@DVXZ)(8CCXmA+DDQo&`j@0cQ)^^tbgMK2i8X((8ty@rkG)U zSlec zch<)WXnm}J^icwgsY6bzkEfjkzOvWCVH;|uYSG2dI6Bgo%Zz)Ai}|5+c1O3y7Q0j3LD1e?HRh`E11?atpJ%@Gdh?3u zz6@rbHuYh;1&6p8|FKRcw;lc&FihbPwq9>;zmv)&{l%ZX-pu}7Dw`ZZ6m zl6#fC*=k9agDnG!1T%fF@=RT~ahxLH1Yo_{YVDWx=dC&raPu*AjIZ9FP=+E5y2{OY6aW7~1c375q~m&esEqskOe97^Z& z@D?0i^228l19O;KXp-$7FO6R??tUKn!&SJ~u%72T7V|usE(V6-fZ=QoQ(@UbZrB)reFu^A4Gob3PsJ_0vZW@TE)2N?2 zWA?nd{yzw!f{^RGb!BXv{h9{Z`+uQv_M7ujWA=13D)@w%_AHGab(m3)si`y|(NVEY zWvpmWm7Cj-Xtx>2WgvfI#nEEP83_)o&^%FuWer`s3-X-WfINN`-9^lF6p1f!q1Hvu7aGxt_}>UD3U>&;er*vW;H^U%dw zArzs7l$^*S>s-d(zuTEl{By! z3fBzkX+qtap-#0}rZicu;-9g99f#*azT2qX!-|df-8$2Oczf;6bAY9yEI3 zL8AvAGq!4<0mn;6bAY9yEI3L8AvAGQ0qopAX6{~XdW?^v!#%>t5D(h0n z?{%D(?88JPPRt50_;V}N83ew#QPRf2SPhrADB5aiIT6TP>96U+i0&j`aGglO72|;x zxdQ%?*D+YgmGfNE6;JlzJZ8*FsVZ78z*}jS5#ZvKcy0hc+&qXG08B4~Kt-lEk4%MC zqQC_{TE0|$^A_1s9p{5NHfHSkHnu<11;Hqz>V|mBPf`a)$0$!ZF4lwHtRB9~^h$+f zaVXxGhSaS}&xUxjQ4@F)x;6BUZ~Q;2Blm%Te9cr>C_qodhMGu-gc|_ ztA3ZRgo^Qa2iR##eP40oTZxfGyV)C^Fc)$v;bgzZ&3CW%($Gtw8_l7$$4U+*E_|7> zbKHH9E%_nUPT^yN^;<1`kI?rc6ZTX3DEr-?;SIr$@&mOC_c8t934UM)=su}GJk1ZR z7Vb0p!*juh=k=zd7k*&R>HbxJ_($;JpZdd;qY%hG(w&Mo6l?}R zu(x#gRv(O9_GV!63ThlR#_6S8e@+QuU)P$!54M9tzZp@}`hS(fsvKo+@AQZgVcvYd zdn%XGneK$I=e1L8QW3_!z_X9Xf)d?Dt@T!_Gp==9b)(sQs>c@ zUvEC)Rgj(I-jZ-CJd78MLoyke02Qb)uSJF;?t$UB=Jr)bALtqHa|U?SW~0V$Gkb1bcbPB6%B!-B5*D`uz_@8#DtzBLg#ExpM%xICh%>3Ajbk@-h3UH z*zROtrVP?QSAg1m5DdNLyh-Q0x{v`_i`E&)`2w=QPsJQsZcsaY6h|dv-m;NoDp%Y# zP{fgA=vr`T8U|c_$$~*&B+x4Zba6DBiesZZM1DNY6_qB!g(AX|AOdR`whE-!!5Hkt zyTbZMp&9Jk1r}1@FE)t8oqs|8@AYvMgk!if9Az^}yjujdGbqmg5h{@S<2@tE~>?kF|C3u&Jx-VBG zBy^oX^bDpia1ef-VvUPvt3uJxx%<&%8Q&vfEMnDg>Xv9s0NXWCrgf!&bO!&^|Ko;s zmo|W99jwkT3>(-x1Z=Ud$ZC0-(5kF~e!z!vv^C}}#WI`z%Rx21 zR)E`b#T}3tjBuz)?wUr3KpwnbAQs>tkqo3{!B5DfbAyk%O%NJEZK`dFHN#=ON;n@2|y*jAAmRz(Pj?N12kavus#If_q-OuEQU z!le9h0q^kPWi*duAm=|NFiQjmQ`Dk?eA>s-9tGV6)&ezm8&LDJ^}_?EeXf3Zz_QQO z4-abS=lyUR!l1jHUCxz~LFV`Qfi#bec}vJVkizg%OLs$kI z(J;?yVD|{v{?)LAz7VN5S4v}qEqceViZ=#r>i`ktp za9uoGhX`L5u@n(Rto3o-Bn=Vn_wlrWj(IDfF=UIFB2VB@Nl*bZ_Hj*cgMZM+(^xv@ zb!xfgPke{k%L4+oRKSYhp)!n_G#?V+B~@SyEIDU<9I0=h7O z`l2bQ?$7TU7qq!w3*3qzy+9wRQiOjm@HYScLN3okJ54zsZh$lC8r*jTZb^{8;#nTT zIGY+Z*zXH$V39FWFcJLuUrqoF{{7Dda9NOh7Kd`HMG;UEoIuI>oR~n`KCb@PYJlKdIp|HXK(oQtial;hiY0J zO2C3>fWHvHP`Q<`P88FaxpS&C;-88*``G_#;;5l$Riwv7B-R|N(e;S`JAqsPp#qab ziPTP@o|}UIL7-NIQ5f@J1*(4!n8Cjw@N4Vfga1+8=ARZ(_pK9^o0nKIlm*u0_?(DV zuY_tQFW~PZ0>83OHvU|O$>4_~!jf+(Z{1AhNQ8OIHrh?i3pO3CIVLJ z1@@k)Sf)sO6sIhqrgQj>juvx&BY7)c{_ZELK?{9Qq7QSvxsi|+=br+%*xouq)D2yxiT~MEg`ye4Aomi;W!1>4 zI{jCX`wD|r)_Vuy7wfKytQ#ivDI)bbsdOP_wcWpn#I#wVKaM*@M}kJTw;!LTaoC+W zWnq$@D}rdK$s{nC#pIGfvnn}~tU7O>WS7^6xKVFu790Jydqob(k?=((89NDLI93HTF*Ce}hf7FQTx1g0!L zIOm%tL&M>q8g&Znioslx8(ZU9nBG#ETv=Tq8?F)y1b#8`7OSmkrWmVyD3>14oNwTHC6t)YLk0R;9G6(2C$C+v}`{9ge{q5aU^NNSBUVgfcQ#> zPf&~-x;3sHkH_03kh*`P;S?_)S~I_51j$|Ndpk<0Xh>bOzhtU=qKhc;Pm z5U|BTaz2dz+dxnDpjt;I&A;+R4V(2>iYc@p1XjHj8Mh>PC~(i#;O7e!GZ)+LFXP zlwsr%B4Yg#>a3KSW}+P>qODRVePfezDp%lmyk;I5Q@=-x7|W_-gy*n<{x^Z1Uo7SF zHhEKsQw2z02x?Jv4S}0Pl!dCM^xHUrEI3@?mSZj-YpyH~>JIkNScP(nfG-`y0k)07 z#|iL0^}(pNXft-Y^wlEL(vWFX@6AEI%La1ibppJi7L2Rn$R|U{Qv`l_EnZg7lLUNq z2oAE)>Zyz>#W-gROcwv{$I;6YTGjR;yX*lRKSKc8eASX`C`=Nk3&eb#M70<_Q-Bs| z5OlJP5CLzhhhqB`r~x0v1sP*l-bF#84B$B^oSfe?CCdxoGGE4V^bsbAK_>-zr9!jO z)Lh_aB8-R#>^9>tY~tw7bUqofc$Ecg9>T7(M#X^QP?nNOXhj7s%CG%(Ls!=O~grT2l`# z4oHbO3zcBh!*w|~`&NNl%^7F%1ltSCG<2Dw2#O{|oOX59S)9tItrO+7;(qex zkBtfxRSFPVt&xNj8Byy=4D>Amx)SvZmNl3G8b-*92(#6#JSMSW5w_6pDRsu-&iTy( zH{X;^UoK-3+a^Grp&BY`&2|CnP&Kf+5f2KCxVk0Ko2t6Z9U@AXU&LbE-uhw6d9Fa> z&p@~ZsTxpPfL8S-Q^Oqfpz4~ksv2QdT|s^oM2rqq(G1q4S`wJ$x&r&xNh`sUg19RL z0}MyN7pWvMCpwbDT2Uc8FYT@_QPa0YaV0Idu_+tS$7tfn8JKMrDRiHUHrh|pChf+q?KSgU;^>`3>J%>7?krnQz}9?v3=mirzQSnaOa~be7oxjq11m8YHXA#re#5a#l3%&a? zfrsc!qqBtHTt+*V-lfD{PVYbH%;UFJgq*>*$LWmG8K83z!Jnh^B%OBRKFPPYGVV2m z+)n2g{Pr)tO(*0?zTL=gf21>o-+sWi|D@B#&@!DkoxkzhxA}HF--=B6S-x$h^F0Rq zgx?;avzgv?40wUwTj|WA_s@Kr&CsvVIfc$U=p4+@VLI=m_hG($lW(7)^D-9gZpQr} zo%b?y3!U%KdkG;A(z}{(@8;X}e0z$a&+zRSI^9fVBSSmsT*=UX^6l$%t|KJIw>L6i zD&Ka}`7HxJ!nb=Fa6aGep_604FZuR9zIE{J&4m1jZ{MX;p>qYDqX{{XCHQYb=F@u` zotx-c<->0*U&H)Tvz-V71e3)<7(s>U99DaL_Z%Kap5}lv&+iU6E zM&~~m`YSqn)A=uc+lz1S2Y3ueF!X1XcpG=O;Dgt4JZAa1Lg++lZvNh#`7o}d|A6RM zYoin8LK=(Mz1iHBnDEc6z*!Z}fLX1`&`$Id+>nEFY_MS{QA(GXAOgB%0CVR+LWM1q zVI!EMf}+P*%Vda34$Cfs@WnD5eSav+s>r%TP#pb3j=V)OGESu^jplWUYJ-Bp;*<>7 v#<5wd*XvMAg7ji@n87eSWSJL+zhWea9CHQk(ejpsLzrMc$YjIIeck^DQApZY~TI^42&2r delta 83 zcmV~$u@QhE3zEC)%W( j%#<}@n&^5Qxqv7G4AGW_hmmq^8hdOMF*E8qws-#lF}fI6 diff --git a/user_manual/locale/source/.doctrees/files/access_webdav.doctree b/user_manual/locale/source/.doctrees/files/access_webdav.doctree index 5bce470b4be3786328eabc7fa741603e08fac064..206a188ad79f29bf24536e7f9887451e37d5001c 100644 GIT binary patch delta 7664 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 Jd&NVh{{dsi+C2aO delta 7657 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 B+He2> diff --git a/user_manual/locale/source/.doctrees/files/access_webgui.doctree b/user_manual/locale/source/.doctrees/files/access_webgui.doctree index a1423ccdd86b22fd22950f84cca0d12c5443b105..8f44f314d335a8262d6f2928ad02658ea6dd2cc3 100644 GIT binary patch delta 2702 zcmYM0+smg_6~}pAX9k?H96LE-&AZ36X|!}7)>?b5w38)SgeYkz$zdO0Yh%x#;zcIaf;bs5Uv)6ZhzTdT(PTB95|_#Lkvk&5)I$0uT3n(I&&sdS$}=x zgNqBCYV2d6gi(uTf$I<&oyTYr>+aIYbGv(vJ>z0w&U1RLohVw@+_iU|Jtt4G&GpK$ z#|~VN!+X)r<|~mz#i7BJQt>!FWOwEC>D`0(+`4=2`k%Wv)9Aei8k0zstKiO!a_f?2 zp|bz>Pmcf7Q4^1YIe5jt`_w4P+cp(kN3lmn~E43>?D42~k}k++V;F$oI!RAvt3iLG|yGRdkD`<}M%u0Oi* z_~Ou~sMVHduY}G^ORU_a#3YTiu9r^UupEXEdbTmmXQhrC)J8p*8FTG{+j{k;Q%Bw0 z+8TL;-X?@qNP?-551~=DFkYAN=G}=?Z`(b6^9ybag+AUOj!}0b(a1;f70d3UU4AdvC<4VWHA6jugpPD@;Yu>L&G^sjXK|A6viy8L&x3 zN~e|}$OL`CTWb`G?KxOK?mn=bX&e%V;j5rkrdb=L0$dI#T|9qc{pp$C zEzV5AyGayE)V$O(JzHowQkuDy-BXXhYyHLhGOo}i;NF#Et>6cc1sT*whyt9w?nMu` z|G`;~ZIg@x4$c^jN)Rzg9-4|=BkZB~|LaT&N-3BZ0kdHg7$DTtRm+49%5PrvyJw$R zT<1oEV#p{>XsFhndMT|(ZFSVJk-I){?xiEnrvz-YSH*lFVu^s1q>fao_akms{ozA* zEr${F@;qC>kf=~EnMnhnkV#eR?xtgR?7n~Zznu@G7R<4a1j`D6&eqvCp(%M%TA%lK zUgugHDZuy>&ZG(EQm#M}2t&CV(|R?%eQ}wx7t0<4RT?s3`jmiT_Gqm5wBF6<4;((o zwTmP!6(xaeuCoDyxOFaL{c(QJa)?X9;t^&dGBhn3rg+0&+$Hz*A9@yngWpk`TM7n( zhpc6VEJ&4U7=XR*mRDTnhLIu&3dTD-ra?Vz(b)P#NL~~8Tld}z*N*_}q>wCRLRrg% z(I7!8YpG1@??3Xl#UW^HA`~#BO1`0N%HFK{05=u8_Tg7QcGc+^9u`+b3*;TJaQAu4 zqEwL0*7uXuPdti}zGg_t-gBmauuhoZ6s|QPbSteF?)wm~ht^^Mc(Fv-Ly+48u=s(a zv2z5}XVzOj_2_cgy>Gt7QYTI$+aYIeFqnma@s{0hPo7yX-hUh5E8LPA5;6^h8~nOY zQ3^B>19faAcklf4pPa&vfj$9fU~D|MsDb_NzhU>`2VQenQn*kX(gCU< z;8UdD;mJ0q77hEV-~7x4S6L={PjgmJ#e;yRb6(~WTwsGMj zEFFBQNfW{!Yia%D=l-&|LINlAf9VjpL@g*ihj(H!Bd9Hl?S#9Oa~Ga36h%bF5Gwf?v5|K=oF5bR{H3u!$@*U z%#0OhoO8#)Z7lS~ODtZn_Ihp*t*5>UwXpaTW@iIk!vkD_ zv|-5rA`2Ql%Kq0;DcrgAoY6Vd!j?{`gm;Ac(%PFhec}9V%V9~?W7DW^qfsV9)IyVt zoMMi)yVP#ox$?4$)(WA2t%xR2r>I><#eR&SLpJB`X#o%U9c-2+1fQd{n|4j#bh{pB3*s?Gt%|KTZX pn*?)6TA%#-udc&77Bi?BJ04Mt7#&>^`#wRS4v(#mJn{1J{{es58y5fo delta 2697 zcmYLL%d1{j73bV07n)R?TD6htz30ZZF-F_{SbOiaO?_31RZ3{FK8p=&?X@>56xx~6 zfq#PFk%FTl4xBWaa>RjkBqG=jB!c2&pcFcAmQWOtRQ#P!j33;=cfWnsUhB7hkMqK{ z>4j_4mDi`adrzfXDwddrXJtp3qFQk*u7&mZ-uL%ruAw!}JaQeRqlk+m6!m6~TUT9w zb?gJvoQFl9h;prkScf(psVQf!-upt!)l=t|3;WN{&a6@~A6iP3W2;iR$7)nl%lNil z-+yv%Zi!+^qh!S?=U9u7q|((F$)3k@{or7^c;U?Q;;lcMRb!BzGW9|Dm@=pAatzU- z4Q{);e|+Na^XRVEKh5Nu??cr$Rf;?q6@!RLFt#4u zuHx~x`~}nW%CVabGO{*midwT)c7e(mx*mILpKz+?<|Pn{P!2&2-R2&eacLp!?p=R) z`-y4ROal#$;6oy{tbu)Wz=cY6eU$a;soSQ*(Is{YWl$5+G^7TsqPWnN%*%S?j?>2v z)r+Q%=3VkMh}mb6?n*9<=XLS-9|FOX zGk@#!wb@*AjY`sxJ-H;JLS`G6hL4r~`t5g}+rv`Aa1?vdHZYUt;-rlhl97hUZvDgE zuT1lZ$*0`$KWF4Lam<_xbr7L+8gBi?dv3?6G-`H+v%=)KN`$`{ zmwoOvvPMv_h_w=8E?R3P@BkP!f&iBnh+-@JuP_IW5mV_0IL@?=8~|-VNsm-~kmI+Qm(vNU(?IWP;y|P=^(!~P?WOp z|6Bde*{7#@Q`E>5P>X0}#|b=#I2sV~9LrXBedOFL$L0oA2A4{)(8>3%CHhVMR%&B! zw6*$!$LjUZ1 z-V70l_dQaTPTZZqsaj4Nt3dj>tUoI6o({W!iJg1W23m*+$mJzPOR`aR{TrVJT{*_; z25=CiQUX+E6=s(b0Lkojo4a`7wHdZY*+8d&zhMbVaaDci0%z3VcL;y;!3O~xDL{wf z2Eon5L!@J5c#bM$&vE_ThyOaw9zRp_U|54p1?Z2!A*29jsg?eF@f#n#anPf1f!=UE z7=l%Za7g2VKwX2e;0)+Ty7|JqUU~Q)BdsX@8R2)4?XfGq*6=< zEE-~_&Al2t3D_`)3O44g)8!kVzI@Q)NQP#61Mo?3Ls9t8s2U^qd}{y9R&#y!GwXB+ zNkJ9x1{i=bOcEXr`b8KN4(Ig~kN$Z_LJu^ca4;n%16AP~ErURSIHdI>7k|1pTV>0^ zAt!*;V68;8wc6m@psjQ3+aEu%H^U1xXHhdK(~u>wW@oZZ05o0Qq4?Bip|>1s3_~mY zoGE}@C4*RSdrj7&#P!7|>ZVHgE&``nLA{97MQT*SkU?3w_}#=!)G^f~2z%(hCNR)awv=_X)xKzoo2?fAQFK*bs0D z3P&IcjbiL#1uGm(a?oOTK*Rp6SpJ zl`dF`hkB9a+kSkIVF8Ok#cljqUY!|(!qf$3Q4pCP&dS3w-njrQ(7jo;=yQ;+Fzy=x z<0c9%VE<7Z($K@!y6&jHzR}KuBp`2t3&9}4b}j5uW{VM_xxJ$8M7hKD>;0K&F7OWU zugI3IW?gCvl`1khz)@;j|21x%4hy_0fKT%TW`fBC$uXjvhLkTM$nu=u%WGVJhRta<;QctjrzM zr3e~`ic9W|t0nbj)WQiZw+}?obRML-NYy^3&n7i=TVC=E4L8Gq`ok zNlmn+tdcCWs!hkc{nxvzAc|O`;^>(B{J;uBf#89t0gbN*N6VU^HEk4?rm3QHp^}@I z1}L!*j+?_5%gUm`b8*rVP;2I@F?*3-Jmu*=ULM_BR_!%cu&AM;A&5I78>5%Nf!pQ9 zo8$H3>g4YDcz<`2ogzfda#fq2kRxp zL<2Ck4&j;%yrFfr-y>78A4uX=w&xvT^nJbaz9o z=k5YYC*L+xIaX;AlN)EIar5-;{tC5GW20IGa1KQQ)gU2+-Wjlu_s`Gvwu}wizt+Gj X&H!_ErlI5XCFJ;@;b#0f{dVvd(89n^ delta 688 zcmYk4J!+Og5XX5ENi-pbAfh7pJ}(xMMrLPccXkWG8w3j*(PCz27jg>kVA7|vRoG6C zU}3F|WeP9h#76t!|Mi=X=O52Me_B>e5sE@6oFX+->A7QoiWW3bhWULt+u7h48UUfB zVI(aI<49;yOA_lgU)*}PvqjDrN+hNh$SR3ItKd2nvohJ`hr=fqKlWrD12B(71*H-9 zsy)>{ausU=T4=u6f4RFNwiasXsrOFSsLH?)8;F%Eond}CI9k?{vr3d)N-b19KQeS` zuCI{d==1vU*|J6}Oi2yA5;_Bq~e1CU$**4!PNMR*0!s;zmLuQK58`OgT&c7XBE-MU1N*2XDgJ%|%l9IsC z#3AtC>v?rjm#s#Y9$L)Mm4;gzVoFi4Caf0z6W-qY<*9QWm+$P*c}@aiElD?HD6Cy2do+ofsUXeY<+NKv${0l2FlXlQie%v7t%c_@aK7&k z`*qtY3<2#NjFDSXl}2M|R&tklzWZC&REkTfUF*hCpthhaR#SBktT-?Cue;Uy5XX_4 z592IUs{tZGH7X5N=Iz7V&1y^uGcaN&E@rJLgN1^o0wOv;9zVA#^@Lys(Sv(r<&X_k N6VFM+=F8L1;U6HHOz{8! delta 272 zcmWNLJxawf5X5;Oh))nK?EQlm*d&u=mv;gi@35O}8o|nYSXy}pAy=^U7J}`&f?>*; z-^^Ujm-E;6?m>;Y_CneV+)XQF389x19bx|NUiMpKYV1PH!I2mih1-I-3x?!6UyrBb zMjh&1#zG4u!n&IQ5iw;Mg86a%x7#Si?us1IGHN742({8k%BCwiKX0D)TcR91_@G1# zF}K_i*}ZeN-ea3rx6g;oOVecvlmwiM7LNkcrWm%K&9}Sv!#37ZE2BD!LsubL3QYo1 MZKY+NkM}>Pf3Z_d0{{R3 diff --git a/user_manual/locale/source/.doctrees/files/encrypting_files.doctree b/user_manual/locale/source/.doctrees/files/encrypting_files.doctree index 088fbf2c5fefb88d3097b94d51d21694b7a24b3f..325d7a8e850b2a65bdfa04dfa6c06701d2cb9a47 100644 GIT binary patch delta 1371 zcmXApy{leD5XO1$hk_ueg``T(6_F6G-rbqmogI~cA`t{Xt{-VcaA#*Wpp9CHot4-s zuboCqLmDHeQZV2jV3Wc|MGK37y))Ged*={yF&L?2Aon7ZYH=tfYa-^p{&3gs-ZBSD<@i!35lWW{ zsT8i%d=`|s{&CMQ`v;jimntpi)+vo4)G;^h91l$5pKXsGJ-fYg-@6AszlG;7?D(MHpr}oN{aHbzVX1#-Gv3mWWzdqgg)!&t#oLb zu};^rKJnl)JBz4Fvq*&IBqa;Zh6x&#G7@%MzdG~Y-3wtVLJ%E05Dk|;qNCwuLd>wp znwK|s7ECjDGB=k-0N8pOi5+T<#!}Dgw+}tLAL{4Gsb;TG$IC3#tvCN?@lUUK})TU1hT4r-yKRo()v!u{9vC7~) z2@N&;&9w=q2~HE&NAlt3EMmgZF(t30kYvQHrl&Mo(_-s8aC>J-y^dazV(m=TNWAoL zaA5K1Tw(p7d>2v0lcoZK)M<*fs=0&}6Gm--upYN7drKZP0%r*j8`WH;02gbekf%vK zZ*RPKu>SMpnax?AoUA1D_zz|{4l%m`pw8SftVb7r-92ZeCy#P1MijEJE29k#c;mPE zdg19Wb`Qc0)?htyXz)U!4H;{A1mOVKDY5&PK3a4Hf(@yTRLQF-R|)=O+9z-uuGcU9 zzPmIQ8ITeyG3DGFn`cP9TfBQ7+vE1|`qOjAJ4;2%DSV7Q2@BBlWO+xLTzV|2@_O<4 z*EUNZHQWS6kVK)ZPbZ&Q9ix1ev|V5LZD9-=P{pD{Y7I2h_h@2T74KDIZvO`V!KRTL zM+$RqP*Ht!DYZ-&j-bQsotJJd#SnrT4>3TaMwdElnvl+!n$-UT_g?-pv?ULA;vOU= zu-?M(+|@v0EU2d$>6ITBf*vb`Q*%w^T;n3ZY}G>L$rR}%4r)a5pqnP237lty57IC@FU!?}La T?T8bgoFNvIe0~4*ukZa26Do@Z delta 1371 zcmXApyUSih5XO1Gi-I7ig``T(Cn6zy`t9t_WmhGjNCd%4yrdDqnVnrh8?_KSE3s8x zJB^lxG)7LPV8B1XCWVcP78U_}!4%@WNp}us&Rm}7H*@*M=JJirwO=+1Po}Dxw6}@a zawShyx)YA9BkB6j=E}jDX4Q%Sf(}F(b#P}dU8SO?O6!kz?H??boFEU(lL1MZI!&x2 zJ1Y>guYcb2>)}yuP72LnriM7BCSw^0qibg<<@4>yqo=pG?tAZu3`rx)n7tv7Qk~uU zNSwWxlHG~CdjEE5B{k55lXJsKpxyfHl7$QAjnH;o3mbEZ&o{qCV>50_F|OH68o8OJoUI*77k8#~Ei3(KeLm9sZD zXP8@O7RH&d*RCdW)}lG*I)%sj?YS>D%jj6!=+qq(no!GNpaQ z>sEZnQ#c&;>-q>BZ%)r9Edgqdwni5%UATo-Ef8w3zMF6EEs>)&DZ&~E6@!+;4FT(< zD7E4GA$`BMXoQvCJ;wm3y@q0zn%C4zaV1$V*0&B84}+_hfr5xttpz__TzJj_LwtMf z#iRA#Cr@oo?_`}NtjrlLunb|@A`tQvrS;_eZ~JHByT^3W#$c2vhm4g|Kw`O?tmmHo za{tIQ7R2%#BOyZU2a|*~lLtWJCU=NEyzuctof}z8n6V;zQn0{0g5&?HMC;WHf9x-+ zAO%G`Rf^^0suFrJq_Ay-YTJwT;q~X|F77P}xm3j=wfC5zv=BIm&B`4;c5yxb{A-&f zSx^PTkW)p;LyJeEoFZ{c!^d`g;rC_63v}=qW8oahB#M?4Ahc44_t5RXrN;hx;u%Ol z;9jh>Sf?5?O0>Z_f{wShUb?1h9N2c3>_{vXlu}U1L?!^P^v0LM~PBnxNz9`wQzvK0(SAW>VsgV>3;zAi= z?1_2oU<;Xp7>Swh*zx$K&%%zKaKsXBq9ZjJE>6jFN-(jle_wj%U}-f&!wks-VinUC Spj#NbLo{1kKY0C{d;bT7R*a?q diff --git a/user_manual/locale/source/.doctrees/files/federated_cloud_sharing.doctree b/user_manual/locale/source/.doctrees/files/federated_cloud_sharing.doctree index a00be38c646b06d933d5c2f5ddcb392880fc6547..dc5d95b7d339f119ac5992a4c943e7f5e0ea7adb 100644 GIT binary patch delta 550 zcmW-eJ&M&q5X5FMc@BNzxCU|H#&o&itb8P?DzhJul)`VS0^ zL@@I*Vj?(h+FkXdsJgniy7=^Ym!{QL#XHqLv3Qq(xin^x(LKbrU%MOo1QlQi17%RG zjZ_F~hL~cgW^nv-@+Fnf#*H(M$k?GPQLuMFq&~>=_Ve`XE{Ui`VX4doM=4$hgsUub zZyjy>a5x+i!hq65q*=!apt@)X;)*N<^7iBG-RYxjE9B%_qE++-^%7P}$-^|tq_@X> zD{b#@zt|^&!Zu{Kx&mb$8cN18dlg!@vOT=>Y?n%9%sOLu70iPS$pLT{EDK2e`1W*_vL1CMxij&%d7}nbiKb6cZa} z5)JC!O7k{21mT#^pKg~Ao-buU)wv!qDspzUyc*;>IcCK+u9f%Gw|%lT9fiuQD?c|h o6Q0!sMx}1hw%?C!4ey$l(R;Wdw$S26omTDGXXV&lJ$ZBUA6Yhz>% delta 550 zcmW-eJ&M#p5XG69Wkgs6!H*3TTJZqYU0+>CFc3VzvQpjE4W7U=tf3=@f|05E4-Ab& zF!M5EBG?#L)$hG}@A~rk^3&&Cf*iq|m1h%bSX%)pkhSr!ArrS>yBqriJbQyuV&Wvm z>L3+bDYK7R+}i2S;Y$jyvr8i^SctH@Av6jN^r>jE{XF}+1gA+~B(7yy-4 qG!-UTF;;1r)??f6$G%If+*jqRnh=_GIKfz$YJkkubbIyW&CP!jZkzQ0 diff --git a/user_manual/locale/source/.doctrees/files/file_drop.doctree b/user_manual/locale/source/.doctrees/files/file_drop.doctree index 46ced8b68150aa6de3537d8ff59075743612261a..b377d7d1ee01858dde9cd014454049f1729f3fd2 100644 GIT binary patch delta 388 zcmWlVF-~PM3`O<+2u1@)2%72O(NM>ZW5=2b*1!hhIPU1!00lM0X9q~sNRKTb(X$~k z#cghJbW$n|f zN*Xdor|eRVVe({w0G-*sPVRP>jDf19P%);Kp(PPWh$%T0gzewy^=|cAi>1!NY*ezg n4jMA1a3~1p{o~p9%6(GLPqm?uH)t9;CMY#`^Jv?{`PtDAn&)c9 delta 388 zcmWNMJ#JP(3`O-mlpshX6dF46XsGS6XT}y4Spypw|4f%I8%U8l#g`o*rAB&e0g0Xs zF>ddisTGf(R~Oq3>77_w zK#BENScBOYw+3?Ba{ayjak{NytO~$flu2j=gD**)b@mR&w+~-WJ4}$YXfpd?bum<4 lw$%U)qH%t_`L|ogIZ_%LH7-~T&{v2tFagPqhmSY!{{sXGY|{V$ diff --git a/user_manual/locale/source/.doctrees/files/index.doctree b/user_manual/locale/source/.doctrees/files/index.doctree index d332b5c4e9c2321d025d1c4b296a714ceb8dcae9..9dc4a51ac9516447af4728c375efd5d618fef76a 100644 GIT binary patch delta 83 zcmV~$yA6OK5CG6OI9;J3a~H%(G5Y#@y=feiuVdv z`1#&a_%M++8r4oX&6+ks?!Ab@;Jkjf$00e95Qux_AOp3@Z6F~QA=+!*Uv681&f=)u z#{LMXHnLXKoUJitiuLz;*^+RcCFf`enW~3DiJefGqnhB?^ZdR(PanrLh+RXOoPw%& SBW;D}tZ2pO(DghY-u?jzF*(fu diff --git a/user_manual/locale/source/.doctrees/files/projects.doctree b/user_manual/locale/source/.doctrees/files/projects.doctree index 61cdc14ed1b309f91284843c41634be5192f9b66..838add052ced382a74f87947a5fa5a4952d30f27 100644 GIT binary patch delta 482 zcmW;IJ&IL95CvfF8v{pC7(~Wl;CTfXP<^YayE+i#m%0F@mJBpLb719RnMPY=xwI z?c&@N3i(V}PH(IozudhV?{ED*d%|E1dkAM`+PGRsHs?YhY3t#qYH_jP|6l5DO&JW9)L?)9V>uEisRRvS7&Q+(uq#claUH4 zF&eb4$UPY1xW9NdKHPt|ThZ&LKvLNgZJJf4b5>%`HHz!lUz~PpNt4iXvSdoyn_;xb zNUA!&Ds}vMaJ{TNH&sTD(wG8KvkN;!+R_}0GVVRR+^yBwb8+inojNpOA?4aqaP|!L z-}dqH_wv}00BR2iqzXlWqgR6JX`W3!USEA*R!rF@y5_Ai8K{Z5s<&L&HMx)H*Dufi E0kEuzEC2ui delta 482 zcmW+yJBn375aqrxa1@0>WE=*bS8xH|>+*T`G`M+>qEr+pQgRk= zjvT|9llbvX?T0USFShr${+v9?4)Z%0D$f}kV5PB>&~l_m6{O&W^a{=Y1o7^ z_Y4+1hT36&_H6rb|J`m48M#c<85$)~qlVs_BnWLOVB4P^cdHM9qHZ-Z5v4kF4m41m zzL5)WzaLyKYmF`;0=2ObSh0BnvduycrO9^h;rVXOHTiIz?eyOYR7jH|VRDnC1^;LJ zcz&}yE@?>bh;Fkgw<1C^S#u!(!Lq%+_`a+pJ+RgQ^g;;JHmrkXk>Qodx968HPyYhg C3Winy diff --git a/user_manual/locale/source/.doctrees/files/quota.doctree b/user_manual/locale/source/.doctrees/files/quota.doctree index 0e64e8f72d60e4ff9189818efd8a02bd6bf088b4..eabee568de8df382ed62c176bf294805507f360a 100644 GIT binary patch delta 390 zcmWNMF>co}42AXkSCmR1F(F`TP{$4=wiCyDrH-6{!H%5;7Dl#i9T>|kSg0a)PQbt^ zI0OUH8{gB@_dVV`-u(D_q>$33WzMZ4adQJHs9LH?74wy4ynk5Bzh<^0>sSDtO0|>)m0$NEig12JSRYK z3J!r_&1;@l{2p%}Z+?6|(&!F3+Hio0p23h=QH*D%uG81|c1jnpJRC#bf z3m7}mx;y)OTnYk4r;gqcTd~1z90o-y<~r8>lP{;FncP7d_duL2v;}fE4=mzk_(~Vo zXDQ1DNX!8{NFnVseL&l!Je$n*@!9Q>=4`kr@lYtXxV{n(O_GPv>u2>EPVQkY2D&woySPaxZ&G=-b2ZS84rw`Sg^S%qqeN s+_+4ky^o-ZwKXSizOG)sJ1$#D|=I!M)@%kB5IHj4W@NxXBRC*Y_zb6pq+(q zEezV(rce&pSeQskAzF!@O;AKgC2FI7=f>*7xwAVn-)nDNTiv*}`r^aYq&+v{8l^a; zs)LQxP3W#FsETI2h&z>B>@tx#hny4<8Tmr;0m%6Y_QJ&N^4qdPHjeN;-V zW@C%n+g`ctgGsZ+)+~9dMm!o;a8|0s(M+)0w(!{PpH8Jx=sw3`1%5OoaEeC%(lqsp}!_dV?>|2i>1&A0+d0pYl{Ygl(fa;^LsH~EZ9ob zb&8QFXU)z@u$Ckij;+pD?|WiBc^hbGS?V&rZ|p4<7ea7;_%USLm=FIti7{h~*g7U0 zu0U&ne8(4w_$k}QuiyX1Y9h803i;S;#g$Qf45f1zy>epl+bef=ewz};Xply99o&-W zNF%txq~NfmZQ=aV^bnwC$kBXj)gaUEHRL`7!zP@twy^ui{O!@}i(b&NBw<`iAtf1+ zT?z!t#B9~(FCTbnJz0&=2FMI7@Yvu)1kf`lv8F{fe)rhyj$c?$9iK`Fy>alU8P&H? z(9yR6Pi~cZbaP_=zWMuy9|zgK_M*XDtBaZ{=rnwRuUWl$o)16z=4z@0yfpOgRA?k8 zk_>DTSg$RluxCiYmFJMvMQZ`L)czv!baB;2v}j z>KbFH&KHF`fO46ylo!`K%45M?NGj%pj8h55E>g=#7r$}456L?FW0HiTxkNAuLDI{NNS|WOge7yPj^pVYv&s~~293?{tm5mDCjAD6s zhV~c5OPN1TusD;33(H8z}ID^Lk zug>BHJ9~D$le=}~er$k)Y60>H3P9>Wju35G{`1_c2o-pBAYM}f%Sbx)0k4)&>J^U~ m=lPxUU&C7B1=p2Ey;4R>XUMDI-3knQZ^eCVe*41BJO2alNDN&7 delta 1827 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 bQHoZQOGi>OYJF)vdTQ8J+LinF__6;36>3_V delta 309 zcmYk$F-`+P425CsN}wo;LQ6-qC-B;y@wmw$xPfQJu0qKL`a6CXpi8QC=iMe)Bpm4?n3W*7Pc^u!yLzAp26>3?O+e~I&N^NKzJ9~y@ zfAcaNxO5hWp1T;MQ7PWtsDinrBJ=Wj8^h$(B~uup0%Kr7fJ`7OP?;lMpU>a-59i}< zvz#_MPLWUx$2yf~mXfs!CRf5-m~GZ8|FyjvrrI3X(75U9yH}_o)z|l>W_SDd%W?Pg b*M@L(*4(&rTd#t64WJgS5nr``_V3$Y@2y#s diff --git a/user_manual/locale/source/.doctrees/groupware/calendar.doctree b/user_manual/locale/source/.doctrees/groupware/calendar.doctree index d9724638c11962cec26170dc758b7575b334b28e..56e0a8c125bab900fc3ad5788ec35c30e6725f59 100644 GIT binary patch delta 5892 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 delta 5892 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 M_431cxaze312etOeE*n+q2)jp7lJx zwVr)+>)A)Qes*Rv#aPKYS<4)yr=&(Sn)5N6<5YNgdh^6)a>L>hO^_wD)TW*W&NwMH$BA#A0n8$AyVL0ZZwFOTp26z-}_ow94>B?ML?4&FN($!YWP z)coqs6|>)W_vAvaM6qRjP$K?ItR+N=IjiTM!t(2V=Qk6FkrLMsLM~FG6~Yrs(qP_o z;kx|fb$D7&aX4m5-IK&7dDP^EiWBl9hq|1<==#mnEK_xPq}H>j$4|L=bG{cxHiBCY zUvg+ORgD&cQjJ_hqE$z%rMZ$vNDyQ`eSBwrF6^Hly!7m3t|gyyftV^mqE;y-GDmHF zly3h$ygc;!n>RaTsd&go-dJ+gY$JwYH8_((n*SrtWd|Oaidw9V@arrh%(?qsqjKgx zl2kuGec;@rOpRN}+#HMcrarn%$yY)#Er;dw8@|5TMwvllBObkrkd#0jZ;Um1jbii8 zfJc6M5J|oF8cI@GXT@@J<+D`SP2;wwVgW;VD&bP`tpUt)||3Noa%& zs=N2ybon1}(n!o|?Fljj?iIpWBT{li)CDJ}`P?lRFLzz>0eCTJ3N2}eID&`N>eZ5C zm#9F`aG^V|Zr{Dx9&k1srR+@%!h3E5AzV28*Z-nDNy7z@e*` zd#?WZ)|4TVuWm?=4u7>Ga=nb;8R?S$ljM$fyait;jT9{nQI-}`?#ZL>ijVbH{e>(n z&tJQD&(y`3;e+Ihmk7orcm~OVe`}6N&MViwI1P`72Lx{f#V-tYWZky zK+gdW@YI03f|{Q4$Tf znlqkYoE%I9WFfEfC*S?zHV*(i=iY*^GIEDvJkZKyy;i09wiDaSL)Y&|QiKEQ4LPkz zjSc|~1>y8DIv7|{@R9jYWD{Nt9E^s?fK;jCK{U5vr z_jM(9m}6@;Be($GG_bT#EmnG8KKh|wY)!~-@@PDAB(K4YJj)5pJwSv7(rurdU&qppJ`;{Z58z?acjj^BLU>S`Y_ z6pCfMdmwkEkKW9KvJNR*n>;P&Zu#lf^U#zEER|tH2np7{6`I4}a{nNuz^F zsl~)iFnMq_9@j9MQIJwxe)RF@x3&kQ!vu8!&6fmiJ^sxZS%sn;mnUw0a%;lK_ccXy z5hF1nLg-QHIZ_0Q(#>PFg})^#667p$NJc0p0WP;b@O1<2-;yD z89NGy1N?y3@67kt?@rj7pjQDgNg=+LTq{-_g%kv=Uf2@m(O#aAl!)Qxu(bim<_ogT zy};;p3}hc=F!(tDrTI}t_= b?9Aqp33e$k&<&rl%dYZUU;goxTQB)HHZ6_; delta 3108 zcmYM0TgazX6~_60GR%aIF)`Lq!+h_jBRP}cKCHd>+Lax!aVTrhD6(|0wf0_{j;IV{ zP>_0|gcX*rUZiwT2BIh^ULE@en{@?!Z!&=Yt zd)D)hY(4+T)-TR%rszg6DL$tbX%woVChjqZ5{K26mS;ClY$nMzd?;Pbdr~!xB?KQ` zFB)BTvfO*gzc*77%A{62mqOyQI5LW*Ri;5XmF4kWpV>^s4KZzb3?l8Jj_!Od>|-%? zu0J}zzH?{}yH8CVQ_sE^mrA5KQdOdE;u{6Cu4DP_?sJ=oTh)}k3sF3gGYOHKHE(2< z$jkDxH?3ETxhoasTr#EFgeoQ6B(g&Rs4wR(y?!%!31K8Wu!caxd5$GT4KbvG<*_e^ z_a4|xL=r6w@{NfGhZ^F@$!TJ86_1{uJh3yskoL?ET>i`<>qBF6t#I~K@Sjvd3NpHw zt7)DNUbQY=9(?o7o1KA|rPLZ_Ma4qlNV(vri&m16UMS5K`yQSoGM?Ki^Wtl zkQOe!W;wn8cW9n+&5R0iQ__J>v(?yfG6!rf%N=k1!Dc(Pl1t4)@Bp;F2|6L<9NyQ> z*}QY`=yKzM{acf?PAybZi=70!T60#+(0EFT%ktH?e*=e7v>bEnj8<{N6)c+v;#+4h{BdF^{a;)ule>Gl##o9lB^uwZy>CnwQ#okE8a` zS`-P(?N|SPGePJnbgt+WbQ>E-&x9{9KF-n6eEgmN*lCdPaHW^x0-2~5iD(@bwZ@M4 z(fR%Z*DR;6`Q_G>#R8n&&`_g{CIbr46SSS9vG)IId%5#n@7PQO+{ikDmM$aP$8fa}-ffJj+A4;c;aS}Nz}#i06i_3}cx zf3r>AQX%{e#37Isy6|{$K%aWju-sK1y<{4=lXMEM6b0dixMUH2teT~P7t7)IT(PdGxeHort@Iyx)a2C^ArmC$1-Wf&JJfFPn(DLB*d!SS$ z=GsSU0T+Z3T(xHYJYk{Dfj1nP|M0$-Ca@NIg&rDsUZKX0`zz?4IQ1F{TV6ZAw140H ztsC~tM?dh#Nn@)Z*8Z2?at{?s2<1nBO@WX-NZII^3+^AJ>*F+50 zKY!c9H{7%}aiwPIybTH!Sk75Y!Qo@Pt>->JeC!nB&OPY9Fsof0lveMdu)z)Mkz!1c2BosWtOw~h)APv&C(}mU?|Jb|N zg!H}`Dv$vY@T*3NDd)f`G*B`uPoDTTk~=1ZaX_fRRA9D1Qr#u?!Bj?-<;2a`A@~p@ zB_**WN{Av@#iI2F`E<*f)|V`2Z~6Jw1U(GbxrYE16zvG{hP;B0hj%v0{Lm-fm~e>@ zs~g$}%$Y$Rq%(*Y9c1B1m!Ev{#jS1M98#yZo?|5qL2GLn5vX1iSX!RA^{K6C4Db+n zWEtp62Fy5g1{Q1`SRH*ic^eQDax=^%ZN&=VVHsdvOL@_FsVk@+{b|8NTIofGGf z*bYO7$uM6SrLGp&Tv_fr`F=bS)B`F}sdWGV3JoR(ADKIn6N>xm9e=QXwwi2bzE8hDfzOI043s*=kvirS2o!Z5@JNc`{K9pn812=mAp!xsguV+#C{+wR z+61G;=REI`t!#ibxtO^IY~a@BpA3zP&@@V_ug!N=nKzGI2-0F7$e}=x+=YdTru*s z5@E|S>lgns`RrBD1&>Jr@k)RvD(_san7O!?`Q9&KC*LDNykb;bA6B_osL&H$B$Ayi zpZfA+7y}XRO>iovC#bGy8ZLl2@D%{%%6!?Kub{Qq1cMXcRtcl4LW~fzxZXu#cFT0v z(@03x0>F7R9%u#RdO~R(aFhvIK=Z42zczUg-*6;jiUVOWE~EsnVk%+Pi0|h$4?t?3d)(n|3kVbNvulHBn3XP_X(`OIh9IpM?LLUxQ LXUJHeZ+|cUZ`?OS delta 197 zcmWN~F-}7<41i(vRfwuWVq;>++{sQH$GHX)d+j*BN>9<56)DGgM`7U&|M=_uiWfEUrA(&*}S|z)af!@SdFY>r+`g(nCNt?0~srFaQ7m diff --git a/user_manual/locale/source/.doctrees/groupware/mail.doctree b/user_manual/locale/source/.doctrees/groupware/mail.doctree index 502a9a9fa38c1e0237ee88f9879fbbe3b4378c2a..69a22b5fb47480a9cb60bdea4239214c79d894eb 100644 GIT binary patch delta 23195 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 diff --git a/user_manual/locale/source/.doctrees/groupware/sync_android.doctree b/user_manual/locale/source/.doctrees/groupware/sync_android.doctree index 4c30bedaff244fe89da70cf41daa4c33120cc05c..431e1ddf179a94b37b8b5edc3003ccb84166ae9e 100644 GIT binary patch delta 1150 zcmXAov8!H15XHG)J`#-)L`?I9ybVaufMj-dc6UbPDJT-L@C8x`LSScir?#@Ou@D3+ z;}@~F2-rQmHa3cljXbnZC1To7FGE*I*wbqW=dNwVk_VugXU;9uXc0fQJm?@6LZB&@KCG1)z z#KXg*SJt1de7XyxwIZXJ(xwq}ZMjjbGd64hWAggo>NiVBrB+Csswz`)i?JuAq0>Og z(p;}!`+R?M#v~#o)|7>`CW(|0NTMW|()H2dm$$;<^zKvZ-_L!tgh>g6A;vn4ba2a@ zT2^d|RWxt~K29TLGOesnsEuy8;SeF|w?82;6lZwUK3yHKQQPZd@ zomDI77UF~O-KF4b`jBKLyTJ@_u>)7k{-5=f%BDPh>DgT%wALH3Nddx2Jd~i@bdud% zyeS{wdh>EnaZsisH{YQpr|sq#9WtA7giU$p)z5YTE;>^|+T=mrjAmHPp~TUIr0}Nv z_s$nf$Wbyzk2yyq>BNoNl$#}}PT_TLzjHSi2Ev$fcIF2(~>=jm}@y%MT# zVxv0&r#Jmwx@R9Pvm$40+f;h(^?h*5q*)cr3U%;`x!vKIyg9vNx==UJ4E?Ej5V-d1O5jlrZw zRnKOKV6GhdMXXb`&CTUM@7!9B2e?q7?J0RcXYzx{z!qmM)*aP^QR_Cnzju2d#uzDg zFZZxWEt)n!N!8UoOKKNg3+ws&bAMc7G^Wld-u>w{Y(v^$ErSyxulMeMayd9m1@!|P Y+ZlKbXB(QbAM_|4X#4Kkhrd7bA89sC@&Et; delta 1154 zcmXw&v8!E05XLz-mqcR(5z{=uy8#Irkj(DR?#_rj1w|qjzCa2=2<+_a)TwN2EQCNR zfqhjcQIq)Otif?2XW$M=LFQH#N3L`(NG-`;%MGtbf07ZwUnMVA!Gi56Xpc zW=oc+NEB<}^X~SKUi>-;N8sUIk^fM*GJ{586Ctu*$NFdbbhG|^_4{qGMk7hK(J|ue zB8oh7hS*1$2D&~xI=K*fZ8f*fV_3stRXSwB+A=w4u(U3(ytE13s1g_Lzy*1TFdBJ% zjb&YL=`0hf0h*_abgjo=BWb*1xHknq9)DFs%SD)Vma`@U)A4Gz!mCo2I_8ik_ z8Wj)9$JgJv7+lgPb_DP(7S9H@nWI826{7P$C~v;;#U@nY!6?-vH>B9RC!?Cp(Mu9z zJ}Cda`M}qR$=bv+qH_l_;if(xB_kcP#r1J~c?mo@k;3#WcBfyWD!%#FHmJ2W<~hmXv=zmoI!i4c;R5rZ-2Zs|TPRtZ z@5_T&st016=QV1J1v9ZiK3JZ;{n~a%RVU=kr5PinCK)SZj5<3zt^Msg*Y>B!&#uSs z$tJKgLB9?FPsJRqyU4F)vNvThKehem{p-t)v-R1EgUOyAKN}&2^LrVN3G4s1`;Tw^ zy7NWE*$~uuyNLkCno><3Xqx@$`1ZjM%dV68=mOR~AijDYxoacJzOqte|K-t*b$ock zvpZ`^9dH(Qp=Ym%x1(ys-+SVG{IH&VG=2OA;$~&|@!-swi&gi*$`RA%-e)u)Fff@6Y`QPvlfs diff --git a/user_manual/locale/source/.doctrees/groupware/sync_gnome.doctree b/user_manual/locale/source/.doctrees/groupware/sync_gnome.doctree index 002dbbff1c38ba5f500347741ed6a6eec030c5c1..9da67024cb8b0d675259deb26f23fcbd845ee433 100644 GIT binary patch delta 384 zcmWlVy-rX;5QTG*Akq?JOpI(pKf61#JJb0Hyu$o#ta$?xN;)dyOPJikp4QIJ*20I7 z#!Gwhuw)`}0;(3|uiX0x)bEoB7nix|)Z#{m=GvT66_M$iWhzS7n!!#!H>M z_r4y#o&6|4)H>$UH5@BWb{3AY`Upaq{&@TLUon{q>>)>jJVGWx4W*h*`XJdK&VO%L zrj=#6zxuEt2-cZY7aFkG-0v^$E(#mX(XiIwh7DXCG>LOkBRE|9_4{9M%9zblHLRuK z#AS23C%PexmEik_k3Ub!H0XlR0%@UYwWB@T@k3pmmcxGX>F-uL4xldNA{|j)UB|vk ktMXt5-OoRN*^10aZmFIJ6`5A?c+&(TNStH;dUg5kKgru~T>t<8 delta 384 zcmWNNp-zM`5QOs|1dg+W5E8=G;JfYawskzhy~1v{4VpI~LE=skUV@|okHz7z2p)nn zRF0ULZ|1N&?A|^W*R4kuHVY&OQgQ}TNMZ~IL23LfFUPL4&k>Z2J!1+jvlne1B=(Hc zwtqc&cb1U~bYRkqrZrQ5)VV@bYTm;B;q=e>UaD~q6^KzKsx=Xcie6_Q%9J4@%juic(=W}lh)%`@lG&CR2moBN+`E@s9qYMiqc zN|1S`JZKKcnj0{Fu$&8F`D4=q8K*i164ppOibNY+@*EM{L@dkOXZ{R*l!?Xw)*F>6 zj94>`W`<)@mF51y<>lTJcS7x;z}fF%qu!L;un07wDOA6^4SaX+!=qSxiWE@`bQ*oA znWjNqNHoKe(#i7c!P(`FC%*`>^BiPS$dx!3@iRv(gBwbZd8>K-se552Y=+ELI#5M! zrn!?Jt5{Bzw}G!b{dH(Vyw8FqC#Kq+(WoBXMxJd9vu)s|{jUOpD8}U9yf7}*@)#-2 zGUFJ9I-Ulu7tY?=9Oc5S>7Ta!kuRi-zFl?DLOLt39%*qIw{MA%N%wx-Mz46@jO_Ub7JGHA zqO}=w;biE#XrnEU&tF@-Gy2PCk( z8^?PueIHU0Nz`LX&`8}~zJ$(53YhO9?0kRgPFsTbsQ+q}KbMcVq- zr3afJu|pD`Vl$Kf4OmN;DYHi3u1q`A>*ZgL*nb8o`g$gt-ZOIax_l%Qn;UNVd;jY4 z&Xv#IRs*mkB6hmTN8cz%>&0y^Zr^RcYrA@56FSV92t1-ya$%loC1xlMhC}S@!)veY z9ZiTG)6`+k5I8mI4W?G>>K6C3C+}Z4Sl>*CdjWIm(9j3(HjJ%lG{BbJro|Nz*4z2@ G!~X#GKzoq@ delta 1289 zcmXApy{leD5XO09)Z}^tY8fH#N&E=+8ewL4c6YY3kyI%xtaUziu@?LTEJB(oaHOncwrwKDxPibaQj>^UY;fNVQHa290tp z;;M6Wstn0$X&Ds6_5t+?P_HNxP ztcX|E-w)64UO0bibBViJtxQuiw373fW-}Xwf>hR@5B^zl(m*g;5uP-LNSm`7no^AQ zsV9s4_sl1Yg%lhE5_){Aon2?+L`5q4;1-2{EUd&bj8%uw41V5P@$f55(R8})?%{=_ zGfT=mOZV`SgN$dP8h%Td*anWaZ+Eo5{_HQ?f=sCykr`3}X2(!Ao95a~bkAjXM2y$-V5pfBx{?(xrqV$=D>3_bTC-*03nBSe~$ZeDU_#1#-nQ zw7`T(hS9ReLfy(pJRsBh_~Nzo$L*gBkI0!CwQz(2u(mM9gSRnarM~W#UzZlNYxL?) znF@A^Y29OG*O!@I@1jI;dQvSxa;R`OZsUZ_(;rZ6BGa&sY{o zyv8aSijLE|4_^LhTiV3PTn~y)O-$mdXizTRNMrC`;H_8gFIsyf9vYbUuz|bHA_crs zke}Lj?_9mVS#U}as0pBCQd8;PsAC{ki#`Ya3aa*nr|R(`@nI?sj?e F!vDY|d(i*@ diff --git a/user_manual/locale/source/.doctrees/groupware/sync_kde.doctree b/user_manual/locale/source/.doctrees/groupware/sync_kde.doctree index 1bc39e5695f846f345010d23cd28e2b68501d2f7..0ba5917dad37bf094d3f00185aa1cbe97f313edd 100644 GIT binary patch delta 693 zcmW+!y=qoL5as6kLIMUXB!Yr*ML`6?ouA#E6|oa*#TS^_*?kBb^9~_x8apfDDp>gx zA}M_eTix6(wipg)&N*|gFPH1f>-rN)71xW3t)E}w{aLm*6S-z}SI2aTy{bTDF?!0#Vnp{yF)55VR2xkBZnT;{>#Z-N(2YgJ<3N z{@wn25HPD`9vNwhAKoe;gK;G6NdR#}zP|Hw31$(P4U{r-Z(UoTwmPL)5&`s!KPPAF z%hRiUD3Ng`{!Tw!E%yjswR0FN3)(Xx?8EU8WeAC6V_MoViyuu8G{;+ W(OKr39n6wTLf{gsZ=B!w$=&~^gu{pc delta 693 zcmXAm!D^K;5QX`BZ)w4T3#p)BjVOp9IFrmI6A^dfTJZ%knaM-AvF}j2?Z%xe;a70w zQ;6JUpTe!C*KKm_6zu~|dTPEnK22Nq1dJAsdU@p1bp#9lkl7^n%!dTnTp zhgOYZMXRm%4&NRGG6dvNMRK9srz3Xu#NZz19Iod_A2y+=i+az4tWrs}QKKj%i8Xmd zzc@d7wm!J^c?qq?qJtW`3za?x*^zh@i#O4Dy*~MU5Tp|}oqjZHl7N6G7aPc0V(ewl z`+NJ(K~O5OS{p`{Dbw_`nxPe&dju?TuY7&y=Ms7yBMCQL(ftid`Hzsa#$1%0)r4vtVmlYoW*aY&KKPKZk#idlupynf?kEo>odH8fUGYYo( z0amNgjMefy2Tmel0n@y9e*gT-HdxoJwWmB1%{D4rb8pELCCsVvREG5xzL;&q%^gPS X#b#;H$|f|=%8g*i*fYP;le_-_$??P? diff --git a/user_manual/locale/source/.doctrees/groupware/sync_osx.doctree b/user_manual/locale/source/.doctrees/groupware/sync_osx.doctree index b1d7bb808b99736ac8f5d4c1583729d150bb1883..e6822e0c4937a42c363a8b665697a0653b7d6122 100644 GIT binary patch delta 643 zcmW-ev5J*35QX{gt|;Pyf{UWCX5B``VltV@%)E?}OcLxCYppD-g}Y#9t)1{cfWl(G z*tue5A(p;@;WmL}PB`a$b9s7s`uXE>tcvt4&+;l1 zLTPYY8jYJi98l!Z|j@Qi%qa%F=p{@SxE-kkOEnY0*SWN*XvilEe}9VTJ11p zR9#C#GjyDD#RRgwIC#9?x%zwwtzlGaov9LO9yL+yDUURKpZg&EGaFYkr*{jDFHfOT-|Nv3%r z8&=U1CCg;VAYxzN-F~@%z&V=W=C9_Z8pgSuvEID@X%lLi3|w1Nbc(TP1x*#GyCvXQ zcStrzANIm1GMUYUK$)Pj@@yJoOc}v(@cQ-m_Y!K3T&<76?9@g#i4nP?^$e|RUC&RR z?gw!)q1L<3By)SkTbxOU=%kyScCPy9*AjXfZM29(CI_oYJqkO{i0**7@08D;ygv93 D>nFEG delta 643 zcmW+!yJ}TY5anJYiWpEZC<^h!G%6PRG0&e-X3yRmyI`%Ag|!gD&RRR+e1L-32RkEH z7GmiiINo{|>ox2AR&Ms&PO^H_EnNx%hQ+cREd*|B(n@QOX#- zN)`r$TH*9;|G|3m(v!{NxeFHq7#)E@q@iwMxbBdjF8|$IYHrD=IZ+6E>WVhY zFvZ!tc+vH2|J8*fG^vg~r4WadU6qRxb)19^FycPDy{vDqf8Q=~M=d@ktAqC5G9jWM za~HDS*Vi}hZI(fnm1k~T5X{6X7ng)hy*pM|za9M9E?h%3oJjD%bO{rsB$DJQrBQkP zaqD2ah|ruyW`!M)dz(!evQ(wQeU|mwoezQ1q1a}8#|&mtO-UMbr7Em2(yo&2;kygV z0Lr;zufP)qi8XC?L=r0HZho_AX@F8?Ok7lT^FU&=T=Y3=kL68*i_93JvEW-B-9|Vh9@^$wD_cac=2f}dj}fk z(i7=Y=>ahVEEZXE?fb>$vu7K0V{sX+TA`@ZoJ$#lb6}w|Xn*hS@8|cp0u>B{>6F#l zxfW!RWX_FeeSG}knXBUmFaEuaQc~ouQG3>h4jhWyl(Z{MI^Ms&+CP8kufx`xVCALO zIDachMmmj2)Sfi;h8UvZ4PhJ>drLX)PWVctIoNu&zVvCW~b9pX? zX=%)rSUkLrQ$M};{b6&SE|HOehEy9H@QNuBxl+P~C*{?vpB%Qr^#&6jCrCJST+lLxBbI6{yp1*U=^8bcwaPRWM50JlG(~2 z>DupKe|Feb19nqw-3K-GUSs8YLIg7jRQDTieRQ_1p(?=`BfaL>MxiXE;8L83M%+Nl~cZrkD_usvHwv`SbgpklEfi%^kgM0Jg!eX$032?rF xR9`+=o8$qa=fnAw1*EcC-+!ZD&bJoXh^%n4N_iv>4ADkHR>j40|4Bc-{Xc{(8}I-C delta 1037 zcmX9-yNYH-5a!G->*6Ag!wQPX^xy>s(d|q1rF;g>j0}XjYPf-7wiwBd$>#F)L_4sCce6#)Z%a#@i8L$$uKwpKZbgcvGl!>+U z{g3U9+sTJ3T3%{nf{#h1P7^0q$;%rZuI_xDz-LEa-MCB`bh^UBkh;vJZ62L)XkO=Zs31hZpZ!B4}N(5lF6JtPBfXdZuD9*IfHIcb}Z4sv;)L zeN6#c11DtjDgdp*^m#bHxZXd%_xF~Dv;4&MV90umiKq>|90!@*g^8N=(wN-r#8DV zYJ(8LdwFvB{+Y|e`!D^KvNr6M-Hw;QKu}8^%fN`{$aZ*meYt=3@}FDE)xzS?S7Cv4 z0$Ylv}Be5&v?H tSQhY=d8%PnU#LCug!`}XbD-)m=*z6}fFZ&%2oWe#%-N*wKdz7N{RgS*CK~_% diff --git a/user_manual/locale/source/.doctrees/groupware/sync_windows10.doctree b/user_manual/locale/source/.doctrees/groupware/sync_windows10.doctree index a6a03fbd568c2b6b00e6736fe40ac4c48d3ba9d1..5ad3f69c7e724116c741967afacad2547518a46b 100644 GIT binary patch delta 1278 zcmXX`J*Zwq5aoVB6p09;k|Ox7KOhQ`+1Z)hSq)DSO9O#`AgHi2vs>CqKzOx<)n{R0 zApz4q@oNNwoo#v>!Oqemg0BcT-+flMxHD(YIdf(o-di5tTYmg`d0D|}rlQG&$+2jL z!cEnS>S)-%*?;)Xy1!WbWV)M=WN1!9x@1hzAxd=^(>#2+`*wF?(u)eDM3bl|X`M-u zy494NWPkhgjl(BT{JN}tCRDaEKqs-6UO-#wUR(@i@Ue1lPhPA(C{MAGt<9JVEtgEv zM;DkCZETP~JoWdoPA;i)PfbfAwIZGC7_*L=sGIv%`Nz{|%PON~5Y(DxsK>5Zan#z1 z4$slBRo=h)`EG3xAXXBvb;@LdGIIgzVUx+c#QgNx-*>B|kz-2rG>DS5#xwjX!XpoY zaVh=mx$kysVFQGQKJ%m;zpz6K-lZa#{BM%KAYoFkjT>0iYSd;DoY|BWL3sSr{Br$# zIXQZql{k!{&>^$OH%u^52kIN-PcQA3HOLLJZW@~>Zl;i`J64?(-Yxw2T zL?+Zof>5sv!&B(1xoJ-u=DV-_7J^0?RIn+fpvj`iCHICnp%L5MDsR2^#coXmCFbW^ zA;)@Bo3U?aHg23ox-|Wn*Z~fK(Z{FXnJXsZ>awi}e zMM90>V2(`1u5_Dz*J;<3Z()1vzrBC7jG zZ~qyYjXO=Xij+d(MCVKqCV_Z0N{!4Olk@z|>mfvIpB{J(;%SJ?PJ^oG<9OR>aJYT? zD3aYwVkLNd8VJ$lc(F&01p?i1qxbcDx0W@bba##=XCrfMjpoR0s8pL_+E)4M`(N$W eUb6dWM_QRE!lpV~o3pg8jr1~L|9tTA)&BsYLv(cj delta 1277 zcmXYxKd4@_c8`H{b7@`{@4i=>GEK&&w-9Q!^JDZ8)Ye zc}}m=RIw+{2={g$zO(Mm7uy2YG7CW(8FgZ>v-U9>uzKz8`>!_NZnl$PU~8VTppXc7 z9tt2O8McbM+b3`CKYi-gWkrbrG{-2^5wUBZ;#2^#j#isrD0k!O^R-YNFzQG|j+Tp3 zQz^Z4$nl=F!^j_=`FmNNDT5F+?iGEMFj>vweZ!JwJu3fr_HxT>fISqOq2g2FnIliSSPeM~thKYRZ7%}S!NGi075u@3Y|2hcoB zx+9l^^7Mu8HfzQr#hTOvfQgVTlNovIJX@CI*X<=<*2sd!n8lk1k7ALTM83e81BTT7 z!Znphxv0U+{h)mJ)!&vCtWFdjBj1W(~yV zB#l5@fEp5jD4HK$DPuiyym8}B`0N*qbB{U@iWJt`sw&jdJ>1y-`?q#W%xgG?q*#)1 zR*s%SoLnJ?fZlX}C*9nv9cbi8B&ji`3R=2xv(Zz}J({{d%bzc6li-rs1uRZ8M`33Z zrJSsn+~C;okMYY(p{%1t8k8@tRjrfHz+)V3iVhzS@d`hTHkQOQnf*-ym<3!#0QbwNQqG|(h7K#FvZ;#Y|$v% z-#&S~taV(ZUxHI*bOjwFb)4}B6c6GQ58%Fe?^dildv!vXQM2eQ_9$`k0tqT-a6Tws id;jarIx5alX7m~mvj+~Q2pu>{1lo__{`ugO%l`qXN^ryg diff --git a/user_manual/locale/source/.doctrees/index.doctree b/user_manual/locale/source/.doctrees/index.doctree index abf150088c1c84b7b76d57f8d7132de233851b5b..1854e6cafd05ec0ca907df12f4200b50cbc41267 100644 GIT binary patch delta 197 zcmWO0y=?9owVWRUj Na`DWh^L_um{sU`lHdX)t delta 197 zcmWN}!3jb!3;k#WR3fRRZifAIo_ch^TR+QIjXkUc_?rET*bbOntuB+ZqhBXlpS8H%v3oxF#7i#I|=jr HoUVr-bc8tb diff --git a/user_manual/locale/source/.doctrees/session_management.doctree b/user_manual/locale/source/.doctrees/session_management.doctree index 0ccc7860b213268fa4a3bd173d4ca84751c53f8c..df6ade8b19e2297e7abde8ce2f5a6766caa486e8 100644 GIT binary patch delta 641 zcmX|f8H&Lsg{vUd&$IA8MsM9_Pe@!;kg{Zy(Uam(-fs4v?v_?vWeVfW zPSVF;xfVB}E=oOZ?e?QkiN#wduf0>{E~HZ81guQYrLO14%X;zfU|sLrENl~tSuR>T zIiP69Fa^Pj77W|<-FLf%*bpZb`s*kmDArO3U~RJ_R@=@F#%>w2L5g7}fHaVs^_E>& zI#kMz>-mF|_1EFo1+f($873nT5jW7*`>e?ULOuTz9^L=FL<|%@a#HEUngt6_7#6hQ z57PGH=y3lOk`>dWi7J_Ln-M|xw zcmh3u;8p^Tx^0U3Raaf_u6H+|mr$T~N!fDdM4q%pGEGsk$6}gDVBV#EL)uSua#HGmCb_c$MDajDiytz{bsbgSw^w>Fe zEED|bbp3Vs^-PjTCQhKmC_>dn16!tPUL9L{+{+!}k2KFXNv zoV#r=jt=+FxFobXG8ZR`rO~wf-;p?$HpxGOxJgVA9Jv#fsz5q(BuCR|?tgpPE{{L$ zg_;K=d#N!sLd}iAa*c{)$feVEaq{|3fM_*SX=>G}ajM>V7U+4_hOyD~d$s*|@_q@P ya_vc}5hR*x6r}m45F2nCShuUEFZTkn4dDS=g{g@&obVE5PF}4!Z{MDOIs5~qleVS+ diff --git a/user_manual/locale/source/.doctrees/talk/advanced_features.doctree b/user_manual/locale/source/.doctrees/talk/advanced_features.doctree index fc8b812c17c210da056ce04905a3abd3d7b5a6b5..0979b6875b12f25198e25b619a05b9e19231032d 100644 GIT binary patch delta 2866 zcmX|@U8tT%5yyGo6WiKg+7uI{k(}o!fu^Q$c6at;3dRo#l^|Y-R#HF0&dzRHO6doQ zVnA!qs=-o}Hxj`@6~XF7Mf&ujjcC14@S-9pg2fAIKmBaR+FRp*^-PM${q!C(Y70+2!0%y+Ma?cbvwE5?&t<{c%k!!G$m>g?x(xt{) zb5Ni0vt8OeQVwr!+h=4sn?|XDM(EMI#zVSV9nx}j zHA^J*n`dtN%@i`FM8X!dv9M_2)}o1bBBjZKi(^lvkK$_BeC>_DxTB}0K~jt4g!^!%YKbYyAY{`x zT{@@t(a{T+K7Hx7`(C&C`+<*c{(RuMsZ!tYFl+)eew@$2UcZ+*jh+m8|1msIj#bW&VZ@{UkJ7ke1&QOUU`<+SKIMx*K#hoI&>|M>PR5GmEra`8I2 zFbM7bG6WLXKB)S@wkg=Buyssm2?^&X_~SY^uoiiluJpW1a4*E zz4+5^JMJw%nNZA7w1rxm=eQ_^LS;BPvOt7szEd7wO&am+R#Sl3IK%5Sc(CDLt-Dah z{QEn z9rM+9{sk!rr)E%3slt9VltqdMe56^*@WcLgY(Dg!ed`GsNojeE6v4fO@S#MaSg2YA z1b0uKyXz51D&YUld7mD-a|=97P2O(;*}!UZBRhIcEZWFBYGvVB%AK7Rbt8-4ZS?i^PcX><4s&V&UvR6ee#l_F5aldUY~J5)Tu<>Uj~Tpu5*saIi?=wmmfH=1%>scypRi!ia}GIE0VIep|!^@^Xj1oRuk}( zjcBA^gbDrYCD&fz3Gli64<1Y4=O6wXe3};7vtsuk9wZf?0>3=^5{!BN>7#E0w$Nh2 z+^vdEchQLSC`64^ z7~T|MkUF9-v!T*8i9Pwr^J~ZK3u^ z0A!3WWn}C)9ep%!aKp@>`vz>l78m+sEl7-X%kUBVmPdIKk0JAGpMQEa!RF0*q#e;> zbXUEPND8WzHe!>__rLIm9m4oA=|H}7JOC(3MPf$&KIRtyk+ydC-%5E=)q^0yy< r64e9lbH>Dg`hhuQ!D)baeOZar%Vzb^4zAt1dF-nP=Rbbsw|oB!?E5)* delta 2864 zcmYM0Tc}-E6^7Y6v8@fJ7i^G5a@MIt+M3pR8S^p<)(eG75g)`0sh2Rum~*D3lwL>_ z16qSt4VI#;NCXR21gj4f>FR@xXnj!dp&}@P#Rq9X1VyV4q7Q=p>qPKyI2-m^YtA{w z`2X*pFTSvS@rCX8zq6UdXJWEe%U}w7x^BlXC9^}Yuu>l$5ahR;GGRI~Kavm`0fMziI@zNhz3Hd?5?wk$c45Z5l< zjaIp~*8A|w2d~<eDIOcEVSui2SO zr$pRje&(9rOsR6~(t>a7s5d8^V~ZL^jd7~5Jaz4b%|yv3*Ew-0nbKe}rCK9*u7sMx z{Or-)<<#|??KDPJ&YFvrMj<;+Au>}QoJVst&0l@}FK&xXl_*vo9*wA^gp)}o>>z6+ z&!5)&+%0F%f9m|r_q}HR`wbtN|9r!9Q*Tv9Ea*gG^3iFJTu10B8cOIo|LD*^rzoY? z5`ASM$}~i@By`d=g{uh(vRyX(|nq zLIs{Q3wPIjN#cr2RNdGs_0HR`T+Y7fb=#e)iVadAOJv!wYfP>5G?E2RWqJ1K%iF0G z?uMbno{h*#RScQikO84X63e%5{?}#-t;c~`a?gQMO+wQBfciQrVV{;C-+FN~jVhka zV`2q#HlkwC7I?|j^DK0c{_v^#91zd z%4*DCr5ZS~8)&+`*5d$3@jw9G?nC#*VAA09-T! zSg57t_ji1EyTc=5c;cW;SPXB#<|QU$9)($!XWsVeX5x_0GE?&yeV5Aci}pOSGW_0G zog7;(z5OqnoyG<`H;0xsswptJ97+|Sj2bb9aockET?e<5%gNOS45g^V;EP7iC3Lc$ zee`Rak1eO~dSpBK5Q^p2C>BFsamJ3Otilt+cX_$u?gN`6EywJV0E^MV9-i3}ely`D z=9ag<`zh#&iv;W%N^F!x6(fQv!vH2*i9BC(`si})J%5D=vQtgg08U#)Ttgfs;oA&m z`Mi$e*mBQ%e!ZDilfhnvG7kbO)g>!vVTV6P8MOE0{qOzZzG+y*3ai^nMJgn9!3Qn| zt0Z7O>^=GL`+kXvb6d@i*<+>+N#WJP%4=`|K#$9b57>6%;)DtkBS|7RB7j(6~CC@QhWYz@5aIidp@f2$!mytVn@={L_;9ltom4yE{z!S;X-MwAf(uQ14F z3XZJ>AH4U*&E#D5PMXhv0IU?Hw`7h2q{#5#N?NY7 zs{szzuwy|W6>x4Kdky2^7>y&uUH1w(*`J3|h^6)d9Mw!H5@s5(7PpL;690do+R1zN z?*I@CbU7?TD!HZxA0o%P`ADHGFFkMrWK)J8DI@t2g24~m0bJD>L&Mx1*s*!&fz6Zv z?M`@m_&}sXn^XZ=GF~f46C81OUP=D^!+*muNAZRsx7b&CgRCA12X8VO$|Ed4ee^Am zVRFfLBp$GblZqh56pbp#?2hXI+W51{%t=fGI)eZJG%Y27r5<)h^x&a&$kWGf!c;1> zRC{rnqlk9^8eKr&h4bKp2lfS zKp}SHLT0$|!FGbn+j8cMN6=@8s3?*uDq;?NAg^EyG!-2h(3T&ZyLG#Z+Zr}S+i=$+ z@CySW0SK{LL^hA}^Eb~-^ULS1pMUqnf#n@f9NkX2Bg4{w^wt56EF~klV+ScSrxd^S t_>9OvjT)MXc6*D1517axz h0YjNw=ld+{9#GBsPZ$U&D_0c`qfuOn>AY;8?FTS-EF=H` delta 158 zcmWm5yA8rH5CBjm2q`r^BH7^VJLl|i?&lfk7=tyC+_D8TWDlT!@7Rv*b)RmN$DQILKZxL@)uibFDyd9 zPOz{Oyn?0PK?Fm(Bs}xJPjcG$PcobURl_qv12GW+-)%#=`wC@c03}bhDrOqZ z8uxBUhi&_})f~O37^w;6niLqQqLV7AM4iu{{Mnr$dN$U?fh5{Qvxz3JB}ZbG!^P9T zo6vH!2I3ft#@HG+>BbPY+Pcn{&pxh#sa74n?kyRk7UjBr#(MQyofYcg>h%0@bAB>k IoL}7e4^J7q)&Kwi delta 654 zcmWlXy^7UA48^%CE}|@gA}ki}UleXTGx?aA!fxNd2asfvlQKe7=G@u>LTlXBN)4X(?!P(OM#;VPwSBq4UQB5ulvYXvFFc!{AADS0-3N4_H9ZiF zw0j=pPD83hEZU^2(-p(RSdd`T(qd)J1#z6zUO`3=brQX`&@Wo zd*Oxcb3fZGSzED~ljEFNix(Tw#o$5^XWGO1^5(ybl9`CBG90nCD%Nt0p=Qmgx02`I zw)bq7mW@ z%&Xt|%R>j|q*`{pjNG|%E-|u2*2qCPQMz*Ldh}iYTQpn4kv=6ej%}1AnADW3Ai!u#_GehI7+rkZGEO5%zNMW zpUpzPTN>RWW@eFEdP)KJmQ&hVS3E$giKrG!MaOLW*KC(8 zC5rFPTIh^lXeJydg+dx3I-Wm1II&%P3RMCYC^2y=Bs;Ko1__%W8sq22Xxv>KL z5Q6f+pF$1j6@NO!0hQytPKH zi?o0PsKxd2saN)k!zL*LROeJcp4VXwBBl&uT$Mbak-U4ETS|%Xa zcrcFX9kxkvcvbd!{x%)iE~Sk`r2)m_xsho0lz>`j(sGJ@eO=yKTI@lg!B8nMbXVZP z1fHuG9olrhr7y#D3K>HII%;Ll*eYNV_=UMy={)~(^Wn_`Glx8QXoaR5ps)fkHA;}^ z)!h2@lLzbZuO3-nyye(TxBO_c;Cgbn5sE2nIFl)ON95u1ZjR=gr;lzH3%JBiT7@%Q z>P3vH_eK@M>%Oel-1^7G(=fFrkQQL6$$(iO&_s=(qV{?0%!6ClE+$xWl-<-IRPvzQ z-7v#}t(W=i$4_q;i%A1JpIU1i12kw^jYiBZ6g8ViKJglS(o!>Zi83qiq*XxHz(S<3 zpYYtf?FkIO<`kQgXUj25PZHb!A6@3%pZWD>!TqI3Qb(mg`CdDNt3ja!)kt-{eEwj5 z`i@t3smvoY#0+jQNz+^uLuO}^HENijJo{nf8R2V0TtTiN{irx?Qnc;V03-GF&C~B) ze|qP?7acA-4c#$}=39Y{oCQ-gxm<=+J^wVG7e?HUJ@i_2*}dRUs3s8 zpZnn!X5`{(5~BnQ12w_ZD}p)=6FguZ|HARj2f}E8*fAoNM9H9odP5QfR8n+(o;mmGX20(slQ^g(v_?ZbbLu%`stm;Qy!oC#Z5J3F zO`(uXuZ#+lS`m@4deWLl4D%*Ci=a&k6T|Fy0tDn?4CH;6ygRT}o6poo_x2gSOu3=A zBII33#gTLIO~^>Zx?oGvcxe#CTzeDnnvAKKn)f3J}=yV40vS@glQ-T zWCBcw|AdgIBLEq0^Tn^c=g<-x@(T{L9Tu)6xKIvwXa`B~1t2V6- z)&;ew4>#g?{+o9lUf?6L+$j|Z2)eO~2n=u-E~+J(4}AM6*v|S$*%x#=VhwA0Xf7Hw zf(}I>&TAjK1j+@zb19}VJR{qX4J5nGBLu?Z?JWB9!zbqFAN~cL0AhTLC?zPV43d$X zHFTv|$IsqgQ*>-$gPU7%9eU0-0E-MawbgIqf5*36+R=hILAWV^(KC_vm2cDXW_ T_n~7IG#P3%`g!gL^XUHpkS)=v delta 2506 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 Ugz_jBN+^a`vaY^3|MlK~01Y)Og8%>k diff --git a/user_manual/locale/source/.doctrees/user_2fa.doctree b/user_manual/locale/source/.doctrees/user_2fa.doctree index 12eac0fa1286442ed987ec6171862ab4034af485..d17616937e21c45cb26f01d4d0d1e951f0f93eaf 100644 GIT binary patch delta 1299 zcmX|Bzl&c*5a*p5qEW#V9!khNs^G^^2!TFvjuX#N7&3u0DqX)~Q2g|qLEWu1-QzT1iU^kUU zwaz{>p>SkaA1~)l1&Np=Sjxx)1z1OmQCK-~O+{rrefrOxkjEs=kP0H znzXptJM%**-JI>^B>tDrEUAL@Y zmNu&(JN}`qBw@p1+8}O@cdxGT)lZx)+MFFDbyCFMIQto@P^f6BR@Yz7^(FXP>{SzJ zVt3!Ew24~Sy`80lt?!)wawiN21%Pov^*1RBwGUF|VeG%*x?DKB1aPhL&{|X*&RIB@ zgf5Lv>>Ula*ft+r{5oJ6jvdt%nLgN!n3ShkoHe%D^9kFVmwpW$$m!NmtqCe*ox=(g zaANMQ(h1uSFP~aMG^i%f!L35g%&`qB9z%{fL(S{w`*&Ouc29j&c6_dDloUNiz58dY z7@N-v>*1Bpmg`Bfxe#eI4|^t+-mS)p*m%^O^yp)~4Oj0TeR_1|_A{Gy@X_Yh!ExZI zEfyH5PES}(T0IoW{p0BzyRL6udv6KJlT)%b&z~UV?zRo5?uBvgW_5Ef@2^i@ySNjy z`##{N!|}RxZRU|Q2~1T~vMt`tv+4Qu#_PK~!9^Tm-N?1~IBX+5d&*TaxjZudKm9O1 zUV@Mpq`6rYCen1m%IK8&$L0_Ze>pm;!F$!tdv>Aw^`hJ`Y(b@#d9); zPlauvJ##Wds0^oWrK+k?{qOX5a>K6)_D;wji-Z0j&mfg zqj`K8TWVsCv*lvmMqBS59{TOY;u-d!MNesNl~eOWB}#AZ2afgkx9&S*+wSm9_lF>?=c@C4tN_jhe{I9)rv{uA@w3;S2Cmj@MSg3Up zpJR9S#7}FgsaPGe(j1IAe#xb&8~B)3QMZ3ie6^fy-kW2rrp}_;sdxplB!wqc+}(fS z@3kkNhLtVX%+_a5iAIjYFqsx;y9cMPY=6G^-rg!{s?AXWDKodCLk847L0jzCZ2RD) zo6CwyrFH9w5{i&%ChFGEpz5?_+vAfzKDFuuV->DY2djI-JYX`RhHz%ETh5)?{qpkf zYc(7>C$Ct9$84Gll_?q64mD`ogHxB5wF4B&G2v>QY7ffQ`EW5B)pZ=fU3}%|wK8Q@ zR34*o(bRnG1`#pl$y zW)DlHbRT&HXqd9Sd*6PQyTFmFdQwYu8$eWsWGhDdYC#rBCl}FN zwtxAH<@Get2fJ6XU@WejAlGP#m?Ggk_(X5PmD>lOA6&lm%&uSkcz5&agO!qiMImO@ z%B)pg!}sj5YxKZ*d+XZ!%bIHn-q5V{Ul4fiC32Gc%-%+HdBo9B z1;u=zW+#j4+W*r($n_xS#mw+ftHOfRRXL&vkfL~k{hR*g(`(BC)M(6ZmBqMMjBxeP zBt;1_Y`6FKBgHdu&jm8pC`h<4XK59Hpm>-I+aGV=T~^Mm&cNrM;{HfE?yvzAGFekC LWo&nE;B)^1?Y?x8 diff --git a/user_manual/locale/source/.doctrees/userpreferences.doctree b/user_manual/locale/source/.doctrees/userpreferences.doctree index 9e713be48ce8f3ef02ef4b35c1b8c128e48c7924..3fbb4f69e0f33ce7c1f1172208f01734e4d783d7 100644 GIT binary patch delta 1717 zcmYLKJy|g0`30nKNh3Irsd#oAd8(KD@G-lygriJ-ObQ zs?(vVWGA(8cg3ao+UC1SsXHR^F?VGdY7&Ulxj;FloMirZdu8&fAvmkP#=$iO6{A#w zNz2(v>&r`fAKUIUQzoBA35_K-YgDy*KSC7qLd#FrJ-eB>s`sTyBnwQ9N_5V}pz4d) z6zY88;Nkfk?OR^CzHRSS^VC~R!+U1sglfxSwCXu40KWdB&F;wqv%B%nNfPI%t*iCM zgGy27ySC7rw;tR7ou9wy?d{ZJXdcbAOJFb6v_*^6d|&}CS#d09_J6sVz}+D7C9K4? z8Z&n(J&q{eJoh&1&0kFvZGb;lQW&fw+X%Ujq`iB^mxgx7=BIA?WJds;vm+UV#@#Hb zQ->$Sj7Rf@(?{l?5A9o?zV+_yB$nMMHmZcqWoSu&(ka$Pf-Wn_WAjJ1U7oUxQnT^e zhzG7~oUsW7F6MgR-NK8ve>RnxTn-7056>06$4s>{1TlJb7IzEZxa0kaEsOUxkpmyi zH*=I7mdmYF)wo-@%y)jinWBinb$Rwq|!^~R-`gEOO%%j2e+G@K)_SDtViLYs;PSi zsCmQ$Db24Qd~p8Zo-Zb+2}G!llF&e)Ak#VkqJ@>JRT#(S-wypac~}8vp`4uIHn}wL zWXbo24&>Z!;r{8HDGnL}=&5>0O}l#R0{()7{Cu_D!lQ?;;((G+Xnu646LTqM2ejGX z#?k(j#r;R#p9ZW1;iiTy*$CH^7|FX#>Jz6p|8eA}iAMu^G733!O11P=AXO}}cOZNn zyWDl($-UD6tQNUY9gsv~P#01hutF8UT>&1R&+OkfzxBZPJCcFYQ(2{LPD)lEq#!Y1 zZBbb+9sOnRWF^N~Gdt~$i_5Cbpyfiivv)R@%MV@MOf)RCT!ycMq34isVcajILK5KR z>qpBlgdO_TzRmD}i6-*b7pdGeY(JklbTPVgMbDHBmAkwVCFt0fcZFpf&u)N@J z+fE^572I9C5=t$zHpHD#A;eylgF@> z=FSP*NyA*O4f_YO<;@fCZFa^GIJB%eIM`5xpg~-w&M-;L{{_Npk6y&w0P2xfDZ@5h zQ0zi4EhTEfvF%EEIeXH!M-lu*{lG7P(Kf}>sy0S3gm2ar$@v`Z-Lq%@;MAMTrBiLQ z<@LI3ILYd8D@OZD-y delta 1703 zcmX9<%j;ED6!u<;EI}-+5FfvzMcIQ`d#|-0tB^3Hau7Ldy!MNTCIt;6|AIIcu-S_qykp$x%zpc5L#`y_)<(_O2##3&Y`(ln|YnTSYMsG^(Mxlip%0TEBjQ`v{Inf zn=Nnces;YxTr~D1j#V^_qC>M4JT28XEz7MtURfRW=6h?LDEcJYsb~+urBOXG(|l_0 zlR<>gDXd?^cuemR-RQCllRf9BbA=ed!#7ydxsyJKRa-F;_8I@$f2|@G(33o z$vMU(>eSqJ^u_zWo=VKgd2*w7C#h9S)uX@w>8QrCE&SmA8xy82+a2czzFDCqGoY)AON2W#69_28+@L2sf4BqxG6% z%Ki56cMknAk=7A{4IMzTH0V%#wGdOy8j|Pb{NeR#>LJS*-S>{cXsr|_B}v?QKm&ez z%dbbi-DxJJa5YG4fM+Ws5Ah|c4TCu5^Jk9Fza9N^l0qG{C#HmkUW{0wJvhXt+Vj{p z+&BF=)!<8I@>aEqBuq9zvx@Q6ppk9iiDREnH3l@wSzU6{2&cwaoW?eK#Ui&?eE9f{ zDW@<-Zj>c#cnKClcMLo$L&kl~e;>cK<5DlNg+hMdWZ)M%eB1{02I11?j%EKtXLe65 z3#3Gu;Ab4wv_q?@^-LmF{YDPQ=Ck|u%pX4T%MO?*1Fe%d8S0Bq#Dkl12_t5=Tsral z?g=n)>|>}El?bED@Ij4nNOz9ha`}nRS5woLV-}!CLz)F`&b!fa+pq(zFK;~g19%&K zaAN1J1Q7_vhpYlFLJYC%2EAj;+w>E13wi=DcweG8hbz(`$I-)8wG6+!?hmXdpbwXK zMx&0Ys<3^lY-yxT_}Fq)o?1_a&+t0J2q1(IH)h9BW>kQZwEP$UT~8&X5xSsBH*pD$ zq*yV|VmCM>E{C3a8Imv9g4owlS)vBpQl&~{xU1yl!qb1Pc3{6+D}o4@3Kaxj=`f=oXN3EeA&pp(JDZ_<1mFo{&^%S(rf~ Yms$}rK2~!rq`r~;?HK;*%+0(02cC5D=>Px# diff --git a/user_manual/locale/source/.doctrees/webinterface.doctree b/user_manual/locale/source/.doctrees/webinterface.doctree index 0ba72108094f67205445d7f4ab4b625770c9121e..e7f6d55d4e8f61b83786807806044b4d02524f85 100644 GIT binary patch delta 1632 zcmXX`JIkC!6lT9K9~#jng@i=iH>tcNIG1x~<|rblQDaDy_zTX=nfVEp=>&yzTZmv` zP*D-l@ETKyCrRlB{SZ zt5#j&K1vmQBr4xvKuvb%dzA{$}tc3(HHxxbxtNBR^PMh6nm~Y z7qb$AuhLxDTs?YX^XH*!lZhWO>d2Xyk}ulQ;9Pu+UaMD~e>`}5HLrn$3CD_mN=T!6+gzbj^RGuP?N7cKag5Y(4z&!x1f#`Vam%qS?%Moy;mP^ElNS%B)PT7~p_~Uvucd)MiY&IU zpKPmMc>LSFwUq2*ZXvODAW}(VND2^Kli1F$AD%fp`=>tMpN97V6xOaakWW(55}NE< zkpw(#yY{iC|K6KStBbLuK$6M3E&#e1#|>~e$Yvkj*qh*X=Sp_bJ0>@HaRxcfwMh*@ zY`#L5_omt`CT+~!GfdlRv>F|hOx=y7w0-rhe0Cq=NhwZx95oT9#lVXdIFhQhu(RU* z&*r@;GN?m7;-F5}N2L}cLX}NRuI_)+K6m@j1P)7~4n`vg!jD5+4bY53h1na_xit+9 z2v%aGiOD0g1X3jxw%)ncyg=N1`QlGg9>B=(T?mPmYdBZMliF)d0I?nX?xjyA_8sAq zkYPu1Ico_iF;~MgT4}4`=JPYZO%2Mqo+_AyZFp4Ox*3E9ghqEy-+1|#b%AU!m^9P{ zx}-~RMZljimkO6H%><=4H($9jp(8vcD2>AjX-9uSP3^v0PpRt`<`1u4o0i@PGDLgv zs0la%CWlBx)iLhjo6{aoX2&8E0c^mwi^%5e>K4j4TeUR0tS$Vj&pr> zED5zWb`1S{{w7j`rU5f#Xjv;xMQm%IUadzLmyPrB*N?(zaR`c9c=Q1K_*%LJlr6Wu MREx}SUi{$jf0jtwJ^%m! delta 1628 zcmX9;Kg--j5a!-DK_l9vkdUbFFIGkq+?k!(nN>tkqsEXZ@e}Oq&VB^TbV7u5SBPL? zP*D-laM2VZ3PI3HL{gP~PM)CyWLvx`*Y^IV-)8tsmGjD!6`0i?%OfoH}G=!-*+c3A(M;+a& zXx{h(7gtM5l4kemgf+l;!%<0Eo$ly5W;}XgbMnxOtA)!za8Er~C2d6~$edUUGLM#Y zJ9+J)v|2F!$drb4lE6S3za?hH5>$|~ojmpM;nm`TwI_u_xzfmPiYjBokd>ecwv(40 zxp!c}QiK39#H%C*wKM11m8Nt`-PTv=0QA22eJ~dUR^?NVvZD{Z4?lMBG zjE23{5U0nrB?uLl>a~gZmh1PQyl`+~>5%Hojiz+0;CXc0N>gPK|-f%W8HR3D*!fHb|!Oa!Ayt5b4nQR0O1u12( zInbum7;C(VTX^rtncbynyikoX3`lLJ)@g<}QGgXjZ(Dc|J}&{UWf-Ad(@;PoQN??n zWok|nQohg4r5A1=SW=tJ&8y-7idAt_E(tqBrLd=kGPm|9gi8@qjI;&AqN$^nQW_fy z%Ra*OS1=^ z+rgW!U0GoE2%gt)aUzsqIfCjfT4cXmc)!0+tbcs{+r`7tW#s*vqcpWN2S{e4n1I0C zHp%*jGoOWit}wmS=qQ3Honh*^j3GJzW&QX0VCRiL7fLgg7Uql`1uq_1wn#;yjLE|! z+m~;hy}j4DMhRFdnG0bwr*f-Nik91Gk-e)&j;}vDeQ15~+}BIv*~26)aS98~9>3#Y z?@{(6H@kn%f9Gy4+%a^euvpw3(W@0AYtc51B0YY;7>~VqBqHdbAz-Ky)yNSq!7*7e PLR)Hc-@JX{!$bcAymZ!9 diff --git a/user_manual/locale/source/groupware/mail.pot b/user_manual/locale/source/groupware/mail.pot index 44fe01176..997b76be2 100644 --- a/user_manual/locale/source/groupware/mail.pot +++ b/user_manual/locale/source/groupware/mail.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Nextcloud latest User Manual latest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-06-13 10:52+0000\n" +"POT-Creation-Date: 2025-06-13 11:48+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -33,7 +33,8 @@ msgid "Switch layout" msgstr "" #: ../../groupware/mail.rst:18 -#: ../../groupware/mail.rst:37 +#: ../../groupware/mail.rst:34 +#: ../../groupware/mail.rst:53 msgid "Visit mail settings" msgstr "" @@ -42,734 +43,754 @@ msgid "Choose between *List*, *Vertical split* and *Horizontal split*" msgstr "" #: ../../groupware/mail.rst:24 -msgid "Add a new mail account" -msgstr "" - -#: ../../groupware/mail.rst:26 -msgid "Enable mail app from the apps" -msgstr "" - -#: ../../groupware/mail.rst:27 -msgid "Click the mail icon on the header" +msgid "Message Display / Operation Mode" msgstr "" #: ../../groupware/mail.rst:28 +msgid "Mail has the ability to switch between two different message view and operation modes: *Threaded* and *Singleton*." +msgstr "" + +#: ../../groupware/mail.rst:30 +msgid "In *Threaded* mode, messages are grouped by conversation. In the mailbox message list, related messages are stacked so only the most recent message is shown, and all relates messages are shown in message display panel after the stacked message is selected. This is useful for following discussions and understanding the context of replies. In this mode, message operation like move and delete apply to the entire thread, meaning that when you move or delete a thread, all messages within that thread are affected." +msgstr "" + +#: ../../groupware/mail.rst:32 +msgid "In *Singleton* mode, messages are displayed individually, in both the mailbox message list and message display panel and operation like move and delete apply to only the selected message. This mode is useful when you want to manage messages separately without affecting the entire conversation." +msgstr "" + +#: ../../groupware/mail.rst:35 +msgid "Choose between *Threaded*, *Singleton*" +msgstr "" + +#: ../../groupware/mail.rst:40 +msgid "Add a new mail account" +msgstr "" + +#: ../../groupware/mail.rst:42 +msgid "Enable mail app from the apps" +msgstr "" + +#: ../../groupware/mail.rst:43 +msgid "Click the mail icon on the header" +msgstr "" + +#: ../../groupware/mail.rst:44 msgid "Fill up the login form (auto or manual)" msgstr "" -#: ../../groupware/mail.rst:33 +#: ../../groupware/mail.rst:49 msgid "Change sort order" msgstr "" -#: ../../groupware/mail.rst:38 +#: ../../groupware/mail.rst:54 msgid "Go to *Sorting*" msgstr "" -#: ../../groupware/mail.rst:39 +#: ../../groupware/mail.rst:55 msgid "You can choose *Oldest* or *Newest* mail first" msgstr "" -#: ../../groupware/mail.rst:41 +#: ../../groupware/mail.rst:57 msgid "This change will apply across all your accounts and mailboxes" msgstr "" -#: ../../groupware/mail.rst:46 +#: ../../groupware/mail.rst:62 msgid "Scheduled messages" msgstr "" -#: ../../groupware/mail.rst:47 +#: ../../groupware/mail.rst:63 msgid "Click new message button on top left of your screen" msgstr "" -#: ../../groupware/mail.rst:48 +#: ../../groupware/mail.rst:64 msgid "Click the (...) action menu on the modal composer" msgstr "" -#: ../../groupware/mail.rst:49 +#: ../../groupware/mail.rst:65 msgid "Click *send later*" msgstr "" -#: ../../groupware/mail.rst:54 +#: ../../groupware/mail.rst:70 msgid "Priority inbox" msgstr "" -#: ../../groupware/mail.rst:55 +#: ../../groupware/mail.rst:71 msgid "Priority inbox has 2 section *Important* and *Others*. Messages will automatically be marked as important based on which messages you interacted with or marked as important. In the beginning you might have to manually change the importance to teach the system, but it will improve over time." msgstr "" -#: ../../groupware/mail.rst:61 +#: ../../groupware/mail.rst:77 msgid "All inboxes" msgstr "" -#: ../../groupware/mail.rst:62 +#: ../../groupware/mail.rst:78 msgid "All messages from all the accounts you have logged in, will be shown here chronologically." msgstr "" -#: ../../groupware/mail.rst:67 +#: ../../groupware/mail.rst:83 msgid "Account settings" msgstr "" -#: ../../groupware/mail.rst:68 +#: ../../groupware/mail.rst:84 msgid "Your account settings such as:" msgstr "" -#: ../../groupware/mail.rst:70 +#: ../../groupware/mail.rst:86 msgid "Aliases" msgstr "" -#: ../../groupware/mail.rst:71 +#: ../../groupware/mail.rst:87 msgid "Signature" msgstr "" -#: ../../groupware/mail.rst:72 +#: ../../groupware/mail.rst:88 msgid "Default Folders" msgstr "" -#: ../../groupware/mail.rst:73 +#: ../../groupware/mail.rst:89 msgid "Autoresponder" msgstr "" -#: ../../groupware/mail.rst:74 +#: ../../groupware/mail.rst:90 msgid "Trusted senders" msgstr "" -#: ../../groupware/mail.rst:75 +#: ../../groupware/mail.rst:91 msgid "..and more" msgstr "" -#: ../../groupware/mail.rst:77 +#: ../../groupware/mail.rst:93 msgid "Can be found in the action menu of a mail account. There you can edit, add or remove settings depending on your need." msgstr "" -#: ../../groupware/mail.rst:80 +#: ../../groupware/mail.rst:96 msgid "Move messages to Junk folder" msgstr "" -#: ../../groupware/mail.rst:84 +#: ../../groupware/mail.rst:100 msgid "Mail can move a message to a different folder when it is marked as junk." msgstr "" -#: ../../groupware/mail.rst:86 -#: ../../groupware/mail.rst:118 -#: ../../groupware/mail.rst:145 +#: ../../groupware/mail.rst:102 +#: ../../groupware/mail.rst:134 +#: ../../groupware/mail.rst:161 msgid "Visit Account settings" msgstr "" -#: ../../groupware/mail.rst:87 +#: ../../groupware/mail.rst:103 msgid "Go to Default folders" msgstr "" -#: ../../groupware/mail.rst:88 +#: ../../groupware/mail.rst:104 msgid "Check that a folder is selected for the junk messages" msgstr "" -#: ../../groupware/mail.rst:89 +#: ../../groupware/mail.rst:105 msgid "Go to Junk settings" msgstr "" -#: ../../groupware/mail.rst:90 +#: ../../groupware/mail.rst:106 msgid "Click Move messages to Junk folder" msgstr "" -#: ../../groupware/mail.rst:95 +#: ../../groupware/mail.rst:111 msgid "Search in mailbox" msgstr "" -#: ../../groupware/mail.rst:99 +#: ../../groupware/mail.rst:115 msgid "At the top of the envelope list in any mail layout, there is a search field shortcut for searching email subjects. Starting from ``version 3.7``, this shortcut allows you to search by subject, recipient (to), or sender (from) by default." msgstr "" -#: ../../groupware/mail.rst:103 +#: ../../groupware/mail.rst:119 msgid "Advanced search in mailbox" msgstr "" -#: ../../groupware/mail.rst:107 +#: ../../groupware/mail.rst:123 msgid "You can access our advanced search feature through a modal located at the end of the search shortcut." msgstr "" -#: ../../groupware/mail.rst:110 -#: ../../groupware/mail.rst:120 +#: ../../groupware/mail.rst:126 +#: ../../groupware/mail.rst:136 msgid "Enable mail body search" msgstr "" -#: ../../groupware/mail.rst:114 +#: ../../groupware/mail.rst:130 msgid "Mail bodies can now be searched, this feature is opt-in because of potential performance issues." msgstr "" -#: ../../groupware/mail.rst:116 +#: ../../groupware/mail.rst:132 msgid "To enable it:" msgstr "" -#: ../../groupware/mail.rst:119 +#: ../../groupware/mail.rst:135 msgid "Go to Mailbox search" msgstr "" -#: ../../groupware/mail.rst:122 +#: ../../groupware/mail.rst:138 msgid "If you want to also enable it for unified mailboxes you have to do so in Mail settings" msgstr "" -#: ../../groupware/mail.rst:124 +#: ../../groupware/mail.rst:140 msgid "By enabling it the main search box will now search in both subjects and mail bodies, and a separate *Body* option will appear in advanced search." msgstr "" -#: ../../groupware/mail.rst:128 +#: ../../groupware/mail.rst:144 msgid "Account delegation" msgstr "" -#: ../../groupware/mail.rst:130 +#: ../../groupware/mail.rst:146 msgid "The app allows account delegation so that one user can send emails from the address of another." msgstr "" -#: ../../groupware/mail.rst:132 +#: ../../groupware/mail.rst:148 msgid "The delegation has to be configured on the mail server by an admin" msgstr "" -#: ../../groupware/mail.rst:133 +#: ../../groupware/mail.rst:149 msgid "Add the other email address as an alias for your own email account" msgstr "" -#: ../../groupware/mail.rst:134 +#: ../../groupware/mail.rst:150 msgid "When sending an email, select the alias as sender" msgstr "" -#: ../../groupware/mail.rst:136 +#: ../../groupware/mail.rst:152 msgid "The sent email might not be visible to the original account if it's stored in your personal *Sent* mailbox." msgstr "" -#: ../../groupware/mail.rst:139 +#: ../../groupware/mail.rst:155 msgid "Automatic trash deletion" msgstr "" -#: ../../groupware/mail.rst:143 +#: ../../groupware/mail.rst:159 msgid "The Mail app can automatically delete messages in the trash folder after a certain number of days." msgstr "" -#: ../../groupware/mail.rst:146 +#: ../../groupware/mail.rst:162 msgid "Go to Automatic trash deletion" msgstr "" -#: ../../groupware/mail.rst:147 +#: ../../groupware/mail.rst:163 msgid "Enter the number of days after which messages should be deleted" msgstr "" -#: ../../groupware/mail.rst:149 +#: ../../groupware/mail.rst:165 msgid "Disable trash retention by leaving the field empty or setting it to 0." msgstr "" -#: ../../groupware/mail.rst:151 +#: ../../groupware/mail.rst:167 msgid "Only mails deleted after enabling trash retention will be processed." msgstr "" -#: ../../groupware/mail.rst:156 +#: ../../groupware/mail.rst:172 msgid "Compose messages" msgstr "" -#: ../../groupware/mail.rst:158 +#: ../../groupware/mail.rst:174 msgid "Click new message on the top left of your screen" msgstr "" -#: ../../groupware/mail.rst:159 +#: ../../groupware/mail.rst:175 msgid "Start writing your message" msgstr "" -#: ../../groupware/mail.rst:163 +#: ../../groupware/mail.rst:179 msgid "Recipient info on composer" msgstr "" -#: ../../groupware/mail.rst:167 +#: ../../groupware/mail.rst:183 msgid "When you add your first recipient or contact in the \"To\" field, a right pane will appear displaying the saved profile details of that contact. Adding a second contact will collapse the list, allowing you to select and expand any contact you added to view their details. If you prefer to focus solely on writing in the composer, you can hide the right pane by clicking the expand icon in the top-right corner. To show the right pane again, simply click the minimize icon in the same location." msgstr "" -#: ../../groupware/mail.rst:173 +#: ../../groupware/mail.rst:189 msgid "Mention contacts" msgstr "" -#: ../../groupware/mail.rst:177 +#: ../../groupware/mail.rst:193 msgid "You can mention contacts in your message by typing ``@`` and then selecting the contact from the list. By doing so the contact will be automatically added as a recipient." msgstr "" -#: ../../groupware/mail.rst:180 +#: ../../groupware/mail.rst:196 msgid "Only contacts with a valid email address will be suggested." msgstr "" -#: ../../groupware/mail.rst:183 +#: ../../groupware/mail.rst:199 msgid "Minimize the composer modal" msgstr "" -#: ../../groupware/mail.rst:187 +#: ../../groupware/mail.rst:203 msgid "The composer modal can be minimized while writing a new message, editing an existing draft or editing a message from the outbox. Simply click the minimize button on the top right of the modal or click anywhere outside the modal." msgstr "" -#: ../../groupware/mail.rst:191 +#: ../../groupware/mail.rst:207 msgid "You can resume your minimized message by clicking anywhere on the indicator on the bottom right of your screen." msgstr "" -#: ../../groupware/mail.rst:195 +#: ../../groupware/mail.rst:211 msgid "Press the close button on the modal or the indicator in the bottom right corner to stop editing a message. A draft will be saved automatically into your draft mailbox." msgstr "" -#: ../../groupware/mail.rst:198 +#: ../../groupware/mail.rst:214 msgid "Outbox" msgstr "" -#: ../../groupware/mail.rst:200 +#: ../../groupware/mail.rst:216 msgid "When a message has been composed and the \"Send\" button was clicked, the message is added to the outbox which can be found in the bottom left corner of the left sidebar." msgstr "" -#: ../../groupware/mail.rst:202 +#: ../../groupware/mail.rst:218 msgid "You can also set the date and time for the send operation to a point in the future (see :ref:`Scheduled messages `)- the message will be kept in the outbox until your chosen date and time arrives, then it will be sent automatically." msgstr "" -#: ../../groupware/mail.rst:204 +#: ../../groupware/mail.rst:220 msgid "The outbox is only visible when there is a message waiting to be handled by the outbox." msgstr "" -#: ../../groupware/mail.rst:206 +#: ../../groupware/mail.rst:222 msgid "You can re- open the composer for a message in the outbox any time before the \"send\"- operation is triggered." msgstr "" -#: ../../groupware/mail.rst:209 +#: ../../groupware/mail.rst:225 msgid "When an error occurs during sending, three error messages are possible:" msgstr "" -#: ../../groupware/mail.rst:211 +#: ../../groupware/mail.rst:227 msgid "Could not copy to \"Sent\" mailbox" msgstr "" -#: ../../groupware/mail.rst:212 +#: ../../groupware/mail.rst:228 msgid "The mail was sent but couldn't be copied to the \"Sent\" mailbox. This error will be handled by the outbox and the copy operation will be tried again." msgstr "" -#: ../../groupware/mail.rst:213 +#: ../../groupware/mail.rst:229 msgid "Mail server error" msgstr "" -#: ../../groupware/mail.rst:214 +#: ../../groupware/mail.rst:230 msgid "Sending was unsuccessful with a state than can be retried (ex: the SMTP server couldn't be reached). The outbox will retry sending the message." msgstr "" -#: ../../groupware/mail.rst:215 +#: ../../groupware/mail.rst:231 msgid "Message could not be sent" msgstr "" -#: ../../groupware/mail.rst:216 +#: ../../groupware/mail.rst:232 msgid "Sending might or might not have failed. The mail server can't tell us the state of the message. Since the Mail app has no way to determine the state of the message (sent or unsent) the message will stay in the outbox and the account user has to decide how to proceed." msgstr "" -#: ../../groupware/mail.rst:220 +#: ../../groupware/mail.rst:236 msgid "Mailbox actions" msgstr "" -#: ../../groupware/mail.rst:223 +#: ../../groupware/mail.rst:239 msgid "Add a mailbox" msgstr "" -#: ../../groupware/mail.rst:224 +#: ../../groupware/mail.rst:240 msgid "Open the action menu of an account" msgstr "" -#: ../../groupware/mail.rst:225 +#: ../../groupware/mail.rst:241 msgid "Click add mailbox" msgstr "" -#: ../../groupware/mail.rst:228 +#: ../../groupware/mail.rst:244 msgid "Add a submailbox" msgstr "" -#: ../../groupware/mail.rst:229 +#: ../../groupware/mail.rst:245 msgid "Open the action menu of a mailbox" msgstr "" -#: ../../groupware/mail.rst:230 +#: ../../groupware/mail.rst:246 msgid "Click add submailbox" msgstr "" -#: ../../groupware/mail.rst:233 +#: ../../groupware/mail.rst:249 msgid "Shared mailbox" msgstr "" -#: ../../groupware/mail.rst:234 +#: ../../groupware/mail.rst:250 msgid "If a mailbox was shared with you with some specific rights, that mailbox will show as a new mailbox with a shared icon as below:" msgstr "" -#: ../../groupware/mail.rst:239 +#: ../../groupware/mail.rst:255 msgid "Envelope actions" msgstr "" -#: ../../groupware/mail.rst:242 +#: ../../groupware/mail.rst:258 msgid "Create an event" msgstr "" -#: ../../groupware/mail.rst:243 +#: ../../groupware/mail.rst:259 msgid "Create an event for a certain message/thread directly via mail app" msgstr "" -#: ../../groupware/mail.rst:245 -#: ../../groupware/mail.rst:258 -#: ../../groupware/mail.rst:266 +#: ../../groupware/mail.rst:261 +#: ../../groupware/mail.rst:274 +#: ../../groupware/mail.rst:282 msgid "Open action menu of an envelope" msgstr "" -#: ../../groupware/mail.rst:246 +#: ../../groupware/mail.rst:262 msgid "Click *More actions*" msgstr "" -#: ../../groupware/mail.rst:247 +#: ../../groupware/mail.rst:263 msgid "Click *Create event*" msgstr "" -#: ../../groupware/mail.rst:249 +#: ../../groupware/mail.rst:265 msgid "Event title and an agenda is created for you if the administrator has enabled it." msgstr "" -#: ../../groupware/mail.rst:252 +#: ../../groupware/mail.rst:268 msgid "Create a task" msgstr "" -#: ../../groupware/mail.rst:256 +#: ../../groupware/mail.rst:272 msgid "Create an task for a certain message/thread directly via mail app" msgstr "" -#: ../../groupware/mail.rst:259 +#: ../../groupware/mail.rst:275 msgid "Click *more actions*" msgstr "" -#: ../../groupware/mail.rst:260 +#: ../../groupware/mail.rst:276 msgid "Click *create task*" msgstr "" -#: ../../groupware/mail.rst:262 +#: ../../groupware/mail.rst:278 msgid "Tasks are stored in supported calendars. If there is no compatible calendar you can create a new one with the :ref:`calendar app`." msgstr "" -#: ../../groupware/mail.rst:265 +#: ../../groupware/mail.rst:281 msgid "Edit tags" msgstr "" -#: ../../groupware/mail.rst:267 +#: ../../groupware/mail.rst:283 msgid "Click *Edit tags*" msgstr "" -#: ../../groupware/mail.rst:268 +#: ../../groupware/mail.rst:284 msgid "On the tags modal, set/unset tags" msgstr "" -#: ../../groupware/mail.rst:271 +#: ../../groupware/mail.rst:287 msgid "Change color for tags" msgstr "" -#: ../../groupware/mail.rst:277 +#: ../../groupware/mail.rst:293 msgid "Upon creating a tag, a randomly assigned color is automatically chosen. Once the tag is saved, you have the flexibility to customize its color according to your preferences. This feature can be found on the Tag modal action menu." msgstr "" -#: ../../groupware/mail.rst:280 +#: ../../groupware/mail.rst:296 msgid "Delete tags" msgstr "" -#: ../../groupware/mail.rst:286 +#: ../../groupware/mail.rst:302 msgid "You now have the ability to delete tags that you have previously created. To access this feature:" msgstr "" -#: ../../groupware/mail.rst:288 +#: ../../groupware/mail.rst:304 msgid "Open the action menu of an envelope/thread." msgstr "" -#: ../../groupware/mail.rst:289 +#: ../../groupware/mail.rst:305 msgid "Select Edit tags." msgstr "" -#: ../../groupware/mail.rst:290 +#: ../../groupware/mail.rst:306 msgid "Within the tags modal, open the action menu for the specific tag you wish to delete." msgstr "" -#: ../../groupware/mail.rst:292 +#: ../../groupware/mail.rst:308 msgid "Please note that default tags such as Work, To do, Personal, and Later cannot be deleted, they can only be renamed." msgstr "" -#: ../../groupware/mail.rst:295 +#: ../../groupware/mail.rst:311 msgid "AI summary" msgstr "" -#: ../../groupware/mail.rst:299 +#: ../../groupware/mail.rst:315 msgid "When looking through your mailbox you will see a short AI generated summary of your emails as a preview." msgstr "" -#: ../../groupware/mail.rst:301 -#: ../../groupware/mail.rst:331 -#: ../../groupware/mail.rst:351 +#: ../../groupware/mail.rst:317 +#: ../../groupware/mail.rst:347 +#: ../../groupware/mail.rst:367 msgid "Please note that the feature has to be enabled by the administrator" msgstr "" -#: ../../groupware/mail.rst:304 +#: ../../groupware/mail.rst:320 msgid "Message actions" msgstr "" -#: ../../groupware/mail.rst:307 +#: ../../groupware/mail.rst:323 msgid "Unsubscribe from a mailing list" msgstr "" -#: ../../groupware/mail.rst:311 +#: ../../groupware/mail.rst:327 msgid "Some mailing lists and newsletters allow to be unsubscribed easily. If the Mail app detects messages from such a sender, it will show an *Unsubscribe* button next to the sender information. Click and confirm to unsubscribe from the list." msgstr "" -#: ../../groupware/mail.rst:314 +#: ../../groupware/mail.rst:330 msgid "Snooze" msgstr "" -#: ../../groupware/mail.rst:318 +#: ../../groupware/mail.rst:334 msgid "Snoozing a message or thread moves it into a dedicated mailbox until the selected snooze date is reached and the message or thread is moved back to the original mailbox." msgstr "" -#: ../../groupware/mail.rst:320 +#: ../../groupware/mail.rst:336 msgid "Open action menu of an envelope or thread" msgstr "" -#: ../../groupware/mail.rst:321 +#: ../../groupware/mail.rst:337 msgid "Click *Snooze*" msgstr "" -#: ../../groupware/mail.rst:322 +#: ../../groupware/mail.rst:338 msgid "Select how long the message or thread should be snoozed" msgstr "" -#: ../../groupware/mail.rst:325 +#: ../../groupware/mail.rst:341 msgid "Smart replies" msgstr "" -#: ../../groupware/mail.rst:329 +#: ../../groupware/mail.rst:345 msgid "When you open a message in the Mail app, it proposes AI-generated replies. By simply clicking on a suggested reply, the composer opens with the response pre-filled." msgstr "" -#: ../../groupware/mail.rst:333 +#: ../../groupware/mail.rst:349 msgid "Supported languages depend on the used large language model" msgstr "" -#: ../../groupware/mail.rst:336 +#: ../../groupware/mail.rst:352 msgid "Mail translation" msgstr "" -#: ../../groupware/mail.rst:340 +#: ../../groupware/mail.rst:356 msgid "You are able to translate messages to your configured languages similarly to Talk." msgstr "" -#: ../../groupware/mail.rst:342 +#: ../../groupware/mail.rst:358 msgid "Please note that translation features have to be enabled on the server" msgstr "" -#: ../../groupware/mail.rst:345 +#: ../../groupware/mail.rst:361 msgid "Thread summary" msgstr "" -#: ../../groupware/mail.rst:347 +#: ../../groupware/mail.rst:363 msgid "The mail app supports summarizing message threads that contain 3 or more messages." msgstr "" -#: ../../groupware/mail.rst:353 +#: ../../groupware/mail.rst:369 msgid "Please note that this feature only works well with integration_openai. Local LLMs take too long to respond and the summary request is likely to time out and still create significant system load." msgstr "" -#: ../../groupware/mail.rst:356 +#: ../../groupware/mail.rst:372 msgid "Filtering and autoresponder" msgstr "" -#: ../../groupware/mail.rst:358 +#: ../../groupware/mail.rst:374 msgid "The Mail app has a editor for Sieve scripts, an interface to configure autoresponders and an interface to configure filters. Sieve has to be enabled in the :ref:`account settings `." msgstr "" -#: ../../groupware/mail.rst:361 +#: ../../groupware/mail.rst:377 msgid "Autoresponders" msgstr "" -#: ../../groupware/mail.rst:363 +#: ../../groupware/mail.rst:379 msgid "Autoresponder can follow system settings." msgstr "" -#: ../../groupware/mail.rst:365 +#: ../../groupware/mail.rst:381 msgid "The autoresponder is off by default. It can be set manually, or follow the system settings. Following system settings means that the long absence message entered on the :ref:`Absence settings section ` is applied automatically." msgstr "" -#: ../../groupware/mail.rst:368 +#: ../../groupware/mail.rst:384 msgid "Filter" msgstr "" -#: ../../groupware/mail.rst:372 +#: ../../groupware/mail.rst:388 msgid "Mail 4.1 includes a simple editor to configure filter rules." msgstr "" -#: ../../groupware/mail.rst:375 +#: ../../groupware/mail.rst:391 msgid "Importing existing filters is not supported. However, all existing filters will remain active and unchanged. We recommend backing up your current script through the Sieve script editor as a precaution." msgstr "" -#: ../../groupware/mail.rst:378 +#: ../../groupware/mail.rst:394 msgid "How to Add a New Filter" msgstr "" -#: ../../groupware/mail.rst:380 -#: ../../groupware/mail.rst:388 +#: ../../groupware/mail.rst:396 +#: ../../groupware/mail.rst:404 msgid "Open your account settings." msgstr "" -#: ../../groupware/mail.rst:381 +#: ../../groupware/mail.rst:397 msgid "Verify that Sieve is enabled for your account (see Sieve server settings)." msgstr "" -#: ../../groupware/mail.rst:382 -#: ../../groupware/mail.rst:390 +#: ../../groupware/mail.rst:398 +#: ../../groupware/mail.rst:406 msgid "Click on Filters." msgstr "" -#: ../../groupware/mail.rst:383 +#: ../../groupware/mail.rst:399 msgid "Select New Filter to create a new rule." msgstr "" -#: ../../groupware/mail.rst:386 +#: ../../groupware/mail.rst:402 msgid "How to Delete a Filter" msgstr "" -#: ../../groupware/mail.rst:389 +#: ../../groupware/mail.rst:405 msgid "Ensure that Sieve is enabled for your account (see Sieve server settings)." msgstr "" -#: ../../groupware/mail.rst:391 +#: ../../groupware/mail.rst:407 msgid "Hover over the filter you wish to delete, then click the trash icon." msgstr "" -#: ../../groupware/mail.rst:395 +#: ../../groupware/mail.rst:411 msgid "Conditions" msgstr "" -#: ../../groupware/mail.rst:397 +#: ../../groupware/mail.rst:413 msgid "Conditions are applied to incoming emails on your mail server, targeting fields such as Subject, Sender, and Recipient. You can use the following operators to define conditions for these fields:" msgstr "" -#: ../../groupware/mail.rst:399 +#: ../../groupware/mail.rst:415 msgid "**is exactly**: An exact match. The field must be identical to the provided value." msgstr "" -#: ../../groupware/mail.rst:400 +#: ../../groupware/mail.rst:416 msgid "**contains**: A substring match. The field matches if the provided value is contained within it. For example, \"report\" would match \"port\"." msgstr "" -#: ../../groupware/mail.rst:401 +#: ../../groupware/mail.rst:417 msgid "**matches**: A pattern match using wildcards. The \"*\" symbol represents any number of characters (including none), while \"?\" represents exactly one character. For example, \"*report*\" would match \"Business report 2024\"." msgstr "" -#: ../../groupware/mail.rst:404 +#: ../../groupware/mail.rst:420 msgid "Actions" msgstr "" -#: ../../groupware/mail.rst:406 +#: ../../groupware/mail.rst:422 msgid "Actions are triggered when the specified tests are true. The following actions are available:" msgstr "" -#: ../../groupware/mail.rst:408 +#: ../../groupware/mail.rst:424 msgid "**fileinto**: Moves the message into a specified folder." msgstr "" -#: ../../groupware/mail.rst:409 +#: ../../groupware/mail.rst:425 msgid "**addflag**: Adds a flag to the message." msgstr "" -#: ../../groupware/mail.rst:410 +#: ../../groupware/mail.rst:426 msgid "**stop**: Halts the execution of the filter script. No further filters with will be processed after this action." msgstr "" -#: ../../groupware/mail.rst:413 +#: ../../groupware/mail.rst:429 msgid "Create a filter from a message" msgstr "" -#: ../../groupware/mail.rst:417 +#: ../../groupware/mail.rst:433 msgid "To create a filter from a given message, open the message and then open the menu by clicking on the three dots. Next, click on \"More actions\" followed by \"Create mail filter.\"" msgstr "" -#: ../../groupware/mail.rst:419 +#: ../../groupware/mail.rst:435 msgid "In the dialog, please select the conditions to match incoming messages and continue by clicking on \"Create mail filter.\"" msgstr "" -#: ../../groupware/mail.rst:425 +#: ../../groupware/mail.rst:441 msgid "Follow-up reminders" msgstr "" -#: ../../groupware/mail.rst:429 +#: ../../groupware/mail.rst:445 msgid "The Mail app will automatically remind you when an outgoing email did not receive a response. Each sent email will be analyzed by an AI to check whether a reply is expected. After four days all relevant emails will be shown in your priority inbox." msgstr "" -#: ../../groupware/mail.rst:433 +#: ../../groupware/mail.rst:449 msgid "When clicking on such an email a button will be shown to quickly follow up with all recipients. It is also possible to disable follow-up reminders for a sent email." msgstr "" -#: ../../groupware/mail.rst:436 +#: ../../groupware/mail.rst:452 msgid "Please note that the feature has to be enabled by the administrator." msgstr "" -#: ../../groupware/mail.rst:439 +#: ../../groupware/mail.rst:455 msgid "Security" msgstr "" -#: ../../groupware/mail.rst:442 +#: ../../groupware/mail.rst:458 msgid "Phishing detection" msgstr "" -#: ../../groupware/mail.rst:446 +#: ../../groupware/mail.rst:462 msgid "The Mail app will check for potential phishing attempts and will display a warning to the user." msgstr "" -#: ../../groupware/mail.rst:448 +#: ../../groupware/mail.rst:464 msgid "The checks are the following:" msgstr "" -#: ../../groupware/mail.rst:450 +#: ../../groupware/mail.rst:466 msgid "The sender address saved in the addressbook is not the same as the one in the mail account" msgstr "" -#: ../../groupware/mail.rst:451 +#: ../../groupware/mail.rst:467 msgid "The sender is using a custom email address that doesn't match the from address" msgstr "" -#: ../../groupware/mail.rst:452 +#: ../../groupware/mail.rst:468 msgid "The sent date is set in the future" msgstr "" -#: ../../groupware/mail.rst:453 +#: ../../groupware/mail.rst:469 msgid "Links in the message body are not pointing to the displayed text" msgstr "" -#: ../../groupware/mail.rst:454 +#: ../../groupware/mail.rst:470 msgid "The reply-to address is not the same as the sender address" msgstr "" -#: ../../groupware/mail.rst:456 +#: ../../groupware/mail.rst:472 msgid "Please note that the warning does not mean that the message is a phishing attempt. It only means that the Mail app detected a potential phishing attempt." msgstr "" -#: ../../groupware/mail.rst:459 +#: ../../groupware/mail.rst:475 msgid "Internal addresses" msgstr "" -#: ../../groupware/mail.rst:463 +#: ../../groupware/mail.rst:479 msgid "The Mail app allows adding internal addresses and domains, and will warn the user if the address is not in the list, when sending and upon receiving a message." msgstr "" -#: ../../groupware/mail.rst:465 +#: ../../groupware/mail.rst:481 msgid "To add an internal address:" msgstr "" -#: ../../groupware/mail.rst:467 +#: ../../groupware/mail.rst:483 msgid "Open the mail settings" msgstr "" -#: ../../groupware/mail.rst:468 +#: ../../groupware/mail.rst:484 msgid "Navigate to Privacy and security section" msgstr "" -#: ../../groupware/mail.rst:469 +#: ../../groupware/mail.rst:485 msgid "Enable the internal addresses by clicking on the checkbox" msgstr "" -#: ../../groupware/mail.rst:470 +#: ../../groupware/mail.rst:486 msgid "Click the Add internal address button" msgstr "" -#: ../../groupware/mail.rst:471 +#: ../../groupware/mail.rst:487 msgid "Enter the address or domain and click Add" msgstr "" From 67fa47d7e1947ad48809bafa5b91a3f1bf36dbe0 Mon Sep 17 00:00:00 2001 From: alperozturk Date: Tue, 30 Jul 2024 12:11:30 +0200 Subject: [PATCH 0089/1895] Add documentation for android deep link handling Signed-off-by: alperozturk --- .../android_deep_link_handling.rst | 47 +++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 admin_manual/configuration_server/android_deep_link_handling.rst diff --git a/admin_manual/configuration_server/android_deep_link_handling.rst b/admin_manual/configuration_server/android_deep_link_handling.rst new file mode 100644 index 000000000..0301f165d --- /dev/null +++ b/admin_manual/configuration_server/android_deep_link_handling.rst @@ -0,0 +1,47 @@ +================= +Deep Link Handling +================= + +Deep linking in Android allows your application to be launched directly from a URL, +making it easier for users to navigate to specific content within your app. +Starting from Android 12, handling deep links requires additional configuration +using an assetlinks.json file to ensure the app and the host domain are properly +associated. + +Deep Linking in Android 11 and Below + For Android 11 and below, deep linking is straightforward and does not require additional + configuration beyond the usual manifest settings. + + +Deep Linking in Android 12 and Above + For Android 12 and above, an additional configuration step is required to verify the + relationship between your app and the host domain using the assetlinks.json file. + + Creating assetlinks.json: + Create a file named assetlinks.json and host it in the .well-known directory of + your website (e.g., https://www.cloud.example.com/.well-known/assetlinks.json). + + Example assetlinks.json:: + [ + { + "relation": ["delegate_permission/common.handle_all_urls"], + "target": { + "namespace": "android_app", + "package_name": "com.cloud.example.nextcloud", + "sha256_cert_fingerprints": [ + "APP_SHA256_FINGERPRINT" + ] + } + } + ] + + Replace APP_SHA256_FINGERPRINT with the SHA-256 fingerprint of your app’s + signing certificate. + + +Nextcloud Configuration Limitation + Due to the additional requirement of hosting an assetlinks.json file + for Android 12 and above, Nextcloud cannot configure the Android client + for all different hosts. This is because each host needs its own assetlinks.json + file to establish a verified relationship with the app, and Nextcloud cannot manage + this file for every possible host domain. \ No newline at end of file From a09fe8369088d9ec7383742b34212184a44e80ad Mon Sep 17 00:00:00 2001 From: alperozturk Date: Tue, 30 Jul 2024 12:19:26 +0200 Subject: [PATCH 0090/1895] better formatting Signed-off-by: alperozturk --- .../android_deep_link_handling.rst | 62 ++++++++++--------- 1 file changed, 32 insertions(+), 30 deletions(-) diff --git a/admin_manual/configuration_server/android_deep_link_handling.rst b/admin_manual/configuration_server/android_deep_link_handling.rst index 0301f165d..b2802fe08 100644 --- a/admin_manual/configuration_server/android_deep_link_handling.rst +++ b/admin_manual/configuration_server/android_deep_link_handling.rst @@ -1,6 +1,5 @@ -================= Deep Link Handling -================= +==================================== Deep linking in Android allows your application to be launched directly from a URL, making it easier for users to navigate to specific content within your app. @@ -9,39 +8,42 @@ using an assetlinks.json file to ensure the app and the host domain are properly associated. Deep Linking in Android 11 and Below - For Android 11 and below, deep linking is straightforward and does not require additional - configuration beyond the usual manifest settings. - +==================================== +For Android 11 and below, deep linking is straightforward and does not require additional +configuration beyond the usual manifest settings. Deep Linking in Android 12 and Above - For Android 12 and above, an additional configuration step is required to verify the - relationship between your app and the host domain using the assetlinks.json file. +==================================== +For Android 12 and above, an additional configuration step is required to verify the +relationship between your app and the host domain using the assetlinks.json file. - Creating assetlinks.json: - Create a file named assetlinks.json and host it in the .well-known directory of - your website (e.g., https://www.cloud.example.com/.well-known/assetlinks.json). +Creating assetlinks.json: +------------------------- +Create a file named assetlinks.json and host it in the .well-known directory of +your website (e.g., https://www.cloud.example.com/.well-known/assetlinks.json). - Example assetlinks.json:: - [ - { - "relation": ["delegate_permission/common.handle_all_urls"], - "target": { - "namespace": "android_app", - "package_name": "com.cloud.example.nextcloud", - "sha256_cert_fingerprints": [ - "APP_SHA256_FINGERPRINT" - ] - } +Example assetlinks.json:: + + [ + { + "relation": ["delegate_permission/common.handle_all_urls"], + "target": { + "namespace": "android_app", + "package_name": "com.cloud.example.nextcloud", + "sha256_cert_fingerprints": [ + "APP_SHA256_FINGERPRINT" + ] } - ] - - Replace APP_SHA256_FINGERPRINT with the SHA-256 fingerprint of your app’s - signing certificate. + } + ] +Replace APP_SHA256_FINGERPRINT with the SHA-256 fingerprint of your app’s +signing certificate. Nextcloud Configuration Limitation - Due to the additional requirement of hosting an assetlinks.json file - for Android 12 and above, Nextcloud cannot configure the Android client - for all different hosts. This is because each host needs its own assetlinks.json - file to establish a verified relationship with the app, and Nextcloud cannot manage - this file for every possible host domain. \ No newline at end of file +================================== +Due to the additional requirement of hosting an assetlinks.json file +for Android 12 and above, Nextcloud cannot configure the Android client +for all different hosts. This is because each host needs its own assetlinks.json +file to establish a verified relationship with the app, and Nextcloud cannot manage +this file for every possible host domain. \ No newline at end of file From b892381d757651da5541eb63038dc5894a5c238f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alper=20=C3=96zt=C3=BCrk?= <67455295+alperozturk96@users.noreply.github.com> Date: Tue, 30 Jul 2024 17:50:32 +0200 Subject: [PATCH 0091/1895] Update admin_manual/configuration_server/android_deep_link_handling.rst MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Josh Signed-off-by: Alper Öztürk <67455295+alperozturk96@users.noreply.github.com> Signed-off-by: alperozturk --- .../configuration_server/android_deep_link_handling.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/admin_manual/configuration_server/android_deep_link_handling.rst b/admin_manual/configuration_server/android_deep_link_handling.rst index b2802fe08..232af32d1 100644 --- a/admin_manual/configuration_server/android_deep_link_handling.rst +++ b/admin_manual/configuration_server/android_deep_link_handling.rst @@ -1,5 +1,6 @@ +================== Deep Link Handling -==================================== +================== Deep linking in Android allows your application to be launched directly from a URL, making it easier for users to navigate to specific content within your app. From 64c8f934d533ba35e8b42615dfce99bdd50561fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alper=20=C3=96zt=C3=BCrk?= <67455295+alperozturk96@users.noreply.github.com> Date: Tue, 30 Jul 2024 17:50:37 +0200 Subject: [PATCH 0092/1895] Update admin_manual/configuration_server/android_deep_link_handling.rst MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Josh Signed-off-by: Alper Öztürk <67455295+alperozturk96@users.noreply.github.com> Signed-off-by: alperozturk --- .../configuration_server/android_deep_link_handling.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin_manual/configuration_server/android_deep_link_handling.rst b/admin_manual/configuration_server/android_deep_link_handling.rst index 232af32d1..2f7465a9a 100644 --- a/admin_manual/configuration_server/android_deep_link_handling.rst +++ b/admin_manual/configuration_server/android_deep_link_handling.rst @@ -14,7 +14,7 @@ For Android 11 and below, deep linking is straightforward and does not require a configuration beyond the usual manifest settings. Deep Linking in Android 12 and Above -==================================== +------------------------------------ For Android 12 and above, an additional configuration step is required to verify the relationship between your app and the host domain using the assetlinks.json file. From 2c4bef90814883a89a6d0b2e9e5a4be8a4499293 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alper=20=C3=96zt=C3=BCrk?= <67455295+alperozturk96@users.noreply.github.com> Date: Tue, 30 Jul 2024 17:50:42 +0200 Subject: [PATCH 0093/1895] Update admin_manual/configuration_server/android_deep_link_handling.rst MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Josh Signed-off-by: Alper Öztürk <67455295+alperozturk96@users.noreply.github.com> Signed-off-by: alperozturk --- .../configuration_server/android_deep_link_handling.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin_manual/configuration_server/android_deep_link_handling.rst b/admin_manual/configuration_server/android_deep_link_handling.rst index 2f7465a9a..5ef44307c 100644 --- a/admin_manual/configuration_server/android_deep_link_handling.rst +++ b/admin_manual/configuration_server/android_deep_link_handling.rst @@ -9,7 +9,7 @@ using an assetlinks.json file to ensure the app and the host domain are properly associated. Deep Linking in Android 11 and Below -==================================== +------------------------------------ For Android 11 and below, deep linking is straightforward and does not require additional configuration beyond the usual manifest settings. From 2bf4a196e95fc33b9f430dca7b9e2bb575b05501 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alper=20=C3=96zt=C3=BCrk?= <67455295+alperozturk96@users.noreply.github.com> Date: Tue, 30 Jul 2024 17:50:47 +0200 Subject: [PATCH 0094/1895] Update admin_manual/configuration_server/android_deep_link_handling.rst MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Josh Signed-off-by: Alper Öztürk <67455295+alperozturk96@users.noreply.github.com> Signed-off-by: alperozturk --- .../configuration_server/android_deep_link_handling.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin_manual/configuration_server/android_deep_link_handling.rst b/admin_manual/configuration_server/android_deep_link_handling.rst index 5ef44307c..269bf3b19 100644 --- a/admin_manual/configuration_server/android_deep_link_handling.rst +++ b/admin_manual/configuration_server/android_deep_link_handling.rst @@ -16,7 +16,7 @@ configuration beyond the usual manifest settings. Deep Linking in Android 12 and Above ------------------------------------ For Android 12 and above, an additional configuration step is required to verify the -relationship between your app and the host domain using the assetlinks.json file. +relationship between your app and the host domain using the ``assetlinks.json`` file. Creating assetlinks.json: ------------------------- From 561badfb00cd37d1ac86d00f9af20610715d30cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alper=20=C3=96zt=C3=BCrk?= <67455295+alperozturk96@users.noreply.github.com> Date: Tue, 30 Jul 2024 17:50:51 +0200 Subject: [PATCH 0095/1895] Update admin_manual/configuration_server/android_deep_link_handling.rst MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Josh Signed-off-by: Alper Öztürk <67455295+alperozturk96@users.noreply.github.com> Signed-off-by: alperozturk --- .../configuration_server/android_deep_link_handling.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/admin_manual/configuration_server/android_deep_link_handling.rst b/admin_manual/configuration_server/android_deep_link_handling.rst index 269bf3b19..67f8bc867 100644 --- a/admin_manual/configuration_server/android_deep_link_handling.rst +++ b/admin_manual/configuration_server/android_deep_link_handling.rst @@ -18,8 +18,8 @@ Deep Linking in Android 12 and Above For Android 12 and above, an additional configuration step is required to verify the relationship between your app and the host domain using the ``assetlinks.json`` file. -Creating assetlinks.json: -------------------------- +Creating assetlinks.json +~~~~~~~~~~~~~~~~~~~~~~~~ Create a file named assetlinks.json and host it in the .well-known directory of your website (e.g., https://www.cloud.example.com/.well-known/assetlinks.json). From ddc2a21baba0b014a8e3c50d6230cb4a9ebbcb02 Mon Sep 17 00:00:00 2001 From: alperozturk Date: Thu, 1 Aug 2024 09:14:21 +0200 Subject: [PATCH 0096/1895] add sha256 fingerprint Signed-off-by: alperozturk --- .../configuration_server/android_deep_link_handling.rst | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/admin_manual/configuration_server/android_deep_link_handling.rst b/admin_manual/configuration_server/android_deep_link_handling.rst index 67f8bc867..dd1de64fc 100644 --- a/admin_manual/configuration_server/android_deep_link_handling.rst +++ b/admin_manual/configuration_server/android_deep_link_handling.rst @@ -32,14 +32,12 @@ Example assetlinks.json:: "namespace": "android_app", "package_name": "com.cloud.example.nextcloud", "sha256_cert_fingerprints": [ - "APP_SHA256_FINGERPRINT" + "FB:00:95:22:F6:5E:25:80:22:61:B6:7B:10:A4:5F:D7:0E:61:00:31:97:6F:40:B2:8A:64:9E:15:2D:ED:03:73" ] } } ] -Replace APP_SHA256_FINGERPRINT with the SHA-256 fingerprint of your app’s -signing certificate. Nextcloud Configuration Limitation ================================== @@ -47,4 +45,4 @@ Due to the additional requirement of hosting an assetlinks.json file for Android 12 and above, Nextcloud cannot configure the Android client for all different hosts. This is because each host needs its own assetlinks.json file to establish a verified relationship with the app, and Nextcloud cannot manage -this file for every possible host domain. \ No newline at end of file +this file for every possible host domain. From 2ffa838f0ecc0a3eeaed7ced95c9f0d806fa390d Mon Sep 17 00:00:00 2001 From: alperozturk Date: Thu, 1 Aug 2024 09:17:10 +0200 Subject: [PATCH 0097/1895] Sign off commit Signed-off-by: alperozturk --- admin_manual/configuration_server/android_deep_link_handling.rst | 1 - 1 file changed, 1 deletion(-) diff --git a/admin_manual/configuration_server/android_deep_link_handling.rst b/admin_manual/configuration_server/android_deep_link_handling.rst index dd1de64fc..17fb0c9dc 100644 --- a/admin_manual/configuration_server/android_deep_link_handling.rst +++ b/admin_manual/configuration_server/android_deep_link_handling.rst @@ -38,7 +38,6 @@ Example assetlinks.json:: } ] - Nextcloud Configuration Limitation ================================== Due to the additional requirement of hosting an assetlinks.json file From 7c5a93692476a5cd25f62b66c57a1bf5199e08bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alper=20=C3=96zt=C3=BCrk?= <67455295+alperozturk96@users.noreply.github.com> Date: Thu, 1 Aug 2024 09:18:03 +0200 Subject: [PATCH 0098/1895] Update admin_manual/configuration_server/android_deep_link_handling.rst MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Josh Signed-off-by: Alper Öztürk <67455295+alperozturk96@users.noreply.github.com> --- .../configuration_server/android_deep_link_handling.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin_manual/configuration_server/android_deep_link_handling.rst b/admin_manual/configuration_server/android_deep_link_handling.rst index 17fb0c9dc..eac882b8f 100644 --- a/admin_manual/configuration_server/android_deep_link_handling.rst +++ b/admin_manual/configuration_server/android_deep_link_handling.rst @@ -20,7 +20,7 @@ relationship between your app and the host domain using the ``assetlinks.json`` Creating assetlinks.json ~~~~~~~~~~~~~~~~~~~~~~~~ -Create a file named assetlinks.json and host it in the .well-known directory of +Create a file named ``assetlinks.json`` and host it in the .well-known directory of your website (e.g., https://www.cloud.example.com/.well-known/assetlinks.json). Example assetlinks.json:: From 03e2aedc02753cf3b51633863456c615f3d9e1ee Mon Sep 17 00:00:00 2001 From: alperozturk Date: Thu, 5 Jun 2025 12:40:59 +0800 Subject: [PATCH 0099/1895] add reference --- go.php | 1 + 1 file changed, 1 insertion(+) diff --git a/go.php b/go.php index 48d7908f0..8d38bb6a2 100644 --- a/go.php +++ b/go.php @@ -55,6 +55,7 @@ $mapping = array( 'admin-warnings' => '/admin_manual/configuration_server/security_setup_warnings.html', 'admin-windows-compatible-filenames' => '/admin_manual/configuration_files/windows_compatible_filenames.html', 'admin-workflowengine' => '/admin_manual/file_workflows/index.html', + 'admin-android-deep-link-handling' => 'admin_manual/configuration_server/android_deep_link_handling.html', 'developer-manual' => '/developer_manual', 'developer-backports' => '/developer_manual/getting_started/development_process.html#bugfixes', From 65bfe1243205a6f9c8a80353ff4472ec63839464 Mon Sep 17 00:00:00 2001 From: alperozturk Date: Thu, 5 Jun 2025 12:47:13 +0800 Subject: [PATCH 0100/1895] update doc --- .../android_deep_link_handling.rst | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/admin_manual/configuration_server/android_deep_link_handling.rst b/admin_manual/configuration_server/android_deep_link_handling.rst index eac882b8f..40099788b 100644 --- a/admin_manual/configuration_server/android_deep_link_handling.rst +++ b/admin_manual/configuration_server/android_deep_link_handling.rst @@ -1,19 +1,19 @@ ================== -Deep Link Handling +Android Deep Link Handling ================== Deep linking in Android allows your application to be launched directly from a URL, making it easier for users to navigate to specific content within your app. Starting from Android 12, handling deep links requires additional configuration -using an assetlinks.json file to ensure the app and the host domain are properly +using an ``assetlinks.json`` file to ensure the app and the host domain are properly associated. -Deep Linking in Android 11 and Below +Android 11 and Below ------------------------------------ For Android 11 and below, deep linking is straightforward and does not require additional configuration beyond the usual manifest settings. -Deep Linking in Android 12 and Above +Android 12 and Above ------------------------------------ For Android 12 and above, an additional configuration step is required to verify the relationship between your app and the host domain using the ``assetlinks.json`` file. @@ -23,7 +23,7 @@ Creating assetlinks.json Create a file named ``assetlinks.json`` and host it in the .well-known directory of your website (e.g., https://www.cloud.example.com/.well-known/assetlinks.json). -Example assetlinks.json:: +Example ``assetlinks.json``:: [ { @@ -40,8 +40,8 @@ Example assetlinks.json:: Nextcloud Configuration Limitation ================================== -Due to the additional requirement of hosting an assetlinks.json file +Due to the additional requirement of hosting an ``assetlinks.json`` file for Android 12 and above, Nextcloud cannot configure the Android client -for all different hosts. This is because each host needs its own assetlinks.json +for all different hosts. This is because each host needs its own ``assetlinks.json`` file to establish a verified relationship with the app, and Nextcloud cannot manage this file for every possible host domain. From 5f05fcb472e0ecb719c4d23666d8e9ff70d91378 Mon Sep 17 00:00:00 2001 From: alperozturk Date: Fri, 13 Jun 2025 16:01:18 +0200 Subject: [PATCH 0101/1895] Title overline too short. Signed-off-by: alperozturk --- .../configuration_server/android_deep_link_handling.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/admin_manual/configuration_server/android_deep_link_handling.rst b/admin_manual/configuration_server/android_deep_link_handling.rst index 40099788b..4f9abcfc7 100644 --- a/admin_manual/configuration_server/android_deep_link_handling.rst +++ b/admin_manual/configuration_server/android_deep_link_handling.rst @@ -1,6 +1,6 @@ -================== +========================== Android Deep Link Handling -================== +========================== Deep linking in Android allows your application to be launched directly from a URL, making it easier for users to navigate to specific content within your app. @@ -9,12 +9,12 @@ using an ``assetlinks.json`` file to ensure the app and the host domain are prop associated. Android 11 and Below ------------------------------------- +-------------------- For Android 11 and below, deep linking is straightforward and does not require additional configuration beyond the usual manifest settings. Android 12 and Above ------------------------------------- +-------------------- For Android 12 and above, an additional configuration step is required to verify the relationship between your app and the host domain using the ``assetlinks.json`` file. From 74345849c445fd53d296151fef77edb6d8215e12 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Fri, 13 Jun 2025 18:02:17 +0000 Subject: [PATCH 0102/1895] Translate mail.pot in de 100% translated source file: 'mail.pot' on 'de'. --- .../locale/de/LC_MESSAGES/groupware/mail.pot | 472 ++++++++++-------- 1 file changed, 273 insertions(+), 199 deletions(-) diff --git a/user_manual/locale/de/LC_MESSAGES/groupware/mail.pot b/user_manual/locale/de/LC_MESSAGES/groupware/mail.pot index d85d7ec7b..9981204cf 100644 --- a/user_manual/locale/de/LC_MESSAGES/groupware/mail.pot +++ b/user_manual/locale/de/LC_MESSAGES/groupware/mail.pot @@ -5,19 +5,19 @@ # # Translators: # Justin Jacob, 2023 -# Mario Siegmann , 2025 # Joachim Sokolowski, 2025 # Mark Ziegler , 2025 # Martin Wilichowski, 2025 +# Mario Siegmann , 2025 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: Nextcloud latest User Manual latest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-18 07:28+0000\n" +"POT-Creation-Date: 2025-06-13 11:48+0000\n" "PO-Revision-Date: 2023-05-02 18:16+0000\n" -"Last-Translator: Martin Wilichowski, 2025\n" +"Last-Translator: Mario Siegmann , 2025\n" "Language-Team: German (https://app.transifex.com/nextcloud/teams/64236/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -45,72 +45,123 @@ msgstr "Ihr E-Mail-Konto verwalten" msgid "Switch layout" msgstr "Layout umschalten" -#: ../../groupware/mail.rst:17 ../../groupware/mail.rst:36 +#: ../../groupware/mail.rst:18 ../../groupware/mail.rst:34 +#: ../../groupware/mail.rst:53 msgid "Visit mail settings" msgstr "E-Mail-Einstellungen besuchen" -#: ../../groupware/mail.rst:18 +#: ../../groupware/mail.rst:19 msgid "Choose between *List*, *Vertical split* and *Horizontal split*" msgstr "" "Zwischen *Liste*, *Vertikale Aufteilung* und *Horizontale Aufteilung* wählen" -#: ../../groupware/mail.rst:23 +#: ../../groupware/mail.rst:24 +msgid "Message Display / Operation Mode" +msgstr "Meldungsanzeige / Betriebsmodus" + +#: ../../groupware/mail.rst:28 +msgid "" +"Mail has the ability to switch between two different message view and " +"operation modes: *Threaded* and *Singleton*." +msgstr "" +"Mail bietet die Möglichkeit, zwischen zwei verschiedenen " +"Nachrichtenansichten und Betriebsmodi zu wechseln: *Threaded* und " +"*Singleton*." + +#: ../../groupware/mail.rst:30 +msgid "" +"In *Threaded* mode, messages are grouped by conversation. In the mailbox " +"message list, related messages are stacked so only the most recent message " +"is shown, and all relates messages are shown in message display panel after " +"the stacked message is selected. This is useful for following discussions " +"and understanding the context of replies. In this mode, message operation " +"like move and delete apply to the entire thread, meaning that when you move " +"or delete a thread, all messages within that thread are affected." +msgstr "" +"Im Thread-Modus werden Nachrichten nach Konversation gruppiert. In der " +"Mailbox-Nachrichtenliste werden zusammengehörende Nachrichten gestapelt, " +"sodass nur die aktuellste Nachricht angezeigt wird. Alle zugehörigen " +"Nachrichten werden nach Auswahl der gestapelten Nachricht im " +"Nachrichtenanzeigefeld angezeigt. Dies ist hilfreich, um Diskussionen zu " +"verfolgen und den Kontext von Antworten zu verstehen. In diesem Modus gelten" +" Nachrichtenvorgänge wie Verschieben und Löschen für den gesamten Thread. " +"Das bedeutet, dass beim Verschieben oder Löschen eines Threads alle " +"Nachrichten innerhalb dieses Threads betroffen sind." + +#: ../../groupware/mail.rst:32 +msgid "" +"In *Singleton* mode, messages are displayed individually, in both the " +"mailbox message list and message display panel and operation like move and " +"delete apply to only the selected message. This mode is useful when you want" +" to manage messages separately without affecting the entire conversation." +msgstr "" +"Im *Singleton*-Modus werden Nachrichten einzeln angezeigt, sowohl in der " +"Mailbox-Nachrichtenliste als auch im Nachrichtenanzeigefeld. Funktionen wie " +"Verschieben und Löschen gelten nur für die ausgewählte Nachricht. Dieser " +"Modus ist nützlich, wenn Sie Nachrichten separat verwalten möchten, ohne die" +" gesamte Konversation zu beeinflussen." + +#: ../../groupware/mail.rst:35 +msgid "Choose between *Threaded*, *Singleton*" +msgstr "Zzwischen *Threaded* und *Singleton* wählen" + +#: ../../groupware/mail.rst:40 msgid "Add a new mail account" msgstr "Ein neues E-Mail-Konto hinzufügen" -#: ../../groupware/mail.rst:25 +#: ../../groupware/mail.rst:42 msgid "Enable mail app from the apps" msgstr "Aktivieren Sie die E-Mail-App über die Apps" -#: ../../groupware/mail.rst:26 +#: ../../groupware/mail.rst:43 msgid "Click the mail icon on the header" msgstr "Klicken Sie auf das E-Mail-Symbol in der Kopfzeile" -#: ../../groupware/mail.rst:27 +#: ../../groupware/mail.rst:44 msgid "Fill up the login form (auto or manual)" msgstr "Füllen Sie das Anmeldeformular aus (automatisch oder manuell)." -#: ../../groupware/mail.rst:32 +#: ../../groupware/mail.rst:49 msgid "Change sort order" msgstr "Sortierreihenfolge ändern" -#: ../../groupware/mail.rst:37 +#: ../../groupware/mail.rst:54 msgid "Go to *Sorting*" msgstr "Zu *Sortierung* wechseln" -#: ../../groupware/mail.rst:38 +#: ../../groupware/mail.rst:55 msgid "You can choose *Oldest* or *Newest* mail first" msgstr "" "Sie können wählen, ob die *älteste* oder *neueste* E-Mail zuerst angezeigt " "wird." -#: ../../groupware/mail.rst:40 +#: ../../groupware/mail.rst:57 msgid "This change will apply across all your accounts and mailboxes" msgstr "Diese Änderung gilt für alle Ihrer Konten und Postfächer" -#: ../../groupware/mail.rst:45 +#: ../../groupware/mail.rst:62 msgid "Scheduled messages" msgstr "Geplante Nachrichten" -#: ../../groupware/mail.rst:46 +#: ../../groupware/mail.rst:63 msgid "Click new message button on top left of your screen" msgstr "" "Klicken Sie oben links auf dem Bildschirm auf die Schaltfläche „Neue " "Nachricht“." -#: ../../groupware/mail.rst:47 +#: ../../groupware/mail.rst:64 msgid "Click the (...) action menu on the modal composer" msgstr "Klicken Sie im Erstellungsbereich auf das Aktionsmenü (…)." -#: ../../groupware/mail.rst:48 +#: ../../groupware/mail.rst:65 msgid "Click *send later*" msgstr "Klicken Sie auf \"Später senden\"" -#: ../../groupware/mail.rst:53 +#: ../../groupware/mail.rst:70 msgid "Priority inbox" msgstr "Priorisierter Posteingang" -#: ../../groupware/mail.rst:54 +#: ../../groupware/mail.rst:71 msgid "" "Priority inbox has 2 section *Important* and *Others*. Messages will " "automatically be marked as important based on which messages you interacted " @@ -124,11 +175,11 @@ msgstr "" "Wichtigkeit ändern, um das System zu trainieren, aber das wird sich mit der " "Zeit verbessern." -#: ../../groupware/mail.rst:60 +#: ../../groupware/mail.rst:77 msgid "All inboxes" msgstr "Alle Posteingänge" -#: ../../groupware/mail.rst:61 +#: ../../groupware/mail.rst:78 msgid "" "All messages from all the accounts you have logged in, will be shown here " "chronologically." @@ -136,39 +187,39 @@ msgstr "" "Alle Nachrichten von allen Konten, bei denen Sie angemeldet sind, werden " "hier chronologisch angezeigt." -#: ../../groupware/mail.rst:66 +#: ../../groupware/mail.rst:83 msgid "Account settings" msgstr "Konto-Einstellungen" -#: ../../groupware/mail.rst:67 +#: ../../groupware/mail.rst:84 msgid "Your account settings such as:" msgstr "Ihre Kontenseitellungen wir z. B.:" -#: ../../groupware/mail.rst:69 +#: ../../groupware/mail.rst:86 msgid "Aliases" msgstr "Aliase" -#: ../../groupware/mail.rst:70 +#: ../../groupware/mail.rst:87 msgid "Signature" msgstr "Signatur" -#: ../../groupware/mail.rst:71 +#: ../../groupware/mail.rst:88 msgid "Default Folders" msgstr "Standardordner" -#: ../../groupware/mail.rst:72 +#: ../../groupware/mail.rst:89 msgid "Autoresponder" msgstr "Autoresponder" -#: ../../groupware/mail.rst:73 +#: ../../groupware/mail.rst:90 msgid "Trusted senders" msgstr "Vertrauenswürdige Absender" -#: ../../groupware/mail.rst:74 +#: ../../groupware/mail.rst:91 msgid "..and more" msgstr "… und mehr" -#: ../../groupware/mail.rst:76 +#: ../../groupware/mail.rst:93 msgid "" "Can be found in the action menu of a mail account. There you can edit, add " "or remove settings depending on your need." @@ -176,43 +227,43 @@ msgstr "" "Zu finden im Aktionsmenü eines E-Mail-Kontos. Dort können Sie je nach Bedarf" " Einstellungen bearbeiten, hinzufügen oder entfernen." -#: ../../groupware/mail.rst:79 +#: ../../groupware/mail.rst:96 msgid "Move messages to Junk folder" msgstr "Nachrichten in den Junk-Ordner verschieben" -#: ../../groupware/mail.rst:83 +#: ../../groupware/mail.rst:100 msgid "" "Mail can move a message to a different folder when it is marked as junk." msgstr "" "Mail kann eine Nachricht in einen anderen Ordner verschieben, wenn sie als " "Junk markiert ist." -#: ../../groupware/mail.rst:85 ../../groupware/mail.rst:115 -#: ../../groupware/mail.rst:142 +#: ../../groupware/mail.rst:102 ../../groupware/mail.rst:134 +#: ../../groupware/mail.rst:161 msgid "Visit Account settings" msgstr "Kontoeinstellungen besuchen" -#: ../../groupware/mail.rst:86 +#: ../../groupware/mail.rst:103 msgid "Go to Default folders" msgstr "Zu Standardordner wechseln" -#: ../../groupware/mail.rst:87 +#: ../../groupware/mail.rst:104 msgid "Check that a folder is selected for the junk messages" msgstr "Prüfen Sie, ob ein Ordner für die Junk-Mails ausgewählt ist." -#: ../../groupware/mail.rst:88 +#: ../../groupware/mail.rst:105 msgid "Go to Junk settings" msgstr "Zu den Junk-Einstellungen wechseln" -#: ../../groupware/mail.rst:89 +#: ../../groupware/mail.rst:106 msgid "Click Move messages to Junk folder" msgstr "\"Nachrichten in den Junk-Ordner verschieben\" anklicken" -#: ../../groupware/mail.rst:94 +#: ../../groupware/mail.rst:111 msgid "Search in mailbox" msgstr "Im Postfach suchen" -#: ../../groupware/mail.rst:97 +#: ../../groupware/mail.rst:115 msgid "" "At the top of the envelope list in any mail layout, there is a search field " "shortcut for searching email subjects. Starting from ``version 3.7``, this " @@ -224,11 +275,11 @@ msgstr "" " können Sie mit dieser Verknüpfung standardmäßig nach Betreff, Empfänger " "(An) oder Absender (Von) suchen." -#: ../../groupware/mail.rst:101 +#: ../../groupware/mail.rst:119 msgid "Advanced search in mailbox" msgstr "Erweiterte Suche im Postfach" -#: ../../groupware/mail.rst:105 +#: ../../groupware/mail.rst:123 msgid "" "You can access our advanced search feature through a modal located at the " "end of the search shortcut." @@ -236,11 +287,11 @@ msgstr "" "Sie können über ein Modalfenster am Ende der Suchverknüpfung auf unsere " "erweiterte Suchfunktion zugreifen." -#: ../../groupware/mail.rst:108 ../../groupware/mail.rst:117 +#: ../../groupware/mail.rst:126 ../../groupware/mail.rst:136 msgid "Enable mail body search" msgstr "E-Mail-Text-Suche aktivieren" -#: ../../groupware/mail.rst:111 +#: ../../groupware/mail.rst:130 msgid "" "Mail bodies can now be searched, this feature is opt-in because of potential" " performance issues." @@ -248,15 +299,15 @@ msgstr "" "E-Mail-Texte können jetzt durchsucht werden. Aufgrund potenzieller " "Leistungsprobleme ist diese Funktion optional." -#: ../../groupware/mail.rst:113 +#: ../../groupware/mail.rst:132 msgid "To enable it:" msgstr "So aktivieren Sie dies:" -#: ../../groupware/mail.rst:116 +#: ../../groupware/mail.rst:135 msgid "Go to Mailbox search" msgstr "Zur Postfachsuche wechseln" -#: ../../groupware/mail.rst:119 +#: ../../groupware/mail.rst:138 msgid "" "If you want to also enable it for unified mailboxes you have to do so in " "Mail settings" @@ -264,7 +315,7 @@ msgstr "" "Wenn Sie dies auch für einheitliche Postfächer aktivieren möchten, müssen " "Sie dies auch in den Mail-Einstellungen tun" -#: ../../groupware/mail.rst:121 +#: ../../groupware/mail.rst:140 msgid "" "By enabling it the main search box will now search in both subjects and mail" " bodies, and a separate *Body* option will appear in advanced search." @@ -273,11 +324,11 @@ msgstr "" "Betreffzeilen als auch E-Mail-Texte. Außerdem wird in der erweiterten Suche " "eine separate Option *Text* angezeigt." -#: ../../groupware/mail.rst:125 +#: ../../groupware/mail.rst:144 msgid "Account delegation" msgstr "Konto delegieren" -#: ../../groupware/mail.rst:127 +#: ../../groupware/mail.rst:146 msgid "" "The app allows account delegation so that one user can send emails from the " "address of another." @@ -285,23 +336,23 @@ msgstr "" "Die App ermöglicht die Kontodelegierung, so dass ein Benutzer E-Mails von " "der Adresse eines anderen Benutzers senden kann." -#: ../../groupware/mail.rst:129 +#: ../../groupware/mail.rst:148 msgid "The delegation has to be configured on the mail server by an admin" msgstr "" "Die Delegation muss auf dem Mailserver von einem Administrator konfiguriert " "werden" -#: ../../groupware/mail.rst:130 +#: ../../groupware/mail.rst:149 msgid "Add the other email address as an alias for your own email account" msgstr "" "Fügen Sie die andere E-Mail-Adresse als Alias für Ihr eigenes E-Mail-Konto " "hinzu" -#: ../../groupware/mail.rst:131 +#: ../../groupware/mail.rst:150 msgid "When sending an email, select the alias as sender" msgstr "Wählen Sie beim Senden einer E-Mail den Alias als Absender aus" -#: ../../groupware/mail.rst:133 +#: ../../groupware/mail.rst:152 msgid "" "The sent email might not be visible to the original account if it's stored " "in your personal *Sent* mailbox." @@ -310,11 +361,11 @@ msgstr "" "sichtbar, wenn sie in Ihrem persönlichen *Gesendet*-Postfach gespeichert " "ist." -#: ../../groupware/mail.rst:136 +#: ../../groupware/mail.rst:155 msgid "Automatic trash deletion" msgstr "Automatisches Löschen des Papierkorbs" -#: ../../groupware/mail.rst:140 +#: ../../groupware/mail.rst:159 msgid "" "The Mail app can automatically delete messages in the trash folder after a " "certain number of days." @@ -322,45 +373,45 @@ msgstr "" "Die Mail-App kann Nachrichten im Papierkorb nach einer bestimmten Anzahl von" " Tagen automatisch löschen." -#: ../../groupware/mail.rst:143 +#: ../../groupware/mail.rst:162 msgid "Go to Automatic trash deletion" msgstr "Zum automatischen Löschen des Papierkorbs wechseln" -#: ../../groupware/mail.rst:144 +#: ../../groupware/mail.rst:163 msgid "Enter the number of days after which messages should be deleted" msgstr "" "Geben Sie die Anzahl der Tage ein, nach denen Nachrichten gelöscht werden " "sollen" -#: ../../groupware/mail.rst:146 +#: ../../groupware/mail.rst:165 msgid "Disable trash retention by leaving the field empty or setting it to 0." msgstr "" "Deaktivieren Sie die Papierkorbaufbewahrung, indem Sie das Feld leer lassen " "oder auf 0 setzen." -#: ../../groupware/mail.rst:148 +#: ../../groupware/mail.rst:167 msgid "Only mails deleted after enabling trash retention will be processed." msgstr "" "Es werden nur E-Mails verarbeitet, die nach der Aktivierung der " "Papierkorbaufbewahrung gelöscht wurden." -#: ../../groupware/mail.rst:153 +#: ../../groupware/mail.rst:172 msgid "Compose messages" msgstr "Nachrichten erstellen" -#: ../../groupware/mail.rst:155 +#: ../../groupware/mail.rst:174 msgid "Click new message on the top left of your screen" msgstr "Klicken Sie oben links auf dem Bildschirm auf „Neue Nachricht“." -#: ../../groupware/mail.rst:156 +#: ../../groupware/mail.rst:175 msgid "Start writing your message" msgstr "Beginnen Sie Ihre Nachricht zu schreiben" -#: ../../groupware/mail.rst:160 +#: ../../groupware/mail.rst:179 msgid "Recipient info on composer" msgstr "Empfängerinfo beim Erstellen" -#: ../../groupware/mail.rst:164 +#: ../../groupware/mail.rst:183 msgid "" "When you add your first recipient or contact in the \"To\" field, a right " "pane will appear displaying the saved profile details of that contact. " @@ -380,11 +431,11 @@ msgstr "" "rechten Ecke klicken. Um den rechten Bereich wieder anzuzeigen, klicken Sie " "einfach an derselben Stelle auf das Minimierungssymbol." -#: ../../groupware/mail.rst:170 +#: ../../groupware/mail.rst:189 msgid "Mention contacts" msgstr "Kontakte erwähnen" -#: ../../groupware/mail.rst:174 +#: ../../groupware/mail.rst:193 msgid "" "You can mention contacts in your message by typing ``@`` and then selecting " "the contact from the list. By doing so the contact will be automatically " @@ -394,16 +445,16 @@ msgstr "" "und dann den Kontakt aus der Liste auswählen. Dadurch wird der Kontakt " "automatisch als Empfänger hinzugefügt." -#: ../../groupware/mail.rst:177 +#: ../../groupware/mail.rst:196 msgid "Only contacts with a valid email address will be suggested." msgstr "" "Es werden nur Kontakte mit einer gültigen E-Mail-Adresse vorgeschlagen." -#: ../../groupware/mail.rst:180 +#: ../../groupware/mail.rst:199 msgid "Minimize the composer modal" msgstr "Erstellungsbreich minimieren" -#: ../../groupware/mail.rst:184 +#: ../../groupware/mail.rst:203 msgid "" "The composer modal can be minimized while writing a new message, editing an " "existing draft or editing a message from the outbox. Simply click the " @@ -416,7 +467,7 @@ msgstr "" " Modal auf die Schaltfläche „Minimieren“ oder klicken Sie auf eine beliebige" " Stelle außerhalb des Erstellungsbereichs." -#: ../../groupware/mail.rst:188 +#: ../../groupware/mail.rst:207 msgid "" "You can resume your minimized message by clicking anywhere on the indicator " "on the bottom right of your screen." @@ -424,7 +475,7 @@ msgstr "" "Sie können Ihre minimierte Nachricht fortsetzen, indem Sie irgendwo auf die " "Anzeige unten rechts auf Ihrem Bildschirm klicken." -#: ../../groupware/mail.rst:192 +#: ../../groupware/mail.rst:211 msgid "" "Press the close button on the modal or the indicator in the bottom right " "corner to stop editing a message. A draft will be saved automatically into " @@ -434,11 +485,11 @@ msgstr "" "unteren rechten Ecke, um die Bearbeitung einer Nachricht zu beenden. Ein " "Entwurf wird automatisch in Ihrem Entwurfspostfach gespeichert." -#: ../../groupware/mail.rst:195 +#: ../../groupware/mail.rst:214 msgid "Outbox" msgstr "Postausgang" -#: ../../groupware/mail.rst:197 +#: ../../groupware/mail.rst:216 msgid "" "When a message has been composed and the \"Send\" button was clicked, the " "message is added to the outbox which can be found in the bottom left corner " @@ -448,7 +499,7 @@ msgstr "" "wurde, wird die Nachricht zum Postausgang hinzugefügt, der sich in der " "unteren linken Ecke der linken Seitenleiste befindet." -#: ../../groupware/mail.rst:199 +#: ../../groupware/mail.rst:218 msgid "" "You can also set the date and time for the send operation to a point in the " "future (see :ref:`Scheduled messages `)- the " @@ -461,7 +512,7 @@ msgstr "" "gewählte Datum und die gewählte Uhrzeit erreicht sind, und wird dann " "automatisch gesendet." -#: ../../groupware/mail.rst:201 +#: ../../groupware/mail.rst:220 msgid "" "The outbox is only visible when there is a message waiting to be handled by " "the outbox." @@ -469,7 +520,7 @@ msgstr "" "Der Postausgang ist nur sichtbar, wenn eine Nachricht darauf wartet, im " "Postausgang bearbeitet zu werden." -#: ../../groupware/mail.rst:203 +#: ../../groupware/mail.rst:222 msgid "" "You can re- open the composer for a message in the outbox any time before " "the \"send\"- operation is triggered." @@ -477,16 +528,16 @@ msgstr "" "Sie können den Editor für eine Nachricht im Postausgang jederzeit erneut " "öffnen, bevor der \"Senden\"-Vorgang ausgelöst wird." -#: ../../groupware/mail.rst:206 +#: ../../groupware/mail.rst:225 msgid "" "When an error occurs during sending, three error messages are possible:" msgstr "Tritt beim Senden ein Fehler auf, sind drei Fehlermeldungen möglich:" -#: ../../groupware/mail.rst:208 +#: ../../groupware/mail.rst:227 msgid "Could not copy to \"Sent\" mailbox" msgstr "Konnte nicht in das Postfach \"Gesendet\" kopiert werden" -#: ../../groupware/mail.rst:209 +#: ../../groupware/mail.rst:228 msgid "" "The mail was sent but couldn't be copied to the \"Sent\" mailbox. This error" " will be handled by the outbox and the copy operation will be tried again." @@ -495,11 +546,11 @@ msgstr "" "kopiert werden. Dieser Fehler wird vom Postausgang behandelt und der " "Kopiervorgang wird erneut versucht." -#: ../../groupware/mail.rst:210 +#: ../../groupware/mail.rst:229 msgid "Mail server error" msgstr "E-Mail-Serverfehler" -#: ../../groupware/mail.rst:211 +#: ../../groupware/mail.rst:230 msgid "" "Sending was unsuccessful with a state than can be retried (ex: the SMTP " "server couldn't be reached). The outbox will retry sending the message." @@ -508,11 +559,11 @@ msgstr "" "(z. B.: Der SMTP-Server konnte nicht erreicht werden). Der Postausgang " "versucht erneut, die Nachricht zu senden." -#: ../../groupware/mail.rst:212 +#: ../../groupware/mail.rst:231 msgid "Message could not be sent" msgstr "Nachricht konnte nicht gesendet werden" -#: ../../groupware/mail.rst:213 +#: ../../groupware/mail.rst:232 msgid "" "Sending might or might not have failed. The mail server can't tell us the " "state of the message. Since the Mail app has no way to determine the state " @@ -525,39 +576,39 @@ msgstr "" "Nachricht im Postausgang und der Kontobenutzer muss entscheiden, wie er " "weiter vorgeht." -#: ../../groupware/mail.rst:217 +#: ../../groupware/mail.rst:236 msgid "Mailbox actions" msgstr "Postfachaktionen" -#: ../../groupware/mail.rst:220 +#: ../../groupware/mail.rst:239 msgid "Add a mailbox" msgstr "Postfach hinzufügen" -#: ../../groupware/mail.rst:221 +#: ../../groupware/mail.rst:240 msgid "Open the action menu of an account" msgstr "Öffnen Sie das Aktionsmenü eines Kontos" -#: ../../groupware/mail.rst:222 +#: ../../groupware/mail.rst:241 msgid "Click add mailbox" msgstr "Klicken Sie auf Postfach hinzufügen" -#: ../../groupware/mail.rst:225 +#: ../../groupware/mail.rst:244 msgid "Add a submailbox" msgstr "Ein Unterpostfach hinzufügen" -#: ../../groupware/mail.rst:226 +#: ../../groupware/mail.rst:245 msgid "Open the action menu of a mailbox" msgstr "Öffnen Sie das Aktionsmenü eines Postfachs" -#: ../../groupware/mail.rst:227 +#: ../../groupware/mail.rst:246 msgid "Click add submailbox" msgstr "Klicken Sie auf Unterpostfach hinzufügen" -#: ../../groupware/mail.rst:230 +#: ../../groupware/mail.rst:249 msgid "Shared mailbox" msgstr "Geteiltes Postfach" -#: ../../groupware/mail.rst:231 +#: ../../groupware/mail.rst:250 msgid "" "If a mailbox was shared with you with some specific rights, that mailbox " "will show as a new mailbox with a shared icon as below:" @@ -566,34 +617,34 @@ msgstr "" "dieses Postfach als neues Postfach mit einem Freigabe-Symbol wie unten " "angezeigt:" -#: ../../groupware/mail.rst:236 +#: ../../groupware/mail.rst:255 msgid "Envelope actions" msgstr "Umschlagaktionen" -#: ../../groupware/mail.rst:239 +#: ../../groupware/mail.rst:258 msgid "Create an event" msgstr "Termin erstellen" -#: ../../groupware/mail.rst:240 +#: ../../groupware/mail.rst:259 msgid "Create an event for a certain message/thread directly via mail app" msgstr "" "Erstellen Sie ein Ereignis für eine bestimmte Nachricht/einen bestimmten " "Thread direkt über die Mail-App" -#: ../../groupware/mail.rst:242 ../../groupware/mail.rst:255 -#: ../../groupware/mail.rst:263 +#: ../../groupware/mail.rst:261 ../../groupware/mail.rst:274 +#: ../../groupware/mail.rst:282 msgid "Open action menu of an envelope" msgstr "Aktionsmenü eines Umschlags öffnen" -#: ../../groupware/mail.rst:243 +#: ../../groupware/mail.rst:262 msgid "Click *More actions*" msgstr "Auf *Weitere Aktionen* klicken" -#: ../../groupware/mail.rst:244 +#: ../../groupware/mail.rst:263 msgid "Click *Create event*" msgstr "Auf *Ereignis erstellen* klicken" -#: ../../groupware/mail.rst:246 +#: ../../groupware/mail.rst:265 msgid "" "Event title and an agenda is created for you if the administrator has " "enabled it." @@ -601,25 +652,25 @@ msgstr "" "Der Veranstaltungstitel und eine Tagesordnung werden für Sie erstellt, wenn " "die Administration dies aktiviert hat." -#: ../../groupware/mail.rst:249 +#: ../../groupware/mail.rst:268 msgid "Create a task" msgstr "Eine Aufgabe erstellen" -#: ../../groupware/mail.rst:253 +#: ../../groupware/mail.rst:272 msgid "Create an task for a certain message/thread directly via mail app" msgstr "" "Erstellen Sie eine Aufgabe für eine bestimmte Nachricht/einen bestimmten " "Thread direkt über die Mail-App" -#: ../../groupware/mail.rst:256 +#: ../../groupware/mail.rst:275 msgid "Click *more actions*" msgstr "Klicken Sie auf *Weitere Aktionen*" -#: ../../groupware/mail.rst:257 +#: ../../groupware/mail.rst:276 msgid "Click *create task*" msgstr "Klicken Sie auf *Aufgabe erstellen*" -#: ../../groupware/mail.rst:259 +#: ../../groupware/mail.rst:278 msgid "" "Tasks are stored in supported calendars. If there is no compatible calendar " "you can create a new one with the :ref:`calendar app`." @@ -628,24 +679,24 @@ msgstr "" "kompatibler Kalender vorhanden ist, können Sie mit der :ref:`Kalender-" "App` einen neuen erstellen." -#: ../../groupware/mail.rst:262 +#: ../../groupware/mail.rst:281 msgid "Edit tags" msgstr "Schlagworte bearbeiten" -#: ../../groupware/mail.rst:264 +#: ../../groupware/mail.rst:283 msgid "Click *Edit tags*" msgstr "Klicken Sie auf \"Schlagworte bearbeiten\"" -#: ../../groupware/mail.rst:265 +#: ../../groupware/mail.rst:284 msgid "On the tags modal, set/unset tags" msgstr "" "Bei den modalen Schlagworten können Sie Schlagworte festlegen/deaktivieren" -#: ../../groupware/mail.rst:268 +#: ../../groupware/mail.rst:287 msgid "Change color for tags" msgstr "Farbe für Schlagworte ändern" -#: ../../groupware/mail.rst:274 +#: ../../groupware/mail.rst:293 msgid "" "Upon creating a tag, a randomly assigned color is automatically chosen. Once" " the tag is saved, you have the flexibility to customize its color according" @@ -657,11 +708,11 @@ msgstr "" "Farbe nach Ihren Wünschen anpassen. Diese Funktion finden Sie im modalen " "Schlagworte-Aktionsmenü." -#: ../../groupware/mail.rst:277 +#: ../../groupware/mail.rst:296 msgid "Delete tags" msgstr "Schlagworte löschen" -#: ../../groupware/mail.rst:283 +#: ../../groupware/mail.rst:302 msgid "" "You now have the ability to delete tags that you have previously created. To" " access this feature:" @@ -669,15 +720,15 @@ msgstr "" "Sie haben jetzt die Möglichkeit, zuvor erstellte Schlagworte zu löschen. So " "greifen Sie auf diese Funktion zu:" -#: ../../groupware/mail.rst:285 +#: ../../groupware/mail.rst:304 msgid "Open the action menu of an envelope/thread." msgstr "Öffnen Sie das Aktionsmenü eines Umschlags/Threads." -#: ../../groupware/mail.rst:286 +#: ../../groupware/mail.rst:305 msgid "Select Edit tags." msgstr "Schlagworte bearbeiten auswählen." -#: ../../groupware/mail.rst:287 +#: ../../groupware/mail.rst:306 msgid "" "Within the tags modal, open the action menu for the specific tag you wish to" " delete." @@ -685,7 +736,7 @@ msgstr "" "Öffnen Sie im Schlagworte Modal-Fenster das Aktionsmenü für den spezifischen" " Schlagwort, das Sie löschen möchten." -#: ../../groupware/mail.rst:289 +#: ../../groupware/mail.rst:308 msgid "" "Please note that default tags such as Work, To do, Personal, and Later " "cannot be deleted, they can only be renamed." @@ -693,11 +744,11 @@ msgstr "" "Bitte beachten Sie, dass Standard-Schlagworte wie Arbeit, Zu erledigen, " "Persönlich und Später nicht gelöscht, sondern nur umbenannt werden können." -#: ../../groupware/mail.rst:292 +#: ../../groupware/mail.rst:311 msgid "AI summary" msgstr "KI-Zusammenfassung" -#: ../../groupware/mail.rst:296 +#: ../../groupware/mail.rst:315 msgid "" "When looking through your mailbox you will see a short AI generated summary " "of your emails as a preview." @@ -705,22 +756,22 @@ msgstr "" "Beim Durchsuchen Ihres Postfachs wird Ihnen als Vorschau eine kurze, von der" " KI generierte Zusammenfassung Ihrer E-Mails angezeigt." -#: ../../groupware/mail.rst:298 ../../groupware/mail.rst:328 -#: ../../groupware/mail.rst:348 +#: ../../groupware/mail.rst:317 ../../groupware/mail.rst:347 +#: ../../groupware/mail.rst:367 msgid "Please note that the feature has to be enabled by the administrator" msgstr "" "Bitte beachten Sie, dass die Funktion von der Administration aktiviert " "werden muss" -#: ../../groupware/mail.rst:301 +#: ../../groupware/mail.rst:320 msgid "Message actions" msgstr "Nachrichtenaktionen" -#: ../../groupware/mail.rst:304 +#: ../../groupware/mail.rst:323 msgid "Unsubscribe from a mailing list" msgstr "Von Mailingliste abmelden" -#: ../../groupware/mail.rst:308 +#: ../../groupware/mail.rst:327 msgid "" "Some mailing lists and newsletters allow to be unsubscribed easily. If the " "Mail app detects messages from such a sender, it will show an *Unsubscribe* " @@ -732,11 +783,11 @@ msgstr "" "\"Abmelden\"-Knopf neben den Sender-Informationen. Klicken und bestätigen " "Sie diesen, um sich von der Liste abzumelden" -#: ../../groupware/mail.rst:311 +#: ../../groupware/mail.rst:330 msgid "Snooze" msgstr "Zurückstellen" -#: ../../groupware/mail.rst:315 +#: ../../groupware/mail.rst:334 msgid "" "Snoozing a message or thread moves it into a dedicated mailbox until the " "selected snooze date is reached and the message or thread is moved back to " @@ -747,25 +798,25 @@ msgstr "" "erreicht ist und die Nachricht oder der Thread zurück in das ursprüngliche " "Postfach verschoben wird." -#: ../../groupware/mail.rst:317 +#: ../../groupware/mail.rst:336 msgid "Open action menu of an envelope or thread" msgstr "Aktionsmenü eines Umschlags oder Threads öffnen" -#: ../../groupware/mail.rst:318 +#: ../../groupware/mail.rst:337 msgid "Click *Snooze*" msgstr "\"Zurückstellen\" anklicken" -#: ../../groupware/mail.rst:319 +#: ../../groupware/mail.rst:338 msgid "Select how long the message or thread should be snoozed" msgstr "" "Auswählen, wie lange die Nachricht oder der Thread zurückgestellt werden " "soll" -#: ../../groupware/mail.rst:322 +#: ../../groupware/mail.rst:341 msgid "Smart replies" msgstr "Intelligente Antworten" -#: ../../groupware/mail.rst:326 +#: ../../groupware/mail.rst:345 msgid "" "When you open a message in the Mail app, it proposes AI-generated replies. " "By simply clicking on a suggested reply, the composer opens with the " @@ -775,15 +826,15 @@ msgstr "" "Antworten vorgeschlagen. Durch einfaches Klicken auf eine vorgeschlagene " "Antwort öffnet sich der Editor mit der vorausgefüllten Antwort." -#: ../../groupware/mail.rst:330 +#: ../../groupware/mail.rst:349 msgid "Supported languages depend on the used large language model" msgstr "Unterstützte Sprachen hängen vom verwendeten großen Sprachmodell ab" -#: ../../groupware/mail.rst:333 +#: ../../groupware/mail.rst:352 msgid "Mail translation" msgstr "E-Mail-Übersetzung" -#: ../../groupware/mail.rst:337 +#: ../../groupware/mail.rst:356 msgid "" "You are able to translate messages to your configured languages similarly to" " Talk." @@ -791,17 +842,17 @@ msgstr "" "Sie können Nachrichten ähnlich wie bei Talk in Ihre konfigurierten Sprachen " "übersetzen." -#: ../../groupware/mail.rst:339 +#: ../../groupware/mail.rst:358 msgid "Please note that translation features have to be enabled on the server" msgstr "" "Bitte beachten Sie, dass die Übersetzungsfunktionen auf dem Server aktiviert" " sein müssen" -#: ../../groupware/mail.rst:342 +#: ../../groupware/mail.rst:361 msgid "Thread summary" msgstr "Thread-Zusammenfassung" -#: ../../groupware/mail.rst:344 +#: ../../groupware/mail.rst:363 msgid "" "The mail app supports summarizing message threads that contain 3 or more " "messages." @@ -809,7 +860,7 @@ msgstr "" "Die Mail-App unterstützt das Zusammenfassen von Nachrichten-Threads mit 3 " "oder mehr Nachrichten." -#: ../../groupware/mail.rst:350 +#: ../../groupware/mail.rst:369 msgid "" "Please note that this feature only works well with integration_openai. Local" " LLMs take too long to respond and the summary request is likely to time out" @@ -820,11 +871,11 @@ msgstr "" "Zusammenfassungsanfrage läuft wahrscheinlich ab und verursacht dennoch eine " "erhebliche Systemlast." -#: ../../groupware/mail.rst:353 +#: ../../groupware/mail.rst:372 msgid "Filtering and autoresponder" msgstr "Filterung und automatische Antworten" -#: ../../groupware/mail.rst:355 +#: ../../groupware/mail.rst:374 msgid "" "The Mail app has a editor for Sieve scripts, an interface to configure " "autoresponders and an interface to configure filters. Sieve has to be " @@ -835,15 +886,15 @@ msgstr "" "Konfigurieren von Filtern. Sieve muss in den :ref:`Kontoeinstellungen ` aktiviert werden." -#: ../../groupware/mail.rst:358 +#: ../../groupware/mail.rst:377 msgid "Autoresponders" msgstr "Automatische Antworten" -#: ../../groupware/mail.rst:360 +#: ../../groupware/mail.rst:379 msgid "Autoresponder can follow system settings." msgstr "Automatische Antworten können Systemeinstellungen folgen." -#: ../../groupware/mail.rst:362 +#: ../../groupware/mail.rst:381 msgid "" "The autoresponder is off by default. It can be set manually, or follow the " "system settings. Following system settings means that the long absence " @@ -856,16 +907,16 @@ msgstr "" ":ref:`Abwesenheitseinstellungen ` eingegebene lange " "Abwesenheitsnachricht automatisch angewendet wird." -#: ../../groupware/mail.rst:365 +#: ../../groupware/mail.rst:384 msgid "Filter" msgstr "Filter" -#: ../../groupware/mail.rst:369 +#: ../../groupware/mail.rst:388 msgid "Mail 4.1 includes a simple editor to configure filter rules." msgstr "" "Mail 4.1 enthält einen einfachen Editor zum Konfigurieren von Filterregeln." -#: ../../groupware/mail.rst:372 +#: ../../groupware/mail.rst:391 msgid "" "Importing existing filters is not supported. However, all existing filters " "will remain active and unchanged. We recommend backing up your current " @@ -875,70 +926,70 @@ msgstr "" "Filter bleiben jedoch aktiv und unverändert. Wir empfehlen, Ihr aktuelles " "Skript vorsichtshalber über den Sieve-Skripteditor zu sichern." -#: ../../groupware/mail.rst:375 +#: ../../groupware/mail.rst:394 msgid "How to Add a New Filter" msgstr "So fügen Sie einen neuen Filter hinzu" -#: ../../groupware/mail.rst:377 ../../groupware/mail.rst:385 +#: ../../groupware/mail.rst:396 ../../groupware/mail.rst:404 msgid "Open your account settings." msgstr "Ihre Kontoeinstellungen öffnen." -#: ../../groupware/mail.rst:378 +#: ../../groupware/mail.rst:397 msgid "" "Verify that Sieve is enabled for your account (see Sieve server settings)." msgstr "" "Stellen Sie sicher, dass Sieve für Ihr Konto aktiviert ist (siehe Sieve-" "Servereinstellungen)." -#: ../../groupware/mail.rst:379 ../../groupware/mail.rst:387 +#: ../../groupware/mail.rst:398 ../../groupware/mail.rst:406 msgid "Click on Filters." msgstr "Auf Filter klicken." -#: ../../groupware/mail.rst:380 +#: ../../groupware/mail.rst:399 msgid "Select New Filter to create a new rule." msgstr "Neuer Filter auswählen, um eine neue Regel zu erstellen." -#: ../../groupware/mail.rst:383 +#: ../../groupware/mail.rst:402 msgid "How to Delete a Filter" msgstr "So wird ein Filter gelöscht" -#: ../../groupware/mail.rst:386 +#: ../../groupware/mail.rst:405 msgid "" "Ensure that Sieve is enabled for your account (see Sieve server settings)." msgstr "" "Stellen Sie sicher, dass Sieve für Ihr Konto aktiviert ist (siehe Sieve-" "Servereinstellungen)." -#: ../../groupware/mail.rst:388 +#: ../../groupware/mail.rst:407 msgid "Hover over the filter you wish to delete, then click the trash icon." msgstr "" "Bewegen Sie den Mauszeiger über den Filter, den Sie löschen möchten, und " "klicken Sie dann auf das Papierkorbsymbol." -#: ../../groupware/mail.rst:392 -msgid "Tests" -msgstr "Tests" +#: ../../groupware/mail.rst:411 +msgid "Conditions" +msgstr "Bedingungen" -#: ../../groupware/mail.rst:394 +#: ../../groupware/mail.rst:413 msgid "" -"Tests are applied to incoming emails on your mail server, targeting fields " -"such as subject (the email\\'s subject line), from (the sender), and to (the" -" recipient). You can use the following operators to define conditions for " -"these fields:" +"Conditions are applied to incoming emails on your mail server, targeting " +"fields such as Subject, Sender, and Recipient. You can use the following " +"operators to define conditions for these fields:" msgstr "" -"Auf eingehende E-Mails auf Ihrem Mailserver werden Tests angewendet. Dabei " -"werden Felder wie Betreff (die Betreffzeile der E-Mail), Von (der Absender) " -"und An (der Empfänger) geprüft. Sie können die folgenden Operatoren " -"verwenden, um Bedingungen für diese Felder zu definieren:" +"Auf eingehende E-Mails auf Ihrem Mailserver werden Bedingungen angewendet, " +"die auf Felder wie Betreff, Absender und Empfänger abzielen. Sie können die " +"folgenden Operatoren verwenden, um Bedingungen für diese Felder zu " +"definieren:" -#: ../../groupware/mail.rst:396 +#: ../../groupware/mail.rst:415 msgid "" -"**is**: An exact match. The field must be identical to the provided value." +"**is exactly**: An exact match. The field must be identical to the provided " +"value." msgstr "" -"**is**: Eine exakte Übereinstimmung. Das Feld muss mit dem angegebenen Wert " -"identisch sein." +"**ist genau**: Eine exakte Übereinstimmung. Das Feld muss mit dem " +"angegebenen Wert identisch sein." -#: ../../groupware/mail.rst:397 +#: ../../groupware/mail.rst:416 msgid "" "**contains**: A substring match. The field matches if the provided value is " "contained within it. For example, \"report\" would match \"port\"." @@ -947,7 +998,7 @@ msgstr "" " wenn der angegebene Wert darin enthalten ist. Beispielsweise würde " "\"Report\" mit \"Port\" übereinstimmen." -#: ../../groupware/mail.rst:398 +#: ../../groupware/mail.rst:417 msgid "" "**matches**: A pattern match using wildcards. The \"*\" symbol represents " "any number of characters (including none), while \"?\" represents exactly " @@ -959,11 +1010,11 @@ msgstr "" "genau ein Zeichen steht. So würde beispielsweise \"*Bericht*\" auf " "\"Geschäftsbericht 2024\" passen." -#: ../../groupware/mail.rst:401 +#: ../../groupware/mail.rst:420 msgid "Actions" msgstr "Aktionen" -#: ../../groupware/mail.rst:403 +#: ../../groupware/mail.rst:422 msgid "" "Actions are triggered when the specified tests are true. The following " "actions are available:" @@ -971,15 +1022,15 @@ msgstr "" "Aktionen werden ausgelöst, wenn die angegebenen Tests wahr sind. Die " "folgenden Aktionen sind verfügbar:" -#: ../../groupware/mail.rst:405 +#: ../../groupware/mail.rst:424 msgid "**fileinto**: Moves the message into a specified folder." msgstr "**fileinto**: Verschiebt die Nachricht in einen angegebenen Ordner." -#: ../../groupware/mail.rst:406 +#: ../../groupware/mail.rst:425 msgid "**addflag**: Adds a flag to the message." msgstr "**addflag**: Fügt der Nachricht eine Markierung hinzu." -#: ../../groupware/mail.rst:407 +#: ../../groupware/mail.rst:426 msgid "" "**stop**: Halts the execution of the filter script. No further filters with " "will be processed after this action." @@ -987,11 +1038,34 @@ msgstr "" "**stop**: Hält die Ausführung des Filterskripts an. Nach dieser Aktion " "werden keine weiteren Filter mehr ausgeführt." -#: ../../groupware/mail.rst:411 +#: ../../groupware/mail.rst:429 +msgid "Create a filter from a message" +msgstr "Erstellen eines Filters aus einer Nachricht" + +#: ../../groupware/mail.rst:433 +msgid "" +"To create a filter from a given message, open the message and then open the " +"menu by clicking on the three dots. Next, click on \"More actions\" followed" +" by \"Create mail filter.\"" +msgstr "" +"Um einen Filter für eine bestimmte Nachricht zu erstellen, öffnen Sie die " +"Nachricht und öffnen Sie anschließend das Menü, indem Sie auf die drei " +"Punkte klicken. Klicken Sie anschließend auf „Weitere Aktionen“ und " +"anschließend auf „Mail-Filter erstellen“." + +#: ../../groupware/mail.rst:435 +msgid "" +"In the dialog, please select the conditions to match incoming messages and " +"continue by clicking on \"Create mail filter.\"" +msgstr "" +"Im Dialog die Bedingungen für eingehende Nachrichten auswählen und mit einem" +" Klick auf „Mailfilter erstellen“ fortfahren." + +#: ../../groupware/mail.rst:441 msgid "Follow-up reminders" msgstr "Nachverfolgen-Erinnerungen" -#: ../../groupware/mail.rst:415 +#: ../../groupware/mail.rst:445 msgid "" "The Mail app will automatically remind you when an outgoing email did not " "receive a response. Each sent email will be analyzed by an AI to check " @@ -1003,7 +1077,7 @@ msgstr "" "analysiert, um zu prüfen, ob eine Antwort erwartet wird. Nach vier Tagen " "werden alle relevanten E-Mails in Ihrem Prioritäts-Posteingang angezeigt." -#: ../../groupware/mail.rst:419 +#: ../../groupware/mail.rst:449 msgid "" "When clicking on such an email a button will be shown to quickly follow up " "with all recipients. It is also possible to disable follow-up reminders for " @@ -1014,21 +1088,21 @@ msgstr "" " Es ist auch möglich, Nachverfolgen-Erinnerungen für eine gesendete E-Mail " "zu deaktivieren." -#: ../../groupware/mail.rst:422 +#: ../../groupware/mail.rst:452 msgid "Please note that the feature has to be enabled by the administrator." msgstr "" "Bitte beachten, dass die Funktion von der Administration aktiviert werden " "muss." -#: ../../groupware/mail.rst:425 +#: ../../groupware/mail.rst:455 msgid "Security" msgstr "Sicherheit" -#: ../../groupware/mail.rst:428 +#: ../../groupware/mail.rst:458 msgid "Phishing detection" msgstr "Phishing-Erkennung" -#: ../../groupware/mail.rst:432 +#: ../../groupware/mail.rst:462 msgid "" "The Mail app will check for potential phishing attempts and will display a " "warning to the user." @@ -1036,11 +1110,11 @@ msgstr "" "Die Mail-App prüft auf mögliche Phishing-Versuche und zeigt dem Benutzer " "eine Warnung an." -#: ../../groupware/mail.rst:434 +#: ../../groupware/mail.rst:464 msgid "The checks are the following:" msgstr "Es werden folgende Kontrollen durchgeführt:" -#: ../../groupware/mail.rst:436 +#: ../../groupware/mail.rst:466 msgid "" "The sender address saved in the addressbook is not the same as the one in " "the mail account" @@ -1048,7 +1122,7 @@ msgstr "" "Die im Adressbuch gespeicherte Absenderadresse stimmt nicht mit der im " "Mailkonto gespeicherten Adresse überein" -#: ../../groupware/mail.rst:437 +#: ../../groupware/mail.rst:467 msgid "" "The sender is using a custom email address that doesn't match the from " "address" @@ -1056,19 +1130,19 @@ msgstr "" "Der Absender verwendet eine benutzerdefinierte E-Mail-Adresse, die nicht mit" " der Absenderadresse übereinstimmt." -#: ../../groupware/mail.rst:438 +#: ../../groupware/mail.rst:468 msgid "The sent date is set in the future" msgstr "Das Versanddatum liegt in der Zukunft" -#: ../../groupware/mail.rst:439 +#: ../../groupware/mail.rst:469 msgid "Links in the message body are not pointing to the displayed text" msgstr "Links im Nachrichtentext verweisen nicht auf den angezeigten Text" -#: ../../groupware/mail.rst:440 +#: ../../groupware/mail.rst:470 msgid "The reply-to address is not the same as the sender address" msgstr "Die Antwortadresse ist nicht identisch mit der Absenderadresse" -#: ../../groupware/mail.rst:442 +#: ../../groupware/mail.rst:472 msgid "" "Please note that the warning does not mean that the message is a phishing " "attempt. It only means that the Mail app detected a potential phishing " @@ -1078,11 +1152,11 @@ msgstr "" "Nachricht um einen Phishing-Versuch handelt. Sie bedeutet lediglich, dass " "die Mail-App einen potenziellen Phishing-Versuch erkannt hat." -#: ../../groupware/mail.rst:445 +#: ../../groupware/mail.rst:475 msgid "Internal addresses" msgstr "Interne Adressen" -#: ../../groupware/mail.rst:449 +#: ../../groupware/mail.rst:479 msgid "" "The Mail app allows adding internal addresses and domains, and will warn the" " user if the address is not in the list, when sending and upon receiving a " @@ -1092,27 +1166,27 @@ msgstr "" "warnt den Benutzer beim Senden und Empfangen einer Nachricht, wenn die " "Adresse nicht in der Liste enthalten ist." -#: ../../groupware/mail.rst:451 +#: ../../groupware/mail.rst:481 msgid "To add an internal address:" msgstr "So wird eine interne Adresse hinzugefügt:" -#: ../../groupware/mail.rst:453 +#: ../../groupware/mail.rst:483 msgid "Open the mail settings" msgstr "E-Mail-Einstellungen öffnen" -#: ../../groupware/mail.rst:454 +#: ../../groupware/mail.rst:484 msgid "Navigate to Privacy and security section" msgstr "Zum Abschnitt Datenschutz und Sicherheit navigieren" -#: ../../groupware/mail.rst:455 +#: ../../groupware/mail.rst:485 msgid "Enable the internal addresses by clicking on the checkbox" msgstr "" "Die internen Adressen aktivieren durch Klicken auf das Kontrollkästchen" -#: ../../groupware/mail.rst:456 +#: ../../groupware/mail.rst:486 msgid "Click the Add internal address button" msgstr "Auf die Schaltfläche \"Interne Adresse hinzufügen\" klicken" -#: ../../groupware/mail.rst:457 +#: ../../groupware/mail.rst:487 msgid "Enter the address or domain and click Add" msgstr "Adresse oder Domäne eingeben und auf \"Hinzufügen\" klicken" From b0bff17c8ed06bfe4579c629ac7d0d9ac8384598 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Sat, 14 Jun 2025 12:48:06 +0000 Subject: [PATCH 0103/1895] Translate mail.pot in cs 100% translated source file: 'mail.pot' on 'cs'. --- .../locale/cs/LC_MESSAGES/groupware/mail.pot | 459 ++++++++++-------- 1 file changed, 264 insertions(+), 195 deletions(-) diff --git a/user_manual/locale/cs/LC_MESSAGES/groupware/mail.pot b/user_manual/locale/cs/LC_MESSAGES/groupware/mail.pot index cd119b395..35cae43ef 100644 --- a/user_manual/locale/cs/LC_MESSAGES/groupware/mail.pot +++ b/user_manual/locale/cs/LC_MESSAGES/groupware/mail.pot @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Nextcloud latest User Manual latest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-03-04 12:42+0000\n" +"POT-Creation-Date: 2025-06-13 11:48+0000\n" "PO-Revision-Date: 2023-05-02 18:16+0000\n" "Last-Translator: Pavel Borecki , 2025\n" "Language-Team: Czech (https://app.transifex.com/nextcloud/teams/64236/cs/)\n" @@ -42,7 +42,8 @@ msgstr "Správa vašeho e-mailového účtu" msgid "Switch layout" msgstr "Přepnout rozvržení" -#: ../../groupware/mail.rst:18 ../../groupware/mail.rst:37 +#: ../../groupware/mail.rst:18 ../../groupware/mail.rst:34 +#: ../../groupware/mail.rst:53 msgid "Visit mail settings" msgstr "Přejděte do nastavení e-mailu" @@ -51,58 +52,105 @@ msgid "Choose between *List*, *Vertical split* and *Horizontal split*" msgstr "Zvolte mezi *Seznam*, *Svislé rozdělení* a *Vodorovné rozdělení*" #: ../../groupware/mail.rst:24 +msgid "Message Display / Operation Mode" +msgstr "Režim zobrazení / operací se zprávami" + +#: ../../groupware/mail.rst:28 +msgid "" +"Mail has the ability to switch between two different message view and " +"operation modes: *Threaded* and *Singleton*." +msgstr "" +"Aplikace E-mail má schopnost přepínat mezi dvěma různými režimy zobrazování " +"a operací se zprávami: *Ve vláknech* a *Samostatně*." + +#: ../../groupware/mail.rst:30 +msgid "" +"In *Threaded* mode, messages are grouped by conversation. In the mailbox " +"message list, related messages are stacked so only the most recent message " +"is shown, and all relates messages are shown in message display panel after " +"the stacked message is selected. This is useful for following discussions " +"and understanding the context of replies. In this mode, message operation " +"like move and delete apply to the entire thread, meaning that when you move " +"or delete a thread, all messages within that thread are affected." +msgstr "" +"V režimu *Ve vláknech* jsou zprávy seskupovány podle konverzací. V seznamu " +"zpráv ve schránce jsou související zprávy naskládány na sebe tak, že jsou " +"zobrazeny pouze ty nejnovější a veškeré související zprávy jsou zobrazovány " +"v panelu zobrazení zprávy (po vybrání naskládané zprávy). To se hodí pro " +"následování diskuzí a porozumění kontextu odpovědí. V tomto režimu jsou " +"operace se zprávou (jako je přesunutí a smazání) uplatňovány na celé vlákno," +" což znamená, že když přesunete nebo smažete vlákno, bude se to týkat všech " +"zpráv v rámci vlákna." + +#: ../../groupware/mail.rst:32 +msgid "" +"In *Singleton* mode, messages are displayed individually, in both the " +"mailbox message list and message display panel and operation like move and " +"delete apply to only the selected message. This mode is useful when you want" +" to manage messages separately without affecting the entire conversation." +msgstr "" +"V režimu *Samostatně* jsou zprávy zobrazovány jednotlivě, jak v seznamu " +"zpráv ve schránce a panelu zobrazení zprávy a operace jako přesunutí či " +"smazání se budou týkat pouze označené zprávy. Tento režim je užitečný pokud " +"chcete spravovat zprávy odděleně bez toho, aby to postihlo celou konverzaci." + +#: ../../groupware/mail.rst:35 +msgid "Choose between *Threaded*, *Singleton*" +msgstr "Zvolte mezi *Ve vláknech* a *Samostatné*" + +#: ../../groupware/mail.rst:40 msgid "Add a new mail account" msgstr "Přidání nového e-mailového účtu" -#: ../../groupware/mail.rst:26 +#: ../../groupware/mail.rst:42 msgid "Enable mail app from the apps" msgstr "Povolte aplikaci E-mail v Aplikacích" -#: ../../groupware/mail.rst:27 +#: ../../groupware/mail.rst:43 msgid "Click the mail icon on the header" msgstr "Klikněte na ikonu e-mailu v záhlaví" -#: ../../groupware/mail.rst:28 +#: ../../groupware/mail.rst:44 msgid "Fill up the login form (auto or manual)" msgstr "Vyplňte přihlašovací formulář (automaticky nebo ručně)" -#: ../../groupware/mail.rst:33 +#: ../../groupware/mail.rst:49 msgid "Change sort order" msgstr "Změna pořadí řazení" -#: ../../groupware/mail.rst:38 +#: ../../groupware/mail.rst:54 msgid "Go to *Sorting*" msgstr "Jděte do *Řazení*" -#: ../../groupware/mail.rst:39 +#: ../../groupware/mail.rst:55 msgid "You can choose *Oldest* or *Newest* mail first" msgstr "Je možné zvolit od *Nejstarších* nebo *Nejnovějších*" -#: ../../groupware/mail.rst:41 +#: ../../groupware/mail.rst:57 msgid "This change will apply across all your accounts and mailboxes" msgstr "Tato změna bude uplatněna napříč vašimi účty a schránkami" -#: ../../groupware/mail.rst:46 +#: ../../groupware/mail.rst:62 msgid "Scheduled messages" msgstr "Naplánované zprávy" -#: ../../groupware/mail.rst:47 +#: ../../groupware/mail.rst:63 msgid "Click new message button on top left of your screen" msgstr "Klikněte na tlačítko nové zprávy v levé horní části obrazovky" -#: ../../groupware/mail.rst:48 +#: ../../groupware/mail.rst:64 msgid "Click the (...) action menu on the modal composer" msgstr "Klikněte na nabídku akcí (...) v dialogu editoru zprávy" -#: ../../groupware/mail.rst:49 +#: ../../groupware/mail.rst:65 msgid "Click *send later*" msgstr "Klikněte na *odeslat později*" -#: ../../groupware/mail.rst:54 +#: ../../groupware/mail.rst:70 msgid "Priority inbox" msgstr "Schránka pro přednostní zprávy" -#: ../../groupware/mail.rst:55 +#: ../../groupware/mail.rst:71 msgid "" "Priority inbox has 2 section *Important* and *Others*. Messages will " "automatically be marked as important based on which messages you interacted " @@ -114,11 +162,11 @@ msgstr "" " pracovali nebo je označili jako důležité. Zpočátku může být třeba " "důležitost měnit ručně a systém tak naučit, ale časem se tím vylepší." -#: ../../groupware/mail.rst:61 +#: ../../groupware/mail.rst:77 msgid "All inboxes" msgstr "Všechny schránky" -#: ../../groupware/mail.rst:62 +#: ../../groupware/mail.rst:78 msgid "" "All messages from all the accounts you have logged in, will be shown here " "chronologically." @@ -126,39 +174,39 @@ msgstr "" "Veškeré zprávy ze všech účtů, ke kterým jste přihlášení, zde budou " "chronologicky zobrazeny " -#: ../../groupware/mail.rst:67 +#: ../../groupware/mail.rst:83 msgid "Account settings" msgstr "Nastavení účtu" -#: ../../groupware/mail.rst:68 +#: ../../groupware/mail.rst:84 msgid "Your account settings such as:" msgstr "Nastavení vašeho účtu, jako:" -#: ../../groupware/mail.rst:70 +#: ../../groupware/mail.rst:86 msgid "Aliases" msgstr "Alternativní názvy" -#: ../../groupware/mail.rst:71 +#: ../../groupware/mail.rst:87 msgid "Signature" msgstr "Podpis" -#: ../../groupware/mail.rst:72 +#: ../../groupware/mail.rst:88 msgid "Default Folders" msgstr "Výchozí složky" -#: ../../groupware/mail.rst:73 +#: ../../groupware/mail.rst:89 msgid "Autoresponder" msgstr "Automatické odpovědi" -#: ../../groupware/mail.rst:74 +#: ../../groupware/mail.rst:90 msgid "Trusted senders" msgstr "Důvěryhodní odesilatelé" -#: ../../groupware/mail.rst:75 +#: ../../groupware/mail.rst:91 msgid "..and more" msgstr "…a další" -#: ../../groupware/mail.rst:77 +#: ../../groupware/mail.rst:93 msgid "" "Can be found in the action menu of a mail account. There you can edit, add " "or remove settings depending on your need." @@ -166,43 +214,43 @@ msgstr "" "Je k dispozici v nabídce akcí u e-mailového účtu. Zde je možné upravovat, " "přidávat nebo odebírat nastavení, v závislosti na vašich potřebách." -#: ../../groupware/mail.rst:80 +#: ../../groupware/mail.rst:96 msgid "Move messages to Junk folder" msgstr "Přesunutí zpráv do složky Nevyžádané" -#: ../../groupware/mail.rst:84 +#: ../../groupware/mail.rst:100 msgid "" "Mail can move a message to a different folder when it is marked as junk." msgstr "" "Když je označená jako nevyžádaná, aplikace E-mail jí umí přesunout do jiné " "složky." -#: ../../groupware/mail.rst:86 ../../groupware/mail.rst:118 -#: ../../groupware/mail.rst:145 +#: ../../groupware/mail.rst:102 ../../groupware/mail.rst:134 +#: ../../groupware/mail.rst:161 msgid "Visit Account settings" msgstr "Navštivte nastavení účtu" -#: ../../groupware/mail.rst:87 +#: ../../groupware/mail.rst:103 msgid "Go to Default folders" msgstr "Jděte na Výchozí složky" -#: ../../groupware/mail.rst:88 +#: ../../groupware/mail.rst:104 msgid "Check that a folder is selected for the junk messages" msgstr "Zkontrolujte že je vybrána složka pro nevyžádané zprávy" -#: ../../groupware/mail.rst:89 +#: ../../groupware/mail.rst:105 msgid "Go to Junk settings" msgstr "Jděte do nastavení pro nevyžádané" -#: ../../groupware/mail.rst:90 +#: ../../groupware/mail.rst:106 msgid "Click Move messages to Junk folder" msgstr "Klikněte na Přesunout zprávy do složky Nevyžádané" -#: ../../groupware/mail.rst:95 +#: ../../groupware/mail.rst:111 msgid "Search in mailbox" msgstr "Hledat ve e-mailové schránce" -#: ../../groupware/mail.rst:99 +#: ../../groupware/mail.rst:115 msgid "" "At the top of the envelope list in any mail layout, there is a search field " "shortcut for searching email subjects. Starting from ``version 3.7``, this " @@ -214,11 +262,11 @@ msgstr "" "zástupce umožňuje vyhledávat v předmětu, příjemci či odesilateli a to ve " "výchozím stavu." -#: ../../groupware/mail.rst:103 +#: ../../groupware/mail.rst:119 msgid "Advanced search in mailbox" msgstr "Pokročilé vyhledávání ve schránce" -#: ../../groupware/mail.rst:107 +#: ../../groupware/mail.rst:123 msgid "" "You can access our advanced search feature through a modal located at the " "end of the search shortcut." @@ -226,11 +274,11 @@ msgstr "" "K funkci pokročilého vyhledávání se dostanete prostřednictvím dialogu " "nacházejícího se na konci zástupce pro vyhledávání." -#: ../../groupware/mail.rst:110 ../../groupware/mail.rst:120 +#: ../../groupware/mail.rst:126 ../../groupware/mail.rst:136 msgid "Enable mail body search" msgstr "Zapněte hledání v těle e-mailu" -#: ../../groupware/mail.rst:114 +#: ../../groupware/mail.rst:130 msgid "" "Mail bodies can now be searched, this feature is opt-in because of potential" " performance issues." @@ -238,15 +286,15 @@ msgstr "" "Nyní je možné vyhledávat i v tělech e-mailů, ale tuto funkci je třeba si " "výslovně zapnout, protože může způsobovat problémy s výkonem." -#: ../../groupware/mail.rst:116 +#: ../../groupware/mail.rst:132 msgid "To enable it:" msgstr "Pro zapnutí:" -#: ../../groupware/mail.rst:119 +#: ../../groupware/mail.rst:135 msgid "Go to Mailbox search" msgstr "Přejděte do hledání ve schránce" -#: ../../groupware/mail.rst:122 +#: ../../groupware/mail.rst:138 msgid "" "If you want to also enable it for unified mailboxes you have to do so in " "Mail settings" @@ -254,7 +302,7 @@ msgstr "" "Pokud to chcete zapnout také pro sjednocené schránky, je třeba tak učinit v " "nastaveních E-mailu" -#: ../../groupware/mail.rst:124 +#: ../../groupware/mail.rst:140 msgid "" "By enabling it the main search box will now search in both subjects and mail" " bodies, and a separate *Body* option will appear in advanced search." @@ -262,11 +310,11 @@ msgstr "" "Zapnutím bude hlavní vyhledávací kolonka nyní hledat jak v předmětech, tak v" " tělech e-mailů a v pokročilém vyhledávání se zobrazí zvlášť volba **Tělo**." -#: ../../groupware/mail.rst:128 +#: ../../groupware/mail.rst:144 msgid "Account delegation" msgstr "Delegování účtu" -#: ../../groupware/mail.rst:130 +#: ../../groupware/mail.rst:146 msgid "" "The app allows account delegation so that one user can send emails from the " "address of another." @@ -274,22 +322,22 @@ msgstr "" "Tato aplikace umožňuje delegování účtů, takže uživatel může posílat e-maily " "z adresy jiného." -#: ../../groupware/mail.rst:132 +#: ../../groupware/mail.rst:148 msgid "The delegation has to be configured on the mail server by an admin" msgstr "" "Je třeba, aby delegování bylo nastavené správcem na e-mailovém serveru" -#: ../../groupware/mail.rst:133 +#: ../../groupware/mail.rst:149 msgid "Add the other email address as an alias for your own email account" msgstr "" "Přidejte jinou e-mailovou adresu jako alternativní název pro váš vlastní " "e-mailový účet" -#: ../../groupware/mail.rst:134 +#: ../../groupware/mail.rst:150 msgid "When sending an email, select the alias as sender" msgstr "Při odesílání e-mailu vyberte alternativní název coby odesilatele" -#: ../../groupware/mail.rst:136 +#: ../../groupware/mail.rst:152 msgid "" "The sent email might not be visible to the original account if it's stored " "in your personal *Sent* mailbox." @@ -297,11 +345,11 @@ msgstr "" "Pokud je uložen ve ve složce *Odeslané* vaší osobní schránky, může se stát, " "že odeslaný e-mail nebude vidět v původním účtu." -#: ../../groupware/mail.rst:139 +#: ../../groupware/mail.rst:155 msgid "Automatic trash deletion" msgstr "Automatické mazání koše" -#: ../../groupware/mail.rst:143 +#: ../../groupware/mail.rst:159 msgid "" "The Mail app can automatically delete messages in the trash folder after a " "certain number of days." @@ -309,43 +357,43 @@ msgstr "" "Aplikace E-mail může automaticky mazat zprávy ve složce Koš po uplynutí " "určitého počtu dnů." -#: ../../groupware/mail.rst:146 +#: ../../groupware/mail.rst:162 msgid "Go to Automatic trash deletion" msgstr "Jděte do Automatického mazání Koše" -#: ../../groupware/mail.rst:147 +#: ../../groupware/mail.rst:163 msgid "Enter the number of days after which messages should be deleted" msgstr "Zadejte počet dnů po jejichž uplynutí mají být zprávy smazány" -#: ../../groupware/mail.rst:149 +#: ../../groupware/mail.rst:165 msgid "Disable trash retention by leaving the field empty or setting it to 0." msgstr "" "Lhůtu ponechávání v Koši je možné vypnout nevyplněním kolonky nebo jejím " "nastavením na hodnotu 0 (nula)." -#: ../../groupware/mail.rst:151 +#: ../../groupware/mail.rst:167 msgid "Only mails deleted after enabling trash retention will be processed." msgstr "" "Takto zpracovány budou pouze e-maily smazané až po zapnutí lhůty ponechávání" " v Koši." -#: ../../groupware/mail.rst:156 +#: ../../groupware/mail.rst:172 msgid "Compose messages" msgstr "Napsání zprávy" -#: ../../groupware/mail.rst:158 +#: ../../groupware/mail.rst:174 msgid "Click new message on the top left of your screen" msgstr "Klikněte na novou zprávu v levé horní části obrazovky" -#: ../../groupware/mail.rst:159 +#: ../../groupware/mail.rst:175 msgid "Start writing your message" msgstr "Začněte psát svou zprávu" -#: ../../groupware/mail.rst:163 +#: ../../groupware/mail.rst:179 msgid "Recipient info on composer" msgstr "Informace o příjemci na editoru" -#: ../../groupware/mail.rst:167 +#: ../../groupware/mail.rst:183 msgid "" "When you add your first recipient or contact in the \"To\" field, a right " "pane will appear displaying the saved profile details of that contact. " @@ -363,11 +411,11 @@ msgstr "" "skrýt kliknutím na ikonu rozbalování v pravém horním rohu. Pro jeho opětovné" " zobrazení stačí kliknout na ikonu minimalizace ve stejném umístění." -#: ../../groupware/mail.rst:173 +#: ../../groupware/mail.rst:189 msgid "Mention contacts" msgstr "Zmínění kontaktů" -#: ../../groupware/mail.rst:177 +#: ../../groupware/mail.rst:193 msgid "" "You can mention contacts in your message by typing ``@`` and then selecting " "the contact from the list. By doing so the contact will be automatically " @@ -377,17 +425,17 @@ msgstr "" "výběrem kontaktu ze seznamu. Tím bude kontakt automaticky přidán coby " "příjemce." -#: ../../groupware/mail.rst:180 +#: ../../groupware/mail.rst:196 msgid "Only contacts with a valid email address will be suggested." msgstr "" "Navrhovány budou pouze ty kontakty, které mají uvedenou platnou e-mailovou " "adresu." -#: ../../groupware/mail.rst:183 +#: ../../groupware/mail.rst:199 msgid "Minimize the composer modal" msgstr "Minimalizace dialogu editoru zprávy" -#: ../../groupware/mail.rst:187 +#: ../../groupware/mail.rst:203 msgid "" "The composer modal can be minimized while writing a new message, editing an " "existing draft or editing a message from the outbox. Simply click the " @@ -399,7 +447,7 @@ msgstr "" "kliknout na tlačítko minimalizace vpravo nahoře dialogu nebo kliknout " "kamkoli mimo dialog." -#: ../../groupware/mail.rst:191 +#: ../../groupware/mail.rst:207 msgid "" "You can resume your minimized message by clicking anywhere on the indicator " "on the bottom right of your screen." @@ -407,7 +455,7 @@ msgstr "" "K minimalizované z právě se vrátíte kliknutím kamkoli na indikátor ve spodní" " části obrazovky." -#: ../../groupware/mail.rst:195 +#: ../../groupware/mail.rst:211 msgid "" "Press the close button on the modal or the indicator in the bottom right " "corner to stop editing a message. A draft will be saved automatically into " @@ -417,11 +465,11 @@ msgstr "" "rohu ukončí upravování zprávy. Koncept bude automaticky uložen do schránky s" " koncepty." -#: ../../groupware/mail.rst:198 +#: ../../groupware/mail.rst:214 msgid "Outbox" msgstr "Odchozí pošta" -#: ../../groupware/mail.rst:200 +#: ../../groupware/mail.rst:216 msgid "" "When a message has been composed and the \"Send\" button was clicked, the " "message is added to the outbox which can be found in the bottom left corner " @@ -431,7 +479,7 @@ msgstr "" "přidána do složky Odeslané, která se nachází v levém dolním rohu postranního" " panelu vlevo." -#: ../../groupware/mail.rst:202 +#: ../../groupware/mail.rst:218 msgid "" "You can also set the date and time for the send operation to a point in the " "future (see :ref:`Scheduled messages `)- the " @@ -443,7 +491,7 @@ msgstr "" "zpráva bude ponechána v poště k odeslání až do okamžiku vámi zvoleného data" " a času, poté bude automaticky odeslána." -#: ../../groupware/mail.rst:204 +#: ../../groupware/mail.rst:220 msgid "" "The outbox is only visible when there is a message waiting to be handled by " "the outbox." @@ -451,7 +499,7 @@ msgstr "" "Složka „K odeslání“ se zobrazí je tehdy, pokud existuje nějaká zpráva, jejíž" " odeslání ještě nebylo dokončeno." -#: ../../groupware/mail.rst:206 +#: ../../groupware/mail.rst:222 msgid "" "You can re- open the composer for a message in the outbox any time before " "the \"send\"- operation is triggered." @@ -459,18 +507,18 @@ msgstr "" "Dokud není spuštěna operace „odeslat“, je možné kdykoli znovu otevřít editor" " zprávy ve složce „K odeslání“." -#: ../../groupware/mail.rst:209 +#: ../../groupware/mail.rst:225 msgid "" "When an error occurs during sending, three error messages are possible:" msgstr "" "Pokud se při odesílání vyskytne chyba, objeví se jedno ze tří možných " "chybových hlášení:" -#: ../../groupware/mail.rst:211 +#: ../../groupware/mail.rst:227 msgid "Could not copy to \"Sent\" mailbox" msgstr "Nebylo možné zkopírovat do schránky „Odeslané“" -#: ../../groupware/mail.rst:212 +#: ../../groupware/mail.rst:228 msgid "" "The mail was sent but couldn't be copied to the \"Sent\" mailbox. This error" " will be handled by the outbox and the copy operation will be tried again." @@ -479,11 +527,11 @@ msgstr "" " chyba bude obsloužena složkou pro odchozí poštu a bude proveden opětovný " "pokus o zkopírování." -#: ../../groupware/mail.rst:213 +#: ../../groupware/mail.rst:229 msgid "Mail server error" msgstr "Chyba e-mailového serveru" -#: ../../groupware/mail.rst:214 +#: ../../groupware/mail.rst:230 msgid "" "Sending was unsuccessful with a state than can be retried (ex: the SMTP " "server couldn't be reached). The outbox will retry sending the message." @@ -492,11 +540,11 @@ msgstr "" " pokus (např. SMTP server není dosažitelný). Složka odchozí pošty se pokusí " "zprávu znovu odeslat později." -#: ../../groupware/mail.rst:215 +#: ../../groupware/mail.rst:231 msgid "Message could not be sent" msgstr "Zprávu nebylo možné odeslat" -#: ../../groupware/mail.rst:216 +#: ../../groupware/mail.rst:232 msgid "" "Sending might or might not have failed. The mail server can't tell us the " "state of the message. Since the Mail app has no way to determine the state " @@ -508,39 +556,39 @@ msgstr "" "zprávy (odeslané nebo neodeslané), zpráva zůstane ve složce k odeslání a " "uživatel účtu rozhodne, jak pokračovat." -#: ../../groupware/mail.rst:220 +#: ../../groupware/mail.rst:236 msgid "Mailbox actions" msgstr "Akce ohledně e-mailové schránky" -#: ../../groupware/mail.rst:223 +#: ../../groupware/mail.rst:239 msgid "Add a mailbox" msgstr "Přidání schránky" -#: ../../groupware/mail.rst:224 +#: ../../groupware/mail.rst:240 msgid "Open the action menu of an account" msgstr "Otevřete nabídku akcí ohledně účtu" -#: ../../groupware/mail.rst:225 +#: ../../groupware/mail.rst:241 msgid "Click add mailbox" msgstr "Klikněte na přidání schránky" -#: ../../groupware/mail.rst:228 +#: ../../groupware/mail.rst:244 msgid "Add a submailbox" msgstr "Přidání dílčí schránky" -#: ../../groupware/mail.rst:229 +#: ../../groupware/mail.rst:245 msgid "Open the action menu of a mailbox" msgstr "Otevřete nabídku akcí ohledně schránky" -#: ../../groupware/mail.rst:230 +#: ../../groupware/mail.rst:246 msgid "Click add submailbox" msgstr "Klikněte na dílčí schránku" -#: ../../groupware/mail.rst:233 +#: ../../groupware/mail.rst:249 msgid "Shared mailbox" msgstr "Sdílená schránka" -#: ../../groupware/mail.rst:234 +#: ../../groupware/mail.rst:250 msgid "" "If a mailbox was shared with you with some specific rights, that mailbox " "will show as a new mailbox with a shared icon as below:" @@ -548,34 +596,34 @@ msgstr "" "Pokud vám schránka byla nasdílena s nějakými specifickými oprávněními, tato " "schránka se zobrazí jako nová s ikonou sdílení, jako níže:" -#: ../../groupware/mail.rst:239 +#: ../../groupware/mail.rst:255 msgid "Envelope actions" msgstr "Akce ohledně obálky" -#: ../../groupware/mail.rst:242 +#: ../../groupware/mail.rst:258 msgid "Create an event" msgstr "Vytvoření události" -#: ../../groupware/mail.rst:243 +#: ../../groupware/mail.rst:259 msgid "Create an event for a certain message/thread directly via mail app" msgstr "" "Vytvořte událost pro určitou zprávu/vlákno přímo prostřednictvím aplikace " "E-mail" -#: ../../groupware/mail.rst:245 ../../groupware/mail.rst:258 -#: ../../groupware/mail.rst:266 +#: ../../groupware/mail.rst:261 ../../groupware/mail.rst:274 +#: ../../groupware/mail.rst:282 msgid "Open action menu of an envelope" msgstr "Otevřete nabídku akcí ohledně obálky" -#: ../../groupware/mail.rst:246 +#: ../../groupware/mail.rst:262 msgid "Click *More actions*" msgstr "Klikněte na *Další akce*" -#: ../../groupware/mail.rst:247 +#: ../../groupware/mail.rst:263 msgid "Click *Create event*" msgstr "Klikněte na *Vytvořit událost*" -#: ../../groupware/mail.rst:249 +#: ../../groupware/mail.rst:265 msgid "" "Event title and an agenda is created for you if the administrator has " "enabled it." @@ -583,25 +631,25 @@ msgstr "" "Pokud tuto funkci správce zapnul, bude vytvořen název události a její " "program." -#: ../../groupware/mail.rst:252 +#: ../../groupware/mail.rst:268 msgid "Create a task" msgstr "Vytvoření úkolu" -#: ../../groupware/mail.rst:256 +#: ../../groupware/mail.rst:272 msgid "Create an task for a certain message/thread directly via mail app" msgstr "" "Vytvořte úkol pro určitou zprávu/vlákno přímo prostřednictvím aplikace " "E-mail" -#: ../../groupware/mail.rst:259 +#: ../../groupware/mail.rst:275 msgid "Click *more actions*" msgstr "Klikněte na *další akce*" -#: ../../groupware/mail.rst:260 +#: ../../groupware/mail.rst:276 msgid "Click *create task*" msgstr "Klikněte na *vytvořit úkol*" -#: ../../groupware/mail.rst:262 +#: ../../groupware/mail.rst:278 msgid "" "Tasks are stored in supported calendars. If there is no compatible calendar " "you can create a new one with the :ref:`calendar app`." @@ -610,23 +658,23 @@ msgstr "" "dispozici, je možné si takový vytvořit v aplikaci :ref:`Kalendář`." -#: ../../groupware/mail.rst:265 +#: ../../groupware/mail.rst:281 msgid "Edit tags" msgstr "Upravit štítky" -#: ../../groupware/mail.rst:267 +#: ../../groupware/mail.rst:283 msgid "Click *Edit tags*" msgstr "Klikněte na *Upravit štítky*" -#: ../../groupware/mail.rst:268 +#: ../../groupware/mail.rst:284 msgid "On the tags modal, set/unset tags" msgstr "V dialogu štítků nastavte / zrušte nastavení štítků" -#: ../../groupware/mail.rst:271 +#: ../../groupware/mail.rst:287 msgid "Change color for tags" msgstr "Změna barvy štítků" -#: ../../groupware/mail.rst:277 +#: ../../groupware/mail.rst:293 msgid "" "Upon creating a tag, a randomly assigned color is automatically chosen. Once" " the tag is saved, you have the flexibility to customize its color according" @@ -637,11 +685,11 @@ msgstr "" "možné jeho barvu upravit. Tuto funkci je možné nalézt v dialogu akcí ohledně" " štítku." -#: ../../groupware/mail.rst:280 +#: ../../groupware/mail.rst:296 msgid "Delete tags" msgstr "Mazání štítků" -#: ../../groupware/mail.rst:286 +#: ../../groupware/mail.rst:302 msgid "" "You now have the ability to delete tags that you have previously created. To" " access this feature:" @@ -649,15 +697,15 @@ msgstr "" "Nyní je možné mazat štítky, které jste předtím vytvořili. K této funkci se " "dostanete:" -#: ../../groupware/mail.rst:288 +#: ../../groupware/mail.rst:304 msgid "Open the action menu of an envelope/thread." msgstr "Otevřít nabídku akcí obálky/vlákna." -#: ../../groupware/mail.rst:289 +#: ../../groupware/mail.rst:305 msgid "Select Edit tags." msgstr "Vyberte Upravit štítky." -#: ../../groupware/mail.rst:290 +#: ../../groupware/mail.rst:306 msgid "" "Within the tags modal, open the action menu for the specific tag you wish to" " delete." @@ -665,7 +713,7 @@ msgstr "" "V dialogu pro štítky otevřete nabídku akcí pro konkrétní štítek, který " "chcete smazat." -#: ../../groupware/mail.rst:292 +#: ../../groupware/mail.rst:308 msgid "" "Please note that default tags such as Work, To do, Personal, and Later " "cannot be deleted, they can only be renamed." @@ -673,11 +721,11 @@ msgstr "" "Mějte na paměti, že výchozí štítky, jako například Práce, Udělat, Osobní a " "Později není možné smazat – je možné je pouze přejmenovat." -#: ../../groupware/mail.rst:295 +#: ../../groupware/mail.rst:311 msgid "AI summary" msgstr "AI shrnutí" -#: ../../groupware/mail.rst:299 +#: ../../groupware/mail.rst:315 msgid "" "When looking through your mailbox you will see a short AI generated summary " "of your emails as a preview." @@ -685,20 +733,20 @@ msgstr "" "Při prohlížení své schránky uvidíte coby náhled krátké shrnutí (vytvoření " "AI) svých e-mailů." -#: ../../groupware/mail.rst:301 ../../groupware/mail.rst:331 -#: ../../groupware/mail.rst:351 +#: ../../groupware/mail.rst:317 ../../groupware/mail.rst:347 +#: ../../groupware/mail.rst:367 msgid "Please note that the feature has to be enabled by the administrator" msgstr "Mějte na paměti, že je třeba, aby funkci zapnul správce" -#: ../../groupware/mail.rst:304 +#: ../../groupware/mail.rst:320 msgid "Message actions" msgstr "Akce ohledně zprávy" -#: ../../groupware/mail.rst:307 +#: ../../groupware/mail.rst:323 msgid "Unsubscribe from a mailing list" msgstr "Odhlášení se z odběru e-mailové konference" -#: ../../groupware/mail.rst:311 +#: ../../groupware/mail.rst:327 msgid "" "Some mailing lists and newsletters allow to be unsubscribed easily. If the " "Mail app detects messages from such a sender, it will show an *Unsubscribe* " @@ -710,11 +758,11 @@ msgstr "" "tlačítko *Zrušit odebírání* vedle údaje o odesilateli. Pokud chcete přestat " "odebírat, klikněte a potvrďte." -#: ../../groupware/mail.rst:314 +#: ../../groupware/mail.rst:330 msgid "Snooze" msgstr "Odložit" -#: ../../groupware/mail.rst:318 +#: ../../groupware/mail.rst:334 msgid "" "Snoozing a message or thread moves it into a dedicated mailbox until the " "selected snooze date is reached and the message or thread is moved back to " @@ -724,23 +772,23 @@ msgstr "" "odkladu a zpráva nebo vlákno pak po jejím uplynutí bude přesunuta do původní" " složky." -#: ../../groupware/mail.rst:320 +#: ../../groupware/mail.rst:336 msgid "Open action menu of an envelope or thread" msgstr "Otevřete nabídku akcí obálky nebo vlákna" -#: ../../groupware/mail.rst:321 +#: ../../groupware/mail.rst:337 msgid "Click *Snooze*" msgstr "Klikněte na *Odložit*" -#: ../../groupware/mail.rst:322 +#: ../../groupware/mail.rst:338 msgid "Select how long the message or thread should be snoozed" msgstr "Vyberte na jak dlouho má být zpráva nebo vlákno odloženo" -#: ../../groupware/mail.rst:325 +#: ../../groupware/mail.rst:341 msgid "Smart replies" msgstr "Chytré odpovědi" -#: ../../groupware/mail.rst:329 +#: ../../groupware/mail.rst:345 msgid "" "When you open a message in the Mail app, it proposes AI-generated replies. " "By simply clicking on a suggested reply, the composer opens with the " @@ -750,15 +798,15 @@ msgstr "" " Stačí kliknout na navrhovanou odpověď a otevře se editor, ve které je " "předvyplněná." -#: ../../groupware/mail.rst:333 +#: ../../groupware/mail.rst:349 msgid "Supported languages depend on the used large language model" msgstr "Jaké jazyky jsou podporovány závisí na použitém LLM modelu" -#: ../../groupware/mail.rst:336 +#: ../../groupware/mail.rst:352 msgid "Mail translation" msgstr "Překládání e-mailů" -#: ../../groupware/mail.rst:340 +#: ../../groupware/mail.rst:356 msgid "" "You are able to translate messages to your configured languages similarly to" " Talk." @@ -766,17 +814,17 @@ msgstr "" "Máte možnost nechat si překládat zprávy do vámi nastaveného jazyka podobně, " "jako v Talk." -#: ../../groupware/mail.rst:342 +#: ../../groupware/mail.rst:358 msgid "Please note that translation features have to be enabled on the server" msgstr "" "Mějte na paměti, že je třeba, aby funkce pro překládání byly zapnuté na " "serveru" -#: ../../groupware/mail.rst:345 +#: ../../groupware/mail.rst:361 msgid "Thread summary" msgstr "Shrnutí vlákna" -#: ../../groupware/mail.rst:347 +#: ../../groupware/mail.rst:363 msgid "" "The mail app supports summarizing message threads that contain 3 or more " "messages." @@ -784,7 +832,7 @@ msgstr "" "Aplikace E-mail podporuje vytváření shrnutí vláken zpráv, které obsahují tři" " a více zpráv." -#: ../../groupware/mail.rst:353 +#: ../../groupware/mail.rst:369 msgid "" "Please note that this feature only works well with integration_openai. Local" " LLMs take too long to respond and the summary request is likely to time out" @@ -795,11 +843,11 @@ msgstr "" "na shrnutí nejspíš bude překročen časový limit, přičemž i tak vytvoří " "významnou zátěž pro systém." -#: ../../groupware/mail.rst:356 +#: ../../groupware/mail.rst:372 msgid "Filtering and autoresponder" msgstr "Filtrování a automatické odpovídání" -#: ../../groupware/mail.rst:358 +#: ../../groupware/mail.rst:374 msgid "" "The Mail app has a editor for Sieve scripts, an interface to configure " "autoresponders and an interface to configure filters. Sieve has to be " @@ -809,15 +857,15 @@ msgstr "" "automatického odpovídání a filtrů. Sieve je třeba zapnout v :ref:`nastavení " "účtu `." -#: ../../groupware/mail.rst:361 +#: ../../groupware/mail.rst:377 msgid "Autoresponders" msgstr "Automatické odpovědi" -#: ../../groupware/mail.rst:363 +#: ../../groupware/mail.rst:379 msgid "Autoresponder can follow system settings." msgstr "Automatické odpovědi se mohou řídit nastaveními systému." -#: ../../groupware/mail.rst:365 +#: ../../groupware/mail.rst:381 msgid "" "The autoresponder is off by default. It can be set manually, or follow the " "system settings. Following system settings means that the long absence " @@ -829,16 +877,16 @@ msgstr "" "znamenají, že zpráva o dlouhodobé nepřítomnosti zadaná do :ref:`Sekce " "nastavení nepřítomnosti ` je uplatněna automaticky." -#: ../../groupware/mail.rst:368 +#: ../../groupware/mail.rst:384 msgid "Filter" msgstr "Filtr" -#: ../../groupware/mail.rst:372 +#: ../../groupware/mail.rst:388 msgid "Mail 4.1 includes a simple editor to configure filter rules." msgstr "" "E-mail 4.1 obsahuje jednoduchý editor pro nastavování pravidel filtru." -#: ../../groupware/mail.rst:375 +#: ../../groupware/mail.rst:391 msgid "" "Importing existing filters is not supported. However, all existing filters " "will remain active and unchanged. We recommend backing up your current " @@ -848,68 +896,67 @@ msgstr "" "filtry zůstanou aktivní a nezměněné. Pro jistotu doporučujeme zazálohovat si" " své stávající skripty zazálohovat pomocí editoru Sieve skriptů." -#: ../../groupware/mail.rst:378 +#: ../../groupware/mail.rst:394 msgid "How to Add a New Filter" msgstr "Jak přidat nový filtr" -#: ../../groupware/mail.rst:380 ../../groupware/mail.rst:388 +#: ../../groupware/mail.rst:396 ../../groupware/mail.rst:404 msgid "Open your account settings." msgstr "Otevřete nastavení svého účtu." -#: ../../groupware/mail.rst:381 +#: ../../groupware/mail.rst:397 msgid "" "Verify that Sieve is enabled for your account (see Sieve server settings)." msgstr "" "Ověřte, že je pro váš účet Sieve zapnuté (viz nastavení pro Sieve server)." -#: ../../groupware/mail.rst:382 ../../groupware/mail.rst:390 +#: ../../groupware/mail.rst:398 ../../groupware/mail.rst:406 msgid "Click on Filters." msgstr "Klikněte na Filtry." -#: ../../groupware/mail.rst:383 +#: ../../groupware/mail.rst:399 msgid "Select New Filter to create a new rule." msgstr "Nové pravidlo vytvoříte vybráním Nový filtr." -#: ../../groupware/mail.rst:386 +#: ../../groupware/mail.rst:402 msgid "How to Delete a Filter" msgstr "Jak smazat filtr" -#: ../../groupware/mail.rst:389 +#: ../../groupware/mail.rst:405 msgid "" "Ensure that Sieve is enabled for your account (see Sieve server settings)." msgstr "" "Ověřte, že je pro váš účet Sieve zapnuté (viz nastavení pro Sieve server)." -#: ../../groupware/mail.rst:391 +#: ../../groupware/mail.rst:407 msgid "Hover over the filter you wish to delete, then click the trash icon." msgstr "" "Najeďte ukazatelem na filtr, který si přejete smazat, poté klikněte na ikonu" " koše." -#: ../../groupware/mail.rst:395 -msgid "Tests" -msgstr "Testy" +#: ../../groupware/mail.rst:411 +msgid "Conditions" +msgstr "Podmínky" -#: ../../groupware/mail.rst:397 +#: ../../groupware/mail.rst:413 msgid "" -"Tests are applied to incoming emails on your mail server, targeting fields " -"such as subject (the email\\'s subject line), from (the sender), and to (the" -" recipient). You can use the following operators to define conditions for " -"these fields:" +"Conditions are applied to incoming emails on your mail server, targeting " +"fields such as Subject, Sender, and Recipient. You can use the following " +"operators to define conditions for these fields:" msgstr "" -"Testy jsou uplatňovány na příchozí e-maily na vámi využívaném e-mailovém " -"serveru, cílící na kolonky jako např. předmět (řádek předmět e-mailu), od " -"(odesilatel) a pro (příjemce). Podmínky pro tyto kolonky je možné definovat " -"následujícími operátory:" +"Podmínky jsou uplatňovány na příchozí e-maily na vámi využívaném e-mailovém " +"serveru, cílící na kolonky jako např. Předmět, Odesilatel a Příjemce. " +"Podmínky pro tyto kolonky je možné definovat následujícími operátory:" -#: ../../groupware/mail.rst:399 +#: ../../groupware/mail.rst:415 msgid "" -"**is**: An exact match. The field must be identical to the provided value." +"**is exactly**: An exact match. The field must be identical to the provided " +"value." msgstr "" -"**je**: Přesná shoda. Je třeba, aby obsah kolonky byl naprosto stejný, jako " -"zadaná hodnota." +"**je přesně**. Přesná shoda. Je třeba, aby kolonka byla identická se zadanou" +" hodnotou." -#: ../../groupware/mail.rst:400 +#: ../../groupware/mail.rst:416 msgid "" "**contains**: A substring match. The field matches if the provided value is " "contained within it. For example, \"report\" would match \"port\"." @@ -917,7 +964,7 @@ msgstr "" "**obsahuje**: Shoda s částí řetězce. Kolonka odpovídá pokud je v ní zadaná " "hodnota obsažená. Například, „výkaznictví“ by odpovídalo „kazn“." -#: ../../groupware/mail.rst:401 +#: ../../groupware/mail.rst:417 msgid "" "**matches**: A pattern match using wildcards. The \"*\" symbol represents " "any number of characters (including none), while \"?\" represents exactly " @@ -929,11 +976,11 @@ msgstr "" "právě jeden znak. Například \"*vykaz*\" by odpovídal " "\"Vykazy_podnikani_2024\"." -#: ../../groupware/mail.rst:404 +#: ../../groupware/mail.rst:420 msgid "Actions" msgstr "Akce" -#: ../../groupware/mail.rst:406 +#: ../../groupware/mail.rst:422 msgid "" "Actions are triggered when the specified tests are true. The following " "actions are available:" @@ -941,15 +988,15 @@ msgstr "" "Akce jsou spouštěny když pozitivně vyjdou určené testy. K dispozici jsou " "následující akce:" -#: ../../groupware/mail.rst:408 +#: ../../groupware/mail.rst:424 msgid "**fileinto**: Moves the message into a specified folder." msgstr "**fileinto**:Přesune zprávu do určené složky." -#: ../../groupware/mail.rst:409 +#: ../../groupware/mail.rst:425 msgid "**addflag**: Adds a flag to the message." msgstr "**addflag**: Přidá zprávě příznak." -#: ../../groupware/mail.rst:410 +#: ../../groupware/mail.rst:426 msgid "" "**stop**: Halts the execution of the filter script. No further filters with " "will be processed after this action." @@ -957,11 +1004,33 @@ msgstr "" "**stop**. Zastaví vykonávání filtrovacího skriptu. Po této sekci nebudou " "zpracovávány žádné další filtry." -#: ../../groupware/mail.rst:414 +#: ../../groupware/mail.rst:429 +msgid "Create a filter from a message" +msgstr "Vytvoření filtru ze zprávy" + +#: ../../groupware/mail.rst:433 +msgid "" +"To create a filter from a given message, open the message and then open the " +"menu by clicking on the three dots. Next, click on \"More actions\" followed" +" by \"Create mail filter.\"" +msgstr "" +"Pokud chcete z dané zprávy vytvořit filtr, otevřete ji a poté otevřete " +"nabídku kliknutím na tři tečky. Dále klikněte na „Další akce“ a poté " +"„Vytvořit filtr e-mailů“." + +#: ../../groupware/mail.rst:435 +msgid "" +"In the dialog, please select the conditions to match incoming messages and " +"continue by clicking on \"Create mail filter.\"" +msgstr "" +"V dialogu vyberte podmínky pro hledání shody s příchozími zprávami a " +"pokračujte kliknutím na „Vytvořit filtr e-mailů“." + +#: ../../groupware/mail.rst:441 msgid "Follow-up reminders" msgstr "Připomínky následných kroků" -#: ../../groupware/mail.rst:418 +#: ../../groupware/mail.rst:445 msgid "" "The Mail app will automatically remind you when an outgoing email did not " "receive a response. Each sent email will be analyzed by an AI to check " @@ -973,7 +1042,7 @@ msgstr "" "zda je očekávána odpověď. Po čtyřech dnech se všechny relevantní e-maily " "zobrazí v prioritní schránce." -#: ../../groupware/mail.rst:422 +#: ../../groupware/mail.rst:449 msgid "" "When clicking on such an email a button will be shown to quickly follow up " "with all recipients. It is also possible to disable follow-up reminders for " @@ -983,19 +1052,19 @@ msgstr "" "se všemi příjemci. Je také možné vypnout připomínky návazných kroků pro " "odeslaný e-mail." -#: ../../groupware/mail.rst:425 +#: ../../groupware/mail.rst:452 msgid "Please note that the feature has to be enabled by the administrator." msgstr "Mějte na paměti, že je třeba, aby funkci zapnul správce." -#: ../../groupware/mail.rst:428 +#: ../../groupware/mail.rst:455 msgid "Security" msgstr "Zabezpečení" -#: ../../groupware/mail.rst:431 +#: ../../groupware/mail.rst:458 msgid "Phishing detection" msgstr "Detekce rhybaření" -#: ../../groupware/mail.rst:435 +#: ../../groupware/mail.rst:462 msgid "" "The Mail app will check for potential phishing attempts and will display a " "warning to the user." @@ -1003,11 +1072,11 @@ msgstr "" "Aplikace E-mail zkontroluje případné pokusy oklamat vás podvodnými e-maily a" " zobrazí uživateli varování." -#: ../../groupware/mail.rst:437 +#: ../../groupware/mail.rst:464 msgid "The checks are the following:" msgstr "Kontroly jsou následující:" -#: ../../groupware/mail.rst:439 +#: ../../groupware/mail.rst:466 msgid "" "The sender address saved in the addressbook is not the same as the one in " "the mail account" @@ -1015,26 +1084,26 @@ msgstr "" "Adresa odesilatele uložená v adresáři kontaktů se neshoduje s tou v " "e-mailovém účtu" -#: ../../groupware/mail.rst:440 +#: ../../groupware/mail.rst:467 msgid "" "The sender is using a custom email address that doesn't match the from " "address" msgstr "" "Odesilatel používá vlastní e-mailovou adresu, která neodpovídá adrese „Od“" -#: ../../groupware/mail.rst:441 +#: ../../groupware/mail.rst:468 msgid "The sent date is set in the future" msgstr "Datum, kdy mělo být odesláno, je nastaveno do budoucnosti" -#: ../../groupware/mail.rst:442 +#: ../../groupware/mail.rst:469 msgid "Links in the message body are not pointing to the displayed text" msgstr "Odkazy v těle zprávy neodkazují na zobrazený text" -#: ../../groupware/mail.rst:443 +#: ../../groupware/mail.rst:470 msgid "The reply-to address is not the same as the sender address" msgstr "Adresa „komu odpovědět“ není stejná jako adresa odesilatele" -#: ../../groupware/mail.rst:445 +#: ../../groupware/mail.rst:472 msgid "" "Please note that the warning does not mean that the message is a phishing " "attempt. It only means that the Mail app detected a potential phishing " @@ -1043,11 +1112,11 @@ msgstr "" "Mějte na paměti, že varování neznamená, že je zpráva pokusem o podvod. Pouze" " znamená, že aplikace E-mail zjistila potenciální pokus o něj." -#: ../../groupware/mail.rst:448 +#: ../../groupware/mail.rst:475 msgid "Internal addresses" msgstr "Interní adresy" -#: ../../groupware/mail.rst:452 +#: ../../groupware/mail.rst:479 msgid "" "The Mail app allows adding internal addresses and domains, and will warn the" " user if the address is not in the list, when sending and upon receiving a " @@ -1056,26 +1125,26 @@ msgstr "" "Aplikace E-mail umožňuje přidávat interní adresy a domény a při odesílání a " "příjmu zprávy varuje uživatele, pokud se adresa nenachází na seznamu." -#: ../../groupware/mail.rst:454 +#: ../../groupware/mail.rst:481 msgid "To add an internal address:" msgstr "Pro přidání interní adresy:" -#: ../../groupware/mail.rst:456 +#: ../../groupware/mail.rst:483 msgid "Open the mail settings" msgstr "Otevřete nastavení e-mailu" -#: ../../groupware/mail.rst:457 +#: ../../groupware/mail.rst:484 msgid "Navigate to Privacy and security section" msgstr "Přejděte do sekce Soukromí a zabezpečení" -#: ../../groupware/mail.rst:458 +#: ../../groupware/mail.rst:485 msgid "Enable the internal addresses by clicking on the checkbox" msgstr "Zapněte interní adresy kliknutím na zašktrtávátko" -#: ../../groupware/mail.rst:459 +#: ../../groupware/mail.rst:486 msgid "Click the Add internal address button" msgstr "Klikněte na tlačítko Přidat interní adresu" -#: ../../groupware/mail.rst:460 +#: ../../groupware/mail.rst:487 msgid "Enter the address or domain and click Add" msgstr "Zadejte adresu nebo doménu a klikněte na Přidat" From 95e3a280881de9052e7b76dc323f577543f5d9f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Calvi=C3=B1o=20S=C3=A1nchez?= Date: Sun, 15 Jun 2025 08:28:17 +0200 Subject: [PATCH 0104/1895] fix(admin_manual): Document S3 "connect_timeout" option MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Daniel Calviño Sánchez --- admin_manual/configuration_files/primary_storage.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/admin_manual/configuration_files/primary_storage.rst b/admin_manual/configuration_files/primary_storage.rst index 7b311e678..fb50bad54 100644 --- a/admin_manual/configuration_files/primary_storage.rst +++ b/admin_manual/configuration_files/primary_storage.rst @@ -192,6 +192,9 @@ Optional parameters less commonly needing adjustment: * :code:`concurrency` defaults to :code:`5` [Note: This defines the maximum number of concurrent multipart uploads] * :code:`proxy` defaults to :code:`false` +* :code:`connect_timeout` defaults to :code:`5` [Note: the connection timeout is + set in seconds, but decimal precision can be used for subsecond accuracy (for + example, 4.2 for 4200 milliseconds)] * :code:`timeout` defaults to :code:`15` * :code:`uploadPartSize` defaults to :code:`524288000` * :code:`putSizeLimit` defaults to :code:`104857600` From c343f871131aae76e518228bd610217b502132c6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Jun 2025 21:56:07 +0000 Subject: [PATCH 0105/1895] chore(deps): bump requests from 2.32.3 to 2.32.4 Bumps [requests](https://github.com/psf/requests) from 2.32.3 to 2.32.4. - [Release notes](https://github.com/psf/requests/releases) - [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md) - [Commits](https://github.com/psf/requests/compare/v2.32.3...v2.32.4) --- updated-dependencies: - dependency-name: requests dependency-version: 2.32.4 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index c897321ac..af805feb7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -13,7 +13,7 @@ Pillow==11.2.1 Pygments==2.19.1 PyYAML==6.0.2 reportlab==4.4.1 -requests==2.32.3 +requests==2.32.4 rst2pdf==0.103.1 smartypants==2.0.1 snowballstemmer==3.0.1 From 10a135076407647f38a298e01b0f5e1a763a2449 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Jun 2025 06:41:03 +0000 Subject: [PATCH 0106/1895] chore(deps): bump certifi from 2025.4.26 to 2025.6.15 Bumps [certifi](https://github.com/certifi/python-certifi) from 2025.4.26 to 2025.6.15. - [Commits](https://github.com/certifi/python-certifi/compare/2025.04.26...2025.06.15) --- updated-dependencies: - dependency-name: certifi dependency-version: 2025.6.15 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index af805feb7..ecc1a026a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ alabaster==1.0.0 Babel==2.17.0 -certifi==2025.4.26 +certifi==2025.6.15 charset-normalizer==3.4.2 docutils==0.21.2 idna==3.10 From df3f4606add463be7d4be427e6b03ec3f03ea796 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Mon, 16 Jun 2025 13:08:58 +0000 Subject: [PATCH 0107/1895] Translate mail.pot in ga 100% translated source file: 'mail.pot' on 'ga'. --- .../locale/ga/LC_MESSAGES/groupware/mail.pot | 471 ++++++++++-------- 1 file changed, 273 insertions(+), 198 deletions(-) diff --git a/user_manual/locale/ga/LC_MESSAGES/groupware/mail.pot b/user_manual/locale/ga/LC_MESSAGES/groupware/mail.pot index da3a1a11b..e641a1748 100644 --- a/user_manual/locale/ga/LC_MESSAGES/groupware/mail.pot +++ b/user_manual/locale/ga/LC_MESSAGES/groupware/mail.pot @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Nextcloud latest User Manual latest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-18 07:28+0000\n" +"POT-Creation-Date: 2025-06-13 11:48+0000\n" "PO-Revision-Date: 2023-05-02 18:16+0000\n" "Last-Translator: Aindriú Mac Giolla Eoin, 2025\n" "Language-Team: Irish (https://app.transifex.com/nextcloud/teams/64236/ga/)\n" @@ -41,69 +41,121 @@ msgstr "Do chuntas ríomhphoist a bhainistiú" msgid "Switch layout" msgstr "Athraigh leagan amach" -#: ../../groupware/mail.rst:17 ../../groupware/mail.rst:36 +#: ../../groupware/mail.rst:18 ../../groupware/mail.rst:34 +#: ../../groupware/mail.rst:53 msgid "Visit mail settings" msgstr "Tabhair cuairt ar shocruithe ríomhphoist" -#: ../../groupware/mail.rst:18 +#: ../../groupware/mail.rst:19 msgid "Choose between *List*, *Vertical split* and *Horizontal split*" msgstr "" "Roghnaigh idir *Liosta*, *Roinnt ingearach* agus *Roinnt chothrománach*" -#: ../../groupware/mail.rst:23 +#: ../../groupware/mail.rst:24 +msgid "Message Display / Operation Mode" +msgstr "Taispeántas Teachtaireachtaí / Mód Oibríochta" + +#: ../../groupware/mail.rst:28 +msgid "" +"Mail has the ability to switch between two different message view and " +"operation modes: *Threaded* and *Singleton*." +msgstr "" +"Tá an cumas ag Mail aistriú idir dhá mhodh éagsúla radhairc agus oibríochta " +"teachtaireachtaí: *Snáithithe* agus *Singleton*." + +#: ../../groupware/mail.rst:30 +msgid "" +"In *Threaded* mode, messages are grouped by conversation. In the mailbox " +"message list, related messages are stacked so only the most recent message " +"is shown, and all relates messages are shown in message display panel after " +"the stacked message is selected. This is useful for following discussions " +"and understanding the context of replies. In this mode, message operation " +"like move and delete apply to the entire thread, meaning that when you move " +"or delete a thread, all messages within that thread are affected." +msgstr "" +"Sa mhodh *Snáithithe*, déantar teachtaireachtaí a ghrúpáil de réir comhrá. " +"Sa liosta teachtaireachtaí bosca poist, déantar teachtaireachtaí gaolmhara a" +" chruachadh ionas nach dtaispeántar ach an teachtaireacht is déanaí, agus " +"taispeántar gach teachtaireacht ghaolmhar sa phainéal taispeána " +"teachtaireachtaí tar éis an teachtaireacht chruachta a roghnú. Tá sé seo " +"úsáideach chun plé a leanúint agus comhthéacs na bhfreagraí a thuiscint. Sa " +"mhodh seo, baineann oibríocht teachtaireachta cosúil le bogadh agus " +"scriosadh leis an snáithe ar fad, rud a chiallaíonn nuair a bhogann tú nó a " +"scriosann tú snáithe, go mbíonn tionchar ar gach teachtaireacht laistigh den" +" snáithe sin." + +#: ../../groupware/mail.rst:32 +msgid "" +"In *Singleton* mode, messages are displayed individually, in both the " +"mailbox message list and message display panel and operation like move and " +"delete apply to only the selected message. This mode is useful when you want" +" to manage messages separately without affecting the entire conversation." +msgstr "" +"I mód *Singleton*, taispeántar teachtaireachtaí ina n-aonar, i liosta " +"teachtaireachtaí an bhosca poist agus sa phainéal taispeána teachtaireachtaí" +" araon, agus ní bhaineann oibríochtaí cosúil le bogadh agus scriosadh ach " +"leis an teachtaireacht roghnaithe. Tá an mód seo úsáideach nuair is mian " +"leat teachtaireachtaí a bhainistiú ar leithligh gan cur isteach ar an " +"gcomhrá ar fad." + +#: ../../groupware/mail.rst:35 +msgid "Choose between *Threaded*, *Singleton*" +msgstr "Roghnaigh idir *Snáithithe*, *Singleton*" + +#: ../../groupware/mail.rst:40 msgid "Add a new mail account" msgstr "Cuir cuntas ríomhphoist nua leis" -#: ../../groupware/mail.rst:25 +#: ../../groupware/mail.rst:42 msgid "Enable mail app from the apps" msgstr "Cumasaigh feidhmchlár ríomhphoist ó na haipeanna" -#: ../../groupware/mail.rst:26 +#: ../../groupware/mail.rst:43 msgid "Click the mail icon on the header" msgstr "Cliceáil ar an deilbhín ríomhphoist ar an gceanntásc" -#: ../../groupware/mail.rst:27 +#: ../../groupware/mail.rst:44 msgid "Fill up the login form (auto or manual)" msgstr "Líon suas an fhoirm logáil isteach (uathoibríoch nó lámhleabhar)" -#: ../../groupware/mail.rst:32 +#: ../../groupware/mail.rst:49 msgid "Change sort order" msgstr "Athraigh ord sórtála" -#: ../../groupware/mail.rst:37 +#: ../../groupware/mail.rst:54 msgid "Go to *Sorting*" msgstr "Téigh go dtí *Sórtáil*" -#: ../../groupware/mail.rst:38 +#: ../../groupware/mail.rst:55 msgid "You can choose *Oldest* or *Newest* mail first" msgstr "Is féidir leat ríomhphost *Is sine* nó *is Déanaí* a roghnú ar dtús" -#: ../../groupware/mail.rst:40 +#: ../../groupware/mail.rst:57 msgid "This change will apply across all your accounts and mailboxes" msgstr "" "Beidh an t-athrú seo i bhfeidhm thar do chuntais agus boscaí poist go léir" -#: ../../groupware/mail.rst:45 +#: ../../groupware/mail.rst:62 msgid "Scheduled messages" msgstr "Teachtaireachtaí sceidealaithe" -#: ../../groupware/mail.rst:46 +#: ../../groupware/mail.rst:63 msgid "Click new message button on top left of your screen" msgstr "Cliceáil ar an gcnaipe teachtaireachta nua ar bharr clé do scáileáin" -#: ../../groupware/mail.rst:47 +#: ../../groupware/mail.rst:64 msgid "Click the (...) action menu on the modal composer" msgstr "Cliceáil ar an roghchlár gníomhaíochta (...) ar an gcumadóir módúil" -#: ../../groupware/mail.rst:48 +#: ../../groupware/mail.rst:65 msgid "Click *send later*" msgstr "Cliceáil *seol níos déanaí*" -#: ../../groupware/mail.rst:53 +#: ../../groupware/mail.rst:70 msgid "Priority inbox" msgstr "Bosca isteach tosaíochta" -#: ../../groupware/mail.rst:54 +#: ../../groupware/mail.rst:71 msgid "" "Priority inbox has 2 section *Important* and *Others*. Messages will " "automatically be marked as important based on which messages you interacted " @@ -116,11 +168,11 @@ msgstr "" "tábhachtach. Ar dtús b'fhéidir go mbeadh ort an tábhacht a bhaineann leis an" " gcóras a mhúineadh a athrú de láimh, ach feabhsóidh sé le himeacht ama." -#: ../../groupware/mail.rst:60 +#: ../../groupware/mail.rst:77 msgid "All inboxes" msgstr "Gach bosca isteach" -#: ../../groupware/mail.rst:61 +#: ../../groupware/mail.rst:78 msgid "" "All messages from all the accounts you have logged in, will be shown here " "chronologically." @@ -128,39 +180,39 @@ msgstr "" "Taispeánfar gach teachtaireacht ó na cuntais go léir a logáil tú isteach " "anseo go croineolaíoch." -#: ../../groupware/mail.rst:66 +#: ../../groupware/mail.rst:83 msgid "Account settings" msgstr "Socruithe cuntas" -#: ../../groupware/mail.rst:67 +#: ../../groupware/mail.rst:84 msgid "Your account settings such as:" msgstr "Do shocruithe cuntais ar nós:" -#: ../../groupware/mail.rst:69 +#: ../../groupware/mail.rst:86 msgid "Aliases" msgstr "Ailiasanna" -#: ../../groupware/mail.rst:70 +#: ../../groupware/mail.rst:87 msgid "Signature" msgstr "Síniú" -#: ../../groupware/mail.rst:71 +#: ../../groupware/mail.rst:88 msgid "Default Folders" msgstr "Fillteáin Réamhshocraithe" -#: ../../groupware/mail.rst:72 +#: ../../groupware/mail.rst:89 msgid "Autoresponder" msgstr "Uathfhreagróir" -#: ../../groupware/mail.rst:73 +#: ../../groupware/mail.rst:90 msgid "Trusted senders" msgstr "Seoltóirí iontaofa" -#: ../../groupware/mail.rst:74 +#: ../../groupware/mail.rst:91 msgid "..and more" msgstr "..agus eile" -#: ../../groupware/mail.rst:76 +#: ../../groupware/mail.rst:93 msgid "" "Can be found in the action menu of a mail account. There you can edit, add " "or remove settings depending on your need." @@ -169,43 +221,43 @@ msgstr "" "féidir leat socruithe a chur in eagar, a chur leis nó a bhaint ag brath ar " "do riachtanas." -#: ../../groupware/mail.rst:79 +#: ../../groupware/mail.rst:96 msgid "Move messages to Junk folder" msgstr "Bog teachtaireachtaí chuig an bhfillteán Dramhaíola" -#: ../../groupware/mail.rst:83 +#: ../../groupware/mail.rst:100 msgid "" "Mail can move a message to a different folder when it is marked as junk." msgstr "" "Is féidir le post teachtaireacht a aistriú go fillteán eile nuair a " "mharcáiltear é mar dhramhphost." -#: ../../groupware/mail.rst:85 ../../groupware/mail.rst:115 -#: ../../groupware/mail.rst:142 +#: ../../groupware/mail.rst:102 ../../groupware/mail.rst:134 +#: ../../groupware/mail.rst:161 msgid "Visit Account settings" msgstr "Tabhair cuairt ar shocruithe Cuntais" -#: ../../groupware/mail.rst:86 +#: ../../groupware/mail.rst:103 msgid "Go to Default folders" msgstr "Téigh go dtí fillteáin Réamhshocraithe" -#: ../../groupware/mail.rst:87 +#: ../../groupware/mail.rst:104 msgid "Check that a folder is selected for the junk messages" msgstr "Seiceáil go bhfuil fillteán roghnaithe do na dramhtheachtaireachtaí" -#: ../../groupware/mail.rst:88 +#: ../../groupware/mail.rst:105 msgid "Go to Junk settings" msgstr "Téigh go dtí socruithe Junk" -#: ../../groupware/mail.rst:89 +#: ../../groupware/mail.rst:106 msgid "Click Move messages to Junk folder" msgstr "Cliceáil Bog teachtaireachtaí chuig fillteán Junk" -#: ../../groupware/mail.rst:94 +#: ../../groupware/mail.rst:111 msgid "Search in mailbox" msgstr "Cuardaigh sa bhosca poist" -#: ../../groupware/mail.rst:97 +#: ../../groupware/mail.rst:115 msgid "" "At the top of the envelope list in any mail layout, there is a search field " "shortcut for searching email subjects. Starting from ``version 3.7``, this " @@ -217,11 +269,11 @@ msgstr "" "3.7``, ceadaíonn an aicearra seo duit cuardach a dhéanamh de réir ábhair, " "faighteoir (chuig), nó seoltóir (ó) de réir réamhshocraithe." -#: ../../groupware/mail.rst:101 +#: ../../groupware/mail.rst:119 msgid "Advanced search in mailbox" msgstr "Cuardach casta sa bhosca poist" -#: ../../groupware/mail.rst:105 +#: ../../groupware/mail.rst:123 msgid "" "You can access our advanced search feature through a modal located at the " "end of the search shortcut." @@ -229,11 +281,11 @@ msgstr "" "Is féidir leat ár ngné ardchuardaigh a rochtain trí mhodh atá suite ag " "deireadh an aicearra cuardaigh." -#: ../../groupware/mail.rst:108 ../../groupware/mail.rst:117 +#: ../../groupware/mail.rst:126 ../../groupware/mail.rst:136 msgid "Enable mail body search" msgstr "Cumasaigh cuardach coirp poist" -#: ../../groupware/mail.rst:111 +#: ../../groupware/mail.rst:130 msgid "" "Mail bodies can now be searched, this feature is opt-in because of potential" " performance issues." @@ -241,15 +293,15 @@ msgstr "" "Is féidir comhlachtaí poist a chuardach anois, tá rogha an diúltaithe sa " "ghné seo mar gheall ar cheisteanna feidhmíochta féideartha." -#: ../../groupware/mail.rst:113 +#: ../../groupware/mail.rst:132 msgid "To enable it:" msgstr "Chun é a chumasú:" -#: ../../groupware/mail.rst:116 +#: ../../groupware/mail.rst:135 msgid "Go to Mailbox search" msgstr "Téigh chuig cuardach Bosca Poist" -#: ../../groupware/mail.rst:119 +#: ../../groupware/mail.rst:138 msgid "" "If you want to also enable it for unified mailboxes you have to do so in " "Mail settings" @@ -257,7 +309,7 @@ msgstr "" "Más mian leat é a chumasú freisin do bhoscaí poist aontaithe caithfidh tú é " "sin a dhéanamh i socruithe Ríomhphoist" -#: ../../groupware/mail.rst:121 +#: ../../groupware/mail.rst:140 msgid "" "By enabling it the main search box will now search in both subjects and mail" " bodies, and a separate *Body* option will appear in advanced search." @@ -266,11 +318,11 @@ msgstr "" " agus i gcomhlachtaí poist, agus beidh rogha *Comhlacht* ar leith le " "feiceáil san ardchuardach." -#: ../../groupware/mail.rst:125 +#: ../../groupware/mail.rst:144 msgid "Account delegation" msgstr "Tarmligean cuntais" -#: ../../groupware/mail.rst:127 +#: ../../groupware/mail.rst:146 msgid "" "The app allows account delegation so that one user can send emails from the " "address of another." @@ -278,22 +330,22 @@ msgstr "" "Ceadaíonn an aip tarmligean cuntais ionas gur féidir le húsáideoir amháin " "ríomhphoist a sheoladh ó sheoladh duine eile." -#: ../../groupware/mail.rst:129 +#: ../../groupware/mail.rst:148 msgid "The delegation has to be configured on the mail server by an admin" msgstr "" "Ní mór don riarthóir an tarmligean a chumrú ar an bhfreastalaí ríomhphoist" -#: ../../groupware/mail.rst:130 +#: ../../groupware/mail.rst:149 msgid "Add the other email address as an alias for your own email account" msgstr "" "Cuir an seoladh ríomhphoist eile leis mar ailias do do chuntas ríomhphoist " "féin" -#: ../../groupware/mail.rst:131 +#: ../../groupware/mail.rst:150 msgid "When sending an email, select the alias as sender" msgstr "Agus ríomhphost á sheoladh, roghnaigh an ailias mar sheoltóir" -#: ../../groupware/mail.rst:133 +#: ../../groupware/mail.rst:152 msgid "" "The sent email might not be visible to the original account if it's stored " "in your personal *Sent* mailbox." @@ -301,11 +353,11 @@ msgstr "" "Seans nach mbeidh an ríomhphost seolta le feiceáil ag an mbunchuntas má tá " "sé stóráilte i do bhosca ríomhphoist pearsanta *Sent*." -#: ../../groupware/mail.rst:136 +#: ../../groupware/mail.rst:155 msgid "Automatic trash deletion" msgstr "Bruscar a scriosadh go huathoibríoch" -#: ../../groupware/mail.rst:140 +#: ../../groupware/mail.rst:159 msgid "" "The Mail app can automatically delete messages in the trash folder after a " "certain number of days." @@ -313,45 +365,45 @@ msgstr "" "Is féidir leis an app Mail teachtaireachtaí a scriosadh go huathoibríoch sa " "fhillteán bruscar tar éis roinnt laethanta áirithe." -#: ../../groupware/mail.rst:143 +#: ../../groupware/mail.rst:162 msgid "Go to Automatic trash deletion" msgstr "Téigh go dtí Scriosadh Bruscar Uathoibríoch" -#: ../../groupware/mail.rst:144 +#: ../../groupware/mail.rst:163 msgid "Enter the number of days after which messages should be deleted" msgstr "" "Cuir isteach an líon laethanta ina dhiaidh sin ba cheart teachtaireachtaí a " "scriosadh" -#: ../../groupware/mail.rst:146 +#: ../../groupware/mail.rst:165 msgid "Disable trash retention by leaving the field empty or setting it to 0." msgstr "" "Díchumasaigh coinneáil bruscair tríd an bpáirc a fhágáil folamh nó é a " "shocrú go 0." -#: ../../groupware/mail.rst:148 +#: ../../groupware/mail.rst:167 msgid "Only mails deleted after enabling trash retention will be processed." msgstr "" "Ní phróiseálfar ach ríomhphoist a scriostar tar éis coinneáil bruscair a " "chumasú." -#: ../../groupware/mail.rst:153 +#: ../../groupware/mail.rst:172 msgid "Compose messages" msgstr "Teachtaireachtaí a chumadh" -#: ../../groupware/mail.rst:155 +#: ../../groupware/mail.rst:174 msgid "Click new message on the top left of your screen" msgstr "Cliceáil ar theachtaireacht nua ar bharr do scáileáin ar chlé" -#: ../../groupware/mail.rst:156 +#: ../../groupware/mail.rst:175 msgid "Start writing your message" msgstr "Tosaigh ag scríobh do theachtaireacht" -#: ../../groupware/mail.rst:160 +#: ../../groupware/mail.rst:179 msgid "Recipient info on composer" msgstr "Eolas faighteoir faoin gcumadóir" -#: ../../groupware/mail.rst:164 +#: ../../groupware/mail.rst:183 msgid "" "When you add your first recipient or contact in the \"To\" field, a right " "pane will appear displaying the saved profile details of that contact. " @@ -371,11 +423,11 @@ msgstr "" "ceart a thaispeáint arís, níl le déanamh ach cliceáil ar an deilbhín " "íoslaghdaithe san áit chéanna." -#: ../../groupware/mail.rst:170 +#: ../../groupware/mail.rst:189 msgid "Mention contacts" msgstr "Luaigh teagmhálaithe" -#: ../../groupware/mail.rst:174 +#: ../../groupware/mail.rst:193 msgid "" "You can mention contacts in your message by typing ``@`` and then selecting " "the contact from the list. By doing so the contact will be automatically " @@ -385,15 +437,15 @@ msgstr "" "chlóscríobh agus ansin an teagmhálaí a roghnú ón liosta. Trí seo a dhéanamh " "cuirfear an teagmhálaí leis go huathoibríoch mar fhaighteoir." -#: ../../groupware/mail.rst:177 +#: ../../groupware/mail.rst:196 msgid "Only contacts with a valid email address will be suggested." msgstr "Ní mholtar ach teagmhálaithe a bhfuil seoladh ríomhphoist bailí acu." -#: ../../groupware/mail.rst:180 +#: ../../groupware/mail.rst:199 msgid "Minimize the composer modal" msgstr "Íoslaghdaigh modúl an chumadóra" -#: ../../groupware/mail.rst:184 +#: ../../groupware/mail.rst:203 msgid "" "The composer modal can be minimized while writing a new message, editing an " "existing draft or editing a message from the outbox. Simply click the " @@ -405,7 +457,7 @@ msgstr "" "chur in eagar. Níl le déanamh ach cliceáil ar an gcnaipe íoslaghdaithe ar " "bharr an mhodha ar dheis nó cliceáil áit ar bith lasmuigh den mhodh." -#: ../../groupware/mail.rst:188 +#: ../../groupware/mail.rst:207 msgid "" "You can resume your minimized message by clicking anywhere on the indicator " "on the bottom right of your screen." @@ -413,7 +465,7 @@ msgstr "" "Is féidir leat do theachtaireacht íoslaghdaithe a atosú trí chliceáil áit ar" " bith ar an táscaire ar thaobh na láimhe deise ag bun do scáileáin." -#: ../../groupware/mail.rst:192 +#: ../../groupware/mail.rst:211 msgid "" "Press the close button on the modal or the indicator in the bottom right " "corner to stop editing a message. A draft will be saved automatically into " @@ -423,11 +475,11 @@ msgstr "" "dheis chun deireadh a chur le heagarthóireacht teachtaireacht. Déanfar " "dréacht a shábháil go huathoibríoch i do dhréachtbhosca poist." -#: ../../groupware/mail.rst:195 +#: ../../groupware/mail.rst:214 msgid "Outbox" msgstr "Bosca Amach" -#: ../../groupware/mail.rst:197 +#: ../../groupware/mail.rst:216 msgid "" "When a message has been composed and the \"Send\" button was clicked, the " "message is added to the outbox which can be found in the bottom left corner " @@ -437,7 +489,7 @@ msgstr "" "\"Seol\", cuirtear an teachtaireacht leis an mbosca amach atá le fáil sa " "chúinne ag bun ar chlé den bharra taoibh ar chlé." -#: ../../groupware/mail.rst:199 +#: ../../groupware/mail.rst:218 msgid "" "You can also set the date and time for the send operation to a point in the " "future (see :ref:`Scheduled messages `)- the " @@ -450,7 +502,7 @@ msgstr "" "go dtiocfaidh an dáta agus an t-am roghnaithe agat, ansin seolfar go " "huathoibríoch í." -#: ../../groupware/mail.rst:201 +#: ../../groupware/mail.rst:220 msgid "" "The outbox is only visible when there is a message waiting to be handled by " "the outbox." @@ -458,7 +510,7 @@ msgstr "" "Ní bhíonn an bosca amach le feiceáil ach amháin nuair a bhíonn " "teachtaireacht ag fanacht le láimhseáil ag an mbosca amach." -#: ../../groupware/mail.rst:203 +#: ../../groupware/mail.rst:222 msgid "" "You can re- open the composer for a message in the outbox any time before " "the \"send\"- operation is triggered." @@ -466,18 +518,18 @@ msgstr "" "Is féidir leat an cumadóir a athoscailt le haghaidh teachtaireachta sa " "bhosca amach am ar bith sula gcuirtear tús leis an oibríocht \"seol\"." -#: ../../groupware/mail.rst:206 +#: ../../groupware/mail.rst:225 msgid "" "When an error occurs during sending, three error messages are possible:" msgstr "" "Nuair a tharlaíonn earráid le linn seolta, is féidir trí theachtaireacht " "earráide:" -#: ../../groupware/mail.rst:208 +#: ../../groupware/mail.rst:227 msgid "Could not copy to \"Sent\" mailbox" msgstr "Níorbh fhéidir cóip a dhéanamh chuig an mbosca ríomhphoist \"Seolta\"." -#: ../../groupware/mail.rst:209 +#: ../../groupware/mail.rst:228 msgid "" "The mail was sent but couldn't be copied to the \"Sent\" mailbox. This error" " will be handled by the outbox and the copy operation will be tried again." @@ -486,11 +538,11 @@ msgstr "" "ríomhphoist \"Seolta\". Déanfaidh an bosca amach an earráid seo a láimhseáil" " agus bainfear triail eile as an oibríocht chóipeála." -#: ../../groupware/mail.rst:210 +#: ../../groupware/mail.rst:229 msgid "Mail server error" msgstr "Earráid freastalaí ríomhphoist" -#: ../../groupware/mail.rst:211 +#: ../../groupware/mail.rst:230 msgid "" "Sending was unsuccessful with a state than can be retried (ex: the SMTP " "server couldn't be reached). The outbox will retry sending the message." @@ -499,11 +551,11 @@ msgstr "" "shampla: níorbh fhéidir an freastalaí SMTP a bhaint amach). Déanfaidh an " "bosca amach iarracht an teachtaireacht a sheoladh arís." -#: ../../groupware/mail.rst:212 +#: ../../groupware/mail.rst:231 msgid "Message could not be sent" msgstr "Níorbh fhéidir an teachtaireacht a sheoladh" -#: ../../groupware/mail.rst:213 +#: ../../groupware/mail.rst:232 msgid "" "Sending might or might not have failed. The mail server can't tell us the " "state of the message. Since the Mail app has no way to determine the state " @@ -516,39 +568,39 @@ msgstr "" "(seolta nó nár seoladh) fanfaidh an teachtaireacht sa bhosca amach agus " "caithfidh úsáideoir an chuntais cinneadh a dhéanamh conas dul ar aghaidh." -#: ../../groupware/mail.rst:217 +#: ../../groupware/mail.rst:236 msgid "Mailbox actions" msgstr "Gníomhartha bosca poist" -#: ../../groupware/mail.rst:220 +#: ../../groupware/mail.rst:239 msgid "Add a mailbox" msgstr "Cuir bosca poist leis" -#: ../../groupware/mail.rst:221 +#: ../../groupware/mail.rst:240 msgid "Open the action menu of an account" msgstr "Oscail an roghchlár gníomhaíochta de chuntas" -#: ../../groupware/mail.rst:222 +#: ../../groupware/mail.rst:241 msgid "Click add mailbox" msgstr "Cliceáil cuir bosca poist leis" -#: ../../groupware/mail.rst:225 +#: ../../groupware/mail.rst:244 msgid "Add a submailbox" msgstr "Cuir bosca fo-phoist leis" -#: ../../groupware/mail.rst:226 +#: ../../groupware/mail.rst:245 msgid "Open the action menu of a mailbox" msgstr "Oscail an roghchlár gníomhaíochta de bhosca poist" -#: ../../groupware/mail.rst:227 +#: ../../groupware/mail.rst:246 msgid "Click add submailbox" msgstr "Cliceáil cuir fo-bhosca leis" -#: ../../groupware/mail.rst:230 +#: ../../groupware/mail.rst:249 msgid "Shared mailbox" msgstr "Bosca poist roinnte" -#: ../../groupware/mail.rst:231 +#: ../../groupware/mail.rst:250 msgid "" "If a mailbox was shared with you with some specific rights, that mailbox " "will show as a new mailbox with a shared icon as below:" @@ -556,34 +608,34 @@ msgstr "" "Má roinneadh bosca poist leat le roinnt cearta ar leith, taispeánfar an " "bosca poist sin mar bhosca poist nua le deilbhín roinnte mar atá thíos:" -#: ../../groupware/mail.rst:236 +#: ../../groupware/mail.rst:255 msgid "Envelope actions" msgstr "Gníomhartha clúdaigh" -#: ../../groupware/mail.rst:239 +#: ../../groupware/mail.rst:258 msgid "Create an event" msgstr "Cruthaigh imeacht" -#: ../../groupware/mail.rst:240 +#: ../../groupware/mail.rst:259 msgid "Create an event for a certain message/thread directly via mail app" msgstr "" "Cruthaigh imeacht le haghaidh teachtaireacht / snáithe áirithe go díreach " "tríd an aip ríomhphoist" -#: ../../groupware/mail.rst:242 ../../groupware/mail.rst:255 -#: ../../groupware/mail.rst:263 +#: ../../groupware/mail.rst:261 ../../groupware/mail.rst:274 +#: ../../groupware/mail.rst:282 msgid "Open action menu of an envelope" msgstr "Oscail roghchlár gníomhaíochta an chlúdaigh" -#: ../../groupware/mail.rst:243 +#: ../../groupware/mail.rst:262 msgid "Click *More actions*" msgstr "Cliceáil *Tuilleadh gníomhartha*" -#: ../../groupware/mail.rst:244 +#: ../../groupware/mail.rst:263 msgid "Click *Create event*" msgstr "Cliceáil *Cruthaigh imeacht*" -#: ../../groupware/mail.rst:246 +#: ../../groupware/mail.rst:265 msgid "" "Event title and an agenda is created for you if the administrator has " "enabled it." @@ -591,25 +643,25 @@ msgstr "" "Cruthaítear teideal an imeachta agus clár oibre duit má tá sé cumasaithe ag " "an riarthóir." -#: ../../groupware/mail.rst:249 +#: ../../groupware/mail.rst:268 msgid "Create a task" msgstr "Cruthaigh tasc" -#: ../../groupware/mail.rst:253 +#: ../../groupware/mail.rst:272 msgid "Create an task for a certain message/thread directly via mail app" msgstr "" "Cruthaigh tasc le haghaidh teachtaireacht / snáithe áirithe go díreach tríd " "an aip ríomhphoist" -#: ../../groupware/mail.rst:256 +#: ../../groupware/mail.rst:275 msgid "Click *more actions*" msgstr "Cliceáil *tuilleadh gníomhartha*" -#: ../../groupware/mail.rst:257 +#: ../../groupware/mail.rst:276 msgid "Click *create task*" msgstr "Cliceáil *cruthaigh tasc*" -#: ../../groupware/mail.rst:259 +#: ../../groupware/mail.rst:278 msgid "" "Tasks are stored in supported calendars. If there is no compatible calendar " "you can create a new one with the :ref:`calendar app`." @@ -618,23 +670,23 @@ msgstr "" "comhoiriúnach ann is féidir leat ceann nua a chruthú leis an :ref:`calendar " "app`." -#: ../../groupware/mail.rst:262 +#: ../../groupware/mail.rst:281 msgid "Edit tags" msgstr "Cuir clibeanna in eagar" -#: ../../groupware/mail.rst:264 +#: ../../groupware/mail.rst:283 msgid "Click *Edit tags*" msgstr "Cliceáil *Cuir clibeanna in eagar*" -#: ../../groupware/mail.rst:265 +#: ../../groupware/mail.rst:284 msgid "On the tags modal, set/unset tags" msgstr "Ar mhodúil na gclibeanna, socraigh/díshocraigh clibeanna" -#: ../../groupware/mail.rst:268 +#: ../../groupware/mail.rst:287 msgid "Change color for tags" msgstr "Athraigh dath le haghaidh clibeanna" -#: ../../groupware/mail.rst:274 +#: ../../groupware/mail.rst:293 msgid "" "Upon creating a tag, a randomly assigned color is automatically chosen. Once" " the tag is saved, you have the flexibility to customize its color according" @@ -646,11 +698,11 @@ msgstr "" "chun a dath a shaincheapadh de réir do chuid sainroghanna. Is féidir an ghné" " seo a fháil ar an roghchlár gníomhaíochta módúil Clib." -#: ../../groupware/mail.rst:277 +#: ../../groupware/mail.rst:296 msgid "Delete tags" msgstr "Scrios clibeanna" -#: ../../groupware/mail.rst:283 +#: ../../groupware/mail.rst:302 msgid "" "You now have the ability to delete tags that you have previously created. To" " access this feature:" @@ -658,15 +710,15 @@ msgstr "" "Tá an cumas agat anois clibeanna a chruthaigh tú roimhe seo a scriosadh. " "Chun an ghné seo a rochtain:" -#: ../../groupware/mail.rst:285 +#: ../../groupware/mail.rst:304 msgid "Open the action menu of an envelope/thread." msgstr "Oscail an roghchlár gníomhaíochta de chlúdach / snáithe." -#: ../../groupware/mail.rst:286 +#: ../../groupware/mail.rst:305 msgid "Select Edit tags." msgstr "Roghnaigh Cuir na clibeanna in eagar." -#: ../../groupware/mail.rst:287 +#: ../../groupware/mail.rst:306 msgid "" "Within the tags modal, open the action menu for the specific tag you wish to" " delete." @@ -674,7 +726,7 @@ msgstr "" "Laistigh den mhodh clibeanna, oscail an roghchlár gníomhaíochta don chlib " "shonrach is mian leat a scriosadh." -#: ../../groupware/mail.rst:289 +#: ../../groupware/mail.rst:308 msgid "" "Please note that default tags such as Work, To do, Personal, and Later " "cannot be deleted, they can only be renamed." @@ -683,11 +735,11 @@ msgstr "" "Déanamh, Pearsanta agus Níos Déanaí a scriosadh, ní féidir ach iad a " "athainmniú." -#: ../../groupware/mail.rst:292 +#: ../../groupware/mail.rst:311 msgid "AI summary" msgstr "Achoimre AI" -#: ../../groupware/mail.rst:296 +#: ../../groupware/mail.rst:315 msgid "" "When looking through your mailbox you will see a short AI generated summary " "of your emails as a preview." @@ -695,20 +747,20 @@ msgstr "" "Agus tú ag féachaint trí do bhosca poist feicfidh tú achoimre ghearr a " "ghintear le AI ar do ríomhphoist mar réamhamharc." -#: ../../groupware/mail.rst:298 ../../groupware/mail.rst:328 -#: ../../groupware/mail.rst:348 +#: ../../groupware/mail.rst:317 ../../groupware/mail.rst:347 +#: ../../groupware/mail.rst:367 msgid "Please note that the feature has to be enabled by the administrator" msgstr "Tabhair faoi deara go gcaithfidh an riarthóir an ghné a chumasú" -#: ../../groupware/mail.rst:301 +#: ../../groupware/mail.rst:320 msgid "Message actions" msgstr "Gníomhartha teachtaireachta" -#: ../../groupware/mail.rst:304 +#: ../../groupware/mail.rst:323 msgid "Unsubscribe from a mailing list" msgstr "Díliostáil ó liosta seoltaí" -#: ../../groupware/mail.rst:308 +#: ../../groupware/mail.rst:327 msgid "" "Some mailing lists and newsletters allow to be unsubscribed easily. If the " "Mail app detects messages from such a sender, it will show an *Unsubscribe* " @@ -720,11 +772,11 @@ msgstr "" "taispeánfaidh sé cnaipe *Díliostáil* in aice le faisnéis an tseoltóra. " "Cliceáil agus deimhnigh chun díliostáil ón liosta." -#: ../../groupware/mail.rst:311 +#: ../../groupware/mail.rst:330 msgid "Snooze" msgstr "Cur ar suan" -#: ../../groupware/mail.rst:315 +#: ../../groupware/mail.rst:334 msgid "" "Snoozing a message or thread moves it into a dedicated mailbox until the " "selected snooze date is reached and the message or thread is moved back to " @@ -734,24 +786,24 @@ msgstr "" "poist tiomnaithe é go dtí go sroichtear an dáta ar suan roghnaithe agus " "bogtar an teachtaireacht nó an snáithe ar ais go dtí an bosca poist bunaidh." -#: ../../groupware/mail.rst:317 +#: ../../groupware/mail.rst:336 msgid "Open action menu of an envelope or thread" msgstr "Oscail roghchlár gníomhaíochta clúdach litreach nó snáithe" -#: ../../groupware/mail.rst:318 +#: ../../groupware/mail.rst:337 msgid "Click *Snooze*" msgstr "Cliceáil *Snooze*" -#: ../../groupware/mail.rst:319 +#: ../../groupware/mail.rst:338 msgid "Select how long the message or thread should be snoozed" msgstr "" "Roghnaigh cá fhad ar cheart an teachtaireacht nó an snáithe a chur ar suan" -#: ../../groupware/mail.rst:322 +#: ../../groupware/mail.rst:341 msgid "Smart replies" msgstr "Freagraí cliste" -#: ../../groupware/mail.rst:326 +#: ../../groupware/mail.rst:345 msgid "" "When you open a message in the Mail app, it proposes AI-generated replies. " "By simply clicking on a suggested reply, the composer opens with the " @@ -761,16 +813,16 @@ msgstr "" "ghintear le AI. Trí chliceáil ar fhreagra molta, osclaíonn an cumadóir agus " "an freagra réamhlíonta." -#: ../../groupware/mail.rst:330 +#: ../../groupware/mail.rst:349 msgid "Supported languages depend on the used large language model" msgstr "" "Braitheann teangacha a dtacaítear leo ar an múnla mór teangacha a úsáidtear" -#: ../../groupware/mail.rst:333 +#: ../../groupware/mail.rst:352 msgid "Mail translation" msgstr "Aistriúchán ríomhphoist" -#: ../../groupware/mail.rst:337 +#: ../../groupware/mail.rst:356 msgid "" "You are able to translate messages to your configured languages similarly to" " Talk." @@ -778,17 +830,17 @@ msgstr "" "Tá tú in ann teachtaireachtaí a aistriú chuig do theangacha cumraithe mar an" " gcéanna le Talk." -#: ../../groupware/mail.rst:339 +#: ../../groupware/mail.rst:358 msgid "Please note that translation features have to be enabled on the server" msgstr "" "Tabhair faoi deara go gcaithfidh gnéithe aistriúcháin a bheith cumasaithe ar" " an bhfreastalaí" -#: ../../groupware/mail.rst:342 +#: ../../groupware/mail.rst:361 msgid "Thread summary" msgstr "Achoimre snáithe" -#: ../../groupware/mail.rst:344 +#: ../../groupware/mail.rst:363 msgid "" "The mail app supports summarizing message threads that contain 3 or more " "messages." @@ -796,7 +848,7 @@ msgstr "" "Tacaíonn an aip ríomhphoist le snáitheanna teachtaireachta a achoimriú ina " "bhfuil 3 theachtaireacht nó níos mó." -#: ../../groupware/mail.rst:350 +#: ../../groupware/mail.rst:369 msgid "" "Please note that this feature only works well with integration_openai. Local" " LLMs take too long to respond and the summary request is likely to time out" @@ -807,11 +859,11 @@ msgstr "" "thabhairt agus is dócha go dtiocfaidh deireadh leis an iarratas achomair " "agus go gcruthóidh sé ualach suntasach córais fós." -#: ../../groupware/mail.rst:353 +#: ../../groupware/mail.rst:372 msgid "Filtering and autoresponder" msgstr "Scagadh agus uathfhreagróir" -#: ../../groupware/mail.rst:355 +#: ../../groupware/mail.rst:374 msgid "" "The Mail app has a editor for Sieve scripts, an interface to configure " "autoresponders and an interface to configure filters. Sieve has to be " @@ -821,15 +873,15 @@ msgstr "" "uathfhreagróirí a chumrú agus comhéadan chun scagairí a chumrú. Ní mór " "criathar a chumasú sna :ref:`socruithe cuntais `." -#: ../../groupware/mail.rst:358 +#: ../../groupware/mail.rst:377 msgid "Autoresponders" msgstr "Uathfhreagróirí" -#: ../../groupware/mail.rst:360 +#: ../../groupware/mail.rst:379 msgid "Autoresponder can follow system settings." msgstr "Is féidir le uathfhreagróir socruithe an chórais a leanúint." -#: ../../groupware/mail.rst:362 +#: ../../groupware/mail.rst:381 msgid "" "The autoresponder is off by default. It can be set manually, or follow the " "system settings. Following system settings means that the long absence " @@ -842,15 +894,15 @@ msgstr "" "an :ref:`Socruithe Neamhláithreachta rannán ` i bhfeidhm " "go huathoibríoch." -#: ../../groupware/mail.rst:365 +#: ../../groupware/mail.rst:384 msgid "Filter" msgstr "Scagaire" -#: ../../groupware/mail.rst:369 +#: ../../groupware/mail.rst:388 msgid "Mail 4.1 includes a simple editor to configure filter rules." msgstr "Cuimsíonn Mail 4.1 eagarthóir simplí chun rialacha scagaire a chumrú." -#: ../../groupware/mail.rst:372 +#: ../../groupware/mail.rst:391 msgid "" "Importing existing filters is not supported. However, all existing filters " "will remain active and unchanged. We recommend backing up your current " @@ -861,71 +913,70 @@ msgstr "" "tacaíocht a thabhairt do do script reatha tríd an eagarthóir scripte Sieve " "mar réamhchúram." -#: ../../groupware/mail.rst:375 +#: ../../groupware/mail.rst:394 msgid "How to Add a New Filter" msgstr "Conas Scagaire Nua a Chur Leis" -#: ../../groupware/mail.rst:377 ../../groupware/mail.rst:385 +#: ../../groupware/mail.rst:396 ../../groupware/mail.rst:404 msgid "Open your account settings." msgstr "Oscail do shocruithe cuntais." -#: ../../groupware/mail.rst:378 +#: ../../groupware/mail.rst:397 msgid "" "Verify that Sieve is enabled for your account (see Sieve server settings)." msgstr "" "Fíoraigh go bhfuil Sieve cumasaithe do do chuntas (féach socruithe " "freastalaí Sieve)." -#: ../../groupware/mail.rst:379 ../../groupware/mail.rst:387 +#: ../../groupware/mail.rst:398 ../../groupware/mail.rst:406 msgid "Click on Filters." msgstr "Cliceáil ar Scagairí." -#: ../../groupware/mail.rst:380 +#: ../../groupware/mail.rst:399 msgid "Select New Filter to create a new rule." msgstr "Roghnaigh Scagaire Nua chun riail nua a chruthú." -#: ../../groupware/mail.rst:383 +#: ../../groupware/mail.rst:402 msgid "How to Delete a Filter" msgstr "Conas Scagaire a Scriosadh" -#: ../../groupware/mail.rst:386 +#: ../../groupware/mail.rst:405 msgid "" "Ensure that Sieve is enabled for your account (see Sieve server settings)." msgstr "" "Cinntigh go bhfuil Sieve cumasaithe do do chuntas (féach socruithe " "freastalaí Sieve)." -#: ../../groupware/mail.rst:388 +#: ../../groupware/mail.rst:407 msgid "Hover over the filter you wish to delete, then click the trash icon." msgstr "" "Ainligh thar an scagaire is mian leat a scriosadh, ansin cliceáil ar an " "deilbhín bruscar." -#: ../../groupware/mail.rst:392 -msgid "Tests" -msgstr "Tástálacha" +#: ../../groupware/mail.rst:411 +msgid "Conditions" +msgstr "Coinníollacha" -#: ../../groupware/mail.rst:394 +#: ../../groupware/mail.rst:413 msgid "" -"Tests are applied to incoming emails on your mail server, targeting fields " -"such as subject (the email\\'s subject line), from (the sender), and to (the" -" recipient). You can use the following operators to define conditions for " -"these fields:" +"Conditions are applied to incoming emails on your mail server, targeting " +"fields such as Subject, Sender, and Recipient. You can use the following " +"operators to define conditions for these fields:" msgstr "" -"Cuirtear tástálacha i bhfeidhm ar ríomhphoist a thagann isteach ar do " -"fhreastalaí ríomhphoist, ag díriú ar réimsí mar ábhar (líne ábhair an " -"ríomhphoist), ó (an seoltóir), agus chuig (an faighteoir). Is féidir leat na" -" hoibreoirí seo a leanas a úsáid chun coinníollacha a shainiú do na réimsí " -"seo:" +"Cuirtear coinníollacha i bhfeidhm ar ríomhphoist isteach ar do fhreastalaí " +"ríomhphoist, ag díriú ar réimsí ar nós Ábhar, Seoltóir, agus Faighteoir. Is " +"féidir leat na hoibreoirí seo a leanas a úsáid chun coinníollacha a shainiú " +"do na réimsí seo:" -#: ../../groupware/mail.rst:396 +#: ../../groupware/mail.rst:415 msgid "" -"**is**: An exact match. The field must be identical to the provided value." +"**is exactly**: An exact match. The field must be identical to the provided " +"value." msgstr "" -"** is**: Meaitseáil chruinn. Caithfidh an réimse a bheith comhionann leis an" -" luach a sholáthraítear." +"**tá sé go díreach**: Meaitseáil chruinn. Ní mór don réimse a bheith " +"comhionann leis an luach a cuireadh ar fáil." -#: ../../groupware/mail.rst:397 +#: ../../groupware/mail.rst:416 msgid "" "**contains**: A substring match. The field matches if the provided value is " "contained within it. For example, \"report\" would match \"port\"." @@ -934,7 +985,7 @@ msgstr "" "soláthraithe istigh ann. Mar shampla, bheadh ​​\"tuairisc\" ag teacht le " "\"port\"." -#: ../../groupware/mail.rst:398 +#: ../../groupware/mail.rst:417 msgid "" "**matches**: A pattern match using wildcards. The \"*\" symbol represents " "any number of characters (including none), while \"?\" represents exactly " @@ -946,11 +997,11 @@ msgstr "" "\"?\" is ionann é agus carachtar amháin. Mar shampla, bheadh " "​​\"*tuairisc*\" ag teacht le \"Tuarascáil Gnó 2024\"." -#: ../../groupware/mail.rst:401 +#: ../../groupware/mail.rst:420 msgid "Actions" msgstr "Gníomhartha" -#: ../../groupware/mail.rst:403 +#: ../../groupware/mail.rst:422 msgid "" "Actions are triggered when the specified tests are true. The following " "actions are available:" @@ -958,16 +1009,16 @@ msgstr "" "Spreagtar gníomhartha nuair a bhíonn na tástálacha sonraithe fíor. Tá na " "gníomhartha seo a leanas ar fáil:" -#: ../../groupware/mail.rst:405 +#: ../../groupware/mail.rst:424 msgid "**fileinto**: Moves the message into a specified folder." msgstr "" "**fileinto**: Bogtar an teachtaireacht isteach i bhfillteán sonraithe." -#: ../../groupware/mail.rst:406 +#: ../../groupware/mail.rst:425 msgid "**addflag**: Adds a flag to the message." msgstr "**addflag**: Cuireann sé bratach leis an teachtaireacht." -#: ../../groupware/mail.rst:407 +#: ../../groupware/mail.rst:426 msgid "" "**stop**: Halts the execution of the filter script. No further filters with " "will be processed after this action." @@ -975,11 +1026,35 @@ msgstr "" "**stop**: Cuireann sé seo stop le feidhmiú na scripte scagaire. Ní dhéanfar " "aon scagairí eile a phróiseáil tar éis an ghnímh seo." -#: ../../groupware/mail.rst:411 +#: ../../groupware/mail.rst:429 +msgid "Create a filter from a message" +msgstr "Cruthaigh scagaire ó theachtaireacht" + +#: ../../groupware/mail.rst:433 +msgid "" +"To create a filter from a given message, open the message and then open the " +"menu by clicking on the three dots. Next, click on \"More actions\" followed" +" by \"Create mail filter.\"" +msgstr "" +"Chun scagaire a chruthú ó theachtaireacht ar leith, oscail an teachtaireacht" +" agus ansin oscail an roghchlár trí chliceáil ar na trí phonc. Ansin, " +"cliceáil ar \"Tuilleadh gníomhartha\" agus ansin \"Cruthaigh scagaire " +"ríomhphoist\"." + +#: ../../groupware/mail.rst:435 +msgid "" +"In the dialog, please select the conditions to match incoming messages and " +"continue by clicking on \"Create mail filter.\"" +msgstr "" +"Sa dialóg, roghnaigh na coinníollacha chun teachtaireachtaí isteach a " +"mheaitseáil agus lean ar aghaidh trí chliceáil ar \"Cruthaigh scagaire " +"ríomhphoist\"." + +#: ../../groupware/mail.rst:441 msgid "Follow-up reminders" msgstr "Meabhrúcháin leantacha" -#: ../../groupware/mail.rst:415 +#: ../../groupware/mail.rst:445 msgid "" "The Mail app will automatically remind you when an outgoing email did not " "receive a response. Each sent email will be analyzed by an AI to check " @@ -991,7 +1066,7 @@ msgstr "" "chun a sheiceáil an bhfuiltear ag súil le freagra. Tar éis ceithre lá " "taispeánfar gach ríomhphost ábhartha i do bhosca tosaíochta." -#: ../../groupware/mail.rst:419 +#: ../../groupware/mail.rst:449 msgid "" "When clicking on such an email a button will be shown to quickly follow up " "with all recipients. It is also possible to disable follow-up reminders for " @@ -1001,19 +1076,19 @@ msgstr "" " faighteoirí go léir a leanúint go tapa. Is féidir freisin meabhrúcháin " "leantacha a dhíchumasú le haghaidh ríomhphost seolta." -#: ../../groupware/mail.rst:422 +#: ../../groupware/mail.rst:452 msgid "Please note that the feature has to be enabled by the administrator." msgstr "Tabhair faoi deara go gcaithfidh an riarthóir an ghné a chumasú." -#: ../../groupware/mail.rst:425 +#: ../../groupware/mail.rst:455 msgid "Security" msgstr "Slándáil" -#: ../../groupware/mail.rst:428 +#: ../../groupware/mail.rst:458 msgid "Phishing detection" msgstr "Brath fioscaireachta" -#: ../../groupware/mail.rst:432 +#: ../../groupware/mail.rst:462 msgid "" "The Mail app will check for potential phishing attempts and will display a " "warning to the user." @@ -1021,11 +1096,11 @@ msgstr "" "Seiceálfaidh an aip Mail le haghaidh iarrachtaí fioscaireachta féideartha " "agus taispeánfaidh sé rabhadh don úsáideoir." -#: ../../groupware/mail.rst:434 +#: ../../groupware/mail.rst:464 msgid "The checks are the following:" msgstr "Seo a leanas na seiceálacha:" -#: ../../groupware/mail.rst:436 +#: ../../groupware/mail.rst:466 msgid "" "The sender address saved in the addressbook is not the same as the one in " "the mail account" @@ -1033,7 +1108,7 @@ msgstr "" "Níl an seoladh seoltóra atá sábháilte sa leabhar seoltaí mar an gcéanna leis" " an seoladh sa chuntas ríomhphoist" -#: ../../groupware/mail.rst:437 +#: ../../groupware/mail.rst:467 msgid "" "The sender is using a custom email address that doesn't match the from " "address" @@ -1041,20 +1116,20 @@ msgstr "" "Tá seoladh ríomhphoist saincheaptha in úsáid ag an seoltóir nach bhfuil ag " "teacht leis an seoladh ón seoladh" -#: ../../groupware/mail.rst:438 +#: ../../groupware/mail.rst:468 msgid "The sent date is set in the future" msgstr "Socraítear an dáta seolta amach anseo" -#: ../../groupware/mail.rst:439 +#: ../../groupware/mail.rst:469 msgid "Links in the message body are not pointing to the displayed text" msgstr "" "Níl naisc i gcorp na teachtaireachta ag díriú ar an téacs atá ar taispeáint" -#: ../../groupware/mail.rst:440 +#: ../../groupware/mail.rst:470 msgid "The reply-to address is not the same as the sender address" msgstr "Níl an seoladh freagartha mar an gcéanna leis an seoladh seoltóra" -#: ../../groupware/mail.rst:442 +#: ../../groupware/mail.rst:472 msgid "" "Please note that the warning does not mean that the message is a phishing " "attempt. It only means that the Mail app detected a potential phishing " @@ -1064,11 +1139,11 @@ msgstr "" "fioscaireachta atá sa teachtaireacht. Ní chiallaíonn sé ach gur bhraith an " "app Mail iarracht fioscaireachta féideartha." -#: ../../groupware/mail.rst:445 +#: ../../groupware/mail.rst:475 msgid "Internal addresses" msgstr "Seoltaí inmheánacha" -#: ../../groupware/mail.rst:449 +#: ../../groupware/mail.rst:479 msgid "" "The Mail app allows adding internal addresses and domains, and will warn the" " user if the address is not in the list, when sending and upon receiving a " @@ -1078,26 +1153,26 @@ msgstr "" "tabharfaidh sé rabhadh don úsáideoir mura bhfuil an seoladh ar an liosta, " "nuair a sheoltar agus nuair a fhaigheann sé teachtaireacht." -#: ../../groupware/mail.rst:451 +#: ../../groupware/mail.rst:481 msgid "To add an internal address:" msgstr "Chun seoladh inmheánach a chur leis:" -#: ../../groupware/mail.rst:453 +#: ../../groupware/mail.rst:483 msgid "Open the mail settings" msgstr "Oscail na socruithe ríomhphoist" -#: ../../groupware/mail.rst:454 +#: ../../groupware/mail.rst:484 msgid "Navigate to Privacy and security section" msgstr "Déan nascleanúint chuig an rannán Príobháideachta agus slándála" -#: ../../groupware/mail.rst:455 +#: ../../groupware/mail.rst:485 msgid "Enable the internal addresses by clicking on the checkbox" msgstr "Cumasaigh na seoltaí inmheánacha trí chliceáil ar an ticbhosca" -#: ../../groupware/mail.rst:456 +#: ../../groupware/mail.rst:486 msgid "Click the Add internal address button" msgstr "Cliceáil ar an gcnaipe Cuir seoladh inmheánach leis" -#: ../../groupware/mail.rst:457 +#: ../../groupware/mail.rst:487 msgid "Enter the address or domain and click Add" msgstr "Cuir isteach an seoladh nó an fearann ​​agus cliceáil Cuir" From 2dd9078886efe1060b84660334295afe4acbd5a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20M=C3=BCller?= <28591861+alexanderdd@users.noreply.github.com> Date: Wed, 11 Jun 2025 07:18:02 -0500 Subject: [PATCH 0108/1895] =?UTF-8?q?Update=20source=5Finstallation.rst=20?= =?UTF-8?q?-=20fix=20heading=20hierarchy=20f=C3=BCr=20snap=20section?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Alexander Müller <28591861+alexanderdd@users.noreply.github.com> --- admin_manual/installation/source_installation.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/admin_manual/installation/source_installation.rst b/admin_manual/installation/source_installation.rst index 18f13e956..c79a9f461 100644 --- a/admin_manual/installation/source_installation.rst +++ b/admin_manual/installation/source_installation.rst @@ -418,7 +418,7 @@ However, the snap is opinionated and there are `requirements `_. Configuration -------------- +^^^^^^^^^^^^^^^^^^^ While the default Nextcloud configurations are mostly fine, it may be necessary to fine tune Nextcloud snap by editing configuration files manually or using the management console. `Configuring Nextcloud snap `_. External media --------------- +^^^^^^^^^^^^^^^^^^^ `Snap confinement `_ is a security feature and determines the amount of access an application has to system resources, such as files, the network, peripherals and services. Thus your Nextcloud snap is securely confined from the host From ec494047fab1557a5ecaf2411d79c5a833a6890a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20M=C3=BCller?= <28591861+alexanderdd@users.noreply.github.com> Date: Mon, 16 Jun 2025 11:54:22 -0500 Subject: [PATCH 0109/1895] Update source_installation.rst - fix length of ^^^ in snap section MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Alexander Müller <28591861+alexanderdd@users.noreply.github.com> --- admin_manual/installation/source_installation.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/admin_manual/installation/source_installation.rst b/admin_manual/installation/source_installation.rst index c79a9f461..c1214a9d2 100644 --- a/admin_manual/installation/source_installation.rst +++ b/admin_manual/installation/source_installation.rst @@ -418,7 +418,7 @@ However, the snap is opinionated and there are `requirements `_. Configuration -^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^ While the default Nextcloud configurations are mostly fine, it may be necessary to fine tune Nextcloud snap by editing configuration files manually or using the management console. `Configuring Nextcloud snap `_. External media -^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^ `Snap confinement `_ is a security feature and determines the amount of access an application has to system resources, such as files, the network, peripherals and services. Thus your Nextcloud snap is securely confined from the host From 2f8e7e23ee5fc0d05a8f24198b528175c6baebf4 Mon Sep 17 00:00:00 2001 From: Richard Steinmetz Date: Mon, 16 Jun 2025 12:57:17 +0200 Subject: [PATCH 0110/1895] feat(developer): document \OCP\OCM\ICapabilityAwareOCMProvider Signed-off-by: Richard Steinmetz --- .../app_upgrade_guide/upgrade_to_32.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/developer_manual/app_publishing_maintenance/app_upgrade_guide/upgrade_to_32.rst b/developer_manual/app_publishing_maintenance/app_upgrade_guide/upgrade_to_32.rst index b33d36d7a..0c6dcac12 100644 --- a/developer_manual/app_publishing_maintenance/app_upgrade_guide/upgrade_to_32.rst +++ b/developer_manual/app_publishing_maintenance/app_upgrade_guide/upgrade_to_32.rst @@ -48,6 +48,7 @@ Added APIs - New method ``\OCP\Files\Template\ITemplateManager::listTemplateFields`` to allow listing the fields of a template. - New method ``\OCA\Files\Controller\TemplateController::listTemplateFields`` to list the fields of a template, accessible at ``/ocs/v2.php/apps/files/api/v1/templates/fields/{fileId}``. - New method ``\OCP\Files\Template\BeforeGetTemplatesEvent::shouldGetFields`` to get the event's ``withFields`` property, which should determine whether or not to perform template field extraction on the returned templates. +- New interface ``\OCP\OCM\ICapabilityAwareOCMProvider`` to extend the OCM provider with 1.1 and 1.2 extensions of the Open Cloud Mesh Discovery API Changed APIs ^^^^^^^^^^^^ @@ -65,6 +66,7 @@ Deprecated APIs - ``\OC_User::useBackend`` is deprecated, please use ``\OCP\IUserManager::registerBackend`` available since 8.0.0 - ``\OC_User::clearBackends`` is deprecated, please use ``\OCP\IUserManager::clearBackends`` available since 8.0.0 - ``\OC_Helper::isReadOnlyConfigEnabled`` is deprecated, please use the ``config_is_read_only`` system config directly. +- ``\OCP\OCM\IOCMProvider`` is deprecated, please use ``\OCP\OCM\ICapabilityAwareOCMProvider`` available since 32.0.0 Removed APIs ^^^^^^^^^^^^ From 74509595bc7d26e5897191172f012a2b270379fc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Jun 2025 07:06:11 +0000 Subject: [PATCH 0111/1895] chore(deps): bump shivammathur/setup-php from 2.33.0 to 2.34.1 Bumps [shivammathur/setup-php](https://github.com/shivammathur/setup-php) from 2.33.0 to 2.34.1. - [Release notes](https://github.com/shivammathur/setup-php/releases) - [Commits](https://github.com/shivammathur/setup-php/compare/cf4cade2721270509d5b1c766ab3549210a39a2a...0f7f1d08e3e32076e51cae65eb0b0c871405b16e) --- updated-dependencies: - dependency-name: shivammathur/setup-php dependency-version: 2.34.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/openapi.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/openapi.yml b/.github/workflows/openapi.yml index 5975d5339..4145a5793 100644 --- a/.github/workflows/openapi.yml +++ b/.github/workflows/openapi.yml @@ -20,7 +20,7 @@ jobs: submodules: true - name: Set up php - uses: shivammathur/setup-php@cf4cade2721270509d5b1c766ab3549210a39a2a # v2 + uses: shivammathur/setup-php@0f7f1d08e3e32076e51cae65eb0b0c871405b16e # v2 with: php-version: '8.1' # https://docs.nextcloud.com/server/stable/admin_manual/installation/source_installation.html#prerequisites-for-manual-installation From 19084af7f7f3011e3fc4046787a4303b0a02c820 Mon Sep 17 00:00:00 2001 From: rakekniven <2069590+rakekniven@users.noreply.github.com> Date: Sun, 15 Jun 2025 23:25:44 +0200 Subject: [PATCH 0112/1895] Update index.html Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com> --- index.html | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/index.html b/index.html index fdd9eb6dc..40e0b16ee 100644 --- a/index.html +++ b/index.html @@ -219,7 +219,7 @@ -
-

Nextcloud 29

-

This documents the last supported stable version of Nextcloud.

- -
-

Nextcloud Desktop Client

Once you have a Nextcloud Server running, you can connect to it with various clients like our mobile and desktop client. @@ -260,6 +248,17 @@ release or get access to long term security and stability updates with Nextcloud Enterprise.

+ +

Nextcloud 28

Nextcloud 30

-

This documents the previous stable (still supported) version of Nextcloud.

+

This documents the last supported stable version of Nextcloud.