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,17 @@
1
1
  #
2
2
  # Translators:
3
- # Tibor Simko <tibor.simko@cern.ch>, 2021
4
- # Sam Arbid, 2022
5
- # Rim Sharif, 2023
3
+ # yyones, 2024
4
+ # Tibor Simko <tibor.simko@cern.ch>, 2024
5
+ # Rim Sharif, 2025
6
+ # Mattias Vesterlund, 2025
7
+ # Sam Arbid, 2025
6
8
  #
7
9
  msgid ""
8
10
  msgstr ""
9
11
  "Project-Id-Version: i18next-conv\n"
10
- "POT-Creation-Date: 2022-10-12T06:58:21.832Z\n"
12
+ "POT-Creation-Date: 2025-03-27T16:30:16.192Z\n"
11
13
  "PO-Revision-Date: 2021-07-14 16:07+0000\n"
12
- "Last-Translator: Rim Sharif, 2023\n"
14
+ "Last-Translator: Sam Arbid, 2025\n"
13
15
  "Language-Team: Swedish (https://app.transifex.com/inveniosoftware/teams/23537/sv/)\n"
14
16
  "Content-Type: text/plain; charset=UTF-8\n"
15
17
  "Content-Transfer-Encoding: 8bit\n"
@@ -20,14 +22,350 @@ msgstr ""
20
22
  msgid "Basic information"
21
23
  msgstr "Basinformation"
22
24
 
