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,14 +1,14 @@
1
1
  #
2
2
  # Translators:
3
- # Martin Jantson <martinjantson97@gmail.com>, 2022
4
- # Mart Jantson, 2022
3
+ # Mart Jantson, 2024
4
+ # Martin Jantson <martinjantson97@gmail.com>, 2025
5
5
  #
6
6
  msgid ""
7
7
  msgstr ""
8
8
  "Project-Id-Version: i18next-conv\n"
9
- "POT-Creation-Date: 2022-10-12T06:58:21.832Z\n"
9
+ "POT-Creation-Date: 2025-03-27T16:30:16.192Z\n"
10
10
  "PO-Revision-Date: 2021-07-14 16:07+0000\n"
11
- "Last-Translator: Mart Jantson, 2022\n"
11
+ "Last-Translator: Martin Jantson <martinjantson97@gmail.com>, 2025\n"
12
12
  "Language-Team: Estonian (https://app.transifex.com/inveniosoftware/teams/23537/et/)\n"
13
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
14
  "Content-Transfer-Encoding: 8bit\n"
@@ -19,14 +19,336 @@ msgstr ""
19
19
  msgid "Basic information"
20
20
  msgstr "Põhiandmed"
21
21
 
22
+ msgid "Impersonate user"
23
+ msgstr ""
24
+
25
+ msgid "Impersonate"
26
+ msgstr ""
27
+
28
+ msgid "You must accept this."
29
+ msgstr "Peate sellega leppima."
30
+
31
+ msgid "Success"
32
+ msgstr ""
33
+
34
+ msgid ""
35
+ "User impersonated succesfully! You will be redirected in frontpage soon."
36
+ msgstr ""
37
+
38
+ msgid "Unable to impersonate user."
39
+ msgstr ""
40
+
41
+ msgid ""
42
+ "Please read carefully and confirm the following statements before you "
43
+ "proceed."
44
+ msgstr ""
45
+
46
+ msgid "You are about to impersonate user <bold>{{email}}(id: {{id}})</bold>."
47
+ msgstr ""
48
+
49
+ msgid "You <bold>MUST</bold> logout after completing your inquiry."
50
+ msgstr ""
51
+
52
+ msgid "Close"
53
+ msgstr "Sulge"
54
+
55
+ msgid "Set Quota"
56
+ msgstr ""
57
+
58
+ msgid "Set quota in bytes"
59
+ msgstr ""
60
+
61
+ msgid "Note"
62
+ msgstr "Märge"
63
+
64
+ msgid ""
65
+ "This is the default quota that will be applied to any NEW records created by"
66
+ " this user – it will NOT update quota of existing records."
67
+ msgstr ""
68
+
69
+ msgid "Quota of {{id}} was set to {{quota}} {{unit}}"
70
+ msgstr ""
71
+
72
+ msgid "Unable to set quota."
73
+ msgstr ""
74
+
75
+ msgid "Quota size ({{unit}})"
76
+ msgstr ""
77
+
78
+ msgid "Enter quota size..."
79
+ msgstr ""
80
+
81
+ msgid "Max file size ({{unit}})"
82
+ msgstr ""
83
+
84
+ msgid "Enter max file size..."
85
+ msgstr ""
86
+
87
+ msgid "Ticket 1234"
88
+ msgstr ""
89
+
90
+ msgid "Set quota"
91
+ msgstr ""
92
+
93
+ msgid "Domain"
94
+ msgstr "Valdkond"
95
+
96
+ msgid "Flagged"
97
+ msgstr ""
98
+
99
+ msgid "Organization"
100
+ msgstr "Organisatsioon"
101
+
102
+ msgid "Company"
103
+ msgstr ""
104
+
105
+ msgid "Mail provider"
106
+ msgstr ""
107
+
108
+ msgid "Spammer"
109
+ msgstr ""
110
+
111
+ msgid "TLD"
112
+ msgstr ""
113
+
114
+ msgid "Status"
115
+ msgstr "Staatus"
116
+
117
+ msgid "New"
118
+ msgstr "Uus"
119
+
120
+ msgid "Moderated"
121
+ msgstr ""
122
+
123
+ msgid "Verified"
124
+ msgstr ""
125
+
126
+ msgid "Blocked"
127
+ msgstr ""
128
+
129
+ msgid "Users"
130
+ msgstr "Kasutajad"
131
+
132
+ msgid "Active"
133
+ msgstr "Aktiivne"
134
+
135
+ msgid "Inactive"
136
+ msgstr ""
137
+
138
+ msgid "Confirmed"
139
+ msgstr ""
140
+
141
+ msgid "Links"
142
+ msgstr ""
143
+
144
+ msgid "Set quota for record {{recordId}}"
145
+ msgstr ""
146
+
147
+ msgid "Delete record"
148
+ msgstr ""
149
+
150
+ msgid "Restore record"
151
+ msgstr ""
152
+
153
+ msgid "Unavailability statement"
154
+ msgstr ""
155
+
156
+ msgid "Record {{id}} was restored."
157
+ msgstr ""
158
+
159
+ msgid "Unable to restore."
160
+ msgstr ""
161
+
162
+ msgid "Are you sure you want to restore #{{id}}"
163
+ msgstr ""
164
+
165
+ msgid "Published"
166
+ msgstr "Avaldatud"
167
+
168
+ msgid "Deleted"
169
+ msgstr "Kustutatud"
170
+
171
+ msgid "Scheduled for purge"
172
+ msgstr ""
173
+
174
+ msgid "Empty draft title"
175
+ msgstr ""
176
+
177
+ msgid "version"
178
+ msgstr "versioon"
179
+
180
+ msgid "Owner"
181
+ msgstr "Omanik"
182
+
183
+ msgid "Created"
184
+ msgstr "Loodud"
185
+
186
+ msgid "Files"
187
+ msgstr "Failid"
188
+
189
+ msgid "Stats"
190
+ msgstr ""
191
+
192
+ msgid "Record {{id}} was deleted."
193
+ msgstr ""
194
+
195
+ msgid "Unable to delete"
196
+ msgstr ""
197
+
198
+ msgid "Public"
199
+ msgstr "Avalik"
200
+
201
+ msgid "Hidden"
202
+ msgstr "Varjatud"
203
+
204
+ msgid ""
205
+ "The tombstone is set to hidden but your record is public. Best practice is "
206
+ "to provide a public tombstone when deactivating public records."
207
+ msgstr ""
208
+
209
+ msgid ""
210
+ "RISK INFORMATION LEAKAGE: The tombstone is set to public but your record is "
211
+ "restricted. Please make sure no restricted information is shared in the "
212
+ "tombstone below."
213
+ msgstr ""
214
+
215
+ msgid "Bibliographic citation"
216
+ msgstr ""
217
+
218
+ msgid ""
219
+ "Input citation text. Blank field will be filled with APA citation by "
220
+ "default."
221
+ msgstr ""
222
+
223
+ msgid "Public note"
224
+ msgstr ""
225
+
226
+ msgid "User {{name}} was approved."
227
+ msgstr ""
228
+
229
+ msgid "User {{name}} is blocked."
230
+ msgstr ""
231
+
232
+ msgid "Error"
233
+ msgstr "Viga"
234
+
235
+ msgid "User"
236
+ msgstr "Kasutaja"
237
+
238
+ msgid "Email"
239
+ msgstr "E-mail"
240
+
241
+ msgid "Email domain"
242
+ msgstr ""
243
+
244
+ msgid "Actions"
245
+ msgstr "Tegevused"
246
+
247
+ msgid "Records"
248
+ msgstr "Kirjed"
249
+
250
+ msgid "Username"
251
+ msgstr "Kasutajanimi"
252
+
253
+ msgid "GitHub"
254
+ msgstr "GitHub"
255
+
256
+ msgid "Updated"
257
+ msgstr "Uuendatud"
258
+
259
+ msgid "Restore"
260
+ msgstr ""
261
+
262
+ msgid "Restored"
263
+ msgstr ""
264
+
265
+ msgid "Block"
266
+ msgstr ""
267
+
268
+ msgid "Suspend"
269
+ msgstr ""
270
+
271
+ msgid "Suspended"
272
+ msgstr ""
273
+
274
+ msgid "Approve"
275
+ msgstr "Kinnita"
276
+
277
+ msgid "Approved"
278
+ msgstr "Kinnitatud"
279
+
280
+ msgid "Activate"
281
+ msgstr "Aktiveeri"
282
+
283
+ msgid "Activated"
284
+ msgstr ""
285
+
286
+ msgid "Set default quota for {{email}}"
287
+ msgstr ""
288
+
289
+ msgid "Filter results"
290
+ msgstr "Filtreeri tulemusi"
291
+
292
+ msgid "Search records in community..."
293
+ msgstr "Otsi grupist kirjeid..."
294
+
295
+ msgid "Sort by"
296
+ msgstr "Sorteeri"
297
+
298
+ msgid " results found"
299
+ msgid_plural " results found"
300
+ msgstr[0] ""
301
+ msgstr[1] ""
302
+
303
+ msgid "Search records..."
304
+ msgstr "Otsi kirjeid..."
305
+
306
+ msgid "Search"
307
+ msgstr "Otsi"
308
+
309
+ msgid "Views"
310
+ msgstr "Vaatamised"
311
+
312
+ msgid "Downloads"
313
+ msgstr ""
314
+
22
315
  msgid "Copy to clipboard"
