The condition was checking shares.length to display the Others with
access component, but shares is filled only on expanding that section,
rendering the section never visible.
Signed-off-by: Salvatore Martire <4652631+salmart-dev@users.noreply.github.com>
1. Use correct color
2. Do not mix legacy icon classes with MDI icons this will show two
icons...
3. Use proper aria label and put status into the title
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
dirname will return '.' for files at the root, which will cause an
Exception that gets logged.
Instead use \Sabre\Uri\split like other sabre plugins, to get an empty
string for root directory.
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
This was planned to be added and already documented.
The use case is some rare occurences where we use success like text.
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Even if the rule is `background-color` in reality it is the color of the
icon thus needs the text color.
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
With Nextcloud 32 we ship a new default background: "Fluid" by Jo Myoung Hee.
Copyright by Nextcloud GmbH under the CC-BY-SA-4.0
- added the background compressed as WebP (90% quality)
- set as new default
- added license reference and move theming related reuse config
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
When running nextcloud with a web hoster it might be necessary
to extend .user.ini after each update (e.g. adding memory_limit).
To automate this step, an additional config entry may be provided
in config.php that specifies the lines to be added to .user.ini.
If the config option 'user_ini_additional_lines' exists, the provided
value (string or array of strings) will be added to .user.ini.
Signed-off-by: Mathias Koehrer <koehrer08@koehrer-mail.de>
Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
Couple of versions ago:
- `color-text-light` was replaced with `color-main-text`
- `color-text-lighter` was replaced with `color-text-maxcontrast`
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
The variables like `--color-error` now are based on our secondary
theming, thus they are less "aggressive" colors. But there are two
usecases for primary based status colors:
- borders
- error text messages (e.g. validation errors in forms)
To simplify app changes due to the secondary color theme change this
introduces 3 new variables:
- `--color-text-error` this shall be used if text should have error
status theming and is displayed on normal background (while
`--color-error-text` is only for text shown on `--color-error` similar
as primary and secondary colors)
- `--color-border-error` and `--color-border-success` those should be
used for element borders if there is one of those statuses to be
reported (we use this for validation errors as well as for indicating a
value was saved)
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
appinfo/install.php is not part of the official documentation for
application development but some apps are still using such a file.
Log a message to deprecate this behavior, to be able to remove support
for this later.
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Not ideal to have coupled tests like that but it’s the easiest path
forward to make sure the tests still covers the same usecase and avoid
code duplication.
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Was a bit more complicated than expected because of a dependency loop,
the L10N factory uses the app manager, thus the AppManager cannot depend
on I10N directly or indirectly in its constructor.
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Make code closer to the one of installApp, to be able to compare them
and later merge them (in the shadows).
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
This removes a circular dependency between AppConfig and cache factory.
When a cache in the app config is used.
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Emits a `preloadCollection` event in the DAV server, so that plugins can listen to it and preload DAV properties for files inside a collection, to avoid the N+1 issue that would follow if loading properties on a per-file basis.
This allows plugins to preload the content of a Collection to speed-up
subsequent per-node PROPFINDs and reduce database load.
Signed-off-by: Salvatore Martire <4652631+salmart-dev@users.noreply.github.com>
We already do that for files, we are now also doing for calendars.
With relatively small amount of calendars, I managed to reduce the
number of DB requests by 35% and from 23 DB requests touching the
oc_properties table to only 3.
Signed-off-by: Carl Schwan <carl.schwan@nextclound.com>
ZIP does not use a proper timestamp but uses something called "DOS time".
This is a weird old format with some limitations like accuracy of only
2 seconds, but also no timezone information.
Also unline UNIX time it is not relative to some specific point in time
with timezone information, but is always considered to be the local
time. Meaning we need to convert it first to the users local time.
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
This PR adds an error log when a DAV Plugin fetches data for nodes in a directory on a per-node basis instead of using an eager loading mechanism, which is more efficient.
This is only enabled when `config.php` has `'debug'` set to enabled.
Save a query per event stored in the calendar and at least on the
production instance, there is no entries in the table for the events.
Signed-off-by: Carl Schwan <carl.schwan@nextclound.com>
Directories should also have the correct mtime set and not the current
time. For this the `Streamer` class needs to support passing a time
attribute for creating folders, the underlying library already supports
this.
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
This removes:
- “enable” for settings
- “settings” for settings sections
- “all” when there is no obvious subset of items
- “show” and “open” for navigation actions
- “changes” for applying/discarding
- “to clipboard” when copying
- Explaining things that cannot happen
- Explaining things twice, right below each other
- Unnecessary technical jargon
- Text that sounds like marketing copy and serves no other purpose
Signed-off-by: kramo <git@kramo.page>
2 of 3 persons that were assigned are not working in that area anymore.
So just assign the team.
Moreover the date was wrong as the file was created 2025.
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
"array_filter" preserves the keys, so after the trusted servers were
filtered "$server[0]" existed only if the server to get was the first
one in the original array.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
This appears to have been originally intended to support the providers list functionality mentioned in the OCS <=v1.7 spec. That is, appears to be an implementation of what was suggested be made available at `https://domain.tld/ocs/providers.xml`.
However best as I can tell it never worked. It also doesn't appear in the v2.0 spec drafts.
Signed-off-by: Josh <josh.t.richards@gmail.com>
This commits addresses an annoyance where the share input placeholder would
suggest sharing via federated cloud ID even if federation was disabled.
Signed-off-by: nfebe <fenn25.fn@gmail.com>
- if this is a GS instance
- or was configured by administrator
Then show the share as internal (remote and remote group shares).
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
- resolves: https://github.com/nextcloud/server/issues/52497
Ensure that when global scale is enabled the federated users are shown
just like internal users.
Meaning no server part but instead use the email address like with internal.
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
For proper review every PR needs 2 reviews, so every file needs at least
2 codeowners. Thus @blizzz is added for `workflowengine` as the app
maintainer.
Additionally added the desktop client team for changes related to them.
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
keep the $this->providers types
Test via ./occ config:app:set --value '["files","settings"]' --type array core unified_search.providers_allowed
should be part of 8e570041
Signed-off-by: Misha M.-Kupriyanov <kupriyanov@strato.de>
This commit introduces a change to prevent showing the load more button,
if the length of existing results is not equal to the requested limit (which implies
it is less than because we never expect it to be more)
Additionally, there is an enhancment to override provider filders passed to the find method.
This would improve speed.
Signed-off-by: nfebe <fenn25.fn@gmail.com>
There are some behavioral differences that apps may need to check for.
See discussion on #51175 for more info.
This preserves the existing behavior of getDatabaseProvider()
Signed-off-by: Varun Patil <varunpatil@ucla.edu>
Since these actions already have highly visible visual confirmation,
no extra notifications are needed.
Split out from #54202
Signed-off-by: kramo <git@kramo.page>
First query metadata for live photo and then delete the metadata, by
making the SyncLivePhotosListener priority higher than the default.
Partially fix#54274
Signed-off-by: Carl Schwan <carl.schwan@nextclound.com>
The button group generated in email templates is expected to show the
two buttons side by side in a single row, but in Outlook both buttons
took the full width of the wrapper row and each button was shown in
its own row. To solve that the buttons are wrapped in an additional
table that shows each button in its own cell, limiting their width and
showing them in a single row; this is done conditionally and only
applied in Outlook, so it should not affect other clients.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
The variable is intialized to `{}` which is truthy, so instead just
check if there is a user assigned to the share info.
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
`caching_sha2_password` was added in 8.0.4 as the default
authentication plugin. `mysql_native_password` is deprecated since then.
In MySQL 8.4 it was disabled by default so a user need to manually
reenable it to make it work.
In MySQL 9.0 it is removed and causes the following error:
> SQLSTATE[HY000] [1524] Plugin 'mysql_native_password' is not loaded
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
This is a composable - not a service, because it is using the
`useHotKey` composable. At this moment it works, but in general
its only safe to put composables into `setup`-context.
This makes it future prove.
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Copying and renaming a share will not encrypt it anyway. It will get
encrypted when the owner’s files get encrypted.
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
json_decode() returns stdclass by default instead of an associative object, which can't be used for
array_diff or array_intersect later
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2025-06-16 08:30:31 +02:00
2272 changed files with 56859 additions and 24760 deletions
"You commented on {file}":"Вы пракаментавалі {file}",
"%1$s commented on %2$s":"%1$s пракаментаваў(-ла) %2$s",
"{author} commented on {file}":"{author} пракаментаваў(-ла) {file}",
"<strong>Comments</strong> for files":"<strong>Каментарыі</strong> да файлаў",
"Files":"Файлы",
"You were mentioned on \"{file}\", in a comment by an account that has since been deleted":"Вас згадалі ў каментарыі да \"{file}\" з уліковага запісу, які пазней быў выдалены.",
"{user} mentioned you in a comment on \"{file}\"":"{user} згадаў(-ла) вас у каментарыі да \"{file}\"",
"Files app plugin to add comments to files":"Убудова праграмы Файлы для дадавання каментарыяў да файлаў",
"Edit comment":"Рэдагаваць каментарый",
"Delete comment":"Выдаліць каментарый",
"Cancel edit":"Скасаваць рэдагаванне",
"New comment":"Новы каментарый",
"Write a comment …":"Напішыце каментарый …",
"Post comment":"Апублікаваць каментарый",
"@ for mentions, : for emoji, / for smart picker":"@ - згадкі, : - эмодзі, / - разумны выбар",
"Could not reload comments":"Не ўдалося перазагрузіць каментарыі",
"Failed to mark comments as read":"Не атрымалася пазначыць каментарыі як прачытаныя",
"Unable to load the comments list":"Не ўдалося загрузіць спіс каментарыяў",
"No comments yet, start the conversation!":"Пакуль няма каментарыяў, пачніце размову!",
"No more messages":"Больш паведамленняў няма",
"Retry":"Паўтарыць спробу",
"_1 new comment_::_{unread} new comments_":["1 новы каментарый","{unread} новыя каментарыі","{unread} новых каментарыяў","{unread} новых каментарыяў"],
"Comment":"Каментарый",
"An error occurred while trying to edit the comment":"Падчас спробы рэдагавання каментарыя ўзнікла памылка",
"Comment deleted":"Каментарый выдалены",
"An error occurred while trying to delete the comment":"Падчас спробы выдалення каментарыя ўзнікла памылка",
"An error occurred while trying to create the comment":"Падчас спробы стварэння каментарыя ўзнікла памылка"
"You commented on {file}":"Вы пракаментавалі {file}",
"%1$s commented on %2$s":"%1$s пракаментаваў(-ла) %2$s",
"{author} commented on {file}":"{author} пракаментаваў(-ла) {file}",
"<strong>Comments</strong> for files":"<strong>Каментарыі</strong> да файлаў",
"Files":"Файлы",
"You were mentioned on \"{file}\", in a comment by an account that has since been deleted":"Вас згадалі ў каментарыі да \"{file}\" з уліковага запісу, які пазней быў выдалены.",
"{user} mentioned you in a comment on \"{file}\"":"{user} згадаў(-ла) вас у каментарыі да \"{file}\"",
"Files app plugin to add comments to files":"Убудова праграмы Файлы для дадавання каментарыяў да файлаў",
"Edit comment":"Рэдагаваць каментарый",
"Delete comment":"Выдаліць каментарый",
"Cancel edit":"Скасаваць рэдагаванне",
"New comment":"Новы каментарый",
"Write a comment …":"Напішыце каментарый …",
"Post comment":"Апублікаваць каментарый",
"@ for mentions, : for emoji, / for smart picker":"@ - згадкі, : - эмодзі, / - разумны выбар",
"Could not reload comments":"Не ўдалося перазагрузіць каментарыі",
"Failed to mark comments as read":"Не атрымалася пазначыць каментарыі як прачытаныя",
"Unable to load the comments list":"Не ўдалося загрузіць спіс каментарыяў",
"No comments yet, start the conversation!":"Пакуль няма каментарыяў, пачніце размову!",
"No more messages":"Больш паведамленняў няма",
"Retry":"Паўтарыць спробу",
"_1 new comment_::_{unread} new comments_":["1 новы каментарый","{unread} новыя каментарыі","{unread} новых каментарыяў","{unread} новых каментарыяў"],
"Comment":"Каментарый",
"An error occurred while trying to edit the comment":"Падчас спробы рэдагавання каментарыя ўзнікла памылка",
"Comment deleted":"Каментарый выдалены",
"An error occurred while trying to delete the comment":"Падчас спробы выдалення каментарыя ўзнікла памылка",
"An error occurred while trying to create the comment":"Падчас спробы стварэння каментарыя ўзнікла памылка"
"_In a month on %1$s for the entire day_::_In %n months on %1$s for the entire day_":["I en måned på %1$s for hele dagen","Om %n måneder den %1$s for hele dagen"],
"_In a year on %1$s for the entire day_::_In %n years on %1$s for the entire day_":["I et år på %1$s for hele dagen","Om %n år den %1$s for hele dagen"],
"In the past on %1$s between %2$s - %3$s":"Tidligere den %1$s mellem %2$s - %3$s",
"_In a minute on %1$s between %2$s - %3$s_::_In %n minutes on %1$s between %2$s - %3$s_":["I et minut på %1$s mellem% %2$s - %3$s","Om %n minutter den %1$s mellem %2$s - %3$s"],
"_In a minute on %1$s between %2$s - %3$s_::_In %n minutes on %1$s between %2$s - %3$s_":["I et minut på %1$s mellem %2$s - %3$s","Om %n minutter den %1$s mellem %2$s - %3$s"],
"_In a hour on %1$s between %2$s - %3$s_::_In %n hours on %1$s between %2$s - %3$s_":["I en time på %1$s mellem %2$s - %3$s","Om %n timer den %1$s mellem %2$s - %3$s"],
"_In a day on %1$s between %2$s - %3$s_::_In %n days on %1$s between %2$s - %3$s_":["I en dag på %1$s mellem %2$s - %3$s","Om %n dage den %1$s mellem %2$s - %3$s"],
"_In a week on %1$s between %2$s - %3$s_::_In %n weeks on %1$s between %2$s - %3$s_":["I en uge på %1$s mellem %2$s - %3$s","Om %n uger den %1$s mellem %2$s - %3$s"],
@@ -281,7 +281,6 @@ OC.L10N.register(
"Failed to load availability":"Kunne ikke indlæse tilgængelighed",
"Saved availability":"Gemt tilgængelighed",
"Failed to save availability":"Kunne ikke gemme tilgængelighed",
"Time zone:":"Tidszone:",
"to":"til",
"Delete slot":"Slet slot",
"No working hours set":"Arbejdstider er ikke sat",
@@ -321,6 +320,7 @@ OC.L10N.register(
"Please contact the organizer directly.":"Kontakt venligst arrangøren direkte.",
"Are you accepting the invitation?":"Accepter du invitationen?",
"Tentative":"Foreløbig",
"Your attendance was updated successfully.":"Dit tilstedeværelse blev opdateret."
"Your attendance was updated successfully.":"Dit tilstedeværelse blev opdateret.",
"_In a month on %1$s for the entire day_::_In %n months on %1$s for the entire day_":["I en måned på %1$s for hele dagen","Om %n måneder den %1$s for hele dagen"],
"_In a year on %1$s for the entire day_::_In %n years on %1$s for the entire day_":["I et år på %1$s for hele dagen","Om %n år den %1$s for hele dagen"],
"In the past on %1$s between %2$s - %3$s":"Tidligere den %1$s mellem %2$s - %3$s",
"_In a minute on %1$s between %2$s - %3$s_::_In %n minutes on %1$s between %2$s - %3$s_":["I et minut på %1$s mellem% %2$s - %3$s","Om %n minutter den %1$s mellem %2$s - %3$s"],
"_In a minute on %1$s between %2$s - %3$s_::_In %n minutes on %1$s between %2$s - %3$s_":["I et minut på %1$s mellem %2$s - %3$s","Om %n minutter den %1$s mellem %2$s - %3$s"],
"_In a hour on %1$s between %2$s - %3$s_::_In %n hours on %1$s between %2$s - %3$s_":["I en time på %1$s mellem %2$s - %3$s","Om %n timer den %1$s mellem %2$s - %3$s"],
"_In a day on %1$s between %2$s - %3$s_::_In %n days on %1$s between %2$s - %3$s_":["I en dag på %1$s mellem %2$s - %3$s","Om %n dage den %1$s mellem %2$s - %3$s"],
"_In a week on %1$s between %2$s - %3$s_::_In %n weeks on %1$s between %2$s - %3$s_":["I en uge på %1$s mellem %2$s - %3$s","Om %n uger den %1$s mellem %2$s - %3$s"],
@@ -279,7 +279,6 @@
"Failed to load availability":"Kunne ikke indlæse tilgængelighed",
"Saved availability":"Gemt tilgængelighed",
"Failed to save availability":"Kunne ikke gemme tilgængelighed",
"Time zone:":"Tidszone:",
"to":"til",
"Delete slot":"Slet slot",
"No working hours set":"Arbejdstider er ikke sat",
@@ -319,6 +318,7 @@
"Please contact the organizer directly.":"Kontakt venligst arrangøren direkte.",
"Are you accepting the invitation?":"Accepter du invitationen?",
"Tentative":"Foreløbig",
"Your attendance was updated successfully.":"Dit tilstedeværelse blev opdateret."
"Your attendance was updated successfully.":"Dit tilstedeværelse blev opdateret.",
"{actor} unshared address book {addressbook} from you":"{actor} ha dejado de compartir la libreta de direcciones {addressbook} con Ud.",
"You unshared address book {addressbook} from {user}":"Ud. ha dejado de compartir la libreta de direcciones {addressbook} con {user}",
"{actor} unshared address book {addressbook} from {user}":"{actor} ha dejado de compartir la libreta de direcciones {addressbook} con {user}",
"{actor} unshared address book {addressbook} from themselves":"{actor} dejó de compartir la libreta de direcciones {addressbook} consigo mismo",
"You shared address book {addressbook} with group {group}":"Has compartido la libreta de direcciones {addressbook} con el grupo {group}",
"{actor} unshared address book {addressbook} from themselves":"{actor} dejó de compartir su propia libreta de direcciones {addressbook}",
"You shared address book {addressbook} with group {group}":"Ud. ha compartido la libreta de direcciones {addressbook} con el grupo {group}",
"{actor} shared address book {addressbook} with group {group}":"{actor} ha compartido la libreta de direcciones {addressbook} con el grupo {group}",
"You unshared address book {addressbook} from group {group}":"Has descompartido la libreta de direcciones {addressbook} con el grupo {group}",
"{actor} unshared address book {addressbook} from group {group}":"{actor} ha descompartido la libreta de direcciones {addressbook} con el grupo {group}",
"{actor} created contact {card} in address book {addressbook}":"{actor} ha creado el contacto {card} en la libreta de direcciones {addressbook}",
"You created contact {card} in address book {addressbook}":"Has creado un contacto {card} en la libreta de direcciones {addressbook}",
"You unshared address book {addressbook} from group {group}":"Ud. ha dejado decompartir la libreta de direcciones {addressbook} con el grupo {group}",
"{actor} unshared address book {addressbook} from group {group}":"{actor} ha dejado de compartir la libreta de direcciones {addressbook} con el grupo {group}",
"{actor} created contact {card} in address book {addressbook}":"{actor} ha creado el contacto {card} en la libreta de direcciones {addressbook}",
"You created contact {card} in address book {addressbook}":"Ud. ha creado un contacto {card} en la libreta de direcciones {addressbook}",
"{actor} deleted contact {card} from address book {addressbook}":"{actor} ha eliminado el contacto {card} de la libreta de direcciones {addressbook}",
"You deleted contact {card} from address book {addressbook}":"Has eliminado el contacto {card} de la libreta de direcciones {addressbook}",
"You deleted contact {card} from address book {addressbook}":"Ud. ha eliminado el contacto {card} de la libreta de direcciones {addressbook}",
"{actor} updated contact {card} in address book {addressbook}":"{actor} ha actualizado el contacto {card} en la libreta de direcciones {addressbook}",
"You updated contact {card} in address book {addressbook}":"Has actualizado el contacto {card} en la libreta de direcciones {addressbook}",
"A <strong>contact</strong> or <strong>address book</strong> was modified":"Se ha modificado un <strong>contacto</strong> o una <strong>libreta de direcciones</strong>",
"You updated contact {card} in address book {addressbook}":"Ud. ha actualizado el contacto {card} en la libreta de direcciones {addressbook}",
"A <strong>contact</strong> or <strong>address book</strong> was modified":"Se ha modificado un <strong>contacto</strong> o una <strong>libreta de direcciones</strong>",
"Accounts":"Cuentas",
"System address book which holds all accounts":"Libretas de direcciones del sistema que contienen todas las cuentas",
"System address book which holds all accounts":"Libreta de direcciones del sistema que contiene todas las cuentas",
"File is not updatable: %1$s":"El archivo no se puede actualizar: %1$s",
"Failed to get storage for file":"Error al obtener almacenamiento para el archivo",
"Could not write to final file, canceled by hook":"No se pudo escribir en el archivo final, cancelado por el sistema.",
"Failed to get storage for file":"Error al obtener datos de almacenamiento para el archivo",
"Could not write to final file, canceled by hook":"No se pudo escribir en el archivo final, cancelado por el sistema",
"Could not write file contents":"No se han podido escribir los contenidos del archivo",
"Error while copying file to target location (copied: %1$s, expected filesize: %2$s)":"Error al copiar el archivo al destino (copiado: %1$s, tamaño esperado: %2$s)",
"Expected filesize of %1$s but read (from Nextcloud client) and wrote (to Nextcloud storage) %2$s. Could either be a network problem on the sending side or a problem writing to the storage on the server side.":"Se esperaba un tamaño de archivo de %1$s pero se leyó (desde el cliente Nextcloud) y se escribió (en el almacenamiento Nextcloud) %2$s. Podría ser un problema de red en el lado del envío o un problema de escritura en el almacenamiento en el lado del servidor.",
"Could not rename part file to final file, canceled by hook":"No se pudo escribir en el archivo final, cancelado por el sistema.",
"Could not rename part file to final file, canceled by hook":"No se pudo renombrar del archivo parcial como el archivo final, cancelado por el sistema.",
"Could not rename part file to final file":"No se ha podido renombrar el archivo parcial como el archivo final",
"Failed to check file size: %1$s":"Fallo al comprobar el tamaño del archivo: %1$s",
"Could not open file: %1$s, file does seem to exist":"No se pudo abrir el archivo: %1$s, parece que el archivo existe",
@@ -260,38 +260,37 @@ OC.L10N.register(
"The DAV system address book sync has not run yet as your instance has more than 1000 users or because an error occurred. Please run it manually by calling \"occ dav:sync-system-addressbook\".":"La sincronización DAV de la libreta de direcciones del sistema no se ha ejecutado ya que su instancia tiene más de 1000 usuarios o por que ha ocurrido un error. Por favor, ejecútela manualmente llamando al comando: \"occ dav:sync-system-addressbook\".",
"WebDAV endpoint":"Endpoint WebDAV",
"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.":"Tu 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 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.",
"Migrated calendar (%1$s)":"Se migró el calendario (%1$s)",
"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",
"Failed to save your absence settings":"Error al guardar tus ajustes de ausencia",
"Failed to save your absence settings":"Error al guardar sus ajustes de ausencia",
"Absence cleared":"Ausencia limpiada",
"Failed to clear your absence settings":"Error al borrar tus ajustes de ausencia",
"Failed to clear your absence settings":"Error al borrar sus ajustes de ausencia",
"First day":"Primer día",
"Last day (inclusive)":"Último día (incluido)",
"Out of office replacement (optional)":"Sustituto durante vacaciones/ausencia (opcional)",
"Name of the replacement":"Nombre del sustituto",
"No results.":"Sin resultados.",
"Start typing.":"Empieza a escribir.",
"Start typing.":"Empiece a escribir.",
"Short absence status":"Estado de ausencia corta",
"Long absence Message":"Mensaje en ausencia larga",
"Long absence Message":"Mensaje de ausencia larga",
"Save":"Guardar",
"Disable absence":"Deshabilitar ausencia",
"Failed to load availability":"No se ha podido cargar la disponibilidad",
"Saved availability":"Disponibilidad guardada",
"Failed to save availability":"No se ha podido guardar la disponibilidad",
"Time zone:":"Zona horaria:",
"to":"para",
"Delete slot":"Eliminar espacio",
"No working hours set":"No se han establecido horas de funcionamiento",
"Add slot":"Añadir espacio",
"Delete slot":"Eliminar franja de tiempo",
"No working hours set":"No se han establecido horas laborales",
"Add slot":"Añadir franja horaria",
"Weekdays":"Días de semana",
"Pick a start time for {dayName}":"Elija una hora de inicio para {dayName}",
"Pick a end time for {dayName}":"Elija una hora fin para {dayName}",
"Automatically set user status to \"Do not disturb\" outside of availability to mute all notifications.":"Cambiar automáticamente el estado del usuario a \"No molestar\" cuando no esté disponible para silenciar todas las notificaciones.",
"Automatically set user status to \"Do not disturb\" outside of availability to mute all notifications.":"Cambiar automáticamente el estado del usuario a \"No molestar\" fuera de las horas de disponibilidad para silenciar todas las notificaciones.",
"Cancel":"Cancelar",
"Import":"Importar",
"Error while saving settings":"Error al guardar los ajustes",
@@ -300,7 +299,7 @@ OC.L10N.register(
"Contact imported successfully":"El contacto se importó exitosamente",
"Error while importing contact":"Error al importar el contacto",
"Import contact":"Importar contacto",
"Reset to default":"Reestablecer a predeterminado",
"Reset to default":"Restablecer a predeterminado",
"Import contacts":"Importar contactos",
"Importing a new .vcf file will delete the existing default contact and replace it with the new one. Do you want to continue?":"Importar un nuevo archivo .vcf eliminará el contacto predeterminado existente y lo reemplazará con el nuevo. ¿Desea continuar?",
"Failed to save example event creation setting":"Fallo al guardar el ajuste de creación de evento de ejemplo",
@@ -314,7 +313,7 @@ OC.L10N.register(
"Availability":"Disponibilidad",
"If you configure your working hours, other people will see when you are out of office when they book a meeting.":"Si configura sus horas laborales, otras personas verán cuando está fuera de la oficina cuando agenden una reunión.",
"Absence":"Ausencia",
"Configure your next absence period.":"Configura el siguiente periodo en que estarás ausente",
"Configure your next absence period.":"Configure el siguiente periodo en que estará ausente",
"Also install the {calendarappstoreopen}Calendar app{linkclose}, or {calendardocopen}connect your desktop & mobile for syncing ↗{linkclose}.":"Instale también la {calendarappstoreopen}app de Calendario{linkclose} o {calendardocopen}conecte su escritorio y móvil para sincronizar ↗{linkclose}.",
"Please make sure to properly set up {emailopen}the email server{linkclose}.":"Por favor, asegúrese de configurar correctamente {emailopen}el servidor web{linkclose}",
"Calendar server":"Servidor de calendario",
@@ -333,6 +332,7 @@ OC.L10N.register(
"Please contact the organizer directly.":"Por favor, contacta directamente con el organizador.",
"Are you accepting the invitation?":"¿Aceptas la invitación?",
"Tentative":"Provisional",
"Your attendance was updated successfully.":"Tu asistencia se ha actualizado con éxito."
"Your attendance was updated successfully.":"Tu asistencia se ha actualizado con éxito.",
"Time zone:":"Zona horaria:"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
"{actor} unshared address book {addressbook} from you":"{actor} ha dejado de compartir la libreta de direcciones {addressbook} con Ud.",
"You unshared address book {addressbook} from {user}":"Ud. ha dejado de compartir la libreta de direcciones {addressbook} con {user}",
"{actor} unshared address book {addressbook} from {user}":"{actor} ha dejado de compartir la libreta de direcciones {addressbook} con {user}",
"{actor} unshared address book {addressbook} from themselves":"{actor} dejó de compartir la libreta de direcciones {addressbook} consigo mismo",
"You shared address book {addressbook} with group {group}":"Has compartido la libreta de direcciones {addressbook} con el grupo {group}",
"{actor} unshared address book {addressbook} from themselves":"{actor} dejó de compartir su propia libreta de direcciones {addressbook}",
"You shared address book {addressbook} with group {group}":"Ud. ha compartido la libreta de direcciones {addressbook} con el grupo {group}",
"{actor} shared address book {addressbook} with group {group}":"{actor} ha compartido la libreta de direcciones {addressbook} con el grupo {group}",
"You unshared address book {addressbook} from group {group}":"Has descompartido la libreta de direcciones {addressbook} con el grupo {group}",
"{actor} unshared address book {addressbook} from group {group}":"{actor} ha descompartido la libreta de direcciones {addressbook} con el grupo {group}",
"{actor} created contact {card} in address book {addressbook}":"{actor} ha creado el contacto {card} en la libreta de direcciones {addressbook}",
"You created contact {card} in address book {addressbook}":"Has creado un contacto {card} en la libreta de direcciones {addressbook}",
"You unshared address book {addressbook} from group {group}":"Ud. ha dejado decompartir la libreta de direcciones {addressbook} con el grupo {group}",
"{actor} unshared address book {addressbook} from group {group}":"{actor} ha dejado de compartir la libreta de direcciones {addressbook} con el grupo {group}",
"{actor} created contact {card} in address book {addressbook}":"{actor} ha creado el contacto {card} en la libreta de direcciones {addressbook}",
"You created contact {card} in address book {addressbook}":"Ud. ha creado un contacto {card} en la libreta de direcciones {addressbook}",
"{actor} deleted contact {card} from address book {addressbook}":"{actor} ha eliminado el contacto {card} de la libreta de direcciones {addressbook}",
"You deleted contact {card} from address book {addressbook}":"Has eliminado el contacto {card} de la libreta de direcciones {addressbook}",
"You deleted contact {card} from address book {addressbook}":"Ud. ha eliminado el contacto {card} de la libreta de direcciones {addressbook}",
"{actor} updated contact {card} in address book {addressbook}":"{actor} ha actualizado el contacto {card} en la libreta de direcciones {addressbook}",
"You updated contact {card} in address book {addressbook}":"Has actualizado el contacto {card} en la libreta de direcciones {addressbook}",
"A <strong>contact</strong> or <strong>address book</strong> was modified":"Se ha modificado un <strong>contacto</strong> o una <strong>libreta de direcciones</strong>",
"You updated contact {card} in address book {addressbook}":"Ud. ha actualizado el contacto {card} en la libreta de direcciones {addressbook}",
"A <strong>contact</strong> or <strong>address book</strong> was modified":"Se ha modificado un <strong>contacto</strong> o una <strong>libreta de direcciones</strong>",
"Accounts":"Cuentas",
"System address book which holds all accounts":"Libretas de direcciones del sistema que contienen todas las cuentas",
"System address book which holds all accounts":"Libreta de direcciones del sistema que contiene todas las cuentas",
"File is not updatable: %1$s":"El archivo no se puede actualizar: %1$s",
"Failed to get storage for file":"Error al obtener almacenamiento para el archivo",
"Could not write to final file, canceled by hook":"No se pudo escribir en el archivo final, cancelado por el sistema.",
"Failed to get storage for file":"Error al obtener datos de almacenamiento para el archivo",
"Could not write to final file, canceled by hook":"No se pudo escribir en el archivo final, cancelado por el sistema",
"Could not write file contents":"No se han podido escribir los contenidos del archivo",
"Error while copying file to target location (copied: %1$s, expected filesize: %2$s)":"Error al copiar el archivo al destino (copiado: %1$s, tamaño esperado: %2$s)",
"Expected filesize of %1$s but read (from Nextcloud client) and wrote (to Nextcloud storage) %2$s. Could either be a network problem on the sending side or a problem writing to the storage on the server side.":"Se esperaba un tamaño de archivo de %1$s pero se leyó (desde el cliente Nextcloud) y se escribió (en el almacenamiento Nextcloud) %2$s. Podría ser un problema de red en el lado del envío o un problema de escritura en el almacenamiento en el lado del servidor.",
"Could not rename part file to final file, canceled by hook":"No se pudo escribir en el archivo final, cancelado por el sistema.",
"Could not rename part file to final file, canceled by hook":"No se pudo renombrar del archivo parcial como el archivo final, cancelado por el sistema.",
"Could not rename part file to final file":"No se ha podido renombrar el archivo parcial como el archivo final",
"Failed to check file size: %1$s":"Fallo al comprobar el tamaño del archivo: %1$s",
"Could not open file: %1$s, file does seem to exist":"No se pudo abrir el archivo: %1$s, parece que el archivo existe",
@@ -258,38 +258,37 @@
"The DAV system address book sync has not run yet as your instance has more than 1000 users or because an error occurred. Please run it manually by calling \"occ dav:sync-system-addressbook\".":"La sincronización DAV de la libreta de direcciones del sistema no se ha ejecutado ya que su instancia tiene más de 1000 usuarios o por que ha ocurrido un error. Por favor, ejecútela manualmente llamando al comando: \"occ dav:sync-system-addressbook\".",
"WebDAV endpoint":"Endpoint WebDAV",
"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.":"Tu 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 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.",
"Migrated calendar (%1$s)":"Se migró el calendario (%1$s)",
"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",
"Failed to save your absence settings":"Error al guardar tus ajustes de ausencia",
"Failed to save your absence settings":"Error al guardar sus ajustes de ausencia",
"Absence cleared":"Ausencia limpiada",
"Failed to clear your absence settings":"Error al borrar tus ajustes de ausencia",
"Failed to clear your absence settings":"Error al borrar sus ajustes de ausencia",
"First day":"Primer día",
"Last day (inclusive)":"Último día (incluido)",
"Out of office replacement (optional)":"Sustituto durante vacaciones/ausencia (opcional)",
"Name of the replacement":"Nombre del sustituto",
"No results.":"Sin resultados.",
"Start typing.":"Empieza a escribir.",
"Start typing.":"Empiece a escribir.",
"Short absence status":"Estado de ausencia corta",
"Long absence Message":"Mensaje en ausencia larga",
"Long absence Message":"Mensaje de ausencia larga",
"Save":"Guardar",
"Disable absence":"Deshabilitar ausencia",
"Failed to load availability":"No se ha podido cargar la disponibilidad",
"Saved availability":"Disponibilidad guardada",
"Failed to save availability":"No se ha podido guardar la disponibilidad",
"Time zone:":"Zona horaria:",
"to":"para",
"Delete slot":"Eliminar espacio",
"No working hours set":"No se han establecido horas de funcionamiento",
"Add slot":"Añadir espacio",
"Delete slot":"Eliminar franja de tiempo",
"No working hours set":"No se han establecido horas laborales",
"Add slot":"Añadir franja horaria",
"Weekdays":"Días de semana",
"Pick a start time for {dayName}":"Elija una hora de inicio para {dayName}",
"Pick a end time for {dayName}":"Elija una hora fin para {dayName}",
"Automatically set user status to \"Do not disturb\" outside of availability to mute all notifications.":"Cambiar automáticamente el estado del usuario a \"No molestar\" cuando no esté disponible para silenciar todas las notificaciones.",
"Automatically set user status to \"Do not disturb\" outside of availability to mute all notifications.":"Cambiar automáticamente el estado del usuario a \"No molestar\" fuera de las horas de disponibilidad para silenciar todas las notificaciones.",
"Cancel":"Cancelar",
"Import":"Importar",
"Error while saving settings":"Error al guardar los ajustes",
@@ -298,7 +297,7 @@
"Contact imported successfully":"El contacto se importó exitosamente",
"Error while importing contact":"Error al importar el contacto",
"Import contact":"Importar contacto",
"Reset to default":"Reestablecer a predeterminado",
"Reset to default":"Restablecer a predeterminado",
"Import contacts":"Importar contactos",
"Importing a new .vcf file will delete the existing default contact and replace it with the new one. Do you want to continue?":"Importar un nuevo archivo .vcf eliminará el contacto predeterminado existente y lo reemplazará con el nuevo. ¿Desea continuar?",
"Failed to save example event creation setting":"Fallo al guardar el ajuste de creación de evento de ejemplo",
@@ -312,7 +311,7 @@
"Availability":"Disponibilidad",
"If you configure your working hours, other people will see when you are out of office when they book a meeting.":"Si configura sus horas laborales, otras personas verán cuando está fuera de la oficina cuando agenden una reunión.",
"Absence":"Ausencia",
"Configure your next absence period.":"Configura el siguiente periodo en que estarás ausente",
"Configure your next absence period.":"Configure el siguiente periodo en que estará ausente",
"Also install the {calendarappstoreopen}Calendar app{linkclose}, or {calendardocopen}connect your desktop & mobile for syncing ↗{linkclose}.":"Instale también la {calendarappstoreopen}app de Calendario{linkclose} o {calendardocopen}conecte su escritorio y móvil para sincronizar ↗{linkclose}.",
"Please make sure to properly set up {emailopen}the email server{linkclose}.":"Por favor, asegúrese de configurar correctamente {emailopen}el servidor web{linkclose}",
"Calendar server":"Servidor de calendario",
@@ -331,6 +330,7 @@
"Please contact the organizer directly.":"Por favor, contacta directamente con el organizador.",
"Are you accepting the invitation?":"¿Aceptas la invitación?",
"Tentative":"Provisional",
"Your attendance was updated successfully.":"Tu asistencia se ha actualizado con éxito."
"Your attendance was updated successfully.":"Tu asistencia se ha actualizado con éxito.",
"Time zone:":"Zona horaria:"
},"pluralForm":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
"{actor} created address book {addressbook}":"{actor}-(e)k {addressbook} helbide-liburua sortu du ",
"You created address book {addressbook}":"{addressbook} helbide-liburua sortu duzu",
@@ -248,6 +250,11 @@ OC.L10N.register(
"Completed on %s":"%s-an osatua",
"Due on %s by %s":"%s-(e)an epemuga %s-(e)k",
"Due on %s":"%s-(e)an epemuga",
"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.":"Ongi etorri Nextcloud Egutegira!\n\nHau gertaera erakusgarria da - aztertu plangintzaren malgutasuna Nextcloud Egutegiarekin nahi dituzun edizioak eginez!\n\nNextcloud Egutegia aukerarekin, hau egin dezakezu:\n- Sortu, editatu eta kudeatu gertaerak esfortzurik gabe.\n- Egutegi ugari sortu eta taldekideekin, lagunekin edo familiarekin partekatu.\n- Egiaztatu libre egotea eta bistaratu zure laneko orduak beste batzuei.\n- Aplikazio eta gailuekin arazorik gabe integratzea CalDAV bidez.\n- Zure esperientzia pertsonalizatu: gertaera errepikariak programatu, jakinarazpenak doitu eta bestelako ezarpenak.",
"Example event - open me!":"Gertaera adibidea - ireki nazazu!",
"The system address book contains contact information for all users in your instance.":"Sistemaren helbide-liburuak zure instantziako erabiltzaile guztien kontaktu-informazioa dauka.",
"Enable System Address Book":"Gaitu sistemaren helbide-liburua",
"DAV system address book":"DAV sistemaren helbide-liburua",
"No outstanding DAV system address book sync.":"Ez dago DAV sistema helbide-liburuaren sinkronizazio arrarorik.",
"The DAV system address book sync has not run yet as your instance has more than 1000 users or because an error occurred. Please run it manually by calling \"occ dav:sync-system-addressbook\".":"DAV sistemaren helbide-liburuaren sinkronizazioa oraindik ez da martxan jarri zure instantziak 1000 erabiltzaile baino gehiago dituelako edo akats bat gertatu delako. Mesedez, exekutatu eskuz \"occ dav:sync-system-addressbook\" deituz.",
@@ -276,7 +283,6 @@ OC.L10N.register(
"Failed to load availability":"Ezin izan da eskuragarritasuna kargatu",
"Saved availability":"Eskuragarritasuna gorde da",
"Failed to save availability":"Ezin izan da eskuragarritasuna gorde",
"Time zone:":"Ordu-zona:",
"to":"honi",
"Delete slot":"Ezabatu tartea",
"No working hours set":"Ez dira laneko orduak ezarri",
@@ -288,7 +294,22 @@ OC.L10N.register(
"Cancel":"Utzi",
"Import":"Inportatu",
"Error while saving settings":"Errorea ezarpenak gordetzean",
"Contact reset successfully":"Kontaktua behar bezala berrezarri da",
"Error while resetting contact":"Errorea kontaktua berrezartzean",
"Contact imported successfully":"Kontaktua behar bezala inportatu da",
"Error while importing contact":"Errorea kontaktua inportatzean",
"Import contact":"Inportatu kontaktua",
"Reset to default":"Berezarri balio lehenetsira",
"Import contacts":"Inportatu kontaktuak",
"Importing a new .vcf file will delete the existing default contact and replace it with the new one. Do you want to continue?":".vcf fitxategi berri bat inportatzean, lehendik dagoen kontaktu lehenetsia ezabatu eta berriarekin ordeztuko da. Jarraitu nahi duzu?",
"Failed to save example event creation setting":"Adibide gertaeraren sortze ezarpenak gordetzeak huts egin du",
"Failed to upload the example event":"Adibide gertaera igotzeak huts egin du",
"Custom example event was saved successfully":"Adibide gertaera pertsonalizatua behar bezala gorde da",
"Failed to delete the custom example event":"Adibide gertaera pertsonalizatua ezabatzeak huts egin du",
"Custom example event was deleted successfully":"Adibide gertaera pertsonalizatua behar bezala ezabatu da.",
"Uploading a new event will overwrite the existing one.":"Gertaera berri bat igotzeak dagoena gainidatz dezake",
"Upload event":"Igo gertaera",
"Availability":"Eskuragarritasuna",
"If you configure your working hours, other people will see when you are out of office when they book a meeting.":"Zure lan orduak konfiguratzen badituzu, beste pertsonek bulegotik kanpo zaudela ikusiko dute bilera bat erreserbatzen dutenean.",
"Absence":"Absentzia",
@@ -305,10 +326,13 @@ OC.L10N.register(
"Send reminder notifications to calendar sharees as well":"Bidali gogorarazpen jakinarazpenak egutegi partekatzea dutenei ere",
"Reminders are always sent to organizers and attendees.":"Gogorarazpenak beti bidaltzen zaizkie antolatzaileei eta parte-hartzaileei.",
"Enable notifications for events via push":"Gaitu push bidezko jakinarazpenak gertaerentzat",
"Example content":"Adibideko edukia",
"Example content serves to showcase the features of Nextcloud. Default content is shipped with Nextcloud, and can be replaced by custom content.":"Adibideko edukiak Nextcloud-en ezaugarriak erakusteko balio du. Eduki lehenetsia Nextcloud-ekin bidaltzen da, eta eduki pertsonalizatuarekin ordezka daiteke.",
"There was an error updating your attendance status.":"Errore bat gertatu da zure parte-hartze egoera eguneratzerakoan.",
"Please contact the organizer directly.":"Mesedez jarri harremanetan antolatzailearekin zuzenean.",
"Are you accepting the invitation?":"Gonbidapena onartzen duzu?",
"Tentative":"Behin behinekoa",
"Your attendance was updated successfully.":"Zure parte-hartzea ondo eguneratu da."
"Your attendance was updated successfully.":"Zure parte-hartzea ondo eguneratu da.",
"{actor} created address book {addressbook}":"{actor}-(e)k {addressbook} helbide-liburua sortu du ",
"You created address book {addressbook}":"{addressbook} helbide-liburua sortu duzu",
@@ -246,6 +248,11 @@
"Completed on %s":"%s-an osatua",
"Due on %s by %s":"%s-(e)an epemuga %s-(e)k",
"Due on %s":"%s-(e)an epemuga",
"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.":"Ongi etorri Nextcloud Egutegira!\n\nHau gertaera erakusgarria da - aztertu plangintzaren malgutasuna Nextcloud Egutegiarekin nahi dituzun edizioak eginez!\n\nNextcloud Egutegia aukerarekin, hau egin dezakezu:\n- Sortu, editatu eta kudeatu gertaerak esfortzurik gabe.\n- Egutegi ugari sortu eta taldekideekin, lagunekin edo familiarekin partekatu.\n- Egiaztatu libre egotea eta bistaratu zure laneko orduak beste batzuei.\n- Aplikazio eta gailuekin arazorik gabe integratzea CalDAV bidez.\n- Zure esperientzia pertsonalizatu: gertaera errepikariak programatu, jakinarazpenak doitu eta bestelako ezarpenak.",
"Example event - open me!":"Gertaera adibidea - ireki nazazu!",
"The system address book contains contact information for all users in your instance.":"Sistemaren helbide-liburuak zure instantziako erabiltzaile guztien kontaktu-informazioa dauka.",
"Enable System Address Book":"Gaitu sistemaren helbide-liburua",
"DAV system address book":"DAV sistemaren helbide-liburua",
"No outstanding DAV system address book sync.":"Ez dago DAV sistema helbide-liburuaren sinkronizazio arrarorik.",
"The DAV system address book sync has not run yet as your instance has more than 1000 users or because an error occurred. Please run it manually by calling \"occ dav:sync-system-addressbook\".":"DAV sistemaren helbide-liburuaren sinkronizazioa oraindik ez da martxan jarri zure instantziak 1000 erabiltzaile baino gehiago dituelako edo akats bat gertatu delako. Mesedez, exekutatu eskuz \"occ dav:sync-system-addressbook\" deituz.",
@@ -274,7 +281,6 @@
"Failed to load availability":"Ezin izan da eskuragarritasuna kargatu",
"Saved availability":"Eskuragarritasuna gorde da",
"Failed to save availability":"Ezin izan da eskuragarritasuna gorde",
"Time zone:":"Ordu-zona:",
"to":"honi",
"Delete slot":"Ezabatu tartea",
"No working hours set":"Ez dira laneko orduak ezarri",
@@ -286,7 +292,22 @@
"Cancel":"Utzi",
"Import":"Inportatu",
"Error while saving settings":"Errorea ezarpenak gordetzean",
"Contact reset successfully":"Kontaktua behar bezala berrezarri da",
"Error while resetting contact":"Errorea kontaktua berrezartzean",
"Contact imported successfully":"Kontaktua behar bezala inportatu da",
"Error while importing contact":"Errorea kontaktua inportatzean",
"Import contact":"Inportatu kontaktua",
"Reset to default":"Berezarri balio lehenetsira",
"Import contacts":"Inportatu kontaktuak",
"Importing a new .vcf file will delete the existing default contact and replace it with the new one. Do you want to continue?":".vcf fitxategi berri bat inportatzean, lehendik dagoen kontaktu lehenetsia ezabatu eta berriarekin ordeztuko da. Jarraitu nahi duzu?",
"Failed to save example event creation setting":"Adibide gertaeraren sortze ezarpenak gordetzeak huts egin du",
"Failed to upload the example event":"Adibide gertaera igotzeak huts egin du",
"Custom example event was saved successfully":"Adibide gertaera pertsonalizatua behar bezala gorde da",
"Failed to delete the custom example event":"Adibide gertaera pertsonalizatua ezabatzeak huts egin du",
"Custom example event was deleted successfully":"Adibide gertaera pertsonalizatua behar bezala ezabatu da.",
"Uploading a new event will overwrite the existing one.":"Gertaera berri bat igotzeak dagoena gainidatz dezake",
"Upload event":"Igo gertaera",
"Availability":"Eskuragarritasuna",
"If you configure your working hours, other people will see when you are out of office when they book a meeting.":"Zure lan orduak konfiguratzen badituzu, beste pertsonek bulegotik kanpo zaudela ikusiko dute bilera bat erreserbatzen dutenean.",
"Absence":"Absentzia",
@@ -303,10 +324,13 @@
"Send reminder notifications to calendar sharees as well":"Bidali gogorarazpen jakinarazpenak egutegi partekatzea dutenei ere",
"Reminders are always sent to organizers and attendees.":"Gogorarazpenak beti bidaltzen zaizkie antolatzaileei eta parte-hartzaileei.",
"Enable notifications for events via push":"Gaitu push bidezko jakinarazpenak gertaerentzat",
"Example content":"Adibideko edukia",
"Example content serves to showcase the features of Nextcloud. Default content is shipped with Nextcloud, and can be replaced by custom content.":"Adibideko edukiak Nextcloud-en ezaugarriak erakusteko balio du. Eduki lehenetsia Nextcloud-ekin bidaltzen da, eta eduki pertsonalizatuarekin ordezka daiteke.",
"There was an error updating your attendance status.":"Errore bat gertatu da zure parte-hartze egoera eguneratzerakoan.",
"Please contact the organizer directly.":"Mesedez jarri harremanetan antolatzailearekin zuzenean.",
"Are you accepting the invitation?":"Gonbidapena onartzen duzu?",
"Tentative":"Behin behinekoa",
"Your attendance was updated successfully.":"Zure parte-hartzea ondo eguneratu da."
"Your attendance was updated successfully.":"Zure parte-hartzea ondo eguneratu da.",
"_In a week on %1$s for the entire day_::_In %n weeks on %1$s for the entire day_":["Za tydzień, dnia %1$s, przez cały dzień","Za %n tygodnie, dnia %1$s, przez cały dzień","Za %n tygodni, dnia %1$s, przez cały dzień","Za %n tygodni, dnia %1$s, przez cały dzień"],
"_In a month on %1$s for the entire day_::_In %n months on %1$s for the entire day_":["W ciągu miesiąca, dnia %1$s przez cały dzień","W ciągu %n miesięcy, dnia %1$s przez cały dzień","W ciągu %n miesięcy, dnia %1$s przez cały dzień","W ciągu %n miesięcy, dnia %1$s przez cały dzień"],
"_In a year on %1$s for the entire day_::_In %n years on %1$s for the entire day_":["Za rok dnia %1$s przez cały dzień","Za %n lata dnia %1$s przez cały dzień","Za %n lat dnia %1$s przez cały dzień","Za %n lat dnia %1$s przez cały dzień"],
"In the past on %1$s between %2$s - %3$s":"W przeszłości dnia %1$s między %2$s - %3$s",
"_In a minute on %1$s between %2$s - %3$s_::_In %n minutes on %1$s between %2$s - %3$s_":["Za minutę dnia %1$s między %2$s - %3$s","Za %n minuty dnia %1$s między %2$s - %3$s","Za %n minut dnia %1$s między %2$s - %3$s","Za %n minut dnia %1$s między %2$s - %3$s"],
"_In a hour on %1$s between %2$s - %3$s_::_In %n hours on %1$s between %2$s - %3$s_":["Za godzinę dnia %1$s między %2$s - %3$s","Za %n godziny dnia %1$s między %2$s - %3$s","Za %n godzin dnia %1$s między %2$s - %3$s","Za %n godzin dnia %1$s między %2$s - %3$s"],
"_In a day on %1$s between %2$s - %3$s_::_In %n days on %1$s between %2$s - %3$s_":["Za dzień, dnia %1$s między %2$s - %3$s","Za %n dni dnia %1$s między %2$s - %3$s","Za %n dni dnia %1$s między %2$s - %3$s","Za %n dni dnia %1$s między %2$s - %3$s"],
"_In a week on %1$s between %2$s - %3$s_::_In %n weeks on %1$s between %2$s - %3$s_":["Za tydzień dnia %1$s między %2$s - %3$s","Za %n tygodnie dnia %1$s między %2$s - %3$s","Za %n tygodni dnia %1$s między %2$s - %3$s","Za %n tygodni dnia %1$s między %2$s - %3$s"],
"_In a month on %1$s between %2$s - %3$s_::_In %n months on %1$s between %2$s - %3$s_":["Za miesiąc dnia %1$s między %2$s - %3$s","Za %n miesięcy dnia %1$s między %2$s - %3$s","Za %n miesięcy dnia %1$s między %2$s - %3$s","Za %n miesięcy dnia %1$s między %2$s - %3$s"],
@@ -87,18 +90,38 @@ OC.L10N.register(
"Every Day for the entire day":"Codziennie przez cały dzień",
"Every Day for the entire day until %1$s":"Codziennie przez cały dzień do %1$s",
"Every Day between %1$s - %2$s":"Codziennie między %1$s – %2$s",
"Every Day between %1$s - %2$s until %3$s":"Codziennie między %1$s - %2$s do %3$s",
"Every %1$d Days for the entire day":"Co %1$d dni przez cały dzień",
"Every %1$d Days for the entire day until %2$s":"Co %1$d dni przez cały dzień aż do %2$s",
"Every %1$d Days between %2$s - %3$s":"Co %1$d dni pomiędzy %2$s - %3$s",
"Every %1$d Days between %2$s - %3$s until %4$s":"Co %1$d dni, pomiędzy %2$s - %3$s aż do %4$s",
"Could not generate event recurrence statement":"Nie można wygenerować zestawienia powtórzeń zdarzenia",
"Every Week on %1$s for the entire day":"Każdego tygodnia w %1$s przez cały dzień",
"Every Week on %1$s for the entire day until %2$s":"Co tydzień w %1$s przez cały dzień do %2$s",
"Every Week on %1$s between %2$s - %3$s":"Co tydzień w %1$s między %2$s - %3$s",
"Every Week on %1$s between %2$s - %3$s until %4$s":"Co tydzień w %1$s między %2$s - %3$s do %4$s",
"Every %1$d Weeks on %2$s for the entire day":"Co %1$d tygodni w %2$s przez cały dzień",
"Every %1$d Weeks on %2$s for the entire day until %3$s":"Co %1$d tygodnie w %2$s przez cały dzień do %3$s",
"Every %1$d Weeks on %2$s between %3$s - %4$s":"Co %1$d tygodnie w %2$s między %3$s - %4$s",
"Every %1$d Weeks on %2$s between %3$s - %4$s until %5$s":"Co %1$d tygodnie w %2$s między %3$s - %4$s do %5$s",
"Every Month on the %1$s for the entire day":"Co miesiąc dnia %1$s przez cały dzień",
"Every Month on the %1$s for the entire day until %2$s":"Co miesiąc dnia %1$s przez cały dzień do %2$s",
"Every Month on the %1$s between %2$s - %3$s":"Co miesiąc dnia %1$s między %2$s - %3$s",
"Every Month on the %1$s between %2$s - %3$s until %4$s":"Co miesiąc dnia %1$s między %2$s - %3$s do %4$s",
"Every %1$d Months on the %2$s for the entire day":"Co %1$d miesiący dnia %2$s przez cały dzień",
"Every %1$d Months on the %2$s for the entire day until %3$s":"Co %1$d miesięcy dnia %2$s przez cały dzień do %3$s",
"Every %1$d Months on the %2$s between %3$s - %4$s":"Co %1$d miesięcy dnia %2$s między %3$s - %4$s",
"Every %1$d Months on the %2$s between %3$s - %4$s until %5$s":"Każdego %1$d miesiąca dnia %2$s między %3$s - %4$s do %5$s",
"Every Year in %1$s on the %2$s for the entire day":"Co rok w %1$s dnia %2$s przez cały dzień",
"Every Year in %1$s on the %2$s for the entire day until %3$s":"Co rok w %1$s dnia %2$s przez cały dzień do %3$s",
"Every Year in %1$s on the %2$s between %3$s - %4$s":"Co roku za %1$s dnia %2$s między %3$s - %4$s",
"Every Year in %1$s on the %2$s between %3$s - %4$s until %5$s":"Co roku za %1$s dnia %2$s między %3$s - %4$s do %5$s",
"Every %1$d Years in %2$s on the %3$s for the entire day":"Co %1$d lat dnia %2$s o %3$s przez cały dzień",
"Every %1$d Years in %2$s on the %3$s for the entire day until %4$s":"Co %1$d lat w %2$s dnia %3$s przez cały dzień do %4$s",
"Every %1$d Years in %2$s on the %3$s between %4$s - %5$s":"Co %1$d lat w %2$s dnia %3$s między %4$s - %5$s",
"Every %1$d Years in %2$s on the %3$s between %4$s - %5$s until %6$s":"Co %1$d lat w %2$s dnia %3$s między %4$s - %5$s do %6$s",
"On specific dates for the entire day until %1$s":"W określonych datach przez cały dzień do %1$s",
"On specific dates between %1$s - %2$s until %3$s":"W określonych datach między %1$s - %2$s do %3$s",
"In the past on %1$s":"W przeszłości dnia %1$s",
"_In a minute on %1$s_::_In %n minutes on %1$s_":["Za minutę dnia %1$s","Za %n minut dnia %1$s","Za %n minut dnia %1$s","Za %n minut dnia %1$s"],
"_In a hour on %1$s_::_In %n hours on %1$s_":["Za godzinę dnia %1$s","Za %n godziny dnia %1$s","Za %n godzin dnia %1$s","Za %n godzin dnia %1$s"],
@@ -108,6 +131,18 @@ OC.L10N.register(
"_In a year on %1$s_::_In %n years on %1$s_":["Za rok dnia %1$s","Za %n lat dnia %1$s","Za %n lat dnia %1$s","Za %n lat dnia %1$s"],
"In the past on %1$s then on %2$s":"W przeszłości dnia %1$s, a następnie %2$s",
"_In a minute on %1$s then on %2$s_::_In %n minutes on %1$s then on %2$s_":["Za minutę dnia %1$s, a następnie %2$s","Za %n minuty dnia %1$s, a następnie %2$s","Za %n minut dnia %1$s, a następnie %2$s","Za %n minut dnia %1$s, a następnie %2$s"],
"_In a hour on %1$s then on %2$s_::_In %n hours on %1$s then on %2$s_":["Za godzinę dnia %1$s, następnie dnia %2$s","Za %n godziny dnia %1$s, następnie dnia %2$s","Za %n godzin dnia %1$s, następnie dnia %2$s","Za %n godzin dnia %1$s, następnie dnia %2$s"],
"_In a day on %1$s then on %2$s_::_In %n days on %1$s then on %2$s_":["Jutro dnia %1$s, następnie dnia %2$s","Za %n dni dnia %1$s, następnie dnia %2$s","Za %n dni dnia %1$s, następnie dnia %2$s","Za %n dni dnia %1$s, następnie dnia %2$s"],
"_In a week on %1$s then on %2$s_::_In %n weeks on %1$s then on %2$s_":["Za tydzień dnia %1$s, następnie dnia %2$s","Za %n tygodnie dnia %1$s, następnie dnia %2$s","Za %n tygodni dnia %1$s, następnie dnia %2$s","Za %n tygodni dnia %1$s, następnie dnia %2$s"],
"_In a month on %1$s then on %2$s_::_In %n months on %1$s then on %2$s_":["Za miesiąc dnia %1$s, następnie dnia %2$s","Za %n miesiące dnia %1$s, następnie dnia %2$s","Za %n miesięcy dnia %1$s, następnie dnia %2$s","Za %n miesięcy dnia %1$s, następnie dnia %2$s"],
"_In a year on %1$s then on %2$s_::_In %n years on %1$s then on %2$s_":["Za rok dnia %1$s, następnie dnia %2$s","Za %n lata dnia %1$s, następnie dnia %2$s","Za %n lat dnia %1$s, następnie dnia %2$s","Za %n lat dnia %1$s, następnie dnia %2$s"],
"In the past on %1$s then on %2$s and %3$s":"W przeszłości dnia %1$s, następnie dnia %2$s i %3$s",
"_In a minute on %1$s then on %2$s and %3$s_::_In %n minutes on %1$s then on %2$s and %3$s_":["Za minutę dnia %1$s, następnie dnia %2$s i %3$s","Za %n minuty dnia %1$s, następnie dnia %2$s i %3$s","Za %n minut dnia %1$s, następnie dnia %2$s i %3$s","Za %n minut dnia %1$s, następnie dnia %2$s i %3$s"],
"_In a hour on %1$s then on %2$s and %3$s_::_In %n hours on %1$s then on %2$s and %3$s_":["Za godzinę dnia %1$s, następnie dnia %2$s i %3$s","Za %%ngodziny dnia %1$s, następnie dnia %2$s i %3$s","Za %n godzin dnia %1$s, następnie dnia %2$s i %3$s","Za %n godzin dnia %1$s, następnie dnia %2$s i %3$s"],
"_In a day on %1$s then on %2$s and %3$s_::_In %n days on %1$s then on %2$s and %3$s_":["Jutro, dnia %1$s, następnie dnia %2$s i %3$s","Za %n dni dnia %1$s, następnie dnia %2$s i %3$s","Za %n dni dnia %1$s, następnie dnia %2$s i %3$s","Za %n dni dnia %1$s, następnie dnia %2$s i %3$s"],
"_In a week on %1$s then on %2$s and %3$s_::_In %n weeks on %1$s then on %2$s and %3$s_":["Za tydzień dnia %1$s, następnie dnia %2$s i %3$s","Za %n tygodnie dnia %1$s, następnie dnia %2$s i %3$s","Za %n tygodni dnia %1$s, następnie dnia %2$s i %3$s","Za %n tygodni dnia %1$s, następnie dnia %2$s i %3$s"],
"_In a month on %1$s then on %2$s and %3$s_::_In %n months on %1$s then on %2$s and %3$s_":["Za miesiąc dnia %1$s, następnie dnia %2$s i %3$s","Za %n miesiące dnia %1$s, następnie dnia %2$s i %3$s","Za %n miesięcy dnia %1$s, następnie dnia %2$s i %3$s","Za %n miesięcy dnia %1$s, następnie dnia %2$s i %3$s"],
"_In a year on %1$s then on %2$s and %3$s_::_In %n years on %1$s then on %2$s and %3$s_":["Za rok dnia %1$s, następnie dnia %2$s i %3$s","Za %n lata dnia %1$s, następnie dnia %2$s i %3$s","Za %n lat dnia %1$s, następnie dnia %2$s i %3$s","Za %n lat dnia %1$s, następnie dnia %2$s i %3$s"],
"Could not generate next recurrence statement":"Nie można wygenerować następnej instrukcji powtarzania",
"Cancelled: %1$s":"Anulowane: %1$s",
"\"%1$s\" has been canceled":"\"%1$s\" zostało anulowane",
@@ -248,7 +283,6 @@ OC.L10N.register(
"Failed to load availability":"Nie udało się wczytać dostępności",
"Saved availability":"Zapisana dostępność",
"Failed to save availability":"Nie udało się zapisać dostępności",
"Time zone:":"Strefa czasowa:",
"to":"od",
"Delete slot":"Usuń przedział czasu",
"No working hours set":"Nie ustawiono godzin pracy",
@@ -298,6 +332,7 @@ OC.L10N.register(
"Please contact the organizer directly.":"Skontaktuj się bezpośrednio z orgnizatorem.",
"Are you accepting the invitation?":"Czy akceptujesz zaproszenie?",
"Tentative":"Niepewne",
"Your attendance was updated successfully.":"Twoja obecność została pomyślnie zaktualizowana."
"Your attendance was updated successfully.":"Twoja obecność została pomyślnie zaktualizowana.",
"_In a week on %1$s for the entire day_::_In %n weeks on %1$s for the entire day_":["Za tydzień, dnia %1$s, przez cały dzień","Za %n tygodnie, dnia %1$s, przez cały dzień","Za %n tygodni, dnia %1$s, przez cały dzień","Za %n tygodni, dnia %1$s, przez cały dzień"],
"_In a month on %1$s for the entire day_::_In %n months on %1$s for the entire day_":["W ciągu miesiąca, dnia %1$s przez cały dzień","W ciągu %n miesięcy, dnia %1$s przez cały dzień","W ciągu %n miesięcy, dnia %1$s przez cały dzień","W ciągu %n miesięcy, dnia %1$s przez cały dzień"],
"_In a year on %1$s for the entire day_::_In %n years on %1$s for the entire day_":["Za rok dnia %1$s przez cały dzień","Za %n lata dnia %1$s przez cały dzień","Za %n lat dnia %1$s przez cały dzień","Za %n lat dnia %1$s przez cały dzień"],
"In the past on %1$s between %2$s - %3$s":"W przeszłości dnia %1$s między %2$s - %3$s",
"_In a minute on %1$s between %2$s - %3$s_::_In %n minutes on %1$s between %2$s - %3$s_":["Za minutę dnia %1$s między %2$s - %3$s","Za %n minuty dnia %1$s między %2$s - %3$s","Za %n minut dnia %1$s między %2$s - %3$s","Za %n minut dnia %1$s między %2$s - %3$s"],
"_In a hour on %1$s between %2$s - %3$s_::_In %n hours on %1$s between %2$s - %3$s_":["Za godzinę dnia %1$s między %2$s - %3$s","Za %n godziny dnia %1$s między %2$s - %3$s","Za %n godzin dnia %1$s między %2$s - %3$s","Za %n godzin dnia %1$s między %2$s - %3$s"],
"_In a day on %1$s between %2$s - %3$s_::_In %n days on %1$s between %2$s - %3$s_":["Za dzień, dnia %1$s między %2$s - %3$s","Za %n dni dnia %1$s między %2$s - %3$s","Za %n dni dnia %1$s między %2$s - %3$s","Za %n dni dnia %1$s między %2$s - %3$s"],
"_In a week on %1$s between %2$s - %3$s_::_In %n weeks on %1$s between %2$s - %3$s_":["Za tydzień dnia %1$s między %2$s - %3$s","Za %n tygodnie dnia %1$s między %2$s - %3$s","Za %n tygodni dnia %1$s między %2$s - %3$s","Za %n tygodni dnia %1$s między %2$s - %3$s"],
"_In a month on %1$s between %2$s - %3$s_::_In %n months on %1$s between %2$s - %3$s_":["Za miesiąc dnia %1$s między %2$s - %3$s","Za %n miesięcy dnia %1$s między %2$s - %3$s","Za %n miesięcy dnia %1$s między %2$s - %3$s","Za %n miesięcy dnia %1$s między %2$s - %3$s"],
@@ -85,18 +88,38 @@
"Every Day for the entire day":"Codziennie przez cały dzień",
"Every Day for the entire day until %1$s":"Codziennie przez cały dzień do %1$s",
"Every Day between %1$s - %2$s":"Codziennie między %1$s – %2$s",
"Every Day between %1$s - %2$s until %3$s":"Codziennie między %1$s - %2$s do %3$s",
"Every %1$d Days for the entire day":"Co %1$d dni przez cały dzień",
"Every %1$d Days for the entire day until %2$s":"Co %1$d dni przez cały dzień aż do %2$s",
"Every %1$d Days between %2$s - %3$s":"Co %1$d dni pomiędzy %2$s - %3$s",
"Every %1$d Days between %2$s - %3$s until %4$s":"Co %1$d dni, pomiędzy %2$s - %3$s aż do %4$s",
"Could not generate event recurrence statement":"Nie można wygenerować zestawienia powtórzeń zdarzenia",
"Every Week on %1$s for the entire day":"Każdego tygodnia w %1$s przez cały dzień",
"Every Week on %1$s for the entire day until %2$s":"Co tydzień w %1$s przez cały dzień do %2$s",
"Every Week on %1$s between %2$s - %3$s":"Co tydzień w %1$s między %2$s - %3$s",
"Every Week on %1$s between %2$s - %3$s until %4$s":"Co tydzień w %1$s między %2$s - %3$s do %4$s",
"Every %1$d Weeks on %2$s for the entire day":"Co %1$d tygodni w %2$s przez cały dzień",
"Every %1$d Weeks on %2$s for the entire day until %3$s":"Co %1$d tygodnie w %2$s przez cały dzień do %3$s",
"Every %1$d Weeks on %2$s between %3$s - %4$s":"Co %1$d tygodnie w %2$s między %3$s - %4$s",
"Every %1$d Weeks on %2$s between %3$s - %4$s until %5$s":"Co %1$d tygodnie w %2$s między %3$s - %4$s do %5$s",
"Every Month on the %1$s for the entire day":"Co miesiąc dnia %1$s przez cały dzień",
"Every Month on the %1$s for the entire day until %2$s":"Co miesiąc dnia %1$s przez cały dzień do %2$s",
"Every Month on the %1$s between %2$s - %3$s":"Co miesiąc dnia %1$s między %2$s - %3$s",
"Every Month on the %1$s between %2$s - %3$s until %4$s":"Co miesiąc dnia %1$s między %2$s - %3$s do %4$s",
"Every %1$d Months on the %2$s for the entire day":"Co %1$d miesiący dnia %2$s przez cały dzień",
"Every %1$d Months on the %2$s for the entire day until %3$s":"Co %1$d miesięcy dnia %2$s przez cały dzień do %3$s",
"Every %1$d Months on the %2$s between %3$s - %4$s":"Co %1$d miesięcy dnia %2$s między %3$s - %4$s",
"Every %1$d Months on the %2$s between %3$s - %4$s until %5$s":"Każdego %1$d miesiąca dnia %2$s między %3$s - %4$s do %5$s",
"Every Year in %1$s on the %2$s for the entire day":"Co rok w %1$s dnia %2$s przez cały dzień",
"Every Year in %1$s on the %2$s for the entire day until %3$s":"Co rok w %1$s dnia %2$s przez cały dzień do %3$s",
"Every Year in %1$s on the %2$s between %3$s - %4$s":"Co roku za %1$s dnia %2$s między %3$s - %4$s",
"Every Year in %1$s on the %2$s between %3$s - %4$s until %5$s":"Co roku za %1$s dnia %2$s między %3$s - %4$s do %5$s",
"Every %1$d Years in %2$s on the %3$s for the entire day":"Co %1$d lat dnia %2$s o %3$s przez cały dzień",
"Every %1$d Years in %2$s on the %3$s for the entire day until %4$s":"Co %1$d lat w %2$s dnia %3$s przez cały dzień do %4$s",
"Every %1$d Years in %2$s on the %3$s between %4$s - %5$s":"Co %1$d lat w %2$s dnia %3$s między %4$s - %5$s",
"Every %1$d Years in %2$s on the %3$s between %4$s - %5$s until %6$s":"Co %1$d lat w %2$s dnia %3$s między %4$s - %5$s do %6$s",
"On specific dates for the entire day until %1$s":"W określonych datach przez cały dzień do %1$s",
"On specific dates between %1$s - %2$s until %3$s":"W określonych datach między %1$s - %2$s do %3$s",
"In the past on %1$s":"W przeszłości dnia %1$s",
"_In a minute on %1$s_::_In %n minutes on %1$s_":["Za minutę dnia %1$s","Za %n minut dnia %1$s","Za %n minut dnia %1$s","Za %n minut dnia %1$s"],
"_In a hour on %1$s_::_In %n hours on %1$s_":["Za godzinę dnia %1$s","Za %n godziny dnia %1$s","Za %n godzin dnia %1$s","Za %n godzin dnia %1$s"],
@@ -106,6 +129,18 @@
"_In a year on %1$s_::_In %n years on %1$s_":["Za rok dnia %1$s","Za %n lat dnia %1$s","Za %n lat dnia %1$s","Za %n lat dnia %1$s"],
"In the past on %1$s then on %2$s":"W przeszłości dnia %1$s, a następnie %2$s",
"_In a minute on %1$s then on %2$s_::_In %n minutes on %1$s then on %2$s_":["Za minutę dnia %1$s, a następnie %2$s","Za %n minuty dnia %1$s, a następnie %2$s","Za %n minut dnia %1$s, a następnie %2$s","Za %n minut dnia %1$s, a następnie %2$s"],
"_In a hour on %1$s then on %2$s_::_In %n hours on %1$s then on %2$s_":["Za godzinę dnia %1$s, następnie dnia %2$s","Za %n godziny dnia %1$s, następnie dnia %2$s","Za %n godzin dnia %1$s, następnie dnia %2$s","Za %n godzin dnia %1$s, następnie dnia %2$s"],
"_In a day on %1$s then on %2$s_::_In %n days on %1$s then on %2$s_":["Jutro dnia %1$s, następnie dnia %2$s","Za %n dni dnia %1$s, następnie dnia %2$s","Za %n dni dnia %1$s, następnie dnia %2$s","Za %n dni dnia %1$s, następnie dnia %2$s"],
"_In a week on %1$s then on %2$s_::_In %n weeks on %1$s then on %2$s_":["Za tydzień dnia %1$s, następnie dnia %2$s","Za %n tygodnie dnia %1$s, następnie dnia %2$s","Za %n tygodni dnia %1$s, następnie dnia %2$s","Za %n tygodni dnia %1$s, następnie dnia %2$s"],
"_In a month on %1$s then on %2$s_::_In %n months on %1$s then on %2$s_":["Za miesiąc dnia %1$s, następnie dnia %2$s","Za %n miesiące dnia %1$s, następnie dnia %2$s","Za %n miesięcy dnia %1$s, następnie dnia %2$s","Za %n miesięcy dnia %1$s, następnie dnia %2$s"],
"_In a year on %1$s then on %2$s_::_In %n years on %1$s then on %2$s_":["Za rok dnia %1$s, następnie dnia %2$s","Za %n lata dnia %1$s, następnie dnia %2$s","Za %n lat dnia %1$s, następnie dnia %2$s","Za %n lat dnia %1$s, następnie dnia %2$s"],
"In the past on %1$s then on %2$s and %3$s":"W przeszłości dnia %1$s, następnie dnia %2$s i %3$s",
"_In a minute on %1$s then on %2$s and %3$s_::_In %n minutes on %1$s then on %2$s and %3$s_":["Za minutę dnia %1$s, następnie dnia %2$s i %3$s","Za %n minuty dnia %1$s, następnie dnia %2$s i %3$s","Za %n minut dnia %1$s, następnie dnia %2$s i %3$s","Za %n minut dnia %1$s, następnie dnia %2$s i %3$s"],
"_In a hour on %1$s then on %2$s and %3$s_::_In %n hours on %1$s then on %2$s and %3$s_":["Za godzinę dnia %1$s, następnie dnia %2$s i %3$s","Za %%ngodziny dnia %1$s, następnie dnia %2$s i %3$s","Za %n godzin dnia %1$s, następnie dnia %2$s i %3$s","Za %n godzin dnia %1$s, następnie dnia %2$s i %3$s"],
"_In a day on %1$s then on %2$s and %3$s_::_In %n days on %1$s then on %2$s and %3$s_":["Jutro, dnia %1$s, następnie dnia %2$s i %3$s","Za %n dni dnia %1$s, następnie dnia %2$s i %3$s","Za %n dni dnia %1$s, następnie dnia %2$s i %3$s","Za %n dni dnia %1$s, następnie dnia %2$s i %3$s"],
"_In a week on %1$s then on %2$s and %3$s_::_In %n weeks on %1$s then on %2$s and %3$s_":["Za tydzień dnia %1$s, następnie dnia %2$s i %3$s","Za %n tygodnie dnia %1$s, następnie dnia %2$s i %3$s","Za %n tygodni dnia %1$s, następnie dnia %2$s i %3$s","Za %n tygodni dnia %1$s, następnie dnia %2$s i %3$s"],
"_In a month on %1$s then on %2$s and %3$s_::_In %n months on %1$s then on %2$s and %3$s_":["Za miesiąc dnia %1$s, następnie dnia %2$s i %3$s","Za %n miesiące dnia %1$s, następnie dnia %2$s i %3$s","Za %n miesięcy dnia %1$s, następnie dnia %2$s i %3$s","Za %n miesięcy dnia %1$s, następnie dnia %2$s i %3$s"],
"_In a year on %1$s then on %2$s and %3$s_::_In %n years on %1$s then on %2$s and %3$s_":["Za rok dnia %1$s, następnie dnia %2$s i %3$s","Za %n lata dnia %1$s, następnie dnia %2$s i %3$s","Za %n lat dnia %1$s, następnie dnia %2$s i %3$s","Za %n lat dnia %1$s, następnie dnia %2$s i %3$s"],
"Could not generate next recurrence statement":"Nie można wygenerować następnej instrukcji powtarzania",
"Cancelled: %1$s":"Anulowane: %1$s",
"\"%1$s\" has been canceled":"\"%1$s\" zostało anulowane",
@@ -246,7 +281,6 @@
"Failed to load availability":"Nie udało się wczytać dostępności",
"Saved availability":"Zapisana dostępność",
"Failed to save availability":"Nie udało się zapisać dostępności",
"Time zone:":"Strefa czasowa:",
"to":"od",
"Delete slot":"Usuń przedział czasu",
"No working hours set":"Nie ustawiono godzin pracy",
@@ -296,6 +330,7 @@
"Please contact the organizer directly.":"Skontaktuj się bezpośrednio z orgnizatorem.",
"Are you accepting the invitation?":"Czy akceptujesz zaproszenie?",
"Tentative":"Niepewne",
"Your attendance was updated successfully.":"Twoja obecność została pomyślnie zaktualizowana."
"Your attendance was updated successfully.":"Twoja obecność została pomyślnie zaktualizowana.",
"Failed to load availability":"Не вдалося завантажити доступність",
"Saved availability":"Збережена наявність",
"Failed to save availability":"Не вдалося зберегти наявність",
"Time zone:":"Часовий пояс:",
"to":"до",
"Delete slot":"Вилучити діапазон",
"No working hours set":"Робочий час не встановлено",
@@ -331,6 +330,7 @@
"Please contact the organizer directly.":"Будь-ласка повідомте організатора.",
"Are you accepting the invitation?":"Чи приймаєте ви запрошення?",
"Tentative":"Попередній",
"Your attendance was updated successfully.":"Ваша участь успішно оновлена."
"Your attendance was updated successfully.":"Ваша участь успішно оновлена.",
"Time zone:":"Часовий пояс:"
},"pluralForm":"nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);"
}
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.