From c8bffc3320e7af9ce1d969451af87989d6e176ed Mon Sep 17 00:00:00 2001 From: iam-vir-harshit Date: Wed, 20 Nov 2024 17:16:34 +0530 Subject: [PATCH] Fix #2869 Difficult to find users to delete from group in large groups --- .../members-list/members-list.component.ts | 8 +- src/app/core/eperson/eperson-data.service.ts | 26 +- .../reviewers-list.component.ts | 4 + src/assets/i18n/ar.json5 | 6 +- src/assets/i18n/ca.json5 | 18 + src/assets/i18n/cs.json5 | 362 ++-- src/assets/i18n/el.json5 | 1 + src/assets/i18n/en.json5 | 22 +- src/assets/i18n/es.json5 | 24 +- src/assets/i18n/fi.json5 | 18 + src/assets/i18n/fr.json5 | 1725 +---------------- src/assets/i18n/hi.json5 | 2 + src/assets/i18n/hu.json5 | 23 + src/assets/i18n/it.json5 | 22 +- src/assets/i18n/kk.json5 | 15 +- src/assets/i18n/nl.json5 | 12 - src/assets/i18n/pl.json5 | 6 + src/assets/i18n/pt-BR.json5 | 24 +- src/assets/i18n/pt-PT.json5 | 18 + src/assets/i18n/sr-cyr.json5 | 6 + src/assets/i18n/sr-lat.json5 | 6 + src/assets/i18n/vi.json5 | 8 +- 22 files changed, 398 insertions(+), 1958 deletions(-) diff --git a/src/app/access-control/group-registry/group-form/members-list/members-list.component.ts b/src/app/access-control/group-registry/group-form/members-list/members-list.component.ts index c6292e77fb1..d924160f0f7 100644 --- a/src/app/access-control/group-registry/group-form/members-list/members-list.component.ts +++ b/src/app/access-control/group-registry/group-form/members-list/members-list.component.ts @@ -370,9 +370,9 @@ export class MembersListComponent implements OnInit, OnDestroy { } /** - * Search all EPeople who are a member of the current group by name, email or metadata - * @param data Contains query param - */ + * Search all EPeople who are a member of the current group by name, email or metadata + * @param data Contains query param + */ searchMembers(data: any) { this.unsubFrom(SubKey.Members); this.subs.set(SubKey.Members, @@ -463,6 +463,6 @@ export class MembersListComponent implements OnInit, OnDestroy { this.searchCurrentMembersForm.patchValue({ queryCurrentMembers:'', }); - this.searchMembers({queryCurrentMembers: ''}); + this.searchMembers({ queryCurrentMembers: '' }); } } diff --git a/src/app/core/eperson/eperson-data.service.ts b/src/app/core/eperson/eperson-data.service.ts index 854c5c54c83..9df7fc36243 100644 --- a/src/app/core/eperson/eperson-data.service.ts +++ b/src/app/core/eperson/eperson-data.service.ts @@ -241,7 +241,7 @@ export class EPersonDataService extends IdentifiableDataService impleme return this.searchBy('isNotMemberOf', findListOptions, useCachedVersionIfAvailable, reRequestOnStale, ...linksToFollow); } - /** + /** * Searches for all EPerons which are a member of a given group, via a passed in query * (searches all EPerson metadata and by exact UUID). * Endpoint used: /eperson/epesons/search/isMemberOf?query=<:string>&group=<:uuid> @@ -255,19 +255,19 @@ export class EPersonDataService extends IdentifiableDataService impleme * @param linksToFollow List of {@link FollowLinkConfig} that indicate which * {@link HALLink}s should be automatically resolved */ - public searchMembers(query: string, group: string, options?: FindListOptions, useCachedVersionIfAvailable = true, reRequestOnStale = true, ...linksToFollow: FollowLinkConfig[]): Observable>> { - const searchParams = [new RequestParam('query', query), new RequestParam('group', group)]; - let findListOptions = new FindListOptions(); - if (options) { - findListOptions = Object.assign(new FindListOptions(), options); - } - if (findListOptions.searchParams) { - findListOptions.searchParams = [...findListOptions.searchParams, ...searchParams]; - } else { - findListOptions.searchParams = searchParams; - } - return this.searchBy('isMemberOf', findListOptions, useCachedVersionIfAvailable, reRequestOnStale, ...linksToFollow); + public searchMembers(query: string, group: string, options?: FindListOptions, useCachedVersionIfAvailable = true, reRequestOnStale = true, ...linksToFollow: FollowLinkConfig[]): Observable>> { + const searchParams = [new RequestParam('query', query), new RequestParam('group', group)]; + let findListOptions = new FindListOptions(); + if (options) { + findListOptions = Object.assign(new FindListOptions(), options); } + if (findListOptions.searchParams) { + findListOptions.searchParams = [...findListOptions.searchParams, ...searchParams]; + } else { + findListOptions.searchParams = searchParams; + } + return this.searchBy('isMemberOf', findListOptions, useCachedVersionIfAvailable, reRequestOnStale, ...linksToFollow); + } /** * Add a new patch to the object cache diff --git a/src/app/workflowitems-edit-page/advanced-workflow-action/advanced-workflow-action-select-reviewer/reviewers-list/reviewers-list.component.ts b/src/app/workflowitems-edit-page/advanced-workflow-action/advanced-workflow-action-select-reviewer/reviewers-list/reviewers-list.component.ts index 5ae3a13f313..bc0948cf4da 100644 --- a/src/app/workflowitems-edit-page/advanced-workflow-action/advanced-workflow-action-select-reviewer/reviewers-list/reviewers-list.component.ts +++ b/src/app/workflowitems-edit-page/advanced-workflow-action/advanced-workflow-action-select-reviewer/reviewers-list/reviewers-list.component.ts @@ -112,6 +112,10 @@ export class ReviewersListComponent extends MembersListComponent implements OnIn scope: 'metadata', query: '', })); + + this.searchCurrentMembersForm = this.formBuilder.group(({ + queryCurrentMembers: '', + })); } ngOnChanges(changes: SimpleChanges): void { diff --git a/src/assets/i18n/ar.json5 b/src/assets/i18n/ar.json5 index c4945e455b7..fd22ec4d1b0 100644 --- a/src/assets/i18n/ar.json5 +++ b/src/assets/i18n/ar.json5 @@ -507,12 +507,11 @@ // "admin.access-control.epeople.form.notification.deleted.success": "Successfully deleted EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.deleted.success": "تم حذف الشخص الإلكتروني \"{{name}}\"بنجاح", - //"admin.access-control.epeople.form.notification.deleted.failure": "فشل في حذف الهاتف الإلكتروني \"{{name}}\"", // "admin.access-control.epeople.form.notification.deleted.failure": "Failed to delete EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.deleted.failure": "فشل حذف الشخص الإلكتروني \"{{name}}\"", "admin.access-control.epeople.form.notification.failure.noActiveEPerson": "لا يوجد شخص إلكتروني نشط حاليًا", "admin.access-control.epeople.form.notification.success.deleteMembership": "العضوية المحذوفة من المجموعة: \"{{name}}\"", - "admin.access-control.epeople.form.notification.failure.deleteMembership": "لا يمكن حذف العضوية من المجموعة: \"{{name}}\ + "admin.access-control.epeople.form.notification.failure.deleteMembership": "لا يمكن حذف العضوية من المجموعة: \"{{name}}\"", // "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "Member of these groups:", "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "عضو في هذه المجموعات:", @@ -522,8 +521,7 @@ // "admin.access-control.epeople.form.table.name": "Name", "admin.access-control.epeople.form.table.name": "الاسم", - - //"admin.access-control.epeople.form.table.collectionOrCommunity": "الحاوية/المجتمع", + // "admin.access-control.epeople.form.table.collectionOrCommunity": "Collection/Community", "admin.access-control.epeople.form.table.collectionOrCommunity": "حاوية/مجتمع", "admin.access-control.epeople.form.table.remove": "يزيل", diff --git a/src/assets/i18n/ca.json5 b/src/assets/i18n/ca.json5 index 5c36d3af961..130175e61cf 100644 --- a/src/assets/i18n/ca.json5 +++ b/src/assets/i18n/ca.json5 @@ -2244,6 +2244,12 @@ // "cookies.consent.app.required.title": "(always required)", "cookies.consent.app.required.title": "(sempre requerit)", + // "cookies.consent.app.disable-all.description": "Use this switch to enable or disable all services.", + "cookies.consent.app.disable-all.description": "Utilitzeu aquest camp per activar o desactivar tots els serveis.", + + // "cookies.consent.app.disable-all.title": "Enable or disable all services", + "cookies.consent.app.disable-all.title": "Activar o desactivar tots els serveis", + // "cookies.consent.update": "There were changes since your last visit, please update your consent.", "cookies.consent.update": "Hi ha hagut canvis des de la darrera visita, si us plau, actualitzeu el vostre consentiment.", @@ -2259,9 +2265,15 @@ // "cookies.consent.save": "Save", "cookies.consent.save": "Guardar", + // "cookies.consent.content-notice.title": "Cookie Consent", + "cookies.consent.content-notice.title": "Cookie Consent", + // "cookies.consent.content-notice.description": "We collect and process your personal information for the following purposes: Authentication, Preferences, Acknowledgement and Statistics.
To learn more, please read our {privacyPolicy}.", "cookies.consent.content-notice.description": "Recopilem i processem la vostra informació personal amb les finalitats següents: Autenticació, Preferències, Reconeixement i Estadístiques.
Per obtenir més informació, llegiu la nostra {privacyPolicy}.", + // "cookies.consent.content-notice.description.no-privacy": "We collect and process your personal information for the following purposes: Authentication, Preferences, Acknowledgement and Statistics.", + "cookies.consent.content-notice.description.no-privacy": "Recopilem i processem la vostra informació personal per als següents propòsits: Autenticació, Preferències, Reconeixement i Estadístiques.", + // "cookies.consent.content-notice.learnMore": "Customize", "cookies.consent.content-notice.learnMore": "Personalitzar", @@ -2277,6 +2289,12 @@ // "cookies.consent.content-modal.title": "Information that we collect", "cookies.consent.content-modal.title": "Informació que recopilem", + // "cookies.consent.content-modal.services": "services", + "cookies.consent.content-modal.services": "serveis", + + // "cookies.consent.content-modal.service": "service", + "cookies.consent.content-modal.service": "servei", + // "cookies.consent.app.title.authentication": "Authentication", "cookies.consent.app.title.authentication": "Autenticació", diff --git a/src/assets/i18n/cs.json5 b/src/assets/i18n/cs.json5 index a60dcc2ed24..43b76b21ac1 100644 --- a/src/assets/i18n/cs.json5 +++ b/src/assets/i18n/cs.json5 @@ -13,7 +13,7 @@ "403.help": "Nemáte povolení k přístupu na tuto stránku. Pro návrat na domovskou stránku můžete použít tlačítko níže.", // "403.link.home-page": "Take me to the home page", - "403.link.home-page": "Návrat na domovskou stránku", + "403.link.home-page": "Přesměrujte mě na domovskou stránku", // "403.forbidden": "Forbidden", "403.forbidden": "Přístup zakázán", @@ -46,7 +46,7 @@ "error-page.description.500": "Služba je nedostupná", // "error-page.description.404": "Page not found", - "error-page.description.404": "Stránka nebyla nalezena", + "error-page.description.404": "Stránka nebyla nenalezena", // "error-page.orcid.generic-error": "An error occurred during login via ORCID. Make sure you have shared your ORCID account email address with DSpace. If the error persists, contact the administrator", "error-page.orcid.generic-error": "Při přihlašování přes ORCID došlo k chybě. Ujistěte se, že jste sdíleli e-mailovou adresu připojenou ke svému účtu ORCID s DSpace. Pokud chyba přetrvává, kontaktujte správce", @@ -67,13 +67,13 @@ "access-status.unknown.listelement.badge": "Status neznámý", // "admin.curation-tasks.breadcrumbs": "System curation tasks", - "admin.curation-tasks.breadcrumbs": "Systémové úlohy správy", + "admin.curation-tasks.breadcrumbs": "Kurátorská úloha systému", // "admin.curation-tasks.title": "System curation tasks", - "admin.curation-tasks.title": "Systémové úlohy správy", + "admin.curation-tasks.title": "Kurátorská úloha systému", // "admin.curation-tasks.header": "System curation tasks", - "admin.curation-tasks.header": "Systémové úlohy správy", + "admin.curation-tasks.header": "Kurátorská úloha systému", // "admin.registries.bitstream-formats.breadcrumbs": "Format registry", "admin.registries.bitstream-formats.breadcrumbs": "Registr formátů", @@ -172,7 +172,7 @@ "admin.registries.bitstream-formats.edit.supportLevel.label": "Úroveň podpory", // "admin.registries.bitstream-formats.head": "Bitstream Format Registry", - "admin.registries.bitstream-formats.head": "Registr formátů souboru", + "admin.registries.bitstream-formats.head": "Registr formátu souboru", // "admin.registries.bitstream-formats.no-items": "No bitstream formats to show.", "admin.registries.bitstream-formats.no-items": "Žádné formáty souboru k zobrazení.", @@ -373,7 +373,7 @@ "admin.access-control.bulk-access.breadcrumbs": "Hromadná správa přístupu", // "administrativeBulkAccess.search.results.head": "Search Results", - "administrativeBulkAccess.search.results.head": "Výsledky vyhledávání", + "administrativeBulkAccess.search.results.head": "Prohledávat výsledky", // "admin.access-control.bulk-access": "Bulk Access Management", "admin.access-control.bulk-access": "Hromadná správa přístupu", @@ -403,7 +403,7 @@ "admin.access-control.epeople.actions.reset": "Resetovat heslo", // "admin.access-control.epeople.actions.stop-impersonating": "Stop impersonating EPerson", - "admin.access-control.epeople.actions.stop-impersonating": "Přestat vystupovat jako jiný uživatel", + "admin.access-control.epeople.actions.stop-impersonating": "Přestat simulovat jiného uživatele", // "admin.access-control.epeople.breadcrumbs": "EPeople", "admin.access-control.epeople.breadcrumbs": "Uživatelé", @@ -624,7 +624,7 @@ "admin.access-control.groups.table.edit.buttons.remove": "Odstranit \"{{name}}\"", // "admin.access-control.groups.no-items": "No groups found with this in their name or this as UUID", - "admin.access-control.groups.no-items": "Nebyla nalezena žádná skupina s tímto v návzvu nebo UUID", + "admin.access-control.groups.no-items": "Nebyly nalezeny žádné skupiny, které by měly toto ve svém názvu nebo toto jako UUID,", // "admin.access-control.groups.notification.deleted.success": "Successfully deleted group \"{{name}}\"", "admin.access-control.groups.notification.deleted.success": "Úspěšně odstraněna skupina \"{{name}}\"", @@ -708,7 +708,7 @@ "admin.access-control.groups.form.members-list.button.see-all": "Procházet vše", // "admin.access-control.groups.form.members-list.headMembers": "Current Members", - "admin.access-control.groups.form.members-list.headMembers": "Současní členové", + "admin.access-control.groups.form.members-list.headMembers": "Aktuální členové", // "admin.access-control.groups.form.members-list.search.button": "Search", "admin.access-control.groups.form.members-list.search.button": "Hledat", @@ -750,13 +750,13 @@ "admin.access-control.groups.form.members-list.table.edit.buttons.add": "Přidat člena jménem \"{{name}}\"", // "admin.access-control.groups.form.members-list.notification.failure.noActiveGroup": "No current active group, submit a name first.", - "admin.access-control.groups.form.members-list.notification.failure.noActiveGroup": "Žádná aktuální aktivní skupina, nejprve zadejte název.", + "admin.access-control.groups.form.members-list.notification.failure.noActiveGroup": "Žádná aktuální aktivní skupina, nejprve zadejte jméno.", // "admin.access-control.groups.form.members-list.no-members-yet": "No members in group yet, search and add.", "admin.access-control.groups.form.members-list.no-members-yet": "Ve skupině zatím nejsou žádní členové, vyhledejte je a přidejte.", // "admin.access-control.groups.form.members-list.no-items": "No EPeople found in that search", - "admin.access-control.groups.form.members-list.no-items": "V tomto vyhledávání nebyli nalezeni žádní uživatelé", + "admin.access-control.groups.form.members-list.no-items": "V tomto vyhledávání nebyly nalezeni žádní uživatelé", // "admin.access-control.groups.form.subgroups-list.notification.failure": "Something went wrong: \"{{cause}}\"", "admin.access-control.groups.form.subgroups-list.notification.failure": "Neúspěch: Něco se pokazilo: \"{{cause}}\"", @@ -813,7 +813,7 @@ "admin.access-control.groups.form.subgroups-list.notification.failure.subgroupToAddIsActiveGroup": "Toto je aktuální skupina, nelze přidat.", // "admin.access-control.groups.form.subgroups-list.no-items": "No groups found with this in their name or this as UUID", - "admin.access-control.groups.form.subgroups-list.no-items": "Nebyla nalezena žádná skupina s tímto v návzvu nebo UUID", + "admin.access-control.groups.form.subgroups-list.no-items": "Nebyly nalezeny žádné skupiny, které by měly toto ve svém názvu nebo toto UUID", // "admin.access-control.groups.form.subgroups-list.no-subgroups-yet": "No subgroups in group yet.", "admin.access-control.groups.form.subgroups-list.no-subgroups-yet": "Ve skupině zatím nejsou žádné podskupiny.", @@ -843,7 +843,7 @@ "admin.notifications.source.breadcrumbs": "Quality Assurance", // "admin.access-control.groups.form.tooltip.editGroupPage": "On this page, you can modify the properties and members of a group. In the top section, you can edit the group name and description, unless this is an admin group for a collection or community, in which case the group name and description are auto-generated and cannot be edited. In the following sections, you can edit group membership. See [the wiki](https://wiki.lyrasis.org/display/DSDOC7x/Create+or+manage+a+user+group) for more details.", - "admin.access-control.groups.form.tooltip.editGroupPage": "Na této stránce můžete upravit vlastnosti a členy skupiny. V horní části můžete upravit název a popis skupiny, pokud se nejedá o skupinu admin pro kolekci nebo komunitu. V takovém případě jsou název a popis skupiny vygenerovány automaticky a nelze je upravovat. V následujících částech můžete upravovat členství ve skupině. Další podrobnosti naleznete v části [wiki](https://wiki.lyrasis.org/display/DSDOC7x/Create+or+manage+a+user+group).", + "admin.access-control.groups.form.tooltip.editGroupPage": "Na této stránce můžete upravit vlastnosti a členy skupiny. V horní části můžete upravit název a popis skupiny, pokud se nejedá o skupinu admin pro kolekci nebo komunitu. V takovém případě jsou název a popis skupiny vygenerovány automaticky a nelze je upravovat. V následujících částech můžete upravovat členství ve skupině. Další podrobnosti naleznete v části [the wiki](https://wiki.lyrasis.org/display/DSDOC7x/Create+or+manage+a+user+group).", // "admin.access-control.groups.form.tooltip.editGroup.addEpeople": "To add or remove an EPerson to/from this group, either click the 'Browse All' button or use the search bar below to search for users (use the dropdown to the left of the search bar to choose whether to search by metadata or by email). Then click the plus icon for each user you wish to add in the list below, or the trash can icon for each user you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages.", "admin.access-control.groups.form.tooltip.editGroup.addEpeople": "Pro přidání nebo odebrání uživatele z této skupiny, buď klikněte na „Prohledávat všechny“ nebo použijte vyhledávací okno pro vyhledání uživatele (použijte roletku na levé straně vyhledávacího okna a vyberte, zda chcete prohledávat pomocí metadat nebo e-mailu). Potom klikněte na tlačítko plus u každého uživatele, kterého chcete přidat, nebo na ikonu odpadkového koše u každého uživatele, kterého chcete odebrat. Seznam níže může obsahovat několik stránek: k přechodu na další stránku použijte ovládací prvky pod seznamem. Až budete hotovi, uložte změny pomocí tlačítka „Uložit“ v horní části.", @@ -1418,7 +1418,7 @@ "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.button.see-all": "Prohledávat vše", // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.headMembers": "Current Members", - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.headMembers": "Současní členové", + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.headMembers": "Aktuální členové", // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.button": "Search", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.button": "Hledat", @@ -1460,7 +1460,7 @@ "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.add": "Přidat uživatele jménem \"{{name}}\"", // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.noActiveGroup": "No current active group, submit a name first.", - "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.noActiveGroup": "Žádná aktuální aktivní skupina, nejprve zadejte název.", + "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.noActiveGroup": "Žádná aktivní skupina, nejdříve vložte název.", // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-members-yet": "No members in group yet, search and add.", "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-members-yet": "Žádní členové ve skupině, nejdříve vyhledejte a přidejte.", @@ -1487,10 +1487,10 @@ "auth.messages.token-refresh-failed": "Nepodařilo se obnovit váš přístupový token. Prosím přihlašte se znovu.", // "bitstream.download.page": "Now downloading {{bitstream}}...", - "bitstream.download.page": "Nyní se stahuje {{bitstream}}...", + "bitstream.download.page": "Nyní se stahuje {{bitstream}}..." , // "bitstream.download.page.back": "Back", - "bitstream.download.page.back": "Zpět", + "bitstream.download.page.back": "Zpět" , // "bitstream.edit.authorizations.link": "Edit bitstream's Policies", "bitstream.edit.authorizations.link": "Upravit politiky souboru", @@ -1804,7 +1804,7 @@ "claimed-approved-search-result-list-element.title": "Schváleno", // "claimed-declined-search-result-list-element.title": "Rejected, sent back to submitter", - "claimed-declined-search-result-list-element.title": "Zamítnuto, posláno zpět odesílateli", + "claimed-declined-search-result-list-element.title": "Zamítnuto, posláno zpět vkladateli", // "claimed-declined-task-search-result-list-element.title": "Declined, sent back to Review Manager's workflow", "claimed-declined-task-search-result-list-element.title": "Zamítnuto, posláno zpět správci schvalovacího workflow", @@ -1827,7 +1827,7 @@ "collection.create.sub-head": "Vytvořit kolekci pro komunitu {{ parent }}", // "collection.curate.header": "Curate Collection: {{collection}}", - "collection.curate.header": "Spravovat kolekci: {{collection}}", + "collection.curate.header": "Kurátorovat kolekci: {{collection}}", // "collection.delete.cancel": "Cancel", "collection.delete.cancel": "Zrušit", @@ -1935,7 +1935,7 @@ "collection.edit.logo.notifications.add.success": "Nahrání loga kolekce proběhlo úspěšně.", // "collection.edit.logo.notifications.delete.success.title": "Logo deleted", - "collection.edit.logo.notifications.delete.success.title": "Logo smazáno", + "collection.edit.logo.notifications.delete.success.title": "Logo odstraněno", // "collection.edit.logo.notifications.delete.success.content": "Successfully deleted the collection's logo", "collection.edit.logo.notifications.delete.success.content": "Úspěšně odstraněno logo kolekce", @@ -1960,10 +1960,10 @@ "collection.edit.tabs.access-control.title": "Úprava kolekce - Řízení přístupu", // "collection.edit.tabs.curate.head": "Curate", - "collection.edit.tabs.curate.head": "Spravovat", + "collection.edit.tabs.curate.head": "Kurátorovat", // "collection.edit.tabs.curate.title": "Collection Edit - Curate", - "collection.edit.tabs.curate.title": "Upravit kolekci - správa", + "collection.edit.tabs.curate.title": "Upravit kolekci - kurátorovat", // "collection.edit.tabs.authorizations.head": "Authorizations", "collection.edit.tabs.authorizations.head": "Oprávnění", @@ -2026,7 +2026,7 @@ "collection.edit.tabs.source.head": "Zdroj obsahu", // "collection.edit.tabs.source.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button", - "collection.edit.tabs.source.notifications.discarded.content": "Vaše změny byly zahozeny. Pro obnovení změn klikněte na tlačítko 'Vrátit změny'", + "collection.edit.tabs.source.notifications.discarded.content": "Vaše změny byly vyřazeny. Chcete-li své změny obnovit, klikněte na tlačítko Zpět", // "collection.edit.tabs.source.notifications.discarded.title": "Changes discarded", // TODO Source message changed - Revise the translation @@ -2036,7 +2036,7 @@ "collection.edit.tabs.source.notifications.invalid.content": "Vaše změny nebyly uloženy. Před uložením se prosím ujistěte, že jsou všechna pole platná.", // "collection.edit.tabs.source.notifications.invalid.title": "Metadata invalid", - "collection.edit.tabs.source.notifications.invalid.title": "Neplatná metadata", + "collection.edit.tabs.source.notifications.invalid.title": "Metadata neplatná", // "collection.edit.tabs.source.notifications.saved.content": "Your changes to this collection's content source were saved.", "collection.edit.tabs.source.notifications.saved.content": "Vaše změny ve zdroji obsahu této kolekce byly uloženy.", @@ -2222,12 +2222,13 @@ "collection.source.controls.harvest.last": "Naposledy harvestováno:", // "collection.source.controls.harvest.message": "Harvest info:", - "collection.source.controls.harvest.message": "Informace o harvestu:", + "collection.source.controls.harvest.message": "Informace o harevstu:", + // "collection.source.controls.harvest.no-information": "N/A", "collection.source.controls.harvest.no-information": "Není k dispozi", // "collection.source.update.notifications.error.content": "The provided settings have been tested and didn't work.", - "collection.source.update.notifications.error.content": "Zadané nastavení bylo otestováno a nefungovalo.", + "collection.source.update.notifications.error.content": "Zadané nastavení bylo testováno a nefungovalo.", // "collection.source.update.notifications.error.title": "Server Error", "collection.source.update.notifications.error.title": "Chyba serveru", @@ -2271,10 +2272,10 @@ "community.create.notifications.success": "Úspěšně vytvořena komunita", // "community.create.sub-head": "Create a Sub-Community for Community {{ parent }}", - "community.create.sub-head": "Vytvořit podkomunitu v komunitě {{ parent }}", + "community.create.sub-head": "Vytvořit dílčí komunitu pro komunitu {{ parent }}", // "community.curate.header": "Curate Community: {{community}}", - "community.curate.header": "Spravovat komunitu: {{ community }}", + "community.curate.header": "Kurátorství komunity: {{ community }}", // "community.delete.cancel": "Cancel", "community.delete.cancel": "Zrušit", @@ -2307,7 +2308,7 @@ "community.edit.breadcrumbs": "Upravit komunitu", // "community.edit.logo.delete.title": "Delete logo", - "community.edit.logo.delete.title": "Smazat logo", + "community.edit.logo.delete.title": "Odstranit logo", // "community.edit.logo.delete-undo.title": "Undo delete", "community.edit.logo.delete-undo.title": "Zrušit odstranění", @@ -2322,7 +2323,7 @@ "community.edit.logo.notifications.add.success": "Nahrání loga komunity proběhlo úspěšně.", // "community.edit.logo.notifications.delete.success.title": "Logo deleted", - "community.edit.logo.notifications.delete.success.title": "Logo smazáno", + "community.edit.logo.notifications.delete.success.title": "Logo odstraněno", // "community.edit.logo.notifications.delete.success.content": "Successfully deleted the community's logo", "community.edit.logo.notifications.delete.success.content": "Úspěšně odstraněno logo komunity", @@ -2347,10 +2348,10 @@ "community.edit.return": "Zpět", // "community.edit.tabs.curate.head": "Curate", - "community.edit.tabs.curate.head": "Spravovat", + "community.edit.tabs.curate.head": "Kurátorovat", // "community.edit.tabs.curate.title": "Community Edit - Curate", - "community.edit.tabs.curate.title": "Upravit komunitu - správa", + "community.edit.tabs.curate.title": "Upravit komunitu - kurátorovat", // "community.edit.tabs.access-control.head": "Access Control", "community.edit.tabs.access-control.head": "Řízení přístupu", @@ -2408,13 +2409,13 @@ "comcol-role.edit.collection-admin.name": "Správci", // "comcol-role.edit.community-admin.description": "Community administrators can create sub-communities or collections, and manage or assign management for those sub-communities or collections. In addition, they decide who can submit items to any sub-collections, edit item metadata (after submission), and add (map) existing items from other collections (subject to authorization).", - "comcol-role.edit.community-admin.description": "Administrátoři komunit mohou vytvářet podkomunity nebo kolekce a spravovat nebo přidělovat správu těmto podkomunitám nebo kolekcím. Kromě toho rozhodují o tom, kdo může odesílat záznamy do všech podkolekcí, upravovat metadata záznamů (po odeslání) a přidávat (mapovat) existující záznamy z jiných kolekcí (na základě oprávnění).", + "comcol-role.edit.community-admin.description": "Správci komunit mohou vytvářet dílčí komunity nebo kolekce a spravovat nebo přidělovat správu těmto dílčím komunitám nebo kolekcím. Kromě toho rozhodují o tom, kdo může odesílat záznamy do všech dílčích kolekcí, upravovat metadata záznamů (po odeslání) a přidávat (mapovat) existující záznamy z jiných kolekcí (na základě oprávnění).", // "comcol-role.edit.collection-admin.description": "Collection administrators decide who can submit items to the collection, edit item metadata (after submission), and add (map) existing items from other collections to this collection (subject to authorization for that collection).", "comcol-role.edit.collection-admin.description": "Správci kolekcí rozhodují o tom, kdo může do kolekce vkládat záznamy, upravovat metadata záznamů (po vložení) a přidávat (mapovat) existující záznamy z jiných kolekcí do této kolekce (podléhá autorizaci pro danou kolekci).", // "comcol-role.edit.submitters.name": "Submitters", - "comcol-role.edit.submitters.name": "Odesílatelé", + "comcol-role.edit.submitters.name": "Vkladatelé", // "comcol-role.edit.submitters.description": "The E-People and Groups that have permission to submit new items to this collection.", "comcol-role.edit.submitters.description": "Uživatelé a skupiny, které mají oprávnění ke vkládání nových záznamů do této kolekce.", @@ -2433,7 +2434,7 @@ // "comcol-role.edit.bitstream_read.description": "E-People and Groups that can read new bitstreams submitted to this collection. Changes to this role are not retroactive. Existing bitstreams in the system will still be viewable by those who had read access at the time of their addition.", // TODO Source message changed - Revise the translation - "comcol-role.edit.bitstream_read.description": "Správci komunit mohou vytvářet podkomunity nebo kolekce a spravovat nebo přidělovat správu těmto podkomunitám nebo kolekcím. Kromě toho rozhodují o tom, kdo může odesílat záznamy do libovolných podkolekcí, upravovat metadata záznamů (po odeslání) a přidávat (mapovat) existující záznamy z jiných kolekcí (na základě oprávnění).", + "comcol-role.edit.bitstream_read.description": "Správci komunit mohou vytvářet dílčí komunity nebo kolekce a spravovat nebo přidělovat správu těmto dílčím komunitám nebo kolekcím. Kromě toho rozhodují o tom, kdo může odesílat záznamy do libovolných dílčích kolekcí, upravovat metadata záznamů (po odeslání) a přidávat (mapovat) existující záznamy z jiných kolekcí (na základě oprávnění).", // "comcol-role.edit.bitstream_read.anonymous-group": "Default read for incoming bitstreams is currently set to Anonymous.", "comcol-role.edit.bitstream_read.anonymous-group": "Výchozí čtení pro příchozí soubory je v současné době nastaveno na hodnotu Anonymní.", @@ -2472,7 +2473,7 @@ "community.form.errors.title.required": "Zadejte název komunity", // "community.form.rights": "Copyright text (HTML)", - "community.form.rights": "Copyright (HTML)", + "community.form.rights": "Text autorských práv (HTML)", // "community.form.tableofcontents": "News (HTML)", "community.form.tableofcontents": "Novinky (HTML)", @@ -2493,7 +2494,7 @@ "community.page.news": "Novinky", // "community.all-lists.head": "Subcommunities and Collections", - "community.all-lists.head": "Podkomunity a kolekce", + "community.all-lists.head": "Dílčí komunity a kolekce", // "community.search.results.head": "Search Results", // TODO New key - Add a translation @@ -2528,6 +2529,12 @@ // "cookies.consent.app.required.title": "(always required)", "cookies.consent.app.required.title": "(vždy vyžadováno)", + // "cookies.consent.app.disable-all.description": "Use this switch to enable or disable all services.", + "cookies.consent.app.disable-all.description": "Pomocí tohoto přepínače povolíte nebo zakážete všechny služby.", + + // "cookies.consent.app.disable-all.title": "Enable or disable all services", + "cookies.consent.app.disable-all.title": "Povolit nebo zakázat všechny služby.", + // "cookies.consent.update": "There were changes since your last visit, please update your consent.", "cookies.consent.update": "Od vaší poslední návštěvy došlo ke změnám, aktualizujte prosím svůj souhlas.", @@ -2543,9 +2550,15 @@ // "cookies.consent.save": "Save", "cookies.consent.save": "Uložit", + // "cookies.consent.content-notice.title": "Cookie Consent", + "cookies.consent.content-notice.title": "Souhlas se soubory Cookie", + // "cookies.consent.content-notice.description": "We collect and process your personal information for the following purposes: Authentication, Preferences, Acknowledgement and Statistics.
To learn more, please read our {privacyPolicy}.", "cookies.consent.content-notice.description": "Vaše osobní údaje shromažďujeme a zpracováváme pro následující účely: Ověření, Preference, Potvrzení a Statistiky.
Chcete-li se dozvědět více, přečtěte si prosím naše {privacyPolicy}.", + // "cookies.consent.content-notice.description.no-privacy": "We collect and process your personal information for the following purposes: Authentication, Preferences, Acknowledgement and Statistics.", + "cookies.consent.content-notice.description.no-privacy": "Vaše osobní údaje shromažďujeme a zpracováváme pro následující účely: Ověření, Preference, Potvrzení a Statistiky. Využíváme osobní údaje pro tyto účely:", + // "cookies.consent.content-notice.learnMore": "Customize", "cookies.consent.content-notice.learnMore": "Přizpůsobit", @@ -2561,6 +2574,12 @@ // "cookies.consent.content-modal.title": "Information that we collect", "cookies.consent.content-modal.title": "Informace, které shromažďujeme", + // "cookies.consent.content-modal.services": "services", + "cookies.consent.content-modal.services": "služby", + + // "cookies.consent.content-modal.service": "service", + "cookies.consent.content-modal.service": "služba", + // "cookies.consent.app.title.authentication": "Authentication", "cookies.consent.app.title.authentication": "Ověřování", @@ -2634,16 +2653,16 @@ "curation.form.submit": "Start", // "curation.form.submit.success.head": "The curation task has been started successfully", - "curation.form.submit.success.head": "Úloha správy byla úspěšně spuštěna", + "curation.form.submit.success.head": "Kurátorská úloha byla úspěšně spuštěna", // "curation.form.submit.success.content": "You will be redirected to the corresponding process page.", "curation.form.submit.success.content": "Budete přesměrováni na příslušnou stránku procesu.", // "curation.form.submit.error.head": "Running the curation task failed", - "curation.form.submit.error.head": "Spuštění úlohy správy se nezdařilo.", + "curation.form.submit.error.head": "Spuštění kurátorské úlohy se nezdařilo.", // "curation.form.submit.error.content": "An error occured when trying to start the curation task.", - "curation.form.submit.error.content": "Při pokusu o spuštění úlohy správy došlo k chybě.", + "curation.form.submit.error.content": "Při pokusu o spuštění kurátorské úlohy došlo k chybě.", // "curation.form.submit.error.invalid-handle": "Couldn't determine the handle for this object", "curation.form.submit.error.invalid-handle": "Nepodařilo se určit handle pro tento objekt", @@ -2696,7 +2715,7 @@ "dso-selector.create.community.head": "Nová komunita", // "dso-selector.create.community.or-divider": "or", - "dso-selector.create.community.or-divider": "nebo", + "dso-selector.create.community.or-divider": "or", // "dso-selector.create.community.sub-level": "Create a new community in", "dso-selector.create.community.sub-level": "Vytvořit novou komunitu v", @@ -2921,10 +2940,10 @@ "error.invalid-search-query": "Vyhledávací dotaz není platný. Další informace o této chybě naleznete v osvědčených postupech Solr query syntax.", // "error.sub-collections": "Error fetching sub-collections", - "error.sub-collections": "Chyba při načítání podkolekcí", + "error.sub-collections": "Chyba při načítání dílčích kolekcí", // "error.sub-communities": "Error fetching sub-communities", - "error.sub-communities": "Chyba při načítání podkomunit", + "error.sub-communities": "Chyba při načítání dílčích komunit", // "error.submission.sections.init-form-error": "An error occurred during section initialize, please check your input-form configuration. Details are below :

