invenio-app-rdm 13.0.0b4.dev1__py2.py3-none-any.whl → 14.0.0b1.dev8__py2.py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (247) hide show
  1. invenio_app_rdm/__init__.py +1 -1
  2. invenio_app_rdm/administration/moderation/__init__.py +11 -0
  3. invenio_app_rdm/administration/moderation/requests.py +175 -0
  4. invenio_app_rdm/administration/records/records.py +9 -7
  5. invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/requests.html +14 -0
  6. invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/requests_details.html +91 -0
  7. invenio_app_rdm/administration/user_moderation/user_moderation.py +4 -4
  8. invenio_app_rdm/administration/users/users.py +0 -5
  9. invenio_app_rdm/communities_ui/views/communities.py +9 -5
  10. invenio_app_rdm/config.py +73 -4
  11. invenio_app_rdm/ext.py +2 -2
  12. invenio_app_rdm/fixtures/pages.py +5 -2
  13. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html +11 -0
  14. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html +2 -5
  15. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/citation.html +2 -2
  16. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html +2 -2
  17. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/communities.html +8 -7
  18. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/external_resources.html +5 -6
  19. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html +9 -13
  20. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/manage_menu.html +8 -5
  21. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html +2 -4
  22. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html +1 -1
  23. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html +7 -5
  24. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html +21 -4
  25. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html +6 -1
  26. invenio_app_rdm/records_ui/utils.py +93 -1
  27. invenio_app_rdm/records_ui/views/decorators.py +24 -14
  28. invenio_app_rdm/records_ui/views/deposits.py +100 -27
  29. invenio_app_rdm/records_ui/views/filters.py +11 -4
  30. invenio_app_rdm/records_ui/views/records.py +23 -13
  31. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/file-modification/index.html +88 -0
  32. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/guest-access-request/index.html +5 -5
  33. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/record-deletion/index.html +95 -0
  34. invenio_app_rdm/requests_ui/views/requests.py +54 -87
  35. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/ViewRecentChanges.js +8 -8
  36. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/ImpersonateUserForm.js +12 -17
  37. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/RevisionsDiffViewer.js +14 -16
  38. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/SetQuotaAction.js +1 -1
  39. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/api/routes.js +1 -2
  40. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/RequestsSearchResultItem.js +81 -0
  41. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/RequestsSearchbarLayout.js +48 -0
  42. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/index.js +22 -0
  43. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/CommunityRecordsSearchAppLayout.js +3 -4
  44. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/CopyButton.js +38 -19
  45. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/FileModificationUntil.js +45 -0
  46. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion/DeletionModal.js +354 -0
  47. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion/DeletionRadioGroup.js +44 -0
  48. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion.js +81 -0
  49. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/RDMDepositForm.js +55 -5
  50. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/index.js +4 -1
  51. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/CommunitiesManagement.js +2 -2
  52. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ExportDropdown.js +7 -2
  53. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ManageButton.js +52 -19
  54. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCitationField.js +15 -14
  55. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/RecordCommunitiesListModal.js +4 -4
  56. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitySubmission/RecordCommunitySubmissionModal.js +1 -1
  57. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordManagement.js +17 -3
  58. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordVersionsList.js +16 -17
  59. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RemoveFromCommunity/RemoveFromCommunityAction.js +5 -5
  60. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/index.js +42 -40
  61. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/theme.js +9 -5
  62. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/AccessRequestTimelineEdit.js +5 -5
  63. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/AccessRequestTimelineRead.js +2 -2
  64. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/search/components.js +14 -19
  65. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/theme.js +9 -0
  66. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/file_uploader/uppy.less +37 -0
  67. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/landing_page/licenses.less +5 -3
  68. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/site.overrides +6 -1
  69. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/accordion.overrides +10 -1
  70. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/search.overrides +7 -0
  71. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/search.variables +0 -0
  72. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/i18next.js +1 -1
  73. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/_generatedTranslations.js +66 -0
  74. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ar/messages.po +804 -137
  75. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ar/translations.json +277 -249
  76. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/bg/messages.po +689 -70
  77. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/bg/translations.json +102 -82
  78. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ca/messages.po +699 -80
  79. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ca/translations.json +112 -92
  80. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/cs/messages.po +821 -138
  81. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/cs/translations.json +290 -262
  82. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/da/messages.po +691 -66
  83. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/da/translations.json +91 -71
  84. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/de/messages.po +818 -138
  85. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/de/translations.json +260 -240
  86. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/el/messages.po +698 -78
  87. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/el/translations.json +108 -88
  88. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/en/messages.po +1000 -5
  89. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/en/translations.json +81 -28
  90. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/es/messages.po +810 -137
  91. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/es/translations.json +253 -233
  92. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et/messages.po +746 -133
  93. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et/translations.json +130 -110
  94. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fa/messages.po +688 -69
  95. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fa/translations.json +103 -79
  96. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fr/messages.po +809 -126
  97. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fr/translations.json +277 -257
  98. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hr/messages.po +695 -70
  99. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hr/translations.json +101 -79
  100. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hu/messages.po +801 -135
  101. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hu/translations.json +254 -234
  102. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/index.js +16 -65
  103. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/it/messages.po +712 -86
  104. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/it/translations.json +116 -96
  105. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ja/messages.po +683 -70
  106. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ja/translations.json +96 -78
  107. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ka/messages.po +689 -70
  108. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ka/translations.json +109 -85
  109. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ko/messages.po +889 -0
  110. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ko/translations.json +277 -0
  111. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/lt/messages.po +702 -71
  112. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/lt/translations.json +113 -85
  113. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/no/messages.po +689 -70
  114. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/no/translations.json +102 -82
  115. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pl/messages.po +704 -70
  116. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pl/translations.json +119 -91
  117. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pt/messages.po +694 -69
  118. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pt/translations.json +93 -73
  119. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ro/messages.po +717 -85
  120. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ro/translations.json +155 -133
  121. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ru/messages.po +806 -124
  122. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ru/translations.json +288 -260
  123. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sk/messages.po +713 -82
  124. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sk/translations.json +119 -91
  125. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sv/messages.po +807 -141
  126. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sv/translations.json +260 -240
  127. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/tr/messages.po +799 -128
  128. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/tr/translations.json +259 -239
  129. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/uk/messages.po +756 -131
  130. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/uk/translations.json +124 -96
  131. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_CN/messages.po +736 -123
  132. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_CN/translations.json +130 -108
  133. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_TW/messages.po +683 -70
  134. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_TW/translations.json +100 -78
  135. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/package.json +3 -37
  136. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/translations.pot +243 -94
  137. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.de.html +2 -2
  138. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.en.html +4 -4
  139. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.sv.html +4 -4
  140. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html +7 -6
  141. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/macros/records_list.html +2 -1
  142. invenio_app_rdm/theme/templates/semantic-ui/invenio_communities/default_static_page.html +26 -0
  143. invenio_app_rdm/theme/webpack.py +3 -2
  144. invenio_app_rdm/translations/ar/LC_MESSAGES/messages.mo +0 -0
  145. invenio_app_rdm/translations/ar/LC_MESSAGES/messages.po +972 -376
  146. invenio_app_rdm/translations/bg/LC_MESSAGES/messages.mo +0 -0
  147. invenio_app_rdm/translations/bg/LC_MESSAGES/messages.po +907 -278
  148. invenio_app_rdm/translations/ca/LC_MESSAGES/messages.mo +0 -0
  149. invenio_app_rdm/translations/ca/LC_MESSAGES/messages.po +912 -283
  150. invenio_app_rdm/translations/cs/LC_MESSAGES/messages.mo +0 -0
  151. invenio_app_rdm/translations/cs/LC_MESSAGES/messages.po +1069 -405
  152. invenio_app_rdm/translations/da/LC_MESSAGES/messages.mo +0 -0
  153. invenio_app_rdm/translations/da/LC_MESSAGES/messages.po +908 -273
  154. invenio_app_rdm/translations/de/LC_MESSAGES/messages.mo +0 -0
  155. invenio_app_rdm/translations/de/LC_MESSAGES/messages.po +1017 -406
  156. invenio_app_rdm/translations/el/LC_MESSAGES/messages.mo +0 -0
  157. invenio_app_rdm/translations/el/LC_MESSAGES/messages.po +915 -286
  158. invenio_app_rdm/translations/es/LC_MESSAGES/messages.mo +0 -0
  159. invenio_app_rdm/translations/es/LC_MESSAGES/messages.po +963 -371
  160. invenio_app_rdm/translations/et/LC_MESSAGES/messages.mo +0 -0
  161. invenio_app_rdm/translations/et/LC_MESSAGES/messages.po +938 -362
  162. invenio_app_rdm/translations/fa/LC_MESSAGES/messages.mo +0 -0
  163. invenio_app_rdm/translations/fa/LC_MESSAGES/messages.po +906 -277
  164. invenio_app_rdm/translations/fr/LC_MESSAGES/messages.mo +0 -0
  165. invenio_app_rdm/translations/fr/LC_MESSAGES/messages.po +1032 -375
  166. invenio_app_rdm/translations/hr/LC_MESSAGES/messages.mo +0 -0
  167. invenio_app_rdm/translations/hr/LC_MESSAGES/messages.po +907 -278
  168. invenio_app_rdm/translations/hu/LC_MESSAGES/messages.mo +0 -0
  169. invenio_app_rdm/translations/hu/LC_MESSAGES/messages.po +985 -369
  170. invenio_app_rdm/translations/it/LC_MESSAGES/messages.mo +0 -0
  171. invenio_app_rdm/translations/it/LC_MESSAGES/messages.po +928 -298
  172. invenio_app_rdm/translations/ja/LC_MESSAGES/messages.mo +0 -0
  173. invenio_app_rdm/translations/ja/LC_MESSAGES/messages.po +907 -278
  174. invenio_app_rdm/translations/ka/LC_MESSAGES/messages.mo +0 -0
  175. invenio_app_rdm/translations/ka/LC_MESSAGES/messages.po +909 -280
  176. invenio_app_rdm/translations/ko/LC_MESSAGES/messages.mo +0 -0
  177. invenio_app_rdm/translations/ko/LC_MESSAGES/messages.po +1361 -0
  178. invenio_app_rdm/translations/lt/LC_MESSAGES/messages.mo +0 -0
  179. invenio_app_rdm/translations/lt/LC_MESSAGES/messages.po +910 -281
  180. invenio_app_rdm/translations/messages.pot +486 -303
  181. invenio_app_rdm/translations/no/LC_MESSAGES/messages.mo +0 -0
  182. invenio_app_rdm/translations/no/LC_MESSAGES/messages.po +907 -278
  183. invenio_app_rdm/translations/pl/LC_MESSAGES/messages.mo +0 -0
  184. invenio_app_rdm/translations/pl/LC_MESSAGES/messages.po +907 -278
  185. invenio_app_rdm/translations/pt/LC_MESSAGES/messages.mo +0 -0
  186. invenio_app_rdm/translations/pt/LC_MESSAGES/messages.po +906 -277
  187. invenio_app_rdm/translations/ro/LC_MESSAGES/messages.mo +0 -0
  188. invenio_app_rdm/translations/ro/LC_MESSAGES/messages.po +1042 -384
  189. invenio_app_rdm/translations/ru/LC_MESSAGES/messages.mo +0 -0
  190. invenio_app_rdm/translations/ru/LC_MESSAGES/messages.po +1022 -370
  191. invenio_app_rdm/translations/sk/LC_MESSAGES/messages.mo +0 -0
  192. invenio_app_rdm/translations/sk/LC_MESSAGES/messages.po +916 -287
  193. invenio_app_rdm/translations/sv/LC_MESSAGES/messages.mo +0 -0
  194. invenio_app_rdm/translations/sv/LC_MESSAGES/messages.po +989 -380
  195. invenio_app_rdm/translations/tr/LC_MESSAGES/messages.mo +0 -0
  196. invenio_app_rdm/translations/tr/LC_MESSAGES/messages.po +992 -341
  197. invenio_app_rdm/translations/uk/LC_MESSAGES/messages.mo +0 -0
  198. invenio_app_rdm/translations/uk/LC_MESSAGES/messages.po +935 -356
  199. invenio_app_rdm/translations/zh_CN/LC_MESSAGES/messages.mo +0 -0
  200. invenio_app_rdm/translations/zh_CN/LC_MESSAGES/messages.po +939 -347
  201. invenio_app_rdm/translations/zh_TW/LC_MESSAGES/messages.mo +0 -0
  202. invenio_app_rdm/translations/zh_TW/LC_MESSAGES/messages.po +907 -278
  203. invenio_app_rdm/upgrade_scripts/migrate_12_0_to_13_0.py +190 -62
  204. {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/METADATA +118 -7
  205. {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/RECORD +209 -225
  206. {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/entry_points.txt +2 -0
  207. {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/top_level.txt +0 -1
  208. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/i18next-scanner.config.js +0 -64
  209. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/package-lock.json +0 -1512
  210. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/scripts/compileCatalog.js +0 -40
  211. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/scripts/initCatalog.js +0 -20
  212. tests/__init__.py +0 -8
  213. tests/api/__init__.py +0 -8
  214. tests/api/conftest.py +0 -24
  215. tests/api/test_protect_files_rest.py +0 -73
  216. tests/api/test_record_api.py +0 -175
  217. tests/api/test_stats_api.py +0 -26
  218. tests/conftest.py +0 -390
  219. tests/fixtures/__init__.py +0 -8
  220. tests/fixtures/app_data/oai_sets.yaml +0 -3
  221. tests/fixtures/app_data/pages/about.html +0 -1
  222. tests/fixtures/app_data/pages.yaml +0 -4
  223. tests/fixtures/conftest.py +0 -27
  224. tests/fixtures/test_cli.py +0 -25
  225. tests/fixtures/test_fixtures.py +0 -46
  226. tests/mock_module/__init__.py +0 -7
  227. tests/mock_module/templates/mock_mail.html +0 -27
  228. tests/mock_module/views.py +0 -32
  229. tests/redirector/__init__.py +0 -8
  230. tests/redirector/conftest.py +0 -54
  231. tests/redirector/test_redirector.py +0 -28
  232. tests/test_tasks.py +0 -209
  233. tests/test_utils.py +0 -67
  234. tests/test_version.py +0 -16
  235. tests/test_views.py +0 -43
  236. tests/ui/__init__.py +0 -8
  237. tests/ui/conftest.py +0 -115
  238. tests/ui/test_deposits.py +0 -115
  239. tests/ui/test_export_formats.py +0 -37
  240. tests/ui/test_file_download.py +0 -73
  241. tests/ui/test_filters.py +0 -10
  242. tests/ui/test_robotstxt.py +0 -35
  243. tests/ui/test_signposting_ui.py +0 -95
  244. tests/ui/test_sitemaps.py +0 -85
  245. tests/ui/test_stats_ui.py +0 -92
  246. {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/WHEEL +0 -0
  247. {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/licenses/LICENSE +0 -0
@@ -1,14 +1,16 @@
1
1
  #
2
2
  # Translators:
3
- # Berat Aldemir <berataldemir@gmail.com>, 2021
4
- # Ben Translation and Interpreting Services <info@bentercume.com>, 2022
3
+ # Hakan Bayindir <hbayindir@gmail.com>, 2024
4
+ # Berat Aldemir <berataldemir@gmail.com>, 2024
5
+ # Ben Translation and Interpreting Services <info@bentercume.com>, 2025
6
+ # BEN TERCÜME, 2025
5
7
  #
6
8
  msgid ""
7
9
  msgstr ""
8
10
  "Project-Id-Version: i18next-conv\n"
9
- "POT-Creation-Date: 2022-10-12T06:58:21.832Z\n"
11
+ "POT-Creation-Date: 2025-03-27T16:30:16.192Z\n"
10
12
  "PO-Revision-Date: 2021-07-14 16:07+0000\n"
11
- "Last-Translator: Ben Translation and Interpreting Services <info@bentercume.com>, 2022\n"
13
+ "Last-Translator: BEN TERCÜME, 2025\n"
12
14
  "Language-Team: Turkish (https://app.transifex.com/inveniosoftware/teams/23537/tr/)\n"
13
15
  "Content-Type: text/plain; charset=UTF-8\n"
14
16
  "Content-Transfer-Encoding: 8bit\n"
@@ -19,14 +21,352 @@ msgstr ""
19
21
  msgid "Basic information"
20
22
  msgstr "Temel bilgiler"
21
23
 
24
+ msgid "Impersonate user"
25
+ msgstr "Kullanıcıyı taklit et"
26
+
27
+ msgid "Impersonate"
28
+ msgstr "Taklit et"
29
+
30
+ msgid "You must accept this."
31
+ msgstr "Bunu kabul etmelisiniz."
32
+
33
+ msgid "Success"
34
+ msgstr "Başarı"
35
+
36
+ msgid ""
37
+ "User impersonated succesfully! You will be redirected in frontpage soon."
38
+ msgstr ""
39
+ "Kullanıcı başarıyla taklit edildi! Yakında ana sayfaya yönlendirileceksiniz."
40
+
41
+ msgid "Unable to impersonate user."
42
+ msgstr "Kullanıcı taklit edilemiyor."
43
+
44
+ msgid ""
45
+ "Please read carefully and confirm the following statements before you "
46
+ "proceed."
47
+ msgstr ""
48
+ "Lütfen devam etmeden önce aşağıdaki ifadeleri dikkatlice okuyun ve "
49
+ "onaylayın."
50
+
51
+ msgid "You are about to impersonate user <bold>{{email}}(id: {{id}})</bold>."
52
+ msgstr ""
53
+ "<bold>{{email}}(id: {{id}})</bold>kullanıcısını taklit etmek üzeresiniz."
54
+
55
+ msgid "You <bold>MUST</bold> logout after completing your inquiry."
56
+ msgstr ""
57
+ "Sorgulamanızı tamamladıktan sonra <bold>MUTLAKA</bold> çıkış yapmalısınız."
58
+
59
+ msgid "Close"
60
+ msgstr "Kapat"
61
+
62
+ msgid "Set Quota"
63
+ msgstr "Kota Belirle"
64
+
65
+ msgid "Set quota in bytes"
66
+ msgstr "Bayt olarak kota belirle"
67
+
68
+ msgid "Note"
69
+ msgstr "Not"
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
+ "Bu kota, bu kullanıcı tarafından oluşturulacak tüm YENİ kayıtlara "
76
+ "uygulanacak olan varsayılan kotadır - mevcut kayıtların kotasını "
77
+ "GÜNCELLEMEZ."
78
+
79
+ msgid "Quota of {{id}} was set to {{quota}} {{unit}}"
80
+ msgstr "{{id}} kotası {{quota}} {{unit}} olarak ayarlandı"
81
+
82
+ msgid "Unable to set quota."
83
+ msgstr "Kota ayarlanamıyor."
84
+
85
+ msgid "Quota size ({{unit}})"
86
+ msgstr "Kota boyutu ({{unit}})"
87
+
88
+ msgid "Enter quota size..."
89
+ msgstr "Kota boyutunu girin..."
90
+
91
+ msgid "Max file size ({{unit}})"
92
+ msgstr "Maksimum dosya boyutu ({{unit}})"
93
+
94
+ msgid "Enter max file size..."
95
+ msgstr "Maksimum dosya boyutunu girin..."
96
+
97
+ msgid "Ticket 1234"
98
+ msgstr "Talep 1234"
99
+
100
+ msgid "Set quota"
101
+ msgstr "Kota belirle"
102
+
103
+ msgid "Domain"
104
+ msgstr "Etki Alanı"
105
+
106
+ msgid "Flagged"
107
+ msgstr "İşaretli"
108
+
109
+ msgid "Organization"
110
+ msgstr "Kuruluş"
111
+
112
+ msgid "Company"
113
+ msgstr "Şirket"
114
+
115
+ msgid "Mail provider"
116
+ msgstr "E-posta servis sağlayıcısı"
117
+
118
+ msgid "Spammer"
119
+ msgstr "Spam gönderen"
120
+
121
+ msgid "TLD"
122
+ msgstr "TLD"
123
+
124
+ msgid "Status"
125
+ msgstr "Durum"
126
+
127
+ msgid "New"
128
+ msgstr "Yeni"
129
+
130
+ msgid "Moderated"
131
+ msgstr "Denetlenmiş"
132
+
133
+ msgid "Verified"
134
+ msgstr "Doğrulanmış"
135
+
136
+ msgid "Blocked"
137
+ msgstr "Engellenmiş"
138
+
139
+ msgid "Users"
140
+ msgstr "Kullanıcılar"
141
+
142
+ msgid "Active"
143
+ msgstr "Aktif"
144
+
145
+ msgid "Inactive"
146
+ msgstr "Aktif olmayan"
147
+
148
+ msgid "Confirmed"
149
+ msgstr "Onaylı"
150
+
151
+ msgid "Links"
152
+ msgstr "Bağlantılar"
153
+
154
+ msgid "Set quota for record {{recordId}}"
155
+ msgstr "{{recordId}} kaydı için kota belirleyin"
156
+
157
+ msgid "Delete record"
158
+ msgstr "Kaydı sil"
159
+
160
+ msgid "Restore record"
161
+ msgstr "Kaydı geri yükle"
162
+
163
+ msgid "Unavailability statement"
164
+ msgstr "Kullanılamama bildirimi"
165
+
166
+ msgid "Record {{id}} was restored."
167
+ msgstr "{{id}} kaydı geri yüklendi."
168
+
169
+ msgid "Unable to restore."
170
+ msgstr "Geri yüklenemiyor."
171
+
172
+ msgid "Are you sure you want to restore #{{id}}"
173
+ msgstr "#{{id}} kaydını geri yüklemek istediğinizden emin misiniz?"
174
+
175
+ msgid "Published"
176
+ msgstr "Yayınlanmış"
177
+
178
+ msgid "Deleted"
179
+ msgstr "Silinen"
180
+
181
+ msgid "Scheduled for purge"
182
+ msgstr "Silinmek üzere zamanlandı"
183
+
184
+ msgid "Empty draft title"
185
+ msgstr "Boş taslak başlığı"
186
+
187
+ msgid "version"
188
+ msgstr "sürüm"
189
+
190
+ msgid "Owner"
191
+ msgstr "Sahip"
192
+
193
+ msgid "Created"
194
+ msgstr "Oluşturuldu"
195
+
196
+ msgid "Files"
197
+ msgstr "Dosyalar"
198
+
199
+ msgid "Stats"
200
+ msgstr "İstatistikler"
201
+
202
+ msgid "Record {{id}} was deleted."
203
+ msgstr "{{id}} kaydı silindi."
204
+
205
+ msgid "Unable to delete"
206
+ msgstr "Silinemiyor"
207
+
208
+ msgid "Public"
209
+ msgstr "Herkese açık"
210
+
211
+ msgid "Hidden"
212
+ msgstr "Gizli"
213
+
214
+ msgid ""
215
+ "The tombstone is set to hidden but your record is public. Best practice is "
216
+ "to provide a public tombstone when deactivating public records."
217
+ msgstr ""
218
+ "Mezar taşı belirteci gizli olarak ayarlanmış ancak kaydınız herkese açık. En"
219
+ " iyi uygulama, herkese açık kayıtları devre dışı bırakırken herkese açık bir"
220
+ " mezar taşı sağlamaktır."
221
+
222
+ msgid ""
223
+ "RISK INFORMATION LEAKAGE: The tombstone is set to public but your record is "
224
+ "restricted. Please make sure no restricted information is shared in the "
225
+ "tombstone below."
226
+ msgstr ""
227
+ "BİLGİSİ SIZINTISI RİSKİ: Mezar taşı belirteci herkese açık olarak ayarlanmış"
228
+ " ancak kaydınızdaki bilgiler kısıtlanmış. Lütfen aşağıdaki mezar taşında "
229
+ "kısıtlanmış bilgilerin paylaşılmadığından emin olun."
230
+
231
+ msgid "Bibliographic citation"
232
+ msgstr "Bibliyografik referans"
233
+
234
+ msgid ""
235
+ "Input citation text. Blank field will be filled with APA citation by "
236
+ "default."
237
+ msgstr ""
238
+ "Referans metnini girin. Boş alan varsayılan olarak APA referansı ile "
239
+ "doldurulacaktır."
240
+
241
+ msgid "Public note"
242
+ msgstr "Herkese açık not"
243
+
244
+ msgid "User {{name}} was approved."
245
+ msgstr "{{name}} adlı kullanıcı onaylandı."
246
+
247
+ msgid "User {{name}} is blocked."
248
+ msgstr "{{name}} adlı kullanıcı engellendi."
249
+
250
+ msgid "Error"
251
+ msgstr "Hata"
252
+
253
+ msgid "User"
254
+ msgstr "Kullanıcı"
255
+
256
+ msgid "Email"
257
+ msgstr "E-posta"
258
+
259
+ msgid "Email domain"
260
+ msgstr "E-posta etki alanı"
261
+
262
+ msgid "Actions"
263
+ msgstr "Eylemler"
264
+
265
+ msgid "Records"
266
+ msgstr "Kayıtlar"
267
+
268
+ msgid "Username"
269
+ msgstr "Kullanıcı adı"
270
+
271
+ msgid "GitHub"
272
+ msgstr "GitHub"
273
+
274
+ msgid "Updated"
275
+ msgstr "Güncellendi"
276
+
277
+ msgid "Restore"
278
+ msgstr "Geri yükle"
279
+
280
+ msgid "Restored"
281
+ msgstr "Geri yüklendi"
282
+
283
+ msgid "Block"
284
+ msgstr "Engelle"
285
+
286
+ msgid "Suspend"
287
+ msgstr "Askıya al"
288
+
289
+ msgid "Suspended"
290
+ msgstr "Askıya alındı"
291
+
292
+ msgid "Approve"
293
+ msgstr "Onayla"
294
+
295
+ msgid "Approved"
296
+ msgstr "Onaylandı"
297
+
298
+ msgid "Activate"
299
+ msgstr "Aktive et"
300
+
301
+ msgid "Activated"
302
+ msgstr "Aktive edildi"
303
+
304
+ msgid "Set default quota for {{email}}"
305
+ msgstr "{{email}} için varsayılan kotayı ayarla"
306
+
307
+ msgid "Filter results"
308
+ msgstr "Sonuçları filtrele"
309
+
310
+ msgid "Search records in community..."
311
+ msgstr "Topluluktaki kayıtları ara..."
312
+
313
+ msgid "Sort by"
314
+ msgstr "Şuna göre sırala:"
315
+
316
+ msgid " results found"
317
+ msgid_plural " results found"
318
+ msgstr[0] "adet sonuç bulundu"
319
+ msgstr[1] "adet sonuç bulundu"
320
+
321
+ msgid "Search records..."
322
+ msgstr "Kayıtları ara..."
323
+
324
+ msgid "Search"
325
+ msgstr "Ara"
326
+
327
+ msgid "Views"
328
+ msgstr "Görüntüleme"
329
+
330
+ msgid "Downloads"
331
+ msgstr "İndirilenler"
332
+
22
333
  msgid "Copy to clipboard"
23
334
  msgstr "Panoya kopyala"
24
335
 
25
336
  msgid "Copied!"
26
337
  msgstr "Kopyalandı!"
27
338
 
28
- msgid "Files"
29
- msgstr "Dosyalar"
339
+ msgid "Part of "
340
+ msgstr "Şunun parçası:"
341
+
342
+ msgid "No creation date found."
343
+ msgstr "Oluşturulma tarihi bulunamadı."
344
+
345
+ msgid "No description"
346
+ msgstr "Açıklama yok"
347
+
348
+ msgid "No publication date found."
349
+ msgstr "Yayın tarihi bulunamadı."
350
+
351
+ msgid "No resource type"
352
+ msgstr "Kaynak türü yok"
353
+
354
+ msgid "No title"
355
+ msgstr "Başlık yok"
356
+
357
+ msgid "Uploaded on {{uploadDate}}"
358
+ msgstr "Karşıya yüklenme tarihi: {{uploadDate}}"
359
+
360
+ msgid "Published in: {{publishInfo}}"
361
+ msgstr "Yayınlanma bilgisi: {{publishInfo}}"
362
+
363
+ msgid "{{count}} more versions exist for this record"
364
+ msgid_plural "{{count}} more versions exist for this record"
365
+ msgstr[0] "Bu kayıt için {{count}} adet daha sürüm var"
366
+ msgstr[1] "Bu kayıt için {{count}} adet daha sürüm var"
367
+
368
+ msgid "Person"
369
+ msgstr "Kişi"
30
370
 
31
371
  msgid "The record has no files."
32
372
  msgstr "Bu kayıt hiç dosya içermemekte."
@@ -43,29 +383,173 @@ msgstr "Katkıda bulunan kişi ekle"
43
383
  msgid "Contributors"
44
384
  msgstr "Katkıda Bulunan Kişiler"
45
385
 
386
+ msgid "Edit contributor"
387
+ msgstr ""
388
+
389
+ msgid "Funding"
390
+ msgstr "Finansman"
391
+
392
+ msgid "Awards/Grants"
393
+ msgstr "Ödüller/Hibeler"
394
+
46
395
  msgid "Alternate identifiers"
47
396
  msgstr "Alternatif tanımlayıcılar"
48
397
 
49
398
  msgid "Related works"
50
399
  msgstr "İlgili çalışmalar"
51
400
 
401
+ msgid "References"
402
+ msgstr "Referanslar"
403
+
52
404
  msgid "Visibility"
53
405
  msgstr "Görünürlük"
54
406
 
407
+ msgid "More"
408
+ msgstr "Daha fazla"
409
+
410
+ msgid "Unable to request the access."
411
+ msgstr "Erişim yetkisi talebinde bulunulamıyor."
412
+
413
+ msgid "Your email address"
414
+ msgstr ""
415
+
416
+ msgid "Email address"
417
+ msgstr "E-posta adresi"
418
+
419
+ msgid "Your full name"
420
+ msgstr "Tam adınız"
421
+
422
+ msgid "Full name"
423
+ msgstr "Tam ad"
424
+
425
+ msgid "Request message"
426
+ msgstr "Mesaj talep et"
427
+
428
+ msgid ""
429
+ "I agree to that my full name and email address is shared with the owners of "
430
+ "the record"
431
+ msgstr ""
432
+ "Tam adımın ve e-posta adresimin kayıt sahipleriyle paylaşılmasını kabul "
433
+ "ediyorum"
434
+
435
+ msgid "Request access"
436
+ msgstr "Erişim talebi"
437
+
438
+ msgid "Email confirmation needed"
439
+ msgstr ""
440
+
441
+ msgid "We have sent you an email to verify your address."
442
+ msgstr ""
443
+
444
+ msgid ""
445
+ "\n"
446
+ " Please check the email and follow the instructions to complete the access request.\n"
447
+ " "
448
+ msgstr ""
449
+
450
+ msgid "An error occurred while fetching communities."
451
+ msgstr "Topluluklar getirilirken bir hata oluştu."
452
+
453
+ msgid "Communities"
454
+ msgstr "Topluluklar"
455
+
456
+ msgid "View all {{count}} communities"
457
+ msgid_plural "View all {{count}} communities"
458
+ msgstr[0] "Tüm {{count}} topluluğu görüntüle"
459
+ msgstr[1] "Tüm {{count}} topluluğu görüntüle"
460
+
461
+ msgid "Submit to community"
462
+ msgstr "Topluluğa gönder"
463
+
464
+ msgid "Pending submissions"
465
+ msgstr "Bekleyen gönderimler"
466
+
467
+ msgid "Manage communities"
468
+ msgstr "Toplulukları yönetin"
469
+
470
+ msgid "Community management menu dropdown"
471
+ msgstr "Topluluk yönetimi aşağı açılır menüsü"
472
+
55
473
  msgid "Edit"
56
474
  msgstr "Düzenle"
57
475
 
58
- msgid "An error occurred while generating the citation."
476
+ msgid "Export selection"
477
+ msgstr "Seçimi dışa aktar"
478
+
479
+ msgid "Download file"
480
+ msgstr "Dosya indir"
481
+
482
+ msgid "Export"
483
+ msgstr "Dışa Aktar"
484
+
485
+ msgid "Manage"
486
+ msgstr "Yönet"
487
+
488
+ msgid "Manage record"
489
+ msgstr "Kaydı yönet"
490
+
491
+ msgid "Manage user"
492
+ msgstr "Kullanıcıyı yönet"
493
+
494
+ msgid "Remove branding"
495
+ msgstr "Markalamayı kaldır"
496
+
497
+ msgid "{{communityTitle}} is a default branding for this record"
498
+ msgstr "{{communityTitle}} bu kayıt için varsayılan bir markalamadır"
499
+
500
+ msgid ""
501
+ "Remove this community from appearing on top of the record details page."
502
+ msgstr ""
503
+ "Bu topluluğun kayıt ayrıntıları sayfasının en üstünde görünmesini "
504
+ "engelleyin."
505
+
506
+ msgid "Set branding"
507
+ msgstr "Markalamayı ayarla"
508
+
509
+ msgid "Set {{communityTitle}} as a default branding for this record"
59
510
  msgstr ""
511
+ "Bu kayıt için varsayılan markalama olarak {{communityTitle}}'ı ayarlayın"
60
512
 
61
- msgid "Citation"
62
- msgstr "Alıntı"
513
+ msgid "Set this community to appear on the top of the record details page."
514
+ msgstr ""
515
+ "Bu topluluğu, kayıt ayrıntıları sayfasının en üstünde görünecek şekilde "
516
+ "ayarlayın."
517
+
518
+ msgid "Pending communities"
519
+ msgstr "Bekleyen topluluklar"
520
+
521
+ msgid "Search for pending submissions to communities..."
522
+ msgstr "Topluluklara iletilmiş beklemede kalan gönderileri arayın..."
523
+
524
+ msgid "An error occurred while generating the citation."
525
+ msgstr "Referans oluşturulurken bir hata oluştu."
63
526
 
64
527
  msgid "Style"
65
528
  msgstr "Stil"
66
529
 
67
- msgid "Version"
68
- msgstr "Sürüm"
530
+ msgid "This record is not included in any communities yet."
531
+ msgstr "Bu kayıt henüz hiçbir topluluğa dahil edilmedi."
532
+
533
+ msgid "Search for community..."
534
+ msgstr "Topluluk arayın..."
535
+
536
+ msgid "Record submitted"
537
+ msgstr "Kayıt gönderildi"
538
+
539
+ msgid "Review requested"
540
+ msgstr "İnceleme talep edildi"
541
+
542
+ msgid "Search in all communities"
543
+ msgstr "Tüm topluluklarda ara"
544
+
545
+ msgid "Search in my communities"
546
+ msgstr "Benim topluluklarımda ara"
547
+
548
+ msgid "Select a community"
549
+ msgstr "Bir topluluk seçin"
550
+
551
+ msgid "Version {{- version}}"
552
+ msgstr "Sürüm {{- version}}"
69
553
 
70
554
  msgid "Preview"
71
555
  msgstr "Gözden geçir"
@@ -73,209 +557,396 @@ msgstr "Gözden geçir"
73
557
  msgid "Only published versions are displayed."
74
558
  msgstr "Yalnızca yayınlanmış sürümler görüntüleniyor."
75
559
 
76
- msgid "View all {{total}} versions"
77
- msgstr "Tüm {{total}} sürümü görüntüleyin"
560
+ msgid "An error occurred while fetching the versions."
561
+ msgstr "Sürümler getirilirken bir hata oluştu."
78
562
 
79
- msgid "You don't have permissions to share this record."
80
- msgstr "Bu kaydı paylaşma izniniz yok."
81
-
82
- msgid "Share"
83
- msgstr "Paylaş"
563
+ msgid "View all {{count}} versions"
564
+ msgid_plural "View all {{count}} versions"
565
+ msgstr[0] "Tüm {{count}} sürümü görüntüle"
566
+ msgstr[1] "Tüm {{count}} sürümü görüntüle"
84
567
 
85
- msgid "Can view"
86
- msgstr "Görüntüleyebilir"
568
+ msgid ""
569
+ "<0><0>Cite all versions?</0> You can cite all versions by using the DOI "
570
+ "<3></3>. This DOI represents all versions, and will always resolve to the "
571
+ "latest one. <5>Read more</5>.</0>"
572
+ msgstr ""
573
+ "<0><0>Tüm sürümleri alıntıla?</0> DOI kullanarak tüm sürümleri "
574
+ "alıntılayabilirsiniz. <3></3>. Bu DOI, tüm sürümleri temsil eder ve her "
575
+ "zaman en son sürüme çözümlenir. <5>Daha fazlasını okuyun.</5>.</0>"
87
576
 
88
- msgid "Can preview"
89
- msgstr "Önizleme yapabilir"
577
+ msgid ""
578
+ "<0><0>Cite all versions?</0> You can cite all versions by using the DOI . "
579
+ "The DOI is registered when the first version is published. <4>Read "
580
+ "more</4>.</0>"
581
+ msgstr ""
582
+ "<0><0>Tüm sürümleri alıntıla?</0> DOI kullanarak tüm versiyonları "
583
+ "alıntılayabilirsiniz. DOI, ilk versiyon yayınlandığında kaydedilir. Dah "
584
+ "fazlasını okuyun</4>.</0>"
90
585
 
91
- msgid "Can edit"
92
- msgstr "Düzenleyebilir"
586
+ msgid "Remove"
587
+ msgstr "Kaldır"
93
588
 
94
- msgid "Get a link"
95
- msgstr "Bağlantı al"
589
+ msgid "Remove {{communityTitle}} from this record"
590
+ msgstr "{{communityTitle}} topluluk başlığını bu kayıttan kaldır"
96
591
 
97
- msgid "Copy link"
98
- msgstr "Bağlantıyı kopyala"
592
+ msgid "Remove community"
593
+ msgstr "Topluluğu kaldır"
99
594
 
100
- msgid "Delete link"
101
- msgstr "Bağlantıyı sil"
595
+ msgid "Are you sure you want to remove the record from the community?"
596
+ msgstr "Kaydı topluluktan kaldırmak istediğinizden emin misiniz?"
102
597
 
103
- msgid "Done"
104
- msgstr "Tamamlandı"
598
+ msgid "I understand the consequences:"
599
+ msgstr "Sonuçlarını anlıyorum:"
105
600
 
106
601
  msgid ""
107
- "Anyone with this link <1>can view all versions</1> of this record & files."
602
+ "The record can only be re-included in the community by going through a new "
603
+ "review by the community curators."
108
604
  msgstr ""
109
- "Bu bağlantı ile herkes bu kaydın ve dosyaların <1>tüm sürümlerini "
110
- "görüntüleyebilir</1>"
605
+ "Kaydın, topluluğa yeniden dahil edilebilmesi ancak topluluk küratörleri "
606
+ "tarafından yeniden incelenmesiyle mümkündür."
607
+
608
+ msgid "Something went wrong"
609
+ msgstr "Bir şeyler ters gitti"
610
+
611
+ msgid "Cancel removal"
612
+ msgstr "Kaldırmayı iptal et"
613
+
614
+ msgid "Cancel"
615
+ msgstr "İptal"
616
+
617
+ msgid "Confirm removal"
618
+ msgstr "Kaldırmayı onayla"
111
619
 
112
620
  msgid ""
113
- "Anyone with this link <2>can view all published and unpublished versions</2>"
114
- " of this record & files."
621
+ "Members of the community <1>\"<1>{{communityTitle}}</1>\"</1> will <4>lose "
622
+ "their access</4> to the record."
115
623
  msgstr ""
116
- "Bu bağlantıya sahip olan herkes, bu kaydın ve dosyaların <2>yayınlanmış ve "
117
- "yayınlanmamış tüm sürümlerini görüntüleyebilir</2>."
624
+ " <1>\"<1>{{communityTitle}}</1>\"</1> topluluğunun üyeleri kayda <4>erişim "
625
+ "yetkilerini kaybedecek</4>."
118
626
 
119
- msgid "Uploaded on"
120
- msgstr "Yüklenme tarihi"
627
+ msgid "Select permissions"
628
+ msgstr "İzinleri seçin"
121
629
 
122
- msgid "Search"
123
- msgstr "Ara"
630
+ msgid "Short name for your link (optional)."
631
+ msgstr "Bağlantınız için kısa adlandırma (isteğe bağlı)."
124
632
 
125
- msgid "Search guide"
126
- msgstr "Arama kılavuzu"
633
+ msgid "Expiration date format: YYYY-MM-DD"
634
+ msgstr "Son kullanma tarihi biçimi: YYYY-AA-GG"
127
635
 
128
- msgid "result(s) found"
129
- msgstr "sonuç(lar) bulundu"
636
+ msgid "Expiration date: YYYY-MM-DD or never if blank (optional)."
637
+ msgstr ""
638
+ "Son kullanma tarihi: YYYY-AA-GG veya boşsa hiçbir zaman (isteğe bağlı)."
130
639
 
131
- msgid "Sort by"
132
- msgstr "Sırala"
640
+ msgid "Create a new link"
641
+ msgstr "Yeni bir bağlantı oluştur"
133
642
 
134
- msgid "View"
135
- msgstr "Görüntüle"
643
+ msgid "Link title"
644
+ msgstr "Bağlantı başlığı"
136
645
 
137
- msgid "New community"
138
- msgstr "Yeni topluluk"
646
+ msgid "Expires at"
647
+ msgstr ""
139
648
 
140
- msgid "Get started!"
141
- msgstr "Başlayalım!"
649
+ msgid "Never"
650
+ msgstr "Hiçbir zaman"
142
651
 
143
- msgid "Open"
144
- msgstr "Açık"
652
+ msgid "Access"
653
+ msgstr "Erişim"
145
654
 
146
- msgid "Closed"
147
- msgstr "Kapalı"
655
+ msgid "Delete"
656
+ msgstr "Sil"
148
657
 
149
- msgid "All done!"
150
- msgstr ""
658
+ msgid "Copy link"
659
+ msgstr "Bağlantıyı kopyala"
151
660
 
152
- msgid "You've caught up with all open requests."
153
- msgstr ""
661
+ msgid "Can view"
662
+ msgstr "Görüntüleyebilir"
154
663
 
155
- msgid "No creation date found."
156
- msgstr ""
664
+ msgid "Can view restricted files of all versions of this record."
665
+ msgstr "Bu kaydın tüm sürümlerinin kısıtlanmış dosyalarını görüntüleyebilir."
157
666
 
158
- msgid "No description"
667
+ msgid "Can preview drafts"
668
+ msgstr "Taslakları önizleyebilir"
669
+
670
+ msgid "Can view drafts and restricted files of all versions of this record."
159
671
  msgstr ""
672
+ "Bu kaydın tüm sürümlerinin taslaklarını ve kısıtlanmış dosyalarını "
673
+ "görüntüleyebilir."
160
674
 
161
- msgid "No publication date found."
675
+ msgid "Can edit"
676
+ msgstr "Düzenleyebilir"
677
+
678
+ msgid ""
679
+ "Can edit drafts and view restricted files of all versions of this record."
162
680
  msgstr ""
681
+ "Bu kaydın tüm sürümlerinin taslaklarını düzenleyebilir ve kısıtlanmış "
682
+ "dosyalarını görüntüleyebilir."
163
683
 
164
- msgid "No resource type"
684
+ msgid ""
685
+ "Can view (view access link can be created only after the record is "
686
+ "published)"
165
687
  msgstr ""
688
+ "Görüntüleyebilir (görüntüleme erişim bağlantısı yalnızca kayıt "
689
+ "yayınlandıktan sonra oluşturulabilir)"
166
690
 
167
- msgid "No title"
168
- msgstr "Başlık yok"
691
+ msgid "Expires"
692
+ msgstr "Süresi dolar"
169
693
 
170
- msgid "Make your first upload!"
171
- msgstr "İlk yüklemenizi yapın!"
694
+ msgid "This record has no links generated yet."
695
+ msgstr "Bu kayıt için henüz hiçbir bağlantı oluşturulmadı."
172
696
 
173
- msgid "New upload"
174
- msgstr "Yeni Yükleme"
697
+ msgid "Unable to change the access request settings."
698
+ msgstr "Erişim yetkisi talebi ayarları değiştirilemiyor."
175
699
 
176
- msgid "ORCID profile"
700
+ msgid "Allow authenticated users to request access to restricted files."
177
701
  msgstr ""
702
+ "Kimliği doğrulanmış kullanıcıların kısıtlı dosyalara erişim yetkisi "
703
+ "talebinde bulunmasına izin verin."
178
704
 
179
- msgid "ROR profile"
705
+ msgid "Allow non-authenticated users to request access to restricted files."
180
706
  msgstr ""
707
+ "Kimliği doğrulanmamış kullanıcıların kısıtlı dosyalara erişim yetkisi "
708
+ "talebinde bulunmasına izin verin."
181
709
 
182
- msgid "GND profile"
183
- msgstr ""
710
+ msgid "Accept conditions"
711
+ msgstr "Şartları kabul edin"
184
712
 
185
- msgid "No communities found!"
186
- msgstr ""
713
+ msgid "Advanced options"
714
+ msgstr "Gelişmiş seçenekler"
187
715
 
188
- msgid "No requests found!"
189
- msgstr ""
716
+ msgid "Save"
717
+ msgstr "Kaydet"
190
718
 
191
- msgid "Copied"
192
- msgstr ""
719
+ msgid "No user has access to this record yet."
720
+ msgstr "Bu kayda henüz hiçbir kullanıcının erişim yetkisi yok."
721
+
722
+ msgid "People with access"
723
+ msgstr "Erişim yetkisi olan kişiler"
724
+
725
+ msgid "No group has access to this record yet."
726
+ msgstr "Bu kayda henüz hiçbir grubun erişim yetkisi yok."
727
+
728
+ msgid "Groups with access"
729
+ msgstr "Erişim yetkisi olan gruplar"
730
+
731
+ msgid "You"
732
+ msgstr "Siz"
193
733
 
194
- msgid "Reset search"
734
+ msgid "Add people"
735
+ msgstr "Kişileri ekle"
736
+
737
+ msgid "No selected users"
738
+ msgstr "Hiçbir kullanıcı seçilmedi"
739
+
740
+ msgid ""
741
+ "Search for users to grant access (only users with a public profile can be "
742
+ "invited)"
195
743
  msgstr ""
744
+ "Erişim yetkisi vermek için kullanıcıları arayın (yalnızca profili herkese "
745
+ "açık kullanıcılar davet edilebilir)"
746
+
747
+ msgid "Search by email, full name or username"
748
+ msgstr "E-posta, tam ad veya kullanıcı adı ile arama yapın"
749
+
750
+ msgid "users"
751
+ msgstr "kullanıcılar"
196
752
 
197
- msgid "We couldn't find any matches for "
753
+ msgid "Add groups"
754
+ msgstr "Grupları ekle"
755
+
756
+ msgid "Group"
757
+ msgstr "Grup"
758
+
759
+ msgid "No selected groups"
760
+ msgstr "Hiçbir grup seçilmedi"
761
+
762
+ msgid "Search for groups"
763
+ msgstr "Grupları ara"
764
+
765
+ msgid "groups"
766
+ msgstr "gruplar"
767
+
768
+ msgid "Add"
769
+ msgstr "Ekle"
770
+
771
+ msgid "Notify people"
772
+ msgstr "Bildirim gönder"
773
+
774
+ msgid "Notification message"
775
+ msgstr "Bildirim mesajı"
776
+
777
+ msgid "You are about to add"
778
+ msgstr "Şu grubu/grupları eklemek üzeresiniz:"
779
+
780
+ msgid "Access already granted"
781
+ msgstr "Erişim yetkisi zaten verilmiş"
782
+
783
+ msgid "Can manage"
784
+ msgstr "Yönetebilir"
785
+
786
+ msgid ""
787
+ "Can manage access, edit drafts and view restricted files of all versions of "
788
+ "this record."
198
789
  msgstr ""
790
+ "Bu kaydın tüm sürümlerine erişim yetkisini ayarlayabilir, taslakları "
791
+ "düzenleyebilir ve kısıtlı dosyaları görüntüleyebilir."
792
+
793
+ msgid "You don't have permissions to share this record."
794
+ msgstr "Bu kaydı paylaşma izniniz yok."
795
+
796
+ msgid "Share"
797
+ msgstr "Paylaş"
798
+
799
+ msgid "People"
800
+ msgstr "Kişiler"
801
+
802
+ msgid "Groups"
803
+ msgstr "Gruplar"
804
+
805
+ msgid "Settings"
806
+ msgstr "Ayarlar"
807
+
808
+ msgid "Share access"
809
+ msgstr "Erişim yetkisini paylaşın"
199
810
 
200
- msgid "your search"
811
+ msgid "Link expiration"
812
+ msgstr "Bağlantının son kullanma tarihi"
813
+
814
+ msgid "In 1 month"
815
+ msgstr "1 ay sonra"
816
+
817
+ msgid "In 2 months"
818
+ msgstr "2 ay sonra"
819
+
820
+ msgid "In 6 months"
821
+ msgstr "6 ay sonra"
822
+
823
+ msgid "In 1 year"
824
+ msgstr "1 yıl sonra"
825
+
826
+ msgid "Invalid date format."
827
+ msgstr "Geçersiz tarih biçimi."
828
+
829
+ msgid "Access link expiration date cannot be in the past."
830
+ msgstr "Erişim bağlantısının son kullanma tarihi geçmişte olamaz."
831
+
832
+ msgid "Access request"
833
+ msgstr "Erişim yetkisi talebi"
834
+
835
+ msgid "Unable to change the expiration request settings."
836
+ msgstr "Son kullanma tarihi isteği ayarları değiştirilemiyor."
837
+
838
+ msgid "Expiration date: "
839
+ msgstr "Son kullanma tarihi:"
840
+
841
+ msgid ""
842
+ "Format: YYYY-MM-DD. Granted access will expire on the given date. Leave "
843
+ "empty to set no expiration limit."
201
844
  msgstr ""
845
+ "Biçim: YYYY-AA-GG. Verilen erişim yetkisinin süresi belirtilen tarihte "
846
+ "dolacaktır. Son kullanma tarihi koymamak için boş bırakın."
847
+
848
+ msgid "Link expiration date:"
849
+ msgstr "Bağlantının son kullanma tarihi:"
850
+
851
+ msgid "We couldn't find any matches for {{- search}}"
852
+ msgstr "{{- search}} için herhangi bir eşleşme bulamadık"
202
853
 
203
854
  msgid "Start over"
204
- msgstr ""
855
+ msgstr "Baştan başla"
205
856
 
206
857
  msgid "ProTip"
207
- msgstr ""
858
+ msgstr "Faydalı tavsiye"
208
859
 
209
- msgid "For more tips, check out our "
210
- msgstr ""
860
+ msgid "Search guide"
861
+ msgstr "Arama kılavuzu"
211
862
 
212
- msgid "search guide"
863
+ msgid ""
864
+ "<0>For more tips, check out our <2>search guide</2> for defining advanced "
865
+ "search queries.</0>"
213
866
  msgstr ""
867
+ "<0>Daha fazla tavsiye için gelişmiş arama sorgularını tanımlamaya yönelik "
868
+ "<2>arama kılavuzumuza</2></0> göz atın."
214
869
 
215
- msgid "Export"
216
- msgstr "Dışa Aktar"
870
+ msgid "Search in my communities..."
871
+ msgstr "Topluluklarımda ara..."
217
872
 
218
- msgid "Filter results"
219
- msgstr ""
873
+ msgid "View"
874
+ msgstr "Görüntüle"
875
+
876
+ msgid "Published in: {{publishedIn}}"
877
+ msgstr "Yayınlandı: {{published In}}"
220
878
 
221
879
  msgid "In review"
222
- msgstr ""
880
+ msgstr "İnceleme aşamasında"
223
881
 
224
882
  msgid "Declined"
225
- msgstr ""
883
+ msgstr "Reddedildi"
226
884
 
227
885
  msgid "Expired"
228
- msgstr ""
886
+ msgstr "Süresi doldu"
229
887
 
230
888
  msgid "Draft"
231
- msgstr ""
889
+ msgstr "Taslak"
232
890
 
233
891
  msgid "New version draft"
234
- msgstr ""
892
+ msgstr "Yeni sürüm taslağı"
235
893
 
236
- msgid "Download file"
237
- msgstr ""
894
+ msgid "open"
895
+ msgstr "açık"
238
896
 
239
- msgid "No link has been created. Click on 'Get a Link' to make a new link."
240
- msgstr ""
897
+ msgid "Open"
898
+ msgstr "Açık"
241
899
 
242
- msgid ""
243
- "Anyone with an account and this link <1>can edit all versions</1> of this "
244
- "record & files."
245
- msgstr ""
900
+ msgid "unlock"
901
+ msgstr "kilidini kaldır"
246
902
 
247
- msgid "Search records..."
248
- msgstr ""
903
+ msgid "Get started!"
904
+ msgstr "Başlayalım!"
249
905
 
250
- msgid "will give you all the publications from 2017 until today."
251
- msgstr ""
906
+ msgid "Make your first upload!"
907
+ msgstr "İlk yüklemenizi yapın!"
252
908
 
253
- msgid " for defining advanced search queries."
254
- msgstr ""
909
+ msgid "New upload"
910
+ msgstr "Yeni Yükleme"
255
911
 
256
- msgid "Public"
257
- msgstr "Herkese açık"
912
+ msgid "Search in my uploads..."
913
+ msgstr "Karşıya yüklemelerimde ara…"
258
914
 
259
- msgid "Restricted"
260
- msgstr "Kısıtlı"
915
+ msgid "ORCID profile"
916
+ msgstr "ORCID profili"
261
917
 
262
- msgid "Search in my communities..."
918
+ msgid "ORCID logo"
263
919
  msgstr ""
264
920
 
265
- msgid "Opened {{difference}} by"
266
- msgstr ""
921
+ msgid "ROR profile"
922
+ msgstr "ROR profili"
267
923
 
268
- msgid "Search in my requests..."
924
+ msgid "ROR logo"
269
925
  msgstr ""
270
926
 
271
- msgid "Actions"
272
- msgstr "Eylemler"
927
+ msgid "GND profile"
928
+ msgstr "GND profili"
273
929
 
274
- msgid "open"
930
+ msgid "GND logo"
275
931
  msgstr ""
276
932
 
277
- msgid "unlock"
933
+ msgid "No name"
278
934
  msgstr ""
279
935
 
280
- msgid "Search in my uploads..."
936
+ msgid "and {{count}} other"
937
+ msgid_plural "and {{count}} other"
938
+ msgstr[0] ""
939
+ msgstr[1] ""
940
+
941
+ msgid "and {{count}} others"
942
+ msgid_plural "and {{count}} others"
943
+ msgstr[0] ""
944
+ msgstr[1] ""
945
+
946
+ msgctxt ""
947
+ "date:[2017-01-01 TO *]</0> will give you all the publications from 2017 "
948
+ "until today.</0>"
949
+ msgid "<0><0>metadata.publication"
281
950
  msgstr ""
951
+ "<0><0>metadata.publication_date:[2017-01-01 TO *]</0> size 2017'den bugüne "
952
+ "kadar olan tüm yayınları verecektir.</0>"