25
+ msgid "Impersonate user"
26
+ msgstr "Imitera användare"
27
+
28
+ msgid "Impersonate"
29
+ msgstr "Imitera"
30
+
31
+ msgid "You must accept this."
32
+ msgstr "Du måste acceptera detta."
33
+
34
+ msgid "Success"
35
+ msgstr "Framgång"
36
+
37
+ msgid ""
38
+ "User impersonated succesfully! You will be redirected in frontpage soon."
39
+ msgstr ""
40
+ "Användaren imiterades framgångsrikt! Du kommer att omdirigeras till "
41
+ "förstasidan snart."
42
+
43
+ msgid "Unable to impersonate user."
44
+ msgstr "Kunde inte imitera användare"
45
+
46
+ msgid ""
47
+ "Please read carefully and confirm the following statements before you "
48
+ "proceed."
49
+ msgstr "Läs noga igenom och bekräfta följande text innan du fortsätter."
50
+
51
+ msgid "You are about to impersonate user <bold>{{email}}(id: {{id}})</bold>."
52
+ msgstr ""
53
+ "Du är på väg att imitera användaren <bold>{{email}}(id: {{id}})</bold>."
54
+
55
+ msgid "You <bold>MUST</bold> logout after completing your inquiry."
56
+ msgstr "Du <bold>MÅSTE</bold> logga ut efter att du avslutat din förfrågan. "
57
+
58
+ msgid "Close"
59
+ msgstr "Stäng"
60
+
61
+ msgid "Set Quota"
62
+ msgstr "Ställ in Lagringskvot"
63
+
64
+ msgid "Set quota in bytes"
65
+ msgstr "Ställ in lagringskvot i bytes"
66
+
67
+ msgid "Note"
68
+ msgstr "Notering"
69
+
70
+ msgid ""
71
+ "This is the default quota that will be applied to any NEW records created by"
72
+ " this user – it will NOT update quota of existing records."
73
+ msgstr ""
74
+ "Detta är den standardkvot som kommer att tillämpas på alla NYA poster som "
75
+ "skapas av den här användaren - den kommer INTE att uppdatera lagringskvoten "
76
+ "för befintliga poster."
77
+
78
+ msgid "Quota of {{id}} was set to {{quota}} {{unit}}"
79
+ msgstr "Lagringskvoten för {{id}} sattes till {{quota}} {{unit}}"
80
+
81
+ msgid "Unable to set quota."
82
+ msgstr "Kunde inte ställa in lagringskvot."
83
+
84
+ msgid "Quota size ({{unit}})"
85
+ msgstr "Storlek på lagringskvot ({{unit}})"
86
+
87
+ msgid "Enter quota size..."
88
+ msgstr "Ange storlek på lagringskvoten..."
89
+
90
+ msgid "Max file size ({{unit}})"
91
+ msgstr "Maximal filstorlek ({{unit}})"
92
+
93
+ msgid "Enter max file size..."
94
+ msgstr "Ange maximal filstorlek..."
95
+
96
+ msgid "Ticket 1234"
97
+ msgstr "Ticket 1234"
98
+
99
+ msgid "Set quota"
100
+ msgstr "Ställ in lagringskvot"
101
+
102
+ msgid "Domain"
103
+ msgstr "Domän"
104
+
105
+ msgid "Flagged"
106
+ msgstr "Flaggad"
107
+
108
+ msgid "Organization"
109
+ msgstr "Organisation"
110
+
111
+ msgid "Company"
112
+ msgstr "Företag"
113
+
114
+ msgid "Mail provider"
115
+ msgstr "E-post leverantör"
116
+
117
+ msgid "Spammer"
118
+ msgstr "Spammare"
119
+
120
+ msgid "TLD"
121
+ msgstr "TLD"
122
+
123
+ msgid "Status"
124
+ msgstr "Status"
125
+
126
+ msgid "New"
127
+ msgstr "Ny"
128
+
129
+ msgid "Moderated"
130
+ msgstr "Modererad"
131
+
132
+ msgid "Verified"
133
+ msgstr "Verifierad"
134
+
135
+ msgid "Blocked"
136
+ msgstr "Blockerad"
137
+
138
+ msgid "Users"
139
+ msgstr "Användare"
140
+
141
+ msgid "Active"
142
+ msgstr "Aktiv"
143
+
144
+ msgid "Inactive"
145
+ msgstr "Inaktiv"
146
+
147
+ msgid "Confirmed"
148
+ msgstr "Bekräftad"
149
+
150
+ msgid "Links"
151
+ msgstr "Länkar"
152
+
153
+ msgid "Set quota for record {{recordId}}"
154
+ msgstr "Ställ in lagringskvot för posten {{recordId}}"
155
+
156
+ msgid "Delete record"
157
+ msgstr "Radera post"
158
+
159
+ msgid "Restore record"
160
+ msgstr "Återställ post"
161
+
162
+ msgid "Unavailability statement"
163
+ msgstr "Meddelande om otillgänglighet"
164
+
165
+ msgid "Record {{id}} was restored."
166
+ msgstr "Posten {{id}} återställdes."
167
+
168
+ msgid "Unable to restore."
169
+ msgstr "Kunde inte återställa."
170
+
171
+ msgid "Are you sure you want to restore #{{id}}"
172
+ msgstr "Är du säker på att du vill återställa #{{id}}"
173
+
174
+ msgid "Published"
175
+ msgstr "Publicerad"
176
+
177
+ msgid "Deleted"
178
+ msgstr "Raderad"
179
+
180
+ msgid "Scheduled for purge"
181
+ msgstr "Schemalagd för utrensning"
182
+
183
+ msgid "Empty draft title"
184
+ msgstr "Tom titel på utkast"
185
+
186
+ msgid "version"
187
+ msgstr "version"
188
+
189
+ msgid "Owner"
190
+ msgstr "Ägare"
191
+
192
+ msgid "Created"
193
+ msgstr "Skapad"
194
+
195
+ msgid "Files"
196
+ msgstr "Filer"
197
+
198
+ msgid "Stats"
199
+ msgstr "Statistik"
200
+
201
+ msgid "Record {{id}} was deleted."
202
+ msgstr "Posten {{id}} raderades."
203
+
204
+ msgid "Unable to delete"
205
+ msgstr "Kunde inte radera"
206
+
207
+ msgid "Public"
208
+ msgstr "Offentlig"
209
+
210
+ msgid "Hidden"
211
+ msgstr "Dold"
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."
216
+ msgstr ""
217
+ "Gravstenssidan (tombstone page) är satt som dold men posten är offentlig. "
218
+ "God praxis är att tillhandahålla en offentlig gravstenssida när du "
219
+ "avaktiverar offentliga poster."
220
+
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."
225
+ msgstr ""
226
+ "RISK FÖR INFORMATIONSLÄCKAGE: Gravstenssidan (tombstone page) är inställd på"
227
+ " offentligt tillgänglig men din post är åtkomstbegränsad. Se till att ingen "
228
+ "sekretessbelagd information delas i gravstenen nedan."
229
+
230
+ msgid "Bibliographic citation"
231
+ msgstr "Bibliografisk citering"
232
+
233
+ msgid ""
234
+ "Input citation text. Blank field will be filled with APA citation by "
235
+ "default."
236
+ msgstr ""
237
+ "Skriv in citeringstext. Tomt fält kommer att fyllas i med en APA-formatterad"
238
+ " citering."
239
+
240
+ msgid "Public note"
241
+ msgstr "Offentligt meddelande"
242
+
243
+ msgid "User {{name}} was approved."
244
+ msgstr "Användaren {{name}} godkändes."
245
+
246
+ msgid "User {{name}} is blocked."
247
+ msgstr "Användaren {{name}} är blockerad."
248
+
249
+ msgid "Error"
250
+ msgstr "Fel"
251
+
252
+ msgid "User"
253
+ msgstr "Användare"
254
+
255
+ msgid "Email"
256
+ msgstr "E-post"
257
+
258
+ msgid "Email domain"
259
+ msgstr "Epost-domän"
260
+
261
+ msgid "Actions"
262
+ msgstr "Åtgärder"
263
+
264
+ msgid "Records"
265
+ msgstr "Poster"
266
+
267
+ msgid "Username"
268
+ msgstr "Användarnamn"
269
+
270
+ msgid "GitHub"
271
+ msgstr "GitHub"
272
+
273
+ msgid "Updated"
274
+ msgstr "Uppdaterad"
275
+
276
+ msgid "Restore"
277
+ msgstr "Återställ"
278
+
279
+ msgid "Restored"
280
+ msgstr "Återställd"
281
+
282
+ msgid "Block"
283
+ msgstr "Blockera"
284
+
285
+ msgid "Suspend"
286
+ msgstr "Stäng av"
287
+
288
+ msgid "Suspended"
289
+ msgstr "Avstängd"
290
+
291
+ msgid "Approve"
292
+ msgstr "Godkänn"
293
+
294
+ msgid "Approved"
295
+ msgstr "Godkänd"
296
+
297
+ msgid "Activate"
298
+ msgstr "Aktivera"
299
+
300
+ msgid "Activated"
301
+ msgstr "Aktiverad"
302
+
303
+ msgid "Set default quota for {{email}}"
304
+ msgstr "Ange standardkvot för {{email}}"
305
+
306
+ msgid "Filter results"
307
+ msgstr "Filtrera resultat"
308
+
309
+ msgid "Search records in community..."
310
+ msgstr "Sök poster i community..."
311
+
312
+ msgid "Sort by"
313
+ msgstr "Sortera efter"
314
+
315
+ msgid " results found"
316
+ msgid_plural " results found"
317
+ msgstr[0] "resultat hittades"
318
+ msgstr[1] "resultat hittades"
319
+
320
+ msgid "Search records..."
321
+ msgstr "Sök poster..."
322
+
323
+ msgid "Search"
324
+ msgstr "Sök"
325
+
326
+ msgid "Views"
327
+ msgstr "Visningar"
328
+
329
+ msgid "Downloads"
330
+ msgstr "Nedladdningar"
331
+
23
332
  msgid "Copy to clipboard"