23
316
  msgstr "Kopeeri lõikelauale"
24
317
 
25
318
  msgid "Copied!"
26
319
  msgstr "Kopeeritud!"
27
320
 
28
- msgid "Files"
29
- msgstr "Failid"
321
+ msgid "Part of "
322
+ msgstr ""
323
+
324
+ msgid "No creation date found."
325
+ msgstr "Loomiskuupäeva ei leitud."
326
+
327
+ msgid "No description"
328
+ msgstr "Kirjeldus puudub"
329
+
330
+ msgid "No publication date found."
331
+ msgstr "Avaldamise kuupäeva ei leitud."
332
+
333
+ msgid "No resource type"
334
+ msgstr "Ressursitüüp puudub"
335
+
336
+ msgid "No title"
337
+ msgstr "Pealkiri puudub"
338
+
339
+ msgid "Uploaded on {{uploadDate}}"
340
+ msgstr ""
341
+
342
+ msgid "Published in: {{publishInfo}}"
343
+ msgstr ""
344
+
345
+ msgid "{{count}} more versions exist for this record"
346
+ msgid_plural "{{count}} more versions exist for this record"
347
+ msgstr[0] ""
348
+ msgstr[1] ""
349
+
350
+ msgid "Person"
351
+ msgstr "Isik"
30
352
 
