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.
- invenio_app_rdm/__init__.py +1 -1
- invenio_app_rdm/administration/moderation/__init__.py +11 -0
- invenio_app_rdm/administration/moderation/requests.py +175 -0
- invenio_app_rdm/administration/records/records.py +9 -7
- invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/requests.html +14 -0
- invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/requests_details.html +91 -0
- invenio_app_rdm/administration/user_moderation/user_moderation.py +4 -4
- invenio_app_rdm/administration/users/users.py +0 -5
- invenio_app_rdm/communities_ui/views/communities.py +9 -5
- invenio_app_rdm/config.py +73 -4
- invenio_app_rdm/ext.py +2 -2
- invenio_app_rdm/fixtures/pages.py +5 -2
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html +11 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html +2 -5
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/citation.html +2 -2
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html +2 -2
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/communities.html +8 -7
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/external_resources.html +5 -6
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html +9 -13
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/manage_menu.html +8 -5
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html +2 -4
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html +1 -1
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html +7 -5
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html +21 -4
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html +6 -1
- invenio_app_rdm/records_ui/utils.py +93 -1
- invenio_app_rdm/records_ui/views/decorators.py +24 -14
- invenio_app_rdm/records_ui/views/deposits.py +100 -27
- invenio_app_rdm/records_ui/views/filters.py +11 -4
- invenio_app_rdm/records_ui/views/records.py +23 -13
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/file-modification/index.html +88 -0
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/guest-access-request/index.html +5 -5
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/record-deletion/index.html +95 -0
- invenio_app_rdm/requests_ui/views/requests.py +54 -87
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/ViewRecentChanges.js +8 -8
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/ImpersonateUserForm.js +12 -17
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/RevisionsDiffViewer.js +14 -16
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/SetQuotaAction.js +1 -1
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/api/routes.js +1 -2
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/RequestsSearchResultItem.js +81 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/RequestsSearchbarLayout.js +48 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/index.js +22 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/CommunityRecordsSearchAppLayout.js +3 -4
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/CopyButton.js +38 -19
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/FileModificationUntil.js +45 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion/DeletionModal.js +354 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion/DeletionRadioGroup.js +44 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion.js +81 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/RDMDepositForm.js +55 -5
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/index.js +4 -1
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/CommunitiesManagement.js +2 -2
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ExportDropdown.js +7 -2
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ManageButton.js +52 -19
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCitationField.js +15 -14
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/RecordCommunitiesListModal.js +4 -4
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitySubmission/RecordCommunitySubmissionModal.js +1 -1
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordManagement.js +17 -3
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordVersionsList.js +16 -17
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RemoveFromCommunity/RemoveFromCommunityAction.js +5 -5
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/index.js +42 -40
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/theme.js +9 -5
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/AccessRequestTimelineEdit.js +5 -5
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/AccessRequestTimelineRead.js +2 -2
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/search/components.js +14 -19
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/theme.js +9 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/file_uploader/uppy.less +37 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/landing_page/licenses.less +5 -3
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/site.overrides +6 -1
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/accordion.overrides +10 -1
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/search.overrides +7 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/search.variables +0 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/i18next.js +1 -1
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/_generatedTranslations.js +66 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ar/messages.po +804 -137
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ar/translations.json +277 -249
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/bg/messages.po +689 -70
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/bg/translations.json +102 -82
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ca/messages.po +699 -80
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ca/translations.json +112 -92
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/cs/messages.po +821 -138
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/cs/translations.json +290 -262
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/da/messages.po +691 -66
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/da/translations.json +91 -71
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/de/messages.po +818 -138
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/de/translations.json +260 -240
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/el/messages.po +698 -78
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/el/translations.json +108 -88
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/en/messages.po +1000 -5
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/en/translations.json +81 -28
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/es/messages.po +810 -137
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/es/translations.json +253 -233
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et/messages.po +746 -133
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et/translations.json +130 -110
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fa/messages.po +688 -69
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fa/translations.json +103 -79
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fr/messages.po +809 -126
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fr/translations.json +277 -257
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hr/messages.po +695 -70
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hr/translations.json +101 -79
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hu/messages.po +801 -135
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hu/translations.json +254 -234
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/index.js +16 -65
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/it/messages.po +712 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/it/translations.json +116 -96
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ja/messages.po +683 -70
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ja/translations.json +96 -78
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ka/messages.po +689 -70
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ka/translations.json +109 -85
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ko/messages.po +889 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ko/translations.json +277 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/lt/messages.po +702 -71
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/lt/translations.json +113 -85
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/no/messages.po +689 -70
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/no/translations.json +102 -82
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pl/messages.po +704 -70
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pl/translations.json +119 -91
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pt/messages.po +694 -69
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pt/translations.json +93 -73
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ro/messages.po +717 -85
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ro/translations.json +155 -133
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ru/messages.po +806 -124
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ru/translations.json +288 -260
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sk/messages.po +713 -82
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sk/translations.json +119 -91
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sv/messages.po +807 -141
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sv/translations.json +260 -240
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/tr/messages.po +799 -128
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/tr/translations.json +259 -239
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/uk/messages.po +756 -131
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/uk/translations.json +124 -96
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_CN/messages.po +736 -123
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_CN/translations.json +130 -108
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_TW/messages.po +683 -70
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_TW/translations.json +100 -78
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/package.json +3 -37
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/translations.pot +243 -94
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.de.html +2 -2
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.en.html +4 -4
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.sv.html +4 -4
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html +7 -6
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/macros/records_list.html +2 -1
- invenio_app_rdm/theme/templates/semantic-ui/invenio_communities/default_static_page.html +26 -0
- invenio_app_rdm/theme/webpack.py +3 -2
- invenio_app_rdm/translations/ar/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ar/LC_MESSAGES/messages.po +972 -376
- invenio_app_rdm/translations/bg/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/bg/LC_MESSAGES/messages.po +907 -278
- invenio_app_rdm/translations/ca/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ca/LC_MESSAGES/messages.po +912 -283
- invenio_app_rdm/translations/cs/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/cs/LC_MESSAGES/messages.po +1069 -405
- invenio_app_rdm/translations/da/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/da/LC_MESSAGES/messages.po +908 -273
- invenio_app_rdm/translations/de/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/de/LC_MESSAGES/messages.po +1017 -406
- invenio_app_rdm/translations/el/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/el/LC_MESSAGES/messages.po +915 -286
- invenio_app_rdm/translations/es/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/es/LC_MESSAGES/messages.po +963 -371
- invenio_app_rdm/translations/et/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/et/LC_MESSAGES/messages.po +938 -362
- invenio_app_rdm/translations/fa/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/fa/LC_MESSAGES/messages.po +906 -277
- invenio_app_rdm/translations/fr/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/fr/LC_MESSAGES/messages.po +1032 -375
- invenio_app_rdm/translations/hr/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/hr/LC_MESSAGES/messages.po +907 -278
- invenio_app_rdm/translations/hu/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/hu/LC_MESSAGES/messages.po +985 -369
- invenio_app_rdm/translations/it/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/it/LC_MESSAGES/messages.po +928 -298
- invenio_app_rdm/translations/ja/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ja/LC_MESSAGES/messages.po +907 -278
- invenio_app_rdm/translations/ka/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ka/LC_MESSAGES/messages.po +909 -280
- invenio_app_rdm/translations/ko/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ko/LC_MESSAGES/messages.po +1361 -0
- invenio_app_rdm/translations/lt/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/lt/LC_MESSAGES/messages.po +910 -281
- invenio_app_rdm/translations/messages.pot +486 -303
- invenio_app_rdm/translations/no/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/no/LC_MESSAGES/messages.po +907 -278
- invenio_app_rdm/translations/pl/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/pl/LC_MESSAGES/messages.po +907 -278
- invenio_app_rdm/translations/pt/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/pt/LC_MESSAGES/messages.po +906 -277
- invenio_app_rdm/translations/ro/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ro/LC_MESSAGES/messages.po +1042 -384
- invenio_app_rdm/translations/ru/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ru/LC_MESSAGES/messages.po +1022 -370
- invenio_app_rdm/translations/sk/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/sk/LC_MESSAGES/messages.po +916 -287
- invenio_app_rdm/translations/sv/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/sv/LC_MESSAGES/messages.po +989 -380
- invenio_app_rdm/translations/tr/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/tr/LC_MESSAGES/messages.po +992 -341
- invenio_app_rdm/translations/uk/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/uk/LC_MESSAGES/messages.po +935 -356
- invenio_app_rdm/translations/zh_CN/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/zh_CN/LC_MESSAGES/messages.po +939 -347
- invenio_app_rdm/translations/zh_TW/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/zh_TW/LC_MESSAGES/messages.po +907 -278
- invenio_app_rdm/upgrade_scripts/migrate_12_0_to_13_0.py +190 -62
- {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/METADATA +118 -7
- {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/RECORD +209 -225
- {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/entry_points.txt +2 -0
- {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/top_level.txt +0 -1
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/i18next-scanner.config.js +0 -64
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/package-lock.json +0 -1512
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/scripts/compileCatalog.js +0 -40
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/scripts/initCatalog.js +0 -20
- tests/__init__.py +0 -8
- tests/api/__init__.py +0 -8
- tests/api/conftest.py +0 -24
- tests/api/test_protect_files_rest.py +0 -73
- tests/api/test_record_api.py +0 -175
- tests/api/test_stats_api.py +0 -26
- tests/conftest.py +0 -390
- tests/fixtures/__init__.py +0 -8
- tests/fixtures/app_data/oai_sets.yaml +0 -3
- tests/fixtures/app_data/pages/about.html +0 -1
- tests/fixtures/app_data/pages.yaml +0 -4
- tests/fixtures/conftest.py +0 -27
- tests/fixtures/test_cli.py +0 -25
- tests/fixtures/test_fixtures.py +0 -46
- tests/mock_module/__init__.py +0 -7
- tests/mock_module/templates/mock_mail.html +0 -27
- tests/mock_module/views.py +0 -32
- tests/redirector/__init__.py +0 -8
- tests/redirector/conftest.py +0 -54
- tests/redirector/test_redirector.py +0 -28
- tests/test_tasks.py +0 -209
- tests/test_utils.py +0 -67
- tests/test_version.py +0 -16
- tests/test_views.py +0 -43
- tests/ui/__init__.py +0 -8
- tests/ui/conftest.py +0 -115
- tests/ui/test_deposits.py +0 -115
- tests/ui/test_export_formats.py +0 -37
- tests/ui/test_file_download.py +0 -73
- tests/ui/test_filters.py +0 -10
- tests/ui/test_robotstxt.py +0 -35
- tests/ui/test_signposting_ui.py +0 -95
- tests/ui/test_sitemaps.py +0 -85
- tests/ui/test_stats_ui.py +0 -92
- {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/WHEEL +0 -0
- {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/licenses/LICENSE +0 -0
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pl/messages.po
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
#
|
|
2
2
|
# Translators:
|
|
3
|
-
# Tibor Simko <tibor.simko@cern.ch>,
|
|
3
|
+
# Tibor Simko <tibor.simko@cern.ch>, 2024
|
|
4
|
+
# Karolina, 2024
|
|
4
5
|
#
|
|
5
6
|
msgid ""
|
|
6
7
|
msgstr ""
|
|
7
8
|
"Project-Id-Version: i18next-conv\n"
|
|
8
|
-
"POT-Creation-Date:
|
|
9
|
+
"POT-Creation-Date: 2025-03-27T16:30:16.192Z\n"
|
|
9
10
|
"PO-Revision-Date: 2021-07-14 16:07+0000\n"
|
|
10
|
-
"Last-Translator:
|
|
11
|
+
"Last-Translator: Karolina, 2024\n"
|
|
11
12
|
"Language-Team: Polish (https://app.transifex.com/inveniosoftware/teams/23537/pl/)\n"
|
|
12
13
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
13
14
|
"Content-Transfer-Encoding: 8bit\n"
|
|
@@ -16,6 +17,303 @@ msgstr ""
|
|
|
16
17
|
"mime-version: 1.0\n"
|
|
17
18
|
|
|
18
19
|
msgid "Basic information"
|
|
20
|
+
msgstr "Informacje podstawowe"
|
|
21
|
+
|
|
22
|
+
msgid "Impersonate user"
|
|
23
|
+
msgstr "Upozoruj tożsamość użytkownika"
|
|
24
|
+
|
|
25
|
+
msgid "Impersonate"
|
|
26
|
+
msgstr ""
|
|
27
|
+
|
|
28
|
+
msgid "You must accept this."
|
|
29
|
+
msgstr "Jesteś zobowiązany to zaakceptować."
|
|
30
|
+
|
|
31
|
+
msgid "Success"
|
|
32
|
+
msgstr "Zakończono pomyślnie"
|
|
33
|
+
|
|
34
|
+
msgid ""
|
|
35
|
+
"User impersonated succesfully! You will be redirected in frontpage soon."
|
|
36
|
+
msgstr ""
|
|
37
|
+
"Pomyślnie upozorowano tożsamość użytkownika. Zostaniesz niedługo "
|
|
38
|
+
"przekierowany do strony głównej."
|
|
39
|
+
|
|
40
|
+
msgid "Unable to impersonate user."
|
|
41
|
+
msgstr "Upozorowanie tożsamości użytkownika jest niemożliwe."
|
|
42
|
+
|
|
43
|
+
msgid ""
|
|
44
|
+
"Please read carefully and confirm the following statements before you "
|
|
45
|
+
"proceed."
|
|
46
|
+
msgstr ""
|
|
47
|
+
|
|
48
|
+
msgid "You are about to impersonate user <bold>{{email}}(id: {{id}})</bold>."
|
|
49
|
+
msgstr ""
|
|
50
|
+
|
|
51
|
+
msgid "You <bold>MUST</bold> logout after completing your inquiry."
|
|
52
|
+
msgstr ""
|
|
53
|
+
|
|
54
|
+
msgid "Close"
|
|
55
|
+
msgstr ""
|
|
56
|
+
|
|
57
|
+
msgid "Set Quota"
|
|
58
|
+
msgstr ""
|
|
59
|
+
|
|
60
|
+
msgid "Set quota in bytes"
|
|
61
|
+
msgstr ""
|
|
62
|
+
|
|
63
|
+
msgid "Note"
|
|
64
|
+
msgstr "Notatka"
|
|
65
|
+
|
|
66
|
+
msgid ""
|
|
67
|
+
"This is the default quota that will be applied to any NEW records created by"
|
|
68
|
+
" this user – it will NOT update quota of existing records."
|
|
69
|
+
msgstr ""
|
|
70
|
+
|
|
71
|
+
msgid "Quota of {{id}} was set to {{quota}} {{unit}}"
|
|
72
|
+
msgstr ""
|
|
73
|
+
|
|
74
|
+
msgid "Unable to set quota."
|
|
75
|
+
msgstr ""
|
|
76
|
+
|
|
77
|
+
msgid "Quota size ({{unit}})"
|
|
78
|
+
msgstr ""
|
|
79
|
+
|
|
80
|
+
msgid "Enter quota size..."
|
|
81
|
+
msgstr ""
|
|
82
|
+
|
|
83
|
+
msgid "Max file size ({{unit}})"
|
|
84
|
+
msgstr ""
|
|
85
|
+
|
|
86
|
+
msgid "Enter max file size..."
|
|
87
|
+
msgstr ""
|
|
88
|
+
|
|
89
|
+
msgid "Ticket 1234"
|
|
90
|
+
msgstr ""
|
|
91
|
+
|
|
92
|
+
msgid "Set quota"
|
|
93
|
+
msgstr ""
|
|
94
|
+
|
|
95
|
+
msgid "Domain"
|
|
96
|
+
msgstr ""
|
|
97
|
+
|
|
98
|
+
msgid "Flagged"
|
|
99
|
+
msgstr ""
|
|
100
|
+
|
|
101
|
+
msgid "Organization"
|
|
102
|
+
msgstr ""
|
|
103
|
+
|
|
104
|
+
msgid "Company"
|
|
105
|
+
msgstr ""
|
|
106
|
+
|
|
107
|
+
msgid "Mail provider"
|
|
108
|
+
msgstr ""
|
|
109
|
+
|
|
110
|
+
msgid "Spammer"
|
|
111
|
+
msgstr ""
|
|
112
|
+
|
|
113
|
+
msgid "TLD"
|
|
114
|
+
msgstr ""
|
|
115
|
+
|
|
116
|
+
msgid "Status"
|
|
117
|
+
msgstr "Status"
|
|
118
|
+
|
|
119
|
+
msgid "New"
|
|
120
|
+
msgstr ""
|
|
121
|
+
|
|
122
|
+
msgid "Moderated"
|
|
123
|
+
msgstr ""
|
|
124
|
+
|
|
125
|
+
msgid "Verified"
|
|
126
|
+
msgstr ""
|
|
127
|
+
|
|
128
|
+
msgid "Blocked"
|
|
129
|
+
msgstr ""
|
|
130
|
+
|
|
131
|
+
msgid "Users"
|
|
132
|
+
msgstr "Użytkownicy"
|
|
133
|
+
|
|
134
|
+
msgid "Active"
|
|
135
|
+
msgstr ""
|
|
136
|
+
|
|
137
|
+
msgid "Inactive"
|
|
138
|
+
msgstr ""
|
|
139
|
+
|
|
140
|
+
msgid "Confirmed"
|
|
141
|
+
msgstr ""
|
|
142
|
+
|
|
143
|
+
msgid "Links"
|
|
144
|
+
msgstr ""
|
|
145
|
+
|
|
146
|
+
msgid "Set quota for record {{recordId}}"
|
|
147
|
+
msgstr ""
|
|
148
|
+
|
|
149
|
+
msgid "Delete record"
|
|
150
|
+
msgstr ""
|
|
151
|
+
|
|
152
|
+
msgid "Restore record"
|
|
153
|
+
msgstr ""
|
|
154
|
+
|
|
155
|
+
msgid "Unavailability statement"
|
|
156
|
+
msgstr ""
|
|
157
|
+
|
|
158
|
+
msgid "Record {{id}} was restored."
|
|
159
|
+
msgstr ""
|
|
160
|
+
|
|
161
|
+
msgid "Unable to restore."
|
|
162
|
+
msgstr ""
|
|
163
|
+
|
|
164
|
+
msgid "Are you sure you want to restore #{{id}}"
|
|
165
|
+
msgstr ""
|
|
166
|
+
|
|
167
|
+
msgid "Published"
|
|
168
|
+
msgstr ""
|
|
169
|
+
|
|
170
|
+
msgid "Deleted"
|
|
171
|
+
msgstr "usunięty"
|
|
172
|
+
|
|
173
|
+
msgid "Scheduled for purge"
|
|
174
|
+
msgstr ""
|
|
175
|
+
|
|
176
|
+
msgid "Empty draft title"
|
|
177
|
+
msgstr ""
|
|
178
|
+
|
|
179
|
+
msgid "version"
|
|
180
|
+
msgstr "wersja"
|
|
181
|
+
|
|
182
|
+
msgid "Owner"
|
|
183
|
+
msgstr "Właściciel"
|
|
184
|
+
|
|
185
|
+
msgid "Created"
|
|
186
|
+
msgstr ""
|
|
187
|
+
|
|
188
|
+
msgid "Files"
|
|
189
|
+
msgstr ""
|
|
190
|
+
|
|
191
|
+
msgid "Stats"
|
|
192
|
+
msgstr ""
|
|
193
|
+
|
|
194
|
+
msgid "Record {{id}} was deleted."
|
|
195
|
+
msgstr ""
|
|
196
|
+
|
|
197
|
+
msgid "Unable to delete"
|
|
198
|
+
msgstr ""
|
|
199
|
+
|
|
200
|
+
msgid "Public"
|
|
201
|
+
msgstr ""
|
|
202
|
+
|
|
203
|
+
msgid "Hidden"
|
|
204
|
+
msgstr ""
|
|
205
|
+
|
|
206
|
+
msgid ""
|
|
207
|
+
"The tombstone is set to hidden but your record is public. Best practice is "
|
|
208
|
+
"to provide a public tombstone when deactivating public records."
|
|
209
|
+
msgstr ""
|
|
210
|
+
|
|
211
|
+
msgid ""
|
|
212
|
+
"RISK INFORMATION LEAKAGE: The tombstone is set to public but your record is "
|
|
213
|
+
"restricted. Please make sure no restricted information is shared in the "
|
|
214
|
+
"tombstone below."
|
|
215
|
+
msgstr ""
|
|
216
|
+
|
|
217
|
+
msgid "Bibliographic citation"
|
|
218
|
+
msgstr ""
|
|
219
|
+
|
|
220
|
+
msgid ""
|
|
221
|
+
"Input citation text. Blank field will be filled with APA citation by "
|
|
222
|
+
"default."
|
|
223
|
+
msgstr ""
|
|
224
|
+
|
|
225
|
+
msgid "Public note"
|
|
226
|
+
msgstr ""
|
|
227
|
+
|
|
228
|
+
msgid "User {{name}} was approved."
|
|
229
|
+
msgstr ""
|
|
230
|
+
|
|
231
|
+
msgid "User {{name}} is blocked."
|
|
232
|
+
msgstr ""
|
|
233
|
+
|
|
234
|
+
msgid "Error"
|
|
235
|
+
msgstr "Błąd"
|
|
236
|
+
|
|
237
|
+
msgid "User"
|
|
238
|
+
msgstr "Użytkownik"
|
|
239
|
+
|
|
240
|
+
msgid "Email"
|
|
241
|
+
msgstr "Email"
|
|
242
|
+
|
|
243
|
+
msgid "Email domain"
|
|
244
|
+
msgstr ""
|
|
245
|
+
|
|
246
|
+
msgid "Actions"
|
|
247
|
+
msgstr "Działania"
|
|
248
|
+
|
|
249
|
+
msgid "Records"
|
|
250
|
+
msgstr ""
|
|
251
|
+
|
|
252
|
+
msgid "Username"
|
|
253
|
+
msgstr "Nazwa użytkownika"
|
|
254
|
+
|
|
255
|
+
msgid "GitHub"
|
|
256
|
+
msgstr ""
|
|
257
|
+
|
|
258
|
+
msgid "Updated"
|
|
259
|
+
msgstr ""
|
|
260
|
+
|
|
261
|
+
msgid "Restore"
|
|
262
|
+
msgstr ""
|
|
263
|
+
|
|
264
|
+
msgid "Restored"
|
|
265
|
+
msgstr ""
|
|
266
|
+
|
|
267
|
+
msgid "Block"
|
|
268
|
+
msgstr ""
|
|
269
|
+
|
|
270
|
+
msgid "Suspend"
|
|
271
|
+
msgstr ""
|
|
272
|
+
|
|
273
|
+
msgid "Suspended"
|
|
274
|
+
msgstr ""
|
|
275
|
+
|
|
276
|
+
msgid "Approve"
|
|
277
|
+
msgstr "Zatwierdź"
|
|
278
|
+
|
|
279
|
+
msgid "Approved"
|
|
280
|
+
msgstr "Zatwierdzone"
|
|
281
|
+
|
|
282
|
+
msgid "Activate"
|
|
283
|
+
msgstr ""
|
|
284
|
+
|
|
285
|
+
msgid "Activated"
|
|
286
|
+
msgstr ""
|
|
287
|
+
|
|
288
|
+
msgid "Set default quota for {{email}}"
|
|
289
|
+
msgstr ""
|
|
290
|
+
|
|
291
|
+
msgid "Filter results"
|
|
292
|
+
msgstr ""
|
|
293
|
+
|
|
294
|
+
msgid "Search records in community..."
|
|
295
|
+
msgstr ""
|
|
296
|
+
|
|
297
|
+
msgid "Sort by"
|
|
298
|
+
msgstr ""
|
|
299
|
+
|
|
300
|
+
msgid " results found"
|
|
301
|
+
msgid_plural " results found"
|
|
302
|
+
msgstr[0] ""
|
|
303
|
+
msgstr[1] ""
|
|
304
|
+
msgstr[2] ""
|
|
305
|
+
msgstr[3] ""
|
|
306
|
+
|
|
307
|
+
msgid "Search records..."
|
|
308
|
+
msgstr ""
|
|
309
|
+
|
|
310
|
+
msgid "Search"
|
|
311
|
+
msgstr "Szukaj"
|
|
312
|
+
|
|
313
|
+
msgid "Views"
|
|
314
|
+
msgstr ""
|
|
315
|
+
|
|
316
|
+
msgid "Downloads"
|
|
19
317
|
msgstr ""
|
|
20
318
|
|
|
21
319
|
msgid "Copy to clipboard"
|
|
@@ -24,7 +322,38 @@ msgstr ""
|
|
|
24
322
|
msgid "Copied!"
|
|
25
323
|
msgstr ""
|
|
26
324
|
|
|
27
|
-
msgid "
|
|
325
|
+
msgid "Part of "
|
|
326
|
+
msgstr ""
|
|
327
|
+
|
|
328
|
+
msgid "No creation date found."
|
|
329
|
+
msgstr ""
|
|
330
|
+
|
|
331
|
+
msgid "No description"
|
|
332
|
+
msgstr ""
|
|
333
|
+
|
|
334
|
+
msgid "No publication date found."
|
|
335
|
+
msgstr ""
|
|
336
|
+
|
|
337
|
+
msgid "No resource type"
|
|
338
|
+
msgstr ""
|
|
339
|
+
|
|
340
|
+
msgid "No title"
|
|
341
|
+
msgstr ""
|
|
342
|
+
|
|
343
|
+
msgid "Uploaded on {{uploadDate}}"
|
|
344
|
+
msgstr ""
|
|
345
|
+
|
|
346
|
+
msgid "Published in: {{publishInfo}}"
|
|
347
|
+
msgstr ""
|
|
348
|
+
|
|
349
|
+
msgid "{{count}} more versions exist for this record"
|
|
350
|
+
msgid_plural "{{count}} more versions exist for this record"
|
|
351
|
+
msgstr[0] ""
|
|
352
|
+
msgstr[1] ""
|
|
353
|
+
msgstr[2] ""
|
|
354
|
+
msgstr[3] ""
|
|
355
|
+
|
|
356
|
+
msgid "Person"
|
|
28
357
|
msgstr ""
|
|
29
358
|
|
|
30
359
|
msgid "The record has no files."
|
|
@@ -42,28 +371,167 @@ msgstr ""
|
|
|
42
371
|
msgid "Contributors"
|
|
43
372
|
msgstr ""
|
|
44
373
|
|
|
374
|
+
msgid "Edit contributor"
|
|
375
|
+
msgstr ""
|
|
376
|
+
|
|
377
|
+
msgid "Funding"
|
|
378
|
+
msgstr ""
|
|
379
|
+
|
|
380
|
+
msgid "Awards/Grants"
|
|
381
|
+
msgstr ""
|
|
382
|
+
|
|
45
383
|
msgid "Alternate identifiers"
|
|
46
384
|
msgstr ""
|
|
47
385
|
|
|
48
386
|
msgid "Related works"
|
|
49
387
|
msgstr ""
|
|
50
388
|
|
|
389
|
+
msgid "References"
|
|
390
|
+
msgstr "Bibliografia"
|
|
391
|
+
|
|
51
392
|
msgid "Visibility"
|
|
52
393
|
msgstr ""
|
|
53
394
|
|
|
395
|
+
msgid "More"
|
|
396
|
+
msgstr ""
|
|
397
|
+
|
|
398
|
+
msgid "Unable to request the access."
|
|
399
|
+
msgstr ""
|
|
400
|
+
|
|
401
|
+
msgid "Your email address"
|
|
402
|
+
msgstr ""
|
|
403
|
+
|
|
404
|
+
msgid "Email address"
|
|
405
|
+
msgstr "Adres email"
|
|
406
|
+
|
|
407
|
+
msgid "Your full name"
|
|
408
|
+
msgstr ""
|
|
409
|
+
|
|
410
|
+
msgid "Full name"
|
|
411
|
+
msgstr ""
|
|
412
|
+
|
|
413
|
+
msgid "Request message"
|
|
414
|
+
msgstr ""
|
|
415
|
+
|
|
416
|
+
msgid ""
|
|
417
|
+
"I agree to that my full name and email address is shared with the owners of "
|
|
418
|
+
"the record"
|
|
419
|
+
msgstr ""
|
|
420
|
+
|
|
421
|
+
msgid "Request access"
|
|
422
|
+
msgstr ""
|
|
423
|
+
|
|
424
|
+
msgid "Email confirmation needed"
|
|
425
|
+
msgstr ""
|
|
426
|
+
|
|
427
|
+
msgid "We have sent you an email to verify your address."
|
|
428
|
+
msgstr ""
|
|
429
|
+
|
|
430
|
+
msgid ""
|
|
431
|
+
"\n"
|
|
432
|
+
" Please check the email and follow the instructions to complete the access request.\n"
|
|
433
|
+
" "
|
|
434
|
+
msgstr ""
|
|
435
|
+
|
|
436
|
+
msgid "An error occurred while fetching communities."
|
|
437
|
+
msgstr ""
|
|
438
|
+
|
|
439
|
+
msgid "Communities"
|
|
440
|
+
msgstr ""
|
|
441
|
+
|
|
442
|
+
msgid "View all {{count}} communities"
|
|
443
|
+
msgid_plural "View all {{count}} communities"
|
|
444
|
+
msgstr[0] ""
|
|
445
|
+
msgstr[1] ""
|
|
446
|
+
msgstr[2] ""
|
|
447
|
+
msgstr[3] ""
|
|
448
|
+
|
|
449
|
+
msgid "Submit to community"
|
|
450
|
+
msgstr ""
|
|
451
|
+
|
|
452
|
+
msgid "Pending submissions"
|
|
453
|
+
msgstr ""
|
|
454
|
+
|
|
455
|
+
msgid "Manage communities"
|
|
456
|
+
msgstr ""
|
|
457
|
+
|
|
458
|
+
msgid "Community management menu dropdown"
|
|
459
|
+
msgstr ""
|
|
460
|
+
|
|
54
461
|
msgid "Edit"
|
|
55
462
|
msgstr "Edytuj"
|
|
56
463
|
|
|
57
|
-
msgid "
|
|
464
|
+
msgid "Export selection"
|
|
465
|
+
msgstr ""
|
|
466
|
+
|
|
467
|
+
msgid "Download file"
|
|
468
|
+
msgstr ""
|
|
469
|
+
|
|
470
|
+
msgid "Export"
|
|
471
|
+
msgstr ""
|
|
472
|
+
|
|
473
|
+
msgid "Manage"
|
|
474
|
+
msgstr ""
|
|
475
|
+
|
|
476
|
+
msgid "Manage record"
|
|
477
|
+
msgstr ""
|
|
478
|
+
|
|
479
|
+
msgid "Manage user"
|
|
480
|
+
msgstr ""
|
|
481
|
+
|
|
482
|
+
msgid "Remove branding"
|
|
483
|
+
msgstr ""
|
|
484
|
+
|
|
485
|
+
msgid "{{communityTitle}} is a default branding for this record"
|
|
486
|
+
msgstr ""
|
|
487
|
+
|
|
488
|
+
msgid ""
|
|
489
|
+
"Remove this community from appearing on top of the record details page."
|
|
490
|
+
msgstr ""
|
|
491
|
+
|
|
492
|
+
msgid "Set branding"
|
|
58
493
|
msgstr ""
|
|
59
494
|
|
|
60
|
-
msgid "
|
|
495
|
+
msgid "Set {{communityTitle}} as a default branding for this record"
|
|
496
|
+
msgstr ""
|
|
497
|
+
|
|
498
|
+
msgid "Set this community to appear on the top of the record details page."
|
|
499
|
+
msgstr ""
|
|
500
|
+
|
|
501
|
+
msgid "Pending communities"
|
|
502
|
+
msgstr ""
|
|
503
|
+
|
|
504
|
+
msgid "Search for pending submissions to communities..."
|
|
505
|
+
msgstr ""
|
|
506
|
+
|
|
507
|
+
msgid "An error occurred while generating the citation."
|
|
61
508
|
msgstr ""
|
|
62
509
|
|
|
63
510
|
msgid "Style"
|
|
64
511
|
msgstr ""
|
|
65
512
|
|
|
66
|
-
msgid "
|
|
513
|
+
msgid "This record is not included in any communities yet."
|
|
514
|
+
msgstr ""
|
|
515
|
+
|
|
516
|
+
msgid "Search for community..."
|
|
517
|
+
msgstr ""
|
|
518
|
+
|
|
519
|
+
msgid "Record submitted"
|
|
520
|
+
msgstr ""
|
|
521
|
+
|
|
522
|
+
msgid "Review requested"
|
|
523
|
+
msgstr ""
|
|
524
|
+
|
|
525
|
+
msgid "Search in all communities"
|
|
526
|
+
msgstr ""
|
|
527
|
+
|
|
528
|
+
msgid "Search in my communities"
|
|
529
|
+
msgstr ""
|
|
530
|
+
|
|
531
|
+
msgid "Select a community"
|
|
532
|
+
msgstr ""
|
|
533
|
+
|
|
534
|
+
msgid "Version {{- version}}"
|
|
67
535
|
msgstr ""
|
|
68
536
|
|
|
69
537
|
msgid "Preview"
|
|
@@ -72,127 +540,273 @@ msgstr ""
|
|
|
72
540
|
msgid "Only published versions are displayed."
|
|
73
541
|
msgstr ""
|
|
74
542
|
|
|
75
|
-
msgid "
|
|
543
|
+
msgid "An error occurred while fetching the versions."
|
|
76
544
|
msgstr ""
|
|
77
545
|
|
|
78
|
-
msgid "
|
|
546
|
+
msgid "View all {{count}} versions"
|
|
547
|
+
msgid_plural "View all {{count}} versions"
|
|
548
|
+
msgstr[0] ""
|
|
549
|
+
msgstr[1] ""
|
|
550
|
+
msgstr[2] ""
|
|
551
|
+
msgstr[3] ""
|
|
552
|
+
|
|
553
|
+
msgid ""
|
|
554
|
+
"<0><0>Cite all versions?</0> You can cite all versions by using the DOI "
|
|
555
|
+
"<3></3>. This DOI represents all versions, and will always resolve to the "
|
|
556
|
+
"latest one. <5>Read more</5>.</0>"
|
|
79
557
|
msgstr ""
|
|
80
558
|
|
|
81
|
-
msgid "
|
|
559
|
+
msgid ""
|
|
560
|
+
"<0><0>Cite all versions?</0> You can cite all versions by using the DOI . "
|
|
561
|
+
"The DOI is registered when the first version is published. <4>Read "
|
|
562
|
+
"more</4>.</0>"
|
|
82
563
|
msgstr ""
|
|
83
564
|
|
|
84
|
-
msgid "
|
|
565
|
+
msgid "Remove"
|
|
566
|
+
msgstr "Usuń"
|
|
567
|
+
|
|
568
|
+
msgid "Remove {{communityTitle}} from this record"
|
|
85
569
|
msgstr ""
|
|
86
570
|
|
|
87
|
-
msgid "
|
|
571
|
+
msgid "Remove community"
|
|
88
572
|
msgstr ""
|
|
89
573
|
|
|
90
|
-
msgid "
|
|
574
|
+
msgid "Are you sure you want to remove the record from the community?"
|
|
575
|
+
msgstr ""
|
|
576
|
+
|
|
577
|
+
msgid "I understand the consequences:"
|
|
578
|
+
msgstr ""
|
|
579
|
+
|
|
580
|
+
msgid ""
|
|
581
|
+
"The record can only be re-included in the community by going through a new "
|
|
582
|
+
"review by the community curators."
|
|
583
|
+
msgstr ""
|
|
584
|
+
|
|
585
|
+
msgid "Something went wrong"
|
|
586
|
+
msgstr ""
|
|
587
|
+
|
|
588
|
+
msgid "Cancel removal"
|
|
589
|
+
msgstr ""
|
|
590
|
+
|
|
591
|
+
msgid "Cancel"
|
|
592
|
+
msgstr "Anuluj"
|
|
593
|
+
|
|
594
|
+
msgid "Confirm removal"
|
|
595
|
+
msgstr ""
|
|
596
|
+
|
|
597
|
+
msgid ""
|
|
598
|
+
"Members of the community <1>\"<1>{{communityTitle}}</1>\"</1> will <4>lose "
|
|
599
|
+
"their access</4> to the record."
|
|
600
|
+
msgstr ""
|
|
601
|
+
|
|
602
|
+
msgid "Select permissions"
|
|
603
|
+
msgstr ""
|
|
604
|
+
|
|
605
|
+
msgid "Short name for your link (optional)."
|
|
606
|
+
msgstr ""
|
|
607
|
+
|
|
608
|
+
msgid "Expiration date format: YYYY-MM-DD"
|
|
609
|
+
msgstr ""
|
|
610
|
+
|
|
611
|
+
msgid "Expiration date: YYYY-MM-DD or never if blank (optional)."
|
|
91
612
|
msgstr ""
|
|
92
613
|
|
|
93
|
-
msgid "
|
|
614
|
+
msgid "Create a new link"
|
|
94
615
|
msgstr ""
|
|
95
616
|
|
|
617
|
+
msgid "Link title"
|
|
618
|
+
msgstr ""
|
|
619
|
+
|
|
620
|
+
msgid "Expires at"
|
|
621
|
+
msgstr ""
|
|
622
|
+
|
|
623
|
+
msgid "Never"
|
|
624
|
+
msgstr ""
|
|
625
|
+
|
|
626
|
+
msgid "Access"
|
|
627
|
+
msgstr ""
|
|
628
|
+
|
|
629
|
+
msgid "Delete"
|
|
630
|
+
msgstr "Usuń"
|
|
631
|
+
|
|
96
632
|
msgid "Copy link"
|
|
97
633
|
msgstr ""
|
|
98
634
|
|
|
99
|
-
msgid "
|
|
635
|
+
msgid "Can view"
|
|
636
|
+
msgstr ""
|
|
637
|
+
|
|
638
|
+
msgid "Can view restricted files of all versions of this record."
|
|
639
|
+
msgstr ""
|
|
640
|
+
|
|
641
|
+
msgid "Can preview drafts"
|
|
100
642
|
msgstr ""
|
|
101
643
|
|
|
102
|
-
msgid "
|
|
644
|
+
msgid "Can view drafts and restricted files of all versions of this record."
|
|
645
|
+
msgstr ""
|
|
646
|
+
|
|
647
|
+
msgid "Can edit"
|
|
103
648
|
msgstr ""
|
|
104
649
|
|
|
105
650
|
msgid ""
|
|
106
|
-
"
|
|
651
|
+
"Can edit drafts and view restricted files of all versions of this record."
|
|
107
652
|
msgstr ""
|
|
108
653
|
|
|
109
654
|
msgid ""
|
|
110
|
-
"
|
|
111
|
-
"
|
|
655
|
+
"Can view (view access link can be created only after the record is "
|
|
656
|
+
"published)"
|
|
112
657
|
msgstr ""
|
|
113
658
|
|
|
114
|
-
msgid "
|
|
659
|
+
msgid "Expires"
|
|
660
|
+
msgstr "Wygasa"
|
|
661
|
+
|
|
662
|
+
msgid "This record has no links generated yet."
|
|
115
663
|
msgstr ""
|
|
116
664
|
|
|
117
|
-
msgid "
|
|
118
|
-
msgstr "
|
|
665
|
+
msgid "Unable to change the access request settings."
|
|
666
|
+
msgstr ""
|
|
119
667
|
|
|
120
|
-
msgid "
|
|
668
|
+
msgid "Allow authenticated users to request access to restricted files."
|
|
121
669
|
msgstr ""
|
|
122
670
|
|
|
123
|
-
msgid "
|
|
671
|
+
msgid "Allow non-authenticated users to request access to restricted files."
|
|
124
672
|
msgstr ""
|
|
125
673
|
|
|
126
|
-
msgid "
|
|
674
|
+
msgid "Accept conditions"
|
|
127
675
|
msgstr ""
|
|
128
676
|
|
|
129
|
-
msgid "
|
|
677
|
+
msgid "Advanced options"
|
|
130
678
|
msgstr ""
|
|
131
679
|
|
|
132
|
-
msgid "
|
|
680
|
+
msgid "Save"
|
|
681
|
+
msgstr "Zapisz"
|
|
682
|
+
|
|
683
|
+
msgid "No user has access to this record yet."
|
|
133
684
|
msgstr ""
|
|
134
685
|
|
|
135
|
-
msgid "
|
|
686
|
+
msgid "People with access"
|
|
136
687
|
msgstr ""
|
|
137
688
|
|
|
138
|
-
msgid "
|
|
689
|
+
msgid "No group has access to this record yet."
|
|
139
690
|
msgstr ""
|
|
140
691
|
|
|
141
|
-
msgid "
|
|
692
|
+
msgid "Groups with access"
|
|
142
693
|
msgstr ""
|
|
143
694
|
|
|
144
|
-
msgid "
|
|
695
|
+
msgid "You"
|
|
145
696
|
msgstr ""
|
|
146
697
|
|
|
147
|
-
msgid "
|
|
698
|
+
msgid "Add people"
|
|
148
699
|
msgstr ""
|
|
149
700
|
|
|
150
|
-
msgid "No
|
|
701
|
+
msgid "No selected users"
|
|
151
702
|
msgstr ""
|
|
152
703
|
|
|
153
|
-
msgid "
|
|
704
|
+
msgid ""
|
|
705
|
+
"Search for users to grant access (only users with a public profile can be "
|
|
706
|
+
"invited)"
|
|
154
707
|
msgstr ""
|
|
155
708
|
|
|
156
|
-
msgid "
|
|
709
|
+
msgid "Search by email, full name or username"
|
|
157
710
|
msgstr ""
|
|
158
711
|
|
|
159
|
-
msgid "
|
|
712
|
+
msgid "users"
|
|
160
713
|
msgstr ""
|
|
161
714
|
|
|
162
|
-
msgid "
|
|
715
|
+
msgid "Add groups"
|
|
163
716
|
msgstr ""
|
|
164
717
|
|
|
165
|
-
msgid "
|
|
718
|
+
msgid "Group"
|
|
719
|
+
msgstr "Grupa"
|
|
720
|
+
|
|
721
|
+
msgid "No selected groups"
|
|
166
722
|
msgstr ""
|
|
167
723
|
|
|
168
|
-
msgid "
|
|
724
|
+
msgid "Search for groups"
|
|
169
725
|
msgstr ""
|
|
170
726
|
|
|
171
|
-
msgid "
|
|
727
|
+
msgid "groups"
|
|
172
728
|
msgstr ""
|
|
173
729
|
|
|
174
|
-
msgid "
|
|
730
|
+
msgid "Add"
|
|
731
|
+
msgstr "Dodaj"
|
|
732
|
+
|
|
733
|
+
msgid "Notify people"
|
|
175
734
|
msgstr ""
|
|
176
735
|
|
|
177
|
-
msgid "
|
|
736
|
+
msgid "Notification message"
|
|
737
|
+
msgstr ""
|
|
738
|
+
|
|
739
|
+
msgid "You are about to add"
|
|
740
|
+
msgstr ""
|
|
741
|
+
|
|
742
|
+
msgid "Access already granted"
|
|
743
|
+
msgstr ""
|
|
744
|
+
|
|
745
|
+
msgid "Can manage"
|
|
746
|
+
msgstr ""
|
|
747
|
+
|
|
748
|
+
msgid ""
|
|
749
|
+
"Can manage access, edit drafts and view restricted files of all versions of "
|
|
750
|
+
"this record."
|
|
751
|
+
msgstr ""
|
|
752
|
+
|
|
753
|
+
msgid "You don't have permissions to share this record."
|
|
754
|
+
msgstr ""
|
|
755
|
+
|
|
756
|
+
msgid "Share"
|
|
757
|
+
msgstr ""
|
|
758
|
+
|
|
759
|
+
msgid "People"
|
|
760
|
+
msgstr ""
|
|
761
|
+
|
|
762
|
+
msgid "Groups"
|
|
763
|
+
msgstr "Grupy"
|
|
764
|
+
|
|
765
|
+
msgid "Settings"
|
|
766
|
+
msgstr ""
|
|
767
|
+
|
|
768
|
+
msgid "Share access"
|
|
769
|
+
msgstr ""
|
|
770
|
+
|
|
771
|
+
msgid "Link expiration"
|
|
772
|
+
msgstr ""
|
|
773
|
+
|
|
774
|
+
msgid "In 1 month"
|
|
775
|
+
msgstr ""
|
|
776
|
+
|
|
777
|
+
msgid "In 2 months"
|
|
178
778
|
msgstr ""
|
|
179
779
|
|
|
180
|
-
msgid "
|
|
780
|
+
msgid "In 6 months"
|
|
181
781
|
msgstr ""
|
|
182
782
|
|
|
183
|
-
msgid "
|
|
783
|
+
msgid "In 1 year"
|
|
184
784
|
msgstr ""
|
|
185
785
|
|
|
186
|
-
msgid "
|
|
786
|
+
msgid "Invalid date format."
|
|
187
787
|
msgstr ""
|
|
188
788
|
|
|
189
|
-
msgid "
|
|
789
|
+
msgid "Access link expiration date cannot be in the past."
|
|
190
790
|
msgstr ""
|
|
191
791
|
|
|
192
|
-
msgid "
|
|
792
|
+
msgid "Access request"
|
|
193
793
|
msgstr ""
|
|
194
794
|
|
|
195
|
-
msgid "
|
|
795
|
+
msgid "Unable to change the expiration request settings."
|
|
796
|
+
msgstr ""
|
|
797
|
+
|
|
798
|
+
msgid "Expiration date: "
|
|
799
|
+
msgstr ""
|
|
800
|
+
|
|
801
|
+
msgid ""
|
|
802
|
+
"Format: YYYY-MM-DD. Granted access will expire on the given date. Leave "
|
|
803
|
+
"empty to set no expiration limit."
|
|
804
|
+
msgstr ""
|
|
805
|
+
|
|
806
|
+
msgid "Link expiration date:"
|
|
807
|
+
msgstr ""
|
|
808
|
+
|
|
809
|
+
msgid "We couldn't find any matches for {{- search}}"
|
|
196
810
|
msgstr ""
|
|
197
811
|
|
|
198
812
|
msgid "Start over"
|
|
@@ -201,16 +815,21 @@ msgstr ""
|
|
|
201
815
|
msgid "ProTip"
|
|
202
816
|
msgstr ""
|
|
203
817
|
|
|
204
|
-
msgid "
|
|
818
|
+
msgid "Search guide"
|
|
205
819
|
msgstr ""
|
|
206
820
|
|
|
207
|
-
msgid "
|
|
821
|
+
msgid ""
|
|
822
|
+
"<0>For more tips, check out our <2>search guide</2> for defining advanced "
|
|
823
|
+
"search queries.</0>"
|
|
208
824
|
msgstr ""
|
|
209
825
|
|
|
210
|
-
msgid "
|
|
826
|
+
msgid "Search in my communities..."
|
|
211
827
|
msgstr ""
|
|
212
828
|
|
|
213
|
-
msgid "
|
|
829
|
+
msgid "View"
|
|
830
|
+
msgstr ""
|
|
831
|
+
|
|
832
|
+
msgid "Published in: {{publishedIn}}"
|
|
214
833
|
msgstr ""
|
|
215
834
|
|
|
216
835
|
msgid "In review"
|
|
@@ -228,49 +847,64 @@ msgstr ""
|
|
|
228
847
|
msgid "New version draft"
|
|
229
848
|
msgstr ""
|
|
230
849
|
|
|
231
|
-
msgid "
|
|
850
|
+
msgid "open"
|
|
232
851
|
msgstr ""
|
|
233
852
|
|
|
234
|
-
msgid "
|
|
853
|
+
msgid "Open"
|
|
235
854
|
msgstr ""
|
|
236
855
|
|
|
237
|
-
msgid ""
|
|
238
|
-
"Anyone with an account and this link <1>can edit all versions</1> of this "
|
|
239
|
-
"record & files."
|
|
856
|
+
msgid "unlock"
|
|
240
857
|
msgstr ""
|
|
241
858
|
|
|
242
|
-
msgid "
|
|
859
|
+
msgid "Get started!"
|
|
243
860
|
msgstr ""
|
|
244
861
|
|
|
245
|
-
msgid "
|
|
862
|
+
msgid "Make your first upload!"
|
|
246
863
|
msgstr ""
|
|
247
864
|
|
|
248
|
-
msgid "
|
|
865
|
+
msgid "New upload"
|
|
249
866
|
msgstr ""
|
|
250
867
|
|
|
251
|
-
msgid "
|
|
868
|
+
msgid "Search in my uploads..."
|
|
252
869
|
msgstr ""
|
|
253
870
|
|
|
254
|
-
msgid "
|
|
871
|
+
msgid "ORCID profile"
|
|
255
872
|
msgstr ""
|
|
256
873
|
|
|
257
|
-
msgid "
|
|
874
|
+
msgid "ORCID logo"
|
|
258
875
|
msgstr ""
|
|
259
876
|
|
|
260
|
-
msgid "
|
|
877
|
+
msgid "ROR profile"
|
|
261
878
|
msgstr ""
|
|
262
879
|
|
|
263
|
-
msgid "
|
|
880
|
+
msgid "ROR logo"
|
|
264
881
|
msgstr ""
|
|
265
882
|
|
|
266
|
-
msgid "
|
|
267
|
-
msgstr "
|
|
883
|
+
msgid "GND profile"
|
|
884
|
+
msgstr ""
|
|
268
885
|
|
|
269
|
-
msgid "
|
|
886
|
+
msgid "GND logo"
|
|
270
887
|
msgstr ""
|
|
271
888
|
|
|
272
|
-
msgid "
|
|
889
|
+
msgid "No name"
|
|
273
890
|
msgstr ""
|
|
274
891
|
|
|
275
|
-
msgid "
|
|
892
|
+
msgid "and {{count}} other"
|
|
893
|
+
msgid_plural "and {{count}} other"
|
|
894
|
+
msgstr[0] ""
|
|
895
|
+
msgstr[1] ""
|
|
896
|
+
msgstr[2] ""
|
|
897
|
+
msgstr[3] ""
|
|
898
|
+
|
|
899
|
+
msgid "and {{count}} others"
|
|
900
|
+
msgid_plural "and {{count}} others"
|
|
901
|
+
msgstr[0] ""
|
|
902
|
+
msgstr[1] ""
|
|
903
|
+
msgstr[2] ""
|
|
904
|
+
msgstr[3] ""
|
|
905
|
+
|
|
906
|
+
msgctxt ""
|
|
907
|
+
"date:[2017-01-01 TO *]</0> will give you all the publications from 2017 "
|
|
908
|
+
"until today.</0>"
|
|
909
|
+
msgid "<0><0>metadata.publication"
|
|
276
910
|
msgstr ""
|