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