24
- msgstr "Kopiera till klippbordet"
333
+ msgstr "Kopiera till urklipp"
25
334
 
26
335
  msgid "Copied!"
27
336
  msgstr "Kopierade!"
28
337
 
29
- msgid "Files"
30
- msgstr "Filer"
338
+ msgid "Part of "
339
+ msgstr "Del av "
340
+
341
+ msgid "No creation date found."
342
+ msgstr "Inget datum för skapande hittades."
343
+
344
+ msgid "No description"
345
+ msgstr "Ingen beskrivning"
346
+
347
+ msgid "No publication date found."
348
+ msgstr "Inget publiceringsdatum hittades."
349
+
350
+ msgid "No resource type"
351
+ msgstr "Ingen resurstyp"
352
+
353
+ msgid "No title"
354
+ msgstr "Ingen titel"
355
+
356
+ msgid "Uploaded on {{uploadDate}}"
357
+ msgstr "Uppladdad den {{uploadDate}}"
358
+
359
+ msgid "Published in: {{publishInfo}}"
360
+ msgstr "Publicerad i: {{publishInfo}}"
361
+
362
+ msgid "{{count}} more versions exist for this record"
363
+ msgid_plural "{{count}} more versions exist for this record"
364
+ msgstr[0] "{{count}} fler versioner finns för denna post"
365
+ msgstr[1] "{{count}} fler versioner finns för denna post"
366
+
367
+ msgid "Person"
368
+ msgstr "Person"
31
369
 
32
370
  msgid "The record has no files."
33
371
  msgstr "Posten har inga filer."
@@ -39,10 +377,19 @@ msgid "Recommended information"
39
377
  msgstr "Rekommenderad information"
40
378
 
41
379
  msgid "Add contributor"
42
- msgstr "Lägg till bidragsgivare"
380
+ msgstr "Lägg till medverkande"
43
381
 
44
382
  msgid "Contributors"
45
- msgstr "Bidragsgivare"
383
+ msgstr "Medverkande"
384
+
385
+ msgid "Edit contributor"
386
+ msgstr "Redigera medverkande"
387
+
388
+ msgid "Funding"
389
+ msgstr "Finansiering"
390
+
391
+ msgid "Awards/Grants"
392
+ msgstr "Projektbidrag/Anslag"
46
393
 
47
394
  msgid "Alternate identifiers"
48
395
  msgstr "Alternativa identifierare"
@@ -50,155 +397,458 @@ msgstr "Alternativa identifierare"
50
397
  msgid "Related works"
51
398
  msgstr "Relaterade arbeten"
52
399
 
400
+ msgid "References"
401
+ msgstr "Referenser"
402
+
53
403
  msgid "Visibility"
54
404
  msgstr "Synlighet"
55
405
 