31
353
  msgid "The record has no files."
32
354
  msgstr "Antud kirjel failid puuduvad."
@@ -43,29 +365,166 @@ msgstr "Lisa kaastööline"
43
365
  msgid "Contributors"
44
366
  msgstr "Kaastöölised"
45
367
 
368
+ msgid "Edit contributor"
369
+ msgstr ""
370
+
371
+ msgid "Funding"
372
+ msgstr "Rahastus"
373
+
374
+ msgid "Awards/Grants"
375
+ msgstr ""
376
+
46
377
  msgid "Alternate identifiers"
47
378
  msgstr "Alternatiivsed identifikaatorid"
48
379
 
49
380
  msgid "Related works"
50
381
  msgstr "Seotud tööd"
51
382
 
383
+ msgid "References"
384
+ msgstr "Viited"
385
+
52
386
  msgid "Visibility"
53
387
  msgstr "Nähtavus"
54
388
 
389
+ msgid "More"
390
+ msgstr ""
391
+
392
+ msgid "Unable to request the access."
393
+ msgstr ""
394
+
395
+ msgid "Your email address"
396
+ msgstr ""
397
+
398
+ msgid "Email address"
399
+ msgstr "E-posti aadress"
400
+
401
+ msgid "Your full name"
402
+ msgstr ""
403
+
404
+ msgid "Full name"
405
+ msgstr "Ees- ja perekonnanimi"
406
+
407
+ msgid "Request message"
408
+ msgstr ""
409
+
410
+ msgid ""
411
+ "I agree to that my full name and email address is shared with the owners of "
412
+ "the record"
413
+ msgstr ""
414
+
415
+ msgid "Request access"
416
+ msgstr ""
417
+
418
+ msgid "Email confirmation needed"
419
+ msgstr ""
420
+
421
+ msgid "We have sent you an email to verify your address."
422
+ msgstr ""
423
+
424
+ msgid ""
425
+ "\n"
426
+ " Please check the email and follow the instructions to complete the access request.\n"
427
+ " "
428
+ msgstr ""
429
+
430
+ msgid "An error occurred while fetching communities."
431
+ msgstr ""
432
+
433
+ msgid "Communities"
434
+ msgstr "Grupid"
435
+
436
+ msgid "View all {{count}} communities"
437
+ msgid_plural "View all {{count}} communities"
438
+ msgstr[0] ""
439
+ msgstr[1] ""
440
+
441
+ msgid "Submit to community"
442
+ msgstr ""
443
+
444
+ msgid "Pending submissions"
445
+ msgstr ""
446
+
447
+ msgid "Manage communities"
448
+ msgstr ""
449
+
450
+ msgid "Community management menu dropdown"
451
+ msgstr ""
452
+
55
453
  msgid "Edit"
