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