406
+ msgid "More"
407
+ msgstr "Mer"
408
+
409
+ msgid "Unable to request the access."
410
+ msgstr "Det gick inte att begära åtkomst."
411
+
412
+ msgid "Your email address"
413
+ msgstr "Din epost-adress"
414
+
415
+ msgid "Email address"
416
+ msgstr "Epost-adress"
417
+
418
+ msgid "Your full name"
419
+ msgstr "Ditt fullständiga namn"
420
+
421
+ msgid "Full name"
422
+ msgstr "Fullständigt namn"
423
+
424
+ msgid "Request message"
425
+ msgstr "Meddelande för förfrågan"
426
+
427
+ msgid ""
428
+ "I agree to that my full name and email address is shared with the owners of "
429
+ "the record"
430
+ msgstr ""
431
+ "Jag samtycker till att mitt fullständiga namn och min e-postadress delas med"
432
+ " ägarna till posten"
433
+
434
+ msgid "Request access"
435
+ msgstr "Begär åtkomst"
436
+
437
+ msgid "Email confirmation needed"
438
+ msgstr "E-postbekräftelse krävs"
439
+
440
+ msgid "We have sent you an email to verify your address."
441
+ msgstr ""
442
+ "Vi har skickat ett meddelande till dig för att verifiera din e-postadress."
443
+
444
+ msgid ""
445
+ "\n"
446
+ " Please check the email and follow the instructions to complete the access request.\n"
447
+ " "
448
+ msgstr ""
449
+ "\n"
450
+ " Vänligen kontrollera e-postmeddelandet och följ instruktionerna för att slutföra åtkomstbegäran.\n"
451
+ " "
452
+
453
+ msgid "An error occurred while fetching communities."
454
+ msgstr "Ett fel inträffade vid hämtning av communities."
455
+
456
+ msgid "Communities"
457
+ msgstr "Communities"
458
+
459
+ msgid "View all {{count}} communities"
460
+ msgid_plural "View all {{count}} communities"
461
+ msgstr[0] "Visa alla {{count}} communities"
462
+ msgstr[1] "Visa alla {{count}} communities"
463
+
464
+ msgid "Submit to community"
465
+ msgstr "Skicka till community"
466
+
467
+ msgid "Pending submissions"
468
+ msgstr "Pågående inlämningar"
469
+
470
+ msgid "Manage communities"
471
+ msgstr "Hantera communities"
472
+
473
+ msgid "Community management menu dropdown"
474
+ msgstr "Rullgardinsmeny för communityhantering"
475
+
56
476
  msgid "Edit"
57
477
  msgstr "Redigera"
58
478
 
479
+ msgid "Export selection"
480
+ msgstr "Exportera urval"
481
+
482
+ msgid "Download file"
483
+ msgstr "Nedladdning fil"
484
+
485
+ msgid "Export"
486
+ msgstr "Exportera"
487
+
488
+ msgid "Manage"
489
+ msgstr " Hantera"
490
+
491
+ msgid "Manage record"
492
+ msgstr "Hantera post"
493
+
494
+ msgid "Manage user"
495
+ msgstr "Hantera användare"
496
+
497
+ msgid "Remove branding"
498
+ msgstr "Ta bort märkning"
499
+
500
+ msgid "{{communityTitle}} is a default branding for this record"
501
+ msgstr "{{communityTitle}} är en standardmärkning för den här posten"
502
+
503
+ msgid ""
504
+ "Remove this community from appearing on top of the record details page."
505
+ msgstr ""
506
+ "Ta bort denna community från att visas högst upp på postens infromationsida."
507
+ " "
508
+
509
+ msgid "Set branding"
510
+ msgstr "Ange märkning"
511
+
512
+ msgid "Set {{communityTitle}} as a default branding for this record"
513
+ msgstr "Ange {{communityTitle}} som standardmärkning för den här posten"
514
+
515
+ msgid "Set this community to appear on the top of the record details page."
516
+ msgstr ""
517
+ "Ställ in att denna community ska visas högst upp på sidan med detaljer om "
518
+ "posten."
519
+
520
+ msgid "Pending communities"
521
+ msgstr "Väntande communities"
522
+
523
+ msgid "Search for pending submissions to communities..."
524
+ msgstr "Sök efter pågående inlämningar till communities..."
525
+
59
526
  msgid "An error occurred while generating the citation."
60
527
  msgstr "Ett fel uppstod när citatet genererades."
61
528
 
62
- msgid "Citation"
63
- msgstr "citering"
64
-
65
529
  msgid "Style"
66
530
  msgstr "Stil"
67
531
 
68
- msgid "Version"
69
- msgstr "Version"
532
+ msgid "This record is not included in any communities yet."
533
+ msgstr "Posten ingår inte i några communities ännu."
534
+
535
+ msgid "Search for community..."
536
+ msgstr "Sök efter community..."
537
+
538
+ msgid "Record submitted"
539
+ msgstr "Post inskickad"
540
+
541
+ msgid "Review requested"
542
+ msgstr "Granskning begärd"
543
+
544
+ msgid "Search in all communities"
545
+ msgstr "Sök i alla communities"
546
+
547
+ msgid "Search in my communities"
548
+ msgstr "Sök i mina communities"
549
+
550
+ msgid "Select a community"
551
+ msgstr "Välj en community"
552
+
553
+ msgid "Version {{- version}}"
554
+ msgstr "Version {{- version}}"
70
555
 
71
556
  msgid "Preview"
72
- msgstr "Förhandsvisa"
557
+ msgstr "Förhandsgranska"
73
558
 
74
559
  msgid "Only published versions are displayed."
75
560
  msgstr "Endast publicerade versioner visas."
76
561
 
77
- msgid "View all {{total}} versions"
78
- msgstr "Visa alla {{total}} versioner"
562
+ msgid "An error occurred while fetching the versions."
563
+ msgstr "Ett fel uppstod när versionerna hämtades."
79
564
 