56
454
  msgstr "Redigeeri"
57
455
 
456
+ msgid "Export selection"
457
+ msgstr ""
458
+
459
+ msgid "Download file"
460
+ msgstr "Lae fail alla"
461
+
462
+ msgid "Export"
463
+ msgstr "Ekspordi"
464
+
465
+ msgid "Manage"
466
+ msgstr "Halda"
467
+
468
+ msgid "Manage record"
469
+ msgstr "Halda kirjet"
470
+
471
+ msgid "Manage user"
472
+ msgstr ""
473
+
474
+ msgid "Remove branding"
475
+ msgstr ""
476
+
477
+ msgid "{{communityTitle}} is a default branding for this record"
478
+ msgstr ""
479
+
480
+ msgid ""
481
+ "Remove this community from appearing on top of the record details page."
482
+ msgstr ""
483
+
484
+ msgid "Set branding"
485
+ msgstr ""
486
+
487
+ msgid "Set {{communityTitle}} as a default branding for this record"
488
+ msgstr ""
489
+
490
+ msgid "Set this community to appear on the top of the record details page."
491
+ msgstr ""
492
+
493
+ msgid "Pending communities"
494
+ msgstr ""
495
+
496
+ msgid "Search for pending submissions to communities..."
497
+ msgstr ""
498
+
58
499
  msgid "An error occurred while generating the citation."
59
500
  msgstr "Tsiteeringu loomise käigus tekkis viga."
60
501
 
61
- msgid "Citation"
62
- msgstr "Tsiteering"
63
-
64
502
  msgid "Style"
65
503
  msgstr "Stiil"
66
504
 
67
- msgid "Version"
68
- msgstr "Versioon"
505
+ msgid "This record is not included in any communities yet."
506
+ msgstr ""
507
+
508
+ msgid "Search for community..."
509
+ msgstr ""
510
+
511
+ msgid "Record submitted"
512
+ msgstr ""
513
+
514
+ msgid "Review requested"
515
+ msgstr ""
516
+
517
+ msgid "Search in all communities"
518
+ msgstr "Otsi kõikidest gruppidest"
519
+
520
+ msgid "Search in my communities"
521
+ msgstr "Otsi minu gruppidest"
522
+
523
+ msgid "Select a community"
524
+ msgstr "Vali grupp"
525
+
526
+ msgid "Version {{- version}}"
527
+ msgstr ""
69
528
 
70
529
  msgid "Preview"
71
530
  msgstr "Eelvaade"
@@ -73,132 +532,272 @@ msgstr "Eelvaade"
73
532
  msgid "Only published versions are displayed."
74
533
  msgstr "Kuvatakse ainult avaldatud versioonid."
75
534
 
76
- msgid "View all {{total}} versions"
77
- msgstr "Vaata kõiki {{total}} versiooni"
535
+ msgid "An error occurred while fetching the versions."
536
+ msgstr ""
78
537
 
