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