80
- msgid "You don't have permissions to share this record."
81
- msgstr "Du har inte behörighet att dela denna post."
565
+ msgid "View all {{count}} versions"
566
+ msgid_plural "View all {{count}} versions"
567
+ msgstr[0] "Visa alla {{count}} versioner"
568
+ msgstr[1] "Visa alla {{count}} versioner"
82
569
 
83
- msgid "Share"
84
- msgstr "Dela"
570
+ msgid ""
571
+ "<0><0>Cite all versions?</0> You can cite all versions by using the DOI "
572
+ "<3></3>. This DOI represents all versions, and will always resolve to the "
573
+ "latest one. <5>Read more</5>.</0>"
574
+ msgstr ""
575
+ "<0><0>Citera alla versioner?</0> Du kan citera alla versioner genom att "
576
+ "använda DOI:n <3></3>. Denna DOI representerar alla versioner och kommer "
577
+ "alltid att hänvisa till den senaste. <5>Läs mer</5>.</0>"
578
+
579
+ msgid ""
580
+ "<0><0>Cite all versions?</0> You can cite all versions by using the DOI . "
581
+ "The DOI is registered when the first version is published. <4>Read "
582
+ "more</4>.</0>"
583
+ msgstr ""
584
+ "<0><0>Citera alla versioner?</0> Du kan citera alla versioner genom att "
585
+ "använda DOI:n . DOI:n registreras när den första versionen publiceras. "
586
+ "<4>Läs mer</4>.</0>"
587
+
588
+ msgid "Remove"
589
+ msgstr "Ta bort"
590
+
591
+ msgid "Remove {{communityTitle}} from this record"
592
+ msgstr "Ta bort {{communityTitle}} från den här posten"
593
+
594
+ msgid "Remove community"
595
+ msgstr "Ta bort community"
596
+
597
+ msgid "Are you sure you want to remove the record from the community?"
598
+ msgstr "Är du säker på att du vill ta bort posten från communityn?"
599
+
600
+ msgid "I understand the consequences:"
601
+ msgstr "Jag förstår följderna:"
602
+
603
+ msgid ""
604
+ "The record can only be re-included in the community by going through a new "
605
+ "review by the community curators."
606
+ msgstr ""
607
+ "Posten kan endast återinkluderas i communityn genom att genomgå en ny "
608
+ "granskning av communityns granskare."
609
+
610
+ msgid "Something went wrong"
611
+ msgstr "Något gick fel"
612
+
613
+ msgid "Cancel removal"
614
+ msgstr "Avbryt borttagning"
615
+
616
+ msgid "Cancel"
617
+ msgstr "Avbryt"
618
+
619
+ msgid "Confirm removal"
620
+ msgstr "Bekräfta borttagning"
621
+
622
+ msgid ""
623
+ "Members of the community <1>\"<1>{{communityTitle}}</1>\"</1> will <4>lose "
624
+ "their access</4> to the record."
625
+ msgstr ""
626
+ "Medlemmar av communityn <1>\"<1>{{communityTitle}}</1>\"</1> kommer "
627
+ "<4>förlora sin åtkomst </4> till posten."
628
+
629
+ msgid "Select permissions"
630
+ msgstr "Välj behörigheter"
631
+
632
+ msgid "Short name for your link (optional)."
633
+ msgstr "Kort namn för din länk (valfritt)."
634
+
635
+ msgid "Expiration date format: YYYY-MM-DD"
636
+ msgstr "Format för utgångsdatum: ÅÅÅÅ-MM-DD"
637
+
638
+ msgid "Expiration date: YYYY-MM-DD or never if blank (optional)."
639
+ msgstr "Utgångsdatum: ÅÅÅÅ-MM-DD eller aldrig om fältet är tomt (valfritt)."
640
+
641
+ msgid "Create a new link"
642
+ msgstr "Skapa en ny länk"
643
+
644
+ msgid "Link title"
645
+ msgstr "Länktitel"
646
+
647
+ msgid "Expires at"
648
+ msgstr "Upphör att gälla"
649
+
650
+ msgid "Never"
651
+ msgstr "Aldrig"
652
+
653
+ msgid "Access"
654
+ msgstr "Tillgång"
655
+
656
+ msgid "Delete"
657
+ msgstr "Radera"
658
+
659
+ msgid "Copy link"
660
+ msgstr "Kopiera länk"
85
661
 
86
662
  msgid "Can view"
87
663
  msgstr "Kan visa"
88
664
 
89
- msgid "Can preview"
90
- msgstr "Kan förhandsgranska"
665
+ msgid "Can view restricted files of all versions of this record."
666
+ msgstr "Kan se filer med begränsad åtkomst för alla versioner av posten."
667
+
668
+ msgid "Can preview drafts"
669
+ msgstr "Kan förhandsgranska utkast"
670
+
671
+ msgid "Can view drafts and restricted files of all versions of this record."
672
+ msgstr ""
673
+ "Kan visa utkast och filer med begränsad åtkomst för alla versioner av "
674
+ "posten."
91
675
 