79
- msgid "You don't have permissions to share this record."
80
- msgstr "Teil puudub luba seda kirjet jagada."
538
+ msgid "View all {{count}} versions"
539
+ msgid_plural "View all {{count}} versions"
540
+ msgstr[0] ""
541
+ msgstr[1] ""
81
542
 
82
- msgid "Share"
83
- msgstr "Jaga"
543
+ msgid ""
544
+ "<0><0>Cite all versions?</0> You can cite all versions by using the DOI "
545
+ "<3></3>. This DOI represents all versions, and will always resolve to the "
546
+ "latest one. <5>Read more</5>.</0>"
547
+ msgstr ""
548
+
549
+ msgid ""
550
+ "<0><0>Cite all versions?</0> You can cite all versions by using the DOI . "
551
+ "The DOI is registered when the first version is published. <4>Read "
552
+ "more</4>.</0>"
553
+ msgstr ""
554
+
555
+ msgid "Remove"
556
+ msgstr "Eemalda"
557
+
558
+ msgid "Remove {{communityTitle}} from this record"
559
+ msgstr ""
560
+
561
+ msgid "Remove community"
562
+ msgstr ""
563
+
564
+ msgid "Are you sure you want to remove the record from the community?"
565
+ msgstr ""
566
+
567
+ msgid "I understand the consequences:"
568
+ msgstr ""
569
+
570
+ msgid ""
571
+ "The record can only be re-included in the community by going through a new "
572
+ "review by the community curators."
573
+ msgstr ""
574
+
575
+ msgid "Something went wrong"
576
+ msgstr ""
577
+
578
+ msgid "Cancel removal"
579
+ msgstr ""
580
+
581
+ msgid "Cancel"
582
+ msgstr "Tühista"
583
+
584
+ msgid "Confirm removal"
585
+ msgstr ""
586
+
587
+ msgid ""
588
+ "Members of the community <1>\"<1>{{communityTitle}}</1>\"</1> will <4>lose "
589
+ "their access</4> to the record."
590
+ msgstr ""
591
+
592
+ msgid "Select permissions"
593
+ msgstr ""
594
+
595
+ msgid "Short name for your link (optional)."
596
+ msgstr ""
597
+
598
+ msgid "Expiration date format: YYYY-MM-DD"
599
+ msgstr ""
600
+
601
+ msgid "Expiration date: YYYY-MM-DD or never if blank (optional)."
602
+ msgstr ""
603
+
604
+ msgid "Create a new link"
605
+ msgstr ""
606
+
607
+ msgid "Link title"
608
+ msgstr ""
609
+
610
+ msgid "Expires at"
611
+ msgstr ""
612
+
613
+ msgid "Never"
614
+ msgstr ""
615
+
616
+ msgid "Access"
617
+ msgstr "Juurdepääs"
618
+
619
+ msgid "Delete"
620
+ msgstr "Kustuta"
621
+
622
+ msgid "Copy link"
623
+ msgstr "Kopeeri link"
84
624
 
85
625
  msgid "Can view"
86
626
  msgstr "Saab vaadata"
87
627
 
88
- msgid "Can preview"
89
- msgstr "Saab näha eelvaadet"
628
+ msgid "Can view restricted files of all versions of this record."
629
+ msgstr ""
630
+
631
+ msgid "Can preview drafts"
632
+ msgstr ""
633
+
634
+ msgid "Can view drafts and restricted files of all versions of this record."
635
+ msgstr ""
90
636
 
91
637
  msgid "Can edit"
92
638
  msgstr "Saab muuta"
93
639
 
94
- msgid "Get a link"
95
- msgstr "Hangi link"
640
+ msgid ""
641
+ "Can edit drafts and view restricted files of all versions of this record."
642
+ msgstr ""
96
643
 
97
- msgid "Copy link"
98
- msgstr "Kopeeri link"
644
+ msgid ""
645
+ "Can view (view access link can be created only after the record is "
646
+ "published)"
647
+ msgstr ""
99
648
 
