Some S3-compatible object storage hosts don't like the ETag being included in
the request and return a MalformedXML response. In the AWS API documentation,
only the object key is required so just pass that in.
Signed-off-by: Kent Delante <kent.delante@proton.me>
The occ files_external_backends command is supposed to list available backends along with their configuration options.
For the SMB backend, only the timeout option is currently shown, while options like host, share, root, and domain are missing. This makes configuring external storage via occ complicated.
Since the timeout option is marked as hidden but still shown, while the other options are not, the logic needs to be inverted so that all relevant configuration options are displayed correctly.
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Update expected values in ManagerTest to reflect the new behavior
where share expiration dates are set to 23:59:59 instead of 00:00:00.
Signed-off-by: nfebe <fenn25.fn@gmail.com>
Shares now expire at the end of the selected day instead of the
beginning, allowing access throughout the entire expiration day.
Also return actual stored time in API response instead of hardcoded
00:00:00 to prevent timezone-related display issues in the UI.
Signed-off-by: nfebe <fenn25.fn@gmail.com>
This avoids errors like 'Cannot modify header information - headers already sent',
when using --debug-log with occ.
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
- app info was not valid according to XSD (missing `<bugs>`)
- license info for l10n was missing
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
This needs to be able to directly download files if specified to only
download a single file and not a folder.
Also it was possible to either pass a files array json encoded or a
single file not encoded at all.
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
"jQuery is deprecated and will be removed with Nextcloud 19"
Well... At least it is removed now 😉
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
It is deprecated since 29.0.0.
Instead use `openConflictPicker` from the `@nextcloud/upload` (Vue 2).
Or from `@nextcloud/dialogs` (every other framework like Vue 3 etc).
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
The condition to sort by order was missing, so the views were only
sorted by name. Added the most important order condition and proper
tests for this.
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
This fixes invalid error messages if the action has an empty
displayname, often the case for inline actions
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
When the activity integration is used we need to open the `activity` tab
not the comments tab.
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Root attributes must not be accessed by the internal `attributes`.
Trying to do so will return `undefined`, so instead use the root `id`
property of nodes.
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Initialize the folder tree based on the current directory.
Also only include views needed.
If possible reuse nodes from files store to prevent API call.
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Added in #52175 but only to the missing indices listener. Resulted in new installations trigger warnings about database missing indices unnecessary.
Signed-off-by: Josh <josh.t.richards@gmail.com>
Fix possible dead locks when running the propagator caused by two
requests updating the same amount rows in transactions.
- Lock rows always in the same deterministic order by sorting the
path_hash first
- On all database outside of sqlite, also do first a SELECT FOR UPDATE
to lock all the rows used in batch UPDATE calls, afterward to decrease
the risk of two requests trying to lock the same rows
Signed-off-by: Carl Schwan <carlschwan@kde.org>
Adjust test assertions to match the new behavior where scrolling is
skipped for files already in the visible buffer. Tests now verify file
existence rather than full visibility for files within the buffer.
Signed-off-by: nfebe <fenn25.fn@gmail.com>
Skip scrolling when a file is clicked if it's already within the
visible viewport, avoiding the confusing list jump behavior.
Fixes#54700
Signed-off-by: nfebe <fenn25.fn@gmail.com>
1. only show 1 loading toast instead of N for N files in batch
operation.
2. Reuse more code to reduce duplicated logic.
3. Show the conflict picker once for all files instead of opening a new
conflict picker for every file to copy / move.
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Birthdate was missing in editable fields while being editable, and the
order was checked while having no importance.
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Add config option shareapi_bundle_reshare_with_edit to include reshare
permission in "Allow editing" bundle. Default is true to maintain
backward compatibility.
Signed-off-by: nfebe <fenn25.fn@gmail.com>
Signed-off-by: Carl Schwan <carlschwan@kde.org>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Other files like files in trashbin or file versions should be exported
by related app
Signed-off-by: Benjamin Gaussorgues <benjamin.gaussorgues@nextcloud.com>
This will prevent users from editing profile fields if those are
configured to be sync from LDAP.
I did not include the avatar in this because it has a special handling.
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
In practice this filters out backup codes. Also fixed the english
formulation and the copyright year.
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
When drag and drop a file we only want to scroll to the uploaded file
not changing the current view.
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
- Use modern node and SetupManager API
- Avoid passing the user by id and instead use IUser
Signed-off-by: Carl Schwan <carl.schwan@nextcloud.com>
Signed-off-by: Carl Schwan <carlschwan@kde.org>
Instead of creating a CacheEntryRemovedEvent for each deleted files,
create a single CacheEntriesRemovedEvent which wrap multiple
CacheEntryRemovedEvent.
This allow listener to optimize the query they do when multiple files
are deleted at the same time (e.g. when deleting a folder).
Signed-off-by: Carl Schwan <carl.schwan@nextclound.com>
The displayName call was still using the old positional arguments
(nodes, view) instead of the new object parameter format (actionContext)
after the @nextcloud/files 4.0.0 update.
Signed-off-by: nfebe <fenn25.fn@gmail.com>
Add InstallationCompletedEvent class in public API (OCP namespace) that
provides installation details: data directory, admin username, and admin
email. Event will be dispatched after successful installation.
Include comprehensive unit tests covering all event scenarios.
Signed-off-by: Misha M.-Kupriyanov <kupriyanov@strato.de>
Those are not Unit tests but integration tests with bad side effects on
other tests. I failed to clean them up so removing them.
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Migrate away from jQuery and Snap.js for the navigation.
This is required to finally drop both dependencies.
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Currently, it is documented in some places as returning a string but
returns a int or a string depending on the database used.
This then breaks then using strict comparaison in https://github.com/nextcloud/approval/pull/362
Signed-off-by: Carl Schwan <carlschwan@kde.org>
It's used by a lot of apps so expose just the two methods that are most
of the time used, to prevent the apps to relly on private APIs.
Signed-off-by: Carl Schwan <carlschwan@kde.org>
When requesting previews, which we don't find in oc_previews, search in
IAppData first before creating them.
Move the logic from MovepreviewJob to PreviewMigrationService and reuse
that in the Preview Generator.
At the same time rename MovePreviewJob to PreviewMigrationJob as it is a
better name.
Signed-off-by: Carl Schwan <carl.schwan@nextcloud.com>
2026-01-12 14:20:09 +01:00
2520 changed files with 23948 additions and 26613 deletions
@@ -58,7 +58,7 @@ There are many ways to contribute, of which development is only one! Find out [h
Third-party components are handled as git submodules which have to be initialized first. So aside from the regular git checkout invoking `git submodule update --init` or a similar command is needed, for details see Git documentation.
Several apps that are included by default in regular releases such as [First run wizard](https://github.com/nextcloud/firstrunwizard) or [Activity](https://github.com/nextcloud/activity) are missing in `stable33` and have to be installed manually by cloning them into the `apps` subfolder.
Several apps that are included by default in regular releases such as [First run wizard](https://github.com/nextcloud/firstrunwizard) or [Activity](https://github.com/nextcloud/activity) are missing in `master` and have to be installed manually by cloning them into the `apps` subfolder.
Otherwise, git checkouts can be handled the same as release archives, by using the `stable*` branches. Note they should never be used on production systems.
"{author} commented on {file}":"{author} pakomentavo {file}",
"<strong>Comments</strong> for files":"Failų <strong>komentarai</strong>",
"Files":"Failai",
"You were mentioned on \"{file}\", in a comment by an account that has since been deleted":"Buvote paminėtas „{file}“, komentare, kuris buvo parašytas iš paskyros, kuri vėliau buvo ištrinta.",
"{user} mentioned you in a comment on \"{file}\"":"{user} minėjo jus \"{file}\" komentare",
"Files app plugin to add comments to files":"Failų programėlės įskiepis, skirtas prie failų pridėti komentarus",
"Edit comment":"Taisyti komentarą",
"Delete comment":"Ištrinti komentarą",
"Cancel edit":"Atsisakyti taisymo",
"New comment":"Naujas komentaras",
"Write a comment …":"Rašyti komentarą ...",
"Post comment":"Paskelbti komentarą",
"@ for mentions, : for emoji, / for smart picker":"@ paminėjimams, : jaustukams, / išmaniajam rinkikliui",
"Could not reload comments":"Nepavyko įkelti komentarų iš naujo",
"Failed to mark comments as read":"Nepavyko pažymėti komentarų kaip perskaitytų",
"Unable to load the comments list":"Nepavyko įkelti komentarų sąrašo",
"No comments yet, start the conversation!":"Komentarų kol kas nėra, pradėkite pokalbį!",
"No more messages":"Daugiau jokių pranešimų",
"Retry":"Bandyti dar kartą",
"_1 new comment_::_{unread} new comments_":["1 neskaitytas komentaras","{unread} neskaityti komentarai","{unread} neskaitytų komentarų","{unread} neskaitytas komentaras"],
"Comment":"Komentaras",
"An error occurred while trying to edit the comment":"Bandant taisyti komentarą, įvyko klaida",
"Comment deleted":"Komentaras ištrintas",
"An error occurred while trying to delete the comment":"Bandant ištrinti komentarą, įvyko klaida",
"An error occurred while trying to create the comment":"Bandant sukurti komentarą, įvyko klaida",
"Write a comment …":"Rašyti komentarą..."
"An error occurred while trying to create the comment":"Bandant sukurti komentarą, įvyko klaida"
"{author} commented on {file}":"{author} pakomentavo {file}",
"<strong>Comments</strong> for files":"Failų <strong>komentarai</strong>",
"Files":"Failai",
"You were mentioned on \"{file}\", in a comment by an account that has since been deleted":"Buvote paminėtas „{file}“, komentare, kuris buvo parašytas iš paskyros, kuri vėliau buvo ištrinta.",
"{user} mentioned you in a comment on \"{file}\"":"{user} minėjo jus \"{file}\" komentare",
"Files app plugin to add comments to files":"Failų programėlės įskiepis, skirtas prie failų pridėti komentarus",
"Edit comment":"Taisyti komentarą",
"Delete comment":"Ištrinti komentarą",
"Cancel edit":"Atsisakyti taisymo",
"New comment":"Naujas komentaras",
"Write a comment …":"Rašyti komentarą ...",
"Post comment":"Paskelbti komentarą",
"@ for mentions, : for emoji, / for smart picker":"@ paminėjimams, : jaustukams, / išmaniajam rinkikliui",
"Could not reload comments":"Nepavyko įkelti komentarų iš naujo",
"Failed to mark comments as read":"Nepavyko pažymėti komentarų kaip perskaitytų",
"Unable to load the comments list":"Nepavyko įkelti komentarų sąrašo",
"No comments yet, start the conversation!":"Komentarų kol kas nėra, pradėkite pokalbį!",
"No more messages":"Daugiau jokių pranešimų",
"Retry":"Bandyti dar kartą",
"_1 new comment_::_{unread} new comments_":["1 neskaitytas komentaras","{unread} neskaityti komentarai","{unread} neskaitytų komentarų","{unread} neskaitytas komentaras"],
"Comment":"Komentaras",
"An error occurred while trying to edit the comment":"Bandant taisyti komentarą, įvyko klaida",
"Comment deleted":"Komentaras ištrintas",
"An error occurred while trying to delete the comment":"Bandant ištrinti komentarą, įvyko klaida",
"An error occurred while trying to create the comment":"Bandant sukurti komentarą, įvyko klaida",
"Write a comment …":"Rašyti komentarą..."
"An error occurred while trying to create the comment":"Bandant sukurti komentarą, įvyko klaida"
The Nextcloud Dashboard is your starting point of the day, giving you an overview of your upcoming appointments, urgent emails, chat messages, incoming tickets, latest tweets and much more! People can add the widgets they like and change the background to their liking.]]>
</description>
<version>7.13.0</version>
<version>7.14.0</version>
<licence>agpl</licence>
<author>Julius Härtl</author>
<namespace>Dashboard</namespace>
@@ -22,7 +22,7 @@ The Nextcloud Dashboard is your starting point of the day, giving you an overvie
"Could not check that your web server is properly set up to allow file synchronization over WebDAV. Please check manually.":"تعذر التحقُّق من إعداد خادم الويب عندك بالشكل الصحيح للسماح بمزامنة الملفات عبر WebDAV. يرجى التحقُّق يدوياً.",
"Your web server is not yet properly set up to allow file synchronization, because the WebDAV interface seems to be broken.":" لم يتم تعيين السماح لخادمك السحابي بتزامن الملف، بسبب واجهة التأليف الموزع على الويب وتعيين الإصدار WebDAV غير متصلة.",
"Your web server is properly set up to allow file synchronization over WebDAV.":"خادم الويب عندك مُهيّءٌ بالشكل الصحيح للسماح بمزامنة الملفات عبر WebDAV.",
"Calendars including events, details and attendees":"تحوي التقاويم الأحداث، و تفاصيلها، و الحُضُور",
"Migrated calendar (%1$s)":"تقويم مُرحّل (%1$s)",
"Calendars including events, details and attendees":"تحوي التقاويم الأحداث، و تفاصيلها، و الحُضُور",
"Could not check that your web server is properly set up to allow file synchronization over WebDAV. Please check manually.":"تعذر التحقُّق من إعداد خادم الويب عندك بالشكل الصحيح للسماح بمزامنة الملفات عبر WebDAV. يرجى التحقُّق يدوياً.",
"Your web server is not yet properly set up to allow file synchronization, because the WebDAV interface seems to be broken.":" لم يتم تعيين السماح لخادمك السحابي بتزامن الملف، بسبب واجهة التأليف الموزع على الويب وتعيين الإصدار WebDAV غير متصلة.",
"Your web server is properly set up to allow file synchronization over WebDAV.":"خادم الويب عندك مُهيّءٌ بالشكل الصحيح للسماح بمزامنة الملفات عبر WebDAV.",
"Calendars including events, details and attendees":"تحوي التقاويم الأحداث، و تفاصيلها، و الحُضُور",
"Migrated calendar (%1$s)":"تقويم مُرحّل (%1$s)",
"Calendars including events, details and attendees":"تحوي التقاويم الأحداث، و تفاصيلها، و الحُضُور",
"Could not check that your web server is properly set up to allow file synchronization over WebDAV. Please check manually.":"Nun se pudo comprobar que'l sirvidor web se configurare afayadizamente pa permitir la configuración de ficheros per WebDAV. Compruébalo manualmente.",
"Your web server is not yet properly set up to allow file synchronization, because the WebDAV interface seems to be broken.":"El sirividor web nun ta configuráu afayadizamente pa permitir la sincronización de ficheros porque la interfaz WebDAV paez tar estropiada.",
"Your web server is properly set up to allow file synchronization over WebDAV.":"El sirvidor web ta configuráu afayadizamente pa permitir la sincronización de ficheros per WebDAV.",
"Calendars including events, details and attendees":"Calendarios qu'inclúin eventos, detalles y asistentes",
"Could not check that your web server is properly set up to allow file synchronization over WebDAV. Please check manually.":"Nun se pudo comprobar que'l sirvidor web se configurare afayadizamente pa permitir la configuración de ficheros per WebDAV. Compruébalo manualmente.",
"Your web server is not yet properly set up to allow file synchronization, because the WebDAV interface seems to be broken.":"El sirividor web nun ta configuráu afayadizamente pa permitir la sincronización de ficheros porque la interfaz WebDAV paez tar estropiada.",
"Your web server is properly set up to allow file synchronization over WebDAV.":"El sirvidor web ta configuráu afayadizamente pa permitir la sincronización de ficheros per WebDAV.",
"Calendars including events, details and attendees":"Calendarios qu'inclúin eventos, detalles y asistentes",
"Your web server is not yet properly set up to allow file synchronization, because the WebDAV interface seems to be broken.":"Вашият уеб сървър все още не е удачно настроен да позволява синхронизация на файлове, защото WebDAV интерфейсът не работи.",
"Calendars including events, details and attendees":"Календари, включително събития, подробности и участници",
"Your web server is not yet properly set up to allow file synchronization, because the WebDAV interface seems to be broken.":"Вашият уеб сървър все още не е удачно настроен да позволява синхронизация на файлове, защото WebDAV интерфейсът не работи.",
"Calendars including events, details and attendees":"Календари, включително събития, подробности и участници",
"Could not check that your web server is properly set up to allow file synchronization over WebDAV. Please check manually.":"No s'ha pogut comprovar que el vostre servidor web estigui configurat correctament per a permetre la sincronització de fitxers mitjançant WebDAV. Comproveu-ho manualment.",
"Your web server is not yet properly set up to allow file synchronization, because the WebDAV interface seems to be broken.":"El vostre servidor web no està configurat correctament per a permetre la sincronització de fitxers perquè sembla que la interfície WebDAV no funciona correctament.",
"Your web server is properly set up to allow file synchronization over WebDAV.":"El vostre servidor web està configurat correctament per a permetre la sincronització de fitxers mitjançant WebDAV.",
"Calendars including events, details and attendees":"Calendaris amb esdeveniments, detalls i assistents",
"Could not check that your web server is properly set up to allow file synchronization over WebDAV. Please check manually.":"No s'ha pogut comprovar que el vostre servidor web estigui configurat correctament per a permetre la sincronització de fitxers mitjançant WebDAV. Comproveu-ho manualment.",
"Your web server is not yet properly set up to allow file synchronization, because the WebDAV interface seems to be broken.":"El vostre servidor web no està configurat correctament per a permetre la sincronització de fitxers perquè sembla que la interfície WebDAV no funciona correctament.",
"Your web server is properly set up to allow file synchronization over WebDAV.":"El vostre servidor web està configurat correctament per a permetre la sincronització de fitxers mitjançant WebDAV.",
"Calendars including events, details and attendees":"Calendaris amb esdeveniments, detalls i assistents",
"Failed to check file size: %1$s":"Nepodařilo se zkontrolovat velikost souboru: %1$s",
"Could not open file: %1$s (%2$d), file does seem to exist":"Nebylo možné otevřít soubor: %1$s (%2$d) – zdá se, že soubor existuje",
"Could not open file: %1$s (%2$d), file doesn't seem to exist":"Nebylo možné otevřít soubor: %1$s (%2$d) – zdá se, že soubor neexistuje",
"Failed to get size for : %1$s":"Nepodařilo se získat velikost pro: %1$s",
"Encryption not ready: %1$s":"Šifrování není připraveno: %1$s",
"Failed to open file: %1$s":"Nepodařilo se otevřít soubor: %1$s",
"Failed to unlink: %1$s":"Nepodařilo se zrušit propojení: %1$s",
@@ -253,7 +252,6 @@ OC.L10N.register(
"Completed on %s":"Dokončeno %s",
"Due on %s by %s":"Termín do %s od %s",
"Due on %s":"Termín do %s",
"This is an example contact":"Toto je kontakt pro ukázku",
"Welcome to Nextcloud Calendar!\n\nThis is a sample event - explore the flexibility of planning with Nextcloud Calendar by making any edits you want!\n\nWith Nextcloud Calendar, you can:\n- Create, edit, and manage events effortlessly.\n- Create multiple calendars and share them with teammates, friends, or family.\n- Check availability and display your busy times to others.\n- Seamlessly integrate with apps and devices via CalDAV.\n- Customize your experience: schedule recurring events, adjust notifications and other settings.":"Vítejte v Nextcloud Kalendáři!\n\nToto je událost pro ukázku – prozkoumejte flexibilitu plánování pomoc Nextcloud Kalendáře upravením čeho chcete!\n\nS Nextcloud Kalendářem je možné:\n- Jednoduše vytvářet, upravovat a spravovat události.\n- Vytvářet vícero kalendářů a sdílet je s kolegy, přáteli či rodinou.\n- Zjišťovat dostupnost a zobrazovat své doby nedostupnosti ostatním.\n- Hladce napojovat na aplikace a zřízení prostřednictvím CalDAV.\n- Přizpůsobit si svůj dojem z používání: plánovat opakující se události, upravovat notifikace a ostatní nastavení.",
"Example event - open me!":"Událost pro ukázku – otevřete ji!",
"Could not check that your web server is properly set up to allow file synchronization over WebDAV. Please check manually.":"Nepodařilo se zkontrolovat že vámi využívaný webový server je správně nastaven tak, aby umožňoval synchronizaci přes WebDAV. Zkontrolujte to ručně.",
"Your web server is not yet properly set up to allow file synchronization, because the WebDAV interface seems to be broken.":"Váš webový server ještě není správně nastaven, pro umožnění synchronizace souborů, rozhraní WebDAV pravděpodobně není funkční.",
"Your web server is properly set up to allow file synchronization over WebDAV.":"Vámi využívaný webový server je správně nastaven pro umotnění synchronizace souborů přes WebDAV",
"Calendars including events, details and attendees":"Kalendáře včetně událostí, podrobností a účastníků",
"Failed to check file size: %1$s":"Nepodařilo se zkontrolovat velikost souboru: %1$s",
"Could not open file: %1$s (%2$d), file does seem to exist":"Nebylo možné otevřít soubor: %1$s (%2$d) – zdá se, že soubor existuje",
"Could not open file: %1$s (%2$d), file doesn't seem to exist":"Nebylo možné otevřít soubor: %1$s (%2$d) – zdá se, že soubor neexistuje",
"Failed to get size for : %1$s":"Nepodařilo se získat velikost pro: %1$s",
"Encryption not ready: %1$s":"Šifrování není připraveno: %1$s",
"Failed to open file: %1$s":"Nepodařilo se otevřít soubor: %1$s",
"Failed to unlink: %1$s":"Nepodařilo se zrušit propojení: %1$s",
@@ -251,7 +250,6 @@
"Completed on %s":"Dokončeno %s",
"Due on %s by %s":"Termín do %s od %s",
"Due on %s":"Termín do %s",
"This is an example contact":"Toto je kontakt pro ukázku",
"Welcome to Nextcloud Calendar!\n\nThis is a sample event - explore the flexibility of planning with Nextcloud Calendar by making any edits you want!\n\nWith Nextcloud Calendar, you can:\n- Create, edit, and manage events effortlessly.\n- Create multiple calendars and share them with teammates, friends, or family.\n- Check availability and display your busy times to others.\n- Seamlessly integrate with apps and devices via CalDAV.\n- Customize your experience: schedule recurring events, adjust notifications and other settings.":"Vítejte v Nextcloud Kalendáři!\n\nToto je událost pro ukázku – prozkoumejte flexibilitu plánování pomoc Nextcloud Kalendáře upravením čeho chcete!\n\nS Nextcloud Kalendářem je možné:\n- Jednoduše vytvářet, upravovat a spravovat události.\n- Vytvářet vícero kalendářů a sdílet je s kolegy, přáteli či rodinou.\n- Zjišťovat dostupnost a zobrazovat své doby nedostupnosti ostatním.\n- Hladce napojovat na aplikace a zřízení prostřednictvím CalDAV.\n- Přizpůsobit si svůj dojem z používání: plánovat opakující se události, upravovat notifikace a ostatní nastavení.",
"Example event - open me!":"Událost pro ukázku – otevřete ji!",
"Could not check that your web server is properly set up to allow file synchronization over WebDAV. Please check manually.":"Nepodařilo se zkontrolovat že vámi využívaný webový server je správně nastaven tak, aby umožňoval synchronizaci přes WebDAV. Zkontrolujte to ručně.",
"Your web server is not yet properly set up to allow file synchronization, because the WebDAV interface seems to be broken.":"Váš webový server ještě není správně nastaven, pro umožnění synchronizace souborů, rozhraní WebDAV pravděpodobně není funkční.",
"Your web server is properly set up to allow file synchronization over WebDAV.":"Vámi využívaný webový server je správně nastaven pro umotnění synchronizace souborů přes WebDAV",
"Calendars including events, details and attendees":"Kalendáře včetně událostí, podrobností a účastníků",
"Could not check that your web server is properly set up to allow file synchronization over WebDAV. Please check manually.":"Kunne ikke kontrollere, at din webserver er korrekt konfigureret til at tillade filsynkronisering over WebDAV. Tjek venligst manuelt.",
"Your web server is not yet properly set up to allow file synchronization, because the WebDAV interface seems to be broken.":"Din webserver er endnu ikke sat korrekt op til at tillade filsynkronisering, fordi WebDAV-grænsefladen ser ud til at være i stykker.",
"Your web server is properly set up to allow file synchronization over WebDAV.":"Din webserver er korrekt konfigureret til at tillade filsynkronisering over WebDAV.",
"Calendars including events, details and attendees":"Kalendere indeholdende begivenheder, detaljer og deltagere",
"Could not check that your web server is properly set up to allow file synchronization over WebDAV. Please check manually.":"Kunne ikke kontrollere, at din webserver er korrekt konfigureret til at tillade filsynkronisering over WebDAV. Tjek venligst manuelt.",
"Your web server is not yet properly set up to allow file synchronization, because the WebDAV interface seems to be broken.":"Din webserver er endnu ikke sat korrekt op til at tillade filsynkronisering, fordi WebDAV-grænsefladen ser ud til at være i stykker.",
"Your web server is properly set up to allow file synchronization over WebDAV.":"Din webserver er korrekt konfigureret til at tillade filsynkronisering over WebDAV.",
"Calendars including events, details and attendees":"Kalendere indeholdende begivenheder, detaljer og deltagere",
"Failed to check file size: %1$s":"Dateigröße konnte nicht überprüft werden: %1$s",
"Could not open file: %1$s (%2$d), file does seem to exist":"Datei konnte nicht geöffnet werden: %1$s (%2$d), Datei scheint aber zu existieren",
"Could not open file: %1$s (%2$d), file doesn't seem to exist":"Datei konnte nicht geöffnet werden: %1$s (%2$d), Datei scheint nicht zu existieren",
"Failed to get size for : %1$s":"Größe konnte nicht ermittelt werden für: %1$s",
"Encryption not ready: %1$s":"Verschlüsselung nicht bereit: %1$s",
"Failed to open file: %1$s":"Datei konnte nicht geöffnet werden: %1$s",
"Failed to unlink: %1$s":"Fehler beim Aufheben der Verknüpfung: %1$s",
@@ -253,7 +252,6 @@ OC.L10N.register(
"Completed on %s":"Erledigt am %s",
"Due on %s by %s":"Fällig am %s von %s",
"Due on %s":"Fällig am %s",
"This is an example contact":"Dies ist ein Beispielkontakt",
"Welcome to Nextcloud Calendar!\n\nThis is a sample event - explore the flexibility of planning with Nextcloud Calendar by making any edits you want!\n\nWith Nextcloud Calendar, you can:\n- Create, edit, and manage events effortlessly.\n- Create multiple calendars and share them with teammates, friends, or family.\n- Check availability and display your busy times to others.\n- Seamlessly integrate with apps and devices via CalDAV.\n- Customize your experience: schedule recurring events, adjust notifications and other settings.":"Willkommen bei Nextcloud Calendar!\n\nDies ist ein Beispielereignis – entdecke die Flexibilität der Planung mit Nextcloud Calendar und nimm beliebige Änderungen vor!\n\nMit Nextcloud Calendar kannst du:\n– Ereignisse mühelos erstellen, bearbeiten und verwalten.\n– Mehrere Kalender erstellen und mit Teamkollegen, Freunden oder der Familie teilen.\n– Verfügbarkeit prüfen und deine Termine anderen anzeigen.\n– Nahtlose Integration mit Apps und Geräten über CalDAV.\n– Individuelle Gestaltung: Plane wiederkehrende Ereignisse, passe Benachrichtigungen und andere Einstellungen an.",
"Example event - open me!":"Beispielereignis – öffne mich!",
"System Address Book":"Systemadressbuch",
@@ -270,8 +268,8 @@ OC.L10N.register(
"Could not check that your web server is properly set up to allow file synchronization over WebDAV. Please check manually.":"Es konnte nicht überprüft werden, ob der Webserver ordnungsgemäß eingerichtet ist, um Dateisynchronisation über WebDAV zu ermöglichen. Bitte dies manuell überprüfen.",
"Your web server is not yet properly set up to allow file synchronization, because the WebDAV interface seems to be broken.":"Der Webserver ist noch nicht hinreichend für Datei-Synchronisierung konfiguriert, da die WebDAV-Schnittstelle vermutlich nicht funktioniert.",
"Your web server is properly set up to allow file synchronization over WebDAV.":"Der Webserver ist ordnungsgemäß eingerichtet um Dateisynchronisation über WebDAV zu ermöglichen.",
"Calendars including events, details and attendees":"Kalender mit Terminen, Details und Teilnehmern",
"Failed to check file size: %1$s":"Dateigröße konnte nicht überprüft werden: %1$s",
"Could not open file: %1$s (%2$d), file does seem to exist":"Datei konnte nicht geöffnet werden: %1$s (%2$d), Datei scheint aber zu existieren",
"Could not open file: %1$s (%2$d), file doesn't seem to exist":"Datei konnte nicht geöffnet werden: %1$s (%2$d), Datei scheint nicht zu existieren",
"Failed to get size for : %1$s":"Größe konnte nicht ermittelt werden für: %1$s",
"Encryption not ready: %1$s":"Verschlüsselung nicht bereit: %1$s",
"Failed to open file: %1$s":"Datei konnte nicht geöffnet werden: %1$s",
"Failed to unlink: %1$s":"Fehler beim Aufheben der Verknüpfung: %1$s",
@@ -251,7 +250,6 @@
"Completed on %s":"Erledigt am %s",
"Due on %s by %s":"Fällig am %s von %s",
"Due on %s":"Fällig am %s",
"This is an example contact":"Dies ist ein Beispielkontakt",
"Welcome to Nextcloud Calendar!\n\nThis is a sample event - explore the flexibility of planning with Nextcloud Calendar by making any edits you want!\n\nWith Nextcloud Calendar, you can:\n- Create, edit, and manage events effortlessly.\n- Create multiple calendars and share them with teammates, friends, or family.\n- Check availability and display your busy times to others.\n- Seamlessly integrate with apps and devices via CalDAV.\n- Customize your experience: schedule recurring events, adjust notifications and other settings.":"Willkommen bei Nextcloud Calendar!\n\nDies ist ein Beispielereignis – entdecke die Flexibilität der Planung mit Nextcloud Calendar und nimm beliebige Änderungen vor!\n\nMit Nextcloud Calendar kannst du:\n– Ereignisse mühelos erstellen, bearbeiten und verwalten.\n– Mehrere Kalender erstellen und mit Teamkollegen, Freunden oder der Familie teilen.\n– Verfügbarkeit prüfen und deine Termine anderen anzeigen.\n– Nahtlose Integration mit Apps und Geräten über CalDAV.\n– Individuelle Gestaltung: Plane wiederkehrende Ereignisse, passe Benachrichtigungen und andere Einstellungen an.",
"Example event - open me!":"Beispielereignis – öffne mich!",
"System Address Book":"Systemadressbuch",
@@ -268,8 +266,8 @@
"Could not check that your web server is properly set up to allow file synchronization over WebDAV. Please check manually.":"Es konnte nicht überprüft werden, ob der Webserver ordnungsgemäß eingerichtet ist, um Dateisynchronisation über WebDAV zu ermöglichen. Bitte dies manuell überprüfen.",
"Your web server is not yet properly set up to allow file synchronization, because the WebDAV interface seems to be broken.":"Der Webserver ist noch nicht hinreichend für Datei-Synchronisierung konfiguriert, da die WebDAV-Schnittstelle vermutlich nicht funktioniert.",
"Your web server is properly set up to allow file synchronization over WebDAV.":"Der Webserver ist ordnungsgemäß eingerichtet um Dateisynchronisation über WebDAV zu ermöglichen.",
"Calendars including events, details and attendees":"Kalender mit Terminen, Details und Teilnehmern",
"Failed to check file size: %1$s":"Dateigröße konnte nicht überprüft werden: %1$s",
"Could not open file: %1$s (%2$d), file does seem to exist":"Datei konnte nicht geöffnet werden: %1$s (%2$d), Datei scheint aber zu existieren",
"Could not open file: %1$s (%2$d), file doesn't seem to exist":"Datei konnte nicht geöffnet werden: %1$s (%2$d), Datei scheint nicht zu existieren",
"Failed to get size for : %1$s":"Größe konnte nicht ermittelt werden für: %1$s",
"Encryption not ready: %1$s":"Verschlüsselung nicht bereit: %1$s",
"Failed to open file: %1$s":"Datei konnte nicht geöffnet werden: %1$s",
"Failed to unlink: %1$s":"Fehler beim Aufheben der Verknüpfung: %1$s",
@@ -253,7 +252,6 @@ OC.L10N.register(
"Completed on %s":"Erledigt am %s",
"Due on %s by %s":"Fällig am %s von %s",
"Due on %s":"Fällig am %s",
"This is an example contact":"Dies ist ein Beispielkontakt",
"Welcome to Nextcloud Calendar!\n\nThis is a sample event - explore the flexibility of planning with Nextcloud Calendar by making any edits you want!\n\nWith Nextcloud Calendar, you can:\n- Create, edit, and manage events effortlessly.\n- Create multiple calendars and share them with teammates, friends, or family.\n- Check availability and display your busy times to others.\n- Seamlessly integrate with apps and devices via CalDAV.\n- Customize your experience: schedule recurring events, adjust notifications and other settings.":"Willkommen bei Nextcloud Calendar!\n\nDies ist ein Beispielereignis – entdecken Sie die Flexibilität der Planung mit Nextcloud Calendar und nehmen Sie beliebige Änderungen vor!\n\nMit Nextcloud Calendar können Sie:\n– Ereignisse mühelos erstellen, bearbeiten und verwalten.\n– Mehrere Kalender erstellen und mit Teamkollegen, Freunden oder der Familie teilen.\n– Verfügbarkeit prüfen und Ihre Termine anderen anzeigen.\n– Nahtlose Integration mit Apps und Geräten über CalDAV.\n– Individuelle Gestaltung: Planen Sie wiederkehrende Ereignisse, passen Sie Benachrichtigungen und andere Einstellungen an.",
"Example event - open me!":"Beispielereignis – öffne mich!",
"System Address Book":"Systemadressbuch",
@@ -270,8 +268,8 @@ OC.L10N.register(
"Could not check that your web server is properly set up to allow file synchronization over WebDAV. Please check manually.":"Es konnte nicht überprüft werden, ob Ihr Webserver ordnungsgemäß eingerichtet ist, um Dateisynchronisation über WebDAV zu ermöglichen. Bitte überprüfen Sie dies manuell.",
"Your web server is not yet properly set up to allow file synchronization, because the WebDAV interface seems to be broken.":"Ihr Webserver ist noch nicht hinreichend für Datei-Synchronisierung konfiguriert. Die WebDAV-Schnittstelle ist vermutlich defekt.",
"Your web server is properly set up to allow file synchronization over WebDAV.":"Ihr Webserver ist ordnungsgemäß eingerichtet um Dateisynchronisation über WebDAV zu ermöglichen.",
"Calendars including events, details and attendees":"Kalender mit Terminen, Details und Teilnehmern",
"Failed to check file size: %1$s":"Dateigröße konnte nicht überprüft werden: %1$s",
"Could not open file: %1$s (%2$d), file does seem to exist":"Datei konnte nicht geöffnet werden: %1$s (%2$d), Datei scheint aber zu existieren",
"Could not open file: %1$s (%2$d), file doesn't seem to exist":"Datei konnte nicht geöffnet werden: %1$s (%2$d), Datei scheint nicht zu existieren",
"Failed to get size for : %1$s":"Größe konnte nicht ermittelt werden für: %1$s",
"Encryption not ready: %1$s":"Verschlüsselung nicht bereit: %1$s",
"Failed to open file: %1$s":"Datei konnte nicht geöffnet werden: %1$s",
"Failed to unlink: %1$s":"Fehler beim Aufheben der Verknüpfung: %1$s",
@@ -251,7 +250,6 @@
"Completed on %s":"Erledigt am %s",
"Due on %s by %s":"Fällig am %s von %s",
"Due on %s":"Fällig am %s",
"This is an example contact":"Dies ist ein Beispielkontakt",
"Welcome to Nextcloud Calendar!\n\nThis is a sample event - explore the flexibility of planning with Nextcloud Calendar by making any edits you want!\n\nWith Nextcloud Calendar, you can:\n- Create, edit, and manage events effortlessly.\n- Create multiple calendars and share them with teammates, friends, or family.\n- Check availability and display your busy times to others.\n- Seamlessly integrate with apps and devices via CalDAV.\n- Customize your experience: schedule recurring events, adjust notifications and other settings.":"Willkommen bei Nextcloud Calendar!\n\nDies ist ein Beispielereignis – entdecken Sie die Flexibilität der Planung mit Nextcloud Calendar und nehmen Sie beliebige Änderungen vor!\n\nMit Nextcloud Calendar können Sie:\n– Ereignisse mühelos erstellen, bearbeiten und verwalten.\n– Mehrere Kalender erstellen und mit Teamkollegen, Freunden oder der Familie teilen.\n– Verfügbarkeit prüfen und Ihre Termine anderen anzeigen.\n– Nahtlose Integration mit Apps und Geräten über CalDAV.\n– Individuelle Gestaltung: Planen Sie wiederkehrende Ereignisse, passen Sie Benachrichtigungen und andere Einstellungen an.",
"Example event - open me!":"Beispielereignis – öffne mich!",
"System Address Book":"Systemadressbuch",
@@ -268,8 +266,8 @@
"Could not check that your web server is properly set up to allow file synchronization over WebDAV. Please check manually.":"Es konnte nicht überprüft werden, ob Ihr Webserver ordnungsgemäß eingerichtet ist, um Dateisynchronisation über WebDAV zu ermöglichen. Bitte überprüfen Sie dies manuell.",
"Your web server is not yet properly set up to allow file synchronization, because the WebDAV interface seems to be broken.":"Ihr Webserver ist noch nicht hinreichend für Datei-Synchronisierung konfiguriert. Die WebDAV-Schnittstelle ist vermutlich defekt.",
"Your web server is properly set up to allow file synchronization over WebDAV.":"Ihr Webserver ist ordnungsgemäß eingerichtet um Dateisynchronisation über WebDAV zu ermöglichen.",
"Calendars including events, details and attendees":"Kalender mit Terminen, Details und Teilnehmern",
"Could not check that your web server is properly set up to allow file synchronization over WebDAV. Please check manually.":"Αδυναμία ελέγχου ότι ο διακομιστής σας είναι σωστά ρυθμισμένος για να επιτρέπει τον συγχρονισμό αρχείων μέσω WebDAV. Παρακαλώ ελέγξτε χειροκίνητα.",
"Your web server is not yet properly set up to allow file synchronization, because the WebDAV interface seems to be broken.":"Ο διακομιστής σας δεν έχει ρυθμιστεί ακόμη κατάλληλα ώστε να επιτρέπει τον συγχρονισμό αρχείων, διότι η διεπαφή WebDAV φαίνεται να μη λειτουργεί.",
"Your web server is properly set up to allow file synchronization over WebDAV.":"Ο διακομιστής σας είναι σωστά ρυθμισμένος για να επιτρέπει τον συγχρονισμό αρχείων μέσω WebDAV.",
"Calendars including events, details and attendees":"Ημερολόγια συμπεριλαμβανομένων εκδηλώσεων, λεπτομερειών και συμμετεχόντων",
"Could not check that your web server is properly set up to allow file synchronization over WebDAV. Please check manually.":"Αδυναμία ελέγχου ότι ο διακομιστής σας είναι σωστά ρυθμισμένος για να επιτρέπει τον συγχρονισμό αρχείων μέσω WebDAV. Παρακαλώ ελέγξτε χειροκίνητα.",
"Your web server is not yet properly set up to allow file synchronization, because the WebDAV interface seems to be broken.":"Ο διακομιστής σας δεν έχει ρυθμιστεί ακόμη κατάλληλα ώστε να επιτρέπει τον συγχρονισμό αρχείων, διότι η διεπαφή WebDAV φαίνεται να μη λειτουργεί.",
"Your web server is properly set up to allow file synchronization over WebDAV.":"Ο διακομιστής σας είναι σωστά ρυθμισμένος για να επιτρέπει τον συγχρονισμό αρχείων μέσω WebDAV.",
"Calendars including events, details and attendees":"Ημερολόγια συμπεριλαμβανομένων εκδηλώσεων, λεπτομερειών και συμμετεχόντων",
"Failed to check file size: %1$s":"Failed to check file size: %1$s",
"Could not open file: %1$s (%2$d), file does seem to exist":"Could not open file: %1$s (%2$d), file does seem to exist",
"Could not open file: %1$s (%2$d), file doesn't seem to exist":"Could not open file: %1$s (%2$d), file doesn't seem to exist",
"Failed to get size for : %1$s":"Failed to get size for : %1$s",
"Encryption not ready: %1$s":"Encryption not ready: %1$s",
"Failed to open file: %1$s":"Failed to open file: %1$s",
"Failed to unlink: %1$s":"Failed to unlink: %1$s",
@@ -253,7 +252,6 @@ OC.L10N.register(
"Completed on %s":"Completed on %s",
"Due on %s by %s":"Due on %s by %s",
"Due on %s":"Due on %s",
"This is an example contact":"This is an example contact",
"Welcome to Nextcloud Calendar!\n\nThis is a sample event - explore the flexibility of planning with Nextcloud Calendar by making any edits you want!\n\nWith Nextcloud Calendar, you can:\n- Create, edit, and manage events effortlessly.\n- Create multiple calendars and share them with teammates, friends, or family.\n- Check availability and display your busy times to others.\n- Seamlessly integrate with apps and devices via CalDAV.\n- Customize your experience: schedule recurring events, adjust notifications and other settings.":"Welcome to Nextcloud Calendar!\n\nThis is a sample event - explore the flexibility of planning with Nextcloud Calendar by making any edits you want!\n\nWith Nextcloud Calendar, you can:\n- Create, edit, and manage events effortlessly.\n- Create multiple calendars and share them with teammates, friends, or family.\n- Check availability and display your busy times to others.\n- Seamlessly integrate with apps and devices via CalDAV.\n- Customize your experience: schedule recurring events, adjust notifications and other settings.",
"Example event - open me!":"Example event - open me!",
"System Address Book":"System Address Book",
@@ -270,8 +268,8 @@ OC.L10N.register(
"Could not check that your web server is properly set up to allow file synchronization over WebDAV. Please check manually.":"Could not check that your web server is properly set up to allow file synchronization over WebDAV. Please check manually.",
"Your web server is not yet properly set up to allow file synchronization, because the WebDAV interface seems to be broken.":"Your web server is not yet properly set up to allow file synchronisation, because the WebDAV interface seems to be broken.",
"Your web server is properly set up to allow file synchronization over WebDAV.":"Your web server is properly set up to allow file synchronization over WebDAV.",
"Calendars including events, details and attendees":"Calendars including events, details and attendees",
"Failed to check file size: %1$s":"Failed to check file size: %1$s",
"Could not open file: %1$s (%2$d), file does seem to exist":"Could not open file: %1$s (%2$d), file does seem to exist",
"Could not open file: %1$s (%2$d), file doesn't seem to exist":"Could not open file: %1$s (%2$d), file doesn't seem to exist",
"Failed to get size for : %1$s":"Failed to get size for : %1$s",
"Encryption not ready: %1$s":"Encryption not ready: %1$s",
"Failed to open file: %1$s":"Failed to open file: %1$s",
"Failed to unlink: %1$s":"Failed to unlink: %1$s",
@@ -251,7 +250,6 @@
"Completed on %s":"Completed on %s",
"Due on %s by %s":"Due on %s by %s",
"Due on %s":"Due on %s",
"This is an example contact":"This is an example contact",
"Welcome to Nextcloud Calendar!\n\nThis is a sample event - explore the flexibility of planning with Nextcloud Calendar by making any edits you want!\n\nWith Nextcloud Calendar, you can:\n- Create, edit, and manage events effortlessly.\n- Create multiple calendars and share them with teammates, friends, or family.\n- Check availability and display your busy times to others.\n- Seamlessly integrate with apps and devices via CalDAV.\n- Customize your experience: schedule recurring events, adjust notifications and other settings.":"Welcome to Nextcloud Calendar!\n\nThis is a sample event - explore the flexibility of planning with Nextcloud Calendar by making any edits you want!\n\nWith Nextcloud Calendar, you can:\n- Create, edit, and manage events effortlessly.\n- Create multiple calendars and share them with teammates, friends, or family.\n- Check availability and display your busy times to others.\n- Seamlessly integrate with apps and devices via CalDAV.\n- Customize your experience: schedule recurring events, adjust notifications and other settings.",
"Example event - open me!":"Example event - open me!",
"System Address Book":"System Address Book",
@@ -268,8 +266,8 @@
"Could not check that your web server is properly set up to allow file synchronization over WebDAV. Please check manually.":"Could not check that your web server is properly set up to allow file synchronization over WebDAV. Please check manually.",
"Your web server is not yet properly set up to allow file synchronization, because the WebDAV interface seems to be broken.":"Your web server is not yet properly set up to allow file synchronisation, because the WebDAV interface seems to be broken.",
"Your web server is properly set up to allow file synchronization over WebDAV.":"Your web server is properly set up to allow file synchronization over WebDAV.",
"Calendars including events, details and attendees":"Calendars including events, details and attendees",
"Could not check that your web server is properly set up to allow file synchronization over WebDAV. Please check manually.":"No se pudo verificar si su servidor web está adecuadamente configurado para permitir la sincronización de archivos a través de WebDAV. Por favor, verifique manualmente.",
"Your web server is not yet properly set up to allow file synchronization, because the WebDAV interface seems to be broken.":"Su servidor web todavía no está configurado correctamente para permitir la sincronización de archivos, porque la interfaz WebDAV parece estar rota.",
"Your web server is properly set up to allow file synchronization over WebDAV.":"Su servidor web está adecuadamente configurado para permitir la sincronización de archivos a través de WebDAV.",
"Calendars including events, details and attendees":"Calendarios que incluyen eventos, detalles y asistentes",
"Migrated calendar (%1$s)":"Se migró el calendario (%1$s)",
"Calendars including events, details and attendees":"Calendarios que incluyen eventos, detalles y asistentes",
"Could not check that your web server is properly set up to allow file synchronization over WebDAV. Please check manually.":"No se pudo verificar si su servidor web está adecuadamente configurado para permitir la sincronización de archivos a través de WebDAV. Por favor, verifique manualmente.",
"Your web server is not yet properly set up to allow file synchronization, because the WebDAV interface seems to be broken.":"Su servidor web todavía no está configurado correctamente para permitir la sincronización de archivos, porque la interfaz WebDAV parece estar rota.",
"Your web server is properly set up to allow file synchronization over WebDAV.":"Su servidor web está adecuadamente configurado para permitir la sincronización de archivos a través de WebDAV.",
"Calendars including events, details and attendees":"Calendarios que incluyen eventos, detalles y asistentes",
"Migrated calendar (%1$s)":"Se migró el calendario (%1$s)",
"Calendars including events, details and attendees":"Calendarios que incluyen eventos, detalles y asistentes",
"Your web server is not yet properly set up to allow file synchronization, because the WebDAV interface seems to be broken.":"Tu servidor web aún no esta correctamente configurado para permitir la sincronización de archivos porque la interfaz WebDAV parece estar rota. ",
"Calendars including events, details and attendees":"Calendarios que incluyen eventos, detalles y asistentes",
"Your web server is not yet properly set up to allow file synchronization, because the WebDAV interface seems to be broken.":"Tu servidor web aún no esta correctamente configurado para permitir la sincronización de archivos porque la interfaz WebDAV parece estar rota. ",
"Calendars including events, details and attendees":"Calendarios que incluyen eventos, detalles y asistentes",
"Could not check that your web server is properly set up to allow file synchronization over WebDAV. Please check manually.":"No se pudo verificar si su servidor web está adecuadamente configurado para permitir la sincronización mediante WebDAV. Por favor, revíselo manualmente.",
"Your web server is not yet properly set up to allow file synchronization, because the WebDAV interface seems to be broken.":"Tu servidor web aún no esta correctamente configurado para permitir la sincronización de archivos porque la interfaz WebDAV parece estar rota. ",
"Your web server is properly set up to allow file synchronization over WebDAV.":"Su servidor web está adecuadamente configurado para permitir la sincronización mediante WebDAV.",
"Calendars including events, details and attendees":"Calendarios que incluyen eventos, detalles y asistentes",
"Could not check that your web server is properly set up to allow file synchronization over WebDAV. Please check manually.":"No se pudo verificar si su servidor web está adecuadamente configurado para permitir la sincronización mediante WebDAV. Por favor, revíselo manualmente.",
"Your web server is not yet properly set up to allow file synchronization, because the WebDAV interface seems to be broken.":"Tu servidor web aún no esta correctamente configurado para permitir la sincronización de archivos porque la interfaz WebDAV parece estar rota. ",
"Your web server is properly set up to allow file synchronization over WebDAV.":"Su servidor web está adecuadamente configurado para permitir la sincronización mediante WebDAV.",
"Calendars including events, details and attendees":"Calendarios que incluyen eventos, detalles y asistentes",
"Calendars including events, details and attendees":"Calendarios que incluyen eventos, detalles y asistentes",
"Contacts and groups":"Contactos y grupos",
"WebDAV":"WebDAV",
"Absence saved":"Ausencia guardada",
Some files were not shown because too many files have changed in this diff
Show More
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.