92
676
  msgid "Can edit"
93
677
  msgstr "Kan redigera"
94
678
 
95
- msgid "Get a link"
96
- msgstr " en länk"
679
+ msgid ""
680
+ "Can edit drafts and view restricted files of all versions of this record."
681
+ msgstr ""
682
+ "Kan redigera utkast och visa filer med begränsad åtkomst för alla versioner "
683
+ "av posten."
97
684
 
98
- msgid "Copy link"
99
- msgstr "Kopiera länk"
685
+ msgid ""
686
+ "Can view (view access link can be created only after the record is "
687
+ "published)"
688
+ msgstr ""
689
+ "Kan visa (visningslänk kan skapas först efter att posten har publicerats)"
100
690
 
101
- msgid "Delete link"
102
- msgstr "Ta bort länk"
691
+ msgid "Expires"
692
+ msgstr "Upphör att gälla"
103
693
 
104
- msgid "Done"
105
- msgstr "Klart"
694
+ msgid "This record has no links generated yet."
695
+ msgstr "Inga länkar har ännu genererats för den här posten."
106
696
 
107
- msgid ""
108
- "Anyone with this link <1>can view all versions</1> of this record & files."
697
+ msgid "Unable to change the access request settings."
698
+ msgstr "Det går inte att ändra inställningarna för åtkomstbegäran."
699
+
700
+ msgid "Allow authenticated users to request access to restricted files."
701
+ msgstr ""
702
+ "Tillåt autentiserade användare att begära åtkomst till begränsade filer."
703
+
704
+ msgid "Allow non-authenticated users to request access to restricted files."
109
705
  msgstr ""
110
- "Alla med denna länk <1>kan se alla versioner</1> av denna post och filer."
706
+ "Tillåt icke-autentiserade användare att begära åtkomst till begränsade "
707
+ "filer."
708
+
709
+ msgid "Accept conditions"
710
+ msgstr "Acceptera villkor"
711
+
712
+ msgid "Advanced options"
713
+ msgstr "Avancerade inställningar"
714
+
715
+ msgid "Save"
716
+ msgstr "Spara"
717
+
718
+ msgid "No user has access to this record yet."
719
+ msgstr "Ingen användare har åtkomst till denna post ännu."
720
+
721
+ msgid "People with access"
722
+ msgstr "Personer med åtkomst"
723
+
724
+ msgid "No group has access to this record yet."
725
+ msgstr "Ingen grupp har åtkomst till denna post ännu."
726
+
727
+ msgid "Groups with access"
728
+ msgstr "Grupper med åtkomst"
729
+
730
+ msgid "You"
731
+ msgstr "Du"
732
+
733
+ msgid "Add people"
734
+ msgstr "Lägg till personer"
735
+
736
+ msgid "No selected users"
737
+ msgstr "Inga användare valda"
111
738
 
112
739
  msgid ""
113
- "Anyone with this link <2>can view all published and unpublished versions</2>"
114
- " of this record & files."
740
+ "Search for users to grant access (only users with a public profile can be "
741
+ "invited)"
115
742
  msgstr ""
116
- "Alla med denna länk <2>kan se alla publicerade och opublicerade "
117
- "versioner</2> av denna post och filer."
743
+ "Sök efter användare att tilldela åtkomst (endast användare med en offentlig "
744
+ "profil kan bjudas in)"
118
745
 
119
- msgid "Uploaded on"
120
- msgstr "Uppladdad "
746
+ msgid "Search by email, full name or username"
747
+ msgstr "Sök med e-post, fullständigt namn eller användarnamn"
121
748
 
122
- msgid "Search"
123
- msgstr "Sök"
749
+ msgid "users"
750
+ msgstr "användare"
124
751
 
125
- msgid "Search guide"
126
- msgstr "Sökguide"
752
+ msgid "Add groups"
753
+ msgstr "Lägg till grupper"
127
754
 
128
- msgid "result(s) found"
129
- msgstr "resultat hittades"
755
+ msgid "Group"
756
+ msgstr "Grupp"
130
757
 
131
- msgid "Sort by"
132
- msgstr "Sortera efter"
758
+ msgid "No selected groups"
759
+ msgstr "Inga grupper valda"
133
760
 
134
- msgid "View"
135
- msgstr "vy"
761
+ msgid "Search for groups"
762
+ msgstr "Sök efter grupper"
136
763
 
137
- msgid "New community"
138
- msgstr "Ny community"
764
+ msgid "groups"
765
+ msgstr "grupper"
139
766
 
140
- msgid "Get started!"
141
- msgstr "Börja!"
767
+ msgid "Add"
768
+ msgstr "Lägg till"
142
769
 
143
- msgid "Open"
144
- msgstr "Öppen"
770
+ msgid "Notify people"
771
+ msgstr "Meddela personer"
145
772
 
146
- msgid "Closed"
147
- msgstr "Stängd"
773
+ msgid "Notification message"
774
+ msgstr "Aviseringsmeddelande"
148
775
 