100
- msgid "Delete link"
101
- msgstr "Kustuta link"
649
+ msgid "Expires"
650
+ msgstr "Aegub"
102
651
 
103
- msgid "Done"
104
- msgstr "Valmis"
652
+ msgid "This record has no links generated yet."
653
+ msgstr ""
105
654
 
106
- msgid ""
107
- "Anyone with this link <1>can view all versions</1> of this record & files."
655
+ msgid "Unable to change the access request settings."
656
+ msgstr ""
657
+
658
+ msgid "Allow authenticated users to request access to restricted files."
659
+ msgstr ""
660
+
661
+ msgid "Allow non-authenticated users to request access to restricted files."
662
+ msgstr ""
663
+
664
+ msgid "Accept conditions"
665
+ msgstr ""
666
+
667
+ msgid "Advanced options"
668
+ msgstr ""
669
+
670
+ msgid "Save"
671
+ msgstr "Salvesta"
672
+
673
+ msgid "No user has access to this record yet."
674
+ msgstr ""
675
+
676
+ msgid "People with access"
677
+ msgstr ""
678
+
679
+ msgid "No group has access to this record yet."
680
+ msgstr ""
681
+
682
+ msgid "Groups with access"
683
+ msgstr ""
684
+
685
+ msgid "You"
686
+ msgstr "Sina"
687
+
688
+ msgid "Add people"
689
+ msgstr ""
690
+
691
+ msgid "No selected users"
108
692
  msgstr ""
109
- "Igaüks, kellel on see link, saab selle kirje ja failide <1>kõiki versioone "
110
- "vaadata</1>."
111
693
 
112
694
  msgid ""
113
- "Anyone with this link <2>can view all published and unpublished versions</2>"
114
- " of this record & files."
695
+ "Search for users to grant access (only users with a public profile can be "
696
+ "invited)"
115
697
  msgstr ""
116
- "Igaüks, kellel on see link, saab selle kirje ja failide <2>avaldatud ja "
117
- "avaldamata versioone vaadata</2>."
118
698
 
119
- msgid "Uploaded on"
120
- msgstr "Üles laetud"
699
+ msgid "Search by email, full name or username"
700
+ msgstr "Otsi e-posti aaressi, täisnime või kasutajanime järgi"
121
701
 
122
- msgid "Search"
123
- msgstr "Otsi"
702
+ msgid "users"
703
+ msgstr ""
124
704
 
125
- msgid "Search guide"
126
- msgstr "Otsingu juhend"
705
+ msgid "Add groups"
706
+ msgstr "Lisa gruppe"
127
707
 
128
- msgid "result(s) found"
129
- msgstr "tulemus(t) leitud"
708
+ msgid "Group"
709
+ msgstr "Grupp"
130
710
 
131
- msgid "Sort by"
132
- msgstr "Sorteeri"
711
+ msgid "No selected groups"
712
+ msgstr ""
133
713
 
134
- msgid "View"
135
- msgstr "Vaata"
714
+ msgid "Search for groups"
715
+ msgstr "Otsi gruppe"
136
716
 
137
- msgid "New community"
138
- msgstr "Uus grupp"
717
+ msgid "groups"
718
+ msgstr ""
139
719
 
140
- msgid "Get started!"
141
- msgstr "Alusta!"
720
+ msgid "Add"
721
+ msgstr "Lisa"
142
722
 
143
- msgid "Open"
144
- msgstr "Avatud"
723
+ msgid "Notify people"
724
+ msgstr ""
145
725
 
146
- msgid "Closed"
147
- msgstr "Suletud"
726
+ msgid "Notification message"
727
+ msgstr ""
148
728
 
149
- msgid "All done!"
150
- msgstr "Valmis!"
729
+ msgid "You are about to add"
730
+ msgstr ""
151
731
 
152
- msgid "You've caught up with all open requests."
153
- msgstr "Oled kõikide avatud taotlustega kursis."
732
+ msgid "Access already granted"
733
+ msgstr ""
154
734
 
155
- msgid "No creation date found."
156
- msgstr "Loomiskuupäeva ei leitud."
735
+ msgid "Can manage"
736
+ msgstr ""
157
737
 
