This command is used to list a summary of brute force protection attempts associated with a given IP address and, optionally, a specific action. It does not reset attempts (there's already another command for that).
Signed-off-by: Josh <josh.t.richards@gmail.com>
Co-authored-by: Joas Schilling <213943+nickvergessen@users.noreply.github.com>
In 04e8733721 a regression was introduced.
`this` means nothing inside arrow functions, hence this.share was referring to
an undefined object and so all attempted updates for expiration dates would fail.
Resolves : https://github.com/nextcloud/server/issues/43256
Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
Only on installation we want to break hard, so that all developers notice
the bugs when installing the app on any database or CI, and can work on
fixing their migrations before releasing a version incompatible with Postgres.
In case of updates we might be running on production instances and the
administrators being faced with the error would not know how to resolve it
anyway. This can also happen with instances, that had the issue before the
current update, so we don't want to make their life more complicated
than needed.
Signed-off-by: Joas Schilling <coding@schilljs.com>
It is not allowed to use slashes within path parameters, so they would need to be encoded.
But URL encoded slashes are not suported by Apache, so instead replace slash with space.
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
The current share logic always uses the default `BUNDLED_PERMISSIONS.ALL`
which includes everything.
This commit updates share creation logic to use `defaultPermissions` if set
by admin for the creation of new shares.
Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
PHP's urldecode function does not decode URLs according to RFC 3986, but
according to the HTML 4.01 query parameter
encoding. This results in pluses being wrongly decoded to spaces even
though they should not be decoded at all.
Use rawurldecode instead, which follows RFC 3986 properly.
This fixes an issue where files on DAV shares containing pluses were
incorrectly decoded to spaces.
Fixes: #15849
Signed-off-by: Lorenz Brun <lorenz@brun.one>
The function fails if the configured trusted proxies contain invalid characters and the underlying IpUtils will throw.
But as it is used by `getRemoteAddress` which is used by logging / templating, thrown errors are not reported but silently fail with error 500.
Co-authored-by: Ferdinand Thiessen <opensource@fthiessen.de>
Co-authored-by: Joas Schilling <213943+nickvergessen@users.noreply.github.com>
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
If several LDAP configurations return the same group id for a user it
should still only appear once in the return of getUserGroups
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
If an user in UTC+1 try to create a share at 00:00, it's day D for him, but
D-1 for the server (UTC).
This fix aims to apply the correct offset
Signed-off-by: Benjamin Gaussorgues <benjamin.gaussorgues@nextcloud.com>
Debounce `onExpirationChange` to avoid calling `formatDateToString`
on invalid on uncompletely inputed date strings.
Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
It's unexpected that click outside a tooltip would proceed with the
action that could be carried out inside the tooltip.
Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
- Special attribute `is` is deprecated and removed in Vue 3
- It is confusing, that `<a>` element is rendered as `span` sometimes
Signed-off-by: Grigorii K. Shartsev <me@shgk.me>
With array_unique it is possible that the keys are not in sequential order
but have gaps. json_encode then would store them as associative array,
which later on json_decode would result in a stdClass by default. This is
unexpected and would also contradict the return type hint.
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
This is very hacky! However, we want to allow saving events with multiple
organizers. Those events are not RFC compliant, but sometimes imported from major
external calendar services (e.g. Google). If the current user is not an organizer of
the event we ignore the exception as no scheduling messages will be sent anyway.
Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
As expected, a user does not see themselves in their contact list,
however, when using the contact list for filtering search, a user,
might want to limit the search to things that pertain to them.
Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
On change/input from user which has the effect of filtering,
we want to send the query to the API to obtained fresh results,
based on the databased on not just preloaded contacts.
Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
- Changes appearances of "Global search" to "Unified search" in UI
- Refactors code, to remove usage of term "GlobalSearch" in files and code
structure
- Rename old unified search to `legacy-unified-search`
Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Those elements are shown directly on the background which has the `color-primary`,
so they need to use `color-primary-text` instead of `color-primary-element-text` for guranteed contrast.
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
It's important to delete the `newPassword` prop from the share
model, if the user unchecks the isPasswordProtected checkbox.
This clearer and allows for the unchecking to actually work as
`this.$set()` fails with the falsy value `''`.
Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
Accessing `this.$refs.shareList` outside $nextTick()
could lead to the holder (`listComponent`) being undefined
as the ref is yet to exist.
Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
* If there is an out of office absence info and it happens now -> return
data
* Else: return no data
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
This matches what was done in the calls and so fixes getting disabled
user list when there are several backends returning disabled users.
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
(cherry picked from commit 85e7887e0764a9347bbbb10812459d95ccdfa6d4)
For screen readers the table header was very verbose and confusing,
as the SR reads out e.g. "sort list by name button FILENAME" for every row / file.
Instead reduce it to "name button FILENAME" and add information about sorting to caption, as recommended by WCAG [1]
[1]: https://www.w3.org/WAI/ARIA/apg/patterns/table/examples/sortable-table/
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
- add configuration to specify one LDAP group acting as admin group (CLI)
- implement `isAdmin()` method, basically relying on inGroup against the
configured group
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
If a TypeError is passed here, it in turn causes a TypeError which
kills the rendering of the error page.
Signed-off-by: Varun Patil <varunpatil@ucla.edu>
After moving the `SearchResult` to its own component and leaving
out the openResult method, the search results do not lead anywhere but
but error out.
Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
- Show loading when actually loading, instead of no content
- Change modified label to `Date` as it applies to a bunch of things.
Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
The current close infrastructure modifies a prop which has
no real effect aside bugs.
In addition, calling the `NcModal.close()` as the primary way to
close the search modal instead of using the states defined in `GlobalSearch` view
causing re-open bugs (Modal cannot open, needs to click twice, and other weird stuff).
Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
The new global search would now be activated by default and users,
have the option to revert to the old unified search by setting `unified_search.enabled`
to true in the NC `config.php` file.
Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* It's possible for the admin to enforce and expiry date after, some
shares have been created. This commit makes possible to update the
share with the new admin constraints.
* This commit would users to modify enforced expiry to anything within
range and less than the enforced limit in the pre-create dialog for public
shares.
* This commit fixes, unable to update share without updating password.
Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
For BOD, it's better to always emit the search event so
apps (all of which we don't know) responding to this effect would receive notifications when
the search happens within these apps.
Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
"Provides logging abilities for Nextcloud such as logging file accesses or otherwise sensitive actions.":"خاصية سجلات المراقبة لـ نكست كلاود مثل الوصول إلى سجلات الملفات أو المعلومات الحساسة الاخرى."
"Auditing / Logging":"المراجعة / السجلات",
"Provides logging abilities for Nextcloud such as logging file accesses or otherwise sensitive actions.":"تُوفِّر إمكانيات تسجيل و مراجعة سجل الحركات على نكست كلاود."
"Provides logging abilities for Nextcloud such as logging file accesses or otherwise sensitive actions.":"خاصية سجلات المراقبة لـ نكست كلاود مثل الوصول إلى سجلات الملفات أو المعلومات الحساسة الاخرى."
"Auditing / Logging":"المراجعة / السجلات",
"Provides logging abilities for Nextcloud such as logging file accesses or otherwise sensitive actions.":"تُوفِّر إمكانيات تسجيل و مراجعة سجل الحركات على نكست كلاود."
"Provides logging abilities for Nextcloud such as logging file accesses or otherwise sensitive actions.":"Nextcloud üçün fayl girişləri və ya başqa həssas hərəkətlər kimi giriş imkanlarını təmin edir."
"Provides logging abilities for Nextcloud such as logging file accesses or otherwise sensitive actions.":"Nextcloud üçün fayl girişləri və ya başqa həssas hərəkətlər kimi giriş imkanlarını təmin edir."
"Provides logging abilities for Nextcloud such as logging file accesses or otherwise sensitive actions.":"מספק יכולות תיעוד ל־Nextcloud כגון תיעוד גישה ליומן התיעוד או פעולות רגישות אחרות."
"Provides logging abilities for Nextcloud such as logging file accesses or otherwise sensitive actions.":"מספק יכולות תיעוד ל־Nextcloud כגון תיעוד גישה ליומן התיעוד או פעולות רגישות אחרות."
"Provides logging abilities for Nextcloud such as logging file accesses or otherwise sensitive actions.":"Býður upp á atvikaskráningu fyrir Nextcloud, eins og að skrá aðgang að skrám og fleiri viðkvæmar aðgerðir."
"Provides logging abilities for Nextcloud such as logging file accesses or otherwise sensitive actions.":"Býður upp á atvikaskráningu fyrir Nextcloud, eins og að skrá aðgang að skrám og fleiri viðkvæmar aðgerðir."
"Provides logging abilities for Nextcloud such as logging file accesses or otherwise sensitive actions.":"Fornece recursos de registro para Nextcloud, como registros de acesso a arquivos ou outras ações sensíveis."
"Provides logging abilities for Nextcloud such as logging file accesses or otherwise sensitive actions.":"Fornece habilidades de registro para o NextCloud, como acessos de arquivo de log ou ações sensíveis."
},
"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
"Provides logging abilities for Nextcloud such as logging file accesses or otherwise sensitive actions.":"Fornece recursos de registro para Nextcloud, como registros de acesso a arquivos ou outras ações sensíveis."
"Provides logging abilities for Nextcloud such as logging file accesses or otherwise sensitive actions.":"Fornece habilidades de registro para o NextCloud, como acessos de arquivo de log ou ações sensíveis."
},"pluralForm":"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
"Cloud Federation API":"API de Federación en la Nube",
"Enable clouds to communicate with each other and exchange data":"Permitir que las nubes se comuniquen entre sí e intercambien datos",
"The Cloud Federation API enables various Nextcloud instances to communicate with each other and to exchange data.":"La API de Federación de Nubes permite que varias instancias de Nextcloud se comuniquen entre sí y intercambien datos."
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
"Cloud Federation API":"API de Federación en la Nube",
"Enable clouds to communicate with each other and exchange data":"Permitir que las nubes se comuniquen entre sí e intercambien datos",
"The Cloud Federation API enables various Nextcloud instances to communicate with each other and to exchange data.":"La API de Federación de Nubes permite que varias instancias de Nextcloud se comuniquen entre sí y intercambien datos."
},"pluralForm":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
"%1$s commented on %2$s":"%1$s كتب تعليق على %2$s",
"{author} commented on {file}":"{author} علّق على {file}",
"<strong>Comments</strong> for files":"<strong>تعليقات</strong> على الملفات",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"تمت الإشارة إليك في \"{file}\" في تعليق لمستخدم. لكن هذا المستخدم تم حذف حسابه بعدها",
"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":"تعذّرت إعادة تحميل الملاحظات",
"No comments yet, start the conversation!":"لا يوجد تعليقات, ابدأ النقاش الآن!",
"No more messages":"لامزيد من الرسائل",
@@ -28,7 +31,7 @@ OC.L10N.register(
"Comment deleted":"التعليق حُذف",
"An error occurred while trying to delete the comment":"حدث خطأ أثناء محاولة حذف التعليق",
"An error occurred while trying to create the comment":"حدث خطأ أثناء محاولة إنشاء التعليق",
"%1$s commented":"%1$s كتب تعليق",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"تمت الإشارة إليك في \"{file}\" في تعليق لمستخدم. لكن هذا المستخدم تم حذف حسابه بعدها",
"_%n unread comment_::_%n unread comments_":["%n تعليق غير مقروء","%n تعليق غير مقروء","تعليقان غير مقروءة","%n تعليقات غير مقروء","%n تعليق غير مقروء","%n تعليق غير مقروء"]
"%1$s commented on %2$s":"%1$s كتب تعليق على %2$s",
"{author} commented on {file}":"{author} علّق على {file}",
"<strong>Comments</strong> for files":"<strong>تعليقات</strong> على الملفات",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"تمت الإشارة إليك في \"{file}\" في تعليق لمستخدم. لكن هذا المستخدم تم حذف حسابه بعدها",
"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":"تعذّرت إعادة تحميل الملاحظات",
"No comments yet, start the conversation!":"لا يوجد تعليقات, ابدأ النقاش الآن!",
"No more messages":"لامزيد من الرسائل",
@@ -26,7 +29,7 @@
"Comment deleted":"التعليق حُذف",
"An error occurred while trying to delete the comment":"حدث خطأ أثناء محاولة حذف التعليق",
"An error occurred while trying to create the comment":"حدث خطأ أثناء محاولة إنشاء التعليق",
"%1$s commented":"%1$s كتب تعليق",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"تمت الإشارة إليك في \"{file}\" في تعليق لمستخدم. لكن هذا المستخدم تم حذف حسابه بعدها",
"_%n unread comment_::_%n unread comments_":["%n تعليق غير مقروء","%n تعليق غير مقروء","تعليقان غير مقروءة","%n تعليقات غير مقروء","%n تعليق غير مقروء","%n تعليق غير مقروء"]
"{author} commented on {file}":"{autor} comentó en {ficheru}",
"You commented on %1$s":"Comentesti en: %1$s",
"You commented on {file}":"Comentesti en: {file}",
"%1$s commented on %2$s":"%1$s comentó en: %2$s",
"{author} commented on {file}":"{author} comentó en: {file}",
"<strong>Comments</strong> for files":"<strong>Comentarios</strong> pa ficheros",
"Edit comment":"Editar comentariu",
"Delete comment":"Desaniciar comentariu",
"No comments yet, start the conversation!":"Entá nun hai comentarios. ¡Entama una conversación!",
"{user} mentioned you in a comment on \"{file}\"":"{user} mentóte nun comentariu de: «{file}»",
"Files app plugin to add comments to files":"Plugin de l'aplicación Ficheros p'amestar comentarios a los ficheros",
"Edit comment":"Editar el comentariu",
"Delete comment":"Desaniciar el comentariu",
"Cancel edit":"Anular la edición",
"New comment":"Comentariu nuevu",
"Write a comment …":"Escribi un comentariu…",
"Post comment":"Espublizar el comentariu",
"@ for mentions, : for emoji, / for smart picker":"@ pa les menciones, : pa los fustaxes, / pal selector intelixente",
"Could not reload comments":"Nun se pudieron recargar los comentarios",
"No comments yet, start the conversation!":"Nun hai comentarios, ¡anicia una conversación!",
"No more messages":"Nun hai más mensaxes",
"Retry":"Retentar",
"_%n unread comment_::_%n unread comments_":["%n comentariu ensin lleer","%n comentarios ensin lleer"],
"Failed to mark comments as read":"Nun se pudieron marcar los comentarios como lleíos",
"Unable to load the comments list":"Nun ye posible cargar la llista de comentarios",
"_1 new comment_::_{unread} new comments_":["1 comentariu nuevu","{unread} comentarios nuevos"],
"Comment":"Comentariu",
"%1$s commented":"%1$s comentó"
"An error occurred while trying to edit the comment":"Prodúxose un error mentanto se tentaba d'editar el comentariu",
"Comment deleted":"Desanicióse'l comentariu",
"An error occurred while trying to delete the comment":"Prodúxose un error mentanto se tentaba de desaniciar el comentariu",
"An error occurred while trying to create the comment":"Prodúxose un error mentanto se tentaba de crear el comentariu",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Un usuariu que ta desaniciáu mentóte nun comentariu de: {file}",
"_%n unread comment_::_%n unread comments_":["%n comentariu ensin lleer","%n comentarios ensin lleer"]
"{author} commented on {file}":"{autor} comentó en {ficheru}",
"You commented on %1$s":"Comentesti en: %1$s",
"You commented on {file}":"Comentesti en: {file}",
"%1$s commented on %2$s":"%1$s comentó en: %2$s",
"{author} commented on {file}":"{author} comentó en: {file}",
"<strong>Comments</strong> for files":"<strong>Comentarios</strong> pa ficheros",
"Edit comment":"Editar comentariu",
"Delete comment":"Desaniciar comentariu",
"No comments yet, start the conversation!":"Entá nun hai comentarios. ¡Entama una conversación!",
"{user} mentioned you in a comment on \"{file}\"":"{user} mentóte nun comentariu de: «{file}»",
"Files app plugin to add comments to files":"Plugin de l'aplicación Ficheros p'amestar comentarios a los ficheros",
"Edit comment":"Editar el comentariu",
"Delete comment":"Desaniciar el comentariu",
"Cancel edit":"Anular la edición",
"New comment":"Comentariu nuevu",
"Write a comment …":"Escribi un comentariu…",
"Post comment":"Espublizar el comentariu",
"@ for mentions, : for emoji, / for smart picker":"@ pa les menciones, : pa los fustaxes, / pal selector intelixente",
"Could not reload comments":"Nun se pudieron recargar los comentarios",
"No comments yet, start the conversation!":"Nun hai comentarios, ¡anicia una conversación!",
"No more messages":"Nun hai más mensaxes",
"Retry":"Retentar",
"_%n unread comment_::_%n unread comments_":["%n comentariu ensin lleer","%n comentarios ensin lleer"],
"Failed to mark comments as read":"Nun se pudieron marcar los comentarios como lleíos",
"Unable to load the comments list":"Nun ye posible cargar la llista de comentarios",
"_1 new comment_::_{unread} new comments_":["1 comentariu nuevu","{unread} comentarios nuevos"],
"Comment":"Comentariu",
"%1$s commented":"%1$s comentó"
"An error occurred while trying to edit the comment":"Prodúxose un error mentanto se tentaba d'editar el comentariu",
"Comment deleted":"Desanicióse'l comentariu",
"An error occurred while trying to delete the comment":"Prodúxose un error mentanto se tentaba de desaniciar el comentariu",
"An error occurred while trying to create the comment":"Prodúxose un error mentanto se tentaba de crear el comentariu",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Un usuariu que ta desaniciáu mentóte nun comentariu de: {file}",
"_%n unread comment_::_%n unread comments_":["%n comentariu ensin lleer","%n comentarios ensin lleer"]
"%1$s commented on %2$s":"%1$s коментиран за %2$s",
"{author} commented on {file}":"{author} коментира за {file}",
"<strong>Comments</strong> for files":"<strong>Коментари</strong> за файлове",
"You were mentioned on \"{file}\", in a comment by a user 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":"Редактирай коментра",
@@ -26,7 +25,7 @@ OC.L10N.register(
"Comment deleted":" Изтрит е коментар",
"An error occurred while trying to delete the comment":"Възникна грешка при опит за изтриване на коментара",
"An error occurred while trying to create the comment":"Възникна грешка при опит за създаване на коментар",
"%1$s commented":"%1$s коментира",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Бяхте споменат/а към “{file}”, в коментар от потребител, който вече е изтрит",
"%1$s commented on %2$s":"%1$s коментиран за %2$s",
"{author} commented on {file}":"{author} коментира за {file}",
"<strong>Comments</strong> for files":"<strong>Коментари</strong> за файлове",
"You were mentioned on \"{file}\", in a comment by a user 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":"Редактирай коментра",
@@ -24,7 +23,7 @@
"Comment deleted":" Изтрит е коментар",
"An error occurred while trying to delete the comment":"Възникна грешка при опит за изтриване на коментара",
"An error occurred while trying to create the comment":"Възникна грешка при опит за създаване на коментар",
"%1$s commented":"%1$s коментира",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Бяхте споменат/а към “{file}”, в коментар от потребител, който вече е изтрит",
"%1$s commented on %2$s":"%1$s ha escrit un comentari a %2$s",
"{author} commented on {file}":"{author} ha escrit un comentari a {file}",
"<strong>Comments</strong> for files":"<strong>Comentaris</strong> per a fitxers",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Se us ha esmentat a «{file}» en un comentari d'un usuari que s'ha suprimit",
"{user} mentioned you in a comment on \"{file}\"":"{user} us ha esmentat en un comentari a «{file}»",
"Files app plugin to add comments to files":"Connector de l'aplicació Fitxers per a afegir comentaris als fitxers",
"Edit comment":"Edita el comentari",
"Delete comment":"Suprimeix el comentari",
"Cancel edit":"Cancel·la l'edició",
"Post comment":"Publica el comentari",
"@ for mentions, : for emoji, / for smart picker":"@ per a mencions, : per a emojis, / per al selector intel·ligent",
"Could not reload comments":"No s'han pogut tornar a carregar els comentaris",
"No comments yet, start the conversation!":"Encara no hi ha cap comentari. Enceteu la conversa!",
"No more messages":"No hi ha més missatges",
@@ -28,7 +28,7 @@ OC.L10N.register(
"Comment deleted":"S'ha suprimit el comentari",
"An error occurred while trying to delete the comment":"S'ha produït un error en intentar suprimir el comentari",
"An error occurred while trying to create the comment":"S'ha produït un error en intentar crear el comentari",
"%1$s commented":"%1$s ha escrit un comentari",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Se us ha esmentat a «{file}» en un comentari d'un usuari que s'ha suprimit",
"_%n unread comment_::_%n unread comments_":["%n comentari sense llegir","%n comentaris sense llegir"]
"%1$s commented on %2$s":"%1$s ha escrit un comentari a %2$s",
"{author} commented on {file}":"{author} ha escrit un comentari a {file}",
"<strong>Comments</strong> for files":"<strong>Comentaris</strong> per a fitxers",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Se us ha esmentat a «{file}» en un comentari d'un usuari que s'ha suprimit",
"{user} mentioned you in a comment on \"{file}\"":"{user} us ha esmentat en un comentari a «{file}»",
"Files app plugin to add comments to files":"Connector de l'aplicació Fitxers per a afegir comentaris als fitxers",
"Edit comment":"Edita el comentari",
"Delete comment":"Suprimeix el comentari",
"Cancel edit":"Cancel·la l'edició",
"Post comment":"Publica el comentari",
"@ for mentions, : for emoji, / for smart picker":"@ per a mencions, : per a emojis, / per al selector intel·ligent",
"Could not reload comments":"No s'han pogut tornar a carregar els comentaris",
"No comments yet, start the conversation!":"Encara no hi ha cap comentari. Enceteu la conversa!",
"No more messages":"No hi ha més missatges",
@@ -26,7 +26,7 @@
"Comment deleted":"S'ha suprimit el comentari",
"An error occurred while trying to delete the comment":"S'ha produït un error en intentar suprimir el comentari",
"An error occurred while trying to create the comment":"S'ha produït un error en intentar crear el comentari",
"%1$s commented":"%1$s ha escrit un comentari",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Se us ha esmentat a «{file}» en un comentari d'un usuari que s'ha suprimit",
"_%n unread comment_::_%n unread comments_":["%n comentari sense llegir","%n comentaris sense llegir"]
"%1$s commented on %2$s":"%1$s okomentoval(a) %2$s",
"{author} commented on {file}":"{author} okomentoval(a) {file}",
"<strong>Comments</strong> for files":"<strong>Komentáře</strong> k souborům",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Byli jste zmíněni u souboru „{file}“, v komentáři od uživatele, který byl později smazán",
"{user} mentioned you in a comment on \"{file}\"":"{user} vás zmínil(a) v komentáři u „{file}“",
"Files app plugin to add comments to files":"Zásuvný modul do aplikace Soubory pro přidávání komentářů k souborům",
"Edit comment":"Upravit komentář",
"Delete comment":"Smazat komentář",
"Cancel edit":"Zrušit úpravu",
"New comment":"Nový komentář",
"Write a comment …":"Napsat komentář…",
"Post comment":"Odeslat komentář",
"@ for mentions, : for emoji, / for smart picker":"@ pro zmínění, : pro emotikony, / pro inteligentní výběr",
"Could not reload comments":"Znovunačtení komentářů se nezdařilo",
"No comments yet, start the conversation!":"Zatím bez komentářů, začněte konverzaci!",
"No more messages":"Žádné další zprávy",
@@ -28,7 +30,7 @@ OC.L10N.register(
"Comment deleted":"Komentář smazán",
"An error occurred while trying to delete the comment":"Došlo k chybě při pokusu o smazání komentáře",
"An error occurred while trying to create the comment":"Došlo k chybě při pokusu o vytvoření komentáře",
"%1$s commented":"%1$s okomentováno",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Byli jste zmíněni u souboru „{file}“, v komentáři od uživatele, který byl později smazán",
"%1$s commented on %2$s":"%1$s okomentoval(a) %2$s",
"{author} commented on {file}":"{author} okomentoval(a) {file}",
"<strong>Comments</strong> for files":"<strong>Komentáře</strong> k souborům",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Byli jste zmíněni u souboru „{file}“, v komentáři od uživatele, který byl později smazán",
"{user} mentioned you in a comment on \"{file}\"":"{user} vás zmínil(a) v komentáři u „{file}“",
"Files app plugin to add comments to files":"Zásuvný modul do aplikace Soubory pro přidávání komentářů k souborům",
"Edit comment":"Upravit komentář",
"Delete comment":"Smazat komentář",
"Cancel edit":"Zrušit úpravu",
"New comment":"Nový komentář",
"Write a comment …":"Napsat komentář…",
"Post comment":"Odeslat komentář",
"@ for mentions, : for emoji, / for smart picker":"@ pro zmínění, : pro emotikony, / pro inteligentní výběr",
"Could not reload comments":"Znovunačtení komentářů se nezdařilo",
"No comments yet, start the conversation!":"Zatím bez komentářů, začněte konverzaci!",
"No more messages":"Žádné další zprávy",
@@ -26,7 +28,7 @@
"Comment deleted":"Komentář smazán",
"An error occurred while trying to delete the comment":"Došlo k chybě při pokusu o smazání komentáře",
"An error occurred while trying to create the comment":"Došlo k chybě při pokusu o vytvoření komentáře",
"%1$s commented":"%1$s okomentováno",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Byli jste zmíněni u souboru „{file}“, v komentáři od uživatele, který byl později smazán",
"%1$s commented on %2$s":"%1$s kommenterede %2$s",
"{author} commented on {file}":"{author} kommenterede {file}",
"<strong>Comments</strong> for files":"<strong>Kommentarer</strong> for filer",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Du blev nævnt på \"{file}\", i en kommentar af en bruger, som siden er blevet slettet",
"{user} mentioned you in a comment on \"{file}\"":"{user} nævnte dig i en kommentar til \"{file}\"",
"Files app plugin to add comments to files":"Files app plugin til at tilføje kommentarer til filer",
"Edit comment":"Rediger kommentar",
@@ -27,7 +26,7 @@ OC.L10N.register(
"Comment deleted":"Kommentar slettet",
"An error occurred while trying to delete the comment":"Der opstod en fejl under forsøget på at slette kommentaren",
"An error occurred while trying to create the comment":"Der opstod en fejl under forsøget på at oprette kommentaren",
"%1$s commented":"%1$s kommenterede",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Du blev nævnt på \"{file}\", i en kommentar af en bruger, som siden er blevet slettet",
"%1$s commented on %2$s":"%1$s kommenterede %2$s",
"{author} commented on {file}":"{author} kommenterede {file}",
"<strong>Comments</strong> for files":"<strong>Kommentarer</strong> for filer",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Du blev nævnt på \"{file}\", i en kommentar af en bruger, som siden er blevet slettet",
"{user} mentioned you in a comment on \"{file}\"":"{user} nævnte dig i en kommentar til \"{file}\"",
"Files app plugin to add comments to files":"Files app plugin til at tilføje kommentarer til filer",
"Edit comment":"Rediger kommentar",
@@ -25,7 +24,7 @@
"Comment deleted":"Kommentar slettet",
"An error occurred while trying to delete the comment":"Der opstod en fejl under forsøget på at slette kommentaren",
"An error occurred while trying to create the comment":"Der opstod en fejl under forsøget på at oprette kommentaren",
"%1$s commented":"%1$s kommenterede",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Du blev nævnt på \"{file}\", i en kommentar af en bruger, som siden er blevet slettet",
"%1$s commented on %2$s":"%1$s kommentierte %2$s",
"{author} commented on {file}":"{author} hat {file} kommentiert",
"<strong>Comments</strong> for files":"<strong>Kommentare</strong> für Dateien",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Du wurdest in einem Kommentar auf \"{file}\" von einem bereits gelöschten Benutzer erwähnt",
"{user} mentioned you in a comment on \"{file}\"":"{user} hat dich in einem Kommentar zu \"{file}\" erwähnt",
"Files app plugin to add comments to files":"Ein Plugin für die Dateien-App zum Kommentieren von Dateien",
"Edit comment":"Kommentar bearbeiten",
"Delete comment":"Kommentar löschen",
"Cancel edit":"Bearbeiten abbrechen",
"New comment":"Neuer Kommentar",
"Post comment":"Kommentar veröffentlichen",
"@ for mentions, : for emoji, / for smart picker":"@ für Erwähnungen, : für Emoji, / für Smart Picker",
"Could not reload comments":"Kommentare konnten nicht erneut geladen werden",
"No comments yet, start the conversation!":"Keine Kommentare bisher. Beginne die Diskussion!",
"No more messages":"Keine weiteren Nachrichten",
"Retry":"Wiederholen",
"Failed to mark comments as read":"Kommentare konnten nicht als gelesen markiert werden",
"Unable to load the comments list":"Kommentarliste konnte nicht geladen werden",
"_1 new comment_::_{unread} new comments_":["1 neuer Kommentar","[unread] neue Kommentare"],
"Comment":"Kommentar",
@@ -26,7 +29,7 @@ OC.L10N.register(
"Comment deleted":"Kommentar gelöscht",
"An error occurred while trying to delete the comment":"Es ist ein Fehler beim Löschen des Kommentars aufgetreten",
"An error occurred while trying to create the comment":"Es ist ein Fehler beim Erstellen des Kommentars aufgetreten",
"%1$s commented":"%1$s kommentierte",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Du wurdest in einem Kommentar auf \"{file}\" von einem bereits gelöschten Benutzer erwähnt",
"%1$s commented on %2$s":"%1$s kommentierte %2$s",
"{author} commented on {file}":"{author} hat {file} kommentiert",
"<strong>Comments</strong> for files":"<strong>Kommentare</strong> für Dateien",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Du wurdest in einem Kommentar auf \"{file}\" von einem bereits gelöschten Benutzer erwähnt",
"{user} mentioned you in a comment on \"{file}\"":"{user} hat dich in einem Kommentar zu \"{file}\" erwähnt",
"Files app plugin to add comments to files":"Ein Plugin für die Dateien-App zum Kommentieren von Dateien",
"Edit comment":"Kommentar bearbeiten",
"Delete comment":"Kommentar löschen",
"Cancel edit":"Bearbeiten abbrechen",
"New comment":"Neuer Kommentar",
"Post comment":"Kommentar veröffentlichen",
"@ for mentions, : for emoji, / for smart picker":"@ für Erwähnungen, : für Emoji, / für Smart Picker",
"Could not reload comments":"Kommentare konnten nicht erneut geladen werden",
"No comments yet, start the conversation!":"Keine Kommentare bisher. Beginne die Diskussion!",
"No more messages":"Keine weiteren Nachrichten",
"Retry":"Wiederholen",
"Failed to mark comments as read":"Kommentare konnten nicht als gelesen markiert werden",
"Unable to load the comments list":"Kommentarliste konnte nicht geladen werden",
"_1 new comment_::_{unread} new comments_":["1 neuer Kommentar","[unread] neue Kommentare"],
"Comment":"Kommentar",
@@ -24,7 +27,7 @@
"Comment deleted":"Kommentar gelöscht",
"An error occurred while trying to delete the comment":"Es ist ein Fehler beim Löschen des Kommentars aufgetreten",
"An error occurred while trying to create the comment":"Es ist ein Fehler beim Erstellen des Kommentars aufgetreten",
"%1$s commented":"%1$s kommentierte",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Du wurdest in einem Kommentar auf \"{file}\" von einem bereits gelöschten Benutzer erwähnt",
"%1$s commented on %2$s":"%1$s kommentierte %2$s",
"{author} commented on {file}":"{author} hat {file} kommentiert",
"<strong>Comments</strong> for files":"<strong>Kommentare</strong> für Dateien",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Sie wurden in einem Kommentar auf \"{file}\" von einem bereits gelöschten Benutzer erwähnt",
"You were mentioned on \"{file}\", in a comment by an account that has since been deleted":"Sie wurden in einem Kommentar zu \"{file}\" von einem Konto erwähnt, das inzwischen gelöscht wurde.",
"{user} mentioned you in a comment on \"{file}\"":"{user} hat Sie in einem Kommentar zu \"{file}\" erwähnt",
"Files app plugin to add comments to files":"Ein Plugin für die Dateien-App zum Kommentieren von Dateien",
"Edit comment":"Kommentar bearbeiten",
"Delete comment":"Kommentar löschen",
"Cancel edit":"Bearbeiten abbrechen",
"New comment":"Neuer Kommentar",
"Write a comment …":"Schreiben Sie einen Kommentar …",
"Post comment":"Kommentar veröffentlichen",
"@ for mentions, : for emoji, / for smart picker":"@ für Erwähnungen, : für Emoji, / für Smart Picker",
"Could not reload comments":"Kommentare konnten nicht erneut geladen werden",
"No comments yet, start the conversation!":"Keine Kommentare bisher. Beginnen Sie die Diskussion!",
"No more messages":"Keine weiteren Nachrichten",
@@ -28,7 +31,7 @@ OC.L10N.register(
"Comment deleted":"Kommentar gelöscht",
"An error occurred while trying to delete the comment":"Es ist ein Fehler beim Löschen des Kommentars aufgetreten",
"An error occurred while trying to create the comment":"Es ist ein Fehler beim Erstellen des Kommentars aufgetreten",
"%1$s commented":"%1$s kommentierte",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Sie wurden in einem Kommentar auf \"{file}\" von einem bereits gelöschten Benutzer erwähnt",
"%1$s commented on %2$s":"%1$s kommentierte %2$s",
"{author} commented on {file}":"{author} hat {file} kommentiert",
"<strong>Comments</strong> for files":"<strong>Kommentare</strong> für Dateien",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Sie wurden in einem Kommentar auf \"{file}\" von einem bereits gelöschten Benutzer erwähnt",
"You were mentioned on \"{file}\", in a comment by an account that has since been deleted":"Sie wurden in einem Kommentar zu \"{file}\" von einem Konto erwähnt, das inzwischen gelöscht wurde.",
"{user} mentioned you in a comment on \"{file}\"":"{user} hat Sie in einem Kommentar zu \"{file}\" erwähnt",
"Files app plugin to add comments to files":"Ein Plugin für die Dateien-App zum Kommentieren von Dateien",
"Edit comment":"Kommentar bearbeiten",
"Delete comment":"Kommentar löschen",
"Cancel edit":"Bearbeiten abbrechen",
"New comment":"Neuer Kommentar",
"Write a comment …":"Schreiben Sie einen Kommentar …",
"Post comment":"Kommentar veröffentlichen",
"@ for mentions, : for emoji, / for smart picker":"@ für Erwähnungen, : für Emoji, / für Smart Picker",
"Could not reload comments":"Kommentare konnten nicht erneut geladen werden",
"No comments yet, start the conversation!":"Keine Kommentare bisher. Beginnen Sie die Diskussion!",
"No more messages":"Keine weiteren Nachrichten",
@@ -26,7 +29,7 @@
"Comment deleted":"Kommentar gelöscht",
"An error occurred while trying to delete the comment":"Es ist ein Fehler beim Löschen des Kommentars aufgetreten",
"An error occurred while trying to create the comment":"Es ist ein Fehler beim Erstellen des Kommentars aufgetreten",
"%1$s commented":"%1$s kommentierte",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Sie wurden in einem Kommentar auf \"{file}\" von einem bereits gelöschten Benutzer erwähnt",
"%1$s commented on %2$s":"%1$s σχολίασε στο %2$s",
"{author} commented on {file}":"Ο {author} σχολίασε στο {file}",
"<strong>Comments</strong> for files":"<strong>Σχόλια</strong> για αρχεία",
"You were mentioned on \"{file}\", in a comment by a user 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":"Νέο σχόλιο",
"Post comment":"Αναρτήστε σχόλιο",
"No comments yet, start the conversation!":"Δεν υπάρχουν σχόλια, ξεκινήστε την συζήτηση!",
"No more messages":"Δεν υπάρχουν άλλα μηνύματα",
@@ -26,7 +26,7 @@ OC.L10N.register(
"Comment deleted":"Το σχόλιο διαγράφηκε",
"An error occurred while trying to delete the comment":"Παρουσιάστηκε σφάλμα κατά την προσπάθεια διαγραφής του σχολίου",
"An error occurred while trying to create the comment":"Παρουσιάστηκε σφάλμα κατά την προσπάθεια δημιουργίας του σχολίου",
"%1$s commented":"%1$s σχολίασε",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Το όνομά σας αναφέρθηκε στο “{file}”, σε σχόλιο ενός χρήστη ο οποίος έχει πλέον διαγραφεί",
"%1$s commented on %2$s":"%1$s σχολίασε στο %2$s",
"{author} commented on {file}":"Ο {author} σχολίασε στο {file}",
"<strong>Comments</strong> for files":"<strong>Σχόλια</strong> για αρχεία",
"You were mentioned on \"{file}\", in a comment by a user 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":"Νέο σχόλιο",
"Post comment":"Αναρτήστε σχόλιο",
"No comments yet, start the conversation!":"Δεν υπάρχουν σχόλια, ξεκινήστε την συζήτηση!",
"No more messages":"Δεν υπάρχουν άλλα μηνύματα",
@@ -24,7 +24,7 @@
"Comment deleted":"Το σχόλιο διαγράφηκε",
"An error occurred while trying to delete the comment":"Παρουσιάστηκε σφάλμα κατά την προσπάθεια διαγραφής του σχολίου",
"An error occurred while trying to create the comment":"Παρουσιάστηκε σφάλμα κατά την προσπάθεια δημιουργίας του σχολίου",
"%1$s commented":"%1$s σχολίασε",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Το όνομά σας αναφέρθηκε στο “{file}”, σε σχόλιο ενός χρήστη ο οποίος έχει πλέον διαγραφεί",
"%1$s commented on %2$s":"%1$s commented on %2$s",
"{author} commented on {file}":"{author} commented on {file}",
"<strong>Comments</strong> for files":"<strong>Comments</strong> for files",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"You were mentioned on \"{file}\", in a comment by a user that has since been deleted",
"You were mentioned on \"{file}\", in a comment by an account that has since been deleted":"You were mentioned on \"{file}\", in a comment by an account that has since been deleted",
"{user} mentioned you in a comment on \"{file}\"":"{user} mentioned you in a comment on \"{file}\"",
"Files app plugin to add comments to files":"Files app plugin to add comments to files",
"Edit comment":"Edit comment",
"Delete comment":"Delete comment",
"Cancel edit":"Cancel edit",
"New comment":"New comment",
"Write a comment …":"Write a comment …",
"Post comment":"Post comment",
"@ for mentions, : for emoji, / for smart picker":"@ for mentions, : for emoji, / for smart picker",
"Could not reload comments":"Could not reload comments",
"No comments yet, start the conversation!":"No comments yet, start the conversation!",
"No more messages":"No more messages",
"Retry":"Retry",
@@ -27,7 +31,7 @@ OC.L10N.register(
"Comment deleted":"Comment deleted",
"An error occurred while trying to delete the comment":"An error occurred while trying to delete the comment",
"An error occurred while trying to create the comment":"An error occurred while trying to create the comment",
"%1$s commented":"%1$s commented",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"You were mentioned on \"{file}\", in a comment by a user that has since been deleted",
"%1$s commented on %2$s":"%1$s commented on %2$s",
"{author} commented on {file}":"{author} commented on {file}",
"<strong>Comments</strong> for files":"<strong>Comments</strong> for files",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"You were mentioned on \"{file}\", in a comment by a user that has since been deleted",
"You were mentioned on \"{file}\", in a comment by an account that has since been deleted":"You were mentioned on \"{file}\", in a comment by an account that has since been deleted",
"{user} mentioned you in a comment on \"{file}\"":"{user} mentioned you in a comment on \"{file}\"",
"Files app plugin to add comments to files":"Files app plugin to add comments to files",
"Edit comment":"Edit comment",
"Delete comment":"Delete comment",
"Cancel edit":"Cancel edit",
"New comment":"New comment",
"Write a comment …":"Write a comment …",
"Post comment":"Post comment",
"@ for mentions, : for emoji, / for smart picker":"@ for mentions, : for emoji, / for smart picker",
"Could not reload comments":"Could not reload comments",
"No comments yet, start the conversation!":"No comments yet, start the conversation!",
"No more messages":"No more messages",
"Retry":"Retry",
@@ -25,7 +29,7 @@
"Comment deleted":"Comment deleted",
"An error occurred while trying to delete the comment":"An error occurred while trying to delete the comment",
"An error occurred while trying to create the comment":"An error occurred while trying to create the comment",
"%1$s commented":"%1$s commented",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"You were mentioned on \"{file}\", in a comment by a user that has since been deleted",
"%1$s commented on %2$s":"%1$s comentados en %2$s",
"{author} commented on {file}":"{author} comentó en {file}",
"<strong>Comments</strong> for files":"<strong>Comentarios</strong> para archivos",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Te han mencionado en \"{file}\", en un comentario de un usuario que después ha sido eliminado",
"{user} mentioned you in a comment on \"{file}\"":"{user} te mencionó en un comentario en “{file}”",
"Files app plugin to add comments to files":"Plugin de la app de Archivos para añadir comentarios a archivos.",
"Edit comment":"Editar comentario",
"Delete comment":"Borrar comentario",
"Cancel edit":"Cacelar edición",
"New comment":"Comentario nuevo",
"Write a comment …":"Escribir un comentario …",
"Post comment":"Publicar comentario",
"@ for mentions, : for emoji, / for smart picker":"@ para menciones, : para emoji, / para selector inteligente",
"Could not reload comments":"No se pudieron recargar los comentarios",
"No comments yet, start the conversation!":"¡No hay comentarios, empieza la conversación!",
"No more messages":"No hay más mensajes",
"Retry":"Reintentar",
@@ -27,7 +30,7 @@ OC.L10N.register(
"Comment deleted":"Comentario borrado",
"An error occurred while trying to delete the comment":"Ocurrió un error intentando borrar el comentario",
"An error occurred while trying to create the comment":"Ocurrió un error intentando crear el comentario",
"%1$s commented":"%1$s comentados",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Te han mencionado en \"{file}\", en un comentario de un usuario que después ha sido eliminado",
"_%n unread comment_::_%n unread comments_":["%n comentario sin leer","%n comentarios no leídos","%n comentarios no leídos"]
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
"%1$s commented on %2$s":"%1$s comentados en %2$s",
"{author} commented on {file}":"{author} comentó en {file}",
"<strong>Comments</strong> for files":"<strong>Comentarios</strong> para archivos",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Te han mencionado en \"{file}\", en un comentario de un usuario que después ha sido eliminado",
"{user} mentioned you in a comment on \"{file}\"":"{user} te mencionó en un comentario en “{file}”",
"Files app plugin to add comments to files":"Plugin de la app de Archivos para añadir comentarios a archivos.",
"Edit comment":"Editar comentario",
"Delete comment":"Borrar comentario",
"Cancel edit":"Cacelar edición",
"New comment":"Comentario nuevo",
"Write a comment …":"Escribir un comentario …",
"Post comment":"Publicar comentario",
"@ for mentions, : for emoji, / for smart picker":"@ para menciones, : para emoji, / para selector inteligente",
"Could not reload comments":"No se pudieron recargar los comentarios",
"No comments yet, start the conversation!":"¡No hay comentarios, empieza la conversación!",
"No more messages":"No hay más mensajes",
"Retry":"Reintentar",
@@ -25,7 +28,7 @@
"Comment deleted":"Comentario borrado",
"An error occurred while trying to delete the comment":"Ocurrió un error intentando borrar el comentario",
"An error occurred while trying to create the comment":"Ocurrió un error intentando crear el comentario",
"%1$s commented":"%1$s comentados",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Te han mencionado en \"{file}\", en un comentario de un usuario que después ha sido eliminado",
"_%n unread comment_::_%n unread comments_":["%n comentario sin leer","%n comentarios no leídos","%n comentarios no leídos"]
},"pluralForm":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
"{author} commented on {file}":"{author} comentó en {file}",
"<strong>Comments</strong> for files":"<strong>Comentarios</strong> de los archivos",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Fuiste mencionado en \"{file}\", en un comentario realizado por un usuario que ha sido eliminado",
"{user} mentioned you in a comment on \"{file}\"":"{user} te mencionó en un comentario en \"{file}\"",
"Files app plugin to add comments to files":"Plugin de la aplicación de archivos para agregar comentarios a los archivos",
"Edit comment":"Editar comentario",
@@ -27,7 +26,7 @@ OC.L10N.register(
"Comment deleted":"Comentario eliminado",
"An error occurred while trying to delete the comment":"Ocurrió un error al intentar eliminar el comentario",
"An error occurred while trying to create the comment":"Ocurrió un error al intentar crear el comentario",
"%1$s commented":"%1$s comentó",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Fuiste mencionado en \"{file}\", en un comentario realizado por un usuario que ha sido eliminado",
"_%n unread comment_::_%n unread comments_":["%n comentarios sin leer","%n comentarios sin leer","%n comentarios sin leer"]
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
"{author} commented on {file}":"{author} comentó en {file}",
"<strong>Comments</strong> for files":"<strong>Comentarios</strong> de los archivos",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Fuiste mencionado en \"{file}\", en un comentario realizado por un usuario que ha sido eliminado",
"{user} mentioned you in a comment on \"{file}\"":"{user} te mencionó en un comentario en \"{file}\"",
"Files app plugin to add comments to files":"Plugin de la aplicación de archivos para agregar comentarios a los archivos",
"Edit comment":"Editar comentario",
@@ -25,7 +24,7 @@
"Comment deleted":"Comentario eliminado",
"An error occurred while trying to delete the comment":"Ocurrió un error al intentar eliminar el comentario",
"An error occurred while trying to create the comment":"Ocurrió un error al intentar crear el comentario",
"%1$s commented":"%1$s comentó",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Fuiste mencionado en \"{file}\", en un comentario realizado por un usuario que ha sido eliminado",
"_%n unread comment_::_%n unread comments_":["%n comentarios sin leer","%n comentarios sin leer","%n comentarios sin leer"]
},"pluralForm":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
"%1$s commented on %2$s":"%1$s kommenteeris %2$s",
"{author} commented on {file}":"{author} kommenteeris faili {file}",
"<strong>Comments</strong> for files":"<strong>Kommentaarid</strong> failidele",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Sind mainis faili \"{file}\" kommentaaris kasutaja, kes on praeguseks kustutatud.",
"{user} mentioned you in a comment on \"{file}\"":"{user} mainis sind faili \"{file}\" kommentaaris",
"Files app plugin to add comments to files":"Failid rakenduse laiendus failidele kommentaaride lisamiseks",
"Edit comment":"Muuda kommentaari",
@@ -27,7 +26,7 @@ OC.L10N.register(
"Comment deleted":"Kommentaar kustutatud",
"An error occurred while trying to delete the comment":"Kommentaari kustutamisel tekkis tõrge",
"An error occurred while trying to create the comment":"Kommentaari lisamisel tekkis tõrge",
"%1$s commented":"%1$s kommenteeris",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Sind mainis faili \"{file}\" kommentaaris kasutaja, kes on praeguseks kustutatud.",
"%1$s commented on %2$s":"%1$s kommenteeris %2$s",
"{author} commented on {file}":"{author} kommenteeris faili {file}",
"<strong>Comments</strong> for files":"<strong>Kommentaarid</strong> failidele",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Sind mainis faili \"{file}\" kommentaaris kasutaja, kes on praeguseks kustutatud.",
"{user} mentioned you in a comment on \"{file}\"":"{user} mainis sind faili \"{file}\" kommentaaris",
"Files app plugin to add comments to files":"Failid rakenduse laiendus failidele kommentaaride lisamiseks",
"Edit comment":"Muuda kommentaari",
@@ -25,7 +24,7 @@
"Comment deleted":"Kommentaar kustutatud",
"An error occurred while trying to delete the comment":"Kommentaari kustutamisel tekkis tõrge",
"An error occurred while trying to create the comment":"Kommentaari lisamisel tekkis tõrge",
"%1$s commented":"%1$s kommenteeris",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Sind mainis faili \"{file}\" kommentaaris kasutaja, kes on praeguseks kustutatud.",
"%1$s commented on %2$s":"%1$s-ek %2$s-en iruzkindu du",
"{author} commented on {file}":"{author}-(e)k {file}-en iruzkina egin du",
"<strong>Comments</strong> for files":"Fitxategientzako <strong>iruzkinak</strong>",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"\"{file}\"-n aipatu zaituzte, dagoeneko ezabatu den erabiltzaile baten iruzkin batean",
"{user} mentioned you in a comment on \"{file}\"":"{user} erabiltzaileak aipatu zaitu \"{file}\"-eko iruzkin batean",
"Files app plugin to add comments to files":"Fitxategiak aplikazioko plugina, fitxategiei iruzkinak gehitzeko",
"Edit comment":"Editatu iruzkina",
"Delete comment":"Ezabatu iruzkina",
"Cancel edit":"Utzi editatzeari",
"Post comment":"Argitaratu iruzkina",
"@ for mentions, : for emoji, / for smart picker":"@ aipamenetarako, : emojientzako, / hautatzaile adimentsurako",
"Could not reload comments":"Ezin izan dira iruzkinak freskatu",
"No comments yet, start the conversation!":"Oraindik ez dago iruzkinik, izan zaitez lehena zerbait esanez!",
"No more messages":"Ez da mezu gehiagorik",
"Retry":"Saiatu berriro",
@@ -27,7 +28,7 @@ OC.L10N.register(
"Comment deleted":"Iruzkina ezabatu da",
"An error occurred while trying to delete the comment":"Errorea gertatu da iruzkina ezabatzen saiatzean",
"An error occurred while trying to create the comment":"Errorea gertatu da iruzkina sortzen saiatzean",
"%1$s commented":"%1$s-(e)k iruzkindu du",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"\"{file}\"-n aipatu zaituzte, dagoeneko ezabatu den erabiltzaile baten iruzkin batean",
"%1$s commented on %2$s":"%1$s-ek %2$s-en iruzkindu du",
"{author} commented on {file}":"{author}-(e)k {file}-en iruzkina egin du",
"<strong>Comments</strong> for files":"Fitxategientzako <strong>iruzkinak</strong>",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"\"{file}\"-n aipatu zaituzte, dagoeneko ezabatu den erabiltzaile baten iruzkin batean",
"{user} mentioned you in a comment on \"{file}\"":"{user} erabiltzaileak aipatu zaitu \"{file}\"-eko iruzkin batean",
"Files app plugin to add comments to files":"Fitxategiak aplikazioko plugina, fitxategiei iruzkinak gehitzeko",
"Edit comment":"Editatu iruzkina",
"Delete comment":"Ezabatu iruzkina",
"Cancel edit":"Utzi editatzeari",
"Post comment":"Argitaratu iruzkina",
"@ for mentions, : for emoji, / for smart picker":"@ aipamenetarako, : emojientzako, / hautatzaile adimentsurako",
"Could not reload comments":"Ezin izan dira iruzkinak freskatu",
"No comments yet, start the conversation!":"Oraindik ez dago iruzkinik, izan zaitez lehena zerbait esanez!",
"No more messages":"Ez da mezu gehiagorik",
"Retry":"Saiatu berriro",
@@ -25,7 +26,7 @@
"Comment deleted":"Iruzkina ezabatu da",
"An error occurred while trying to delete the comment":"Errorea gertatu da iruzkina ezabatzen saiatzean",
"An error occurred while trying to create the comment":"Errorea gertatu da iruzkina sortzen saiatzean",
"%1$s commented":"%1$s-(e)k iruzkindu du",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"\"{file}\"-n aipatu zaituzte, dagoeneko ezabatu den erabiltzaile baten iruzkin batean",
"%1$s commented on %2$s":"%1$s commented on %2$s",
"{author} commented on {file}":"{author} commented on {file}",
"<strong>Comments</strong> for files":"<strong>Comments</strong> for files",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"You were mentioned on \"{file}\", in a comment by a user that has since been deleted",
"{user} mentioned you in a comment on \"{file}\"":"{user} mentioned you in a comment on \"{file}\"",
"Files app plugin to add comments to files":"Files app plugin to add comments to files",
"Edit comment":"ویرایش توضیح",
@@ -27,7 +26,7 @@ OC.L10N.register(
"Comment deleted":"توضیح حذف",
"An error occurred while trying to delete the comment":"An error occurred while trying to delete the comment",
"An error occurred while trying to create the comment":"An error occurred while trying to create the comment",
"%1$s commented":"%1$s commented",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"You were mentioned on \"{file}\", in a comment by a user that has since been deleted",
"%1$s commented on %2$s":"%1$s commented on %2$s",
"{author} commented on {file}":"{author} commented on {file}",
"<strong>Comments</strong> for files":"<strong>Comments</strong> for files",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"You were mentioned on \"{file}\", in a comment by a user that has since been deleted",
"{user} mentioned you in a comment on \"{file}\"":"{user} mentioned you in a comment on \"{file}\"",
"Files app plugin to add comments to files":"Files app plugin to add comments to files",
"Edit comment":"ویرایش توضیح",
@@ -25,7 +24,7 @@
"Comment deleted":"توضیح حذف",
"An error occurred while trying to delete the comment":"An error occurred while trying to delete the comment",
"An error occurred while trying to create the comment":"An error occurred while trying to create the comment",
"%1$s commented":"%1$s commented",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"You were mentioned on \"{file}\", in a comment by a user that has since been deleted",
"{author} commented on {file}":"{author} a commenté sur {file}",
"<strong>Comments</strong> for files":"<strong>Commentaires</strong> sur les fichiers",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Vous avez été mentionné sur \"{file}\", dans un commentaire par un utilisateur qui depuis a été supprimé",
"You were mentioned on \"{file}\", in a comment by an account that has since been deleted":"Vous avez été mentionné sur « {file} », dans un commentaire par un compte qui depuis a été supprimé",
"{user} mentioned you in a comment on \"{file}\"":"{user} vous a mentionné dans un commentaire sur \"{file}\"",
"Files app plugin to add comments to files":"Plugin Fichiers app pour ajouter des commentaires aux fichiers",
"Edit comment":"Modifier le commentaire",
"Delete comment":"Supprimer le commentaire",
"Cancel edit":"Annuler les modifications",
"New comment":"Nouveau commentaire",
"Write a comment …":"Écrire un commentaire…",
"Post comment":"Publier le commentaire",
"@ for mentions, : for emoji, / for smart picker":"@ pour les mentions, : pour les émojis, / pour le sélecteur intelligent",
"Could not reload comments":"Impossible de rafraichir les commentaires",
"No comments yet, start the conversation!":"Il n'y a aucun commentaire, démarrez la conversation !",
"No more messages":"Aucun autre message",
@@ -28,7 +31,7 @@ OC.L10N.register(
"Comment deleted":"Commentaire supprimé",
"An error occurred while trying to delete the comment":"Une erreur s'est produite lors de la tentative de suppression du commentaire",
"An error occurred while trying to create the comment":"Une erreur s'est produite lors de la tentative de création du commentaire",
"%1$s commented":"%1$s a commenté",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Vous avez été mentionné sur \"{file}\", dans un commentaire par un utilisateur qui depuis a été supprimé",
"_%n unread comment_::_%n unread comments_":["%n commentaire non lu","%n commentaires non lus","%n commentaires non lus"]
},
"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
"{author} commented on {file}":"{author} a commenté sur {file}",
"<strong>Comments</strong> for files":"<strong>Commentaires</strong> sur les fichiers",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Vous avez été mentionné sur \"{file}\", dans un commentaire par un utilisateur qui depuis a été supprimé",
"You were mentioned on \"{file}\", in a comment by an account that has since been deleted":"Vous avez été mentionné sur « {file} », dans un commentaire par un compte qui depuis a été supprimé",
"{user} mentioned you in a comment on \"{file}\"":"{user} vous a mentionné dans un commentaire sur \"{file}\"",
"Files app plugin to add comments to files":"Plugin Fichiers app pour ajouter des commentaires aux fichiers",
"Edit comment":"Modifier le commentaire",
"Delete comment":"Supprimer le commentaire",
"Cancel edit":"Annuler les modifications",
"New comment":"Nouveau commentaire",
"Write a comment …":"Écrire un commentaire…",
"Post comment":"Publier le commentaire",
"@ for mentions, : for emoji, / for smart picker":"@ pour les mentions, : pour les émojis, / pour le sélecteur intelligent",
"Could not reload comments":"Impossible de rafraichir les commentaires",
"No comments yet, start the conversation!":"Il n'y a aucun commentaire, démarrez la conversation !",
"No more messages":"Aucun autre message",
@@ -26,7 +29,7 @@
"Comment deleted":"Commentaire supprimé",
"An error occurred while trying to delete the comment":"Une erreur s'est produite lors de la tentative de suppression du commentaire",
"An error occurred while trying to create the comment":"Une erreur s'est produite lors de la tentative de création du commentaire",
"%1$s commented":"%1$s a commenté",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Vous avez été mentionné sur \"{file}\", dans un commentaire par un utilisateur qui depuis a été supprimé",
"_%n unread comment_::_%n unread comments_":["%n commentaire non lu","%n commentaires non lus","%n commentaires non lus"]
},"pluralForm":"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
"%1$s commented on %2$s":"%1$s comentados en %2$s",
"{author} commented on {file}":"{author} comentou en {file}",
"<strong>Comments</strong> for files":"<strong>Comentarios</strong> para ficheiros",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Mencionárono en «{file}», nun comentario dun usuario que xa foi eliminado",
"{user} mentioned you in a comment on \"{file}\"":"{user} mencionouno a Vde. nun comentario en «{file}»",
"Files app plugin to add comments to files":"Complemento da aplicación de ficheiros para engadir comentarios aos ficheiros",
"Edit comment":"Editar comentario",
"Delete comment":"Eliminar comentario",
"Cancel edit":"Cancelar a edición",
"New comment":"Comentario novo",
"Post comment":"Publicar comentario",
"@ for mentions, : for emoji, / for smart picker":"@ para mencións, : para «emoji», / para selector intelixente",
"Could not reload comments":"Non foi posíbel volver cargar os comentarios",
"No comments yet, start the conversation!":"Aínda non hai comentarios, comeza a conversa!",
"No more messages":"Non hai máis mensaxes",
@@ -28,7 +29,7 @@ OC.L10N.register(
"Comment deleted":"Comentario eliminado",
"An error occurred while trying to delete the comment":"Produciuse un erro cando tentaba eliminar o comentario",
"An error occurred while trying to create the comment":"Produciuse un erro cando tentaba crear o comentario",
"%1$s commented":"%1$s comentados",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Mencionárono en «{file}», nun comentario dun usuario que xa foi eliminado",
"_%n unread comment_::_%n unread comments_":["%n comentario sen ler","%n comentarios sen ler"]
"%1$s commented on %2$s":"%1$s comentados en %2$s",
"{author} commented on {file}":"{author} comentou en {file}",
"<strong>Comments</strong> for files":"<strong>Comentarios</strong> para ficheiros",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Mencionárono en «{file}», nun comentario dun usuario que xa foi eliminado",
"{user} mentioned you in a comment on \"{file}\"":"{user} mencionouno a Vde. nun comentario en «{file}»",
"Files app plugin to add comments to files":"Complemento da aplicación de ficheiros para engadir comentarios aos ficheiros",
"Edit comment":"Editar comentario",
"Delete comment":"Eliminar comentario",
"Cancel edit":"Cancelar a edición",
"New comment":"Comentario novo",
"Post comment":"Publicar comentario",
"@ for mentions, : for emoji, / for smart picker":"@ para mencións, : para «emoji», / para selector intelixente",
"Could not reload comments":"Non foi posíbel volver cargar os comentarios",
"No comments yet, start the conversation!":"Aínda non hai comentarios, comeza a conversa!",
"No more messages":"Non hai máis mensaxes",
@@ -26,7 +27,7 @@
"Comment deleted":"Comentario eliminado",
"An error occurred while trying to delete the comment":"Produciuse un erro cando tentaba eliminar o comentario",
"An error occurred while trying to create the comment":"Produciuse un erro cando tentaba crear o comentario",
"%1$s commented":"%1$s comentados",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Mencionárono en «{file}», nun comentario dun usuario que xa foi eliminado",
"_%n unread comment_::_%n unread comments_":["%n comentario sen ler","%n comentarios sen ler"]
"%1$s commented on %2$s":"%1$s hozzászólt ehhez: %2$s",
"{author} commented on {file}":"{author} hozzászólt ehhez: {file}",
"<strong>Comments</strong> for files":"<strong>Hozzászólások</strong> fájlokhoz",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Megemlítették ennél: „{file}”, egy már törölt felhasználó hozzászólásában",
"{user} mentioned you in a comment on \"{file}\"":"{user} megemlítette egy hozzászólásban ennél: „{file}”",
"Files app plugin to add comments to files":"A Fájlok alkalmazás bővítménye, amellyel megjegyzések adhatóak a fájlokhoz",
"Edit comment":"Hozzászólás szerkesztése",
"Delete comment":"Hozzászólás törlése",
"Cancel edit":"Változások elvetése",
"Post comment":"Hozzászólás közzététele",
"@ for mentions, : for emoji, / for smart picker":"@ az említésekhez, : az emodzsikhoz, / az okos választóhoz",
"Could not reload comments":"Nem sikerült a megjegyzések újratöltése.",
"No comments yet, start the conversation!":"Még nincsenek hozzászólások, kezdje el a beszélgetést!",
"No more messages":"Nincs több üzenet",
"Retry":"Újra",
@@ -27,7 +28,7 @@ OC.L10N.register(
"Comment deleted":"Hozzászólás törölve",
"An error occurred while trying to delete the comment":"Hiba történt a megjegyzés törlése közben",
"An error occurred while trying to create the comment":"Hiba történt a megjegyzés létrehozása közben",
"%1$s commented":"%1$s hozzászólt",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Megemlítették ennél: „{file}”, egy már törölt felhasználó hozzászólásában",
"%1$s commented on %2$s":"%1$s hozzászólt ehhez: %2$s",
"{author} commented on {file}":"{author} hozzászólt ehhez: {file}",
"<strong>Comments</strong> for files":"<strong>Hozzászólások</strong> fájlokhoz",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Megemlítették ennél: „{file}”, egy már törölt felhasználó hozzászólásában",
"{user} mentioned you in a comment on \"{file}\"":"{user} megemlítette egy hozzászólásban ennél: „{file}”",
"Files app plugin to add comments to files":"A Fájlok alkalmazás bővítménye, amellyel megjegyzések adhatóak a fájlokhoz",
"Edit comment":"Hozzászólás szerkesztése",
"Delete comment":"Hozzászólás törlése",
"Cancel edit":"Változások elvetése",
"Post comment":"Hozzászólás közzététele",
"@ for mentions, : for emoji, / for smart picker":"@ az említésekhez, : az emodzsikhoz, / az okos választóhoz",
"Could not reload comments":"Nem sikerült a megjegyzések újratöltése.",
"No comments yet, start the conversation!":"Még nincsenek hozzászólások, kezdje el a beszélgetést!",
"No more messages":"Nincs több üzenet",
"Retry":"Újra",
@@ -25,7 +26,7 @@
"Comment deleted":"Hozzászólás törölve",
"An error occurred while trying to delete the comment":"Hiba történt a megjegyzés törlése közben",
"An error occurred while trying to create the comment":"Hiba történt a megjegyzés létrehozása közben",
"%1$s commented":"%1$s hozzászólt",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Megemlítették ennél: „{file}”, egy már törölt felhasználó hozzászólásában",
"%1$s commented on %2$s":"%1$s dikomentari pada %2$s",
"{author} commented on {file}":"{pengarang} berkomentar pada {file}",
"<strong>Comments</strong> for files":"<strong>komentar</strong> pada file",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Anda disebut pada \"{file}\", dalam sebuah komentar oleh pengguna yang sejak itu telah dihapus",
"{user} mentioned you in a comment on \"{file}\"":"{pengguna} menyebut Anda dalam sebuah komentar pada \"{file}\" ",
"Files app plugin to add comments to files":"Plugin aplikasi file untuk menambah komentar pada file",
"Edit comment":"Sunting komentar",
@@ -26,7 +25,7 @@ OC.L10N.register(
"Comment deleted":"Komentar dihapus",
"An error occurred while trying to delete the comment":"Terjadi kesalahan ketika mencoba untuk menghapus komentar",
"An error occurred while trying to create the comment":"Terjadi kesalahan ketika mencoba untuk membuat komentar",
"%1$s commented":"%1$s dikomentari",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Anda disebut pada \"{file}\", dalam sebuah komentar oleh pengguna yang sejak itu telah dihapus",
"_%n unread comment_::_%n unread comments_":["%nkomentar belum dibaca"]
"%1$s commented on %2$s":"%1$s dikomentari pada %2$s",
"{author} commented on {file}":"{pengarang} berkomentar pada {file}",
"<strong>Comments</strong> for files":"<strong>komentar</strong> pada file",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Anda disebut pada \"{file}\", dalam sebuah komentar oleh pengguna yang sejak itu telah dihapus",
"{user} mentioned you in a comment on \"{file}\"":"{pengguna} menyebut Anda dalam sebuah komentar pada \"{file}\" ",
"Files app plugin to add comments to files":"Plugin aplikasi file untuk menambah komentar pada file",
"Edit comment":"Sunting komentar",
@@ -24,7 +23,7 @@
"Comment deleted":"Komentar dihapus",
"An error occurred while trying to delete the comment":"Terjadi kesalahan ketika mencoba untuk menghapus komentar",
"An error occurred while trying to create the comment":"Terjadi kesalahan ketika mencoba untuk membuat komentar",
"%1$s commented":"%1$s dikomentari",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Anda disebut pada \"{file}\", dalam sebuah komentar oleh pengguna yang sejak itu telah dihapus",
"_%n unread comment_::_%n unread comments_":["%nkomentar belum dibaca"]
"%1$s commented on %2$s":"%1$s setti inn athugasemd um %2$s",
"{author} commented on {file}":"{author} setti inn athugasemd við {file}",
"<strong>Comments</strong> for files":"<strong>Athugasemdir</strong> við skrár",
"{user} mentioned you in a comment on \"{file}\"":"{user} minntist á þig í athugasemd við \"{file}\"",
"Files app plugin to add comments to files":"Viðbót við skráaforrit til að bæta athugasemdum við skrár",
"Edit comment":"Breyta athugasemd",
"Delete comment":"Eyða athugasemd",
"Cancel edit":"Hætta við breytingar",
"Post comment":"Senda inn athugasemd",
"@ for mentions, : for emoji, / for smart picker":"@ til að minnast á, : fyrir tjáningartákn, / fyrir snjallveljara",
"Could not reload comments":"Gat ekki endurlesið athugasemdir",
"No comments yet, start the conversation!":"Engar athugasemdir ennþá, byrjaðu umræðuna!",
"No more messages":"Engin fleiri skilaboð",
"Retry":"Reyna aftur",
"Failed to mark comments as read":"Tókst ekki að merkja athugasemdir sem lesnar",
"Unable to load the comments list":"Gat ekki hlaðið inn lista yfir athugasemdir",
"_1 new comment_::_{unread} new comments_":["1 ný athugasemd","{unread} nýjar athugasemdir"],
"Comment":"Athugasemd",
@@ -24,7 +28,7 @@ OC.L10N.register(
"Comment deleted":"Athugasemd var eytt",
"An error occurred while trying to delete the comment":"Villa átti sér stað við að eyða athugasemdinni",
"An error occurred while trying to create the comment":"Villa átti sér stað við að útbúa athugasemdina",
"%1$s commented":"%1$s setti inn athugasemd",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Minnst var á þig í \"{file}\", í athugasemd frá notanda sem síðan þá hefur verið eytt",
"%1$s commented on %2$s":"%1$s setti inn athugasemd um %2$s",
"{author} commented on {file}":"{author} setti inn athugasemd við {file}",
"<strong>Comments</strong> for files":"<strong>Athugasemdir</strong> við skrár",
"{user} mentioned you in a comment on \"{file}\"":"{user} minntist á þig í athugasemd við \"{file}\"",
"Files app plugin to add comments to files":"Viðbót við skráaforrit til að bæta athugasemdum við skrár",
"Edit comment":"Breyta athugasemd",
"Delete comment":"Eyða athugasemd",
"Cancel edit":"Hætta við breytingar",
"Post comment":"Senda inn athugasemd",
"@ for mentions, : for emoji, / for smart picker":"@ til að minnast á, : fyrir tjáningartákn, / fyrir snjallveljara",
"Could not reload comments":"Gat ekki endurlesið athugasemdir",
"No comments yet, start the conversation!":"Engar athugasemdir ennþá, byrjaðu umræðuna!",
"No more messages":"Engin fleiri skilaboð",
"Retry":"Reyna aftur",
"Failed to mark comments as read":"Tókst ekki að merkja athugasemdir sem lesnar",
"Unable to load the comments list":"Gat ekki hlaðið inn lista yfir athugasemdir",
"_1 new comment_::_{unread} new comments_":["1 ný athugasemd","{unread} nýjar athugasemdir"],
"Comment":"Athugasemd",
@@ -22,7 +26,7 @@
"Comment deleted":"Athugasemd var eytt",
"An error occurred while trying to delete the comment":"Villa átti sér stað við að eyða athugasemdinni",
"An error occurred while trying to create the comment":"Villa átti sér stað við að útbúa athugasemdina",
"%1$s commented":"%1$s setti inn athugasemd",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Minnst var á þig í \"{file}\", í athugasemd frá notanda sem síðan þá hefur verið eytt",
"%1$s commented on %2$s":"%1$s ha commentato %2$s",
"{author} commented on {file}":"{author} ha commentato su {file}",
"<strong>Comments</strong> for files":"<strong>Commenti</strong> sui file",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Sei stato menzionato su \"{file}\", in un commento di un utente che è stato eliminato",
"{user} mentioned you in a comment on \"{file}\"":"{user} ti ha menzionato in un commento su \"{file}\"",
"Files app plugin to add comments to files":"Estensione dell'applicazione File per aggiungere commenti ai file",
"Edit comment":"Modifica commento",
"Delete comment":"Elimina commento",
"Cancel edit":"Annulla modifica",
"New comment":"Nuovo commento",
"Write a comment …":"Scrivi un commento...",
"Post comment":"Pubblica commento",
"@ for mentions, : for emoji, / for smart picker":"@ per menzioni, : per emoji, / per selettore intelligente",
"Could not reload comments":"Impossibile ricaricare i commenti",
"No comments yet, start the conversation!":"Ancora nessun commento, inizia la conversazione!",
"No more messages":"Non ci sono altri messaggi",
"Retry":"Riprova",
@@ -27,7 +30,7 @@ OC.L10N.register(
"Comment deleted":"Commento eliminato",
"An error occurred while trying to delete the comment":"Si è verificato un errore durante il tentativo di eliminare il commento",
"An error occurred while trying to create the comment":"Si è verificato un errore durante il tentativo di creare il commento",
"%1$s commented":"%1$s ha commentato",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Sei stato menzionato su \"{file}\", in un commento di un utente che è stato eliminato",
"_%n unread comment_::_%n unread comments_":["%n commento non letto","%n commenti non letti","%n commenti non letti"]
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
"%1$s commented on %2$s":"%1$s ha commentato %2$s",
"{author} commented on {file}":"{author} ha commentato su {file}",
"<strong>Comments</strong> for files":"<strong>Commenti</strong> sui file",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Sei stato menzionato su \"{file}\", in un commento di un utente che è stato eliminato",
"{user} mentioned you in a comment on \"{file}\"":"{user} ti ha menzionato in un commento su \"{file}\"",
"Files app plugin to add comments to files":"Estensione dell'applicazione File per aggiungere commenti ai file",
"Edit comment":"Modifica commento",
"Delete comment":"Elimina commento",
"Cancel edit":"Annulla modifica",
"New comment":"Nuovo commento",
"Write a comment …":"Scrivi un commento...",
"Post comment":"Pubblica commento",
"@ for mentions, : for emoji, / for smart picker":"@ per menzioni, : per emoji, / per selettore intelligente",
"Could not reload comments":"Impossibile ricaricare i commenti",
"No comments yet, start the conversation!":"Ancora nessun commento, inizia la conversazione!",
"No more messages":"Non ci sono altri messaggi",
"Retry":"Riprova",
@@ -25,7 +28,7 @@
"Comment deleted":"Commento eliminato",
"An error occurred while trying to delete the comment":"Si è verificato un errore durante il tentativo di eliminare il commento",
"An error occurred while trying to create the comment":"Si è verificato un errore durante il tentativo di creare il commento",
"%1$s commented":"%1$s ha commentato",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Sei stato menzionato su \"{file}\", in un commento di un utente che è stato eliminato",
"_%n unread comment_::_%n unread comments_":["%n commento non letto","%n commenti non letti","%n commenti non letti"]
},"pluralForm":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
"%1$s commented on %2$s":"%2$s について、%1$s がコメントしました",
"{author} commented on {file}":"{author} が{file} にコメントしました",
"<strong>Comments</strong> for files":"ファイルへの<strong>コメント</strong>があったとき",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"You were mentioned on \"{file}\", in a comment by a user that has since been deleted",
"{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":"コメントをリロードできませんでした",
"No comments yet, start the conversation!":"まだコメントはありません、会話を開始してください!",
"No more messages":"これ以上のメッセージはありません",
"Retry":"再試行",
@@ -27,7 +30,7 @@ OC.L10N.register(
"Comment deleted":"コメントが削除されました",
"An error occurred while trying to delete the comment":"コメントの削除中にエラーが発生しました",
"An error occurred while trying to create the comment":"コメント中にエラーが発生しました",
"%1$s commented":"%1$s がコメントを追加",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"You were mentioned on \"{file}\", in a comment by a user that has since been deleted",
"%1$s commented on %2$s":"%2$s について、%1$s がコメントしました",
"{author} commented on {file}":"{author} が{file} にコメントしました",
"<strong>Comments</strong> for files":"ファイルへの<strong>コメント</strong>があったとき",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"You were mentioned on \"{file}\", in a comment by a user that has since been deleted",
"{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":"コメントをリロードできませんでした",
"No comments yet, start the conversation!":"まだコメントはありません、会話を開始してください!",
"No more messages":"これ以上のメッセージはありません",
"Retry":"再試行",
@@ -25,7 +28,7 @@
"Comment deleted":"コメントが削除されました",
"An error occurred while trying to delete the comment":"コメントの削除中にエラーが発生しました",
"An error occurred while trying to create the comment":"コメント中にエラーが発生しました",
"%1$s commented":"%1$s がコメントを追加",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"You were mentioned on \"{file}\", in a comment by a user that has since been deleted",
"You commented on {file}":"You commented on {file}",
"%1$s commented on %2$s":"%1$s commented on %2$s",
"{author} commented on {file}":"{author} commented on {file}",
"<strong>Comments</strong> for files":"<strong>Comments</strong> for files",
"{user} mentioned you in a comment on \"{file}\"":"{user} mentioned you in a comment on \"{file}\"",
"Files app plugin to add comments to files":"Files app plugin to add comments to files",
"Edit comment":"Edit comment",
"Delete comment":"Delete comment",
"Cancel edit":"Cancel edit",
"Post comment":"Post comment",
"@ for mentions, : for emoji, / for smart picker":"@ for mentions, : for emoji, / for smart picker",
"Could not reload comments":"Could not reload comments",
"No comments yet, start the conversation!":"No comments yet, start the conversation!",
"No more messages":"No more messages",
"Retry":"Retry",
"Failed to mark comments as read":"Failed to mark comments as read",
"Unable to load the comments list":"Unable to load the comments list",
"_1 new comment_::_{unread} new comments_":["1 new comment","{unread} new comments"],
"Comment":"Comment",
"An error occurred while trying to edit the comment":"An error occurred while trying to edit the comment",
"Comment deleted":"Comment deleted",
"An error occurred while trying to delete the comment":"An error occurred while trying to delete the comment",
"An error occurred while trying to create the comment":"An error occurred while trying to create the comment",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"You were mentioned on \"{file}\", in a comment by a user that has since been deleted",
"You commented on {file}":"You commented on {file}",
"%1$s commented on %2$s":"%1$s commented on %2$s",
"{author} commented on {file}":"{author} commented on {file}",
"<strong>Comments</strong> for files":"<strong>Comments</strong> for files",
"{user} mentioned you in a comment on \"{file}\"":"{user} mentioned you in a comment on \"{file}\"",
"Files app plugin to add comments to files":"Files app plugin to add comments to files",
"Edit comment":"Edit comment",
"Delete comment":"Delete comment",
"Cancel edit":"Cancel edit",
"Post comment":"Post comment",
"@ for mentions, : for emoji, / for smart picker":"@ for mentions, : for emoji, / for smart picker",
"Could not reload comments":"Could not reload comments",
"No comments yet, start the conversation!":"No comments yet, start the conversation!",
"No more messages":"No more messages",
"Retry":"Retry",
"Failed to mark comments as read":"Failed to mark comments as read",
"Unable to load the comments list":"Unable to load the comments list",
"_1 new comment_::_{unread} new comments_":["1 new comment","{unread} new comments"],
"Comment":"Comment",
"An error occurred while trying to edit the comment":"An error occurred while trying to edit the comment",
"Comment deleted":"Comment deleted",
"An error occurred while trying to delete the comment":"An error occurred while trying to delete the comment",
"An error occurred while trying to create the comment":"An error occurred while trying to create the comment",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"You were mentioned on \"{file}\", in a comment by a user that has since been deleted",
"%1$s commented on %2$s":"%1$s коментираше на %2$s",
"{author} commented on {file}":"{author} коментираше на {file}",
"<strong>Comments</strong> for files":"<strong>Коментари</strong> за датотеки",
"You were mentioned on \"{file}\", in a comment by a user 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":"Измени го коментарот",
@@ -27,7 +26,7 @@ OC.L10N.register(
"Comment deleted":"Коментарот е избришан",
"An error occurred while trying to delete the comment":"Настана грешка при обидот за бришење на коментар",
"An error occurred while trying to create the comment":"Настана грешка при обидот за креирање на коментар",
"%1$s commented":"%1$s коментиран",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Бевте спомнати на коментар на “{file}”, од корисник кој сега е избришан",
"%1$s commented on %2$s":"%1$s коментираше на %2$s",
"{author} commented on {file}":"{author} коментираше на {file}",
"<strong>Comments</strong> for files":"<strong>Коментари</strong> за датотеки",
"You were mentioned on \"{file}\", in a comment by a user 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":"Измени го коментарот",
@@ -25,7 +24,7 @@
"Comment deleted":"Коментарот е избришан",
"An error occurred while trying to delete the comment":"Настана грешка при обидот за бришење на коментар",
"An error occurred while trying to create the comment":"Настана грешка при обидот за креирање на коментар",
"%1$s commented":"%1$s коментиран",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Бевте спомнати на коментар на “{file}”, од корисник кој сега е избришан",
"{author} commented on {file}":"{author} kommenterte på {file}",
"<strong>Comments</strong> for files":"<strong>Kommentarer</strong> for filer",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Du ble nevnt på \"{file}\", i en kommentar av en bruker som siden har blitt slettet",
"You were mentioned on \"{file}\", in a comment by an account that has since been deleted":"Du ble nevnt på \"{file}\", i en kommentar av en konto som siden har blitt slettet",
"{user} mentioned you in a comment on \"{file}\"":"{user} nevnte deg i en kommentar til \"{file}\"",
"Files app plugin to add comments to files":"Tillegg for å legge til kommentarer til filer",
"Edit comment":"Rediger kommentar",
"Delete comment":"Slett kommentar",
"Cancel edit":"Avbryt endring",
"New comment":"Ny kommentar",
"Write a comment …":"Skriv en kommentar...",
"Post comment":"Send kommentar",
"@ for mentions, : for emoji, / for smart picker":"@ for nevner, : for emoji, / for smartvelger",
"Could not reload comments":"Kunne ikke laste inn kommentarene på nytt",
"No comments yet, start the conversation!":"Ingen kommentarer enda, start diskusjonen!",
"No more messages":"Ingen flere meldinger",
"Retry":"Prøv igjen",
"Failed to mark comments as read":"Markering av kommentarer som lest feilet",
"Unable to load the comments list":"Kan ikke laste inn kommentarlisten",
"_1 new comment_::_{unread} new comments_":["[uleste] nye kommentarer","{uleste} nye kommentarer"],
"Comment":"Kommentar",
@@ -26,7 +31,7 @@ OC.L10N.register(
"Comment deleted":"Kommentar slettet",
"An error occurred while trying to delete the comment":"Det oppsto en feil under forsøk på å slette kommentaren",
"An error occurred while trying to create the comment":"Det oppsto en feil under forsøket på å opprette kommentaren",
"%1$s commented":"%1$s kommentert",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Du ble nevnt på \"{file}\", i en kommentar av en bruker som siden har blitt slettet",
"{author} commented on {file}":"{author} kommenterte på {file}",
"<strong>Comments</strong> for files":"<strong>Kommentarer</strong> for filer",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Du ble nevnt på \"{file}\", i en kommentar av en bruker som siden har blitt slettet",
"You were mentioned on \"{file}\", in a comment by an account that has since been deleted":"Du ble nevnt på \"{file}\", i en kommentar av en konto som siden har blitt slettet",
"{user} mentioned you in a comment on \"{file}\"":"{user} nevnte deg i en kommentar til \"{file}\"",
"Files app plugin to add comments to files":"Tillegg for å legge til kommentarer til filer",
"Edit comment":"Rediger kommentar",
"Delete comment":"Slett kommentar",
"Cancel edit":"Avbryt endring",
"New comment":"Ny kommentar",
"Write a comment …":"Skriv en kommentar...",
"Post comment":"Send kommentar",
"@ for mentions, : for emoji, / for smart picker":"@ for nevner, : for emoji, / for smartvelger",
"Could not reload comments":"Kunne ikke laste inn kommentarene på nytt",
"No comments yet, start the conversation!":"Ingen kommentarer enda, start diskusjonen!",
"No more messages":"Ingen flere meldinger",
"Retry":"Prøv igjen",
"Failed to mark comments as read":"Markering av kommentarer som lest feilet",
"Unable to load the comments list":"Kan ikke laste inn kommentarlisten",
"_1 new comment_::_{unread} new comments_":["[uleste] nye kommentarer","{uleste} nye kommentarer"],
"Comment":"Kommentar",
@@ -24,7 +29,7 @@
"Comment deleted":"Kommentar slettet",
"An error occurred while trying to delete the comment":"Det oppsto en feil under forsøk på å slette kommentaren",
"An error occurred while trying to create the comment":"Det oppsto en feil under forsøket på å opprette kommentaren",
"%1$s commented":"%1$s kommentert",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Du ble nevnt på \"{file}\", i en kommentar av en bruker som siden har blitt slettet",
"%1$s commented on %2$s":"%1$s heeft gereageerd op %2$s",
"{author} commented on {file}":"{author} reageerde op {file}",
"<strong>Comments</strong> for files":"<strong>Reacties</strong> voor bestanden",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Je werd vermeld op \"{file}\" in een reactie door een sindsdien verwijderde gebruiker",
"{user} mentioned you in a comment on \"{file}\"":"{user} noemde jou in een reactie op \"{file}\"",
"Files app plugin to add comments to files":"Bestanden app plugin om reacties aan bestanden toe te voegen",
"Edit comment":"Bewerk reactie",
@@ -26,7 +25,7 @@ OC.L10N.register(
"Comment deleted":"Reactie verwijderd",
"An error occurred while trying to delete the comment":"Er trad een fout op bij het verwijderen van de reactie",
"An error occurred while trying to create the comment":"Er trad een fout op bij het creëren van de reactie",
"%1$s commented":"%1$s heeft gereageerd",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Je werd vermeld op \"{file}\" in een reactie door een sindsdien verwijderde gebruiker",
"%1$s commented on %2$s":"%1$s heeft gereageerd op %2$s",
"{author} commented on {file}":"{author} reageerde op {file}",
"<strong>Comments</strong> for files":"<strong>Reacties</strong> voor bestanden",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Je werd vermeld op \"{file}\" in een reactie door een sindsdien verwijderde gebruiker",
"{user} mentioned you in a comment on \"{file}\"":"{user} noemde jou in een reactie op \"{file}\"",
"Files app plugin to add comments to files":"Bestanden app plugin om reacties aan bestanden toe te voegen",
"Edit comment":"Bewerk reactie",
@@ -24,7 +23,7 @@
"Comment deleted":"Reactie verwijderd",
"An error occurred while trying to delete the comment":"Er trad een fout op bij het verwijderen van de reactie",
"An error occurred while trying to create the comment":"Er trad een fout op bij het creëren van de reactie",
"%1$s commented":"%1$s heeft gereageerd",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Je werd vermeld op \"{file}\" in een reactie door een sindsdien verwijderde gebruiker",
"{author} commented on {file}":"{author} skomentował w {file}",
"<strong>Comments</strong> for files":"<strong>Komentarze</strong> dla plików",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Wspomniano o Tobie w komentarzu w \"{file}\" przez użytkownika, który został usunięty",
"{user} mentioned you in a comment on \"{file}\"":"{user} wspomniał o Tobie w komentarzu do “{file}”",
"Files app plugin to add comments to files":"Plugin umożliwiający dodawanie komentarzy w aplikacji Pliki",
"Edit comment":"Edytuj komentarz",
"Delete comment":"Usuń komentarz",
"Cancel edit":"Anuluj edycję",
"New comment":"Nowy komentarz",
"Post comment":"Wyślij komentarz",
"@ for mentions, : for emoji, / for smart picker":"@ dla wzmianek, : dla emoji, / dla inteligentnego wybierania",
"Could not reload comments":"Nie można ponownie załadować komentarzy",
"No comments yet, start the conversation!":"Brak komentarzy, rozpocznij rozmowę!",
"No more messages":"Nie ma więcej wiadomości",
@@ -28,7 +29,7 @@ OC.L10N.register(
"Comment deleted":"Komentarz usunięty",
"An error occurred while trying to delete the comment":"Wystąpił błąd podczas próby usunięcia komentarza",
"An error occurred while trying to create the comment":"Wystąpił błąd podczas próby utworzenia komentarza",
"%1$s commented":"%1$s skomentował",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Wspomniano o Tobie w komentarzu w \"{file}\" przez użytkownika, który został usunięty",
"{author} commented on {file}":"{author} skomentował w {file}",
"<strong>Comments</strong> for files":"<strong>Komentarze</strong> dla plików",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Wspomniano o Tobie w komentarzu w \"{file}\" przez użytkownika, który został usunięty",
"{user} mentioned you in a comment on \"{file}\"":"{user} wspomniał o Tobie w komentarzu do “{file}”",
"Files app plugin to add comments to files":"Plugin umożliwiający dodawanie komentarzy w aplikacji Pliki",
"Edit comment":"Edytuj komentarz",
"Delete comment":"Usuń komentarz",
"Cancel edit":"Anuluj edycję",
"New comment":"Nowy komentarz",
"Post comment":"Wyślij komentarz",
"@ for mentions, : for emoji, / for smart picker":"@ dla wzmianek, : dla emoji, / dla inteligentnego wybierania",
"Could not reload comments":"Nie można ponownie załadować komentarzy",
"No comments yet, start the conversation!":"Brak komentarzy, rozpocznij rozmowę!",
"No more messages":"Nie ma więcej wiadomości",
@@ -26,7 +27,7 @@
"Comment deleted":"Komentarz usunięty",
"An error occurred while trying to delete the comment":"Wystąpił błąd podczas próby usunięcia komentarza",
"An error occurred while trying to create the comment":"Wystąpił błąd podczas próby utworzenia komentarza",
"%1$s commented":"%1$s skomentował",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Wspomniano o Tobie w komentarzu w \"{file}\" przez użytkownika, który został usunięty",
"%1$s commented on %2$s":"%1$s comentaram em %2$s",
"{author} commented on {file}":"{author} comentou em {file}",
"<strong>Comments</strong> for files":"<strong>Comentários</strong> para arquivos",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Você foi mencionado em \"{file}\", em um comentário de um usuário que já foi excluído",
"{user} mentioned you in a comment on \"{file}\"":"{user} mencionou você em um comentário em \"{file}\"",
"Files app plugin to add comments to files":"Complemento do aplicativo Files para adicionar comentários",
"Edit comment":"Editar comentário",
"Delete comment":"Excluir comentário",
"Cancel edit":"Cancelar edição",
"New comment":"Novo comentário",
"Post comment":"Postar comentário",
"@ for mentions, : for emoji, / for smart picker":"@ para menções, : para emoji, / para seletor inteligente",
"Could not reload comments":"Não foi possível recarregar comentários",
"No comments yet, start the conversation!":"Nenhum comentário ainda, inicie uma conversa!",
"No more messages":"Sem mais mensagens",
"Retry":"Tentar novamente",
@@ -27,7 +29,7 @@ OC.L10N.register(
"Comment deleted":"Comentário excluído",
"An error occurred while trying to delete the comment":"Ocorreu um erro ao tentar excluir o comentário",
"An error occurred while trying to create the comment":"Ocorreu um erro ao tentar criar o comentário",
"%1$s commented":"%1$s comentou",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Você foi mencionado em \"{file}\", em um comentário de um usuário que já foi excluído",
"_%n unread comment_::_%n unread comments_":["%n comentários não lidos","%n comentários não lidos","%n comentários não lidos"]
},
"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
"%1$s commented on %2$s":"%1$s comentaram em %2$s",
"{author} commented on {file}":"{author} comentou em {file}",
"<strong>Comments</strong> for files":"<strong>Comentários</strong> para arquivos",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Você foi mencionado em \"{file}\", em um comentário de um usuário que já foi excluído",
"{user} mentioned you in a comment on \"{file}\"":"{user} mencionou você em um comentário em \"{file}\"",
"Files app plugin to add comments to files":"Complemento do aplicativo Files para adicionar comentários",
"Edit comment":"Editar comentário",
"Delete comment":"Excluir comentário",
"Cancel edit":"Cancelar edição",
"New comment":"Novo comentário",
"Post comment":"Postar comentário",
"@ for mentions, : for emoji, / for smart picker":"@ para menções, : para emoji, / para seletor inteligente",
"Could not reload comments":"Não foi possível recarregar comentários",
"No comments yet, start the conversation!":"Nenhum comentário ainda, inicie uma conversa!",
"No more messages":"Sem mais mensagens",
"Retry":"Tentar novamente",
@@ -25,7 +27,7 @@
"Comment deleted":"Comentário excluído",
"An error occurred while trying to delete the comment":"Ocorreu um erro ao tentar excluir o comentário",
"An error occurred while trying to create the comment":"Ocorreu um erro ao tentar criar o comentário",
"%1$s commented":"%1$s comentou",
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted":"Você foi mencionado em \"{file}\", em um comentário de um usuário que já foi excluído",
"_%n unread comment_::_%n unread comments_":["%n comentários não lidos","%n comentários não lidos","%n comentários não lidos"]
},"pluralForm":"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}
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.