149
- msgid "All done!"
150
- msgstr "Allt klart!"
776
+ msgid "You are about to add"
777
+ msgstr "Du är på väg att lägga till"
151
778
 
152
- msgid "You've caught up with all open requests."
153
- msgstr "Du har kommit ikapp med alla öppna förfrågningar."
779
+ msgid "Access already granted"
780
+ msgstr "Åtkomst redan beviljad"
154
781
 
155
- msgid "No creation date found."
156
- msgstr "Inget datum för skapande hittades."
782
+ msgid "Can manage"
783
+ msgstr "Kan hantera"
157
784
 
158
- msgid "No description"
159
- msgstr "Ingen beskrivning"
785
+ msgid ""
786
+ "Can manage access, edit drafts and view restricted files of all versions of "
787
+ "this record."
788
+ msgstr ""
789
+ "Kan hantera åtkomst, redigera utkast och visa filer med begränsad åtkomst "
790
+ "för alla versioner av posten."
160
791
 
161
- msgid "No publication date found."
162
- msgstr "Inget publiceringsdatum hittades."
792
+ msgid "You don't have permissions to share this record."
793
+ msgstr "Du har inte behörighet att dela denna post."
163
794
 
164
- msgid "No resource type"
165
- msgstr "Ingen resurstyp"
795
+ msgid "Share"
796
+ msgstr "Dela"
166
797
 
167
- msgid "No title"
168
- msgstr "Ingen titel"
798
+ msgid "People"
799
+ msgstr "Personer"
169
800
 
170
- msgid "Make your first upload!"
171
- msgstr "Gör din första uppladdning!"
801
+ msgid "Groups"
802
+ msgstr "Grupper"
172
803
 
173
- msgid "New upload"
174
- msgstr "Ny uppladdning"
804
+ msgid "Settings"
805
+ msgstr "Inställningar"
175
806
 
176
- msgid "ORCID profile"
177
- msgstr "ORCID-profil"
807
+ msgid "Share access"
808
+ msgstr "Dela åtkomst"
178
809
 
179
- msgid "ROR profile"
180
- msgstr "ROR-profil"
810
+ msgid "Link expiration"
811
+ msgstr "Länkens utgångsdatum"
181
812
 
182
- msgid "GND profile"
183
- msgstr "GND-profil"
813
+ msgid "In 1 month"
814
+ msgstr "Inom 1 månad"
815
+
816
+ msgid "In 2 months"
817
+ msgstr "Inom 2 månader"
818
+
819
+ msgid "In 6 months"
820
+ msgstr "Inom 6 månader"
821
+
822
+ msgid "In 1 year"
823
+ msgstr "Inom 1 år"
824
+
825
+ msgid "Invalid date format."
826
+ msgstr "Ogiltigt datumformat."
827
+
828
+ msgid "Access link expiration date cannot be in the past."
829
+ msgstr "Åtkomstlänkens utgångsdatum får inte ha passerat."
184
830
 
185
- msgid "No communities found!"
186
- msgstr "Inga communities hittades!"
831
+ msgid "Access request"
832
+ msgstr "Åtkomstbegäran"
187
833
 
188
- msgid "No requests found!"
189
- msgstr "Inga förfrågningar hittades!"
834
+ msgid "Unable to change the expiration request settings."
835
+ msgstr "Det går inte att ändra inställningarna för begäran om utgångsdatum."
190
836
 
191
- msgid "Copied"
192
- msgstr "Kopierade"
837
+ msgid "Expiration date: "
838
+ msgstr "Utgångsdatum:"
193
839
 
194
- msgid "Reset search"
195
- msgstr "Återställ sökning"
840
+ msgid ""
841
+ "Format: YYYY-MM-DD. Granted access will expire on the given date. Leave "
842
+ "empty to set no expiration limit."
843
+ msgstr ""
844
+ "Format: ÅÅÅÅ-MM-DD. Beviljad åtkomst upphör att gälla på det angivna "
845
+ "datumet. Lämna fältet tomt för att inte ange något utgångsdatum."
196
846
 
197
- msgid "We couldn't find any matches for "
198
- msgstr "Vi kunde inte hitta några matchningar för"
847
+ msgid "Link expiration date:"
848
+ msgstr "Länkens utgångsdatum:"
199
849
 
200
- msgid "your search"
201
- msgstr "Din sökning"
850
+ msgid "We couldn't find any matches for {{- search}}"
851
+ msgstr "Vi kunde inte hitta några träffar för {{- search}}"
202
852
 
203
853
  msgid "Start over"
204
854
  msgstr "Börja om"
@@ -206,23 +856,30 @@ msgstr "Börja om"
206
856
  msgid "ProTip"
207
857
  msgstr "ProTip"
208
858
 
209
- msgid "For more tips, check out our "
210
- msgstr "För fler tips, kolla in vår"
859
+ msgid "Search guide"
860
+ msgstr "Sökguide"
211
861
 
