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
|
@@ -1,250 +1,615 @@
|
|
|
1
1
|
# Translations template for invenio-app-rdm.
|
|
2
|
-
# Copyright (C)
|
|
2
|
+
# Copyright (C) 2025 CERN
|
|
3
3
|
# This file is distributed under the same license as the invenio-app-rdm
|
|
4
4
|
# project.
|
|
5
|
-
# FIRST AUTHOR <EMAIL@ADDRESS>,
|
|
5
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, 2025.
|
|
6
6
|
#
|
|
7
7
|
# Translators:
|
|
8
|
-
#
|
|
9
|
-
#
|
|
8
|
+
# Hakan Bayindir <hbayindir@gmail.com>, 2024
|
|
9
|
+
# Berat Aldemir <berataldemir@gmail.com>, 2024
|
|
10
|
+
# Furkan Kalkan <furkan.kalkan3@gmail.com>, 2024
|
|
11
|
+
# BEN TERCÜME, 2025
|
|
12
|
+
# Ben Translation and Interpreting Services <info@bentercume.com>, 2025
|
|
10
13
|
#
|
|
11
14
|
#, fuzzy
|
|
12
15
|
msgid ""
|
|
13
16
|
msgstr ""
|
|
14
|
-
"Project-Id-Version: invenio-app-rdm
|
|
17
|
+
"Project-Id-Version: invenio-app-rdm 12.0.15\n"
|
|
15
18
|
"Report-Msgid-Bugs-To: info@inveniosoftware.org\n"
|
|
16
|
-
"POT-Creation-Date:
|
|
19
|
+
"POT-Creation-Date: 2025-03-27 16:30+0000\n"
|
|
17
20
|
"PO-Revision-Date: 2020-07-07 14:12+0000\n"
|
|
18
|
-
"Last-Translator: Ben Translation and Interpreting Services <info@bentercume.com>,
|
|
21
|
+
"Last-Translator: Ben Translation and Interpreting Services <info@bentercume.com>, 2025\n"
|
|
19
22
|
"Language-Team: Turkish (https://app.transifex.com/inveniosoftware/teams/23537/tr/)\n"
|
|
20
23
|
"MIME-Version: 1.0\n"
|
|
21
24
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
22
25
|
"Content-Transfer-Encoding: 8bit\n"
|
|
23
|
-
"Generated-By: Babel 2.
|
|
26
|
+
"Generated-By: Babel 2.17.0\n"
|
|
24
27
|
"Language: tr\n"
|
|
25
28
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
|
26
29
|
|
|
27
|
-
#: invenio_app_rdm/config.py:
|
|
30
|
+
#: invenio_app_rdm/config.py:219
|
|
28
31
|
msgid "The turn-key research data management repository"
|
|
29
32
|
msgstr "Anahtar teslim araştırma verileri yönetimi sistemi"
|
|
30
33
|
|
|
31
|
-
#: invenio_app_rdm/config.py:
|
|
34
|
+
#: invenio_app_rdm/config.py:258
|
|
35
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/site_footer.html:16
|
|
32
36
|
msgid "InvenioRDM"
|
|
33
37
|
msgstr "InvenioRDM"
|
|
34
38
|
|
|
35
|
-
#: invenio_app_rdm/config.py:
|
|
39
|
+
#: invenio_app_rdm/config.py:353
|
|
36
40
|
msgid "Welcome to Invenio App RDM!"
|
|
37
41
|
msgstr "Invenio App RDM'e Hoşgeldiniz!"
|
|
38
42
|
|
|
39
|
-
#: invenio_app_rdm/config.py:
|
|
43
|
+
#: invenio_app_rdm/config.py:750
|
|
40
44
|
msgid "JSON"
|
|
41
45
|
msgstr "JSON"
|
|
42
46
|
|
|
43
|
-
#: invenio_app_rdm/config.py:
|
|
47
|
+
#: invenio_app_rdm/config.py:757
|
|
48
|
+
msgid "JSON-LD"
|
|
49
|
+
msgstr "JSON-LD"
|
|
50
|
+
|
|
51
|
+
#: invenio_app_rdm/config.py:765
|
|
44
52
|
msgid "CSL"
|
|
45
53
|
msgstr "CSL"
|
|
46
54
|
|
|
47
|
-
#: invenio_app_rdm/config.py:
|
|
55
|
+
#: invenio_app_rdm/config.py:772
|
|
48
56
|
msgid "DataCite JSON"
|
|
49
57
|
msgstr "DataCite JSON"
|
|
50
58
|
|
|
51
|
-
#: invenio_app_rdm/config.py:
|
|
59
|
+
#: invenio_app_rdm/config.py:781
|
|
52
60
|
msgid "DataCite XML"
|
|
53
61
|
msgstr "DataCite XML"
|
|
54
62
|
|
|
55
|
-
#: invenio_app_rdm/config.py:
|
|
63
|
+
#: invenio_app_rdm/config.py:790
|
|
56
64
|
msgid "Dublin Core XML"
|
|
57
65
|
msgstr "Dublin Core XML"
|
|
58
66
|
|
|
59
|
-
#: invenio_app_rdm/config.py:
|
|
67
|
+
#: invenio_app_rdm/config.py:799
|
|
68
|
+
msgid "MARCXML"
|
|
69
|
+
msgstr "MARCXML"
|
|
70
|
+
|
|
71
|
+
#: invenio_app_rdm/config.py:806
|
|
72
|
+
msgid "BibTeX"
|
|
73
|
+
msgstr "BibTeX"
|
|
74
|
+
|
|
75
|
+
#: invenio_app_rdm/config.py:813
|
|
76
|
+
msgid "GeoJSON"
|
|
77
|
+
msgstr "GeoJSON"
|
|
78
|
+
|
|
79
|
+
#: invenio_app_rdm/config.py:820
|
|
80
|
+
msgid "DCAT"
|
|
81
|
+
msgstr "DCAT"
|
|
82
|
+
|
|
83
|
+
#: invenio_app_rdm/config.py:827
|
|
84
|
+
msgid "Codemeta"
|
|
85
|
+
msgstr "Codemeta"
|
|
86
|
+
|
|
87
|
+
#: invenio_app_rdm/config.py:834
|
|
88
|
+
msgid "Citation File Format"
|
|
89
|
+
msgstr "Referans Dosyası Biçimi"
|
|
90
|
+
|
|
91
|
+
#: invenio_app_rdm/config.py:996
|
|
60
92
|
msgid "APA"
|
|
61
93
|
msgstr "APA"
|
|
62
94
|
|
|
63
|
-
#: invenio_app_rdm/config.py:
|
|
95
|
+
#: invenio_app_rdm/config.py:997
|
|
64
96
|
msgid "Harvard"
|
|
65
97
|
msgstr "Harvard"
|
|
66
98
|
|
|
67
|
-
#: invenio_app_rdm/config.py:
|
|
99
|
+
#: invenio_app_rdm/config.py:998
|
|
68
100
|
msgid "MLA"
|
|
69
101
|
msgstr "MLA"
|
|
70
102
|
|
|
71
|
-
#: invenio_app_rdm/config.py:
|
|
103
|
+
#: invenio_app_rdm/config.py:999
|
|
72
104
|
msgid "Vancouver"
|
|
73
105
|
msgstr "Vancouver"
|
|
74
106
|
|
|
75
|
-
#: invenio_app_rdm/config.py:
|
|
107
|
+
#: invenio_app_rdm/config.py:1000
|
|
76
108
|
msgid "Chicago"
|
|
77
109
|
msgstr "Chicago"
|
|
78
110
|
|
|
79
|
-
#: invenio_app_rdm/config.py:
|
|
111
|
+
#: invenio_app_rdm/config.py:1001
|
|
80
112
|
msgid "IEEE"
|
|
81
113
|
msgstr "IEEE"
|
|
82
114
|
|
|
83
|
-
#: invenio_app_rdm/
|
|
84
|
-
msgid "
|
|
85
|
-
msgstr "
|
|
115
|
+
#: invenio_app_rdm/ext.py:57
|
|
116
|
+
msgid "My dashboard"
|
|
117
|
+
msgstr "Gösterge panelim"
|
|
86
118
|
|
|
87
|
-
#: invenio_app_rdm/
|
|
88
|
-
#: invenio_app_rdm/
|
|
89
|
-
#: invenio_app_rdm/
|
|
90
|
-
msgid "
|
|
119
|
+
#: invenio_app_rdm/ext.py:63
|
|
120
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:14
|
|
121
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html:28
|
|
122
|
+
msgid "New upload"
|
|
123
|
+
msgstr "Yeni Yükleme"
|
|
124
|
+
|
|
125
|
+
#: invenio_app_rdm/ext.py:77
|
|
126
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/uploads.html:8
|
|
127
|
+
msgid "Uploads"
|
|
128
|
+
msgstr "Yüklemeler"
|
|
129
|
+
|
|
130
|
+
#: invenio_app_rdm/ext.py:82
|
|
131
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/communities.html:15
|
|
132
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/communities.html:8
|
|
133
|
+
msgid "Communities"
|
|
134
|
+
msgstr "Topluluklar"
|
|
135
|
+
|
|
136
|
+
#: invenio_app_rdm/ext.py:87
|
|
137
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:118
|
|
138
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:117
|
|
139
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/requests.html:8
|
|
140
|
+
msgid "Requests"
|
|
141
|
+
msgstr "Talepler"
|
|
142
|
+
|
|
143
|
+
#: invenio_app_rdm/ext.py:110
|
|
144
|
+
msgid "Home"
|
|
145
|
+
msgstr "Anasayfa"
|
|
146
|
+
|
|
147
|
+
#: invenio_app_rdm/administration/records/records.py:26
|
|
148
|
+
#: invenio_app_rdm/administration/records/records.py:27
|
|
149
|
+
#: invenio_app_rdm/ext.py:118
|
|
150
|
+
msgid "Records"
|
|
151
|
+
msgstr "Kayıtlar"
|
|
152
|
+
|
|
153
|
+
#: invenio_app_rdm/ext.py:125
|
|
154
|
+
msgid "Submit"
|
|
155
|
+
msgstr "Gönder"
|
|
156
|
+
|
|
157
|
+
#: invenio_app_rdm/administration/domains/domains.py:41
|
|
158
|
+
#: invenio_app_rdm/administration/domains/domains.py:42
|
|
159
|
+
msgid "Domains"
|
|
160
|
+
msgstr "Etki Alanları"
|
|
161
|
+
|
|
162
|
+
#: invenio_app_rdm/administration/domains/domains.py:43
|
|
163
|
+
msgid "Site management"
|
|
164
|
+
msgstr "Site yönetimi"
|
|
165
|
+
|
|
166
|
+
#: invenio_app_rdm/administration/domains/domains.py:47
|
|
167
|
+
#: invenio_app_rdm/administration/domains/domains.py:74
|
|
168
|
+
#: invenio_app_rdm/administration/domains/domains.py:144
|
|
169
|
+
msgid "Domain"
|
|
170
|
+
msgstr "Etki Alanı"
|
|
171
|
+
|
|
172
|
+
#: invenio_app_rdm/administration/domains/domains.py:48
|
|
173
|
+
msgid "TLD"
|
|
174
|
+
msgstr "TLD"
|
|
175
|
+
|
|
176
|
+
#: invenio_app_rdm/administration/domains/domains.py:49
|
|
177
|
+
#: invenio_app_rdm/administration/domains/domains.py:80
|
|
178
|
+
#: invenio_app_rdm/administration/domains/domains.py:146
|
|
179
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:68
|
|
180
|
+
#: invenio_app_rdm/administration/users/users.py:24
|
|
181
|
+
#: invenio_app_rdm/administration/users/users.py:35
|
|
182
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:28
|
|
183
|
+
msgid "Status"
|
|
184
|
+
msgstr "Durum"
|
|
185
|
+
|
|
186
|
+
#: invenio_app_rdm/administration/domains/domains.py:50
|
|
187
|
+
#: invenio_app_rdm/administration/domains/domains.py:153
|
|
188
|
+
#: invenio_app_rdm/administration/users/users.py:57
|
|
189
|
+
msgid "Users"
|
|
190
|
+
msgstr "Kullanıcılar"
|
|
191
|
+
|
|
192
|
+
#: invenio_app_rdm/administration/domains/domains.py:51
|
|
193
|
+
#: invenio_app_rdm/administration/domains/domains.py:154
|
|
194
|
+
#: invenio_app_rdm/administration/users/users.py:37
|
|
195
|
+
msgid "Active"
|
|
196
|
+
msgstr "Aktif"
|
|
197
|
+
|
|
198
|
+
#: invenio_app_rdm/administration/domains/domains.py:52
|
|
199
|
+
#: invenio_app_rdm/administration/domains/domains.py:155
|
|
200
|
+
msgid "Inactive"
|
|
201
|
+
msgstr "Aktif olmayan"
|
|
202
|
+
|
|
203
|
+
#: invenio_app_rdm/administration/domains/domains.py:53
|
|
204
|
+
#: invenio_app_rdm/administration/domains/domains.py:156
|
|
205
|
+
msgid "Confirmed"
|
|
206
|
+
msgstr "Onaylanmış"
|
|
207
|
+
|
|
208
|
+
#: invenio_app_rdm/administration/domains/domains.py:54
|
|
209
|
+
#: invenio_app_rdm/administration/domains/domains.py:157
|
|
210
|
+
msgid "Verified"
|
|
211
|
+
msgstr "Doğrulanmış"
|
|
212
|
+
|
|
213
|
+
#: invenio_app_rdm/administration/domains/domains.py:55
|
|
214
|
+
#: invenio_app_rdm/administration/domains/domains.py:158
|
|
215
|
+
msgid "Blocked"
|
|
216
|
+
msgstr "Engellenmiş"
|
|
217
|
+
|
|
218
|
+
#: invenio_app_rdm/administration/domains/domains.py:75
|
|
219
|
+
msgid "Domain name (all lowercase)"
|
|
220
|
+
msgstr "Alan adı (hepsi küçük harf)"
|
|
221
|
+
|
|
222
|
+
#: invenio_app_rdm/administration/domains/domains.py:82
|
|
223
|
+
msgid ""
|
|
224
|
+
"Status of the domain. One of new (domain needs review), moderated (users in "
|
|
225
|
+
"domain require moderation), verified (users in domain does not require "
|
|
226
|
+
"moderation) or blocked (users cannot register using this domain)."
|
|
227
|
+
msgstr ""
|
|
228
|
+
"Alan adının durumu. Yenilerden biri (alan adının gözden geçirilmesi "
|
|
229
|
+
"gerekiyor), denetlenmiş (alan adındaki kullanıcıların denetlenmesi "
|
|
230
|
+
"gerekiyor), doğrulanmış (alan adındaki kullanıcıların denetlenmesi "
|
|
231
|
+
"gerekmiyor) veya engellenmiş (kullanıcılar bu alan adını kullanarak kayıt "
|
|
232
|
+
"olamaz)."
|
|
233
|
+
|
|
234
|
+
#: invenio_app_rdm/administration/domains/domains.py:94
|
|
235
|
+
#: invenio_app_rdm/administration/domains/domains.py:147
|
|
236
|
+
msgid "Category"
|
|
237
|
+
msgstr "Kategori"
|
|
238
|
+
|
|
239
|
+
#: invenio_app_rdm/administration/domains/domains.py:95
|
|
240
|
+
msgid "A label to categorise the domain."
|
|
241
|
+
msgstr "Etki alanını kategorize etmek için bir etiket."
|
|
242
|
+
|
|
243
|
+
#: invenio_app_rdm/administration/domains/domains.py:107
|
|
244
|
+
#: invenio_app_rdm/administration/domains/domains.py:148
|
|
245
|
+
msgid "Flagged"
|
|
246
|
+
msgstr "İşaretli"
|
|
247
|
+
|
|
248
|
+
#: invenio_app_rdm/administration/domains/domains.py:109
|
|
249
|
+
msgid "Used by automatic processes to flag the domain as requiring review."
|
|
250
|
+
msgstr ""
|
|
251
|
+
"Otomatik süreçler tarafından etki alanını, incelenmesi gerekli şeklinde "
|
|
252
|
+
"işaretlemek için kullanılır."
|
|
253
|
+
|
|
254
|
+
#: invenio_app_rdm/administration/domains/domains.py:114
|
|
255
|
+
#: invenio_app_rdm/administration/domains/domains.py:149
|
|
256
|
+
msgid "Source of flag"
|
|
257
|
+
msgstr "İşaretin kaynağı"
|
|
258
|
+
|
|
259
|
+
#: invenio_app_rdm/administration/domains/domains.py:115
|
|
260
|
+
msgid "Which source flagged the domain."
|
|
261
|
+
msgstr "Etki alanını hangi kaynak işaretledi."
|
|
262
|
+
|
|
263
|
+
#: invenio_app_rdm/administration/domains/domains.py:125
|
|
264
|
+
msgid "Create domain"
|
|
265
|
+
msgstr "Etki alanı oluştur"
|
|
266
|
+
|
|
267
|
+
#: invenio_app_rdm/administration/domains/domains.py:133
|
|
268
|
+
msgid "Edit domain"
|
|
269
|
+
msgstr "Etki alanını düzenle"
|
|
270
|
+
|
|
271
|
+
#: invenio_app_rdm/administration/domains/domains.py:141
|
|
272
|
+
msgid "Domain details"
|
|
273
|
+
msgstr "Etki alanı ayrıntıları"
|
|
274
|
+
|
|
275
|
+
#: invenio_app_rdm/administration/domains/domains.py:145
|
|
276
|
+
msgid "Top-level domain"
|
|
277
|
+
msgstr "Üst seviye etki alanı"
|
|
278
|
+
|
|
279
|
+
#: invenio_app_rdm/administration/domains/domains.py:150
|
|
280
|
+
#: invenio_app_rdm/administration/records/records.py:41
|
|
281
|
+
#: invenio_app_rdm/administration/records/records.py:120
|
|
282
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:172
|
|
283
|
+
#: invenio_app_rdm/administration/users/users.py:25
|
|
284
|
+
#: invenio_app_rdm/administration/users/users.py:41
|
|
285
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html:10
|
|
286
|
+
msgid "Created"
|
|
287
|
+
msgstr "Oluşturulma"
|
|
288
|
+
|
|
289
|
+
#: invenio_app_rdm/administration/domains/domains.py:151
|
|
290
|
+
#: invenio_app_rdm/administration/users/users.py:26
|
|
291
|
+
#: invenio_app_rdm/administration/users/users.py:42
|
|
292
|
+
msgid "Updated"
|
|
293
|
+
msgstr "Güncellenme"
|
|
294
|
+
|
|
295
|
+
#: invenio_app_rdm/administration/domains/domains.py:152
|
|
296
|
+
msgid "Organisation"
|
|
297
|
+
msgstr "Kuruluş"
|
|
298
|
+
|
|
299
|
+
#: invenio_app_rdm/administration/records/records.py:28
|
|
300
|
+
#: invenio_app_rdm/administration/records/records.py:107
|
|
301
|
+
msgid "Records & files"
|
|
302
|
+
msgstr ""
|
|
303
|
+
|
|
304
|
+
#: invenio_app_rdm/administration/records/records.py:39
|
|
305
|
+
#: invenio_app_rdm/administration/records/records.py:118
|
|
306
|
+
msgid "Title"
|
|
307
|
+
msgstr "Başlık"
|
|
308
|
+
|
|
309
|
+
#: invenio_app_rdm/administration/records/records.py:40
|
|
310
|
+
#: invenio_app_rdm/administration/records/records.py:119
|
|
311
|
+
msgid "Owner"
|
|
312
|
+
msgstr "Sahip"
|
|
313
|
+
|
|
314
|
+
#: invenio_app_rdm/administration/records/records.py:42
|
|
315
|
+
#: invenio_app_rdm/administration/records/records.py:121
|
|
316
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:271
|
|
317
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:276
|
|
318
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:293
|
|
319
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:142
|
|
320
|
+
msgid "Files"
|
|
321
|
+
msgstr "Dosyalar"
|
|
322
|
+
|
|
323
|
+
#: invenio_app_rdm/administration/records/records.py:43
|
|
324
|
+
#: invenio_app_rdm/administration/records/records.py:122
|
|
325
|
+
msgid "Stats"
|
|
326
|
+
msgstr "İstatistikler"
|
|
327
|
+
|
|
328
|
+
#: invenio_app_rdm/administration/records/records.py:48
|
|
329
|
+
msgid "Delete record"
|
|
330
|
+
msgstr "Kaydı sil"
|
|
331
|
+
|
|
332
|
+
#: invenio_app_rdm/administration/records/records.py:53
|
|
333
|
+
msgid "Restore record"
|
|
334
|
+
msgstr "Kaydı geri yükle"
|
|
335
|
+
|
|
336
|
+
#: invenio_app_rdm/administration/records/records.py:105
|
|
337
|
+
#: invenio_app_rdm/administration/records/records.py:106
|
|
338
|
+
msgid "Drafts"
|
|
339
|
+
msgstr ""
|
|
340
|
+
|
|
341
|
+
#: invenio_app_rdm/administration/records/records.py:127
|
|
342
|
+
msgid "Set quota"
|
|
343
|
+
msgstr "Kota belirle"
|
|
344
|
+
|
|
345
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:29
|
|
346
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:30
|
|
347
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:31
|
|
348
|
+
msgid "Moderation"
|
|
349
|
+
msgstr ""
|
|
350
|
+
|
|
351
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:45
|
|
352
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:168
|
|
353
|
+
#: invenio_app_rdm/administration/users/users.py:21
|
|
354
|
+
msgid "User"
|
|
355
|
+
msgstr "Kullanıcı"
|
|
356
|
+
|
|
357
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:51
|
|
358
|
+
#: invenio_app_rdm/administration/users/users.py:23
|
|
359
|
+
#: invenio_app_rdm/administration/users/users.py:33
|
|
360
|
+
msgid "Email"
|
|
361
|
+
msgstr "E-posta"
|
|
362
|
+
|
|
363
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:57
|
|
364
|
+
msgid "Email domain"
|
|
365
|
+
msgstr "E-posta etki alanı"
|
|
366
|
+
|
|
367
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:63
|
|
368
|
+
msgid "Activity"
|
|
369
|
+
msgstr ""
|
|
370
|
+
|
|
371
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:76
|
|
372
|
+
#: invenio_app_rdm/administration/users/users.py:78
|
|
373
|
+
msgid "Approve"
|
|
374
|
+
msgstr "Onayla"
|
|
375
|
+
|
|
376
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:81
|
|
377
|
+
#: invenio_app_rdm/administration/users/users.py:88
|
|
378
|
+
msgid "Block"
|
|
379
|
+
msgstr "Engelle"
|
|
380
|
+
|
|
381
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:141
|
|
382
|
+
msgid "User moderation"
|
|
383
|
+
msgstr "Kullanıcı denetimi"
|
|
384
|
+
|
|
385
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:164
|
|
386
|
+
#: invenio_app_rdm/administration/users/users.py:31
|
|
387
|
+
msgid "ID"
|
|
388
|
+
msgstr "ID"
|
|
389
|
+
|
|
390
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:173
|
|
391
|
+
msgid "Open"
|
|
392
|
+
msgstr "Açık"
|
|
393
|
+
|
|
394
|
+
#: invenio_app_rdm/administration/users/users.py:22
|
|
395
|
+
#: invenio_app_rdm/administration/users/users.py:32
|
|
396
|
+
msgid "Username"
|
|
397
|
+
msgstr "Kullanıcı adı"
|
|
398
|
+
|
|
399
|
+
#: invenio_app_rdm/administration/users/users.py:34
|
|
400
|
+
msgid "Domain "
|
|
401
|
+
msgstr "Etki alanı"
|
|
402
|
+
|
|
403
|
+
#: invenio_app_rdm/administration/users/users.py:36
|
|
404
|
+
msgid "Visibility"
|
|
405
|
+
msgstr "Görünürlük"
|
|
406
|
+
|
|
407
|
+
#: invenio_app_rdm/administration/users/users.py:38
|
|
408
|
+
msgid "Confirmed at"
|
|
409
|
+
msgstr "Onaylanma zamanı"
|
|
410
|
+
|
|
411
|
+
#: invenio_app_rdm/administration/users/users.py:39
|
|
412
|
+
msgid "Verified at"
|
|
413
|
+
msgstr "Doğrulanma zamanı"
|
|
414
|
+
|
|
415
|
+
#: invenio_app_rdm/administration/users/users.py:40
|
|
416
|
+
msgid "Blocked at"
|
|
417
|
+
msgstr "Engellenme zamanı"
|
|
418
|
+
|
|
419
|
+
#: invenio_app_rdm/administration/users/users.py:56
|
|
420
|
+
#: invenio_app_rdm/administration/users/users.py:58
|
|
421
|
+
msgid "User management"
|
|
422
|
+
msgstr ""
|
|
423
|
+
|
|
424
|
+
#: invenio_app_rdm/administration/users/users.py:83
|
|
425
|
+
msgid "Restore"
|
|
426
|
+
msgstr "Geri yükle"
|
|
427
|
+
|
|
428
|
+
#: invenio_app_rdm/administration/users/users.py:93
|
|
429
|
+
msgid "Suspend"
|
|
430
|
+
msgstr "Askıya al"
|
|
431
|
+
|
|
432
|
+
#: invenio_app_rdm/administration/users/users.py:129
|
|
433
|
+
msgid "User details"
|
|
434
|
+
msgstr "Kullanıcı bilgileri"
|
|
435
|
+
|
|
436
|
+
#: invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/records/index.html:12
|
|
437
|
+
msgid "Search "
|
|
91
438
|
msgstr "Ara"
|
|
92
439
|
|
|
93
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:
|
|
440
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:12
|
|
94
441
|
msgid "New version"
|
|
95
442
|
msgstr "Yeni sürüm"
|
|
96
443
|
|
|
97
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:
|
|
98
|
-
#: invenio_app_rdm/theme/views.py:44
|
|
99
|
-
msgid "New upload"
|
|
100
|
-
msgstr "Yeni Yükleme"
|
|
101
|
-
|
|
102
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:13
|
|
444
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:16
|
|
103
445
|
msgid "Edit upload"
|
|
104
446
|
msgstr "Yüklemeyi düzenle"
|
|
105
447
|
|
|
106
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
448
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:51
|
|
107
449
|
msgid "Information banner"
|
|
108
|
-
msgstr ""
|
|
450
|
+
msgstr "Bilgilendirme ana başlığı"
|
|
109
451
|
|
|
110
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
452
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:76
|
|
111
453
|
msgid "Community visibility"
|
|
112
|
-
msgstr ""
|
|
454
|
+
msgstr "Topluluk görünürlüğü"
|
|
113
455
|
|
|
114
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
456
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:77
|
|
115
457
|
msgid "The community is restricted to users with access."
|
|
116
458
|
msgstr ""
|
|
459
|
+
"Topluluk, sadece erişim yetkisi olan kullanıcılarla sınırlandırılmıştır."
|
|
117
460
|
|
|
118
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
461
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:79
|
|
119
462
|
msgid "Restricted"
|
|
120
463
|
msgstr "Kısıtlı"
|
|
121
464
|
|
|
122
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
123
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
124
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
465
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:96
|
|
466
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:24
|
|
467
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:121
|
|
125
468
|
msgid "Preview"
|
|
126
469
|
msgstr "Gözden geçir"
|
|
127
470
|
|
|
128
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
471
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:100
|
|
129
472
|
msgid "You are previewing a published record."
|
|
130
473
|
msgstr "Yayınlanmış bir kaydı gözden geçiriyorsunuz."
|
|
131
474
|
|
|
132
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
475
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:102
|
|
133
476
|
msgid "You are previewing changes that have not yet been published."
|
|
134
477
|
msgstr "Yayınlanmamış değişiklikleri gözden geçiriyorsunuz."
|
|
135
478
|
|
|
136
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
479
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:104
|
|
137
480
|
msgid "You are previewing a new record that has not yet been published."
|
|
138
481
|
msgstr "Henüz yayınlanmamış yeni bir kaydı gözden geçiriyorsunuz."
|
|
139
482
|
|
|
140
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
483
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:106
|
|
141
484
|
msgid ""
|
|
142
485
|
"You are previewing a new record version that has not yet been published."
|
|
143
486
|
msgstr "Henüz yayınlanmamış yeni bir kayıt sürümünü gözden geçiriyorsunuz."
|
|
144
487
|
|
|
145
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
488
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:121
|
|
146
489
|
#, python-format
|
|
147
490
|
msgid ""
|
|
148
491
|
"\n"
|
|
149
|
-
" There is a %(link_start)snewer version%(link_end)s of the record
|
|
492
|
+
" There is a %(link_start)snewer version%(link_end)s of the record\n"
|
|
493
|
+
" available.\n"
|
|
150
494
|
" "
|
|
151
495
|
msgstr ""
|
|
496
|
+
"\n"
|
|
497
|
+
"Kaydın %(link_start)s daha yeni bir sürümü %(link_end)s mevcut."
|
|
152
498
|
|
|
153
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
499
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:145
|
|
154
500
|
msgid "Record access information"
|
|
155
|
-
msgstr ""
|
|
501
|
+
msgstr "Kayıt erişim bilgileri"
|
|
156
502
|
|
|
157
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
158
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
159
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
503
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:152
|
|
504
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:309
|
|
505
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:155
|
|
506
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:185
|
|
160
507
|
msgid "Reason"
|
|
161
508
|
msgstr "Sebep"
|
|
162
509
|
|
|
163
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
510
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:165
|
|
164
511
|
msgid "Back-navigation"
|
|
165
|
-
msgstr ""
|
|
512
|
+
msgstr "Geri-gezinme"
|
|
166
513
|
|
|
167
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
514
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:167
|
|
168
515
|
msgid "Back to edit"
|
|
169
516
|
msgstr "Düzenlemeye geri dön"
|
|
170
517
|
|
|
171
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
518
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:185
|
|
172
519
|
msgid "Manage record"
|
|
173
|
-
msgstr ""
|
|
520
|
+
msgstr "Kaydı yönet"
|
|
174
521
|
|
|
175
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
522
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:201
|
|
176
523
|
msgid "Publication date and version number"
|
|
177
|
-
msgstr ""
|
|
524
|
+
msgstr "Yayın tarihi ve sürüm numarası"
|
|
178
525
|
|
|
179
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
526
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:205
|
|
180
527
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:25
|
|
181
528
|
msgid "Publication date"
|
|
182
529
|
msgstr "Yayın tarihi"
|
|
183
530
|
|
|
184
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
531
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:206
|
|
185
532
|
msgid "Published"
|
|
186
533
|
msgstr "Yayınlanmış"
|
|
187
534
|
|
|
188
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
535
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:209
|
|
536
|
+
#, python-brace-format
|
|
189
537
|
msgid "Version {version_number}"
|
|
190
|
-
msgstr ""
|
|
538
|
+
msgstr "Sürüm {version_number}"
|
|
191
539
|
|
|
192
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
540
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:216
|
|
193
541
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:24
|
|
194
542
|
msgid "Resource type"
|
|
195
543
|
msgstr "Kaynak türü"
|
|
196
544
|
|
|
197
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
545
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:226
|
|
198
546
|
msgid "Access status"
|
|
199
547
|
msgstr "Erişim durumu"
|
|
200
548
|
|
|
201
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
549
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:248
|
|
202
550
|
msgid "Record title and creators"
|
|
203
|
-
msgstr ""
|
|
551
|
+
msgstr "Kayıt başlığı ve oluşturanlar"
|
|
204
552
|
|
|
205
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
553
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:254
|
|
206
554
|
msgid "Creators and contributors"
|
|
555
|
+
msgstr "Oluşturanlar ve katkıda bulunanlar"
|
|
556
|
+
|
|
557
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:315
|
|
558
|
+
msgid "Request access"
|
|
559
|
+
msgstr "Erişim yetkisi talebi"
|
|
560
|
+
|
|
561
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:317
|
|
562
|
+
msgid ""
|
|
563
|
+
"If you would like to request access to these files, please fill out the form"
|
|
564
|
+
" below."
|
|
207
565
|
msgstr ""
|
|
566
|
+
"Bu dosyalara erişim yetkisi talebinde bulunmak istiyorsanız lütfen aşağıdaki"
|
|
567
|
+
" formu doldurun."
|
|
208
568
|
|
|
209
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
210
|
-
msgid "
|
|
569
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:325
|
|
570
|
+
msgid ""
|
|
571
|
+
"You need to satisfy these conditions in order for this request to be "
|
|
572
|
+
"accepted:"
|
|
211
573
|
msgstr ""
|
|
574
|
+
"Bu talebin kabul edilebilmesi için şu koşulları sağlamanız gerekmektedir:"
|
|
212
575
|
|
|
213
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
214
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
msgid "Files"
|
|
218
|
-
msgstr "Dosyalar"
|
|
576
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:350
|
|
577
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:171
|
|
578
|
+
msgid "System files"
|
|
579
|
+
msgstr "Sistem dosyaları"
|
|
219
580
|
|
|
220
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
581
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:363
|
|
221
582
|
msgid "Additional record details"
|
|
222
|
-
msgstr ""
|
|
583
|
+
msgstr "İlave kayıt ayrıntıları"
|
|
223
584
|
|
|
224
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
225
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:16
|
|
585
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:377
|
|
226
586
|
msgid "Record details"
|
|
227
|
-
msgstr ""
|
|
587
|
+
msgstr "Kayıt ayrıntıları"
|
|
228
588
|
|
|
229
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
230
|
-
msgid "
|
|
231
|
-
msgstr "
|
|
589
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:394
|
|
590
|
+
msgid "Jump to top of page"
|
|
591
|
+
msgstr "Sayfanın başına git"
|
|
232
592
|
|
|
233
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
234
|
-
msgid "
|
|
235
|
-
msgstr ""
|
|
593
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:396
|
|
594
|
+
msgid "Jump up"
|
|
595
|
+
msgstr "Başa dön"
|
|
236
596
|
|
|
237
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/
|
|
238
|
-
|
|
239
|
-
|
|
597
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html:10
|
|
598
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html:14
|
|
599
|
+
msgid "Draft not found"
|
|
600
|
+
msgstr "Taslak bulunamadı"
|
|
240
601
|
|
|
241
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/
|
|
242
|
-
msgid "
|
|
602
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html:15
|
|
603
|
+
msgid ""
|
|
604
|
+
"This record has already been published and is not currently being edited, so"
|
|
605
|
+
" no draft exists."
|
|
243
606
|
msgstr ""
|
|
607
|
+
"Bu kayıt zaten yayınlanmış ve şu anda düzenlenmiyor, bu nedenle taslak "
|
|
608
|
+
"mevcut değil."
|
|
244
609
|
|
|
245
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/
|
|
246
|
-
msgid "
|
|
247
|
-
msgstr "
|
|
610
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html:16
|
|
611
|
+
msgid "Go to published record"
|
|
612
|
+
msgstr "Yayınlanmış kayda git"
|
|
248
613
|
|
|
249
614
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/export.html:18
|
|
250
615
|
msgid "Back to details"
|
|
@@ -252,106 +617,237 @@ msgstr "Ayrıntılara geri dön"
|
|
|
252
617
|
|
|
253
618
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/iiif_preview.html:13
|
|
254
619
|
msgid "Preview for"
|
|
620
|
+
msgstr "Şu dosya için ön izle:"
|
|
621
|
+
|
|
622
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html:14
|
|
623
|
+
msgid "Permission required"
|
|
624
|
+
msgstr "İzin gerekli"
|
|
625
|
+
|
|
626
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html:18
|
|
627
|
+
msgid ""
|
|
628
|
+
"The record was previously accessible to the public but is now restricted to "
|
|
629
|
+
"users with access."
|
|
255
630
|
msgstr ""
|
|
631
|
+
"Kayıt daha önce herkese açıktı ancak şu anda sadece erişim yetkisi olan "
|
|
632
|
+
"kullanıcılarla sınırlı."
|
|
633
|
+
|
|
634
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html:20
|
|
635
|
+
msgid ""
|
|
636
|
+
"The Digital Object Identifier (DOI) associated with this record remains "
|
|
637
|
+
"active for reference."
|
|
638
|
+
msgstr ""
|
|
639
|
+
"Bu kayıtla ilişkili Dijital Nesne Tanımlayıcısı (DOI) referans için etkin "
|
|
640
|
+
"kalır."
|
|
641
|
+
|
|
642
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html:27
|
|
643
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:55
|
|
644
|
+
msgid "Identifier:"
|
|
645
|
+
msgstr "Tanımlayıcı:"
|
|
256
646
|
|
|
257
647
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/search.html:8
|
|
258
648
|
msgid "Search results"
|
|
259
649
|
msgstr "Arama Sonuçları"
|
|
260
650
|
|
|
261
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:
|
|
651
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:10
|
|
262
652
|
msgid "Tombstone"
|
|
263
653
|
msgstr "Mezar taşı belirteci"
|
|
264
654
|
|
|
265
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:
|
|
655
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:11
|
|
656
|
+
msgid "Reason unknown"
|
|
657
|
+
msgstr "Nedeni bilinmiyor"
|
|
658
|
+
|
|
659
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:21
|
|
266
660
|
msgid "Gone"
|
|
267
661
|
msgstr "Kaldırıldı"
|
|
268
662
|
|
|
269
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:
|
|
663
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:26
|
|
270
664
|
#, python-format
|
|
271
665
|
msgid ""
|
|
272
666
|
"\n"
|
|
273
|
-
"
|
|
274
|
-
"
|
|
275
|
-
" "
|
|
667
|
+
" The record you are trying to access was removed from %(sitename)s. The\n"
|
|
668
|
+
" metadata of the record is kept for archival purposes."
|
|
276
669
|
msgstr ""
|
|
277
670
|
"\n"
|
|
278
|
-
"Erişmeye çalıştığınız kayıt %(sitename)
|
|
671
|
+
"Erişmeye çalıştığınız kayıt %(sitename)s sitesinden kaldırıldı. Kaydın\n"
|
|
672
|
+
"meta verileri arşivleme amacıyla saklanmaktadır."
|
|
279
673
|
|
|
280
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:
|
|
674
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:35
|
|
281
675
|
msgid "Reason for removal:"
|
|
282
676
|
msgstr "Kaldırılma nedeni:"
|
|
283
677
|
|
|
284
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/
|
|
285
|
-
|
|
286
|
-
|
|
678
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:38
|
|
679
|
+
msgid "Removed by:"
|
|
680
|
+
msgstr "Kaldıran kullanıcı:"
|
|
681
|
+
|
|
682
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:42
|
|
683
|
+
msgid "Removal note:"
|
|
684
|
+
msgstr "Kaldırma notu:"
|
|
685
|
+
|
|
686
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:46
|
|
687
|
+
msgid "Date of removal:"
|
|
688
|
+
msgstr "Kaldırma tarihi:"
|
|
689
|
+
|
|
690
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:50
|
|
691
|
+
msgid "Citation:"
|
|
692
|
+
msgstr "Alıntı:"
|
|
693
|
+
|
|
694
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:16
|
|
695
|
+
msgid "You are currently not logged in"
|
|
696
|
+
msgstr ""
|
|
697
|
+
|
|
698
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:16
|
|
699
|
+
msgid "Do you have an account?"
|
|
700
|
+
msgstr ""
|
|
701
|
+
|
|
702
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:17
|
|
703
|
+
msgid "Log in here"
|
|
287
704
|
msgstr ""
|
|
288
705
|
|
|
289
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/
|
|
706
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:22
|
|
707
|
+
msgid "You are logged in as"
|
|
708
|
+
msgstr "Şu isimle oturum açtınız:"
|
|
709
|
+
|
|
710
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:30
|
|
711
|
+
msgid "Not you?"
|
|
712
|
+
msgstr ""
|
|
713
|
+
|
|
714
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:31
|
|
715
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:113
|
|
716
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:145
|
|
717
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:153
|
|
718
|
+
msgid "Log out"
|
|
719
|
+
msgstr "Çıkış yap"
|
|
720
|
+
|
|
721
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:31
|
|
722
|
+
msgid "to switch account."
|
|
723
|
+
msgstr ""
|
|
724
|
+
|
|
725
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/contact.html:11
|
|
726
|
+
msgid "Send message"
|
|
727
|
+
msgstr ""
|
|
728
|
+
|
|
729
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/creatibutors.html:16
|
|
730
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:73
|
|
290
731
|
msgid "Creators"
|
|
291
732
|
msgstr "Oluşturanlar"
|
|
292
733
|
|
|
293
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/creatibutors.html:
|
|
294
|
-
msgid "Contributors
|
|
295
|
-
msgstr ""
|
|
734
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/creatibutors.html:34
|
|
735
|
+
msgid "Contributors"
|
|
736
|
+
msgstr "Katkıda Bulunan Kişiler"
|
|
296
737
|
|
|
297
738
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/description.html:14
|
|
298
739
|
msgid "Record description"
|
|
299
|
-
msgstr ""
|
|
740
|
+
msgstr "Kayıt açıklaması"
|
|
300
741
|
|
|
301
742
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/description.html:15
|
|
302
743
|
msgid "Description"
|
|
303
744
|
msgstr "Tanım"
|
|
304
745
|
|
|
305
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
746
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:38
|
|
306
747
|
msgid "Additional details"
|
|
307
748
|
msgstr "Ek detaylar"
|
|
308
749
|
|
|
309
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
750
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:55
|
|
751
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:73
|
|
310
752
|
msgid "Additional titles"
|
|
311
753
|
msgstr "Ek başlıklar"
|
|
312
754
|
|
|
313
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
755
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:98
|
|
756
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:116
|
|
314
757
|
msgid "Identifiers"
|
|
315
|
-
msgstr ""
|
|
758
|
+
msgstr "Tanımlayıcılar"
|
|
316
759
|
|
|
317
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
760
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:141
|
|
761
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:157
|
|
318
762
|
msgid "Related works"
|
|
319
763
|
msgstr "İlgili çalışmalar"
|
|
320
764
|
|
|
321
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
765
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:180
|
|
766
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:198
|
|
322
767
|
msgid "Funding"
|
|
323
768
|
msgstr "Finansman"
|
|
324
769
|
|
|
325
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
770
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:223
|
|
771
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:241
|
|
326
772
|
msgid "Dates"
|
|
327
773
|
msgstr "Tarihler"
|
|
328
774
|
|
|
329
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
330
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/
|
|
775
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:311
|
|
776
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:327
|
|
331
777
|
msgid "References"
|
|
332
778
|
msgstr "Referanslar"
|
|
333
779
|
|
|
334
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/
|
|
335
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/
|
|
336
|
-
msgid "
|
|
337
|
-
msgstr "
|
|
338
|
-
|
|
339
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
780
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:17
|
|
781
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:55
|
|
782
|
+
msgid "Views"
|
|
783
|
+
msgstr "Görüntüleme"
|
|
784
|
+
|
|
785
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:25
|
|
786
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:75
|
|
787
|
+
msgid "Downloads"
|
|
788
|
+
msgstr "İndirilenler"
|
|
789
|
+
|
|
790
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:36
|
|
791
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:39
|
|
792
|
+
msgid "Show more details"
|
|
793
|
+
msgstr "Daha fazla ayrıntı göster"
|
|
794
|
+
|
|
795
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:37
|
|
796
|
+
msgid "Show less details"
|
|
797
|
+
msgstr "Daha az ayrıntı göster"
|
|
798
|
+
|
|
799
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:48
|
|
800
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:70
|
|
801
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:90
|
|
802
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:112
|
|
803
|
+
msgid "All versions"
|
|
804
|
+
msgstr "Tüm sürümler"
|
|
805
|
+
|
|
806
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:49
|
|
807
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:71
|
|
808
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:91
|
|
809
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:113
|
|
810
|
+
msgid "This version"
|
|
811
|
+
msgstr "Bu sürüm"
|
|
812
|
+
|
|
813
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:62
|
|
814
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:82
|
|
815
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:102
|
|
816
|
+
msgid "More info"
|
|
817
|
+
msgstr "Daha fazla bilgi"
|
|
818
|
+
|
|
819
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:67
|
|
820
|
+
msgid "Total views"
|
|
821
|
+
msgstr "Toplam görüntüleme"
|
|
822
|
+
|
|
823
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:87
|
|
824
|
+
msgid "Total downloads"
|
|
825
|
+
msgstr "Toplam indirme"
|
|
826
|
+
|
|
827
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:95
|
|
828
|
+
msgid "Data volume"
|
|
829
|
+
msgstr "Veri miktarı"
|
|
830
|
+
|
|
831
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:107
|
|
832
|
+
msgid "Total data volume"
|
|
833
|
+
msgstr "Toplam veri miktarı"
|
|
834
|
+
|
|
835
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:119
|
|
836
|
+
msgid "More info on how stats are collected."
|
|
837
|
+
msgstr "İstatistiksel verilerin nasıl toplandığına dair daha fazla bilgi"
|
|
346
838
|
|
|
347
839
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:15
|
|
348
840
|
msgid "Keywords"
|
|
349
841
|
msgstr "Anahtar Kelimeler"
|
|
350
842
|
|
|
351
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:
|
|
352
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:
|
|
843
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:22
|
|
844
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:39
|
|
353
845
|
msgid "Search results for "
|
|
354
|
-
msgstr ""
|
|
846
|
+
msgstr "Şu konu için sonuçları ara"
|
|
847
|
+
|
|
848
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/citations.html:2
|
|
849
|
+
msgid "Citation"
|
|
850
|
+
msgstr "Alıntı"
|
|
355
851
|
|
|
356
852
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:17
|
|
357
853
|
msgid "Details"
|
|
@@ -362,55 +858,96 @@ msgid "Publisher"
|
|
|
362
858
|
msgstr "Yayımcı"
|
|
363
859
|
|
|
364
860
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:27
|
|
861
|
+
msgid "Published in"
|
|
862
|
+
msgstr "Yayınlandığı dergi"
|
|
863
|
+
|
|
864
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:28
|
|
865
|
+
msgid "Imprint"
|
|
866
|
+
msgstr "Baskı"
|
|
867
|
+
|
|
868
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:29
|
|
869
|
+
msgid "Awarding university"
|
|
870
|
+
msgstr "Derece/diploma/sertifika veren üniversite"
|
|
871
|
+
|
|
872
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:30
|
|
873
|
+
msgid "Conference"
|
|
874
|
+
msgstr "Konferans"
|
|
875
|
+
|
|
876
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:31
|
|
365
877
|
msgid "Languages"
|
|
366
878
|
msgstr "Diller"
|
|
367
879
|
|
|
368
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:
|
|
880
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:32
|
|
369
881
|
msgid "Formats"
|
|
370
882
|
msgstr "Biçimler"
|
|
371
883
|
|
|
372
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:
|
|
884
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:33
|
|
373
885
|
msgid "Sizes"
|
|
374
886
|
msgstr "Boyutlar"
|
|
375
887
|
|
|
376
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/export.html:13
|
|
377
888
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/export.html:14
|
|
378
889
|
msgid "Export"
|
|
379
890
|
msgstr "Dışa Aktar"
|
|
380
891
|
|
|
381
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/
|
|
892
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/external_resources.html:9
|
|
893
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/external_resources.html:10
|
|
894
|
+
msgid "External resources"
|
|
895
|
+
msgstr "Harici kaynaklar"
|
|
896
|
+
|
|
382
897
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/keywords_subjects.html:13
|
|
898
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/keywords_subjects.html:14
|
|
383
899
|
msgid "Keywords and subjects"
|
|
384
|
-
msgstr ""
|
|
385
|
-
|
|
386
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:
|
|
387
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:
|
|
388
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:
|
|
389
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:
|
|
390
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:
|
|
900
|
+
msgstr "Anahtar kelimeler ve konular"
|
|
901
|
+
|
|
902
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:14
|
|
903
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:16
|
|
904
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:162
|
|
905
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:191
|
|
906
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:61
|
|
907
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/user-access-request/index.html:43
|
|
391
908
|
msgid "Opens in new tab"
|
|
392
|
-
msgstr ""
|
|
909
|
+
msgstr "Yeni sekmede açılır"
|
|
910
|
+
|
|
911
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:14
|
|
912
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:16
|
|
913
|
+
msgid "Read more"
|
|
914
|
+
msgstr "Devamını okuyun"
|
|
393
915
|
|
|
394
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:22
|
|
395
916
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:23
|
|
396
917
|
msgid "Rights"
|
|
397
|
-
msgstr ""
|
|
918
|
+
msgstr "Haklar"
|
|
398
919
|
|
|
399
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:
|
|
920
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:54
|
|
400
921
|
msgid "Close"
|
|
401
922
|
msgstr "Kapat"
|
|
402
923
|
|
|
403
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:
|
|
924
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:58
|
|
404
925
|
msgid "No further description."
|
|
405
|
-
msgstr ""
|
|
926
|
+
msgstr "Daha fazla açıklama yok."
|
|
927
|
+
|
|
928
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/locations.html:14
|
|
929
|
+
msgid "Geographic locations"
|
|
930
|
+
msgstr "Coğrafi konumlar"
|
|
406
931
|
|
|
407
932
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/manage_menu.html:10
|
|
408
933
|
msgid "Record management"
|
|
409
|
-
msgstr ""
|
|
934
|
+
msgstr "Kayıt yönetimi"
|
|
410
935
|
|
|
411
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/
|
|
412
|
-
msgid "
|
|
413
|
-
msgstr ""
|
|
936
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/metrics.html:12
|
|
937
|
+
msgid "Metrics"
|
|
938
|
+
msgstr "Ölçümler"
|
|
939
|
+
|
|
940
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html:5
|
|
941
|
+
msgid "Upload information"
|
|
942
|
+
msgstr "Yükleme Bilgileri"
|
|
943
|
+
|
|
944
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html:8
|
|
945
|
+
msgid "Technical metadata"
|
|
946
|
+
msgstr "Teknik meta veriler"
|
|
947
|
+
|
|
948
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html:15
|
|
949
|
+
msgid "Modified"
|
|
950
|
+
msgstr "Değiştirilme"
|
|
414
951
|
|
|
415
952
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/versions.html:12
|
|
416
953
|
msgid "Versions"
|
|
@@ -422,43 +959,59 @@ msgstr "Sürümler"
|
|
|
422
959
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html:88
|
|
423
960
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html:89
|
|
424
961
|
msgid "profile"
|
|
425
|
-
msgstr ""
|
|
962
|
+
msgstr "profil"
|
|
426
963
|
|
|
427
964
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html:71
|
|
428
965
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html:75
|
|
429
966
|
msgid "Show affiliations"
|
|
430
|
-
msgstr ""
|
|
967
|
+
msgstr "Bağlı olunan kurum/kuruluşları göster"
|
|
431
968
|
|
|
432
969
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html:72
|
|
433
970
|
msgid "Hide affiliations"
|
|
434
|
-
msgstr ""
|
|
971
|
+
msgstr "Bağlı olunan kurum/kuruluşları sakla"
|
|
435
972
|
|
|
436
973
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html:79
|
|
437
974
|
msgid "Affiliations for"
|
|
438
|
-
msgstr ""
|
|
975
|
+
msgstr "Şunlar için bağlantılar:"
|
|
439
976
|
|
|
440
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:
|
|
977
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:119
|
|
441
978
|
msgid "Open external link"
|
|
442
|
-
msgstr ""
|
|
979
|
+
msgstr "Harici bağlantıyı aç"
|
|
980
|
+
|
|
981
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:297
|
|
982
|
+
msgid "Conference website"
|
|
983
|
+
msgstr "Konferans web sitesi"
|
|
984
|
+
|
|
985
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html:9
|
|
986
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html:24
|
|
987
|
+
msgid "DOI"
|
|
988
|
+
msgstr "DOI (Dijital Nesne Tanımlayıcı)"
|
|
443
989
|
|
|
444
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/
|
|
990
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html:15
|
|
991
|
+
msgid "Get the DOI badge!"
|
|
992
|
+
msgstr "DOI rozetini alın!"
|
|
993
|
+
|
|
994
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html:21
|
|
995
|
+
msgid "DOI Badge"
|
|
996
|
+
msgstr "DOI Rozeti"
|
|
997
|
+
|
|
998
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:44
|
|
445
999
|
msgid "File preview"
|
|
446
|
-
msgstr ""
|
|
1000
|
+
msgstr "Dosya önizleme"
|
|
447
1001
|
|
|
448
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
1002
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:76
|
|
449
1003
|
msgid "Name"
|
|
450
1004
|
msgstr "Ad"
|
|
451
1005
|
|
|
452
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
1006
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:77
|
|
453
1007
|
msgid "Size"
|
|
454
1008
|
msgstr "Boyut"
|
|
455
1009
|
|
|
456
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
msgstr "Eylemler"
|
|
1010
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:82
|
|
1011
|
+
msgid "Download all"
|
|
1012
|
+
msgstr "Hepisini indir"
|
|
460
1013
|
|
|
461
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
1014
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:111
|
|
462
1015
|
msgid ""
|
|
463
1016
|
"This is the file fingerprint (checksum), which can be used to verify the "
|
|
464
1017
|
"file integrity."
|
|
@@ -466,274 +1019,372 @@ msgstr ""
|
|
|
466
1019
|
"Bu, dosya bütünlüğünü doğrulamak için kullanılabilen dosya parmak izidir "
|
|
467
1020
|
"(sağlama toplamı)."
|
|
468
1021
|
|
|
469
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
1022
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:125
|
|
470
1023
|
msgid "Download"
|
|
471
1024
|
msgstr "İndir"
|
|
472
1025
|
|
|
473
|
-
#: invenio_app_rdm/records_ui/
|
|
474
|
-
msgid "
|
|
1026
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/locations.html:55
|
|
1027
|
+
msgid "Unknown"
|
|
1028
|
+
msgstr "Bilinmeyen"
|
|
1029
|
+
|
|
1030
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/stats_popup.html:9
|
|
1031
|
+
msgid "See the full number"
|
|
1032
|
+
msgstr "Sayının tamamını görüntüleyin"
|
|
1033
|
+
|
|
1034
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/version.html:13
|
|
1035
|
+
msgid "Version"
|
|
1036
|
+
msgstr "Sürüm"
|
|
1037
|
+
|
|
1038
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/version.html:14
|
|
1039
|
+
msgid "No DOI available"
|
|
1040
|
+
msgstr ""
|
|
1041
|
+
|
|
1042
|
+
#: invenio_app_rdm/records_ui/views/deposits.py:71
|
|
1043
|
+
#, python-format
|
|
1044
|
+
msgid "Discard the reserved %(scheme_label)s."
|
|
475
1045
|
msgstr ""
|
|
476
1046
|
|
|
477
|
-
#: invenio_app_rdm/records_ui/views/deposits.py:
|
|
478
|
-
|
|
479
|
-
|
|
1047
|
+
#: invenio_app_rdm/records_ui/views/deposits.py:74
|
|
1048
|
+
#, python-format
|
|
1049
|
+
msgid "Get a %(scheme_label)s now!"
|
|
1050
|
+
msgstr ""
|
|
480
1051
|
|
|
481
|
-
#: invenio_app_rdm/records_ui/views/deposits.py:
|
|
1052
|
+
#: invenio_app_rdm/records_ui/views/deposits.py:77
|
|
1053
|
+
#, python-format
|
|
482
1054
|
msgid ""
|
|
483
|
-
"Reserve a
|
|
484
|
-
"files prior to upload). The
|
|
485
|
-
" published."
|
|
1055
|
+
"Reserve a %(scheme_label)s by pressing the button (so it can be included in "
|
|
1056
|
+
"files prior to upload). The %(scheme_label)s is registered when your upload "
|
|
1057
|
+
"is published."
|
|
486
1058
|
msgstr ""
|
|
487
1059
|
|
|
488
|
-
#: invenio_app_rdm/records_ui/views/deposits.py:
|
|
1060
|
+
#: invenio_app_rdm/records_ui/views/deposits.py:83
|
|
1061
|
+
#, python-format
|
|
489
1062
|
msgid ""
|
|
490
|
-
"A
|
|
1063
|
+
"A %(scheme_label)s allows your upload to be easily and unambiguously cited. "
|
|
491
1064
|
"Example: 10.1234/foo.bar"
|
|
492
1065
|
msgstr ""
|
|
493
1066
|
|
|
494
|
-
#: invenio_app_rdm/
|
|
1067
|
+
#: invenio_app_rdm/records_ui/views/deposits.py:197
|
|
1068
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:11
|
|
1069
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:19
|
|
1070
|
+
msgid "All"
|
|
1071
|
+
msgstr "Hepsi"
|
|
1072
|
+
|
|
1073
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/community_dashboard.html:21
|
|
495
1074
|
msgid "Back to invitations"
|
|
496
|
-
msgstr ""
|
|
1075
|
+
msgstr "Davetiyelere geri dön"
|
|
497
1076
|
|
|
498
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/user_dashboard.html:
|
|
499
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/
|
|
1077
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/user_dashboard.html:19
|
|
1078
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:31
|
|
1079
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/guest-access-request/index.html:34
|
|
1080
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/user-access-request/index.html:28
|
|
500
1081
|
msgid "Back to requests"
|
|
501
|
-
msgstr ""
|
|
1082
|
+
msgstr "Taleplere geri dön"
|
|
502
1083
|
|
|
503
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:
|
|
1084
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:52
|
|
504
1085
|
msgid "Conversation"
|
|
505
|
-
msgstr ""
|
|
1086
|
+
msgstr "Konuşmalar"
|
|
506
1087
|
|
|
507
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:
|
|
1088
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:64
|
|
508
1089
|
msgid "Record"
|
|
509
1090
|
msgstr "Kayıt"
|
|
510
1091
|
|
|
511
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/
|
|
1092
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/guest-access-request/index.html:13
|
|
1093
|
+
msgid "Access request"
|
|
1094
|
+
msgstr "Erişim yetkisi talebi"
|
|
1095
|
+
|
|
1096
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:25
|
|
512
1097
|
msgid "View Community"
|
|
513
|
-
msgstr ""
|
|
1098
|
+
msgstr "Topluluğu Görüntüle"
|
|
514
1099
|
|
|
515
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:
|
|
1100
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:63
|
|
516
1101
|
msgid "View record"
|
|
517
|
-
msgstr ""
|
|
1102
|
+
msgstr "Kaydı görüntüle"
|
|
518
1103
|
|
|
519
|
-
#: invenio_app_rdm/theme/views.py:
|
|
520
|
-
msgid "
|
|
521
|
-
msgstr ""
|
|
1104
|
+
#: invenio_app_rdm/theme/views.py:132
|
|
1105
|
+
msgid "Notification preferences were updated."
|
|
1106
|
+
msgstr "Bildirim tercihleri güncellendi."
|
|
522
1107
|
|
|
523
1108
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:18
|
|
524
1109
|
msgid "About InvenioRDM"
|
|
525
1110
|
msgstr "InvenioRDM Hakkında"
|
|
526
1111
|
|
|
527
1112
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:19
|
|
528
|
-
|
|
529
|
-
msgid ""
|
|
530
|
-
"\n"
|
|
531
|
-
" <p><a href=\"%(invenio_rdm)s\">Product page</a></p>\n"
|
|
532
|
-
" "
|
|
1113
|
+
msgid "Product page"
|
|
533
1114
|
msgstr ""
|
|
534
1115
|
|
|
535
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
536
|
-
|
|
537
|
-
msgid ""
|
|
538
|
-
"\n"
|
|
539
|
-
" <p><a href=\"%(invenio_rdm_features)s\">Features</a></p>\n"
|
|
540
|
-
" "
|
|
1116
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:20
|
|
1117
|
+
msgid "Features"
|
|
541
1118
|
msgstr ""
|
|
542
1119
|
|
|
543
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
544
|
-
|
|
545
|
-
msgid ""
|
|
546
|
-
"\n"
|
|
547
|
-
" <p><a href=\"%(invenio_rdm_roadmap)s\">Roadmap</a></p>\n"
|
|
548
|
-
" "
|
|
1120
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:21
|
|
1121
|
+
msgid "Roadmap"
|
|
549
1122
|
msgstr ""
|
|
550
1123
|
|
|
551
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
552
|
-
|
|
553
|
-
msgid ""
|
|
554
|
-
"\n"
|
|
555
|
-
" <p><a href=\"%(invenio_rdm_demo_site)s\">Demo site</a></p>\n"
|
|
556
|
-
" "
|
|
1124
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:22
|
|
1125
|
+
msgid "Demo site"
|
|
557
1126
|
msgstr ""
|
|
558
1127
|
|
|
559
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
1128
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:25
|
|
560
1129
|
msgid "Get involved"
|
|
561
1130
|
msgstr "Katılın"
|
|
562
1131
|
|
|
563
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
"\n"
|
|
567
|
-
" <p><a href=\"%(invenio_rdm_gh)s\">GitHub</a></p>\n"
|
|
568
|
-
" "
|
|
569
|
-
msgstr ""
|
|
1132
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:26
|
|
1133
|
+
msgid "GitHub"
|
|
1134
|
+
msgstr "GitHub"
|
|
570
1135
|
|
|
571
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
572
|
-
|
|
573
|
-
msgid ""
|
|
574
|
-
"\n"
|
|
575
|
-
" <p><a href=\"%(invenio_rdm_milestones)s\">Project Milestones</a></p>\n"
|
|
576
|
-
" "
|
|
1136
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:27
|
|
1137
|
+
msgid "Project Milestones"
|
|
577
1138
|
msgstr ""
|
|
578
1139
|
|
|
579
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
580
|
-
|
|
581
|
-
msgid ""
|
|
582
|
-
"\n"
|
|
583
|
-
" <p><a href=\"%(invenio_rdm_docs_site)s\">Documentation</a></p>\n"
|
|
584
|
-
" "
|
|
1140
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:28
|
|
1141
|
+
msgid "Documentation"
|
|
585
1142
|
msgstr ""
|
|
586
1143
|
|
|
587
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
1144
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:31
|
|
588
1145
|
msgid "Community"
|
|
589
1146
|
msgstr "Topluluk"
|
|
590
1147
|
|
|
591
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
592
|
-
|
|
593
|
-
msgid ""
|
|
594
|
-
"\n"
|
|
595
|
-
" <p><a href=\"%(invenio_rdm_chatroom)s\">Chatroom</a></p>\n"
|
|
596
|
-
" "
|
|
1148
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:32
|
|
1149
|
+
msgid "Chatroom"
|
|
597
1150
|
msgstr ""
|
|
598
1151
|
|
|
599
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
600
|
-
|
|
601
|
-
msgid ""
|
|
602
|
-
"\n"
|
|
603
|
-
" <p><a href=\"%(invenio_rdm_talk)s\">Forum</a></p>\n"
|
|
604
|
-
" "
|
|
1152
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:33
|
|
1153
|
+
msgid "Forum"
|
|
605
1154
|
msgstr ""
|
|
606
1155
|
|
|
607
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
608
|
-
|
|
609
|
-
msgid ""
|
|
610
|
-
"\n"
|
|
611
|
-
" <p><a href=\"%(invenio_events)s\">Events & training</a></p>\n"
|
|
612
|
-
" "
|
|
1156
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:34
|
|
1157
|
+
msgid "Events & training"
|
|
613
1158
|
msgstr ""
|
|
614
1159
|
|
|
615
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
616
|
-
|
|
617
|
-
msgid ""
|
|
618
|
-
"Powered by <a\n"
|
|
619
|
-
" href=\"%(invenio_rdm)s\">InvenioRDM</a>"
|
|
1160
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:19
|
|
1161
|
+
msgid "Impersonated session"
|
|
620
1162
|
msgstr ""
|
|
621
|
-
"<a\n"
|
|
622
|
-
" href=\"%(invenio_rdm)s\">InvenioRDM</a> tarafından desteklenmektedir"
|
|
623
1163
|
|
|
624
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
625
|
-
msgid "You
|
|
1164
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:21
|
|
1165
|
+
msgid "You must logout after you finish with you inquiry!"
|
|
626
1166
|
msgstr ""
|
|
627
1167
|
|
|
628
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1168
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:38
|
|
1169
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:37
|
|
1170
|
+
msgid "home"
|
|
1171
|
+
msgstr "ana sayfa"
|
|
1172
|
+
|
|
1173
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:51
|
|
1174
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:50
|
|
1175
|
+
msgid "Menu"
|
|
1176
|
+
msgstr "Menü"
|
|
1177
|
+
|
|
1178
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:68
|
|
1179
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:67
|
|
1180
|
+
msgid "Close menu"
|
|
1181
|
+
msgstr "Menüyü kapat"
|
|
1182
|
+
|
|
1183
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:120
|
|
1184
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:120
|
|
1185
|
+
msgid "Inbox"
|
|
1186
|
+
msgstr "Gelen Kutusu"
|
|
1187
|
+
|
|
1188
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_frontpage.html:36
|
|
1189
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_frontpage.html:37
|
|
1190
|
+
msgid "Search"
|
|
1191
|
+
msgstr "Ara"
|
|
1192
|
+
|
|
1193
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:18
|
|
1194
|
+
msgid "Log in"
|
|
1195
|
+
msgstr "Giriş yap"
|
|
1196
|
+
|
|
1197
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:22
|
|
1198
|
+
msgid "Sign up"
|
|
1199
|
+
msgstr "Kayıt ol"
|
|
1200
|
+
|
|
1201
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:39
|
|
1202
|
+
msgid "Quick create"
|
|
1203
|
+
msgstr "Hızlı oluştur"
|
|
1204
|
+
|
|
1205
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:56
|
|
1206
|
+
msgid "Actions"
|
|
1207
|
+
msgstr "Eylemler"
|
|
1208
|
+
|
|
1209
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:77
|
|
1210
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:120
|
|
1211
|
+
msgid "My account"
|
|
1212
|
+
msgstr "Hesabım"
|
|
1213
|
+
|
|
1214
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:12
|
|
1215
|
+
msgid "You've successfully installed InvenioRDM!"
|
|
1216
|
+
msgstr "InvenioRDM'i başarıyla kurdunuz!"
|
|
1217
|
+
|
|
1218
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:14
|
|
629
1219
|
msgid "What is ahead?"
|
|
630
|
-
msgstr ""
|
|
1220
|
+
msgstr "Sırada ne var?"
|
|
631
1221
|
|
|
632
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1222
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:24
|
|
633
1223
|
msgid "Configure"
|
|
634
1224
|
msgstr "Yapılandır"
|
|
635
1225
|
|
|
636
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
637
|
-
#, python-format
|
|
1226
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:27
|
|
638
1227
|
msgid ""
|
|
639
|
-
"
|
|
640
|
-
"
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
1228
|
+
"Configure the datamodel, resource types, permissions and much more to make "
|
|
1229
|
+
"it suit your needs! For more information on how to do it visit the"
|
|
1230
|
+
msgstr ""
|
|
1231
|
+
|
|
1232
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:29
|
|
1233
|
+
msgid "configuration section in the docs"
|
|
644
1234
|
msgstr ""
|
|
645
1235
|
|
|
646
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1236
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:41
|
|
647
1237
|
msgid "Customize"
|
|
648
1238
|
msgstr "Özelleştir"
|
|
649
1239
|
|
|
650
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
651
|
-
#, python-format
|
|
1240
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:44
|
|
652
1241
|
msgid ""
|
|
653
|
-
"
|
|
654
|
-
"
|
|
655
|
-
" href=\"%(configuration_link)s\" target=\"_blank\">here</a>.\n"
|
|
656
|
-
" "
|
|
1242
|
+
"Customize the layout and adapt the styling to match your institution's. See "
|
|
1243
|
+
"how to do so"
|
|
657
1244
|
msgstr ""
|
|
658
1245
|
|
|
659
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1246
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:46
|
|
1247
|
+
msgid "here"
|
|
1248
|
+
msgstr "burada"
|
|
1249
|
+
|
|
1250
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:57
|
|
660
1251
|
msgid "Run it!"
|
|
661
|
-
msgstr ""
|
|
1252
|
+
msgstr "Çalıştır!"
|
|
662
1253
|
|
|
663
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
664
|
-
|
|
665
|
-
msgid ""
|
|
666
|
-
"\n"
|
|
667
|
-
" <a href=\"%(deployment_link)s\" target=\"_blank\">Run</a> your\n"
|
|
668
|
-
" InvenioRDM instance locally or in containers.\n"
|
|
669
|
-
" "
|
|
1254
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:59
|
|
1255
|
+
msgid "Run your InvenioRDM instance locally or in containers."
|
|
670
1256
|
msgstr ""
|
|
671
1257
|
|
|
672
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1258
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:61
|
|
1259
|
+
msgid "Run"
|
|
1260
|
+
msgstr "Çalıştır"
|
|
1261
|
+
|
|
1262
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:75
|
|
673
1263
|
msgid "Docs"
|
|
674
1264
|
msgstr "Dokümanlar"
|
|
675
1265
|
|
|
676
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1266
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:84
|
|
677
1267
|
msgid "Code"
|
|
678
1268
|
msgstr "Kaynak Kodu"
|
|
679
1269
|
|
|
680
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
681
|
-
msgid "
|
|
682
|
-
msgstr "
|
|
1270
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:91
|
|
1271
|
+
msgid "To disable this section, add"
|
|
1272
|
+
msgstr ""
|
|
1273
|
+
"Bu bölümü devre dışı bırakmak için şu kodu invenio.cfg dosyasına ekleyin:"
|
|
683
1274
|
|
|
684
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
685
|
-
msgid "
|
|
1275
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:93
|
|
1276
|
+
msgid "to your invenio.cfg file."
|
|
1277
|
+
msgstr " "
|
|
1278
|
+
|
|
1279
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:6
|
|
1280
|
+
msgid "In this community"
|
|
1281
|
+
msgstr "Bu toplulukta"
|
|
1282
|
+
|
|
1283
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:30
|
|
1284
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:31
|
|
1285
|
+
msgid "Search records"
|
|
1286
|
+
msgstr "Kayıtları ara"
|
|
1287
|
+
|
|
1288
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/site_footer.html:15
|
|
1289
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:15
|
|
1290
|
+
msgid "Powered by"
|
|
1291
|
+
msgstr "tarafından desteklenmektedir"
|
|
1292
|
+
|
|
1293
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:13
|
|
1294
|
+
msgid ""
|
|
1295
|
+
"The following files were flagged as 'unhealthy'. This means that the "
|
|
1296
|
+
"checksum check failed or timed out. Please take any action if needed."
|
|
686
1297
|
msgstr ""
|
|
687
1298
|
|
|
688
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
msgstr "Talepler"
|
|
1299
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:16
|
|
1300
|
+
#, python-format
|
|
1301
|
+
msgid "ID: %s"
|
|
1302
|
+
msgstr ""
|
|
693
1303
|
|
|
694
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
695
|
-
|
|
1304
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:17
|
|
1305
|
+
#, python-format
|
|
1306
|
+
msgid "URI: %s"
|
|
696
1307
|
msgstr ""
|
|
697
1308
|
|
|
698
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
699
|
-
|
|
700
|
-
|
|
1309
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:19
|
|
1310
|
+
#, python-format
|
|
1311
|
+
msgid "Name: %s"
|
|
1312
|
+
msgstr ""
|
|
701
1313
|
|
|
702
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
703
|
-
|
|
704
|
-
|
|
1314
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:21
|
|
1315
|
+
#, python-format
|
|
1316
|
+
msgid "Created: %s"
|
|
1317
|
+
msgstr ""
|
|
705
1318
|
|
|
706
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
707
|
-
|
|
708
|
-
msgid "
|
|
1319
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:22
|
|
1320
|
+
#, python-format
|
|
1321
|
+
msgid "Checksum: %s"
|
|
709
1322
|
msgstr ""
|
|
710
1323
|
|
|
711
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
msgstr "Çıkış yap"
|
|
1324
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:23
|
|
1325
|
+
#, python-format
|
|
1326
|
+
msgid "Last check date: %s"
|
|
1327
|
+
msgstr ""
|
|
716
1328
|
|
|
717
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
718
|
-
|
|
1329
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:24
|
|
1330
|
+
#, python-format
|
|
1331
|
+
msgid "Last check FAILED with result: %s"
|
|
719
1332
|
msgstr ""
|
|
720
1333
|
|
|
721
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
722
|
-
|
|
723
|
-
msgid "
|
|
724
|
-
msgstr "
|
|
1334
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:26
|
|
1335
|
+
#, python-format
|
|
1336
|
+
msgid "Record: %s/records/%s"
|
|
1337
|
+
msgstr ""
|
|
1338
|
+
|
|
1339
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:29
|
|
1340
|
+
#, python-format
|
|
1341
|
+
msgid "Draft: %s/uploads/%s"
|
|
1342
|
+
msgstr ""
|
|
725
1343
|
|
|
726
1344
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.de.html:9
|
|
727
1345
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.en.html:8
|
|
1346
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.sv.html:8
|
|
728
1347
|
msgid "Search guide"
|
|
729
1348
|
msgstr "Arama kılavuzu"
|
|
730
1349
|
|
|
731
|
-
#: invenio_app_rdm/
|
|
732
|
-
#: invenio_app_rdm/
|
|
733
|
-
msgid "
|
|
734
|
-
msgstr "
|
|
1350
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/statistics.en.html:8
|
|
1351
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/statistics.sv.html:8
|
|
1352
|
+
msgid "FAQ statistics"
|
|
1353
|
+
msgstr "SSS istatistikler"
|
|
735
1354
|
|
|
736
|
-
#: invenio_app_rdm/
|
|
737
|
-
#: invenio_app_rdm/
|
|
738
|
-
msgid "
|
|
739
|
-
msgstr "
|
|
1355
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/versioning.en.html:8
|
|
1356
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/versioning.sv.html:8
|
|
1357
|
+
msgid "FAQ versioning"
|
|
1358
|
+
msgstr "SSS sürümleme"
|
|
1359
|
+
|
|
1360
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/macros/records_list.html:10
|
|
1361
|
+
msgid "Recent uploads"
|
|
1362
|
+
msgstr ""
|
|
1363
|
+
|
|
1364
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:22
|
|
1365
|
+
msgid "Verified community"
|
|
1366
|
+
msgstr ""
|
|
1367
|
+
|
|
1368
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:29
|
|
1369
|
+
msgid "Privacy policy"
|
|
1370
|
+
msgstr "Gizlilik politikası"
|
|
1371
|
+
|
|
1372
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:30
|
|
1373
|
+
msgid "Terms of use"
|
|
1374
|
+
msgstr "Kullanım şartları"
|
|
1375
|
+
|
|
1376
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:31
|
|
1377
|
+
msgid "Support"
|
|
1378
|
+
msgstr "Destek"
|
|
1379
|
+
|
|
1380
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html:18
|
|
1381
|
+
msgid "Your dashboard"
|
|
1382
|
+
msgstr "Gösterge paneliniz"
|
|
1383
|
+
|
|
1384
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html:18
|
|
1385
|
+
msgid "Anonymous user"
|
|
1386
|
+
msgstr "Anonim kullanıcı"
|
|
1387
|
+
|
|
1388
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html:35
|
|
1389
|
+
msgid "New community"
|
|
1390
|
+
msgstr "Yeni topluluk"
|