", "error.submission.sections.init-form-error": "Při inicializaci sekce došlo k chybě, zkontrolujte prosím konfiguraci vstupního formuláře. Podrobnosti jsou uvedeny níže :

", @@ -2933,7 +2952,7 @@ "error.top-level-communities": "Chyba při načítání komunit nejvyšší úrovně", // "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.", - "error.validation.license.notgranted": "Bez udělení licence nelze záznam dokončit. Pokud v tuto chvíli nemůžete licenci udělit, uložte svou práci a vraťte se k příspěvku později nebo jej smažte.", + "error.validation.license.notgranted": "eslání. Pokud tuto licenci v tuto chvíli nemůžete udělit, můžete svou práci uložit a vrátit se k ní později nebo podání odstranit.", // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.", "error.validation.pattern": "Toto zadání je omezeno aktuálním vzorcem: {{ pattern }}.", @@ -3038,7 +3057,7 @@ "forgot-email.form.success.head": "E-mail pro obnovení hesla odeslán", // "forgot-email.form.success.content": "An email has been sent to {{ email }} containing a special URL and further instructions.", - "forgot-email.form.success.content": "Na adresu {{ email }} byl odeslán e-mail obsahující speciální URL a další instrukce.", + "forgot-email.form.success.content": "Na adresu {{ email }} byl odeslán e-mail obsahující speciální adresu URL a další pokyny.", // "forgot-email.form.error.head": "Error when trying to reset password", // TODO Source message changed - Revise the translation @@ -3236,7 +3255,7 @@ "grant-deny-request-copy.header": "Žádost o kopii dokumentu", // "grant-deny-request-copy.home-page": "Take me to the home page", - "grant-deny-request-copy.home-page": "Návrat na domovskou stránku", + "grant-deny-request-copy.home-page": "Přesměrujte mne na domovskou stránku", // "grant-deny-request-copy.intro1": "If you are one of the authors of the document {{ name }}, then please use one of the options below to respond to the user's request.", "grant-deny-request-copy.intro1": "Pokud jste jedním z autorů dokumentu {{ name }}, použijte prosím jednu z níže uvedených možností, abyste odpověděli na žádost uživatele.", @@ -3245,7 +3264,7 @@ "grant-deny-request-copy.intro2": "Po výběru možnosti se zobrazí návrh e-mailové odpovědi, který můžete upravit.", // "grant-deny-request-copy.processed": "This request has already been processed. You can use the button below to get back to the home page.", - "grant-deny-request-copy.processed": "Tato žádost již byla zpracována. Pomocí níže uvedeného tlačítka se můžete vrátit na domovskou stránku.", + "grant-deny-request-copy.processed": " Tato žádost již byla zpracována. Pomocí níže uvedeného tlačítka se můžete vrátit na domovskou stránku.", // "grant-request-copy.email.subject": "Request copy of document", "grant-request-copy.email.subject": "Žádost o kopii dokumentu", @@ -3272,13 +3291,13 @@ "health-page.info-tab": "Informace", // "health-page.status-tab": "Status", - "health-page.status-tab": "Stav", + "health-page.status-tab": "Status", // "health-page.error.msg": "The health check service is temporarily unavailable", "health-page.error.msg": "Služba kontrolující stav systému je momentálně nedostupná.", // "health-page.property.status": "Status code", - "health-page.property.status": "Stavový kód", + "health-page.property.status": "Kód statusu", // "health-page.section.db.title": "Database", "health-page.section.db.title": "Databáze", @@ -3425,7 +3444,8 @@ "info.coar-notify-support.breadcrumbs": "COAR Notify Support", // "item.alerts.private": "This item is non-discoverable", - "item.alerts.private": "Tento záznam je nevyhledatelný", + // TODO Source message changed - Revise the translation + "item.alerts.private": "Tento záznam je nezobrazitelný", // "item.alerts.withdrawn": "This item has been withdrawn", "item.alerts.withdrawn": "Tento záznam byl stažen", @@ -3449,7 +3469,7 @@ "item.badge.private": "Nedohledatelné", // "item.badge.withdrawn": "Withdrawn", - "item.badge.withdrawn": "Vyřazeno", + "item.badge.withdrawn": "Zrušeno", // "item.bitstreams.upload.bundle": "Bundle", "item.bitstreams.upload.bundle": "Svazek", @@ -3537,10 +3557,10 @@ "item.edit.bitstreams.headers.name": "Název", // "item.edit.bitstreams.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button", - "item.edit.bitstreams.notifications.discarded.content": "Vaše změny byly zahozeny. Pro obnovení změn klikněte na tlačítko 'Vrátit změny'", + "item.edit.bitstreams.notifications.discarded.content": "Vaše změny byly zahozeny. Pro obnovení změn klikněte na tlačítko 'Undo'", // "item.edit.bitstreams.notifications.discarded.title": "Changes discarded", - "item.edit.bitstreams.notifications.discarded.title": "Zahozené změny", + "item.edit.bitstreams.notifications.discarded.title": "Změny zahozeny", // "item.edit.bitstreams.notifications.move.failed.title": "Error moving bitstreams", "item.edit.bitstreams.notifications.move.failed.title": "Chyba při přesunu souborů", @@ -3552,7 +3572,7 @@ "item.edit.bitstreams.notifications.move.saved.title": "Změny uloženy", // "item.edit.bitstreams.notifications.outdated.content": "The item you're currently working on has been changed by another user. Your current changes are discarded to prevent conflicts", - "item.edit.bitstreams.notifications.outdated.content": "Záznam, na kterém právě pracujete, byl změněn jiným uživatelem. Vaše aktuální změny byly zahozeny, aby se zabránilo konfliktům", + "item.edit.bitstreams.notifications.outdated.content": "Záznam, na které právě pracujete, byl změněn jiným uživatelem. Vaše aktuální změny jsou zahozeny, aby se zabránilo konfliktům", // "item.edit.bitstreams.notifications.outdated.title": "Changes outdated", "item.edit.bitstreams.notifications.outdated.title": "Změny jsou zastaralé", @@ -3645,13 +3665,13 @@ "item.edit.identifiers.doi.status.MINTED": "Vydáno (nezaregistrováno)", // "item.edit.tabs.status.buttons.register-doi.label": "Register a new or pending DOI", - "item.edit.tabs.status.buttons.register-doi.label": "Registrovat nové nebo čekající DOI", + "item.edit.tabs.status.buttons.register-doi.label": "Registrace nového nebo čekání na nové DOI", // "item.edit.tabs.status.buttons.register-doi.button": "Register DOI...", "item.edit.tabs.status.buttons.register-doi.button": "Zaregistrujte DOI...", // "item.edit.register-doi.header": "Register a new or pending DOI", - "item.edit.register-doi.header": "Registrovat nové nebo čekající DOI", + "item.edit.register-doi.header": "Zaregistrujte nové DOI nebo čekající k registraci", // "item.edit.register-doi.description": "Review any pending identifiers and item metadata below and click Confirm to proceed with DOI registration, or Cancel to back out", "item.edit.register-doi.description": "Níže zkontrolujte všechny identifikátory a metadata ve frontě. Zvolte \"Potvrdit\" pro pokračování v registraci DOI nebo \"Zrušit\" pro přerušení procesu.", @@ -3681,7 +3701,7 @@ "item.edit.item-mapper.cancel": "Zrušit", // "item.edit.item-mapper.description": "This is the item mapper tool that allows administrators to map this item to other collections. You can search for collections and map them, or browse the list of collections the item is currently mapped to.", - "item.edit.item-mapper.description": "Toto je nástroj pro mapování záznamů, který umožňuje správcům mapovat tento záznam do jiné kolekce. Můžete vyhledávat kolekce a mapovat je nebo procházet seznam kolekcí, ke kterým je záznam aktuálně mapována.", + "item.edit.item-mapper.description": "Toto je nástroj pro mapování záznamů, který umožňuje správcům mapovat tuto záznam na jiné kolekce. Můžete vyhledávat kolekce a mapovat je nebo procházet seznam kolekcí, ke kterým je záznam aktuálně mapována.", // "item.edit.item-mapper.head": "Item Mapper - Map Item to Collections", "item.edit.item-mapper.head": "Mapování do jiných kolekcí - mapovat záznam do kolekcí", @@ -3762,7 +3782,7 @@ "item.edit.metadata.edit.buttons.unedit": "Zastavit úpravy", // "item.edit.metadata.edit.buttons.virtual": "This is a virtual metadata value, i.e. a value inherited from a related entity. It can’t be modified directly. Add or remove the corresponding relationship in the \"Relationships\" tab", - "item.edit.metadata.edit.buttons.virtual": "Tato hodnota metadat je virtuální, tedy děděná z provázané entity. Nemůže být změněna napřímo. Přidejte či odeberte příslušný vztah na záložce \"Vztahy\".", + "item.edit.metadata.edit.buttons.virtual": "Tato hodnota metadat je virtuální, tedy děděná z příbuzné entity. Nemůže být zděděna napřímo. Přidejte či odeberte příslušný vztah na záložce \"Vztahy\".", // "item.edit.metadata.empty": "The item currently doesn't contain any metadata. Click Add to start adding a metadata value.", "item.edit.metadata.empty": "Záznam aktuálně neobsahuje žádná metadata. Kliknutím na tlačítko Přidat začněte přidávat hodnotu metadat.", @@ -3790,11 +3810,11 @@ "item.edit.metadata.metadatafield.invalid": "Prosím, vyberte platné metadatové pole", // "item.edit.metadata.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button", - "item.edit.metadata.notifications.discarded.content": "Vaše změny byly zahozeny. Pro obnovení změn klikněte na tlačítko 'Vrátit změny'", + "item.edit.metadata.notifications.discarded.content": "Vaše změny byly vyřazeny. Pro obnovení změn klikněte na tlačítko 'Vrátit změny'", // "item.edit.metadata.notifications.discarded.title": "Changes discarded", // TODO Source message changed - Revise the translation - "item.edit.metadata.notifications.discarded.title": "Zahozené změny", + "item.edit.metadata.notifications.discarded.title": "Změny zahozeny", // "item.edit.metadata.notifications.error.title": "An error occurred", "item.edit.metadata.notifications.error.title": "Došlo k chybě", @@ -3803,17 +3823,17 @@ "item.edit.metadata.notifications.invalid.content": "Vaše změny nebyly uloženy. Před uložením se prosím ujistěte, že jsou všechna pole platná.", // "item.edit.metadata.notifications.invalid.title": "Metadata invalid", - "item.edit.metadata.notifications.invalid.title": "Neplatná metadata", + "item.edit.metadata.notifications.invalid.title": "Metadata neplatná", // "item.edit.metadata.notifications.outdated.content": "The item you're currently working on has been changed by another user. Your current changes are discarded to prevent conflicts", - "item.edit.metadata.notifications.outdated.content": "Záznam, na kterém právě pracujete, byl změněn jiným uživatelem. Vaše aktuální změny byly zahozeny, aby se zabránilo konfliktům", + "item.edit.metadata.notifications.outdated.content": "Záznam, na které právě pracujete, byl změněna jiným uživatelem. Vaše aktuální změny jsou zahozeny, aby se zabránilo konfliktům", // "item.edit.metadata.notifications.outdated.title": "Changes outdated", // TODO Source message changed - Revise the translation "item.edit.metadata.notifications.outdated.title": "Změny jsou zastaralé", // "item.edit.metadata.notifications.saved.content": "Your changes to this item's metadata were saved.", - "item.edit.metadata.notifications.saved.content": "Vaše změny metadat tohoto záznamu byly uloženy.", + "item.edit.metadata.notifications.saved.content": "Vaše změny metadat této záznamu byly uloženy.", // "item.edit.metadata.notifications.saved.title": "Metadata saved", "item.edit.metadata.notifications.saved.title": "Metadata uložena", @@ -3970,16 +3990,16 @@ "item.edit.relationships.no-relationships": "Žádné vztahy", // "item.edit.relationships.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button", - "item.edit.relationships.notifications.discarded.content": "Vaše změny byly zahozeny. Pro obnovení změn klikněte na tlačítko 'Vrátit změny'", + "item.edit.relationships.notifications.discarded.content": "Vaše změny byly vyřazeny. Pro obnovení změn klikněte na tlačítko 'Vrátit změny'", // "item.edit.relationships.notifications.discarded.title": "Changes discarded", - "item.edit.relationships.notifications.discarded.title": "Zahozené změny", + "item.edit.relationships.notifications.discarded.title": "Změny vyřazeny", // "item.edit.relationships.notifications.failed.title": "Error editing relationships", "item.edit.relationships.notifications.failed.title": "Chyba při úpravě vztahů", // "item.edit.relationships.notifications.outdated.content": "The item you're currently working on has been changed by another user. Your current changes are discarded to prevent conflicts", - "item.edit.relationships.notifications.outdated.content": "Záznam, na kterém právě pracujete, byl změněn jiným uživatelem. Vaše aktuální změny byly zahozeny, aby se zabránilo konfliktům", + "item.edit.relationships.notifications.outdated.content": "Záznam, na které právě pracujete, byl změněna jiným uživatelem. Vaše aktuální změny jsou vyřazeny, aby se zabránilo konfliktům", // "item.edit.relationships.notifications.outdated.title": "Changes outdated", "item.edit.relationships.notifications.outdated.title": "Změny jsou zastaralé", @@ -4003,25 +4023,25 @@ "item.edit.return": "Zpět", // "item.edit.tabs.bitstreams.head": "Bitstreams", - "item.edit.tabs.bitstreams.head": "Soubory", + "item.edit.tabs.bitstreams.head": "Soubor", // "item.edit.tabs.bitstreams.title": "Item Edit - Bitstreams", "item.edit.tabs.bitstreams.title": "Úprava záznamu - soubor", // "item.edit.tabs.curate.head": "Curate", - "item.edit.tabs.curate.head": "Spravovat", + "item.edit.tabs.curate.head": "Kurátorovat", // "item.edit.tabs.curate.title": "Item Edit - Curate", - "item.edit.tabs.curate.title": "Úprava záznamu - spravovat", + "item.edit.tabs.curate.title": "Úprava záznamu - Kurátorovat", // "item.edit.curate.title": "Curate Item: {{item}}", - "item.edit.curate.title": "Spravovat záznam: {{item}}", + "item.edit.curate.title": "Kurátorovat záznam: {{item}}", // "item.edit.tabs.access-control.head": "Access Control", - "item.edit.tabs.access-control.head": "Řízení přístupu", + "item.edit.tabs.access-control.head": "Kontrola přístupu", // "item.edit.tabs.access-control.title": "Item Edit - Access Control", - "item.edit.tabs.access-control.title": "Úprava záznamu - Řízení přístupu", + "item.edit.tabs.access-control.title": "Úprava záznamu - Kontrola přístupu", // "item.edit.tabs.metadata.head": "Metadata", "item.edit.tabs.metadata.head": "Metadata", @@ -4160,7 +4180,7 @@ "item.page.journal-title": "Název časopisu", // "item.page.publisher": "Publisher", - "item.page.publisher": "Nakladatel", + "item.page.publisher": "Vydavatel", // "item.page.titleprefix": "Item: ", "item.page.titleprefix": "Záznam: ", @@ -4215,10 +4235,10 @@ "workflow-item.search.result.notification.deleted.failure": "Při mazání příkazu supervize \"{{name}}\" došlo k chybě", // "workflow-item.search.result.list.element.supervised-by": "Supervised by:", - "workflow-item.search.result.list.element.supervised-by": "Dohlížející autorita:", + "workflow-item.search.result.list.element.supervised-by": "Supervizován:", // "workflow-item.search.result.list.element.supervised.remove-tooltip": "Remove supervision group", - "workflow-item.search.result.list.element.supervised.remove-tooltip": "Odebrat dohlížející autoritu", + "workflow-item.search.result.list.element.supervised.remove-tooltip": "Odebrat skupinu supervize", // "confidence.indicator.help-text.accepted": "This authority value has been confirmed as accurate by an interactive user", // TODO New key - Add a translation @@ -4260,7 +4280,7 @@ "item.page.abstract": "Abstrakt", // "item.page.author": "Authors", - "item.page.author": "Autoři", + "item.page.author": "Autor", // "item.page.citation": "Citation", "item.page.citation": "Citace", @@ -4269,7 +4289,7 @@ "item.page.collections": "Kolekce", // "item.page.collections.loading": "Loading...", - "item.page.collections.loading": "Načítá se...", + "item.page.collections.loading": "Načítání...", // "item.page.collections.load-more": "Load more", "item.page.collections.load-more": "Načíst další", @@ -4302,10 +4322,10 @@ "item.page.journal.search.title": "Články v tomto časopise", // "item.page.link.full": "Full item page", - "item.page.link.full": "Zobrazit úplný záznam", + "item.page.link.full": "Úplný záznam", // "item.page.link.simple": "Simple item page", - "item.page.link.simple": "Zobrazit minimální záznam", + "item.page.link.simple": "Jednoduchý záznam", // "item.page.orcid.title": "ORCID", "item.page.orcid.title": "ORCID", @@ -4338,7 +4358,7 @@ "item.page.subject": "Klíčová slova", // "item.page.uri": "URI", - "item.page.uri": "Permanentní identifikátor", + "item.page.uri": "URI", // "item.page.bitstreams.view-more": "Show more", "item.page.bitstreams.view-more": "Zobrazit více", @@ -4371,13 +4391,13 @@ "item.page.reinstate": "Request reinstatement", // "item.page.version.hasDraft": "A new version cannot be created because there is an inprogress submission in the version history", - "item.page.version.hasDraft": "Nová verze nemůže být vytvořena, protože v historii verzí už další rozpracovaná verze existuje.", + "item.page.version.hasDraft": "Nová verze nemůže být vytvořena, protože v historii verzí právě probíhá zadání nové verze.", // "item.page.claim.button": "Claim", - "item.page.claim.button": "Převzít", + "item.page.claim.button": "Prohlásit", // "item.page.claim.tooltip": "Claim this item as profile", - "item.page.claim.tooltip": "Prohlásit tento záznam za profil", + "item.page.claim.tooltip": "Prohlásit tento záznam za profilovou", // "item.page.image.alt.ROR": "ROR logo", // TODO New key - Add a translation @@ -4453,10 +4473,10 @@ "item.preview.oaire.awardNumber": "Identifikátor zdroje financování:", // "item.preview.dc.title.alternative": "Acronym:", - "item.preview.dc.title.alternative": "Zkratka:", + "item.preview.dc.title.alternative": "Akronym:", // "item.preview.dc.coverage.spatial": "Jurisdiction:", - "item.preview.dc.coverage.spatial": "Příslušnost:", + "item.preview.dc.coverage.spatial": "Jurisdikce:", // "item.preview.oaire.fundingStream": "Funding Stream:", "item.preview.oaire.fundingStream": "Tok finančních prostředků:", @@ -4579,7 +4599,7 @@ "item.version.history.table.action.deleteVersion": "Smazat verzi", // "item.version.history.table.action.hasDraft": "A new version cannot be created because there is an inprogress submission in the version history", - "item.version.history.table.action.hasDraft": "Nová verze nemůže být vytvořena, protože v historii verzí už další rozpracovaná verze existuje.", + "item.version.history.table.action.hasDraft": "Nová verze nemůže být vytvořena, protože v historii verzí probíhá odesílání.", // "item.version.notice": "This is not the latest version of this item. The latest version can be found here.", "item.version.notice": "Toto není nejnovější verze tohoto záznamu. Nejnovější verzi naleznete zde.", @@ -4692,7 +4712,7 @@ "item.version.create.notification.failure": "Nová verze nebyla vytvořena", // "item.version.create.notification.inProgress": "A new version cannot be created because there is an inprogress submission in the version history", - "item.version.create.notification.inProgress": "Nová verze nemůže být vytvořena, protože v historii verzí už další rozpracovaná verze existuje.", + "item.version.create.notification.inProgress": "Nová verze nemůže být vytvořena, protože v historii verzí probíhá odesílání.", // "item.version.delete.modal.header": "Delete version", "item.version.delete.modal.header": "Smazat verzi", @@ -4782,7 +4802,7 @@ "itemtemplate.edit.metadata.metadatafield.invalid": "Prosím zvolte platné metadatové pole", // "itemtemplate.edit.metadata.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button", - "itemtemplate.edit.metadata.notifications.discarded.content": "Vaše změny byly zahozeny. Pro obnovení změn klikněte na tlačítko 'Vrátit změny'", + "itemtemplate.edit.metadata.notifications.discarded.content": "Vaše změny byly zahozeny. Chcete-li obnovit své změny, klikněte na tlačítko 'Zpět'.", // "itemtemplate.edit.metadata.notifications.discarded.title": "Changes discarded", "itemtemplate.edit.metadata.notifications.discarded.title": "Změny byly zahozeny", @@ -4791,7 +4811,7 @@ "itemtemplate.edit.metadata.notifications.error.title": "Vyskytla se chyba", // "itemtemplate.edit.metadata.notifications.invalid.content": "Your changes were not saved. Please make sure all fields are valid before you save.", - "itemtemplate.edit.metadata.notifications.invalid.content": "Vaše změny nebyly uloženy. Před uložením se prosím ujistěte, že jsou všechna pole platná.", + "itemtemplate.edit.metadata.notifications.invalid.content": "Vaše změny nebyly uloženy. Před uložením se ujistěte, že všechna pole jsou platná.", // "itemtemplate.edit.metadata.notifications.invalid.title": "Metadata invalid", "itemtemplate.edit.metadata.notifications.invalid.title": "Neplatná metadata", @@ -4806,7 +4826,7 @@ "itemtemplate.edit.metadata.notifications.saved.content": "Vaše změny v šabloně metadat tohoto záznamu byly uloženy.", // "itemtemplate.edit.metadata.notifications.saved.title": "Metadata saved", - "itemtemplate.edit.metadata.notifications.saved.title": "Metadata uložena", + "itemtemplate.edit.metadata.notifications.saved.title": "Metadata uloženy", // "itemtemplate.edit.metadata.reinstate-button": "Undo", "itemtemplate.edit.metadata.reinstate-button": "Vrátit zpět", @@ -4833,7 +4853,7 @@ "journal.page.issn": "ISSN", // "journal.page.publisher": "Publisher", - "journal.page.publisher": "Nakladatel", + "journal.page.publisher": "Vydavatel", // "journal.page.titleprefix": "Journal: ", "journal.page.titleprefix": "Časopis: ", @@ -4979,10 +4999,10 @@ "loading.search-results": "Načítají se výsledky vyhledávání...", // "loading.sub-collections": "Loading sub-collections...", - "loading.sub-collections": "Načítají se podkolekce...", + "loading.sub-collections": "Načítají se dílčí kolekce...", // "loading.sub-communities": "Loading sub-communities...", - "loading.sub-communities": "Načítají se podkomunity...", + "loading.sub-communities": "Načítají se dílčí komunity...", // "loading.top-level-communities": "Loading top-level communities...", "loading.top-level-communities": "Načítají se komunity nejvyšší úrovně...", @@ -5034,10 +5054,11 @@ "menu.header.nav.description": "Admin navigation bar", // "menu.header.admin": "Management", - "menu.header.admin": "Admin", + // TODO Source message changed - Revise the translation + "menu.header.admin": "Management", // "menu.header.image.logo": "Repository logo", - "menu.header.image.logo": "Logo repozitáře", + "menu.header.image.logo": "Logo úložiště", // "menu.header.admin.description": "Management menu", "menu.header.admin.description": "Management menu", @@ -5113,7 +5134,7 @@ "menu.section.control_panel": "Ovládací panel", // "menu.section.curation_task": "Curation Task", - "menu.section.curation_task": "Úloha správy", + "menu.section.curation_task": "Kurátorská úloha", // "menu.section.edit": "Edit", "menu.section.edit": "Upravit", @@ -5159,25 +5180,25 @@ "menu.section.icon.control_panel": "Sekce menu Ovládací panel", // "menu.section.icon.curation_tasks": "Curation Task menu section", - "menu.section.icon.curation_tasks": "Sekce menu úloha správy", + "menu.section.icon.curation_tasks": "Sekce menu Kurátorská úloha", // "menu.section.icon.edit": "Edit menu section", "menu.section.icon.edit": "Sekce menu Upravit", // "menu.section.icon.export": "Export menu section", - "menu.section.icon.export": "Sekce menu Exportovat", + "menu.section.icon.export": "Exportovat sekci menu", // "menu.section.icon.find": "Find menu section", - "menu.section.icon.find": "Sekce menu Najít", + "menu.section.icon.find": "Najít sekci menu", // "menu.section.icon.health": "Health check menu section", - "menu.section.icon.health": "Sekce menu Kontrola stavu", + "menu.section.icon.health": "Kontrola stavu sekce menu", // "menu.section.icon.import": "Import menu section", - "menu.section.icon.import": "Sekce menu Importovat", + "menu.section.icon.import": "Importovat sekci menu", // "menu.section.icon.new": "New menu section", - "menu.section.icon.new": "Sekce menu Nový", + "menu.section.icon.new": "Nová sekce menu", // "menu.section.icon.pin": "Pin sidebar", "menu.section.icon.pin": "Připnout postranní panel", @@ -5254,7 +5275,7 @@ "menu.section.health": "Stav systému", // "menu.section.registries": "Registries", - "menu.section.registries": "Registry", + "menu.section.registries": "Rejstřík", // "menu.section.registries_format": "Format", "menu.section.registries_format": "Formát", @@ -5279,7 +5300,7 @@ "menu.section.toggle.control_panel": "Přepnout sekci ovládacího panelu", // "menu.section.toggle.curation_task": "Toggle Curation Task section", - "menu.section.toggle.curation_task": "Přepnout sekci úloha správy", + "menu.section.toggle.curation_task": "Přepnout sekci Kurátorská úloha", // "menu.section.toggle.edit": "Toggle Edit section", "menu.section.toggle.edit": "Přepnout sekci Úpravy", @@ -5297,7 +5318,7 @@ "menu.section.toggle.new": "Přepnout sekci Nová", // "menu.section.toggle.registries": "Toggle Registries section", - "menu.section.toggle.registries": "Přepnout sekci Registry", + "menu.section.toggle.registries": "Přepnout sekci Rejstříky", // "menu.section.toggle.statistics_task": "Toggle Statistics Task section", "menu.section.toggle.statistics_task": "Přepnout sekci Statistická úloha", @@ -5321,7 +5342,7 @@ "mydspace.description": "", // "mydspace.messages.controller-help": "Select this option to send a message to item's submitter.", - "mydspace.messages.controller-help": "Zvolte tuto možnost, chcete-li odeslat zprávu odesílateli záznamu.", + "mydspace.messages.controller-help": "Zvolte tuto možnost, chcete-li odeslat zprávu vkladateli záznamu.", // "mydspace.messages.description-placeholder": "Insert your message here...", "mydspace.messages.description-placeholder": "Zde vložte svou zprávu...", @@ -5369,7 +5390,7 @@ "mydspace.new-submission-external-short": "Importovat metadata", // "mydspace.results.head": "Your submissions", - "mydspace.results.head": "Vaše záznamy", + "mydspace.results.head": "Váš příspěvek", // "mydspace.results.no-abstract": "No Abstract", "mydspace.results.no-abstract": "Žádný abstrakt", @@ -5403,12 +5424,12 @@ // TODO Source message changed - Revise the translation "mydspace.show.workflow": "Úlohy workflow", - // "mydspace.show.workspace": "Your Submissions", + // "mydspace.show.workspace": "Your submissions", // TODO Source message changed - Revise the translation - "mydspace.show.workspace": "Vaše záznamy", + "mydspace.show.workspace": "Váš příspěvek", // "mydspace.show.supervisedWorkspace": "Supervised items", - "mydspace.show.supervisedWorkspace": "Záznamy pod dohledem", + "mydspace.show.supervisedWorkspace": "Zkontrolované záznamy", // "mydspace.status.mydspaceArchived": "Archived", "mydspace.status.mydspaceArchived": "Archivováno", @@ -5479,7 +5500,7 @@ "nav.user-profile-menu-and-logout": "Menu uživatelského profilu a odhlášení", // "nav.logout": "Log Out", - "nav.logout": "Odhlásit se", + "nav.logout": "Menu uživatelského profilu a odhlášení", // "nav.main.description": "Main navigation bar", "nav.main.description": "Hlavní navigační panel", @@ -5500,7 +5521,7 @@ "nav.statistics.header": "Statistika", // "nav.stop-impersonating": "Stop impersonating EPerson", - "nav.stop-impersonating": "Přestat vystupovat jako jiný uživatel", + "nav.stop-impersonating": "Přestat simulovat jiného uživatele", // "nav.subscriptions": "Subscriptions", "nav.subscriptions": "Nastavení notifikací", @@ -5804,7 +5825,7 @@ "orgunit.page.city": "Město", // "orgunit.page.country": "Country", - "orgunit.page.country": "Země", + "orgunit.page.country": "Stát", // "orgunit.page.dateestablished": "Date established", "orgunit.page.dateestablished": "Datum založení.", @@ -5886,7 +5907,7 @@ "person-relationships.search.results.head": "Výsledky vyhledávání osob", // "person.search.title": "Person Search", - "person.search.title": "Vyhledávání osob", + "person.search.title": "Vyledatávání osob", // "process.new.select-parameters": "Parameters", "process.new.select-parameters": "Parametry", @@ -6115,7 +6136,7 @@ "process.overview.delete.clear": "Zrušit výběr mazání", // "process.overview.delete.processing": "{{count}} process(es) are being deleted. Please wait for the deletion to fully complete. Note that this can take a while.", - "process.overview.delete.processing": "Maže se {{count}} procesů. Počkejte prosím na úplné dokončení mazání. To může chvíli trvat.", + "process.overview.delete.processing": "Smazává se {{count}} procesů. Počkejte prosím na úplné dokončení mazání. To může chvíli trvat.", // "process.overview.delete.body": "Are you sure you want to delete {{count}} process(es)?", "process.overview.delete.body": "Určitě chcete smazat {{count}} procesů", @@ -6280,7 +6301,7 @@ "publication.page.journal-title": "Název časopisu", // "publication.page.publisher": "Publisher", - "publication.page.publisher": "Nakladatel", + "publication.page.publisher": "Vydavatel", // "publication.page.titleprefix": "Publication: ", "publication.page.titleprefix": "Publikace: ", @@ -6506,7 +6527,7 @@ "register-page.registration.header": "Registrace nového uživatele", // "register-page.registration.info": "Register an account to subscribe to collections for email updates, and submit new items to DSpace.", - "register-page.registration.info": "Zaregistrujte si účet a přihlaste se k odběru kolekcí pro e-mailové aktualizace a odesílejte nové záznamy do systému DSpace", + "register-page.registration.info": "Zaregistrujte si účet a přihlaste se k odběru sbírek pro e-mailové aktualizace a odesílejte nové záznamy do systému DSpace", // "register-page.registration.email": "Email Address *", "register-page.registration.email": "E-mailová adresa *", @@ -6874,7 +6895,7 @@ "search.filters.applied.f.dateIssued.min": "Datum zahájení", // "search.filters.applied.f.dateSubmitted": "Date submitted", - "search.filters.applied.f.dateSubmitted": "Datum vložení", + "search.filters.applied.f.dateSubmitted": "Date vložení", // "search.filters.applied.f.discoverable": "Non-discoverable", // TODO Source message changed - Revise the translation @@ -6904,7 +6925,7 @@ "search.filters.applied.f.subject": "Předmět", // "search.filters.applied.f.submitter": "Submitter", - "search.filters.applied.f.submitter": "Odesílatel", + "search.filters.applied.f.submitter": "Vkladatel", // "search.filters.applied.f.jobTitle": "Job Title", "search.filters.applied.f.jobTitle": "Název pracovní pozice", @@ -6916,10 +6937,10 @@ "search.filters.applied.f.birthDate.min": "Datum narození od", // "search.filters.applied.f.supervisedBy": "Supervised by", - "search.filters.applied.f.supervisedBy": "Pod dohledem", + "search.filters.applied.f.supervisedBy": "Zkontrolováno", // "search.filters.applied.f.withdrawn": "Withdrawn", - "search.filters.applied.f.withdrawn": "Vyřazeno", + "search.filters.applied.f.withdrawn": "Zrušeno", // "search.filters.applied.operator.equals": "", // TODO New key - Add a translation @@ -7010,10 +7031,10 @@ "search.filters.filter.creativeWorkKeywords.label": "Předmět hledání", // "search.filters.filter.creativeWorkPublisher.head": "Publisher", - "search.filters.filter.creativeWorkPublisher.head": "Nakladatel", + "search.filters.filter.creativeWorkPublisher.head": "Vydavatel", // "search.filters.filter.creativeWorkPublisher.placeholder": "Publisher", - "search.filters.filter.creativeWorkPublisher.placeholder": "Nakladatel", + "search.filters.filter.creativeWorkPublisher.placeholder": "Vydavatel", // "search.filters.filter.creativeWorkPublisher.label": "Search publisher", "search.filters.filter.creativeWorkPublisher.label": "Hledat vydavatele", @@ -7049,7 +7070,7 @@ "search.filters.filter.discoverable.head": "Nedohledatelné", // "search.filters.filter.withdrawn.head": "Withdrawn", - "search.filters.filter.withdrawn.head": "Vyřazeno", + "search.filters.filter.withdrawn.head": "Zrušeno", // "search.filters.filter.entityType.head": "Item Type", "search.filters.filter.entityType.head": "Typ záznamu", @@ -7133,13 +7154,13 @@ "search.filters.filter.objectpeople.placeholder": "Lidé", // "search.filters.filter.objectpeople.label": "Search people", - "search.filters.filter.objectpeople.label": "Hledat osoby", + "search.filters.filter.objectpeople.label": "Hledat lidi", // "search.filters.filter.organizationAddressCountry.head": "Country", - "search.filters.filter.organizationAddressCountry.head": "Země", + "search.filters.filter.organizationAddressCountry.head": "Stát", // "search.filters.filter.organizationAddressCountry.placeholder": "Country", - "search.filters.filter.organizationAddressCountry.placeholder": "Země", + "search.filters.filter.organizationAddressCountry.placeholder": "Stát", // "search.filters.filter.organizationAddressCountry.label": "Search country", "search.filters.filter.organizationAddressCountry.label": "Hledat stát", @@ -7169,7 +7190,7 @@ "search.filters.filter.scope.placeholder": "Filtr rozsahu", // "search.filters.filter.scope.label": "Search scope filter", - "search.filters.filter.scope.label": "Filtr rozsahu hledání", + "search.filters.filter.scope.label": "Hledat filtr rozsahu", // "search.filters.filter.show-less": "Collapse", "search.filters.filter.show-less": "Sbalit", @@ -7187,13 +7208,13 @@ "search.filters.filter.subject.label": "Hledat předmět", // "search.filters.filter.submitter.head": "Submitter", - "search.filters.filter.submitter.head": "Odesílatel", + "search.filters.filter.submitter.head": "Vkladatel", // "search.filters.filter.submitter.placeholder": "Submitter", - "search.filters.filter.submitter.placeholder": "Odesílatel", + "search.filters.filter.submitter.placeholder": "Vkladatel", // "search.filters.filter.submitter.label": "Search submitter", - "search.filters.filter.submitter.label": "Hledat odesílatele", + "search.filters.filter.submitter.label": "Hledat vkladatele", // "search.filters.filter.show-tree": "Browse {{ name }} tree", "search.filters.filter.show-tree": "Procházet {{ name }} podle", @@ -7215,7 +7236,8 @@ "search.filters.filter.supervisedBy.placeholder": "Supervised By", // "search.filters.filter.supervisedBy.label": "Search Supervised By", - "search.filters.filter.supervisedBy.label": "Hledat dohlížející autoritu", + // TODO New key - Add a translation + "search.filters.filter.supervisedBy.label": "Search Supervised By", // "search.filters.entityType.JournalIssue": "Journal Issue", "search.filters.entityType.JournalIssue": "Číslo časopisu", @@ -7276,8 +7298,8 @@ // "search.filters.withdrawn.false": "No", "search.filters.withdrawn.false": "Ne", - // "search.filters.head": "Limit your search", - "search.filters.head": "Zúžit hledání", + // "search.filters.head": "Filters", + "search.filters.head": "Filtry", // "search.filters.reset": "Reset filters", "search.filters.reset": "Resetovat filtry", @@ -7431,10 +7453,10 @@ "sorting.dc.date.issued.DESC": "Datum vydání sestupně", // "sorting.dc.date.accessioned.ASC": "Accessioned Date Ascending", - "sorting.dc.date.accessioned.ASC": "Datum odeslání vzestupně", + "sorting.dc.date.accessioned.ASC": "Datum přírůstku vzestupně", // "sorting.dc.date.accessioned.DESC": "Accessioned Date Descending", - "sorting.dc.date.accessioned.DESC": "Datum odeslání sestupně", + "sorting.dc.date.accessioned.DESC": "Datum přírůstku sestupně", // "sorting.lastModified.ASC": "Last modified Ascending", "sorting.lastModified.ASC": "Naposledy upraveno vzestupně", @@ -7516,7 +7538,7 @@ "submission.general.cannot_submit": "Nemáte oprávnění k vytvoření nového příspěvku.", // "submission.general.deposit": "Deposit", - "submission.general.deposit": "Nahrát", + "submission.general.deposit": "Vložit do repozitáře", // "submission.general.discard.confirm.cancel": "Cancel", "submission.general.discard.confirm.cancel": "Zrušit", @@ -7544,7 +7566,7 @@ "submission.general.info.pending-changes": "Neuložené změny", // "submission.general.save": "Save", - "submission.general.save": "Uložit", + "submission.general.save": "Průběžně uložit záznam", // "submission.general.save-later": "Save for later", "submission.general.save-later": "Uložit na později", @@ -7699,10 +7721,10 @@ "submission.import-external.preview.subtitle": "Níže uvedená metadata byla importována z externího zdroje. Budou předvyplněna při zahájení odesílání..", // "submission.import-external.preview.button.import": "Start submission", - "submission.import-external.preview.button.import": "Začít nový příspěvek", + "submission.import-external.preview.button.import": "Zahájit odesílání", // "submission.import-external.preview.error.import.title": "Submission error", - "submission.import-external.preview.error.import.title": "Chyba při vytváření nového příspěvku", + "submission.import-external.preview.error.import.title": "Chyba při odesílání", // "submission.import-external.preview.error.import.body": "An error occurs during the external source entry import process.", "submission.import-external.preview.error.import.body": "Během procesu importu externí zdrojového záznamu došlo k chybě.", @@ -7883,7 +7905,7 @@ "submission.sections.describe.relationship-lookup.search-tab.placeholder": "Vyhledávací dotaz", // "submission.sections.describe.relationship-lookup.search-tab.search": "Go", - "submission.sections.describe.relationship-lookup.search-tab.search": "Přejít na", + "submission.sections.describe.relationship-lookup.search-tab.search": "Hledání", // "submission.sections.describe.relationship-lookup.search-tab.search-form.placeholder": "Search...", "submission.sections.describe.relationship-lookup.search-tab.search-form.placeholder": "Hledání...", @@ -8070,7 +8092,7 @@ "submission.sections.describe.relationship-lookup.title.Funding Agency": "Financující agentura", // "submission.sections.describe.relationship-lookup.title.isFundingOfPublication": "Funding", - "submission.sections.describe.relationship-lookup.title.isFundingOfPublication": "Financování", + "submission.sections.describe.relationship-lookup.title.isFundingOfPublication": "Projekt, ke kterému publikace náleží", // "submission.sections.describe.relationship-lookup.title.isChildOrgUnitOf": "Parent Organizational Unit", "submission.sections.describe.relationship-lookup.title.isChildOrgUnitOf": "Nadřazená organizační jednotka", @@ -8277,7 +8299,7 @@ "submission.sections.identifiers.info": "Pro tento záznam budou vytvořeny následující identifikátory:", // "submission.sections.identifiers.no_handle": "No handles have been minted for this item.", - "submission.sections.identifiers.no_handle": "Tomuto záznamu nebyl přidělen žádný handle.", + "submission.sections.identifiers.no_handle": "Tomuto záznamu nybyl přidělen žádný handle.", // "submission.sections.identifiers.no_doi": "No DOIs have been minted for this item.", "submission.sections.identifiers.no_doi": "Tomuto záznamu nebylo přiděleno žádné DOI.", @@ -8301,7 +8323,7 @@ "submission.sections.submit.progressbar.describe.recycle": "Opětovně použít", // "submission.sections.submit.progressbar.describe.stepcustom": "Describe", - "submission.sections.submit.progressbar.describe.stepcustom": "Popis", + "submission.sections.submit.progressbar.describe.stepcustom": "Popsat", // "submission.sections.submit.progressbar.describe.stepone": "Describe", "submission.sections.submit.progressbar.describe.stepone": "Základní informace o dokumentu", @@ -8439,10 +8461,10 @@ "submission.sections.upload.form.until-placeholder": "Až do", // "submission.sections.upload.header.policy.default.nolist": "Uploaded files in the {{collectionName}} collection will be accessible according to the following group(s):", - "submission.sections.upload.header.policy.default.nolist": "Nahrané soubory v kolekci {{collectionName}} budou přístupné podle následujících skupin:", + "submission.sections.upload.header.policy.default.nolist": "Nahrané soubory v kolekci {{collectionName}} budou přístupné podle následující skupiny (skupin):", // "submission.sections.upload.header.policy.default.withlist": "Please note that uploaded files in the {{collectionName}} collection will be accessible, in addition to what is explicitly decided for the single file, with the following group(s):", - "submission.sections.upload.header.policy.default.withlist": "Vezměte prosím na vědomí, že nahrané soubory v kolekci {{collectionName}} budou kromě toho, co je explicitně rozhodnuto pro jednotlivý soubor, přístupné podle následujících skupin:", + "submission.sections.upload.header.policy.default.withlist": "Vezměte prosím na vědomí, že nahrané soubory v kolekci {{collectionName}} budou kromě toho, co je explicitně rozhodnuto pro jednotlivý soubor, přístupné podle následující skupiny (skupin):", // "submission.sections.upload.info": "Here you will find all the files currently in the item. You can update the file metadata and access conditions or upload additional files by dragging & dropping them anywhere on the page.", "submission.sections.upload.info": "Zde najdete všechny soubory, které jsou aktuálně v záznamu. Můžete aktualizovat metadata souborů a podmínky přístupu nebo nahrát další soubory pouhým přetažením kdekoli na stránku.", @@ -8611,13 +8633,14 @@ "submission.sections.sherpa.record.information.uri": "URI", // "submission.sections.sherpa.error.message": "There was an error retrieving sherpa informations", - "submission.sections.sherpa.error.message": "Při načítání informací ze služby Sherpa došlo k chybě", + "submission.sections.sherpa.error.message": "Informace ze Sherpa Romeo se nepodařilo načíst.", // "submission.submit.breadcrumbs": "New submission", "submission.submit.breadcrumbs": "Nově podaný záznam", // "submission.submit.title": "New submission", - "submission.submit.title": "Nový příspěvek", + // TODO Source message changed - Revise the translation + "submission.submit.title": "Nově podaný záznam", // "submission.workflow.generic.delete": "Delete", "submission.workflow.generic.delete": "Smazat", @@ -8669,7 +8692,7 @@ "submission.workflow.tasks.claimed.decline_help": "", // "submission.workflow.tasks.claimed.reject.reason.info": "Please enter your reason for rejecting the submission into the box below, indicating whether the submitter may fix a problem and resubmit.", - "submission.workflow.tasks.claimed.reject.reason.info": "Do níže uvedeného pole zadejte důvod odmítnutí podání a uveďte, zda může odesílatel problém odstranit a podání znovu odeslat.", + "submission.workflow.tasks.claimed.reject.reason.info": "Do níže uvedeného pole zadejte důvod odmítnutí podání a uveďte, zda může vkladatel problém odstranit a podání znovu odeslat.", // "submission.workflow.tasks.claimed.reject.reason.placeholder": "Describe the reason of reject", "submission.workflow.tasks.claimed.reject.reason.placeholder": "Popište důvod odmítnutí", @@ -8684,7 +8707,7 @@ "submission.workflow.tasks.claimed.reject.submit": "Odmítnout", // "submission.workflow.tasks.claimed.reject_help": "If you have reviewed the item and found it is not suitable for inclusion in the collection, select \"Reject\". You will then be asked to enter a message indicating why the item is unsuitable, and whether the submitter should change something and resubmit.", - "submission.workflow.tasks.claimed.reject_help": "Pokud jste záznam zkontrolovali a zjistili, že není vhodný pro zařazení do kolekce, vyberte \"Odmítnout\". Poté budete vyzváni k zadání zprávy, ve které uvedete, proč je záznam nevhodný, a zda by měl odesílatel něco změnit a znovu odeslat.", + "submission.workflow.tasks.claimed.reject_help": "Pokud jste záznam zkontrolovali a zjistili, že není vhodný pro zařazení do kolekce, vyberte \"Odmítnout\". Poté budete vyzváni k zadání zprávy, ve které uvedete, proč je záznam nevhodný, a zda by měl vkladatel něco změnit a znovu předložit.", // "submission.workflow.tasks.claimed.return": "Return to pool", "submission.workflow.tasks.claimed.return": "Vrátit do fondu", @@ -8699,13 +8722,13 @@ "submission.workflow.tasks.generic.processing": "Zpracování...", // "submission.workflow.tasks.generic.submitter": "Submitter", - "submission.workflow.tasks.generic.submitter": "Odesílatel", + "submission.workflow.tasks.generic.submitter": "Zadavatel", // "submission.workflow.tasks.generic.success": "Operation successful", "submission.workflow.tasks.generic.success": "Operace proběhla úspěšně", // "submission.workflow.tasks.pool.claim": "Claim", - "submission.workflow.tasks.pool.claim": "Převzít", + "submission.workflow.tasks.pool.claim": "Vyžádat si", // "submission.workflow.tasks.pool.claim_help": "Assign this task to yourself.", "submission.workflow.tasks.pool.claim_help": "Přiřaďte si tento úkol.", @@ -8902,7 +8925,7 @@ "uploader.or": ", nebo ", // "uploader.processing": "Processing uploaded file(s)... (it's now safe to close this page)", - "uploader.processing": "Zpracovávám nahrané soubory... (nyní je bezpečné tuto stránku zavřít)", + "uploader.processing": "(nyní je bezpečné tuto stránku zavřít)", // "uploader.queue-length": "Queue length", "uploader.queue-length": "Délka fronty", @@ -8917,7 +8940,7 @@ "virtual-metadata.delete-relationship.modal-head": "Vyberte záznamy, pro které chcete uložit virtuální metadata jako skutečná metadata", // "supervisedWorkspace.search.results.head": "Supervised Items", - "supervisedWorkspace.search.results.head": "Záznamy pod dohledem", + "supervisedWorkspace.search.results.head": "Zkontrolované záznamy", // "workspace.search.results.head": "Your submissions", "workspace.search.results.head": "Moje záznamy", @@ -8926,7 +8949,7 @@ "workflowAdmin.search.results.head": "Spravovat workflow", // "workflow.search.results.head": "Workflow tasks", - "workflow.search.results.head": "Úlohy workflow", + "workflow.search.results.head": "Kroky workflow", // "supervision.search.results.head": "Workflow and Workspace tasks", "supervision.search.results.head": "Úlohy Workflow a osobního pracovního prostoru", @@ -8966,22 +8989,22 @@ "workflow-item.delete.button.confirm": "Smazat", // "workflow-item.send-back.notification.success.title": "Sent back to submitter", - "workflow-item.send-back.notification.success.title": "Vráceno zpět odesílateli", + "workflow-item.send-back.notification.success.title": "Odesláno zpět vkladateli", // "workflow-item.send-back.notification.success.content": "This workflow item was successfully sent back to the submitter", - "workflow-item.send-back.notification.success.content": "Tento záznam ve workflow byl úspěšně vrácen zpět odesílateli", + "workflow-item.send-back.notification.success.content": "Tento záznam ve workflow byl úspěšně odeslán zpět vkladateli", // "workflow-item.send-back.notification.error.title": "Something went wrong", "workflow-item.send-back.notification.error.title": "Něco se pokazilo", // "workflow-item.send-back.notification.error.content": "The workflow item could not be sent back to the submitter", - "workflow-item.send-back.notification.error.content": "Záznam ve workflow se nepodařilo vrátit zpět odesílateli", + "workflow-item.send-back.notification.error.content": "Záznam ve workflow se nepodařilo odeslat zpět vkladateli", // "workflow-item.send-back.title": "Send workflow item back to submitter", - "workflow-item.send-back.title": "Vrátit záznam ve workflow zpět odesílateli", + "workflow-item.send-back.title": "Odeslat záznam ve workflow zpět vladateli", // "workflow-item.send-back.header": "Send workflow item back to submitter", - "workflow-item.send-back.header": "Vrátit záznam ve workflow zpět odesílateli", + "workflow-item.send-back.header": "Odeslat záznam ve workflow zpět vladateli", // "workflow-item.send-back.button.cancel": "Cancel", "workflow-item.send-back.button.cancel": "Zrušit", @@ -8997,7 +9020,7 @@ "workspace-item.view.breadcrumbs": "Zobrazení pracovního prostoru", // "workspace-item.view.title": "Workspace View", - "workspace-item.view.title": "Zobrazení pracovního prostoru", + "workspace-item.view.title": "Zobrazení pracovní prostoru", // "workspace-item.delete.breadcrumbs": "Workspace Delete", "workspace-item.delete.breadcrumbs": "Vymazat obsah pracovního prostoru", @@ -9063,10 +9086,10 @@ "workflow-item.scorereviewaction.notification.error.content": "Nebylo možné zkontrolovat tento záznam", // "workflow-item.scorereviewaction.title": "Rate this item", - "workflow-item.scorereviewaction.title": "Ohodnotit tento záznam", + "workflow-item.scorereviewaction.title": "Zkontrolovat tento záznam", // "workflow-item.scorereviewaction.header": "Rate this item", - "workflow-item.scorereviewaction.header": "Ohodnotit tento záznam", + "workflow-item.scorereviewaction.header": "Zkontrolovat tento záznam", // "workflow-item.scorereviewaction.button.cancel": "Cancel", "workflow-item.scorereviewaction.button.cancel": "Zrušit", @@ -9330,7 +9353,7 @@ "person.page.orcid.sync-queue.send.bad-request-error": "Odeslání do ORCID se nezdařilo, protože zdroj odeslaný do registru ORCID není platný", // "person.page.orcid.sync-queue.send.error": "The submission to ORCID failed", - "person.page.orcid.sync-queue.send.error": "Odeslání do ORCID se nezdařilo", + "person.page.orcid.sync-queue.send.error": "Podání do ORCID se nezdařilo", // "person.page.orcid.sync-queue.send.conflict-error": "The submission to ORCID failed because the resource is already present on the ORCID registry", "person.page.orcid.sync-queue.send.conflict-error": "Odeslání do ORCID se nezdařilo, protože zdroj se již nachází v registru ORCID", @@ -9483,7 +9506,7 @@ "system-wide-alert-form.retrieval.error": "Něco se pokazilo při načítání systémových upozornění", // "system-wide-alert.form.cancel": "Cancel", - "system-wide-alert.form.cancel": "Zrušit", + "system-wide-alert.form.cancel": "Zrušir", // "system-wide-alert.form.save": "Save", "system-wide-alert.form.save": "Uložit", @@ -9501,7 +9524,7 @@ "system-wide-alert.form.label.message": "Obsah upozornění", // "system-wide-alert.form.label.countdownTo.enable": "Enable a countdown timer", - "system-wide-alert.form.label.countdownTo.enable": "Povolit odpočet", + "system-wide-alert.form.label.countdownTo.enable": "Povolit odpočítávací měřič", // "system-wide-alert.form.label.countdownTo.hint": "Hint: Set a countdown timer. When enabled, a date can be set in the future and the system-wide alert banner will perform a countdown to the set date. When this timer ends, it will disappear from the alert. The server will NOT be automatically stopped.", "system-wide-alert.form.label.countdownTo.hint": "Nápověda: Nastavte odpočítávací měřič. Je-li to povoleno, lze datum nastavit i v budoucnosti a systémový upozornění bude uvádět odpočítávání do nastaveného data. Ve chvíli, kdy skončí odpočítávání, zmizí i odpočítávač z upozornění. Server NEBUDE automaticky zastaven.", @@ -9636,7 +9659,7 @@ // "vocabulary-treeview.search.form.add": "Add", // TODO New key - Add a translation - "vocabulary-treeview.search.form.add": "Přidat", + "vocabulary-treeview.search.form.add": "Add", // "admin.notifications.publicationclaim.breadcrumbs": "Publication Claim", // TODO New key - Add a translation @@ -11024,4 +11047,5 @@ // TODO New key - Add a translation "item.page.cc.license.disclaimer": "Except where otherwised noted, this item's license is described as", -} + +} \ No newline at end of file diff --git a/src/assets/i18n/el.json5 b/src/assets/i18n/el.json5 index b12b78cc583..61e188d5679 100644 --- a/src/assets/i18n/el.json5 +++ b/src/assets/i18n/el.json5 @@ -1008,6 +1008,7 @@ "cookies.consent.content-modal.privacy-policy.text": "Για να μάθετε περισσότερα, διαβάστε την {Πολιτική απορρήτου} μας.", "cookies.consent.content-modal.title": "Πληροφορίες που συλλέγουμε", "cookies.consent.content-notice.description": "Συλλέγουμε και επεξεργαζόμαστε τα προσωπικά σας στοιχεία για τους ακόλουθους σκοπούς: Έλεγχος ταυτότητας, Προτιμήσεις, Αναγνώριση και Στατιστικά.
Για να μάθετε περισσότερα, διαβάστε την {privacyPolicy} μας.", + "cookies.consent.content-notice.description.no-privacy": "Συλλέγουμε και επεξεργαζόμαστε τα προσωπικά σας στοιχεία για τους ακόλουθους σκοπούς: Έλεγχος ταυτότητας, Προτιμήσεις, Αναγνώριση και Στατιστικά.", "cookies.consent.content-notice.learnMore": "Προσαρμογή", "cookies.consent.decline": "Απόρριψη", "cookies.consent.purpose.functional": "Λειτουργικός", diff --git a/src/assets/i18n/en.json5 b/src/assets/i18n/en.json5 index 0e34b09495e..a2d4900b06e 100644 --- a/src/assets/i18n/en.json5 +++ b/src/assets/i18n/en.json5 @@ -1592,19 +1592,25 @@ "cookies.consent.app.required.title": "(always required)", + "cookies.consent.app.disable-all.description": "Use this switch to enable or disable all services.", + + "cookies.consent.app.disable-all.title": "Enable or disable all services", + "cookies.consent.update": "There were changes since your last visit, please update your consent.", "cookies.consent.close": "Close", "cookies.consent.decline": "Decline", - "cookies.consent.decline-all": "Decline all", - "cookies.consent.ok": "That's ok", "cookies.consent.save": "Save", - "cookies.consent.content-notice.description": "We collect and process your personal information for the following purposes: {purposes}", + "cookies.consent.content-notice.title": "Cookie Consent", + + "cookies.consent.content-notice.description": "We collect and process your personal information for the following purposes: Authentication, Preferences, Acknowledgement and Statistics.
To learn more, please read our {privacyPolicy}.", + + "cookies.consent.content-notice.description.no-privacy": "We collect and process your personal information for the following purposes: Authentication, Preferences, Acknowledgement and Statistics.", "cookies.consent.content-notice.learnMore": "Customize", @@ -1614,10 +1620,12 @@ "cookies.consent.content-modal.privacy-policy.text": "To learn more, please read our {privacyPolicy}.", - "cookies.consent.content-modal.no-privacy-policy.text": "", - "cookies.consent.content-modal.title": "Information that we collect", + "cookies.consent.content-modal.services": "services", + + "cookies.consent.content-modal.service": "service", + "cookies.consent.app.title.authentication": "Authentication", "cookies.consent.app.description.authentication": "Required for signing you in", @@ -6743,8 +6751,4 @@ "item.page.cc.license.disclaimer": "Except where otherwised noted, this item's license is described as", "browse.search-form.placeholder": "Search the repository", - - "register-page.registration.aria.label": "Enter your e-mail address", - - "forgot-email.form.aria.label": "Enter your e-mail address", } diff --git a/src/assets/i18n/es.json5 b/src/assets/i18n/es.json5 index 0f9ee47f94f..ecde6eb181a 100644 --- a/src/assets/i18n/es.json5 +++ b/src/assets/i18n/es.json5 @@ -2289,6 +2289,12 @@ // "cookies.consent.app.required.title": "(always required)", "cookies.consent.app.required.title": "(siempre requerido)", + // "cookies.consent.app.disable-all.description": "Use this switch to enable or disable all services.", + "cookies.consent.app.disable-all.description": "Use este campo para habilitar o deshabilitar todos los servicios.", + + // "cookies.consent.app.disable-all.title": "Enable or disable all services", + "cookies.consent.app.disable-all.title": "Habilita o deshabilita todos los servicios", + // "cookies.consent.update": "There were changes since your last visit, please update your consent.", "cookies.consent.update": "Hubo cambios desde su última visita, actualice su consentimiento.", @@ -2304,9 +2310,15 @@ // "cookies.consent.save": "Save", "cookies.consent.save": "Guardar", + // "cookies.consent.content-notice.title": "Cookie Consent", + "cookies.consent.content-notice.title": "Cookie Consent", + // "cookies.consent.content-notice.description": "We collect and process your personal information for the following purposes: Authentication, Preferences, Acknowledgement and Statistics.
To learn more, please read our {privacyPolicy}.", "cookies.consent.content-notice.description": "Recopilamos y procesamos su información personal para los siguientes propósitos: Autenticación, Preferencias, Reconocimiento y Estadísticas.
Para obtener más información, lea nuestra {privacyPolicy}.", + // "cookies.consent.content-notice.description.no-privacy": "We collect and process your personal information for the following purposes: Authentication, Preferences, Acknowledgement and Statistics.", + "cookies.consent.content-notice.description.no-privacy": "Recopilamos y procesamos su información personal para los siguientes propósitos: Autenticación, Preferencias, Reconocimiento y Estadísticas.", + // "cookies.consent.content-notice.learnMore": "Customize", "cookies.consent.content-notice.learnMore": "Personalizar", @@ -2322,6 +2334,12 @@ // "cookies.consent.content-modal.title": "Information that we collect", "cookies.consent.content-modal.title": "Información que recopilamos", + // "cookies.consent.content-modal.services": "services", + "cookies.consent.content-modal.services": "servicios", + + // "cookies.consent.content-modal.service": "service", + "cookies.consent.content-modal.service": "servicio", + // "cookies.consent.app.title.authentication": "Authentication", "cookies.consent.app.title.authentication": "Autenticación", @@ -8146,11 +8164,5 @@ //"browse.search-form.placeholder": "Search the repository", "browse.search-form.placeholder": "Buscar en el repositorio", - // "register-page.registration.aria.label": "Enter your e-mail address", - "register-page.registration.aria.label": "Introduzca su dirección de correo electrónico", - - // "forgot-email.form.aria.label": "Enter your e-mail address", - "forgot-email.form.aria.label": "Introduzca su dirección de correo electrónico", - } diff --git a/src/assets/i18n/fi.json5 b/src/assets/i18n/fi.json5 index e624b1a5ba1..32c5f4766f8 100644 --- a/src/assets/i18n/fi.json5 +++ b/src/assets/i18n/fi.json5 @@ -2353,6 +2353,12 @@ // "cookies.consent.app.required.title": "(always required)", "cookies.consent.app.required.title": "(aina pakollinen)", + // "cookies.consent.app.disable-all.description": "Use this switch to enable or disable all services.", + "cookies.consent.app.disable-all.description": "Tästä kytkimestä voit ottaa kaikki palvelut käyttöön tai poistaa ne käytöstä", + + // "cookies.consent.app.disable-all.title": "Enable or disable all services", + "cookies.consent.app.disable-all.title": "Ota käyttöön tai poista käytöstä kaikki palvelut", + // "cookies.consent.update": "There were changes since your last visit, please update your consent.", "cookies.consent.update": "Viime käyntisi jälkeen on tehty muutoksia. Ole hyvä ja päivitä suostumuksesi.", @@ -2368,9 +2374,15 @@ // "cookies.consent.save": "Save", "cookies.consent.save": "Tallenna", + // "cookies.consent.content-notice.title": "Cookie Consent", + "cookies.consent.content-notice.title": "Evästeiden hyväksyntä", + // "cookies.consent.content-notice.description": "We collect and process your personal information for the following purposes: Authentication, Preferences, Acknowledgement and Statistics.
To learn more, please read our {privacyPolicy}.", "cookies.consent.content-notice.description": "Keräämme ja käsittelemme tietojasi seuraaviin tarkoituksiin: todentaminen, asetukset, kuittaus ja tilastot.
Lisätietoa saat lukemalla tämän: {privacyPolicy}.", + // "cookies.consent.content-notice.description.no-privacy": "We collect and process your personal information for the following purposes: Authentication, Preferences, Acknowledgement and Statistics.", + "cookies.consent.content-notice.description.no-privacy": "Keräämme ja käsittelemme tietojasi seuraaviin tarkoituksiin: todentaminen, asetukset, kuittaus ja tilastot.", + // "cookies.consent.content-notice.learnMore": "Customize", "cookies.consent.content-notice.learnMore": "Räätälöi", @@ -2386,6 +2398,12 @@ // "cookies.consent.content-modal.title": "Information that we collect", "cookies.consent.content-modal.title": "Keräämämme tieto", + // "cookies.consent.content-modal.services": "services", + "cookies.consent.content-modal.services": "palvelut", + + // "cookies.consent.content-modal.service": "service", + "cookies.consent.content-modal.service": "palvelu", + // "cookies.consent.app.title.authentication": "Authentication", "cookies.consent.app.title.authentication": "Todentaminen", diff --git a/src/assets/i18n/fr.json5 b/src/assets/i18n/fr.json5 index 98ba00b4d94..a5247d1425d 100644 --- a/src/assets/i18n/fr.json5 +++ b/src/assets/i18n/fr.json5 @@ -357,18 +357,6 @@ // "admin.access-control.epeople.breadcrumbs": "EPeople", "admin.access-control.epeople.breadcrumbs": "EPeople", - // "admin.access-control.epeople.edit.breadcrumbs": "New EPerson", - "admin.access-control.epeople.edit.breadcrumbs": "Nouvelle EPerson", - - // "admin.access-control.epeople.edit.title": "New EPerson", - "admin.access-control.epeople.edit.title": "Nouvelle EPerson", - - // "admin.access-control.epeople.add.breadcrumbs": "Add EPerson", - "admin.access-control.epeople.add.breadcrumbs": "Ajouter EPerson", - - // "admin.access-control.epeople.add.title": "Add EPerson", - "admin.access-control.epeople.add.title": "Ajouter EPerson", - // "admin.access-control.epeople.title": "EPeople", "admin.access-control.epeople.title": "EPeople", @@ -475,10 +463,10 @@ "admin.access-control.epeople.form.notification.failure.noActiveEPerson": "Aucune personne active actuellement", // "admin.access-control.epeople.form.notification.success.deleteMembership": "Deleted Membership From Group: \"{{name}}\"", - "admin.access-control.epeople.form.notification.success.deleteMembership": "Adhésion supprimée du groupe : \"{{name}}\"", + "admin.access-control.epeople.form.notification.success.deleteMembership": "Adhésion supprimée du groupe: \"{{name}}\"", // "admin.access-control.epeople.form.notification.failure.deleteMembership": "Can't Delete Membership From Group: \"{{name}}\"", - "admin.access-control.epeople.form.notification.failure.deleteMembership": "Impossible de supprimer l'adhésion au groupe : \"{{name}}\"", + "admin.access-control.epeople.form.notification.failure.deleteMembership": "Impossible de supprimer l'adhésion au groupe: \"{{name}}\"", // "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "Member of these groups:", "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "Membre des groupes suivants :", @@ -771,30 +759,6 @@ // "admin.access-control.groups.form.return": "Back", "admin.access-control.groups.form.return": "Retour", - // "admin.quality-assurance.breadcrumbs": "Quality Assurance", - "admin.quality-assurance.breadcrumbs": "Assurance qualité", - - // "admin.notifications.event.breadcrumbs": "Quality Assurance Suggestions", - "admin.notifications.event.breadcrumbs": "Suggestions d'assurance qualité", - - // "admin.notifications.event.page.title": "Quality Assurance Suggestions", - "admin.notifications.event.page.title": "Suggestions d'assurance qualité", - - // "admin.quality-assurance.page.title": "Quality Assurance", - "admin.quality-assurance.page.title": "Assurance qualité", - - // "admin.notifications.source.breadcrumbs": "Quality Assurance", - "admin.notifications.source.breadcrumbs": "Assurance qualité", - - // "admin.access-control.groups.form.tooltip.editGroupPage": "On this page, you can modify the properties and members of a group. In the top section, you can edit the group name and description, unless this is an admin group for a collection or community, in which case the group name and description are auto-generated and cannot be edited. In the following sections, you can edit group membership. See [the wiki](https://wiki.lyrasis.org/display/DSDOC7x/Create+or+manage+a+user+group) for more details.", - "admin.access-control.groups.form.tooltip.editGroupPage": "Sur cette page, vous pouvez modifier les propriétés et les membres d'un groupe. Dans la section supérieure, vous pouvez éditer le nom et la description du groupe, sauf s'il s'agit d'un groupe d'administrateurs d'une collection ou d'une communauté ; dans ce cas, le nom et la description du groupe sont générés automatiquement et ne peuvent pas être modifiés. Dans les sections suivantes, vous pouvez modifier l'appartenance au groupe. Voir [le wiki](https://wiki.lyrasis.org/display/DSDOC7x/Create+or+manage+a+user+group) pour plus de détails.", - - // "admin.access-control.groups.form.tooltip.editGroup.addEpeople": "To add or remove an EPerson to/from this group, either click the 'Browse All' button or use the search bar below to search for users (use the dropdown to the left of the search bar to choose whether to search by metadata or by email). Then click the plus icon for each user you wish to add in the list below, or the trash can icon for each user you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages.", - "admin.access-control.groups.form.tooltip.editGroup.addEpeople": "Pour ajouter ou retirer une EPerson à/de ce groupe, cliquez sur le bouton « Parcourir tout », ou utilisez la barre de recherche ci-dessous pour rechercher des utilisateurs (utilisez le menu déroulant à gauche de la barre de recherche pour choisir si vous souhaitez effectuer la recherche par métadonnées ou par courriel). Ensuite, cliquez sur l'icône + pour chaque utilisateur que vous souhaitez ajouter dans la liste ci-dessous, ou sur l'icône de la corbeille pour chaque utilisateur que vous souhaitez retirer. La liste ci-dessous peut comporter plusieurs pages : utilisez les contrôles de pagination sous la liste pour naviguer vers les pages suivantes.", - - // "admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "To add or remove a Subgroup to/from this group, either click the 'Browse All' button or use the search bar below to search for groups. Then click the plus icon for each group you wish to add in the list below, or the trash can icon for each group you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages.", - "admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "Pour ajouter ou retirer un sous-groupe à/de ce groupe, cliquez sur le bouton « Parcourir tout », ou utilisez la barre de recherche ci-dessous pour rechercher des groupes. Ensuite, cliquez sur l'icône + pour chaque groupe que vous souhaitez ajouter dans la liste ci-dessous, ou sur l'icône de la corbeille pour chaque groupe que vous souhaitez retirer. La liste ci-dessous peut comporter plusieurs pages : utilisez les contrôles de pagination sous la liste pour naviguer vers les pages suivantes.", - //"admin.reports.collections.title": "Collection Filter Report", "admin.reports.collections.title": "Rapport de collections filtrées", @@ -1134,21 +1098,12 @@ // "admin.workflow.item.workflow": "Workflow", "admin.workflow.item.workflow": "En traitement", - //"admin.workflow.item.workspace": "Workspace", - "admin.workflow.item.workspace": "Dépôts en cours", - // "admin.workflow.item.delete": "Delete", "admin.workflow.item.delete": "Supprimer", // "admin.workflow.item.send-back": "Send back", "admin.workflow.item.send-back": "Retourner au déposant", - //"admin.workflow.item.policies": "Policies", - "admin.workflow.item.policies": "Politiques", - - // "admin.workflow.item.supervision": "Supervision", - "admin.workflow.item.supervision": "Supervision", - // "admin.metadata-import.breadcrumbs": "Import Metadata", "admin.metadata-import.breadcrumbs": "Importer Métadonnées", @@ -1633,12 +1588,6 @@ // "collection.edit.return": "Back", "collection.edit.return": "Retour", - // "collection.edit.tabs.access-control.head": "Access Control", - "collection.edit.tabs.access-control.head": "Contrôle d'accès", - - // "collection.edit.tabs.access-control.title": "Collection Edit - Access Control", - "collection.edit.tabs.access-control.title": "Édition de Collection - Contrôle d'accès", - // "collection.edit.tabs.curate.head": "Curate", "collection.edit.tabs.curate.head": "Gestion du contenu", @@ -1794,12 +1743,6 @@ // "collection.listelement.badge": "Collection", "collection.listelement.badge": "Collection", - // "collection.logo": "Collection logo", - "collection.logo": "Logo de la collection", - - // "collection.page.browse.search.head": "Search", - "collection.page.browse.search.head": "Chercher", - // "collection.page.browse.recent.head": "Recent Submissions", "collection.page.browse.recent.head": "Dépôts récents", @@ -1818,9 +1761,6 @@ // "collection.page.news": "News", "collection.page.news": "Nouvelles", - // "collection.search.results.head": "Search Results", - "collection.search.results.head": "Résultats de recherche", - // "collection.select.confirm": "Confirm selected", "collection.select.confirm": "Confirmer la sélection", @@ -2004,12 +1944,6 @@ // "community.edit.tabs.curate.title": "Community Edit - Curate", "community.edit.tabs.curate.title": "Édition de communauté - Gestion du contenu", - // "community.edit.tabs.access-control.head": "Access Control", - "community.edit.tabs.access-control.head": "Contrôle d'accès", - - // "community.edit.tabs.access-control.title": "Community Edit - Access Control", - "community.edit.tabs.access-control.title": "Édition de Communauté - Contrôle d'accès", - // "community.edit.tabs.metadata.head": "Edit Metadata", "community.edit.tabs.metadata.head": "Éditer Métadonnées", @@ -2130,9 +2064,6 @@ // "community.all-lists.head": "Subcommunities and Collections", "community.all-lists.head": "Sous-communautés et collections", - //"community.search.results.head": "Search Results", - "community.search.results.head": "Résultats de recherche", - // "community.sub-collection-list.head": "Collections of this Community", "community.sub-collection-list.head": "Collections au sein de cette communauté", @@ -3308,15 +3239,6 @@ // "item.edit.tabs.curate.title": "Item Edit - Curate", "item.edit.tabs.curate.title": "Édition d'Item - Gestion de contenu", - // "item.edit.curate.title": "Curate Item: {{item}}", - "item.edit.curate.title": "Gestion de contenu de l'Item: {{item}}", - - // "item.edit.tabs.access-control.head": "Access Control", - "item.edit.tabs.access-control.head": "Contrôle d'accès", - - // "item.edit.tabs.access-control.title": "Item Edit - Access Control", - "item.edit.tabs.access-control.title": "Édition de l'Item - Contrôle d'accès", - // "item.edit.tabs.metadata.head": "Metadata", "item.edit.tabs.metadata.head": "Métadonnées", @@ -3564,12 +3486,6 @@ // "item.page.version.create": "Create new version", "item.page.version.create": "Créer une nouvelle version", - //"item.page.withdrawn": "Request a withdrawal for this item", - "item.page.withdrawn": "Demander le retrait de cet Item", - - //"item.page.reinstate": "Request reinstatement", - "item.page.reinstate": "Demander la réintégration de cet Item", - // "item.page.version.hasDraft": "A new version cannot be created because there is an in-progress submission in the version history", "item.page.version.hasDraft": "Une nouvelle version ne peut être créée car il y a une soumission en cours dans l'historique des versions", @@ -4143,15 +4059,6 @@ // "menu.section.new_process": "Process", "menu.section.new_process": "Processus", - //"menu.section.notifications": "Notifications", - "menu.section.notifications": "Notifications", - - //"menu.section.quality-assurance": "Quality Assurance", - "menu.section.quality-assurance": "Assurance qualité", - - //"menu.section.notifications_publication-claim": "Publication Claim", - "menu.section.notifications_publication-claim": "Réclamation de publication", - // "menu.section.pin": "Pin sidebar", "menu.section.pin": "Épingler le menu latéral", @@ -6493,90 +6400,9 @@ // "submission.workspace.generic.view": "View", "submission.workspace.generic.view": "Afficher", - //"submission.workspace.generic.view-help": "Select this option to view the item's metadata.", + // "submission.workspace.generic.view-help": "Select this option to view the item's metadata.", "submission.workspace.generic.view-help": "Sélectionner cette option pour afficher les métadonnées de l'item.", - //"submitter.empty": "N/A", - "submitter.empty": "S/O", - - //"subscriptions.modal.title": "Subscriptions", - "subscriptions.modal.title": "Abonnements", - - //"subscriptions.modal.type-frequency": "Type and frequency", - "subscriptions.modal.type-frequency": "Type et fréquence", - - //"subscriptions.modal.close": "Close", - "subscriptions.modal.close": "Fermer", - - //"subscriptions.modal.delete-info": "To remove this subscription, please visit the \"Subscriptions\" page under your user profile", - "subscriptions.modal.delete-info": "Pour vous désabonner, visitez la page Abonnements dans votre profil utilisateur", - - //"subscriptions.modal.new-subscription-form.type.content": "Content", - "subscriptions.modal.new-subscription-form.type.content": "Contenu", - - //"subscriptions.modal.new-subscription-form.frequency.D": "Daily", - "subscriptions.modal.new-subscription-form.frequency.D": "Quotidienne", - - //"subscriptions.modal.new-subscription-form.frequency.W": "Weekly", - "subscriptions.modal.new-subscription-form.frequency.W": "Hebdomadaire", - - //"subscriptions.modal.new-subscription-form.frequency.M": "Monthly", - "subscriptions.modal.new-subscription-form.frequency.M": "Mensuelle", - - //"subscriptions.tooltip": "Subscribe", - "subscriptions.tooltip": "S'abonner", - - //"subscriptions.modal.new-subscription-form.submit": "Submit", - "subscriptions.modal.new-subscription-form.submit": "Soumettre", - - //"subscriptions.modal.new-subscription-form.processing": "Processing...", - "subscriptions.modal.new-subscription-form.processing": "En traitement...", - - //"subscriptions.modal.create.success": "Subscribed to {{ type }} successfully.", - "subscriptions.modal.create.success": "Abonnement à {{ type }} réussi.", - - //"subscriptions.modal.delete.success": "Subscription deleted successfully", - "subscriptions.modal.delete.success": "L'abonnement a été résilié avec succès", - - //"subscriptions.modal.update.success": "Subscription to {{ type }} updated successfully", - "subscriptions.modal.update.success": "L'abonnement à {{ type }} a été mis à jour avec succès", - - //"subscriptions.modal.create.error": "An error occurs during the subscription creation", - "subscriptions.modal.create.error": "Une erreur s'est produite lors de la création de l'abonnement", - - //"subscriptions.modal.delete.error": "An error occurs during the subscription delete", - "subscriptions.modal.delete.error": "Une erreur s'est produite lors de la résiliation de l'abonnement", - - //"subscriptions.modal.update.error": "An error occurs during the subscription update", - "subscriptions.modal.update.error": "Une erreur s'est produite lors de la mise à jour de l'abonnement", - - //"subscriptions.table.dso": "Subject", - "subscriptions.table.dso": "Sujet", - - //"subscriptions.table.subscription_type": "Subscription Type", - "subscriptions.table.subscription_type": "Type d'abonnement", - - //"subscriptions.table.subscription_frequency": "Subscription Frequency", - "subscriptions.table.subscription_frequency": "Fréquence", - - //"subscriptions.table.action": "Action", - "subscriptions.table.action": "Action", - - //"subscriptions.table.edit": "Edit", - "subscriptions.table.edit": "Éditer", - - //"subscriptions.table.delete": "Delete", - "subscriptions.table.delete": "Supprimer", - - //"subscriptions.table.not-available": "Not available", - "subscriptions.table.not-available": "Indisponible", - - //"subscriptions.table.not-available-message": "The subscribed item has been deleted, or you don't currently have the permission to view it", - "subscriptions.table.not-available-message": "L'Item auquel vous étiez abonné a été supprimé, ou vous n'êtes pas autorisé à le consulter.", - - //"subscriptions.table.empty.message": "You do not have any subscriptions at this time. To subscribe to email updates for a Community or Collection, use the subscription button on the object's page.", - "subscriptions.table.empty.message": "Vous n'avez aucun abonnement. Pour vous abonnez à des mises à jour par courriel pour une commmunauté ou une collection, utilisez le bouton d'abonnement sur la page de l'Item.", - // "thumbnail.default.alt": "Thumbnail Image", "thumbnail.default.alt": "Vignette d'image", @@ -6744,378 +6570,6 @@ // "idle-modal.extend-session": "Extend session", "idle-modal.extend-session": "Prolonger la session", - //"researcher.profile.action.processing": "Processing...", - "researcher.profile.action.processing": "En traitement...", - - //"researcher.profile.associated": "Researcher profile associated", - "researcher.profile.associated": "Profil du chercheur associé", - - //"researcher.profile.change-visibility.fail": "An unexpected error occurs while changing the profile visibility", - "researcher.profile.change-visibility.fail": "Une erreur inattendue s'est produite pendant le changement apporté à la visibilité du profil.", - - //"researcher.profile.create.new": "Create new", - "researcher.profile.create.new": "Créer un nouveau", - - //"researcher.profile.create.success": "Researcher profile created successfully", - "researcher.profile.create.success": "Profil créé avec succès", - - //"researcher.profile.create.fail": "An error occurs during the researcher profile creation", - "researcher.profile.create.fail": "Une erreur s'est produite lors de la création du profil", - - //"researcher.profile.delete": "Delete", - "researcher.profile.delete": "Supprimer", - - //"researcher.profile.expose": "Expose", - "researcher.profile.expose": "Exposer", - - //"researcher.profile.hide": "Hide", - "researcher.profile.hide": "Cacher", - - //"researcher.profile.not.associated": "Researcher profile not yet associated", - "researcher.profile.not.associated": "Profil non associé", - - //"researcher.profile.view": "View", - "researcher.profile.view": "Voir", - - //"researcher.profile.private.visibility": "PRIVATE", - "researcher.profile.private.visibility": "PRIVÉ", - - //"researcher.profile.public.visibility": "PUBLIC", - "researcher.profile.public.visibility": "PUBLIC", - - //"researcher.profile.status": "Status:", - "researcher.profile.status": "Statut:", - - //"researcherprofile.claim.not-authorized": "You are not authorized to claim this item. For more details contact the administrator(s).", - "researcherprofile.claim.not-authorized": "Vous n'êtes pas autorisé à réclamer cet item. Pour plus de détails contacter la personne administratrice.", - - //"researcherprofile.error.claim.body": "An error occurred while claiming the profile, please try again later", - "researcherprofile.error.claim.body": "Une erreur s'est produite lors de la réclamation du profil, veuillez réessayer plus tard.", - - //"researcherprofile.error.claim.title": "Error", - "researcherprofile.error.claim.title": "Erreur", - - //"researcherprofile.success.claim.body": "Profile claimed with success", - "researcherprofile.success.claim.body": "Profil réclamé avec succès", - - //"researcherprofile.success.claim.title": "Success", - "researcherprofile.success.claim.title": "Succès", - - //"person.page.orcid.create": "Create an ORCID ID", - "person.page.orcid.create": "Créer un identifiant ORCID", - - //"person.page.orcid.granted-authorizations": "Granted authorizations", - "person.page.orcid.granted-authorizations": "Autorisations accordées", - - //"person.page.orcid.grant-authorizations": "Grant authorizations", - "person.page.orcid.grant-authorizations": "Accorder des autorisations", - - //"person.page.orcid.link": "Connect to ORCID ID", - "person.page.orcid.link": "Se connecter à ORCID", - - //"person.page.orcid.link.processing": "Linking profile to ORCID...", - "person.page.orcid.link.processing": "Liaison du profil avec ORCID en cours...", - - //"person.page.orcid.link.error.message": "Something went wrong while connecting the profile with ORCID. If the problem persists, contact the administrator.", - "person.page.orcid.link.error.message": "Quelque chose a échoué lors de la connection du profil avec ORCID. Si le problème persiste, contacter la personne administratice.", - - //"person.page.orcid.orcid-not-linked-message": "The ORCID iD of this profile ({{ orcid }}) has not yet been connected to an account on the ORCID registry or the connection is expired.", - "person.page.orcid.orcid-not-linked-message": "L'identifiant ORCID du profil ({{ orcid }}) n'a pas encore été connecté à une compte du registre ORCID ou la connection a expiré. ", - - //"person.page.orcid.unlink": "Disconnect from ORCID", - "person.page.orcid.unlink": "Déconnecter d'ORCID", - - //"person.page.orcid.unlink.processing": "Processing...", - "person.page.orcid.unlink.processing": "Traitement en cours...", - - //"person.page.orcid.missing-authorizations": "Missing authorizations", - "person.page.orcid.missing-authorizations": "Autorisations manquantes", - - //"person.page.orcid.missing-authorizations-message": "The following authorizations are missing:", - "person.page.orcid.missing-authorizations-message": "Les autorisations suivantes sont manquantes :", - - //"person.page.orcid.no-missing-authorizations-message": "Great! This box is empty, so you have granted all access rights to use all functions offers by your institution.", - "person.page.orcid.no-missing-authorizations-message": "Cette boite est vide, vous avez autorisé l'utilisation de toutes les fonctions proposées par votre organisation.", - - //"person.page.orcid.no-orcid-message": "No ORCID iD associated yet. By clicking on the button below it is possible to link this profile with an ORCID account.", - "person.page.orcid.no-orcid-message": "Aucun identifiant ORCID n'est encore associé. En cliquant sur le bouton ci-dessous, il est possible de lier ce profil à un compte ORCID.", - - //"person.page.orcid.profile-preferences": "Profile preferences", - "person.page.orcid.profile-preferences": "Préférences du profil", - - //"person.page.orcid.funding-preferences": "Funding preferences", - "person.page.orcid.funding-preferences": "Préférence pour la section Financement", - - //"person.page.orcid.publications-preferences": "Publication preferences", - "person.page.orcid.publications-preferences": "Préférence pour la section Publication", - - //"person.page.orcid.remove-orcid-message": "If you need to remove your ORCID, please contact the repository administrator", - "person.page.orcid.remove-orcid-message": "Si vous avez besoin de retirer votre ORCID, contacter la personne administratrice du dépôt.", - - //"person.page.orcid.save.preference.changes": "Update settings", - "person.page.orcid.save.preference.changes": "Mettre à jour les configurations", - - //"person.page.orcid.sync-profile.affiliation": "Affiliation", - "person.page.orcid.sync-profile.affiliation": "Affiliation", - - //"person.page.orcid.sync-profile.biographical": "Biographical data", - "person.page.orcid.sync-profile.biographical": "Données biographiques", - - //"person.page.orcid.sync-profile.education": "Education", - "person.page.orcid.sync-profile.education": "Éducation", - - //"person.page.orcid.sync-profile.identifiers": "Identifiers", - "person.page.orcid.sync-profile.identifiers": "Identifiants", - - //"person.page.orcid.sync-fundings.all": "All fundings", - "person.page.orcid.sync-fundings.all": "Tous les financements", - - //"person.page.orcid.sync-fundings.mine": "My fundings", - "person.page.orcid.sync-fundings.mine": "Mes financements", - - //"person.page.orcid.sync-fundings.my_selected": "Selected fundings", - "person.page.orcid.sync-fundings.my_selected": "Financements sélectionnés", - - //"person.page.orcid.sync-fundings.disabled": "Disabled", - "person.page.orcid.sync-fundings.disabled": "Désactivé", - - //"person.page.orcid.sync-publications.all": "All publications", - "person.page.orcid.sync-publications.all": "Toutes les publications", - - //"person.page.orcid.sync-publications.mine": "My publications", - "person.page.orcid.sync-publications.mine": "Mes publications", - - //"person.page.orcid.sync-publications.my_selected": "Selected publications", - "person.page.orcid.sync-publications.my_selected": "Publications sélectionnées", - - //"person.page.orcid.sync-publications.disabled": "Disabled", - "person.page.orcid.sync-publications.disabled": "Désactivé", - - //"person.page.orcid.sync-queue.discard": "Discard the change and do not synchronize with the ORCID registry", - "person.page.orcid.sync-queue.discard": "Ignorer les changements et ne pas synchroniser avec le registre ORCID.", - - //"person.page.orcid.sync-queue.discard.error": "The discarding of the ORCID queue record failed", - "person.page.orcid.sync-queue.discard.error": "L'annulation de la file d'attente ORCID a échoué.", - - //"person.page.orcid.sync-queue.discard.success": "The ORCID queue record have been discarded successfully", - "person.page.orcid.sync-queue.discard.success": "La file d'attente ORCID a été annulée avec succès.", - - //"person.page.orcid.sync-queue.empty-message": "The ORCID queue registry is empty", - "person.page.orcid.sync-queue.empty-message": "La file d'attente ORCID est vide.", - - //"person.page.orcid.sync-queue.table.header.type": "Type", - "person.page.orcid.sync-queue.table.header.type": "Type", - - //"person.page.orcid.sync-queue.table.header.description": "Description", - "person.page.orcid.sync-queue.table.header.description": "Description", - - //"person.page.orcid.sync-queue.table.header.action": "Action", - "person.page.orcid.sync-queue.table.header.action": "Action", - - //"person.page.orcid.sync-queue.description.affiliation": "Affiliations", - "person.page.orcid.sync-queue.description.affiliation": "Affiliations", - - //"person.page.orcid.sync-queue.description.country": "Country", - "person.page.orcid.sync-queue.description.country": "Pays", - - //"person.page.orcid.sync-queue.description.education": "Educations", - "person.page.orcid.sync-queue.description.education": "Éducation", - - //"person.page.orcid.sync-queue.description.external_ids": "External ids", - "person.page.orcid.sync-queue.description.external_ids": "Identifiants externes", - - //"person.page.orcid.sync-queue.description.other_names": "Other names", - "person.page.orcid.sync-queue.description.other_names": "Autres noms", - - //"person.page.orcid.sync-queue.description.qualification": "Qualifications", - "person.page.orcid.sync-queue.description.qualification": "Qualifications", - - //"person.page.orcid.sync-queue.description.researcher_urls": "Researcher urls", - "person.page.orcid.sync-queue.description.researcher_urls": "URLs du chercheur", - - //"person.page.orcid.sync-queue.description.keywords": "Keywords", - "person.page.orcid.sync-queue.description.keywords": "Mots clés", - - //"person.page.orcid.sync-queue.tooltip.insert": "Add a new entry in the ORCID registry", - "person.page.orcid.sync-queue.tooltip.insert": "Ajouter une nouvelle entrée dans le registre ORCID", - - //"person.page.orcid.sync-queue.tooltip.update": "Update this entry on the ORCID registry", - "person.page.orcid.sync-queue.tooltip.update": "Mettre à jour cette entrée dans le registre ORCID", - - //"person.page.orcid.sync-queue.tooltip.delete": "Remove this entry from the ORCID registry", - "person.page.orcid.sync-queue.tooltip.delete": "Supprimer cette entrée du registre ORCID", - - //"person.page.orcid.sync-queue.tooltip.publication": "Publication", - "person.page.orcid.sync-queue.tooltip.publication": "Publication", - - //"person.page.orcid.sync-queue.tooltip.project": "Project", - "person.page.orcid.sync-queue.tooltip.project": "Projet", - - //"person.page.orcid.sync-queue.tooltip.affiliation": "Affiliation", - "person.page.orcid.sync-queue.tooltip.affiliation": "Affiliation", - - //"person.page.orcid.sync-queue.tooltip.education": "Education", - "person.page.orcid.sync-queue.tooltip.education": "Éducation", - - //"person.page.orcid.sync-queue.tooltip.qualification": "Qualification", - "person.page.orcid.sync-queue.tooltip.qualification": "Qualification", - - //"person.page.orcid.sync-queue.tooltip.other_names": "Other name", - "person.page.orcid.sync-queue.tooltip.other_names": "Autre nom", - - //"person.page.orcid.sync-queue.tooltip.country": "Country", - "person.page.orcid.sync-queue.tooltip.country": "Pays", - - //"person.page.orcid.sync-queue.tooltip.keywords": "Keyword", - "person.page.orcid.sync-queue.tooltip.keywords": "Mot clé", - - //"person.page.orcid.sync-queue.tooltip.external_ids": "External identifier", - "person.page.orcid.sync-queue.tooltip.external_ids": "Identifiant externe", - - //"person.page.orcid.sync-queue.tooltip.researcher_urls": "Researcher url", - "person.page.orcid.sync-queue.tooltip.researcher_urls": "URL du chercheur", - - //"person.page.orcid.sync-queue.send": "Synchronize with ORCID registry", - "person.page.orcid.sync-queue.send": "Synchroniser avec le registre ORCID", - - //"person.page.orcid.sync-queue.send.unauthorized-error.title": "The submission to ORCID failed for missing authorizations.", - "person.page.orcid.sync-queue.send.unauthorized-error.title": "La transmission à ORCID a échoué en raison d'autorisations manquantes.", - - //"person.page.orcid.sync-queue.send.unauthorized-error.content": "Click here to grant again the required permissions. If the problem persists, contact the administrator", - "person.page.orcid.sync-queue.send.unauthorized-error.content": "Cliquer ici afin d'accorder à nouveau les permissions nécessaires. Si le problème persiste, contacter l'administrateur.", - - //"person.page.orcid.sync-queue.send.bad-request-error": "The submission to ORCID failed because the resource sent to ORCID registry is not valid", - "person.page.orcid.sync-queue.send.bad-request-error": "La transmission à ORCID a échoué en raison du fait que la ressource envoyée n'est pas valide.", - - //"person.page.orcid.sync-queue.send.error": "The submission to ORCID failed", - "person.page.orcid.sync-queue.send.error": "La transmission à ORCID a échoué.", - - //"person.page.orcid.sync-queue.send.conflict-error": "The submission to ORCID failed because the resource is already present on the ORCID registry", - "person.page.orcid.sync-queue.send.conflict-error": "La transmission à ORCID a échoué en raison du fait que la ressource est déjà présente dans le registre ORCID.", - - //"person.page.orcid.sync-queue.send.not-found-warning": "The resource does not exists anymore on the ORCID registry.", - "person.page.orcid.sync-queue.send.not-found-warning": "La ressource n'existe plus dans le registre ORCID.", - - //"person.page.orcid.sync-queue.send.success": "The submission to ORCID was completed successfully", - "person.page.orcid.sync-queue.send.success": "La transmission à ORCID a été effectuée avec succès.", - - //"person.page.orcid.sync-queue.send.validation-error": "The data that you want to synchronize with ORCID is not valid", - "person.page.orcid.sync-queue.send.validation-error": "Les données que vous souhaitez synchroniser avec ORCID ne sont pas valides.", - - //"person.page.orcid.sync-queue.send.validation-error.amount-currency.required": "The amount's currency is required", - "person.page.orcid.sync-queue.send.validation-error.amount-currency.required": "La devise du montant est requise.", - - //"person.page.orcid.sync-queue.send.validation-error.external-id.required": "The resource to be sent requires at least one identifier", - "person.page.orcid.sync-queue.send.validation-error.external-id.required": "La ressource à transmettre doit avoir au moins un identifiant.", - - //"person.page.orcid.sync-queue.send.validation-error.title.required": "The title is required", - "person.page.orcid.sync-queue.send.validation-error.title.required": "Le titre est obligatoire.", - - //"person.page.orcid.sync-queue.send.validation-error.type.required": "The dc.type is required", - "person.page.orcid.sync-queue.send.validation-error.type.required": "Le type de document est obligatoire.", - - //"person.page.orcid.sync-queue.send.validation-error.start-date.required": "The start date is required", - "person.page.orcid.sync-queue.send.validation-error.start-date.required": "La date de début est obbligatoire.", - - //"person.page.orcid.sync-queue.send.validation-error.funder.required": "The funder is required", - "person.page.orcid.sync-queue.send.validation-error.funder.required": "L'organisme subventionnaire est obligatoire.", - - //"person.page.orcid.sync-queue.send.validation-error.country.invalid": "Invalid 2 digits ISO 3166 country", - "person.page.orcid.sync-queue.send.validation-error.country.invalid": "Code de pays ISO 3166 à 2 chiffres invalide", - - //"person.page.orcid.sync-queue.send.validation-error.organization.required": "The organization is required", - "person.page.orcid.sync-queue.send.validation-error.organization.required": "L'organisation est obligatoire.", - - //"person.page.orcid.sync-queue.send.validation-error.organization.name-required": "The organization's name is required", - "person.page.orcid.sync-queue.send.validation-error.organization.name-required": "Le nom de l'organisation est obligatoire.", - - //"person.page.orcid.sync-queue.send.validation-error.publication.date-invalid": "The publication date must be one year after 1900", - "person.page.orcid.sync-queue.send.validation-error.publication.date-invalid": "La date de publication doit être d'au moins un an après 1900.", - - //"person.page.orcid.sync-queue.send.validation-error.organization.address-required": "The organization to be sent requires an address", - "person.page.orcid.sync-queue.send.validation-error.organization.address-required": "L'organisation a transmettre doit avoir une adresse.", - - //"person.page.orcid.sync-queue.send.validation-error.organization.city-required": "The address of the organization to be sent requires a city", - "person.page.orcid.sync-queue.send.validation-error.organization.city-required": "L'adresse de l'organisation à transmettre doit mentionner une ville.", - - //"person.page.orcid.sync-queue.send.validation-error.organization.country-required": "The address of the organization to be sent requires a valid 2 digits ISO 3166 country", - "person.page.orcid.sync-queue.send.validation-error.organization.country-required": "L'adresse de l'organisation à transmettre doit avoir une code de pays ISO 3166 à 2 chiffres valide.", - - //"person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.required": "An identifier to disambiguate organizations is required. Supported ids are GRID, Ringgold, Legal Entity identifiers (LEIs) and Crossref Funder Registry identifiers", - "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.required": "Un identifiant pour désambiguer l'orgnisation est obligatoire. Les identifiants possibles sont GRID, Ringgold, Legal Entity identifiers (LEIs) et Crossref Funder Registry identifiers", - - //"person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.value-required": "The organization's identifiers requires a value", - "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.value-required": "Une valeur pour l'identifiant de l'organisation est obligatoire.", - - //"person.page.orcid.sync-queue.send.validation-error.disambiguation-source.required": "The organization's identifiers requires a source", - "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.required": "La source de l'identifiant de l'organisation est obligatoire.", - - //"person.page.orcid.sync-queue.send.validation-error.disambiguation-source.invalid": "The source of one of the organization identifiers is invalid. Supported sources are RINGGOLD, GRID, LEI and FUNDREF", - "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.invalid": "La source d'un des identifiants d'organisation est invalide. Les sources possibles sont RINGGOLD, GRID, LEI and FUNDREF", - - //"person.page.orcid.synchronization-mode": "Synchronization mode", - "person.page.orcid.synchronization-mode": "Mode de synchronisation", - - //"person.page.orcid.synchronization-mode.batch": "Batch", - "person.page.orcid.synchronization-mode.batch": "En lot", - - //"person.page.orcid.synchronization-mode.label": "Synchronization mode", - "person.page.orcid.synchronization-mode.label": "Mode de synchronisation", - - //"person.page.orcid.synchronization-mode-message": "Please select how you would like synchronization to ORCID to occur. The options include \"Manual\" (you must send your data to ORCID manually), or \"Batch\" (the system will send your data to ORCID via a scheduled script).", - "person.page.orcid.synchronization-mode-message": "Sélectionner le mode de synchronisation vers ORCID. Les options sont \"Manuel\" (vous devrez sélectionner les données à transmettre vers ORCID manuellement), ou \"En lot\" (le système transmettra vos données vers ORCID automatiquement).", - - //"person.page.orcid.synchronization-mode-funding-message": "Select whether to send your linked Project entities to your ORCID record's list of funding information.", - "person.page.orcid.synchronization-mode-funding-message": "Sélectionnez si vous souhaitez transmettre vos projets de recherche vers votre profil ORCID.", - - //"person.page.orcid.synchronization-mode-publication-message": "Select whether to send your linked Publication entities to your ORCID record's list of works.", - "person.page.orcid.synchronization-mode-publication-message": "Sélectionnez si vous souhaitez transmettre vos publications vers votre profil ORCID.", - - //"person.page.orcid.synchronization-mode-profile-message": "Select whether to send your biographical data or personal identifiers to your ORCID record.", - "person.page.orcid.synchronization-mode-profile-message": "Sélectionnez si vous souhaitez transmettre vos données biographiques vers votre profil ORCID.", - - //"person.page.orcid.synchronization-settings-update.success": "The synchronization settings have been updated successfully", - "person.page.orcid.synchronization-settings-update.success": "Les paramètres de synchronisation ont été mis à jour avec succès.", - - //"person.page.orcid.synchronization-settings-update.error": "The update of the synchronization settings failed", - "person.page.orcid.synchronization-settings-update.error": "La mise à jour des paramètres de synchronisation a échoué.", - - //"person.page.orcid.synchronization-mode.manual": "Manual", - "person.page.orcid.synchronization-mode.manual": "Manuel", - - //"person.page.orcid.scope.authenticate": "Get your ORCID iD", - "person.page.orcid.scope.authenticate": "Obtenez votre identifiant ORCID", - - //"person.page.orcid.scope.read-limited": "Read your information with visibility set to Trusted Parties", - "person.page.orcid.scope.read-limited": "Consultez vos informations ayant le paramètre de visibilité réglé sur Parties de confiance.", - - //"person.page.orcid.scope.activities-update": "Add/update your research activities", - "person.page.orcid.scope.activities-update": "Ajouter ou mettre à jour vos activités de recherche", - - //"person.page.orcid.scope.person-update": "Add/update other information about you", - "person.page.orcid.scope.person-update": "Ajouter ou mettre à jour d'autre information sur vous", - - //"person.page.orcid.unlink.success": "The disconnection between the profile and the ORCID registry was successful", - "person.page.orcid.unlink.success": "La déconnexion entre votre profil et le registre ORCID a été effectuée avec succès.", - - //"person.page.orcid.unlink.error": "An error occurred while disconnecting between the profile and the ORCID registry. Try again", - "person.page.orcid.unlink.error": "Une erreur s'est produite lors de la déconnexion entre votre profil et le registre ORCID. Veuillez réessayer.", - - //"person.orcid.sync.setting": "ORCID Synchronization settings", - "person.orcid.sync.setting": "Paramètres de synchronisation ORCID", - - //"person.orcid.registry.queue": "ORCID Registry Queue", - "person.orcid.registry.queue": "Liste d'attente pour le registre ORCID", - - //"person.orcid.registry.auth": "ORCID Authorizations", - "person.orcid.registry.auth": "Autorisation ORCID", - - //"home.recent-submissions.head": "Recent Submissions", - "home.recent-submissions.head": "Dépôts récents", - - //"listable-notification-object.default-message": "This object couldn't be retrieved", - "listable-notification-object.default-message": "Cet objet n'a pas été trouvé.", - // "system-wide-alert-banner.retrieval.error": "Something went wrong retrieving the system-wide alert banner", "system-wide-alert-banner.retrieval.error": "Une erreur s'est produite lors de la récupération de la bannière du message d'avertissement", @@ -7131,6 +6585,8 @@ // "system-wide-alert-banner.countdown.minutes": "{{minutes}} minute(s):", "system-wide-alert-banner.countdown.minutes": "{{minutes}} minute(s):", + + // "menu.section.system-wide-alert": "System-wide Alert", "menu.section.system-wide-alert": "Messages d'avertissement", @@ -7243,1177 +6699,6 @@ //"access-control-cancel": "Cancel", "access-control-cancel": "Annuler", - // "item-access-control-title": "This form allows you to perform changes to the access conditions of the item's metadata or its bitstreams.", - "item-access-control-title": "Ce formulaire vous permet de modifier les conditions d'accès aux métadonnées de l'Item ou à ses Bitstreams.", - - // "access-control-execute": "Execute", - "access-control-execute": "Exécuter", - - // "access-control-add-more": "Add more", - "access-control-add-more": "Ajouter plus", - - // "access-control-remove": "Remove access condition", - "access-control-remove": "Supprimer la condition d'accès", - - // "access-control-select-bitstreams-modal.title": "Select bitstreams", - "access-control-select-bitstreams-modal.title": "Sélectionner les Bitstreams", - - // "access-control-select-bitstreams-modal.no-items": "No items to show.", - "access-control-select-bitstreams-modal.no-items": "Aucun Item à afficher.", - - // "access-control-select-bitstreams-modal.close": "Close", - "access-control-select-bitstreams-modal.close": "Fermer", - - // "access-control-option-label": "Access condition type", - "access-control-option-label": "Type de condition d'accès", - - // "access-control-option-note": "Choose an access condition to apply to selected objects.", - "access-control-option-note": "Choisissez une condition d'accès à appliquer aux objets sélectionnés.", - - // "access-control-option-start-date": "Grant access from", - "access-control-option-start-date": "Accorder l'accès à partir de", - - //"access-control-option-start-date-note": "Select the date from which the related access condition is applied", - "access-control-option-start-date-note": "Sélectionnez la date à partir de laquelle la condition d'accès liée est appliquée", - - // "access-control-option-end-date": "Grant access until", - "access-control-option-end-date": "Accorder l'accès jusqu'à", - - // "access-control-option-end-date-note": "Select the date until which the related access condition is applied", - "access-control-option-end-date-note": "Sélectionnez la date jusqu'à laquelle la condition d'accès liée est appliquée", - - //"vocabulary-treeview.search.form.add": "Add", - "vocabulary-treeview.search.form.add": "Ajouter", - - //"admin.notifications.publicationclaim.breadcrumbs": "Publication Claim", - "admin.notifications.publicationclaim.breadcrumbs": "Réclamer une publication", - - //"admin.notifications.publicationclaim.page.title": "Publication Claim", - "admin.notifications.publicationclaim.page.title": "Réclamer une publication", - - //"coar-notify-support.title": "COAR Notify Protocol", - "coar-notify-support.title": "Protocole COAR Notify", - - //"coar-notify-support-title.content": "Here, we fully support the COAR Notify protocol, which is designed to enhance the communication between repositories. To learn more about the COAR Notify protocol, visit the COAR Notify website.", - "coar-notify-support-title.content": "Le protocole COAR Notify est destiné à améliorer la communication entre dépôts. Afin d'en savoir plus sur ce protocole, consulter le site web COAR Notify.", - - //"coar-notify-support.ldn-inbox.title": "LDN InBox", - "coar-notify-support.ldn-inbox.title": "Boîte aux lettres LDN", - - //"coar-notify-support.ldn-inbox.content": "For your convenience, our LDN (Linked Data Notifications) InBox is easily accessible at {{ ldnInboxUrl }}. The LDN InBox enables seamless communication and data exchange, ensuring efficient and effective collaboration.", - "coar-notify-support.ldn-inbox.content": "La boîte aux lettres LDN (Linked Data Notifications) est accessible à l'adresse {{ ldnInboxUrl }}. La boîte aux lettres LDN permet la communication et l'échange de données afin de garantir une collaboration effective et efficiente.", - - //"coar-notify-support.message-moderation.title": "Message Moderation", - "coar-notify-support.message-moderation.title": "Modération des messages", - - //"coar-notify-support.message-moderation.content": "To ensure a secure and productive environment, all incoming LDN messages are moderated. If you are planning to exchange information with us, kindly reach out via our dedicated", - "coar-notify-support.message-moderation.content": "Afin d'assurer un environnement sécuritaire et productif, tous les messages LDN entrants font l'objet d'une modération. Si vous envisagez d'échanger de l'information avec nous, veuillez nous contacter en utilisant notre", - - //"coar-notify-support.message-moderation.feedback-form": " Feedback form.", - "coar-notify-support.message-moderation.feedback-form": " formulaire.", - - //"service.overview.delete.header": "Delete Service", - "service.overview.delete.header": "Supprimer le service", - - //"ldn-registered-services.title": "Registered Services", - "ldn-registered-services.title": "Services enregistrés", - - //"ldn-registered-services.table.name": "Name", - "ldn-registered-services.table.name": "Nom", - - //"ldn-registered-services.table.description": "Description", - "ldn-registered-services.table.description": "Description", - - //"ldn-registered-services.table.status": "Status", - "ldn-registered-services.table.status": "Statut", - - //"ldn-registered-services.table.action": "Action", - "ldn-registered-services.table.action": "Action", - - //"ldn-registered-services.new": "NEW", - "ldn-registered-services.new": "NOUVEAU", - - //"ldn-registered-services.new.breadcrumbs": "Registered Services", - "ldn-registered-services.new.breadcrumbs": "Services enregistrés", - - //"ldn-service.overview.table.enabled": "Enabled", - "ldn-service.overview.table.enabled": "Activé", - - //"ldn-service.overview.table.disabled": "Disabled", - "ldn-service.overview.table.disabled": "Désactivé", - - //"ldn-service.overview.table.clickToEnable": "Click to enable", - "ldn-service.overview.table.clickToEnable": "Cliquer pour activer", - - //"ldn-service.overview.table.clickToDisable": "Click to disable", - "ldn-service.overview.table.clickToDisable": "Cliquer pour désactiver", - - //"ldn-edit-registered-service.title": "Edit Service", - "ldn-edit-registered-service.title": "Éditer le service", - - //"ldn-create-service.title": "Create service", - "ldn-create-service.title": "Créer un service", - - //"service.overview.create.modal": "Create Service", - "service.overview.create.modal": "Créer un service", - - //"service.overview.create.body": "Please confirm the creation of this service.", - "service.overview.create.body": "S'il vous plaît, confirmer la création de ce service.", - - //"ldn-service-status": "Status", - "ldn-service-status": "Statut", - - //"service.confirm.create": "Create", - "service.confirm.create": "Créer", - - //"service.refuse.create": "Cancel", - "service.refuse.create": "Annuler", - - //"ldn-register-new-service.title": "Register a new service", - "ldn-register-new-service.title": "Enregistrer un nouveau service", - - //"ldn-new-service.form.label.submit": "Save", - "ldn-new-service.form.label.submit": "Sauvegarder", - - //"ldn-new-service.form.label.name": "Name", - "ldn-new-service.form.label.name": "Nom", - - //"ldn-new-service.form.label.description": "Description", - "ldn-new-service.form.label.description": "Description", - - //"ldn-new-service.form.label.url": "Service URL", - "ldn-new-service.form.label.url": "URL du service", - - //"ldn-new-service.form.label.ip-range": "Service IP range", - "ldn-new-service.form.label.ip-range": "Intervalle IP du service", - - //"ldn-new-service.form.label.score": "Level of trust", - "ldn-new-service.form.label.score": "Niveau de confiance", - - //"ldn-new-service.form.label.ldnUrl": "LDN Inbox URL", - "ldn-new-service.form.label.ldnUrl": "URL de la boîte aux lettres LDN", - - //"ldn-new-service.form.placeholder.name": "Please provide service name", - "ldn-new-service.form.placeholder.name": "S'il vous plaît, fournissez le nom du service", - - //"ldn-new-service.form.placeholder.description": "Please provide a description regarding your service", - "ldn-new-service.form.placeholder.description": "S'il vous plaît, décrivez votre service", - - //"ldn-new-service.form.placeholder.url": "Please input the URL for users to check out more information about the service", - "ldn-new-service.form.placeholder.url": "S'il vous plaît, fournissez l'URL pour les usagers afin qu'ils puissent consulter plus d'information sur le service.", - - //"ldn-new-service.form.placeholder.lowerIp": "IPv4 range lower bound", - "ldn-new-service.form.placeholder.lowerIp": "Limite inférieure de l'intervalle IPv4", - - //"ldn-new-service.form.placeholder.upperIp": "IPv4 range upper bound", - "ldn-new-service.form.placeholder.upperIp": "Limite supérieure de l'intervalle IPv4", - - //"ldn-new-service.form.placeholder.ldnUrl": "Please specify the URL of the LDN Inbox", - "ldn-new-service.form.placeholder.ldnUrl": "S'il vous plaît, spécifiez l'URL de la boîte aux lettres LDN", - - //"ldn-new-service.form.placeholder.score": "Please enter a value between 0 and 1. Use the “.” as decimal separator", - "ldn-new-service.form.placeholder.score": "S'il vous plaît, saisissez une valeur entre 0 et 1. Utilisez le “.” comme séparateur de décimale.", - - //"ldn-service.form.label.placeholder.default-select": "Select a pattern", - "ldn-service.form.label.placeholder.default-select": "Sélectionnez un modèle", - - //"ldn-service.form.pattern.ack-accept.label": "Acknowledge and Accept", - "ldn-service.form.pattern.ack-accept.label": "Accuser réception et accepter", - - //"ldn-service.form.pattern.ack-accept.description": "This pattern is used to acknowledge and accept a request (offer). It implies an intention to act on the request.", - "ldn-service.form.pattern.ack-accept.description": "Ce modèle est utilisé pour accuser réception et accepter une requête (offre). Il implique une intention de donner suite à la requête.", - - //"ldn-service.form.pattern.ack-accept.category": "Acknowledgements", - "ldn-service.form.pattern.ack-accept.category": "Accusés de réception", - - //"ldn-service.form.pattern.ack-reject.label": "Acknowledge and Reject", - "ldn-service.form.pattern.ack-reject.label": "Accuser réception et refuser", - - //"ldn-service.form.pattern.ack-reject.description": "This pattern is used to acknowledge and reject a request (offer). It signifies no further action regarding the request.", - "ldn-service.form.pattern.ack-reject.description": "Ce modèle est utilisé pour accuser réception et refuser une requête (offre). Il signifie qu'aucune action supplémentaire n'est nécessaire pour la requête.", - - //"ldn-service.form.pattern.ack-reject.category": "Acknowledgements", - "ldn-service.form.pattern.ack-reject.category": "Accusés de réception", - - //"ldn-service.form.pattern.ack-tentative-accept.label": "Acknowledge and Tentatively Accept", - "ldn-service.form.pattern.ack-tentative-accept.label": "Accuser réception et accepter provisoirement", - - //"ldn-service.form.pattern.ack-tentative-accept.description": "This pattern is used to acknowledge and tentatively accept a request (offer). It implies an intention to act, which may change.", - "ldn-service.form.pattern.ack-tentative-accept.description": "Ce modèle est utilisé pour accuser réception et accepter provisoirement une requête (offre). Il implique une intention d'agir qui pourrait changer.", - - //"ldn-service.form.pattern.ack-tentative-accept.category": "Acknowledgements", - "ldn-service.form.pattern.ack-tentative-accept.category": "Accusés de réception", - - //"ldn-service.form.pattern.ack-tentative-reject.label": "Acknowledge and Tentatively Reject", - "ldn-service.form.pattern.ack-tentative-reject.label": "Accuser réception et refuser provisoirement", - - //"ldn-service.form.pattern.ack-tentative-reject.description": "This pattern is used to acknowledge and tentatively reject a request (offer). It signifies no further action, subject to change.", - "ldn-service.form.pattern.ack-tentative-reject.description": "Ce modèle est utilisé pour accuser réception et refuser provisoirement une requête (offre). Il implique qu'aucune action supplémentaire n'est nécessaire sous réserve de modification.", - - //"ldn-service.form.pattern.ack-tentative-reject.category": "Acknowledgements", - "ldn-service.form.pattern.ack-tentative-reject.category": "Accusés de réception", - - //"ldn-service.form.pattern.announce-endorsement.label": "Announce Endorsement", - "ldn-service.form.pattern.announce-endorsement.label": "Annocer l'approbation", - - //"ldn-service.form.pattern.announce-endorsement.description": "This pattern is used to announce the existence of an endorsement, referencing the endorsed resource.", - "ldn-service.form.pattern.announce-endorsement.description": "Ce modèle est utilisé pour annoncer l'existence d'une approbation, référençant la ressource approuvée.", - - //"ldn-service.form.pattern.announce-endorsement.category": "Announcements", - "ldn-service.form.pattern.announce-endorsement.category": "Annonces", - - //"ldn-service.form.pattern.announce-ingest.label": "Announce Ingest", - "ldn-service.form.pattern.announce-ingest.label": "Annoncer l'ingestion", - - //"ldn-service.form.pattern.announce-ingest.description": "This pattern is used to announce that a resource has been ingested.", - "ldn-service.form.pattern.announce-ingest.description": "Ce modèle est utilisé pour annoncer qu'une ressource a été ingérée.", - - //"ldn-service.form.pattern.announce-ingest.category": "Announcements", - "ldn-service.form.pattern.announce-ingest.category": "Annonces", - - //"ldn-service.form.pattern.announce-relationship.label": "Announce Relationship", - "ldn-service.form.pattern.announce-relationship.label": "Annoncer la relation", - - //"ldn-service.form.pattern.announce-relationship.description": "This pattern is used to announce a relationship between two resources.", - "ldn-service.form.pattern.announce-relationship.description": "Ce modèle est utilisé pour annoncer une relation entre 2 ressources.", - - //"ldn-service.form.pattern.announce-relationship.category": "Announcements", - "ldn-service.form.pattern.announce-relationship.category": "Annonces", - - //"ldn-service.form.pattern.announce-review.label": "Announce Review", - "ldn-service.form.pattern.announce-review.label": "Annoncer l'évaluation", - - //"ldn-service.form.pattern.announce-review.description": "This pattern is used to announce the existence of a review, referencing the reviewed resource.", - "ldn-service.form.pattern.announce-review.description": "Ce modèle est utilisé pour annoncer l'existence d'une évaluation, référencant la ressource évaluée.", - - //"ldn-service.form.pattern.announce-review.category": "Announcements", - "ldn-service.form.pattern.announce-review.category": "Annonces", - - //"ldn-service.form.pattern.announce-service-result.label": "Announce Service Result", - "ldn-service.form.pattern.announce-service-result.label": "Annoncer le résultat de service", - - //"ldn-service.form.pattern.announce-service-result.description": "This pattern is used to announce the existence of a 'service result', referencing the relevant resource.", - "ldn-service.form.pattern.announce-service-result.description": "Ce modèle est utilisé pour annoncer l'existence d'un 'résultat de service', référençant la ressource pertinente.", - - //"ldn-service.form.pattern.announce-service-result.category": "Announcements", - "ldn-service.form.pattern.announce-service-result.category": "Annonces", - - //"ldn-service.form.pattern.request-endorsement.label": "Request Endorsement", - "ldn-service.form.pattern.request-endorsement.label": "Approbation de la requête", - - //"ldn-service.form.pattern.request-endorsement.description": "This pattern is used to request endorsement of a resource owned by the origin system.", - "ldn-service.form.pattern.request-endorsement.description": "Ce modèle est utilisé pour demander l'approbation d'une ressource appartenant au système d'origine.", - - //"ldn-service.form.pattern.request-endorsement.category": "Requests", - "ldn-service.form.pattern.request-endorsement.category": "Requêtes", - - //"ldn-service.form.pattern.request-ingest.label": "Request Ingest", - "ldn-service.form.pattern.request-ingest.label": "Demander l'ingestion", - - //"ldn-service.form.pattern.request-ingest.description": "This pattern is used to request that the target system ingest a resource.", - "ldn-service.form.pattern.request-ingest.description": "Ce modèle est utilisé pour demander au système cible d'ingérer une ressource.", - - //"ldn-service.form.pattern.request-ingest.category": "Requests", - "ldn-service.form.pattern.request-ingest.category": "Requêtes", - - //"ldn-service.form.pattern.request-review.label": "Request Review", - "ldn-service.form.pattern.request-review.label": "Requête d'évaluation", - - //"ldn-service.form.pattern.request-review.description": "This pattern is used to request a review of a resource owned by the origin system.", - "ldn-service.form.pattern.request-review.description": "Ce modèle est utilisé pour demander l'évaluation d'une ressource appartenant au système d'origine.", - - //"ldn-service.form.pattern.request-review.category": "Requests", - "ldn-service.form.pattern.request-review.category": "Requêtes", - - //"ldn-service.form.pattern.undo-offer.label": "Undo Offer", - "ldn-service.form.pattern.undo-offer.label": "Retirer l'offre", - - //"ldn-service.form.pattern.undo-offer.description": "This pattern is used to undo (retract) an offer previously made.", - "ldn-service.form.pattern.undo-offer.description": "Ce modèle est utilisé pour retirer une offre faite précédemment.", - - //"ldn-service.form.pattern.undo-offer.category": "Undo", - "ldn-service.form.pattern.undo-offer.category": "Retirer", - - //"ldn-new-service.form.label.placeholder.selectedItemFilter": "No Item Filter Selected", - "ldn-new-service.form.label.placeholder.selectedItemFilter": "Aucun filtre d'Item sélectionné", - - //"ldn-new-service.form.label.ItemFilter": "Item Filter", - "ldn-new-service.form.label.ItemFilter": "Filtre d'Item", - - //"ldn-new-service.form.label.automatic": "Automatic", - "ldn-new-service.form.label.automatic": "Automatique", - - //"ldn-new-service.form.error.name": "Name is required", - "ldn-new-service.form.error.name": "Le nom est obligatoire", - - //"ldn-new-service.form.error.url": "URL is required", - "ldn-new-service.form.error.url": "L'URL est obligatoire", - - //"ldn-new-service.form.error.ipRange": "Please enter a valid IP range", - "ldn-new-service.form.error.ipRange": "S'il vous plaît, saisissez un intervalle IP valide.", - - //"ldn-new-service.form.hint.ipRange": "Please enter a valid IpV4 in both range bounds (note: for single IP, please enter the same value in both fields)", - "ldn-new-service.form.hint.ipRange": "S'il vous plaît, saisissez une adresse IpV4 valide pour chaque limite de l'intervalle (note: pour une adresse IP unique, entrez les mêmes valeurs dans les 2 champs).", - - //"ldn-new-service.form.error.ldnurl": "LDN URL is required", - "ldn-new-service.form.error.ldnurl": "L'URL LDN est obligatoire.", - - //"ldn-new-service.form.error.patterns": "At least a pattern is required", - "ldn-new-service.form.error.patterns": "Au moins un modèle est requis.", - - //"ldn-new-service.form.error.score": "Please enter a valid score (between 0 and 1). Use the “.” as decimal separator", - "ldn-new-service.form.error.score": "S'il vous plaît, saisissez une note valide (entre 0 et 1). Utilisez le “.” comme séparateur de décimale.", - - //"ldn-new-service.form.label.inboundPattern": "Supported Pattern", - "ldn-new-service.form.label.inboundPattern": "Modèle supporté", - - //"ldn-new-service.form.label.addPattern": "+ Add more", - "ldn-new-service.form.label.addPattern": "+ Ajouter", - - //"ldn-new-service.form.label.removeItemFilter": "Remove", - "ldn-new-service.form.label.removeItemFilter": "Supprimer", - - //"ldn-register-new-service.breadcrumbs": "New Service", - "ldn-register-new-service.breadcrumbs": "Nouveau service", - - //"service.overview.delete.body": "Are you sure you want to delete this service?", - "service.overview.delete.body": "Êtes-vous sûr de vouloir supprimer ce service ?", - - //"service.overview.edit.body": "Do you confirm the changes?", - "service.overview.edit.body": "Confirmez-vous les changements ?", - - //"service.overview.edit.modal": "Edit Service", - "service.overview.edit.modal": "Modifier le service", - - //"service.detail.update": "Confirm", - "service.detail.update": "Confirmer", - - //"service.detail.return": "Cancel", - "service.detail.return": "Annuler", - - //"service.overview.reset-form.body": "Are you sure you want to discard the changes and leave?", - "service.overview.reset-form.body": "Êtes-vous sûr de vouloir ignorer les changements et de quitter ?", - - //"service.overview.reset-form.modal": "Discard Changes", - "service.overview.reset-form.modal": "Ignorer les changements", - - //"service.overview.reset-form.reset-confirm": "Discard", - "service.overview.reset-form.reset-confirm": "Ignorer", - - //"admin.registries.services-formats.modify.success.head": "Successful Edit", - "admin.registries.services-formats.modify.success.head": "Modification réussie", - - //"admin.registries.services-formats.modify.success.content": "The service has been edited", - "admin.registries.services-formats.modify.success.content": "Le service a été modifié.", - - //"admin.registries.services-formats.modify.failure.head": "Failed Edit", - "admin.registries.services-formats.modify.failure.head": "La modification a échoué.", - - //"admin.registries.services-formats.modify.failure.content": "The service has not been edited", - "admin.registries.services-formats.modify.failure.content": "Le service a été modifié.", - - //"ldn-service-notification.created.success.title": "Successful Create", - "ldn-service-notification.created.success.title": "Création réussie", - - //"ldn-service-notification.created.success.body": "The service has been created", - "ldn-service-notification.created.success.body": "Le service a été crée.", - - //"ldn-service-notification.created.failure.title": "Failed Create", - "ldn-service-notification.created.failure.title": "Échec de la création", - - //"ldn-service-notification.created.failure.body": "The service has not been created", - "ldn-service-notification.created.failure.body": "Le service n'a pas été crée.", - - //"ldn-service-notification.created.warning.title": "Please select at least one Inbound Pattern", - "ldn-service-notification.created.warning.title": "Sélectionnez au moins un modèle entrant.", - - //"ldn-enable-service.notification.success.title": "Successful status updated", - "ldn-enable-service.notification.success.title": "Mise à jour du statut réussie", - - //"ldn-enable-service.notification.success.content": "The service status has been updated", - "ldn-enable-service.notification.success.content": "Le statut du service a été mis à jour.", - - //"ldn-service-delete.notification.success.title": "Successful Deletion", - "ldn-service-delete.notification.success.title": "Suppression réussie", - - //"ldn-service-delete.notification.success.content": "The service has been deleted", - "ldn-service-delete.notification.success.content": "Le service a été supprimé.", - - //"ldn-service-delete.notification.error.title": "Failed Deletion", - "ldn-service-delete.notification.error.title": "Échec de la suppression", - - //"ldn-service-delete.notification.error.content": "The service has not been deleted", - "ldn-service-delete.notification.error.content": "Le service n'a pas été supprimé.", - - //"service.overview.reset-form.reset-return": "Cancel", - "service.overview.reset-form.reset-return": "Annuler", - - //"service.overview.delete": "Delete service", - "service.overview.delete": "Supprimer le service", - - //"ldn-edit-service.title": "Edit service", - "ldn-edit-service.title": "Modifier le service", - - //"ldn-edit-service.form.label.name": "Name", - "ldn-edit-service.form.label.name": "Nom", - - //"ldn-edit-service.form.label.description": "Description", - "ldn-edit-service.form.label.description": "Description", - - //"ldn-edit-service.form.label.url": "Service URL", - "ldn-edit-service.form.label.url": "URL du service", - - //"ldn-edit-service.form.label.ldnUrl": "LDN Inbox URL", - "ldn-edit-service.form.label.ldnUrl": "URL de la boîte aux lettres LDN", - - //"ldn-edit-service.form.label.inboundPattern": "Inbound Pattern", - "ldn-edit-service.form.label.inboundPattern": "Modèle entrant", - - //"ldn-edit-service.form.label.noInboundPatternSelected": "No Inbound Pattern", - "ldn-edit-service.form.label.noInboundPatternSelected": "Aucun modèle entrant", - - //"ldn-edit-service.form.label.selectedItemFilter": "Selected Item Filter", - "ldn-edit-service.form.label.selectedItemFilter": "Filtre d'Item sélectionné", - - //"ldn-edit-service.form.label.selectItemFilter": "No Item Filter", - "ldn-edit-service.form.label.selectItemFilter": "Aucun filtre d'Item", - - //"ldn-edit-service.form.label.automatic": "Automatic", - "ldn-edit-service.form.label.automatic": "Automatique", - - //"ldn-edit-service.form.label.addInboundPattern": "+ Add more", - "ldn-edit-service.form.label.addInboundPattern": "+ Ajouter", - - //"ldn-edit-service.form.label.submit": "Save", - "ldn-edit-service.form.label.submit": "Sauvegarder", - - //"ldn-edit-service.breadcrumbs": "Edit Service", - "ldn-edit-service.breadcrumbs": "Éditer le service", - - //"ldn-service.control-constaint-select-none": "Select none", - "ldn-service.control-constaint-select-none": "Ne rien sélectionner", - - //"ldn-register-new-service.notification.error.title": "Error", - "ldn-register-new-service.notification.error.title": "Erreur", - - //"ldn-register-new-service.notification.error.content": "An error occurred while creating this process", - "ldn-register-new-service.notification.error.content": "Une erreur s'est produite lors de la création de ce processus.", - - //"ldn-register-new-service.notification.success.title": "Success", - "ldn-register-new-service.notification.success.title": "Succès", - - //"ldn-register-new-service.notification.success.content": "The process was successfully created", - "ldn-register-new-service.notification.success.content": "Le processus a été créé.", - - //"submission.sections.notify.info": "The selected service is compatible with the item according to its current status. {{ service.name }}: {{ service.description }}", - "submission.sections.notify.info": "Le service sélectionné est compatible avec l'Item d'après son statut actuel. {{ service.name }}: {{ service.description }}", - - //"item.page.endorsement": "Endorsement", - "item.page.endorsement": "Approbation", - - //"item.page.review": "Review", - "item.page.review": "Évaluation", - - //"item.page.referenced": "Referenced By", - "item.page.referenced": "Référencé par", - - //"item.page.supplemented": "Supplemented By", - "item.page.supplemented": "Complété par", - - //"menu.section.icon.ldn_services": "LDN Services overview", - "menu.section.icon.ldn_services": "Aperçu des services LDN", - - //"menu.section.services": "LDN Services", - "menu.section.services": "Services LDN", - - //"menu.section.services_new": "LDN Service", - "menu.section.services_new": "Service LDN", - - //"quality-assurance.topics.description-with-target": "Below you can see all the topics received from the subscriptions to {{source}} in regards to the", - "quality-assurance.topics.description-with-target": "Vous pouvez consulter ci-dessous tous les sujets reçus de l'abonnement à {{source}} en ce qui concerne", - - //"quality-assurance.events.description": "Below the list of all the suggestions for the selected topic {{topic}}, related to {{source}}.", - "quality-assurance.events.description": "En dessous de la liste des suggestions pour le sujet sélectionné {{topic}}, en relation avec {{source}}.", - - //"quality-assurance.events.description-with-topic-and-target": "Below the list of all the suggestions for the selected topic {{topic}}, related to {{source}} and ", - "quality-assurance.events.description-with-topic-and-target": "En dessous de la liste des suggestions pour le sujet sélectionné {{topic}}, en relation avec {{source}} and ", - - //"quality-assurance.event.table.event.message.serviceUrl": "Service URL:", - "quality-assurance.event.table.event.message.serviceUrl": "URL du service :", - - //"quality-assurance.event.table.event.message.link": "Link:", - "quality-assurance.event.table.event.message.link": "Lien :", - - //"service.detail.delete.cancel": "Cancel", - "service.detail.delete.cancel": "Annuler", - - //"service.detail.delete.button": "Delete service", - "service.detail.delete.button": "Supprimer le service", - - //"service.detail.delete.header": "Delete service", - "service.detail.delete.header": "Supprimer le service", - - //"service.detail.delete.body": "Are you sure you want to delete the current service?", - "service.detail.delete.body": "Êtes-vous sûr de vouloir supprimer ce service ?", - - //"service.detail.delete.confirm": "Delete service", - "service.detail.delete.confirm": "Supprimer le service", - - //"service.detail.delete.success": "The service was successfully deleted.", - "service.detail.delete.success": "Le service a été supprimé.", - - //"service.detail.delete.error": "Something went wrong when deleting the service", - "service.detail.delete.error": "Une erreure s'est produite lors de la suppression du service.", - - //"service.overview.table.id": "Services ID", - "service.overview.table.id": "Identifiants des services", - - //"service.overview.table.name": "Name", - "service.overview.table.name": "Nom", - - //"service.overview.table.start": "Start time (UTC)", - "service.overview.table.start": "Heure de début (UTC)", - - //"service.overview.table.status": "Status", - "service.overview.table.status": "Statut", - - //"service.overview.table.user": "User", - "service.overview.table.user": "Utilisateur", - - //"service.overview.title": "Services Overview", - "service.overview.title": "Aperçu des services", - - //"service.overview.breadcrumbs": "Services Overview", - "service.overview.breadcrumbs": "Aperçu des services", - - //"service.overview.table.actions": "Actions", - "service.overview.table.actions": "Actions", - - //"service.overview.table.description": "Description", - "service.overview.table.description": "Description", - - //"submission.sections.submit.progressbar.coarnotify": "COAR Notify", - "submission.sections.submit.progressbar.coarnotify": "COAR Notify", - - //"submission.section.section-coar-notify.control.request-review.label": "You can request a review to one of the following services", - "submission.section.section-coar-notify.control.request-review.label": "Vous pouvez demander une évaluation à l'un des services suivants", - - //"submission.section.section-coar-notify.control.request-endorsement.label": "You can request an Endorsement to one of the following overlay journals", - "submission.section.section-coar-notify.control.request-endorsement.label": "Vous pouvez demander une approbation à l'une des épirevues suivantes", - - //"submission.section.section-coar-notify.control.request-ingest.label": "You can request to ingest a copy of your submission to one of the following services", - "submission.section.section-coar-notify.control.request-ingest.label": "Vous pouvez demander à ce qu'une copie de votre soumission soit ingérée par l'un des services suivants", - - //"submission.section.section-coar-notify.dropdown.no-data": "No data available", - "submission.section.section-coar-notify.dropdown.no-data": "Aucune donnée disponible", - - //"submission.section.section-coar-notify.dropdown.select-none": "Select none", - "submission.section.section-coar-notify.dropdown.select-none": "Ne rien sélectionner", - - //"submission.section.section-coar-notify.small.notification": "Select a service for {{ pattern }} of this item", - "submission.section.section-coar-notify.small.notification": "Sélectionner un service pour {{ pattern }} pour cet Item", - - //"submission.section.section-coar-notify.selection.description": "Selected service's description:", - "submission.section.section-coar-notify.selection.description": "Description du service sélectionné :", - - //"submission.section.section-coar-notify.selection.no-description": "No further information is available", - "submission.section.section-coar-notify.selection.no-description": "Aucune autre information n'est disponible", - - //"submission.section.section-coar-notify.notification.error": "The selected service is not suitable for the current item. Please check the description for details about which record can be managed by this service.", - "submission.section.section-coar-notify.notification.error": "Le service sélectionné n'est pas approprié pour cet Item. Consulter la description afin de savoir quel Item est approprié pour ce service.", - - //"submission.section.section-coar-notify.info.no-pattern": "No configurable patterns found.", - "submission.section.section-coar-notify.info.no-pattern": "Aucun modèle configurable n'a été trouvé.", - - //"error.validation.coarnotify.invalidfilter": "Invalid filter, try to select another service or none.", - "error.validation.coarnotify.invalidfilter": "Filtre invalide, sélectionnez un autre service ou aucun service.", - - //"request-status-alert-box.accepted": "The requested {{ offerType }} for {{ serviceName }} has been taken in charge.", - "request-status-alert-box.accepted": "Le {{ offerType }} demandé pour {{ serviceName }} a été pris en charge.", - - //"request-status-alert-box.rejected": "The requested {{ offerType }} for {{ serviceName }} has been rejected.", - "request-status-alert-box.rejected": "Le {{ offerType }} demandé pour {{ serviceName }} a été rejeté.", - - //"request-status-alert-box.requested": "The requested {{ offerType }} for {{ serviceName }} is pending.", - "request-status-alert-box.requested": "Le {{ offerType }} demandé pour {{ serviceName }} est en attente.", - - //"ldn-service-button-mark-inbound-deletion": "Mark supported pattern for deletion", - "ldn-service-button-mark-inbound-deletion": "Sélectionner le modèle pour suppression", - - //"ldn-service-button-unmark-inbound-deletion": "Unmark supported pattern for deletion", - "ldn-service-button-unmark-inbound-deletion": "Désélectionner le modèle pour suppression", - - //"ldn-service-input-inbound-item-filter-dropdown": "Select Item filter for the pattern", - "ldn-service-input-inbound-item-filter-dropdown": "Sélectionner le filtre de l'Item pour le modèle", - - //"ldn-service-input-inbound-pattern-dropdown": "Select a pattern for service", - "ldn-service-input-inbound-pattern-dropdown": "Sélectionner un modèle pour le service", - - //"ldn-service-overview-select-delete": "Select service for deletion", - "ldn-service-overview-select-delete": "Sélectionner le service à supprimer", - - //"ldn-service-overview-select-edit": "Edit LDN service", - "ldn-service-overview-select-edit": "Modifier le service LDN", - - //"ldn-service-overview-close-modal": "Close modal", - "ldn-service-overview-close-modal": "Fermer la fenêtre", - - //"a-common-or_statement.label": "Item type is Journal Article or Dataset", - "a-common-or_statement.label": "Le type de l'Item est Article de revue ou Jeu de donnnées", - - //"always_true_filter.label": "Always true", - "always_true_filter.label": "Toujours vrai", - - //"automatic_processing_collection_filter_16.label": "Automatic processing", - "automatic_processing_collection_filter_16.label": "Traitement automatique", - - //"dc-identifier-uri-contains-doi_condition.label": "URI contains DOI", - "dc-identifier-uri-contains-doi_condition.label": "L'URI contient un DOI", - - //"doi-filter.label": "DOI filter", - "doi-filter.label": "Filtre DOI", - - //"driver-document-type_condition.label": "Document type equals driver", - "driver-document-type_condition.label": "Le type de document correspond à Driver", - - //"has-at-least-one-bitstream_condition.label": "Has at least one Bitstream", - "has-at-least-one-bitstream_condition.label": "A au moins un Bitstream", - - //"has-bitstream_filter.label": "Has Bitstream", - "has-bitstream_filter.label": "A un Bitstream", - - //"has-one-bitstream_condition.label": "Has one Bitstream", - "has-one-bitstream_condition.label": "A un Bitstream", - - //"is-archived_condition.label": "Is archived", - "is-archived_condition.label": "Est archivé", - - //"is-withdrawn_condition.label": "Is withdrawn", - "is-withdrawn_condition.label": "Est retiré", - - //"item-is-public_condition.label": "Item is public", - "item-is-public_condition.label": "L'Item est public", - - //"journals_ingest_suggestion_collection_filter_18.label": "Journals ingest", - "journals_ingest_suggestion_collection_filter_18.label": "Ingestion des revues", - - //"title-starts-with-pattern_condition.label": "Title starts with pattern", - "title-starts-with-pattern_condition.label": "Le titre commence par le modèle", - - //"type-equals-dataset_condition.label": "Type equals Dataset", - "type-equals-dataset_condition.label": "Le type de document est Jeu de données", - - //"type-equals-journal-article_condition.label": "Type equals Journal Article", - "type-equals-journal-article_condition.label": "Le type de document est Article de revue", - - //"ldn.no-filter.label": "None", - "ldn.no-filter.label": "Aucun", - - //"admin.notify.dashboard": "Dashboard", - "admin.notify.dashboard": "Tableau de bord", - - //"menu.section.notify_dashboard": "Dashboard", - "menu.section.notify_dashboard": "Tableau de bord", - - //"menu.section.coar_notify": "COAR Notify", - "menu.section.coar_notify": "COAR Notify", - - //"admin-notify-dashboard.title": "Notify Dashboard", - "admin-notify-dashboard.title": "Tableau de bord Notify", - - //"admin-notify-dashboard.description": "The Notify dashboard monitor the general usage of the COAR Notify protocol across the repository. In the “Metrics” tab are statistics about usage of the COAR Notify protocol. In the “Logs/Inbound” and “Logs/Outbound” tabs it’s possible to search and check the individual status of each LDN message, either received or sent.", - "admin-notify-dashboard.description": "Le tableau de bord Notify surveille l'utilisation générale du protocole COAR Notify dans le dépôt. Les statistiques d'utilisation du protocole COAR Notify sont dans l'onglet “Métrique”. Dans les onglets “Journaux/Entrant” et “Journaux/Sortant” il est possible de rechercher et vérifier le statut de chaque message LDN, qu'il ait été reçu ou envoyé.", - - //"admin-notify-dashboard.metrics": "Metrics", - "admin-notify-dashboard.metrics": "Metriques", - - //"admin-notify-dashboard.received-ldn": "Number of received LDN", - "admin-notify-dashboard.received-ldn": "Nombre de LDN reçu", - - //"admin-notify-dashboard.generated-ldn": "Number of generated LDN", - "admin-notify-dashboard.generated-ldn": "Nombre de LDN généré", - - //"admin-notify-dashboard.NOTIFY.incoming.accepted": "Accepted", - "admin-notify-dashboard.NOTIFY.incoming.accepted": "Accepté", - - //"admin-notify-dashboard.NOTIFY.incoming.accepted.description": "Accepted inbound notifications", - "admin-notify-dashboard.NOTIFY.incoming.accepted.description": "Avis entrant acceptés", - - //"admin-notify-logs.NOTIFY.incoming.accepted": "Currently displaying: Accepted notifications", - "admin-notify-logs.NOTIFY.incoming.accepted": "Affiché actuellement : avis acceptés", - - //"admin-notify-dashboard.NOTIFY.incoming.processed": "Processed LDN", - "admin-notify-dashboard.NOTIFY.incoming.processed": "LDN traités", - - //"admin-notify-dashboard.NOTIFY.incoming.processed.description": "Processed inbound notifications", - "admin-notify-dashboard.NOTIFY.incoming.processed.description": "Avis entrant traités", - - //"admin-notify-logs.NOTIFY.incoming.processed": "Currently displaying: Processed LDN", - "admin-notify-logs.NOTIFY.incoming.processed": "Affiché actuellement : LDN traités", - - //"admin-notify-logs.NOTIFY.incoming.failure": "Currently displaying: Failed notifications", - "admin-notify-logs.NOTIFY.incoming.failure": "Affiché actuellement : avis en échec", - - //"admin-notify-dashboard.NOTIFY.incoming.failure": "Failure", - "admin-notify-dashboard.NOTIFY.incoming.failure": "Échec", - - //"admin-notify-dashboard.NOTIFY.incoming.failure.description": "Failed inbound notifications", - "admin-notify-dashboard.NOTIFY.incoming.failure.description": "Avis entrant en échec", - - //"admin-notify-logs.NOTIFY.outgoing.failure": "Currently displaying: Failed notifications", - "admin-notify-logs.NOTIFY.outgoing.failure": "Affiché actuellement : avis en échec", - - //"admin-notify-dashboard.NOTIFY.outgoing.failure": "Failure", - "admin-notify-dashboard.NOTIFY.outgoing.failure": "Échec", - - //"admin-notify-dashboard.NOTIFY.outgoing.failure.description": "Failed outbound notifications", - "admin-notify-dashboard.NOTIFY.outgoing.failure.description": "Avis sortant en échec", - - //"admin-notify-logs.NOTIFY.incoming.untrusted": "Currently displaying: Untrusted notifications", - "admin-notify-logs.NOTIFY.incoming.untrusted": "Affiché actuellement : avis non fiables", - - //"admin-notify-dashboard.NOTIFY.incoming.untrusted": "Untrusted", - "admin-notify-dashboard.NOTIFY.incoming.untrusted": "Non fiable", - - //"admin-notify-dashboard.NOTIFY.incoming.untrusted.description": "Inbound notifications not trusted", - "admin-notify-dashboard.NOTIFY.incoming.untrusted.description": "Avis entrant non fiable", - - //"admin-notify-logs.NOTIFY.incoming.delivered": "Currently displaying: Delivered notifications", - "admin-notify-logs.NOTIFY.incoming.delivered": "Affiché actuellement : avis livrés", - - //"admin-notify-dashboard.NOTIFY.incoming.delivered.description": "Inbound notifications successfully delivered", - "admin-notify-dashboard.NOTIFY.incoming.delivered.description": "Avis entrants livrés avec succès", - - //"admin-notify-dashboard.NOTIFY.outgoing.delivered": "Delivered", - "admin-notify-dashboard.NOTIFY.outgoing.delivered": "Livrés", - - //"admin-notify-logs.NOTIFY.outgoing.delivered": "Currently displaying: Delivered notifications", - "admin-notify-logs.NOTIFY.outgoing.delivered": "Affiché actuellement : avis livrés", - - //"admin-notify-dashboard.NOTIFY.outgoing.delivered.description": "Outbound notifications successfully delivered", - "admin-notify-dashboard.NOTIFY.outgoing.delivered.description": "Avis sortant livrés avec succès", - - //"admin-notify-logs.NOTIFY.outgoing.queued": "Currently displaying: Queued notifications", - "admin-notify-logs.NOTIFY.outgoing.queued": "Affiché actuellement : avis dans la liste d'attente", - - //"admin-notify-dashboard.NOTIFY.outgoing.queued.description": "Notifications currently queued", - "admin-notify-dashboard.NOTIFY.outgoing.queued.description": "Avis actuellement dans la liste d'attente", - - //"admin-notify-dashboard.NOTIFY.outgoing.queued": "Queued", - "admin-notify-dashboard.NOTIFY.outgoing.queued": "Ajouter à la liste d'attente", - - //"admin-notify-logs.NOTIFY.outgoing.queued_for_retry": "Currently displaying: Queued for retry notifications", - "admin-notify-logs.NOTIFY.outgoing.queued_for_retry": "Affiché actuellement : Avis en attente pour une nouvelle tentative", - - //"admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry": "Queued for retry", - "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry": "En file d'attente pour une nouvelle tentative", - - //"admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry.description": "Notifications currently queued for retry", - "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry.description": "Avis actuellement en attente pour une nouvelle tentative", - - //"admin-notify-dashboard.NOTIFY.incoming.involvedItems": "Items involved", - "admin-notify-dashboard.NOTIFY.incoming.involvedItems": "Items impliqués", - - //"admin-notify-dashboard.NOTIFY.incoming.involvedItems.description": "Items related to inbound notifications", - "admin-notify-dashboard.NOTIFY.incoming.involvedItems.description": "Items liés aux avis entrants", - - //"admin-notify-dashboard.NOTIFY.outgoing.involvedItems": "Items involved", - "admin-notify-dashboard.NOTIFY.outgoing.involvedItems": "Items impliqués", - - //"admin-notify-dashboard.NOTIFY.outgoing.involvedItems.description": "Items related to outbound notifications", - "admin-notify-dashboard.NOTIFY.outgoing.involvedItems.description": "Items liés aux avis sortants", - - //"admin.notify.dashboard.breadcrumbs": "Dashboard", - "admin.notify.dashboard.breadcrumbs": "Tableau de bord", - - //"admin.notify.dashboard.inbound": "Inbound messages", - "admin.notify.dashboard.inbound": "Messages entrants", - - //"admin.notify.dashboard.inbound-logs": "Logs/Inbound", - "admin.notify.dashboard.inbound-logs": "Journaux/Entrant", - - //"admin.notify.dashboard.filter": "Filter: ", - "admin.notify.dashboard.filter": "Filtre : ", - - //"search.filters.applied.f.relateditem": "Related items", - "search.filters.applied.f.relateditem": "Items liés", - - //"search.filters.applied.f.ldn_service": "LDN Service", - "search.filters.applied.f.ldn_service": "Service LDN", - - //"search.filters.applied.f.notifyReview": "Notify Review", - "search.filters.applied.f.notifyReview": "Évaluation Notify", - - //"search.filters.applied.f.notifyEndorsement": "Notify Endorsement", - "search.filters.applied.f.notifyEndorsement": "Approbation Notify", - - //"search.filters.applied.f.notifyRelation": "Notify Relation", - "search.filters.applied.f.notifyRelation": "Relation Notify", - - //"search.filters.filter.queue_last_start_time.head": "Last processing time ", - "search.filters.filter.queue_last_start_time.head": "Dernière heure de traitement ", - - //"search.filters.filter.queue_last_start_time.min.label": "Min range", - "search.filters.filter.queue_last_start_time.min.label": "Intervalle minimum", - - //"search.filters.filter.queue_last_start_time.max.label": "Max range", - "search.filters.filter.queue_last_start_time.max.label": "Intervalle maximum", - - //"search.filters.applied.f.queue_last_start_time.min": "Min range", - "search.filters.applied.f.queue_last_start_time.min": "Intervalle minimum", - - //"search.filters.applied.f.queue_last_start_time.max": "Max range", - "search.filters.applied.f.queue_last_start_time.max": "Intervalle maximum", - - //"admin.notify.dashboard.outbound": "Outbound messages", - "admin.notify.dashboard.outbound": "Messages sortants", - - //"admin.notify.dashboard.outbound-logs": "Logs/Outbound", - "admin.notify.dashboard.outbound-logs": "Journaux/Sortant", - - //"NOTIFY.incoming.search.results.head": "Incoming", - "NOTIFY.incoming.search.results.head": "À venir", - - //"search.filters.filter.relateditem.head": "Related item", - "search.filters.filter.relateditem.head": "Item lié", - - //"search.filters.filter.origin.head": "Origin", - "search.filters.filter.origin.head": "Origine", - - //"search.filters.filter.ldn_service.head": "LDN Service", - "search.filters.filter.ldn_service.head": "Service LDN", - - //"search.filters.filter.target.head": "Target", - "search.filters.filter.target.head": "Cible", - - //"search.filters.filter.queue_status.head": "Queue status", - "search.filters.filter.queue_status.head": "Statut de la file d'attente", - - //"search.filters.filter.activity_stream_type.head": "Activity stream type", - "search.filters.filter.activity_stream_type.head": "Type de flux d'activité", - - //"search.filters.filter.coar_notify_type.head": "COAR Notify type", - "search.filters.filter.coar_notify_type.head": "Type COAR Notify", - - //"search.filters.filter.notification_type.head": "Notification type", - "search.filters.filter.notification_type.head": "Type d'avis", - - //"search.filters.filter.relateditem.label": "Search related items", - "search.filters.filter.relateditem.label": "Chercher des Items liés", - - //"search.filters.filter.queue_status.label": "Search queue status", - "search.filters.filter.queue_status.label": "Chercher le statut de la file d'attente", - - //"search.filters.filter.target.label": "Search target", - "search.filters.filter.target.label": "Chercher la cible", - - //"search.filters.filter.activity_stream_type.label": "Search activity stream type", - "search.filters.filter.activity_stream_type.label": "Chercheur le type de flux d'activité", - - //"search.filters.applied.f.queue_status": "Queue Status", - "search.filters.applied.f.queue_status": "Statut de la file d'attente", - - //"search.filters.queue_status.0,authority": "Untrusted Ip" - "search.filters.queue_status.0,authority": "IP non fiable", - - //"search.filters.queue_status.1,authority": "Queued", - "search.filters.queue_status.1,authority": "Dans la file d'attente", - - //"search.filters.queue_status.2,authority": "Processing", - "search.filters.queue_status.2,authority": "En traitement", - - //"search.filters.queue_status.3,authority": "Processed", - "search.filters.queue_status.3,authority": "Traité", - - //"search.filters.queue_status.4,authority": "Failed", - "search.filters.queue_status.4,authority": "En échec", - - //"search.filters.queue_status.5,authority": "Untrusted", - "search.filters.queue_status.5,authority": "Non fiable", - - //"search.filters.queue_status.6,authority": "Unmapped Action", - "search.filters.queue_status.6,authority": "Action non répertoriée", - - //"search.filters.queue_status.7,authority": "Queued for retry", - "search.filters.queue_status.7,authority": "En file d'attente pour une nouvelle tentative", - - //"search.filters.applied.f.activity_stream_type": "Activity stream type", - "search.filters.applied.f.activity_stream_type": "Type de flux d'activité", - - //"search.filters.applied.f.coar_notify_type": "COAR Notify type", - "search.filters.applied.f.coar_notify_type": "Type COAR Notify", - - //"search.filters.applied.f.notification_type": "Notification type", - "search.filters.applied.f.notification_type": "Type d'avis", - - //"search.filters.filter.coar_notify_type.label": "Search COAR Notify type", - "search.filters.filter.coar_notify_type.label": "Chercher le type COAR Notify", - - //"search.filters.filter.notification_type.label": "Search notification type", - "search.filters.filter.notification_type.label": "Chercher le type d'avis", - - //"search.filters.filter.relateditem.placeholder": "Related items", - "search.filters.filter.relateditem.placeholder": "Items liés", - - //"search.filters.filter.target.placeholder": "Target", - "search.filters.filter.target.placeholder": "Cible", - - //"search.filters.filter.origin.label": "Search source", - "search.filters.filter.origin.label": "Chercher la source", - - //"search.filters.filter.origin.placeholder": "Source", - "search.filters.filter.origin.placeholder": "Source", - - //"search.filters.filter.ldn_service.label": "Search LDN Service", - "search.filters.filter.ldn_service.label": "Chercher le service LDN", - - //"search.filters.filter.ldn_service.placeholder": "LDN Service", - "search.filters.filter.ldn_service.placeholder": "Service LDN", - - //"search.filters.filter.queue_status.placeholder": "Queue status", - "search.filters.filter.queue_status.placeholder": "Statut de la file d'attente", - - //"search.filters.filter.activity_stream_type.placeholder": "Activity stream type", - "search.filters.filter.activity_stream_type.placeholder": "Type de flux d'activité", - - //"search.filters.filter.coar_notify_type.placeholder": "COAR Notify type", - "search.filters.filter.coar_notify_type.placeholder": "Type COAR Notify", - - //"search.filters.filter.notification_type.placeholder": "Notification", - "search.filters.filter.notification_type.placeholder": "Avis", - - //"search.filters.filter.notifyRelation.head": "Notify Relation", - "search.filters.filter.notifyRelation.head": "Relation Notify", - - //"search.filters.filter.notifyRelation.label": "Search Notify Relation", - "search.filters.filter.notifyRelation.label": "Chercher une relation Notify", - - //"search.filters.filter.notifyRelation.placeholder": "Notify Relation", - "search.filters.filter.notifyRelation.placeholder": "Relation Notify", - - //"search.filters.filter.notifyReview.head": "Notify Review", - "search.filters.filter.notifyReview.head": "Évaluation Notify", - - //"search.filters.filter.notifyReview.label": "Search Notify Review", - "search.filters.filter.notifyReview.label": "Chercher une évaluation Notify", - - //"search.filters.filter.notifyReview.placeholder": "Notify Review", - "search.filters.filter.notifyReview.placeholder": "Évaluation Notify", - - //"search.filters.coar_notify_type.coar-notify:ReviewAction": "Review action", - "search.filters.coar_notify_type.coar-notify:ReviewAction": "Action d'évaluation", - - //"search.filters.coar_notify_type.coar-notify:ReviewAction,authority": "Review action", - "search.filters.coar_notify_type.coar-notify:ReviewAction,authority": "Action d'évaluation", - - //"notify-detail-modal.coar-notify:ReviewAction": "Review action", - "notify-detail-modal.coar-notify:ReviewAction": "Action d'évaluation", - - //"search.filters.coar_notify_type.coar-notify:EndorsementAction": "Endorsement action", - "search.filters.coar_notify_type.coar-notify:EndorsementAction": "Action d'approbation", - - //"search.filters.coar_notify_type.coar-notify:EndorsementAction,authority": "Endorsement action", - "search.filters.coar_notify_type.coar-notify:EndorsementAction,authority": "Action d'approbation", - - //"notify-detail-modal.coar-notify:EndorsementAction": "Endorsement action", - "notify-detail-modal.coar-notify:EndorsementAction": "Action d'approbation", - - //"search.filters.coar_notify_type.coar-notify:IngestAction": "Ingest action", - "search.filters.coar_notify_type.coar-notify:IngestAction": "Action d'ingestion", - - //"search.filters.coar_notify_type.coar-notify:IngestAction,authority": "Ingest action", - "search.filters.coar_notify_type.coar-notify:IngestAction,authority": "Action d'ingestion", - - //"notify-detail-modal.coar-notify:IngestAction": "Ingest action", - "notify-detail-modal.coar-notify:IngestAction": "Action d'ingestion", - - //"search.filters.coar_notify_type.coar-notify:RelationshipAction": "Relationship action", - "search.filters.coar_notify_type.coar-notify:RelationshipAction": "Action de relation", - - //"search.filters.coar_notify_type.coar-notify:RelationshipAction,authority": "Relationship action", - "search.filters.coar_notify_type.coar-notify:RelationshipAction,authority": "Action de relation", - - //"notify-detail-modal.coar-notify:RelationshipAction": "Relationship action", - "notify-detail-modal.coar-notify:RelationshipAction": "Action de relation", - - //"search.filters.queue_status.QUEUE_STATUS_QUEUED": "Queued", - "search.filters.queue_status.QUEUE_STATUS_QUEUED": "En file d'attente", - - //"notify-detail-modal.QUEUE_STATUS_QUEUED": "Queued", - "notify-detail-modal.QUEUE_STATUS_QUEUED": "En file d'attente", - - //"search.filters.queue_status.QUEUE_STATUS_QUEUED_FOR_RETRY": "Queued for retry", - "search.filters.queue_status.QUEUE_STATUS_QUEUED_FOR_RETRY": "En file d'attente pour une nouvelle tentative", - - //"notify-detail-modal.QUEUE_STATUS_QUEUED_FOR_RETRY": "Queued for retry", - "notify-detail-modal.QUEUE_STATUS_QUEUED_FOR_RETRY": "En file d'attente pour une nouvelle tentative", - - //"search.filters.queue_status.QUEUE_STATUS_PROCESSING": "Processing", - "search.filters.queue_status.QUEUE_STATUS_PROCESSING": "En traitement", - - //"notify-detail-modal.QUEUE_STATUS_PROCESSING": "Processing", - "notify-detail-modal.QUEUE_STATUS_PROCESSING": "En traitement", - - //"search.filters.queue_status.QUEUE_STATUS_PROCESSED": "Processed", - "search.filters.queue_status.QUEUE_STATUS_PROCESSED": "Traité", - - //"notify-detail-modal.QUEUE_STATUS_PROCESSED": "Processed", - "notify-detail-modal.QUEUE_STATUS_PROCESSED": "Traité", - - //"search.filters.queue_status.QUEUE_STATUS_FAILED": "Failed", - "search.filters.queue_status.QUEUE_STATUS_FAILED": "En échec", - - //"notify-detail-modal.QUEUE_STATUS_FAILED": "Failed", - "notify-detail-modal.QUEUE_STATUS_FAILED": "En échec", - - //"search.filters.queue_status.QUEUE_STATUS_UNTRUSTED": "Untrusted", - "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED": "Non fiable", - - //"search.filters.queue_status.QUEUE_STATUS_UNTRUSTED_IP": "Untrusted Ip", - "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED_IP": "IP non fiable", - - //"notify-detail-modal.QUEUE_STATUS_UNTRUSTED": "Untrusted", - "notify-detail-modal.QUEUE_STATUS_UNTRUSTED": "Non fiable", - - //"notify-detail-modal.QUEUE_STATUS_UNTRUSTED_IP": "Untrusted Ip", - "notify-detail-modal.QUEUE_STATUS_UNTRUSTED_IP": "IP non fiable", - - //"search.filters.queue_status.QUEUE_STATUS_UNMAPPED_ACTION": "Unmapped Action", - "search.filters.queue_status.QUEUE_STATUS_UNMAPPED_ACTION": "Action non répertoriée", - - //"notify-detail-modal.QUEUE_STATUS_UNMAPPED_ACTION": "Unmapped Action", - "notify-detail-modal.QUEUE_STATUS_UNMAPPED_ACTION": "Action non répertoriée", - - //"sorting.queue_last_start_time.DESC": "Last started queue Descending", - "sorting.queue_last_start_time.DESC": "Dernière file d'attente démarrée Descendant", - - //"sorting.queue_last_start_time.ASC": "Last started queue Ascending", - "sorting.queue_last_start_time.ASC": "Dernière file d'attente démarrée Ascendant", - - //"sorting.queue_attempts.DESC": "Queue attempted Descending", - "sorting.queue_attempts.DESC": "Tentative de mise en file d'attente Descendant", - - //"sorting.queue_attempts.ASC": "Queue attempted Ascending", - "sorting.queue_attempts.ASC": "Tentative de mise en file d'attente Ascendant", - - //"NOTIFY.incoming.involvedItems.search.results.head": "Items involved in incoming LDN", - "NOTIFY.incoming.involvedItems.search.results.head": "Items inclus dans le LDN entrant", - - //"NOTIFY.outgoing.involvedItems.search.results.head": "Items involved in outgoing LDN", - "NOTIFY.outgoing.involvedItems.search.results.head": "Items inclus dans le LDN en cours", - - //"type.notify-detail-modal": "Type", - "type.notify-detail-modal": "Type", - - //"id.notify-detail-modal": "Id", - "id.notify-detail-modal": "Identifiant", - - //"coarNotifyType.notify-detail-modal": "COAR Notify type", - "coarNotifyType.notify-detail-modal": "Type COAR Notify", - - //"activityStreamType.notify-detail-modal": "Activity stream type", - "activityStreamType.notify-detail-modal": "Type de flux d'activité", - - //"inReplyTo.notify-detail-modal": "In reply to", - "inReplyTo.notify-detail-modal": "En réponse à", - - //"object.notify-detail-modal": "Repository Item", - "object.notify-detail-modal": "Item du dépôt", - - //"context.notify-detail-modal": "Repository Item", - "context.notify-detail-modal": "Item du dépôt", - - //"queueAttempts.notify-detail-modal": "Queue attempts", - "queueAttempts.notify-detail-modal": "Tentatives de mise en file d'attente", - - //"queueLastStartTime.notify-detail-modal": "Queue last started", - "queueLastStartTime.notify-detail-modal": "Dernière file d'attente démarrée", - - //"origin.notify-detail-modal": "LDN Service", - "origin.notify-detail-modal": "Service LDN", - - //"target.notify-detail-modal": "LDN Service", - "target.notify-detail-modal": "Service LDN", - - //"queueStatusLabel.notify-detail-modal": "Queue status", - "queueStatusLabel.notify-detail-modal": "Statut de la file d'attente", - - //"queueTimeout.notify-detail-modal": "Queue timeout", - "queueTimeout.notify-detail-modal": "Délai de mise en file d'attente", - - //"notify-message-modal.title": "Message Detail", - "notify-message-modal.title": "Détail du message", - - //"notify-message-modal.show-message": "Show message", - "notify-message-modal.show-message": "Voir le message", - - //notify-message-result.timestamp": "Timestamp", - "notify-message-result.timestamp": "Estampille temporelle", - - //"notify-message-result.repositoryItem": "Repository Item", - "notify-message-result.repositoryItem": "Item du dépôt", - - //"notify-message-result.ldnService": "LDN Service", - "notify-message-result.ldnService": "Service LDN", - - //"notify-message-result.type": "Type", - "notify-message-result.type": "Type", - - //"notify-message-result.status": "Status", - "notify-message-result.status": "Statut", - - //"notify-message-result.action": "Action", - "notify-message-result.action": "Action", - - //"notify-message-result.detail": "Detail", - "notify-message-result.detail": "Détail", - - //"notify-message-result.reprocess": "Reprocess", - "notify-message-result.reprocess": "Réexécuter", - - //"notify-queue-status.processed": "Processed", - "notify-queue-status.processed": "Traité", - - //"notify-queue-status.failed": "Failed", - "notify-queue-status.failed": "En échec", - - //"notify-queue-status.queue_retry": "Queued for retry", - "notify-queue-status.queue_retry": "En file d'attente pour une nouvelle tentative", - - //"notify-queue-status.unmapped_action": "Unmapped action", - "notify-queue-status.unmapped_action": "Action non répertoriée", - - //"notify-queue-status.processing": "Processing", - "notify-queue-status.processing": "En traitement", - - //"notify-queue-status.queued": "Queued", - "notify-queue-status.queued": "En file d'attente", - - //"notify-queue-status.untrusted": "Untrusted", - "notify-queue-status.untrusted": "Non fiable", - - //"ldnService.notify-detail-modal": "LDN Service", - "ldnService.notify-detail-modal": "Service LDN", - - //"relatedItem.notify-detail-modal": "Related Item", - "relatedItem.notify-detail-modal": "Item lié", - - //"search.filters.filter.notifyEndorsement.head": "Notify Endorsement", - "search.filters.filter.notifyEndorsement.head": "Approbation Notify", - - //"search.filters.filter.notifyEndorsement.placeholder": "Notify Endorsement", - "search.filters.filter.notifyEndorsement.placeholder": "Approbation Notify", - - //"search.filters.filter.notifyEndorsement.label": "Search Notify Endorsement", - "search.filters.filter.notifyEndorsement.label": "Chercher l'approbation Notify", - - //"item.page.cc.license.title": "Creative Commons license", - "item.page.cc.license.title": "Licence Creative Commons", - - //"item.page.cc.license.disclaimer": "Except where otherwised noted, this item's license is described as", - "item.page.cc.license.disclaimer": "Sauf indication contraire, la licence de cet Item est décrite comme", - //"browse.search-form.placeholder": "Search the repository", - "browse.search-form.placeholder": "Chercher dans le dépôt", } diff --git a/src/assets/i18n/hi.json5 b/src/assets/i18n/hi.json5 index f5bc6bb9de8..e9b404d823f 100644 --- a/src/assets/i18n/hi.json5 +++ b/src/assets/i18n/hi.json5 @@ -1624,6 +1624,8 @@ "cookies.consent.content-notice.description": "हम निम्नलिखित उद्देश्यों के लिए आपकी व्यक्तिगत जानकारी एकत्र और संसाधित करते हैं: प्रमाणीकरण, प्राथमिकताएं, पावती और सांख्यिकी
अधिक जानने के लिए, कृपया हमारी {privacyPolicy} पढ़ें।", + "cookies.consent.content-notice.description.no-privacy": "हम निम्नलिखित उद्देश्यों के लिए आपकी व्यक्तिगत जानकारी एकत्र और संसाधित करते हैं: प्रमाणीकरण, प्राथमिकताएं, पावती और सांख्यिकी।", + "cookies.consent.content-notice.learnMore": "अनुकूलित करें", "cookies.consent.decline": "अस्वीकार", diff --git a/src/assets/i18n/hu.json5 b/src/assets/i18n/hu.json5 index a3f9a1aa7b4..c407157045e 100644 --- a/src/assets/i18n/hu.json5 +++ b/src/assets/i18n/hu.json5 @@ -2510,6 +2510,14 @@ // "cookies.consent.app.required.title": "(always required)", "cookies.consent.app.required.title": "(mindig szükséges)", + // "cookies.consent.app.disable-all.description": "Use this switch to enable or disable all services.", + // TODO New key - Add a translation + "cookies.consent.app.disable-all.description": "Use this switch to enable or disable all services.", + + // "cookies.consent.app.disable-all.title": "Enable or disable all services", + // TODO New key - Add a translation + "cookies.consent.app.disable-all.title": "Enable or disable all services", + // "cookies.consent.update": "There were changes since your last visit, please update your consent.", "cookies.consent.update": "Változások történtek az utolsó látogatása óta, frissítse a beleegyezését.", @@ -2526,9 +2534,16 @@ // "cookies.consent.save": "Save", "cookies.consent.save": "Mentés", + // "cookies.consent.content-notice.title": "Cookie Consent", + "cookies.consent.content-notice.title": "Cookie elfogadása", + // "cookies.consent.content-notice.description": "We collect and process your personal information for the following purposes: Authentication, Preferences, Acknowledgement and Statistics.
To learn more, please read our {privacyPolicy}.", "cookies.consent.content-notice.description": "Mi gyűjtjük és feldolgozzuk a személyes adatait a következő célból: Hitelesítés, Beállítások, Elismerés és Statisztikák.
Részletekért olvassa el: {privacyPolicy}.", + // "cookies.consent.content-notice.description.no-privacy": "We collect and process your personal information for the following purposes: Authentication, Preferences, Acknowledgement and Statistics.", + // TODO New key - Add a translation + "cookies.consent.content-notice.description.no-privacy": "We collect and process your personal information for the following purposes: Authentication, Preferences, Acknowledgement and Statistics.", + // "cookies.consent.content-notice.learnMore": "Customize", "cookies.consent.content-notice.learnMore": "Személyreszab", @@ -2544,6 +2559,14 @@ // "cookies.consent.content-modal.title": "Information that we collect", "cookies.consent.content-modal.title": "Gyűjtött adatok", + // "cookies.consent.content-modal.services": "services", + // TODO New key - Add a translation + "cookies.consent.content-modal.services": "services", + + // "cookies.consent.content-modal.service": "service", + // TODO New key - Add a translation + "cookies.consent.content-modal.service": "service", + // "cookies.consent.app.title.authentication": "Authentication", "cookies.consent.app.title.authentication": "Hitelesítés", diff --git a/src/assets/i18n/it.json5 b/src/assets/i18n/it.json5 index fa630ef2423..9ea111244fa 100644 --- a/src/assets/i18n/it.json5 +++ b/src/assets/i18n/it.json5 @@ -462,7 +462,7 @@ // "admin.access-control.epeople.form.notification.failure.deleteMembership": "Can't Delete Membership From Group: \"{{name}}\"", "admin.access-control.epeople.form.notification.failure.deleteMembership": "Impossibile eliminare l'appartenenza dal gruppo: \"{{name}}\"", - + // "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "Member of these groups:", "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "Membro dei seguenti gruppi:", @@ -1970,6 +1970,12 @@ // "cookies.consent.app.required.title": "(always required)", "cookies.consent.app.required.title": "(sempre obbligatorio)", + // "cookies.consent.app.disable-all.description": "Use this switch to enable or disable all services.", + "cookies.consent.app.disable-all.description": "Utilizzare questo interruttore per abilitare o disabilitare tutti i servizi.", + + // "cookies.consent.app.disable-all.title": "Enable or disable all services", + "cookies.consent.app.disable-all.title": "Abilitare o disabilitare tutti i servizi", + // "cookies.consent.update": "There were changes since your last visit, please update your consent.", "cookies.consent.update": "Ci sono stati dei cambiamenti dal tuo ultimo accesso, aggiorna il tuo consenso.", @@ -1985,8 +1991,14 @@ // "cookies.consent.save": "Save", "cookies.consent.save": "Salvare", + // "cookies.consent.content-notice.title": "Cookie Consent", + "cookies.consent.content-notice.title": "Consenso ai cookie", + // "cookies.consent.content-notice.description": "We collect and process your personal information for the following purposes: Authentication, Preferences, Acknowledgement and Statistics.
To learn more, please read our {privacyPolicy}.", - "cookies.consent.content-notice.description": "Raccogliamo ed elaboriamo le tue informazioni personali per i seguenti scopi: {purposes}", + "cookies.consent.content-notice.description": "Raccogliamo ed elaboriamo le tue informazioni personali per i seguenti scopi: Autenticazione, Preferenze, Accettazione e Statistiche.
Per saperne di più, leggi la nostra {privacyPolicy}.", + + // "cookies.consent.content-notice.description.no-privacy": "We collect and process your personal information for the following purposes: Authentication, Preferences, Acknowledgement and Statistics.", + "cookies.consent.content-notice.description.no-privacy": "Raccogliamo ed elaboriamo le tue informazioni personali per i seguenti scopi: Autenticazione, Preferenze, Accettazione e Statistiche.", // "cookies.consent.content-notice.learnMore": "Customize", "cookies.consent.content-notice.learnMore": "Personalizza", @@ -2003,6 +2015,12 @@ // "cookies.consent.content-modal.title": "Information that we collect", "cookies.consent.content-modal.title": "Informazioni che raccogliamo", + // "cookies.consent.content-modal.services": "services", + "cookies.consent.content-modal.services": "servizi", + + // "cookies.consent.content-modal.service": "service", + "cookies.consent.content-modal.service": "servizio", + // "cookies.consent.app.title.authentication": "Authentication", "cookies.consent.app.title.authentication": "Autenticazione", diff --git a/src/assets/i18n/kk.json5 b/src/assets/i18n/kk.json5 index abeba5afb2f..09b31ff9ada 100644 --- a/src/assets/i18n/kk.json5 +++ b/src/assets/i18n/kk.json5 @@ -454,15 +454,6 @@ // "admin.access-control.epeople.form.notification.deleted.failure": "Failed to delete EPerson \"{{name}}\"", "admin.access-control.epeople.form.notification.deleted.failure": "Пайдаланушыны жою мүмкін емес\"{{name}}\"", - // "admin.access-control.epeople.form.notification.failure.noActiveEPerson": "No current active eperson", - "admin.access-control.epeople.form.notification.failure.noActiveEPerson": "Ағымдағы белсенді адам жоқ", - - // "admin.access-control.epeople.form.notification.success.deleteMembership": "Deleted Membership From Group: \"{{name}}\"", - "admin.access-control.epeople.form.notification.success.deleteMembership": "Топтан жойылған мүшелік: \"{{name}}\"", - - // "admin.access-control.epeople.form.notification.failure.deleteMembership": "Can't Delete Membership From Group: \"{{name}}\"", - "admin.access-control.epeople.form.notification.failure.deleteMembership": "Топтан мүшелікті жою мүмкін емес: \"{{name}}\"", - // "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "Member of these groups:", "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "Осы топтардың мүшесі:", @@ -475,9 +466,6 @@ // "admin.access-control.epeople.form.table.collectionOrCommunity": "Collection/Community", "admin.access-control.epeople.form.table.collectionOrCommunity": "Жинақ/Қауымдастық", - // "admin.access-control.epeople.form.table.remove": "Remove", - "admin.access-control.epeople.form.table.remove": "Жою", - // "admin.access-control.epeople.form.memberOfNoGroups": "This EPerson is not a member of any groups", "admin.access-control.epeople.form.memberOfNoGroups": "Бұл адам ешқандай топтың мүшесі емес", @@ -2259,6 +2247,9 @@ // "cookies.consent.content-notice.description": "We collect and process your personal information for the following purposes: Authentication, Preferences, Acknowledgement and Statistics.
To learn more, please read our {privacyPolicy}.", "cookies.consent.content-notice.description": "Біз сіздің жеке ақпаратыңызды келесі мақсаттарда жинаймыз және өңдейміз: Аутентификация, Параметрлері, Растау және Статистикалар.
Көбірек білу үшін, біздің {privacyPolicy} оқуыңызды өтінеміз.", + // "cookies.consent.content-notice.description.no-privacy": "We collect and process your personal information for the following purposes: Authentication, Preferences, Acknowledgement and Statistics.", + "cookies.consent.content-notice.description.no-privacy": "Біз сіздің жеке мәліметтеріңізді келесі мақсаттар үшін жинаймыз және өңдейміз: Аутентификация, Қалаулар, Растау және статистикасы.", + // "cookies.consent.content-notice.learnMore": "Customize", "cookies.consent.content-notice.learnMore": "Баптау", diff --git a/src/assets/i18n/nl.json5 b/src/assets/i18n/nl.json5 index b3ac380ee47..cb39e470550 100644 --- a/src/assets/i18n/nl.json5 +++ b/src/assets/i18n/nl.json5 @@ -454,15 +454,6 @@ // TODO New key - Add a translation "admin.access-control.epeople.form.notification.deleted.failure": "Failed to delete EPerson \"{{name}}\"", - // "admin.access-control.epeople.form.notification.failure.noActiveEPerson": "No current active eperson", - "admin.access-control.epeople.form.notification.failure.noActiveEPerson": "Geen huidige actieve persoon", - - // "admin.access-control.epeople.form.notification.success.deleteMembership": "Deleted Membership From Group: \"{{name}}\"", - "admin.access-control.epeople.form.notification.success.deleteMembership": "Lidmaatschap verwijderd uit groep: \"{{name}}\"", - - // "admin.access-control.epeople.form.notification.failure.deleteMembership": "Can't Delete Membership From Group: \"{{name}}\"", - "admin.access-control.epeople.form.notification.failure.deleteMembership": "Kan lidmaatschap van groep niet verwijderen: \"{{name}}\"", - // "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "Member of these groups:", // TODO New key - Add a translation "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "Member of these groups:", @@ -475,9 +466,6 @@ // TODO New key - Add a translation "admin.access-control.epeople.form.table.name": "Name", - // "admin.access-control.epeople.form.table.remove": "Remove", - "admin.access-control.epeople.form.table.remove": "Remove", - // "admin.access-control.epeople.form.memberOfNoGroups": "This EPerson is not a member of any groups", // TODO New key - Add a translation "admin.access-control.epeople.form.memberOfNoGroups": "This EPerson is not a member of any groups", diff --git a/src/assets/i18n/pl.json5 b/src/assets/i18n/pl.json5 index ade54d51031..1db57b45663 100644 --- a/src/assets/i18n/pl.json5 +++ b/src/assets/i18n/pl.json5 @@ -2693,7 +2693,13 @@ "admin.registries.bitstream-formats.table.id": "ID", "admin.registries.schema.fields.table.id": "ID", "cookies.consent.app.description.google-recaptcha": "Podczas rejestracji i odzyskiwania hasła używamy narzędzia google reCAPTCHA", + "cookies.consent.app.disable-all.description": "Przełącz, aby zaakceptować lub odrzucić wszystkie", + "cookies.consent.app.disable-all.title": "Akceptowacja lub odrzucenie wszystkich", "cookies.consent.app.title.google-recaptcha": "Google reCaptcha", + "cookies.consent.content-modal.service": "usługa", + "cookies.consent.content-modal.services": "usługi", + "cookies.consent.content-notice.description.no-privacy": "Zbieramy i przetwarzamy Twoje dane w celu: autentykacji, ustawień preferencji i zgód oraz do celów statystycznych.", + "cookies.consent.content-notice.title": "Zgoda na ciasteczka", "cookies.consent.ok": "Zgadzam się", "cookies.consent.purpose.registration-password-recovery": "Rejestracja i odzyskiwanie hasła", "cookies.consent.save": "Zapisz", diff --git a/src/assets/i18n/pt-BR.json5 b/src/assets/i18n/pt-BR.json5 index 11e55fae167..1b8024c36bc 100644 --- a/src/assets/i18n/pt-BR.json5 +++ b/src/assets/i18n/pt-BR.json5 @@ -2381,6 +2381,12 @@ // "cookies.consent.app.required.title": "(always required)", "cookies.consent.app.required.title": "(sempre requerido)", + // "cookies.consent.app.disable-all.description": "Use this switch to enable or disable all services.", + "cookies.consent.app.disable-all.description": "Use esse comutador para ativar ou desativar todos os serviços.", + + // "cookies.consent.app.disable-all.title": "Enable or disable all services", + "cookies.consent.app.disable-all.title": "Ativar ou desativar todos os serviços", + // "cookies.consent.update": "There were changes since your last visit, please update your consent.", "cookies.consent.update": "Houve alterações desde sua última visita, atualize seu consentimento.", @@ -2396,9 +2402,15 @@ // "cookies.consent.save": "Save", "cookies.consent.save": "Salvar", + // "cookies.consent.content-notice.title": "Cookie Consent", + "cookies.consent.content-notice.title": "Consentimento de Cookies", + // "cookies.consent.content-notice.description": "We collect and process your personal information for the following purposes: Authentication, Preferences, Acknowledgement and Statistics.
To learn more, please read our {privacyPolicy}.", "cookies.consent.content-notice.description": "Coletamos e processamos suas informações pessoais para os seguintes propósitos: Autenticação, Preferências, Reconhecimento e Estatísticas.
Para aprender mais, por favor leia nossa {privacyPolicy}.", + // "cookies.consent.content-notice.description.no-privacy": "We collect and process your personal information for the following purposes: Authentication, Preferences, Acknowledgement and Statistics.", + "cookies.consent.content-notice.description.no-privacy": "Coletamos e processamos suas informações pessoais para os seguintes propósitos: Autenticação, Preferências, Reconhecimento e Estatísticas.", + // "cookies.consent.content-notice.learnMore": "Customize", "cookies.consent.content-notice.learnMore": "Customizar", @@ -2414,6 +2426,12 @@ // "cookies.consent.content-modal.title": "Information that we collect", "cookies.consent.content-modal.title": "Informações que coletamos", + // "cookies.consent.content-modal.services": "services", + "cookies.consent.content-modal.services": "Serviços", + + // "cookies.consent.content-modal.service": "service", + "cookies.consent.content-modal.service": "serviço", + // "cookies.consent.app.title.authentication": "Authentication", "cookies.consent.app.title.authentication": "Autenticação", @@ -10243,10 +10261,4 @@ //"browse.search-form.placeholder": "Search the repository", "browse.search-form.placeholder": "Buscar no repositório", - - // "register-page.registration.aria.label": "Enter your e-mail address", - "register-page.registration.aria.label": "Digite seu e-mail", - - // "forgot-email.form.aria.label": "Enter your e-mail address", - "forgot-email.form.aria.label": "Digite seu e-mail", } diff --git a/src/assets/i18n/pt-PT.json5 b/src/assets/i18n/pt-PT.json5 index 8a7cb26b63c..8e0586a4414 100644 --- a/src/assets/i18n/pt-PT.json5 +++ b/src/assets/i18n/pt-PT.json5 @@ -2408,6 +2408,12 @@ // "cookies.consent.app.required.title": "(always required)", "cookies.consent.app.required.title": "(sempre necessária)", + // "cookies.consent.app.disable-all.description": "Use this switch to enable or disable all services.", + "cookies.consent.app.disable-all.description": "Utilize este interruptor para ativar ou desativar todos os serviços.", + + // "cookies.consent.app.disable-all.title": "Enable or disable all services", + "cookies.consent.app.disable-all.title": "Ativar ou desativar todos os serviços", + // "cookies.consent.update": "There were changes since your last visit, please update your consent.", "cookies.consent.update": "Existem alterações desde a sua última visita, atualize o seu consentimento.", @@ -2423,9 +2429,15 @@ // "cookies.consent.save": "Save", "cookies.consent.save": "Guardar", + // "cookies.consent.content-notice.title": "Cookie Consent", + "cookies.consent.content-notice.title": "Consentir cookies", + // "cookies.consent.content-notice.description": "We collect and process your personal information for the following purposes: Authentication, Preferences, Acknowledgement and Statistics.
To learn more, please read our {privacyPolicy}.", "cookies.consent.content-notice.description": "Recolhemos e processamos informação pessoal para os seguintes propósitos: Autenticação, Guardar Preferências, Termos de Uso e Estatísticas.
Para saber mais, por favor leia a nossa {privacyPolicy}.", + // "cookies.consent.content-notice.description.no-privacy": "We collect and process your personal information for the following purposes: Authentication, Preferences, Acknowledgement and Statistics.", + "cookies.consent.content-notice.description.no-privacy": "Recolhemos e processamos as suas informações pessoais para os seguintes fins: Autenticação, Preferências, Reconhecimento e Estatísticas.", + // "cookies.consent.content-notice.learnMore": "Customize", "cookies.consent.content-notice.learnMore": "Pesonalizar", @@ -2441,6 +2453,12 @@ // "cookies.consent.content-modal.title": "Information that we collect", "cookies.consent.content-modal.title": "Informação que recolhemos", + // "cookies.consent.content-modal.services": "services", + "cookies.consent.content-modal.services": "serviços", + + // "cookies.consent.content-modal.service": "service", + "cookies.consent.content-modal.service": "serviço", + // "cookies.consent.app.title.authentication": "Authentication", "cookies.consent.app.title.authentication": "Autenticação", diff --git a/src/assets/i18n/sr-cyr.json5 b/src/assets/i18n/sr-cyr.json5 index b619acd04cc..eb171157566 100644 --- a/src/assets/i18n/sr-cyr.json5 +++ b/src/assets/i18n/sr-cyr.json5 @@ -662,17 +662,23 @@ "cookies.consent.app.purpose": "Сврха", "cookies.consent.app.required.description": "Ова апликација је увек потребна", "cookies.consent.app.required.title": "(увек потребно)", + "cookies.consent.app.disable-all.description": "Користите овај прекидач да омогућите или онемогућите све услуге.", + "cookies.consent.app.disable-all.title": "Омогућите или онемогућите све услуге", "cookies.consent.update": "Било је промена од ваше последње посете, ажурирајте своју сагласност.", "cookies.consent.close": "Затворити", "cookies.consent.decline": "Одбити", "cookies.consent.ok": "То је у реду", "cookies.consent.save": "сачувати", + "cookies.consent.content-notice.title": "Сагласност за колачиће", "cookies.consent.content-notice.description": "Прикупљамо и обрађујемо ваше личне податке у следеће сврхе: Провера аутентичности, подешавања, потврда и статистика.
Да бисте сазнали више, прочитајте нашу {privacyPolicy}.", + "cookies.consent.content-notice.description.no-privacy": "Прикупљамо и обрађујемо ваше личне податке у следеће сврхе: Провера аутентичности, подешавања, потврда и статистика.", "cookies.consent.content-notice.learnMore": "Прилагодити", "cookies.consent.content-modal.description": "Овде можете видети и прилагодити информације које прикупљамо о вама.", "cookies.consent.content-modal.privacy-policy.name": "Правила о приватности", "cookies.consent.content-modal.privacy-policy.text": "Да сазнате више, прочитајте нашу {privacyPolicy}.", "cookies.consent.content-modal.title": "Информације које прикупљамо", + "cookies.consent.content-modal.services": "Услуге", + "cookies.consent.content-modal.service": "Услуга", "cookies.consent.app.title.authentication": "Провера", "cookies.consent.app.description.authentication": "Потребно за пријављивање", "cookies.consent.app.title.preferences": "Подешавања", diff --git a/src/assets/i18n/sr-lat.json5 b/src/assets/i18n/sr-lat.json5 index 51050e4d8a9..61d869246b9 100644 --- a/src/assets/i18n/sr-lat.json5 +++ b/src/assets/i18n/sr-lat.json5 @@ -662,17 +662,23 @@ "cookies.consent.app.purpose": "Svrha", "cookies.consent.app.required.description": "Ova aplikacija je uvek potrebna", "cookies.consent.app.required.title": "(uvek potrebno)", + "cookies.consent.app.disable-all.description": "Koristite ovaj prekidač da omogućite ili onemogućite sve usluge.", + "cookies.consent.app.disable-all.title": "Omogućite ili onemogućite sve usluge", "cookies.consent.update": "Bilo je promena od vaše poslednje posete, ažurirajte svoju saglasnost.", "cookies.consent.close": "Zatvoriti", "cookies.consent.decline": "Odbiti", "cookies.consent.ok": "To je u redu", "cookies.consent.save": "sačuvati", + "cookies.consent.content-notice.title": "Saglasnost za kolačiće", "cookies.consent.content-notice.description": "Prikupljamo i obrađujemo vaše lične podatke u sledeće svrhe: Provera autentičnosti, podešavanja, potvrda i statistika.
Da biste saznali više, pročitajte našu {privacyPolicy}.", + "cookies.consent.content-notice.description.no-privacy": "Prikupljamo i obrađujemo vaše lične podatke u sledeće svrhe: Provera autentičnosti, podešavanja, potvrda i statistika.", "cookies.consent.content-notice.learnMore": "Prilagoditi", "cookies.consent.content-modal.description": "Ovde možete videti i prilagoditi informacije koje prikupljamo o vama.", "cookies.consent.content-modal.privacy-policy.name": "Pravila o privatnosti", "cookies.consent.content-modal.privacy-policy.text": "Da saznate više, pročitajte našu {privacyPolicy}.", "cookies.consent.content-modal.title": "Informacije koje prikupljamo", + "cookies.consent.content-modal.services": "Usluge", + "cookies.consent.content-modal.service": "Usluga", "cookies.consent.app.title.authentication": "Provera", "cookies.consent.app.description.authentication": "Potrebno za prijavljivanje", "cookies.consent.app.title.preferences": "Podešavanja", diff --git a/src/assets/i18n/vi.json5 b/src/assets/i18n/vi.json5 index b4d19bdd423..d8b5830d981 100644 --- a/src/assets/i18n/vi.json5 +++ b/src/assets/i18n/vi.json5 @@ -642,6 +642,8 @@ "cookies.consent.app.description.google-analytics": "Cho phép chúng tôi theo dõi dữ liệu thống kê", "cookies.consent.app.description.google-recaptcha": "Chúng tôi sử dụng dịch vụ google reCAPTCHA trong quá trình đăng ký và khôi phục mật khẩu", "cookies.consent.app.description.preferences": "Bắt buộc để lưu tùy chọn của bạn", + "cookies.consent.app.disable-all.description": "Sử dụng nút chuyển này để bật hoặc tắt tất cả dịch vụ.", + "cookies.consent.app.disable-all.title": "Bật hoặc tắt tất cả dịch vụ", "cookies.consent.app.opt-out.description": "Ứng dụng này đã được tải theo mặc định (nhưng bạn có thể chọn không tham gia)", "cookies.consent.app.purpose": "mục đích", "cookies.consent.app.required.description": "Ứng dụng này luôn được yêu cầu", @@ -654,9 +656,13 @@ "cookies.consent.content-modal.description": "Tại đây bạn có thể xem và tùy chỉnh thông tin mà chúng tôi thu thập được về bạn.", "cookies.consent.content-modal.privacy-policy.name": "chính sách bảo mật", "cookies.consent.content-modal.privacy-policy.text": "Để biết thêm vui lòng đọc {privacyPolicy} của chúng tôi.", + "cookies.consent.content-modal.service": "dịch vụ", + "cookies.consent.content-modal.services": "các dịch vụ", "cookies.consent.content-modal.title": "Thông tin mà chúng tôi thu thập", "cookies.consent.content-notice.description": "Chúng tôi thu thập và xử lý thông tin các nhân của bạn cho các mục đích sau: Xác thực các ưa thích xác nhận và thống kê.
Để biết thêm vui lòng đọc {privacyPolicy} của chúng tôi.", + "cookies.consent.content-notice.description.no-privacy": "Chúng tôi thu thập và xử lý thông tin cá nhân của bạn cho các mục đích sau: Xác thực Cài đặt cá nhân Xác nhận và Thống kê.", "cookies.consent.content-notice.learnMore": "Tùy chỉnh", + "cookies.consent.content-notice.title": "Đồng ý sử dụng cookie", "cookies.consent.decline": "Từ chối", "cookies.consent.ok": "OK", "cookies.consent.purpose.functional": "Chức năng", @@ -2539,4 +2545,4 @@ "system-wide-alert.form.create.error": "Đã xảy ra lỗi trong quá trình tạo cảnh báo toàn hệ thống", "admin.system-wide-alert.breadcrumbs": "Cảnh báo toàn hệ thống", "admin.system-wide-alert.title": "Cảnh báo toàn hệ thống", -} +} \ No newline at end of file