212
- msgid "search guide"
213
- msgstr "sökguide"
862
+ msgid ""
863
+ "<0>For more tips, check out our <2>search guide</2> for defining advanced "
864
+ "search queries.</0>"
865
+ msgstr ""
866
+ "<0>Om du vill ha fler tips kan du kolla in vår <2>sökguide</2> för att "
867
+ "konstruera avancerade sökfrågor.</0>"
214
868
 
215
- msgid "Export"
216
- msgstr "Exportera"
869
+ msgid "Search in my communities..."
870
+ msgstr "Sök i mina communities..."
217
871
 
218
- msgid "Filter results"
219
- msgstr "Filtrera resultat"
872
+ msgid "View"
873
+ msgstr "Visa"
874
+
875
+ msgid "Published in: {{publishedIn}}"
876
+ msgstr "Publicerad i: {{publishedIn}}"
220
877
 
221
878
  msgid "In review"
222
879
  msgstr "Under granskning"
223
880
 
224
881
  msgid "Declined"
225
- msgstr "Tackade nej"
882
+ msgstr "Avslagen"
226
883
 
227
884
  msgid "Expired"
228
885
  msgstr "Utgånget"
@@ -231,55 +888,64 @@ msgid "Draft"
231
888
  msgstr "Utkast"
232
889
 
233
890
  msgid "New version draft"
234
- msgstr "Nytt utkast till version"
891
+ msgstr "Utkast till ny version"
235
892
 
236
- msgid "Download file"
237
- msgstr "Nedladdning fil"
893
+ msgid "open"
894
+ msgstr "öppna"
238
895
 
239
- msgid "No link has been created. Click on 'Get a Link' to make a new link."
240
- msgstr ""
241
- "Ingen länk har skapats. Klicka på \"Hämta en länk\" för att skapa en ny "
242
- "länk."
896
+ msgid "Open"
897
+ msgstr "Öppen"
243
898
 
244
- msgid ""
245
- "Anyone with an account and this link <1>can edit all versions</1> of this "
246
- "record & files."
247
- msgstr ""
248
- "Alla med ett konto och denna länk <1>kan redigera alla versioner</1> av "
249
- "denna post och filer."
899
+ msgid "unlock"
900
+ msgstr "låsa upp"
250
901
 
251
- msgid "Search records..."
252
- msgstr "Sök rekord..."
902
+ msgid "Get started!"
903
+ msgstr "Kom igång!"
253
904
 
254
- msgid "will give you all the publications from 2017 until today."
255
- msgstr "kommer att ge dig alla publikationer från 2017 till idag."
905
+ msgid "Make your first upload!"
906
+ msgstr "Gör din första uppladdning!"
256
907
 
257
- msgid " for defining advanced search queries."
258
- msgstr "för att definiera avancerade sökfrågor."
908
+ msgid "New upload"
909
+ msgstr "Ny uppladdning"
259
910
 
260
- msgid "Public"
261
- msgstr "Offentlig"
911
+ msgid "Search in my uploads..."
912
+ msgstr "Sök i mina uppladdningar..."
262
913
 
263
- msgid "Restricted"
264
- msgstr "Begränsad"
914
+ msgid "ORCID profile"
915
+ msgstr "ORCID-profil"
265
916
 
266
- msgid "Search in my communities..."
267
- msgstr "Sök i mina communities..."
917
+ msgid "ORCID logo"
918
+ msgstr "ORCID logo"
268
919
 
269
- msgid "Opened {{difference}} by"
270
- msgstr "Öppnad {{skillnad}} av"
920
+ msgid "ROR profile"
921
+ msgstr "ROR-profil"
271
922
 
272
- msgid "Search in my requests..."
273
- msgstr "Sök i mina förfrågningar..."
923
+ msgid "ROR logo"
924
+ msgstr "ROR logo"
274
925
 
275
- msgid "Actions"
276
- msgstr "Åtgärder"
926
+ msgid "GND profile"
927
+ msgstr "GND-profil"
277
928
 
278
- msgid "open"
279
- msgstr "öppna"
929
+ msgid "GND logo"
930
+ msgstr "GND logo"
280
931
 
281
- msgid "unlock"
282
- msgstr "låsa upp"
932
+ msgid "No name"
933
+ msgstr "Inget namn"
283
934
 
284
- msgid "Search in my uploads..."
285
- msgstr "Sök i mina uppladdningar..."
935
+ msgid "and {{count}} other"
936
+ msgid_plural "and {{count}} other"
937
+ msgstr[0] "och {{count}} andra"
938
+ msgstr[1] "och {{count}} andra"
939
+
940
+ msgid "and {{count}} others"
941
+ msgid_plural "and {{count}} others"
942
+ msgstr[0] "och {{count}} andra"
943
+ msgstr[1] "och {{count}} andra"
944
+
945
+ msgctxt ""
946
+ "date:[2017-01-01 TO *]</0> will give you all the publications from 2017 "
947
+ "until today.</0>"
948
+ msgid "<0><0>metadata.publication"
949
+ msgstr ""
950
+ "<0><0>metadata.publication_date:[2017-01-01 TO *]</0> ger alla publiceringar"
951
+ " från 2017 till och med idag.</0>"