invenio-app-rdm 13.0.0b4.dev1__py2.py3-none-any.whl → 14.0.0b1.dev8__py2.py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (247) hide show
  1. invenio_app_rdm/__init__.py +1 -1
  2. invenio_app_rdm/administration/moderation/__init__.py +11 -0
  3. invenio_app_rdm/administration/moderation/requests.py +175 -0
  4. invenio_app_rdm/administration/records/records.py +9 -7
  5. invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/requests.html +14 -0
  6. invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/requests_details.html +91 -0
  7. invenio_app_rdm/administration/user_moderation/user_moderation.py +4 -4
  8. invenio_app_rdm/administration/users/users.py +0 -5
  9. invenio_app_rdm/communities_ui/views/communities.py +9 -5
  10. invenio_app_rdm/config.py +73 -4
  11. invenio_app_rdm/ext.py +2 -2
  12. invenio_app_rdm/fixtures/pages.py +5 -2
  13. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html +11 -0
  14. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html +2 -5
  15. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/citation.html +2 -2
  16. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html +2 -2
  17. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/communities.html +8 -7
  18. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/external_resources.html +5 -6
  19. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html +9 -13
  20. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/manage_menu.html +8 -5
  21. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html +2 -4
  22. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html +1 -1
  23. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html +7 -5
  24. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html +21 -4
  25. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html +6 -1
  26. invenio_app_rdm/records_ui/utils.py +93 -1
  27. invenio_app_rdm/records_ui/views/decorators.py +24 -14
  28. invenio_app_rdm/records_ui/views/deposits.py +100 -27
  29. invenio_app_rdm/records_ui/views/filters.py +11 -4
  30. invenio_app_rdm/records_ui/views/records.py +23 -13
  31. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/file-modification/index.html +88 -0
  32. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/guest-access-request/index.html +5 -5
  33. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/record-deletion/index.html +95 -0
  34. invenio_app_rdm/requests_ui/views/requests.py +54 -87
  35. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/ViewRecentChanges.js +8 -8
  36. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/ImpersonateUserForm.js +12 -17
  37. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/RevisionsDiffViewer.js +14 -16
  38. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/SetQuotaAction.js +1 -1
  39. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/api/routes.js +1 -2
  40. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/RequestsSearchResultItem.js +81 -0
  41. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/RequestsSearchbarLayout.js +48 -0
  42. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/index.js +22 -0
  43. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/CommunityRecordsSearchAppLayout.js +3 -4
  44. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/CopyButton.js +38 -19
  45. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/FileModificationUntil.js +45 -0
  46. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion/DeletionModal.js +354 -0
  47. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion/DeletionRadioGroup.js +44 -0
  48. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion.js +81 -0
  49. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/RDMDepositForm.js +55 -5
  50. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/index.js +4 -1
  51. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/CommunitiesManagement.js +2 -2
  52. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ExportDropdown.js +7 -2
  53. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ManageButton.js +52 -19
  54. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCitationField.js +15 -14
  55. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/RecordCommunitiesListModal.js +4 -4
  56. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitySubmission/RecordCommunitySubmissionModal.js +1 -1
  57. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordManagement.js +17 -3
  58. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordVersionsList.js +16 -17
  59. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RemoveFromCommunity/RemoveFromCommunityAction.js +5 -5
  60. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/index.js +42 -40
  61. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/theme.js +9 -5
  62. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/AccessRequestTimelineEdit.js +5 -5
  63. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/AccessRequestTimelineRead.js +2 -2
  64. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/search/components.js +14 -19
  65. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/theme.js +9 -0
  66. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/file_uploader/uppy.less +37 -0
  67. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/landing_page/licenses.less +5 -3
  68. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/site.overrides +6 -1
  69. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/accordion.overrides +10 -1
  70. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/search.overrides +7 -0
  71. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/search.variables +0 -0
  72. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/i18next.js +1 -1
  73. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/_generatedTranslations.js +66 -0
  74. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ar/messages.po +804 -137
  75. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ar/translations.json +277 -249
  76. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/bg/messages.po +689 -70
  77. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/bg/translations.json +102 -82
  78. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ca/messages.po +699 -80
  79. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ca/translations.json +112 -92
  80. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/cs/messages.po +821 -138
  81. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/cs/translations.json +290 -262
  82. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/da/messages.po +691 -66
  83. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/da/translations.json +91 -71
  84. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/de/messages.po +818 -138
  85. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/de/translations.json +260 -240
  86. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/el/messages.po +698 -78
  87. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/el/translations.json +108 -88
  88. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/en/messages.po +1000 -5
  89. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/en/translations.json +81 -28
  90. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/es/messages.po +810 -137
  91. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/es/translations.json +253 -233
  92. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et/messages.po +746 -133
  93. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et/translations.json +130 -110
  94. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fa/messages.po +688 -69
  95. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fa/translations.json +103 -79
  96. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fr/messages.po +809 -126
  97. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fr/translations.json +277 -257
  98. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hr/messages.po +695 -70
  99. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hr/translations.json +101 -79
  100. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hu/messages.po +801 -135
  101. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hu/translations.json +254 -234
  102. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/index.js +16 -65
  103. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/it/messages.po +712 -86
  104. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/it/translations.json +116 -96
  105. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ja/messages.po +683 -70
  106. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ja/translations.json +96 -78
  107. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ka/messages.po +689 -70
  108. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ka/translations.json +109 -85
  109. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ko/messages.po +889 -0
  110. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ko/translations.json +277 -0
  111. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/lt/messages.po +702 -71
  112. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/lt/translations.json +113 -85
  113. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/no/messages.po +689 -70
  114. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/no/translations.json +102 -82
  115. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pl/messages.po +704 -70
  116. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pl/translations.json +119 -91
  117. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pt/messages.po +694 -69
  118. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pt/translations.json +93 -73
  119. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ro/messages.po +717 -85
  120. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ro/translations.json +155 -133
  121. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ru/messages.po +806 -124
  122. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ru/translations.json +288 -260
  123. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sk/messages.po +713 -82
  124. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sk/translations.json +119 -91
  125. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sv/messages.po +807 -141
  126. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sv/translations.json +260 -240
  127. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/tr/messages.po +799 -128
  128. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/tr/translations.json +259 -239
  129. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/uk/messages.po +756 -131
  130. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/uk/translations.json +124 -96
  131. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_CN/messages.po +736 -123
  132. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_CN/translations.json +130 -108
  133. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_TW/messages.po +683 -70
  134. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_TW/translations.json +100 -78
  135. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/package.json +3 -37
  136. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/translations.pot +243 -94
  137. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.de.html +2 -2
  138. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.en.html +4 -4
  139. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.sv.html +4 -4
  140. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html +7 -6
  141. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/macros/records_list.html +2 -1
  142. invenio_app_rdm/theme/templates/semantic-ui/invenio_communities/default_static_page.html +26 -0
  143. invenio_app_rdm/theme/webpack.py +3 -2
  144. invenio_app_rdm/translations/ar/LC_MESSAGES/messages.mo +0 -0
  145. invenio_app_rdm/translations/ar/LC_MESSAGES/messages.po +972 -376
  146. invenio_app_rdm/translations/bg/LC_MESSAGES/messages.mo +0 -0
  147. invenio_app_rdm/translations/bg/LC_MESSAGES/messages.po +907 -278
  148. invenio_app_rdm/translations/ca/LC_MESSAGES/messages.mo +0 -0
  149. invenio_app_rdm/translations/ca/LC_MESSAGES/messages.po +912 -283
  150. invenio_app_rdm/translations/cs/LC_MESSAGES/messages.mo +0 -0
  151. invenio_app_rdm/translations/cs/LC_MESSAGES/messages.po +1069 -405
  152. invenio_app_rdm/translations/da/LC_MESSAGES/messages.mo +0 -0
  153. invenio_app_rdm/translations/da/LC_MESSAGES/messages.po +908 -273
  154. invenio_app_rdm/translations/de/LC_MESSAGES/messages.mo +0 -0
  155. invenio_app_rdm/translations/de/LC_MESSAGES/messages.po +1017 -406
  156. invenio_app_rdm/translations/el/LC_MESSAGES/messages.mo +0 -0
  157. invenio_app_rdm/translations/el/LC_MESSAGES/messages.po +915 -286
  158. invenio_app_rdm/translations/es/LC_MESSAGES/messages.mo +0 -0
  159. invenio_app_rdm/translations/es/LC_MESSAGES/messages.po +963 -371
  160. invenio_app_rdm/translations/et/LC_MESSAGES/messages.mo +0 -0
  161. invenio_app_rdm/translations/et/LC_MESSAGES/messages.po +938 -362
  162. invenio_app_rdm/translations/fa/LC_MESSAGES/messages.mo +0 -0
  163. invenio_app_rdm/translations/fa/LC_MESSAGES/messages.po +906 -277
  164. invenio_app_rdm/translations/fr/LC_MESSAGES/messages.mo +0 -0
  165. invenio_app_rdm/translations/fr/LC_MESSAGES/messages.po +1032 -375
  166. invenio_app_rdm/translations/hr/LC_MESSAGES/messages.mo +0 -0
  167. invenio_app_rdm/translations/hr/LC_MESSAGES/messages.po +907 -278
  168. invenio_app_rdm/translations/hu/LC_MESSAGES/messages.mo +0 -0
  169. invenio_app_rdm/translations/hu/LC_MESSAGES/messages.po +985 -369
  170. invenio_app_rdm/translations/it/LC_MESSAGES/messages.mo +0 -0
  171. invenio_app_rdm/translations/it/LC_MESSAGES/messages.po +928 -298
  172. invenio_app_rdm/translations/ja/LC_MESSAGES/messages.mo +0 -0
  173. invenio_app_rdm/translations/ja/LC_MESSAGES/messages.po +907 -278
  174. invenio_app_rdm/translations/ka/LC_MESSAGES/messages.mo +0 -0
  175. invenio_app_rdm/translations/ka/LC_MESSAGES/messages.po +909 -280
  176. invenio_app_rdm/translations/ko/LC_MESSAGES/messages.mo +0 -0
  177. invenio_app_rdm/translations/ko/LC_MESSAGES/messages.po +1361 -0
  178. invenio_app_rdm/translations/lt/LC_MESSAGES/messages.mo +0 -0
  179. invenio_app_rdm/translations/lt/LC_MESSAGES/messages.po +910 -281
  180. invenio_app_rdm/translations/messages.pot +486 -303
  181. invenio_app_rdm/translations/no/LC_MESSAGES/messages.mo +0 -0
  182. invenio_app_rdm/translations/no/LC_MESSAGES/messages.po +907 -278
  183. invenio_app_rdm/translations/pl/LC_MESSAGES/messages.mo +0 -0
  184. invenio_app_rdm/translations/pl/LC_MESSAGES/messages.po +907 -278
  185. invenio_app_rdm/translations/pt/LC_MESSAGES/messages.mo +0 -0
  186. invenio_app_rdm/translations/pt/LC_MESSAGES/messages.po +906 -277
  187. invenio_app_rdm/translations/ro/LC_MESSAGES/messages.mo +0 -0
  188. invenio_app_rdm/translations/ro/LC_MESSAGES/messages.po +1042 -384
  189. invenio_app_rdm/translations/ru/LC_MESSAGES/messages.mo +0 -0
  190. invenio_app_rdm/translations/ru/LC_MESSAGES/messages.po +1022 -370
  191. invenio_app_rdm/translations/sk/LC_MESSAGES/messages.mo +0 -0
  192. invenio_app_rdm/translations/sk/LC_MESSAGES/messages.po +916 -287
  193. invenio_app_rdm/translations/sv/LC_MESSAGES/messages.mo +0 -0
  194. invenio_app_rdm/translations/sv/LC_MESSAGES/messages.po +989 -380
  195. invenio_app_rdm/translations/tr/LC_MESSAGES/messages.mo +0 -0
  196. invenio_app_rdm/translations/tr/LC_MESSAGES/messages.po +992 -341
  197. invenio_app_rdm/translations/uk/LC_MESSAGES/messages.mo +0 -0
  198. invenio_app_rdm/translations/uk/LC_MESSAGES/messages.po +935 -356
  199. invenio_app_rdm/translations/zh_CN/LC_MESSAGES/messages.mo +0 -0
  200. invenio_app_rdm/translations/zh_CN/LC_MESSAGES/messages.po +939 -347
  201. invenio_app_rdm/translations/zh_TW/LC_MESSAGES/messages.mo +0 -0
  202. invenio_app_rdm/translations/zh_TW/LC_MESSAGES/messages.po +907 -278
  203. invenio_app_rdm/upgrade_scripts/migrate_12_0_to_13_0.py +190 -62
  204. {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/METADATA +118 -7
  205. {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/RECORD +209 -225
  206. {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/entry_points.txt +2 -0
  207. {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/top_level.txt +0 -1
  208. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/i18next-scanner.config.js +0 -64
  209. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/package-lock.json +0 -1512
  210. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/scripts/compileCatalog.js +0 -40
  211. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/scripts/initCatalog.js +0 -20
  212. tests/__init__.py +0 -8
  213. tests/api/__init__.py +0 -8
  214. tests/api/conftest.py +0 -24
  215. tests/api/test_protect_files_rest.py +0 -73
  216. tests/api/test_record_api.py +0 -175
  217. tests/api/test_stats_api.py +0 -26
  218. tests/conftest.py +0 -390
  219. tests/fixtures/__init__.py +0 -8
  220. tests/fixtures/app_data/oai_sets.yaml +0 -3
  221. tests/fixtures/app_data/pages/about.html +0 -1
  222. tests/fixtures/app_data/pages.yaml +0 -4
  223. tests/fixtures/conftest.py +0 -27
  224. tests/fixtures/test_cli.py +0 -25
  225. tests/fixtures/test_fixtures.py +0 -46
  226. tests/mock_module/__init__.py +0 -7
  227. tests/mock_module/templates/mock_mail.html +0 -27
  228. tests/mock_module/views.py +0 -32
  229. tests/redirector/__init__.py +0 -8
  230. tests/redirector/conftest.py +0 -54
  231. tests/redirector/test_redirector.py +0 -28
  232. tests/test_tasks.py +0 -209
  233. tests/test_utils.py +0 -67
  234. tests/test_version.py +0 -16
  235. tests/test_views.py +0 -43
  236. tests/ui/__init__.py +0 -8
  237. tests/ui/conftest.py +0 -115
  238. tests/ui/test_deposits.py +0 -115
  239. tests/ui/test_export_formats.py +0 -37
  240. tests/ui/test_file_download.py +0 -73
  241. tests/ui/test_filters.py +0 -10
  242. tests/ui/test_robotstxt.py +0 -35
  243. tests/ui/test_signposting_ui.py +0 -95
  244. tests/ui/test_sitemaps.py +0 -85
  245. tests/ui/test_stats_ui.py +0 -92
  246. {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/WHEEL +0 -0
  247. {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/licenses/LICENSE +0 -0
@@ -1,253 +1,599 @@
1
1
  # Translations template for invenio-app-rdm.
2
- # Copyright (C) 2022 CERN
2
+ # Copyright (C) 2025 CERN
3
3
  # This file is distributed under the same license as the invenio-app-rdm
4
4
  # project.
5
- # FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
5
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2025.
6
6
  #
7
7
  # Translators:
8
- # Tibor Simko <tibor.simko@cern.ch>, 2020
9
- # Vasyl Ostrovskyi <vasyusya@yahoo.com>, 2023
8
+ # Tibor Simko <tibor.simko@cern.ch>, 2025
9
+ # Vasyl Ostrovskyi <vasyusya@yahoo.com>, 2025
10
+ # Vitalii Kindrat, 2025
10
11
  #
11
12
  #, fuzzy
12
13
  msgid ""
13
14
  msgstr ""
14
- "Project-Id-Version: invenio-app-rdm 10.0.0\n"
15
+ "Project-Id-Version: invenio-app-rdm 12.0.15\n"
15
16
  "Report-Msgid-Bugs-To: info@inveniosoftware.org\n"
16
- "POT-Creation-Date: 2022-10-12 08:49+0200\n"
17
+ "POT-Creation-Date: 2025-03-27 16:30+0000\n"
17
18
  "PO-Revision-Date: 2020-07-07 14:12+0000\n"
18
- "Last-Translator: Vasyl Ostrovskyi <vasyusya@yahoo.com>, 2023\n"
19
+ "Last-Translator: Vitalii Kindrat, 2025\n"
19
20
  "Language-Team: Ukrainian (https://app.transifex.com/inveniosoftware/teams/23537/uk/)\n"
20
21
  "MIME-Version: 1.0\n"
21
22
  "Content-Type: text/plain; charset=UTF-8\n"
22
23
  "Content-Transfer-Encoding: 8bit\n"
23
- "Generated-By: Babel 2.10.3\n"
24
+ "Generated-By: Babel 2.17.0\n"
24
25
  "Language: uk\n"
25
26
  "Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
26
27
 
27
- #: invenio_app_rdm/config.py:159
28
+ #: invenio_app_rdm/config.py:219
28
29
  msgid "The turn-key research data management repository"
29
30
  msgstr "Готовий \"під ключ\" репозитарій керування дослідницькими даними"
30
31
 
31
- #: invenio_app_rdm/config.py:174
32
+ #: invenio_app_rdm/config.py:258
33
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/site_footer.html:16
32
34
  msgid "InvenioRDM"
33
35
  msgstr "InvenioRDM"
34
36
 
35
- #: invenio_app_rdm/config.py:234
37
+ #: invenio_app_rdm/config.py:353
36
38
  msgid "Welcome to Invenio App RDM!"
37
39
  msgstr "Вітаємо в Invenio App RDM!"
38
40
 
39
- #: invenio_app_rdm/config.py:553
41
+ #: invenio_app_rdm/config.py:750
40
42
  msgid "JSON"
41
43
  msgstr "JSON"
42
44
 
43
- #: invenio_app_rdm/config.py:559
45
+ #: invenio_app_rdm/config.py:757
46
+ msgid "JSON-LD"
47
+ msgstr ""
48
+
49
+ #: invenio_app_rdm/config.py:765
44
50
  msgid "CSL"
45
51
  msgstr "CSL"
46
52
 
47
- #: invenio_app_rdm/config.py:567
53
+ #: invenio_app_rdm/config.py:772
48
54
  msgid "DataCite JSON"
49
55
  msgstr "DataCite JSON"
50
56
 
51
- #: invenio_app_rdm/config.py:575
57
+ #: invenio_app_rdm/config.py:781
52
58
  msgid "DataCite XML"
53
59
  msgstr "DataCite XML"
54
60
 
55
- #: invenio_app_rdm/config.py:583
61
+ #: invenio_app_rdm/config.py:790
56
62
  msgid "Dublin Core XML"
57
63
  msgstr "Dublin Core XML"
58
64
 
59
- #: invenio_app_rdm/config.py:643
65
+ #: invenio_app_rdm/config.py:799
66
+ msgid "MARCXML"
67
+ msgstr ""
68
+
69
+ #: invenio_app_rdm/config.py:806
70
+ msgid "BibTeX"
71
+ msgstr ""
72
+
73
+ #: invenio_app_rdm/config.py:813
74
+ msgid "GeoJSON"
75
+ msgstr ""
76
+
77
+ #: invenio_app_rdm/config.py:820
78
+ msgid "DCAT"
79
+ msgstr ""
80
+
81
+ #: invenio_app_rdm/config.py:827
82
+ msgid "Codemeta"
83
+ msgstr ""
84
+
85
+ #: invenio_app_rdm/config.py:834
86
+ msgid "Citation File Format"
87
+ msgstr ""
88
+
89
+ #: invenio_app_rdm/config.py:996
60
90
  msgid "APA"
61
91
  msgstr "APA"
62
92
 
63
- #: invenio_app_rdm/config.py:644
93
+ #: invenio_app_rdm/config.py:997
64
94
  msgid "Harvard"
65
95
  msgstr "Harvard"
66
96
 
67
- #: invenio_app_rdm/config.py:645
97
+ #: invenio_app_rdm/config.py:998
68
98
  msgid "MLA"
69
99
  msgstr "MLA"
70
100
 
71
- #: invenio_app_rdm/config.py:646
101
+ #: invenio_app_rdm/config.py:999
72
102
  msgid "Vancouver"
73
103
  msgstr "Vancouver"
74
104
 
75
- #: invenio_app_rdm/config.py:647
105
+ #: invenio_app_rdm/config.py:1000
76
106
  msgid "Chicago"
77
107
  msgstr "Chicago"
78
108
 
79
- #: invenio_app_rdm/config.py:648
109
+ #: invenio_app_rdm/config.py:1001
80
110
  msgid "IEEE"
81
111
  msgstr "IEEE"
82
112
 
83
- #: invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/details/index.html:12
84
- msgid "Search "
85
- msgstr "Пошук"
113
+ #: invenio_app_rdm/ext.py:57
114
+ msgid "My dashboard"
115
+ msgstr "Панель інструментів"
86
116
 
87
- #: invenio_app_rdm/communities_ui/views/ui.py:66
88
- #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_frontpage.html:36
89
- #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_frontpage.html:37
90
- msgid "Search"
117
+ #: invenio_app_rdm/ext.py:63
118
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:14
119
+ #: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html:28
120
+ msgid "New upload"
121
+ msgstr "Нове завантаження"
122
+
123
+ #: invenio_app_rdm/ext.py:77
124
+ #: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/uploads.html:8
125
+ msgid "Uploads"
126
+ msgstr "Завантаження"
127
+
128
+ #: invenio_app_rdm/ext.py:82
129
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/communities.html:15
130
+ #: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/communities.html:8
131
+ msgid "Communities"
132
+ msgstr "Спільноти"
133
+
134
+ #: invenio_app_rdm/ext.py:87
135
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:118
136
+ #: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:117
137
+ #: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/requests.html:8
138
+ msgid "Requests"
139
+ msgstr "Запити"
140
+
141
+ #: invenio_app_rdm/ext.py:110
142
+ msgid "Home"
143
+ msgstr "Головна сторінка"
144
+
145
+ #: invenio_app_rdm/administration/records/records.py:26
146
+ #: invenio_app_rdm/administration/records/records.py:27
147
+ #: invenio_app_rdm/ext.py:118
148
+ msgid "Records"
149
+ msgstr ""
150
+
151
+ #: invenio_app_rdm/ext.py:125
152
+ msgid "Submit"
153
+ msgstr "Додати"
154
+
155
+ #: invenio_app_rdm/administration/domains/domains.py:41
156
+ #: invenio_app_rdm/administration/domains/domains.py:42
157
+ msgid "Domains"
158
+ msgstr ""
159
+
160
+ #: invenio_app_rdm/administration/domains/domains.py:43
161
+ msgid "Site management"
162
+ msgstr ""
163
+
164
+ #: invenio_app_rdm/administration/domains/domains.py:47
165
+ #: invenio_app_rdm/administration/domains/domains.py:74
166
+ #: invenio_app_rdm/administration/domains/domains.py:144
167
+ msgid "Domain"
168
+ msgstr ""
169
+
170
+ #: invenio_app_rdm/administration/domains/domains.py:48
171
+ msgid "TLD"
172
+ msgstr ""
173
+
174
+ #: invenio_app_rdm/administration/domains/domains.py:49
175
+ #: invenio_app_rdm/administration/domains/domains.py:80
176
+ #: invenio_app_rdm/administration/domains/domains.py:146
177
+ #: invenio_app_rdm/administration/user_moderation/user_moderation.py:68
178
+ #: invenio_app_rdm/administration/users/users.py:24
179
+ #: invenio_app_rdm/administration/users/users.py:35
180
+ #: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:28
181
+ msgid "Status"
182
+ msgstr "Статус"
183
+
184
+ #: invenio_app_rdm/administration/domains/domains.py:50
185
+ #: invenio_app_rdm/administration/domains/domains.py:153
186
+ #: invenio_app_rdm/administration/users/users.py:57
187
+ msgid "Users"
188
+ msgstr ""
189
+
190
+ #: invenio_app_rdm/administration/domains/domains.py:51
191
+ #: invenio_app_rdm/administration/domains/domains.py:154
192
+ #: invenio_app_rdm/administration/users/users.py:37
193
+ msgid "Active"
194
+ msgstr ""
195
+
196
+ #: invenio_app_rdm/administration/domains/domains.py:52
197
+ #: invenio_app_rdm/administration/domains/domains.py:155
198
+ msgid "Inactive"
199
+ msgstr ""
200
+
201
+ #: invenio_app_rdm/administration/domains/domains.py:53
202
+ #: invenio_app_rdm/administration/domains/domains.py:156
203
+ msgid "Confirmed"
204
+ msgstr ""
205
+
206
+ #: invenio_app_rdm/administration/domains/domains.py:54
207
+ #: invenio_app_rdm/administration/domains/domains.py:157
208
+ msgid "Verified"
209
+ msgstr ""
210
+
211
+ #: invenio_app_rdm/administration/domains/domains.py:55
212
+ #: invenio_app_rdm/administration/domains/domains.py:158
213
+ msgid "Blocked"
214
+ msgstr ""
215
+
216
+ #: invenio_app_rdm/administration/domains/domains.py:75
217
+ msgid "Domain name (all lowercase)"
218
+ msgstr ""
219
+
220
+ #: invenio_app_rdm/administration/domains/domains.py:82
221
+ msgid ""
222
+ "Status of the domain. One of new (domain needs review), moderated (users in "
223
+ "domain require moderation), verified (users in domain does not require "
224
+ "moderation) or blocked (users cannot register using this domain)."
225
+ msgstr ""
226
+
227
+ #: invenio_app_rdm/administration/domains/domains.py:94
228
+ #: invenio_app_rdm/administration/domains/domains.py:147
229
+ msgid "Category"
230
+ msgstr ""
231
+
232
+ #: invenio_app_rdm/administration/domains/domains.py:95
233
+ msgid "A label to categorise the domain."
234
+ msgstr ""
235
+
236
+ #: invenio_app_rdm/administration/domains/domains.py:107
237
+ #: invenio_app_rdm/administration/domains/domains.py:148
238
+ msgid "Flagged"
239
+ msgstr ""
240
+
241
+ #: invenio_app_rdm/administration/domains/domains.py:109
242
+ msgid "Used by automatic processes to flag the domain as requiring review."
243
+ msgstr ""
244
+
245
+ #: invenio_app_rdm/administration/domains/domains.py:114
246
+ #: invenio_app_rdm/administration/domains/domains.py:149
247
+ msgid "Source of flag"
248
+ msgstr ""
249
+
250
+ #: invenio_app_rdm/administration/domains/domains.py:115
251
+ msgid "Which source flagged the domain."
252
+ msgstr ""
253
+
254
+ #: invenio_app_rdm/administration/domains/domains.py:125
255
+ msgid "Create domain"
256
+ msgstr ""
257
+
258
+ #: invenio_app_rdm/administration/domains/domains.py:133
259
+ msgid "Edit domain"
260
+ msgstr ""
261
+
262
+ #: invenio_app_rdm/administration/domains/domains.py:141
263
+ msgid "Domain details"
264
+ msgstr ""
265
+
266
+ #: invenio_app_rdm/administration/domains/domains.py:145
267
+ msgid "Top-level domain"
268
+ msgstr ""
269
+
270
+ #: invenio_app_rdm/administration/domains/domains.py:150
271
+ #: invenio_app_rdm/administration/records/records.py:41
272
+ #: invenio_app_rdm/administration/records/records.py:120
273
+ #: invenio_app_rdm/administration/user_moderation/user_moderation.py:172
274
+ #: invenio_app_rdm/administration/users/users.py:25
275
+ #: invenio_app_rdm/administration/users/users.py:41
276
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html:10
277
+ msgid "Created"
278
+ msgstr "Створено"
279
+
280
+ #: invenio_app_rdm/administration/domains/domains.py:151
281
+ #: invenio_app_rdm/administration/users/users.py:26
282
+ #: invenio_app_rdm/administration/users/users.py:42
283
+ msgid "Updated"
284
+ msgstr ""
285
+
286
+ #: invenio_app_rdm/administration/domains/domains.py:152
287
+ msgid "Organisation"
288
+ msgstr ""
289
+
290
+ #: invenio_app_rdm/administration/records/records.py:28
291
+ #: invenio_app_rdm/administration/records/records.py:107
292
+ msgid "Records & files"
293
+ msgstr ""
294
+
295
+ #: invenio_app_rdm/administration/records/records.py:39
296
+ #: invenio_app_rdm/administration/records/records.py:118
297
+ msgid "Title"
298
+ msgstr "Заголовок"
299
+
300
+ #: invenio_app_rdm/administration/records/records.py:40
301
+ #: invenio_app_rdm/administration/records/records.py:119
302
+ msgid "Owner"
303
+ msgstr "Власник"
304
+
305
+ #: invenio_app_rdm/administration/records/records.py:42
306
+ #: invenio_app_rdm/administration/records/records.py:121
307
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:271
308
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:276
309
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:293
310
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:142
311
+ msgid "Files"
312
+ msgstr "Файли"
313
+
314
+ #: invenio_app_rdm/administration/records/records.py:43
315
+ #: invenio_app_rdm/administration/records/records.py:122
316
+ msgid "Stats"
317
+ msgstr ""
318
+
319
+ #: invenio_app_rdm/administration/records/records.py:48
320
+ msgid "Delete record"
321
+ msgstr ""
322
+
323
+ #: invenio_app_rdm/administration/records/records.py:53
324
+ msgid "Restore record"
325
+ msgstr ""
326
+
327
+ #: invenio_app_rdm/administration/records/records.py:105
328
+ #: invenio_app_rdm/administration/records/records.py:106
329
+ msgid "Drafts"
330
+ msgstr ""
331
+
332
+ #: invenio_app_rdm/administration/records/records.py:127
333
+ msgid "Set quota"
334
+ msgstr ""
335
+
336
+ #: invenio_app_rdm/administration/user_moderation/user_moderation.py:29
337
+ #: invenio_app_rdm/administration/user_moderation/user_moderation.py:30
338
+ #: invenio_app_rdm/administration/user_moderation/user_moderation.py:31
339
+ msgid "Moderation"
340
+ msgstr ""
341
+
342
+ #: invenio_app_rdm/administration/user_moderation/user_moderation.py:45
343
+ #: invenio_app_rdm/administration/user_moderation/user_moderation.py:168
344
+ #: invenio_app_rdm/administration/users/users.py:21
345
+ msgid "User"
346
+ msgstr ""
347
+
348
+ #: invenio_app_rdm/administration/user_moderation/user_moderation.py:51
349
+ #: invenio_app_rdm/administration/users/users.py:23
350
+ #: invenio_app_rdm/administration/users/users.py:33
351
+ msgid "Email"
352
+ msgstr "Електронна пошта"
353
+
354
+ #: invenio_app_rdm/administration/user_moderation/user_moderation.py:57
355
+ msgid "Email domain"
356
+ msgstr ""
357
+
358
+ #: invenio_app_rdm/administration/user_moderation/user_moderation.py:63
359
+ msgid "Activity"
360
+ msgstr ""
361
+
362
+ #: invenio_app_rdm/administration/user_moderation/user_moderation.py:76
363
+ #: invenio_app_rdm/administration/users/users.py:78
364
+ msgid "Approve"
365
+ msgstr ""
366
+
367
+ #: invenio_app_rdm/administration/user_moderation/user_moderation.py:81
368
+ #: invenio_app_rdm/administration/users/users.py:88
369
+ msgid "Block"
370
+ msgstr ""
371
+
372
+ #: invenio_app_rdm/administration/user_moderation/user_moderation.py:141
373
+ msgid "User moderation"
374
+ msgstr ""
375
+
376
+ #: invenio_app_rdm/administration/user_moderation/user_moderation.py:164
377
+ #: invenio_app_rdm/administration/users/users.py:31
378
+ msgid "ID"
379
+ msgstr ""
380
+
381
+ #: invenio_app_rdm/administration/user_moderation/user_moderation.py:173
382
+ msgid "Open"
383
+ msgstr "Відкриті"
384
+
385
+ #: invenio_app_rdm/administration/users/users.py:22
386
+ #: invenio_app_rdm/administration/users/users.py:32
387
+ msgid "Username"
388
+ msgstr "Назва облікового запису"
389
+
390
+ #: invenio_app_rdm/administration/users/users.py:34
391
+ msgid "Domain "
392
+ msgstr ""
393
+
394
+ #: invenio_app_rdm/administration/users/users.py:36
395
+ msgid "Visibility"
396
+ msgstr "Видимість"
397
+
398
+ #: invenio_app_rdm/administration/users/users.py:38
399
+ msgid "Confirmed at"
400
+ msgstr ""
401
+
402
+ #: invenio_app_rdm/administration/users/users.py:39
403
+ msgid "Verified at"
404
+ msgstr ""
405
+
406
+ #: invenio_app_rdm/administration/users/users.py:40
407
+ msgid "Blocked at"
408
+ msgstr ""
409
+
410
+ #: invenio_app_rdm/administration/users/users.py:56
411
+ #: invenio_app_rdm/administration/users/users.py:58
412
+ msgid "User management"
413
+ msgstr ""
414
+
415
+ #: invenio_app_rdm/administration/users/users.py:83
416
+ msgid "Restore"
417
+ msgstr ""
418
+
419
+ #: invenio_app_rdm/administration/users/users.py:93
420
+ msgid "Suspend"
421
+ msgstr ""
422
+
423
+ #: invenio_app_rdm/administration/users/users.py:129
424
+ msgid "User details"
425
+ msgstr ""
426
+
427
+ #: invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/records/index.html:12
428
+ msgid "Search "
91
429
  msgstr "Пошук"
92
430
 
93
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:9
431
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:12
94
432
  msgid "New version"
95
433
  msgstr "Нова версія"
96
434
 
97
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:11
98
- #: invenio_app_rdm/theme/views.py:44
99
- msgid "New upload"
100
- msgstr "Нове завантаження"
101
-
102
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:13
435
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:16
103
436
  msgid "Edit upload"
104
437
  msgstr "Редагувати завантаження"
105
438
 
106
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:29
439
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:51
107
440
  msgid "Information banner"
108
441
  msgstr ""
109
442
 
110
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:58
443
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:76
111
444
  msgid "Community visibility"
112
445
  msgstr "Видимість спільноти"
113
446
 
114
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:59
447
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:77
115
448
  msgid "The community is restricted to users with access."
116
449
  msgstr "Спільнота для користуваічв з належним доступом "
117
450
 
118
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:61
451
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:79
119
452
  msgid "Restricted"
120
453
  msgstr "Обмежений доступ"
121
454
 
122
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:77
123
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:19
124
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:84
455
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:96
456
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:24
457
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:121
125
458
  msgid "Preview"
126
459
  msgstr "Попередній перегляд"
127
460
 
128
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:81
461
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:100
129
462
  msgid "You are previewing a published record."
130
463
  msgstr "Ви переглядаєте опублікований запис"
131
464
 
132
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:83
465
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:102
133
466
  msgid "You are previewing changes that have not yet been published."
134
467
  msgstr "Ви переглядаєте зміни, що ще не були опубліковані."
135
468
 
136
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:85
469
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:104
137
470
  msgid "You are previewing a new record that has not yet been published."
138
471
  msgstr "Ви переглядаєте новий запис, що ще не був опублікований"
139
472
 
140
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:87
473
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:106
141
474
  msgid ""
142
475
  "You are previewing a new record version that has not yet been published."
143
476
  msgstr "Ви переглядаєте нову версію документу, яка ще не була опублікована."
144
477
 
145
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:102
478
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:121
146
479
  #, python-format
147
480
  msgid ""
148
481
  "\n"
149
- " There is a %(link_start)snewer version%(link_end)s of the record available.\n"
482
+ " There is a %(link_start)snewer version%(link_end)s of the record\n"
483
+ " available.\n"
150
484
  " "
151
485
  msgstr ""
152
- "\n"
153
- " Доступна %(link_start)sбільш нова версія%(link_end)s цього запису."
154
486
 
155
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:124
487
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:145
156
488
  msgid "Record access information"
157
489
  msgstr "Інформація про доступ до запису"
158
490
 
159
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:131
160
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:262
161
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:115
491
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:152
492
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:309
493
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:155
494
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:185
162
495
  msgid "Reason"
163
496
  msgstr "Підстава"
164
497
 
165
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:143
498
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:165
166
499
  msgid "Back-navigation"
167
500
  msgstr ""
168
501
 
169
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:145
502
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:167
170
503
  msgid "Back to edit"
171
504
  msgstr "Повернутись до редагування"
172
505
 
173
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:161
506
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:185
174
507
  msgid "Manage record"
175
508
  msgstr "Керувати записом"
176
509
 
177
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:176
510
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:201
178
511
  msgid "Publication date and version number"
179
512
  msgstr "Дата публікації та номер версії"
180
513
 
181
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:180
514
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:205
182
515
  #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:25
183
516
  msgid "Publication date"
184
517
  msgstr "Дата публікації"
185
518
 
186
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:181
519
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:206
187
520
  msgid "Published"
188
521
  msgstr "Опубліковано"
189
522
 
190
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:184
523
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:209
524
+ #, python-brace-format
191
525
  msgid "Version {version_number}"
192
526
  msgstr "Версія {version_number}"
193
527
 
194
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:189
528
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:216
195
529
  #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:24
196
530
  msgid "Resource type"
197
531
  msgstr "Тип ресурсу"
198
532
 
199
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:192
533
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:226
200
534
  msgid "Access status"
201
535
  msgstr "Стан доступу"
202
536
 
203
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:211
537
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:248
204
538
  msgid "Record title and creators"
205
539
  msgstr "Назва та автори"
206
540
 
207
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:215
541
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:254
208
542
  msgid "Creators and contributors"
209
543
  msgstr "Автори та учасники"
210
544
 
211
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:224
212
- msgid "Record citations"
545
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:315
546
+ msgid "Request access"
213
547
  msgstr ""
214
548
 
215
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:235
216
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:238
217
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:252
218
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:105
219
- msgid "Files"
220
- msgstr "Файли"
549
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:317
550
+ msgid ""
551
+ "If you would like to request access to these files, please fill out the form"
552
+ " below."
553
+ msgstr ""
221
554
 
222
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:277
555
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:325
556
+ msgid ""
557
+ "You need to satisfy these conditions in order for this request to be "
558
+ "accepted:"
559
+ msgstr ""
560
+
561
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:350
562
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:171
563
+ msgid "System files"
564
+ msgstr ""
565
+
566
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:363
223
567
  msgid "Additional record details"
224
568
  msgstr "Додаткові відомості про запис"
225
569
 
226
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:290
227
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:16
570
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:377
228
571
  msgid "Record details"
229
572
  msgstr "Деталі запису"
230
573
 
231
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:303
232
- msgid "Upload information"
233
- msgstr ""
234
-
235
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:306
236
- msgid "Created"
237
- msgstr "Створено"
238
-
239
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:312
240
- msgid "Modified"
241
- msgstr "Змінено"
242
-
243
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:329
574
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:394
244
575
  msgid "Jump to top of page"
245
576
  msgstr "Перейти до початку сторінки"
246
577
 
247
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:331
578
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:396
248
579
  msgid "Jump up"
249
580
  msgstr "Перейти вгору"
250
581
 
582
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html:10
583
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html:14
584
+ msgid "Draft not found"
585
+ msgstr ""
586
+
587
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html:15
588
+ msgid ""
589
+ "This record has already been published and is not currently being edited, so"
590
+ " no draft exists."
591
+ msgstr ""
592
+
593
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html:16
594
+ msgid "Go to published record"
595
+ msgstr ""
596
+
251
597
  #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/export.html:18
252
598
  msgid "Back to details"
253
599
  msgstr "Повернутись до деталей"
@@ -256,47 +602,114 @@ msgstr "Повернутись до деталей"
256
602
  msgid "Preview for"
257
603
  msgstr ""
258
604
 
605
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html:14
606
+ msgid "Permission required"
607
+ msgstr ""
608
+
609
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html:18
610
+ msgid ""
611
+ "The record was previously accessible to the public but is now restricted to "
612
+ "users with access."
613
+ msgstr ""
614
+
615
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html:20
616
+ msgid ""
617
+ "The Digital Object Identifier (DOI) associated with this record remains "
618
+ "active for reference."
619
+ msgstr ""
620
+
621
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html:27
622
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:55
623
+ msgid "Identifier:"
624
+ msgstr ""
625
+
259
626
  #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/search.html:8
260
627
  msgid "Search results"
261
628
  msgstr "Результати пошуку"
262
629
 
263
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:9
630
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:10
264
631
  msgid "Tombstone"
265
632
  msgstr ""
266
633
 
267
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:12
634
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:11
635
+ msgid "Reason unknown"
636
+ msgstr ""
637
+
638
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:21
268
639
  msgid "Gone"
269
640
  msgstr "Втрачений"
270
641
 
271
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:14
642
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:26
272
643
  #, python-format
273
644
  msgid ""
274
645
  "\n"
275
- " The record you are trying to access was removed from %(sitename)s. The\n"
276
- " metadata of the record is kept for archival purposes.\n"
277
- " "
646
+ " The record you are trying to access was removed from %(sitename)s. The\n"
647
+ " metadata of the record is kept for archival purposes."
278
648
  msgstr ""
279
- "\n"
280
- " Запис, який ви намагаєтесь отримати, видалено з сайту%(sitename)s. \n"
281
- " Метадані запису збережено з метою архівування.\n"
282
- " "
283
649
 
284
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:21
650
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:35
285
651
  msgid "Reason for removal:"
286
652
  msgstr "Підстава для видалення:"
287
653
 
288
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/creatibutors.html:16
289
- #: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:62
290
- msgid "Creators list"
291
- msgstr "Перелік авторів"
654
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:38
655
+ msgid "Removed by:"
656
+ msgstr ""
657
+
658
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:42
659
+ msgid "Removal note:"
660
+ msgstr ""
661
+
662
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:46
663
+ msgid "Date of removal:"
664
+ msgstr ""
665
+
666
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:50
667
+ msgid "Citation:"
668
+ msgstr ""
669
+
670
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:16
671
+ msgid "You are currently not logged in"
672
+ msgstr ""
673
+
674
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:16
675
+ msgid "Do you have an account?"
676
+ msgstr ""
677
+
678
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:17
679
+ msgid "Log in here"
680
+ msgstr ""
681
+
682
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:22
683
+ msgid "You are logged in as"
684
+ msgstr ""
685
+
686
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:30
687
+ msgid "Not you?"
688
+ msgstr ""
292
689
 
293
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/creatibutors.html:17
690
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:31
691
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:113
692
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:145
693
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:153
694
+ msgid "Log out"
695
+ msgstr "Вийти"
696
+
697
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:31
698
+ msgid "to switch account."
699
+ msgstr ""
700
+
701
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/contact.html:11
702
+ msgid "Send message"
703
+ msgstr ""
704
+
705
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/creatibutors.html:16
706
+ #: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:73
294
707
  msgid "Creators"
295
708
  msgstr "Автори"
296
709
 
297
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/creatibutors.html:36
298
- msgid "Contributors list"
299
- msgstr "Перелік учасників"
710
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/creatibutors.html:34
711
+ msgid "Contributors"
712
+ msgstr "Учасники"
300
713
 
301
714
  #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/description.html:14
302
715
  msgid "Record description"
@@ -306,57 +719,112 @@ msgstr "Опис запису"
306
719
  msgid "Description"
307
720
  msgstr "Опис"
308
721
 
309
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:28
722
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:38
310
723
  msgid "Additional details"
311
724
  msgstr "Додаткові відомості"
312
725
 
313
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:43
726
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:55
727
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:73
314
728
  msgid "Additional titles"
315
729
  msgstr "Додаткові назви"
316
730
 
317
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:59
731
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:98
732
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:116
318
733
  msgid "Identifiers"
319
734
  msgstr "Ідентифікатори"
320
735
 
321
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:74
736
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:141
737
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:157
322
738
  msgid "Related works"
323
739
  msgstr "Пов'язані праці"
324
740
 
325
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:89
741
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:180
742
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:198
326
743
  msgid "Funding"
327
- msgstr "Джерела фінансування"
744
+ msgstr "Фінансування"
328
745
 
329
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:104
746
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:223
747
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:241
330
748
  msgid "Dates"
331
749
  msgstr "Дати"
332
750
 
333
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:119
334
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:117
751
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:311
752
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:327
335
753
  msgid "References"
336
754
  msgstr "Посилання"
337
755
 
338
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/doi.html:13
339
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/doi.html:25
340
- msgid "DOI"
341
- msgstr "DOI"
756
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:17
757
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:55
758
+ msgid "Views"
759
+ msgstr ""
342
760
 
343
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/doi.html:16
344
- msgid "Get the DOI badge!"
761
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:25
762
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:75
763
+ msgid "Downloads"
345
764
  msgstr ""
346
765
 
347
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/doi.html:22
348
- msgid "DOI Badge"
766
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:36
767
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:39
768
+ msgid "Show more details"
769
+ msgstr ""
770
+
771
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:37
772
+ msgid "Show less details"
773
+ msgstr ""
774
+
775
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:48
776
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:70
777
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:90
778
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:112
779
+ msgid "All versions"
780
+ msgstr ""
781
+
782
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:49
783
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:71
784
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:91
785
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:113
786
+ msgid "This version"
787
+ msgstr ""
788
+
789
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:62
790
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:82
791
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:102
792
+ msgid "More info"
793
+ msgstr ""
794
+
795
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:67
796
+ msgid "Total views"
797
+ msgstr ""
798
+
799
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:87
800
+ msgid "Total downloads"
801
+ msgstr ""
802
+
803
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:95
804
+ msgid "Data volume"
805
+ msgstr ""
806
+
807
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:107
808
+ msgid "Total data volume"
809
+ msgstr ""
810
+
811
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:119
812
+ msgid "More info on how stats are collected."
349
813
  msgstr ""
350
814
 
351
815
  #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:15
352
816
  msgid "Keywords"
353
817
  msgstr "Ключові слова"
354
818
 
355
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:21
356
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:37
819
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:22
820
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:39
357
821
  msgid "Search results for "
358
822
  msgstr "Результати пошуку для"
359
823
 
824
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/citations.html:2
825
+ msgid "Citation"
826
+ msgstr "Цитування"
827
+
360
828
  #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:17
361
829
  msgid "Details"
362
830
  msgstr "Деталі"
@@ -366,55 +834,96 @@ msgid "Publisher"
366
834
  msgstr "Видавець"
367
835
 
368
836
  #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:27
837
+ msgid "Published in"
838
+ msgstr ""
839
+
840
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:28
841
+ msgid "Imprint"
842
+ msgstr ""
843
+
844
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:29
845
+ msgid "Awarding university"
846
+ msgstr ""
847
+
848
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:30
849
+ msgid "Conference"
850
+ msgstr ""
851
+
852
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:31
369
853
  msgid "Languages"
370
854
  msgstr "Мови"
371
855
 
372
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:28
856
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:32
373
857
  msgid "Formats"
374
858
  msgstr "Формати"
375
859
 
376
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:29
860
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:33
377
861
  msgid "Sizes"
378
862
  msgstr "Розміри"
379
863
 
380
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/export.html:13
381
864
  #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/export.html:14
382
865
  msgid "Export"
383
866
  msgstr "Експортувати"
384
867
 
385
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/keywords_subjects.html:12
868
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/external_resources.html:9
869
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/external_resources.html:10
870
+ msgid "External resources"
871
+ msgstr ""
872
+
386
873
  #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/keywords_subjects.html:13
874
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/keywords_subjects.html:14
387
875
  msgid "Keywords and subjects"
388
876
  msgstr "Ключові слова та тематика"
389
877
 
390
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:13
391
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:15
392
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:133
393
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:160
394
- #: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:51
878
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:14
879
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:16
880
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:162
881
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:191
882
+ #: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:61
883
+ #: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/user-access-request/index.html:43
395
884
  msgid "Opens in new tab"
396
885
  msgstr "Буде відкрито у новій вкладці"
397
886
 
398
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:22
887
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:14
888
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:16
889
+ msgid "Read more"
890
+ msgstr "Детальніше"
891
+
399
892
  #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:23
400
893
  msgid "Rights"
401
894
  msgstr "Права"
402
895
 
403
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:52
896
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:54
404
897
  msgid "Close"
405
898
  msgstr "Закрити"
406
899
 
407
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:56
900
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:58
408
901
  msgid "No further description."
409
902
  msgstr "Додатковий опис відсутній."
410
903
 
904
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/locations.html:14
905
+ msgid "Geographic locations"
906
+ msgstr ""
907
+
411
908
  #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/manage_menu.html:10
412
909
  msgid "Record management"
413
910
  msgstr "Керування записом"
414
911
 
415
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/versions.html:11
416
- msgid "Record versions"
417
- msgstr "Версії запису"
912
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/metrics.html:12
913
+ msgid "Metrics"
914
+ msgstr ""
915
+
916
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html:5
917
+ msgid "Upload information"
918
+ msgstr ""
919
+
920
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html:8
921
+ msgid "Technical metadata"
922
+ msgstr ""
923
+
924
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html:15
925
+ msgid "Modified"
926
+ msgstr "Змінено"
418
927
 
419
928
  #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/versions.html:12
420
929
  msgid "Versions"
@@ -441,344 +950,414 @@ msgstr ""
441
950
  msgid "Affiliations for"
442
951
  msgstr ""
443
952
 
444
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:102
953
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:119
445
954
  msgid "Open external link"
446
955
  msgstr "Відкрити зоанішнє посилання"
447
956
 
448
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:34
957
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:297
958
+ msgid "Conference website"
959
+ msgstr ""
960
+
961
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html:9
962
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html:24
963
+ msgid "DOI"
964
+ msgstr "DOI"
965
+
966
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html:15
967
+ msgid "Get the DOI badge!"
968
+ msgstr ""
969
+
970
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html:21
971
+ msgid "DOI Badge"
972
+ msgstr ""
973
+
974
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:44
449
975
  msgid "File preview"
450
976
  msgstr "Попередній перегляд файлу"
451
977
 
452
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:52
978
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:76
453
979
  msgid "Name"
454
980
  msgstr "Назва"
455
981
 
456
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:53
982
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:77
457
983
  msgid "Size"
458
984
  msgstr "Розмір"
459
985
 
460
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:54
461
- #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:41
462
- msgid "Actions"
463
- msgstr "Дії"
986
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:82
987
+ msgid "Download all"
988
+ msgstr ""
464
989
 
465
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:74
990
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:111
466
991
  msgid ""
467
992
  "This is the file fingerprint (checksum), which can be used to verify the "
468
993
  "file integrity."
469
994
  msgstr ""
470
995
 
471
- #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:89
996
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:125
472
997
  msgid "Download"
473
998
  msgstr "Завантажити"
474
999
 
475
- #: invenio_app_rdm/records_ui/views/deposits.py:57
476
- msgid "Discard the reserved {scheme_label}."
1000
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/locations.html:55
1001
+ msgid "Unknown"
1002
+ msgstr ""
1003
+
1004
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/stats_popup.html:9
1005
+ msgid "See the full number"
1006
+ msgstr ""
1007
+
1008
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/version.html:13
1009
+ msgid "Version"
1010
+ msgstr "Версія"
1011
+
1012
+ #: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/version.html:14
1013
+ msgid "No DOI available"
1014
+ msgstr ""
1015
+
1016
+ #: invenio_app_rdm/records_ui/views/deposits.py:71
1017
+ #, python-format
1018
+ msgid "Discard the reserved %(scheme_label)s."
477
1019
  msgstr ""
478
1020
 
479
- #: invenio_app_rdm/records_ui/views/deposits.py:60
480
- msgid "Get a {scheme_label} now!"
1021
+ #: invenio_app_rdm/records_ui/views/deposits.py:74
1022
+ #, python-format
1023
+ msgid "Get a %(scheme_label)s now!"
481
1024
  msgstr ""
482
1025
 
483
- #: invenio_app_rdm/records_ui/views/deposits.py:63
1026
+ #: invenio_app_rdm/records_ui/views/deposits.py:77
1027
+ #, python-format
484
1028
  msgid ""
485
- "Reserve a {scheme_label} by pressing the button (so it can be included in "
486
- "files prior to upload). The {scheme_label} is registered when your upload is"
487
- " published."
1029
+ "Reserve a %(scheme_label)s by pressing the button (so it can be included in "
1030
+ "files prior to upload). The %(scheme_label)s is registered when your upload "
1031
+ "is published."
488
1032
  msgstr ""
489
1033
 
490
- #: invenio_app_rdm/records_ui/views/deposits.py:68
1034
+ #: invenio_app_rdm/records_ui/views/deposits.py:83
1035
+ #, python-format
491
1036
  msgid ""
492
- "A {scheme_label} allows your upload to be easily and unambiguously cited. "
1037
+ "A %(scheme_label)s allows your upload to be easily and unambiguously cited. "
493
1038
  "Example: 10.1234/foo.bar"
494
1039
  msgstr ""
495
1040
 
496
- #: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/community_dashboard.html:18
1041
+ #: invenio_app_rdm/records_ui/views/deposits.py:197
1042
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:11
1043
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:19
1044
+ msgid "All"
1045
+ msgstr "Всі"
1046
+
1047
+ #: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/community_dashboard.html:21
497
1048
  msgid "Back to invitations"
498
1049
  msgstr "Повернутись до запрошень"
499
1050
 
500
- #: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/user_dashboard.html:16
501
- #: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:41
1051
+ #: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/user_dashboard.html:19
1052
+ #: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:31
1053
+ #: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/guest-access-request/index.html:34
1054
+ #: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/user-access-request/index.html:28
502
1055
  msgid "Back to requests"
503
1056
  msgstr "Повернутись до запитів"
504
1057
 
505
- #: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:42
1058
+ #: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:52
506
1059
  msgid "Conversation"
507
1060
  msgstr "Бесіда"
508
1061
 
509
- #: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:54
1062
+ #: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:64
510
1063
  msgid "Record"
511
1064
  msgstr "Запис"
512
1065
 
513
- #: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:19
1066
+ #: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/guest-access-request/index.html:13
1067
+ msgid "Access request"
1068
+ msgstr ""
1069
+
1070
+ #: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:25
514
1071
  msgid "View Community"
515
1072
  msgstr "Переглянути спільноту"
516
1073
 
517
- #: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:53
1074
+ #: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:63
518
1075
  msgid "View record"
519
1076
  msgstr "Переглянути запис"
520
1077
 
521
- #: invenio_app_rdm/theme/views.py:39
522
- msgid "My dashboard"
523
- msgstr "Панель інструментів"
1078
+ #: invenio_app_rdm/theme/views.py:132
1079
+ msgid "Notification preferences were updated."
1080
+ msgstr ""
524
1081
 
525
1082
  #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:18
526
1083
  msgid "About InvenioRDM"
527
1084
  msgstr "Про InvenioRDM"
528
1085
 
529
1086
  #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:19
530
- #, python-format
531
- msgid ""
532
- "\n"
533
- " <p><a href=\"%(invenio_rdm)s\">Product page</a></p>\n"
534
- " "
1087
+ msgid "Product page"
535
1088
  msgstr ""
536
- "\n"
537
- " <p><a href=\"%(invenio_rdm)s\">Сайт програми</a></p>\n"
538
- " "
539
1089
 
540
- #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:22
541
- #, python-format
542
- msgid ""
543
- "\n"
544
- " <p><a href=\"%(invenio_rdm_features)s\">Features</a></p>\n"
545
- " "
1090
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:20
1091
+ msgid "Features"
546
1092
  msgstr ""
547
- "\n"
548
- " <p><a href=\"%(invenio_rdm_features)s\">Особливості</a></p>\n"
549
- " "
550
1093
 
551
- #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:25
552
- #, python-format
553
- msgid ""
554
- "\n"
555
- " <p><a href=\"%(invenio_rdm_roadmap)s\">Roadmap</a></p>\n"
556
- " "
1094
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:21
1095
+ msgid "Roadmap"
557
1096
  msgstr ""
558
- "\n"
559
- " <p><a href=\"%(invenio_rdm_roadmap)s\">Дорожна карта</a></p>\n"
560
- " "
561
1097
 
562
- #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:28
563
- #, python-format
564
- msgid ""
565
- "\n"
566
- " <p><a href=\"%(invenio_rdm_demo_site)s\">Demo site</a></p>\n"
567
- " "
1098
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:22
1099
+ msgid "Demo site"
568
1100
  msgstr ""
569
- "\n"
570
- " <p><a href=\"%(invenio_rdm_demo_site)s\">Демонстраційни сайт</a></p>\n"
571
- " "
572
1101
 
573
- #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:33
1102
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:25
574
1103
  msgid "Get involved"
575
1104
  msgstr "Долучитись"
576
1105
 
577
- #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:34
578
- #, python-format
579
- msgid ""
580
- "\n"
581
- " <p><a href=\"%(invenio_rdm_gh)s\">GitHub</a></p>\n"
582
- " "
1106
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:26
1107
+ msgid "GitHub"
583
1108
  msgstr ""
584
- "\n"
585
- " <p><a href=\"%(invenio_rdm_gh)s\">GitHub</a></p>\n"
586
- " "
587
1109
 
588
- #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:37
589
- #, python-format
590
- msgid ""
591
- "\n"
592
- " <p><a href=\"%(invenio_rdm_milestones)s\">Project Milestones</a></p>\n"
593
- " "
1110
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:27
1111
+ msgid "Project Milestones"
594
1112
  msgstr ""
595
- "\n"
596
- " <p><a href=\"%(invenio_rdm_milestones)s\">Основні етапи</a></p>\n"
597
- " "
598
1113
 
599
- #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:40
600
- #, python-format
601
- msgid ""
602
- "\n"
603
- " <p><a href=\"%(invenio_rdm_docs_site)s\">Documentation</a></p>\n"
604
- " "
1114
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:28
1115
+ msgid "Documentation"
605
1116
  msgstr ""
606
- "\n"
607
- " <p><a href=\"%(invenio_rdm_docs_site)s\">Документація</a></p>\n"
608
- " "
609
1117
 
610
- #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:45
1118
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:31
611
1119
  msgid "Community"
612
1120
  msgstr "Спільнота"
613
1121
 
614
- #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:46
615
- #, python-format
616
- msgid ""
617
- "\n"
618
- " <p><a href=\"%(invenio_rdm_chatroom)s\">Chatroom</a></p>\n"
619
- " "
1122
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:32
1123
+ msgid "Chatroom"
620
1124
  msgstr ""
621
- "\n"
622
- " <p><a href=\"%(invenio_rdm_chatroom)s\">Кімната чату</a></p>\n"
623
- " "
624
1125
 
625
- #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:49
626
- #, python-format
627
- msgid ""
628
- "\n"
629
- " <p><a href=\"%(invenio_rdm_talk)s\">Forum</a></p>\n"
630
- " "
1126
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:33
1127
+ msgid "Forum"
631
1128
  msgstr ""
632
- "\n"
633
- " <p><a href=\"%(invenio_rdm_talk)s\">Форум</a></p>\n"
634
- " "
635
1129
 
636
- #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:52
637
- #, python-format
638
- msgid ""
639
- "\n"
640
- " <p><a href=\"%(invenio_events)s\">Events & training</a></p>\n"
641
- " "
1130
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:34
1131
+ msgid "Events & training"
642
1132
  msgstr ""
643
- "\n"
644
- " <p><a href=\"%(invenio_events)s\">Події та навчання</a></p>\n"
645
- " "
646
1133
 
647
- #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:72
648
- #, python-format
649
- msgid ""
650
- "Powered by <a\n"
651
- " href=\"%(invenio_rdm)s\">InvenioRDM</a>"
1134
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:19
1135
+ msgid "Impersonated session"
1136
+ msgstr ""
1137
+
1138
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:21
1139
+ msgid "You must logout after you finish with you inquiry!"
652
1140
  msgstr ""
653
- "Використовує рушій <a\n"
654
- " href=\"%(invenio_rdm)s\">InvenioRDM</a>"
655
1141
 
656
- #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/frontpage.html:19
1142
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:38
1143
+ #: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:37
1144
+ msgid "home"
1145
+ msgstr ""
1146
+
1147
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:51
1148
+ #: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:50
1149
+ msgid "Menu"
1150
+ msgstr "Меню"
1151
+
1152
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:68
1153
+ #: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:67
1154
+ msgid "Close menu"
1155
+ msgstr "Закрити меню"
1156
+
1157
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:120
1158
+ #: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:120
1159
+ msgid "Inbox"
1160
+ msgstr "Вхідні повідомлення"
1161
+
1162
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_frontpage.html:36
1163
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_frontpage.html:37
1164
+ msgid "Search"
1165
+ msgstr "Пошук"
1166
+
1167
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:18
1168
+ msgid "Log in"
1169
+ msgstr "Увійти"
1170
+
1171
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:22
1172
+ msgid "Sign up"
1173
+ msgstr "Зареєструватись"
1174
+
1175
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:39
1176
+ msgid "Quick create"
1177
+ msgstr ""
1178
+
1179
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:56
1180
+ msgid "Actions"
1181
+ msgstr "Дії"
1182
+
1183
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:77
1184
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:120
1185
+ msgid "My account"
1186
+ msgstr "Мій обліковий запис"
1187
+
1188
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:12
657
1189
  msgid "You've successfully installed InvenioRDM!"
658
1190
  msgstr "Ви успішно встановили InvenioRDM!"
659
1191
 
660
- #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/frontpage.html:21
1192
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:14
661
1193
  msgid "What is ahead?"
662
1194
  msgstr "Що далі?"
663
1195
 
664
- #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/frontpage.html:27
1196
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:24
665
1197
  msgid "Configure"
666
1198
  msgstr "Налаштуйте"
667
1199
 
668
- #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/frontpage.html:29
669
- #, python-format
1200
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:27
670
1201
  msgid ""
671
- "\n"
672
- " Configure the datamodel, resource types, permissions and much more to make it suit your needs! For more\n"
673
- " information on how to do it visit the <a href=\"%(configuration_link)s\" target=\"_blank\">configuration\n"
674
- " section in the docs</a>.\n"
675
- " "
1202
+ "Configure the datamodel, resource types, permissions and much more to make "
1203
+ "it suit your needs! For more information on how to do it visit the"
1204
+ msgstr ""
1205
+
1206
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:29
1207
+ msgid "configuration section in the docs"
676
1208
  msgstr ""
677
- "\n"
678
- " Налаштуйте модель даних, типи ресурсів, дозволи, та багато іншого для ваших потреб! За додатковою\n"
679
- " інформацію щодо того, як це зробити, відвідайте сторінку <a href=\"%(configuration_link)s\" target=\"_blank\">розділу\n"
680
- " налаштувань документації</a>.\n"
681
- " "
682
1209
 
683
- #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/frontpage.html:38
1210
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:41
684
1211
  msgid "Customize"
685
1212
  msgstr "Пристосуйте"
686
1213
 
687
- #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/frontpage.html:40
688
- #, python-format
1214
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:44
689
1215
  msgid ""
690
- "\n"
691
- " Customize the layout and adapt the styling to match your institution's. See how to do so <a\n"
692
- " href=\"%(configuration_link)s\" target=\"_blank\">here</a>.\n"
693
- " "
1216
+ "Customize the layout and adapt the styling to match your institution's. See "
1217
+ "how to do so"
694
1218
  msgstr ""
695
- "\n"
696
- " Змініть зовнішній вигляд та стиль у відповідності з потребами вашої установи. Детальніше про це <a\n"
697
- " href=\"%(configuration_link)s\" target=\"_blank\">тут</a>.\n"
698
- " "
699
1219
 
700
- #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/frontpage.html:48
1220
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:46
1221
+ msgid "here"
1222
+ msgstr ""
1223
+
1224
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:57
701
1225
  msgid "Run it!"
702
1226
  msgstr "Запустіть!"
703
1227
 
704
- #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/frontpage.html:50
705
- #, python-format
706
- msgid ""
707
- "\n"
708
- " <a href=\"%(deployment_link)s\" target=\"_blank\">Run</a> your\n"
709
- " InvenioRDM instance locally or in containers.\n"
710
- " "
1228
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:59
1229
+ msgid "Run your InvenioRDM instance locally or in containers."
1230
+ msgstr ""
1231
+
1232
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:61
1233
+ msgid "Run"
711
1234
  msgstr ""
712
- "\n"
713
- " <a href=\"%(deployment_link)s\" target=\"_blank\">Запустіть</a> власну\n"
714
- " InvenioRDM як локальний застосунок, чи у контейнерах.\n"
715
- " "
716
1235
 
717
- #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/frontpage.html:63
1236
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:75
718
1237
  msgid "Docs"
719
1238
  msgstr "Документація"
720
1239
 
721
- #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/frontpage.html:68
1240
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:84
722
1241
  msgid "Code"
723
1242
  msgstr "Джерельний код"
724
1243
 
725
- #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:37
726
- msgid "Menu"
727
- msgstr "Меню"
1244
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:91
1245
+ msgid "To disable this section, add"
1246
+ msgstr ""
728
1247
 
729
- #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:55
730
- msgid "Close menu"
731
- msgstr "Закрити меню"
1248
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:93
1249
+ msgid "to your invenio.cfg file."
1250
+ msgstr ""
732
1251
 
733
- #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:103
734
- #: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/requests.html:8
735
- #: invenio_app_rdm/users_ui/views/ui.py:83
736
- msgid "Requests"
737
- msgstr "Запити"
1252
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:6
1253
+ msgid "In this community"
1254
+ msgstr "У цій спільноті"
738
1255
 
739
- #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:105
740
- msgid "Inbox"
741
- msgstr "Вхідні повідомлення"
1256
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:30
1257
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:31
1258
+ msgid "Search records"
1259
+ msgstr ""
742
1260
 
743
- #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:17
744
- msgid "Log in"
745
- msgstr "Увійти"
1261
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/site_footer.html:15
1262
+ #: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:15
1263
+ msgid "Powered by"
1264
+ msgstr "Powered by"
746
1265
 
747
- #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:21
748
- msgid "Sign up"
749
- msgstr "Зареєструватись"
1266
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:13
1267
+ msgid ""
1268
+ "The following files were flagged as 'unhealthy'. This means that the "
1269
+ "checksum check failed or timed out. Please take any action if needed."
1270
+ msgstr ""
750
1271
 
751
- #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:59
752
- #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:100
753
- msgid "My account"
754
- msgstr "Мій обліковий запис"
1272
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:16
1273
+ #, python-format
1274
+ msgid "ID: %s"
1275
+ msgstr ""
755
1276
 
756
- #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:94
757
- #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:123
758
- #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:130
759
- msgid "Log out"
760
- msgstr "Вийти"
1277
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:17
1278
+ #, python-format
1279
+ msgid "URI: %s"
1280
+ msgstr ""
761
1281
 
762
- #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:6
763
- msgid "In this community"
764
- msgstr "У цій спільноті"
1282
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:19
1283
+ #, python-format
1284
+ msgid "Name: %s"
1285
+ msgstr ""
765
1286
 
766
- #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:11
767
- #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:19
768
- msgid "All"
769
- msgstr "Всі"
1287
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:21
1288
+ #, python-format
1289
+ msgid "Created: %s"
1290
+ msgstr ""
1291
+
1292
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:22
1293
+ #, python-format
1294
+ msgid "Checksum: %s"
1295
+ msgstr ""
1296
+
1297
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:23
1298
+ #, python-format
1299
+ msgid "Last check date: %s"
1300
+ msgstr ""
1301
+
1302
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:24
1303
+ #, python-format
1304
+ msgid "Last check FAILED with result: %s"
1305
+ msgstr ""
1306
+
1307
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:26
1308
+ #, python-format
1309
+ msgid "Record: %s/records/%s"
1310
+ msgstr ""
1311
+
1312
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:29
1313
+ #, python-format
1314
+ msgid "Draft: %s/uploads/%s"
1315
+ msgstr ""
770
1316
 
771
1317
  #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.de.html:9
772
1318
  #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.en.html:8
1319
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.sv.html:8
773
1320
  msgid "Search guide"
774
1321
  msgstr "Посібник з пошуку"
775
1322
 
776
- #: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/communities.html:8
777
- #: invenio_app_rdm/users_ui/views/ui.py:78
778
- msgid "Communities"
779
- msgstr "Спільноти"
1323
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/statistics.en.html:8
1324
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/statistics.sv.html:8
1325
+ msgid "FAQ statistics"
1326
+ msgstr ""
780
1327
 
781
- #: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/uploads.html:8
782
- #: invenio_app_rdm/users_ui/views/ui.py:73
783
- msgid "Uploads"
784
- msgstr "Завантаження"
1328
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/versioning.en.html:8
1329
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/versioning.sv.html:8
1330
+ msgid "FAQ versioning"
1331
+ msgstr ""
1332
+
1333
+ #: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/macros/records_list.html:10
1334
+ msgid "Recent uploads"
1335
+ msgstr ""
1336
+
1337
+ #: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:22
1338
+ msgid "Verified community"
1339
+ msgstr ""
1340
+
1341
+ #: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:29
1342
+ msgid "Privacy policy"
1343
+ msgstr ""
1344
+
1345
+ #: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:30
1346
+ msgid "Terms of use"
1347
+ msgstr ""
1348
+
1349
+ #: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:31
1350
+ msgid "Support"
1351
+ msgstr ""
1352
+
1353
+ #: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html:18
1354
+ msgid "Your dashboard"
1355
+ msgstr ""
1356
+
1357
+ #: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html:18
1358
+ msgid "Anonymous user"
1359
+ msgstr ""
1360
+
1361
+ #: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html:35
1362
+ msgid "New community"
1363
+ msgstr "Нова спільнота"