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