158
- msgid "No description"
159
- msgstr "Kirjeldus puudub"
738
+ msgid ""
739
+ "Can manage access, edit drafts and view restricted files of all versions of "
740
+ "this record."
741
+ msgstr ""
160
742
 
161
- msgid "No publication date found."
162
- msgstr "Avaldamise kuupäeva ei leitud."
743
+ msgid "You don't have permissions to share this record."
744
+ msgstr "Teil puudub luba seda kirjet jagada."
163
745
 
164
- msgid "No resource type"
165
- msgstr "Ressursitüüp puudub"
746
+ msgid "Share"
747
+ msgstr "Jaga"
166
748
 
167
- msgid "No title"
168
- msgstr "Pealkiri puudub"
749
+ msgid "People"
750
+ msgstr "Inimesed"
169
751
 
170
- msgid "Make your first upload!"
171
- msgstr "Laadi üles oma esimene fail!"
752
+ msgid "Groups"
753
+ msgstr "Grupid"
172
754
 
173
- msgid "New upload"
174
- msgstr "Uus üleslaadimine"
755
+ msgid "Settings"
756
+ msgstr "Seaded"
175
757
 
176
- msgid "ORCID profile"
177
- msgstr "ORCID profiil"
758
+ msgid "Share access"
759
+ msgstr ""
178
760
 
179
- msgid "ROR profile"
180
- msgstr "ROR profiil"
761
+ msgid "Link expiration"
762
+ msgstr ""
181
763
 
182
- msgid "GND profile"
183
- msgstr "GND profiil"
764
+ msgid "In 1 month"
765
+ msgstr ""
184
766
 
185
- msgid "No communities found!"
186
- msgstr "Ühtegi gruppi ei leitud!"
767
+ msgid "In 2 months"
768
+ msgstr ""
769
+
770
+ msgid "In 6 months"
771
+ msgstr ""
187
772
 
188
- msgid "No requests found!"
189
- msgstr "Ühtegi taotlust ei leitud!"
773
+ msgid "In 1 year"
774
+ msgstr ""
190
775
 
191
- msgid "Copied"
192
- msgstr "Kopeeritud"
776
+ msgid "Invalid date format."
777
+ msgstr ""
193
778
 
194
- msgid "Reset search"
195
- msgstr "Lähtesta otsing"
779
+ msgid "Access link expiration date cannot be in the past."
780
+ msgstr ""
196
781
 
197
- msgid "We couldn't find any matches for "
198
- msgstr "Ei leitud ühtegi vastet"
782
+ msgid "Access request"
783
+ msgstr ""
199
784
 
200
- msgid "your search"
201
- msgstr "sinu otsingule"
785
+ msgid "Unable to change the expiration request settings."
786
+ msgstr ""
787
+
788
+ msgid "Expiration date: "
789
+ msgstr ""
790
+
791
+ msgid ""
792
+ "Format: YYYY-MM-DD. Granted access will expire on the given date. Leave "
793
+ "empty to set no expiration limit."
794
+ msgstr ""
795
+
796
+ msgid "Link expiration date:"
797
+ msgstr ""
798
+
799
+ msgid "We couldn't find any matches for {{- search}}"
800
+ msgstr ""
202
801
 
203
802
  msgid "Start over"
204
803
  msgstr "Alusta uuesti"
@@ -206,17 +805,22 @@ msgstr "Alusta uuesti"
206
805
  msgid "ProTip"
207
806
  msgstr "Profinipp"
208
807
 
209
- msgid "For more tips, check out our "
210
- msgstr "Rohkemate nõuannete jaoks vaata meie"
808
+ msgid "Search guide"
809
+ msgstr "Otsingu juhend"
211
810
 
212
- msgid "search guide"
213
- msgstr "otsingu juhendit"
811
+ msgid ""
812
+ "<0>For more tips, check out our <2>search guide</2> for defining advanced "
813
+ "search queries.</0>"
814
+ msgstr ""
214
815
 
215
- msgid "Export"
216
- msgstr "Ekspordi"
816
+ msgid "Search in my communities..."
817
+ msgstr "Otsi minu kogukondadest..."
217
818
 
218
- msgid "Filter results"
219
- msgstr "Filtreeri tulemusi"
819
+ msgid "View"
820
+ msgstr "Vaata"
821
+
822
+ msgid "Published in: {{publishedIn}}"
823
+ msgstr ""
220
824
 
221
825
  msgid "In review"
222
826
  msgstr "Ülevaatamisel"
@@ -233,51 +837,60 @@ msgstr "Mustand"
233
837
  msgid "New version draft"
234
838
  msgstr "Uue versiooni mustand"
235
839
 
236
- msgid "Download file"
237
- msgstr "Lae fail alla"
840
+ msgid "open"
841
+ msgstr "avatud"
238
842
 
239
- msgid "No link has been created. Click on 'Get a Link' to make a new link."
240
- msgstr "Linki pole loodud. Uue lingi loomiseks klõpsake nuppu \"Hangi link\"."
843
+ msgid "Open"
844
+ msgstr "Avatud"
241
845
 
242
- msgid ""
243
- "Anyone with an account and this link <1>can edit all versions</1> of this "
244
- "record & files."
245
- msgstr ""
246
- "Igaüks, kellel on konto ja see link<1>, saab muuta selle kirje ja failide "
247
- "kõiki versioone</1>."
846
+ msgid "unlock"
847
+ msgstr "Ava"
248
848
 
249
- msgid "Search records..."
250
- msgstr "Otsi kirjeid..."
849
+ msgid "Get started!"
850
+ msgstr "Alusta!"
251
851
 
252
- msgid "will give you all the publications from 2017 until today."
253
- msgstr "annab teile kõik väljaanded alates 2017. aastast kuni tänaseni."
852
+ msgid "Make your first upload!"
853
+ msgstr "Laadi üles oma esimene fail!"
254
854
 
255
- msgid " for defining advanced search queries."
256
- msgstr "täpsemate otsingupäringute määratlemiseks."
855
+ msgid "New upload"
856
+ msgstr "Uus üleslaadimine"
257
857
 
258
- msgid "Public"
259
- msgstr "Avalik"
858
+ msgid "Search in my uploads..."
859
+ msgstr "Otsi minu üleslaadimistest..."
260
860
 
261
- msgid "Restricted"
262
- msgstr "Piiratud"
861
+ msgid "ORCID profile"
862
+ msgstr "ORCID profiil"
263
863
 
264
- msgid "Search in my communities..."
265
- msgstr "Otsi minu kogukondadest..."
864
+ msgid "ORCID logo"
865
+ msgstr ""
866
+
867
+ msgid "ROR profile"
868
+ msgstr "ROR profiil"
266
869
 
267
- msgid "Opened {{difference}} by"
268
- msgstr "Avas {{difference}}"
870
+ msgid "ROR logo"
871
+ msgstr ""
269
872
 
270
- msgid "Search in my requests..."
271
- msgstr "Otsi minu päringutest..."
873
+ msgid "GND profile"
874
+ msgstr "GND profiil"
272
875
 
273
- msgid "Actions"
274
- msgstr "Tegevused"
876
+ msgid "GND logo"
877
+ msgstr ""
275
878
 
276
- msgid "open"
277
- msgstr "avatud"
879
+ msgid "No name"
880
+ msgstr ""
278
881
 
279
- msgid "unlock"
280
- msgstr "Ava"
882
+ msgid "and {{count}} other"
883
+ msgid_plural "and {{count}} other"
884
+ msgstr[0] ""
885
+ msgstr[1] ""
281
886
 
282
- msgid "Search in my uploads..."
283
- msgstr "Otsi minu üleslaadimistest..."
887
+ msgid "and {{count}} others"
888
+ msgid_plural "and {{count}} others"
889
+ msgstr[0] ""
890
+ msgstr[1] ""
891
+
892
+ msgctxt ""
893
+ "date:[2017-01-01 TO *]</0> will give you all the publications from 2017 "
894
+ "until today.</0>"
895
+ msgid "<0><0>metadata.publication"
896
+ msgstr ""