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,255 +1,608 @@
|
|
|
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
|
-
# Tibor Simko <tibor.simko@cern.ch>,
|
|
9
|
-
# Bessem Aamira <bessemamira@gmail.com>,
|
|
10
|
-
# Salaheddine Ben Ali <salaheddine.benali@cnudst.tn>,
|
|
11
|
-
# David Eckhard <dabombeeer@gmail.com>, 2023
|
|
8
|
+
# Tibor Simko <tibor.simko@cern.ch>, 2025
|
|
9
|
+
# Bessem Aamira <bessemamira@gmail.com>, 2025
|
|
10
|
+
# Salaheddine Ben Ali <salaheddine.benali@cnudst.tn>, 2025
|
|
12
11
|
#
|
|
13
12
|
#, fuzzy
|
|
14
13
|
msgid ""
|
|
15
14
|
msgstr ""
|
|
16
|
-
"Project-Id-Version: invenio-app-rdm
|
|
15
|
+
"Project-Id-Version: invenio-app-rdm 12.0.15\n"
|
|
17
16
|
"Report-Msgid-Bugs-To: info@inveniosoftware.org\n"
|
|
18
|
-
"POT-Creation-Date:
|
|
17
|
+
"POT-Creation-Date: 2025-03-27 16:30+0000\n"
|
|
19
18
|
"PO-Revision-Date: 2020-07-07 14:12+0000\n"
|
|
20
|
-
"Last-Translator:
|
|
19
|
+
"Last-Translator: Salaheddine Ben Ali <salaheddine.benali@cnudst.tn>, 2025\n"
|
|
21
20
|
"Language-Team: Arabic (https://app.transifex.com/inveniosoftware/teams/23537/ar/)\n"
|
|
22
21
|
"MIME-Version: 1.0\n"
|
|
23
22
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
24
23
|
"Content-Transfer-Encoding: 8bit\n"
|
|
25
|
-
"Generated-By: Babel 2.
|
|
24
|
+
"Generated-By: Babel 2.17.0\n"
|
|
26
25
|
"Language: ar\n"
|
|
27
26
|
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
|
28
27
|
|
|
29
|
-
#: invenio_app_rdm/config.py:
|
|
28
|
+
#: invenio_app_rdm/config.py:219
|
|
30
29
|
msgid "The turn-key research data management repository"
|
|
31
30
|
msgstr "المستودع الجاهز لإدارة بيانات البحث"
|
|
32
31
|
|
|
33
|
-
#: invenio_app_rdm/config.py:
|
|
32
|
+
#: invenio_app_rdm/config.py:258
|
|
33
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/site_footer.html:16
|
|
34
34
|
msgid "InvenioRDM"
|
|
35
35
|
msgstr "انفنيو لإدارة بيانات البحث"
|
|
36
36
|
|
|
37
|
-
#: invenio_app_rdm/config.py:
|
|
37
|
+
#: invenio_app_rdm/config.py:353
|
|
38
38
|
msgid "Welcome to Invenio App RDM!"
|
|
39
39
|
msgstr "مرحبا بكم في منظومة انفنيو لإدارة بيانات البحث!"
|
|
40
40
|
|
|
41
|
-
#: invenio_app_rdm/config.py:
|
|
41
|
+
#: invenio_app_rdm/config.py:750
|
|
42
42
|
msgid "JSON"
|
|
43
43
|
msgstr "جيسون JSON"
|
|
44
44
|
|
|
45
|
-
#: invenio_app_rdm/config.py:
|
|
45
|
+
#: invenio_app_rdm/config.py:757
|
|
46
|
+
msgid "JSON-LD"
|
|
47
|
+
msgstr "JSON-LD"
|
|
48
|
+
|
|
49
|
+
#: invenio_app_rdm/config.py:765
|
|
46
50
|
msgid "CSL"
|
|
47
51
|
msgstr "سي أس أل CSL"
|
|
48
52
|
|
|
49
|
-
#: invenio_app_rdm/config.py:
|
|
53
|
+
#: invenio_app_rdm/config.py:772
|
|
50
54
|
msgid "DataCite JSON"
|
|
51
55
|
msgstr "داتاسيت جيسون DataCite JSON"
|
|
52
56
|
|
|
53
|
-
#: invenio_app_rdm/config.py:
|
|
57
|
+
#: invenio_app_rdm/config.py:781
|
|
54
58
|
msgid "DataCite XML"
|
|
55
59
|
msgstr "داتاسيت DataCite XML"
|
|
56
60
|
|
|
57
|
-
#: invenio_app_rdm/config.py:
|
|
61
|
+
#: invenio_app_rdm/config.py:790
|
|
58
62
|
msgid "Dublin Core XML"
|
|
59
63
|
msgstr "دبلن كور XML"
|
|
60
64
|
|
|
61
|
-
#: invenio_app_rdm/config.py:
|
|
65
|
+
#: invenio_app_rdm/config.py:799
|
|
66
|
+
msgid "MARCXML"
|
|
67
|
+
msgstr "MARCXML"
|
|
68
|
+
|
|
69
|
+
#: invenio_app_rdm/config.py:806
|
|
70
|
+
msgid "BibTeX"
|
|
71
|
+
msgstr "BibTeX"
|
|
72
|
+
|
|
73
|
+
#: invenio_app_rdm/config.py:813
|
|
74
|
+
msgid "GeoJSON"
|
|
75
|
+
msgstr "GeoJSON"
|
|
76
|
+
|
|
77
|
+
#: invenio_app_rdm/config.py:820
|
|
78
|
+
msgid "DCAT"
|
|
79
|
+
msgstr "DCAT"
|
|
80
|
+
|
|
81
|
+
#: invenio_app_rdm/config.py:827
|
|
82
|
+
msgid "Codemeta"
|
|
83
|
+
msgstr "Codemeta"
|
|
84
|
+
|
|
85
|
+
#: invenio_app_rdm/config.py:834
|
|
86
|
+
msgid "Citation File Format"
|
|
87
|
+
msgstr "صيغة ملف الإستشهاد"
|
|
88
|
+
|
|
89
|
+
#: invenio_app_rdm/config.py:996
|
|
62
90
|
msgid "APA"
|
|
63
91
|
msgstr "أبا APA"
|
|
64
92
|
|
|
65
|
-
#: invenio_app_rdm/config.py:
|
|
93
|
+
#: invenio_app_rdm/config.py:997
|
|
66
94
|
msgid "Harvard"
|
|
67
95
|
msgstr "هارفارد"
|
|
68
96
|
|
|
69
|
-
#: invenio_app_rdm/config.py:
|
|
97
|
+
#: invenio_app_rdm/config.py:998
|
|
70
98
|
msgid "MLA"
|
|
71
99
|
msgstr "أم أل أ MLA"
|
|
72
100
|
|
|
73
|
-
#: invenio_app_rdm/config.py:
|
|
101
|
+
#: invenio_app_rdm/config.py:999
|
|
74
102
|
msgid "Vancouver"
|
|
75
103
|
msgstr "فنكوفر"
|
|
76
104
|
|
|
77
|
-
#: invenio_app_rdm/config.py:
|
|
105
|
+
#: invenio_app_rdm/config.py:1000
|
|
78
106
|
msgid "Chicago"
|
|
79
107
|
msgstr "شيكاغو"
|
|
80
108
|
|
|
81
|
-
#: invenio_app_rdm/config.py:
|
|
109
|
+
#: invenio_app_rdm/config.py:1001
|
|
82
110
|
msgid "IEEE"
|
|
83
111
|
msgstr "IEEE"
|
|
84
112
|
|
|
85
|
-
#: invenio_app_rdm/
|
|
113
|
+
#: invenio_app_rdm/ext.py:57
|
|
114
|
+
msgid "My dashboard"
|
|
115
|
+
msgstr "لوح القيادة"
|
|
116
|
+
|
|
117
|
+
#: invenio_app_rdm/ext.py:63
|
|
118
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:14
|
|
119
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html:28
|
|
120
|
+
msgid "New upload"
|
|
121
|
+
msgstr "إيداع جديد"
|
|
122
|
+
|
|
123
|
+
#: invenio_app_rdm/ext.py:77
|
|
124
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/uploads.html:8
|
|
125
|
+
msgid "Uploads"
|
|
126
|
+
msgstr "الإيداعات"
|
|
127
|
+
|
|
128
|
+
#: invenio_app_rdm/ext.py:82
|
|
129
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/communities.html:15
|
|
130
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/communities.html:8
|
|
131
|
+
msgid "Communities"
|
|
132
|
+
msgstr "المجتمعات"
|
|
133
|
+
|
|
134
|
+
#: invenio_app_rdm/ext.py:87
|
|
135
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:118
|
|
136
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:117
|
|
137
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/requests.html:8
|
|
138
|
+
msgid "Requests"
|
|
139
|
+
msgstr "الطلبات"
|
|
140
|
+
|
|
141
|
+
#: invenio_app_rdm/ext.py:110
|
|
142
|
+
msgid "Home"
|
|
143
|
+
msgstr "الإستقبــال"
|
|
144
|
+
|
|
145
|
+
#: invenio_app_rdm/administration/records/records.py:26
|
|
146
|
+
#: invenio_app_rdm/administration/records/records.py:27
|
|
147
|
+
#: invenio_app_rdm/ext.py:118
|
|
148
|
+
msgid "Records"
|
|
149
|
+
msgstr "التسجيلات"
|
|
150
|
+
|
|
151
|
+
#: invenio_app_rdm/ext.py:125
|
|
152
|
+
msgid "Submit"
|
|
153
|
+
msgstr "الإيداع"
|
|
154
|
+
|
|
155
|
+
#: invenio_app_rdm/administration/domains/domains.py:41
|
|
156
|
+
#: invenio_app_rdm/administration/domains/domains.py:42
|
|
157
|
+
msgid "Domains"
|
|
158
|
+
msgstr "النطاقات"
|
|
159
|
+
|
|
160
|
+
#: invenio_app_rdm/administration/domains/domains.py:43
|
|
161
|
+
msgid "Site management"
|
|
162
|
+
msgstr "إدارة الموقع"
|
|
163
|
+
|
|
164
|
+
#: invenio_app_rdm/administration/domains/domains.py:47
|
|
165
|
+
#: invenio_app_rdm/administration/domains/domains.py:74
|
|
166
|
+
#: invenio_app_rdm/administration/domains/domains.py:144
|
|
167
|
+
msgid "Domain"
|
|
168
|
+
msgstr "النّطاق"
|
|
169
|
+
|
|
170
|
+
#: invenio_app_rdm/administration/domains/domains.py:48
|
|
171
|
+
msgid "TLD"
|
|
172
|
+
msgstr "ت. ل. د. TLD"
|
|
173
|
+
|
|
174
|
+
#: invenio_app_rdm/administration/domains/domains.py:49
|
|
175
|
+
#: invenio_app_rdm/administration/domains/domains.py:80
|
|
176
|
+
#: invenio_app_rdm/administration/domains/domains.py:146
|
|
177
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:68
|
|
178
|
+
#: invenio_app_rdm/administration/users/users.py:24
|
|
179
|
+
#: invenio_app_rdm/administration/users/users.py:35
|
|
180
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:28
|
|
181
|
+
msgid "Status"
|
|
182
|
+
msgstr "الحالة"
|
|
183
|
+
|
|
184
|
+
#: invenio_app_rdm/administration/domains/domains.py:50
|
|
185
|
+
#: invenio_app_rdm/administration/domains/domains.py:153
|
|
186
|
+
#: invenio_app_rdm/administration/users/users.py:57
|
|
187
|
+
msgid "Users"
|
|
188
|
+
msgstr "المستخدمين"
|
|
189
|
+
|
|
190
|
+
#: invenio_app_rdm/administration/domains/domains.py:51
|
|
191
|
+
#: invenio_app_rdm/administration/domains/domains.py:154
|
|
192
|
+
#: invenio_app_rdm/administration/users/users.py:37
|
|
193
|
+
msgid "Active"
|
|
194
|
+
msgstr "مفعٌل"
|
|
195
|
+
|
|
196
|
+
#: invenio_app_rdm/administration/domains/domains.py:52
|
|
197
|
+
#: invenio_app_rdm/administration/domains/domains.py:155
|
|
198
|
+
msgid "Inactive"
|
|
199
|
+
msgstr "غير نشط"
|
|
200
|
+
|
|
201
|
+
#: invenio_app_rdm/administration/domains/domains.py:53
|
|
202
|
+
#: invenio_app_rdm/administration/domains/domains.py:156
|
|
203
|
+
msgid "Confirmed"
|
|
204
|
+
msgstr "مؤكد"
|
|
205
|
+
|
|
206
|
+
#: invenio_app_rdm/administration/domains/domains.py:54
|
|
207
|
+
#: invenio_app_rdm/administration/domains/domains.py:157
|
|
208
|
+
msgid "Verified"
|
|
209
|
+
msgstr "تم التحقق"
|
|
210
|
+
|
|
211
|
+
#: invenio_app_rdm/administration/domains/domains.py:55
|
|
212
|
+
#: invenio_app_rdm/administration/domains/domains.py:158
|
|
213
|
+
msgid "Blocked"
|
|
214
|
+
msgstr "محظور"
|
|
215
|
+
|
|
216
|
+
#: invenio_app_rdm/administration/domains/domains.py:75
|
|
217
|
+
msgid "Domain name (all lowercase)"
|
|
218
|
+
msgstr "إسم النطاق (all lowercase)"
|
|
219
|
+
|
|
220
|
+
#: invenio_app_rdm/administration/domains/domains.py:82
|
|
221
|
+
msgid ""
|
|
222
|
+
"Status of the domain. One of new (domain needs review), moderated (users in "
|
|
223
|
+
"domain require moderation), verified (users in domain does not require "
|
|
224
|
+
"moderation) or blocked (users cannot register using this domain)."
|
|
225
|
+
msgstr ""
|
|
226
|
+
"حالة النطاق. جديد (يحتاج إلى مراجعة)، له مشرفون (يحتاج المستخدمون في النطاق "
|
|
227
|
+
"إلى مراجعة)، وقعت مراجعته (لا يحتاج المستخدمون في النطاق إلى مراجعة)، أو "
|
|
228
|
+
"محظور (لا يمكن للمستخدمين التسجيل باستخدام هذا النطاق)."
|
|
229
|
+
|
|
230
|
+
#: invenio_app_rdm/administration/domains/domains.py:94
|
|
231
|
+
#: invenio_app_rdm/administration/domains/domains.py:147
|
|
232
|
+
msgid "Category"
|
|
233
|
+
msgstr "الفئة"
|
|
234
|
+
|
|
235
|
+
#: invenio_app_rdm/administration/domains/domains.py:95
|
|
236
|
+
msgid "A label to categorise the domain."
|
|
237
|
+
msgstr "شارة لتصنيف النطاق."
|
|
238
|
+
|
|
239
|
+
#: invenio_app_rdm/administration/domains/domains.py:107
|
|
240
|
+
#: invenio_app_rdm/administration/domains/domains.py:148
|
|
241
|
+
msgid "Flagged"
|
|
242
|
+
msgstr "مصنّف"
|
|
243
|
+
|
|
244
|
+
#: invenio_app_rdm/administration/domains/domains.py:109
|
|
245
|
+
msgid "Used by automatic processes to flag the domain as requiring review."
|
|
246
|
+
msgstr ""
|
|
247
|
+
"يتم استخدامه بواسطة العمليات التلقائية لتحديد النطاق عن طريق راية باعتباره "
|
|
248
|
+
"يتطلب المراجعة."
|
|
249
|
+
|
|
250
|
+
#: invenio_app_rdm/administration/domains/domains.py:114
|
|
251
|
+
#: invenio_app_rdm/administration/domains/domains.py:149
|
|
252
|
+
msgid "Source of flag"
|
|
253
|
+
msgstr "مصدر الراية"
|
|
254
|
+
|
|
255
|
+
#: invenio_app_rdm/administration/domains/domains.py:115
|
|
256
|
+
msgid "Which source flagged the domain."
|
|
257
|
+
msgstr "ما هو المصدر الذي قام بتمييز النطاق؟"
|
|
258
|
+
|
|
259
|
+
#: invenio_app_rdm/administration/domains/domains.py:125
|
|
260
|
+
msgid "Create domain"
|
|
261
|
+
msgstr "أنشئ نطاقا"
|
|
262
|
+
|
|
263
|
+
#: invenio_app_rdm/administration/domains/domains.py:133
|
|
264
|
+
msgid "Edit domain"
|
|
265
|
+
msgstr "تعديل النطاق"
|
|
266
|
+
|
|
267
|
+
#: invenio_app_rdm/administration/domains/domains.py:141
|
|
268
|
+
msgid "Domain details"
|
|
269
|
+
msgstr "تفاصيل النطاق"
|
|
270
|
+
|
|
271
|
+
#: invenio_app_rdm/administration/domains/domains.py:145
|
|
272
|
+
msgid "Top-level domain"
|
|
273
|
+
msgstr "نطاق المستوى الأعلى"
|
|
274
|
+
|
|
275
|
+
#: invenio_app_rdm/administration/domains/domains.py:150
|
|
276
|
+
#: invenio_app_rdm/administration/records/records.py:41
|
|
277
|
+
#: invenio_app_rdm/administration/records/records.py:120
|
|
278
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:172
|
|
279
|
+
#: invenio_app_rdm/administration/users/users.py:25
|
|
280
|
+
#: invenio_app_rdm/administration/users/users.py:41
|
|
281
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html:10
|
|
282
|
+
msgid "Created"
|
|
283
|
+
msgstr "تمّ الإنشاء"
|
|
284
|
+
|
|
285
|
+
#: invenio_app_rdm/administration/domains/domains.py:151
|
|
286
|
+
#: invenio_app_rdm/administration/users/users.py:26
|
|
287
|
+
#: invenio_app_rdm/administration/users/users.py:42
|
|
288
|
+
msgid "Updated"
|
|
289
|
+
msgstr "محينة"
|
|
290
|
+
|
|
291
|
+
#: invenio_app_rdm/administration/domains/domains.py:152
|
|
292
|
+
msgid "Organisation"
|
|
293
|
+
msgstr "المنظمة"
|
|
294
|
+
|
|
295
|
+
#: invenio_app_rdm/administration/records/records.py:28
|
|
296
|
+
#: invenio_app_rdm/administration/records/records.py:107
|
|
297
|
+
msgid "Records & files"
|
|
298
|
+
msgstr "التسجيلات و الملفات"
|
|
299
|
+
|
|
300
|
+
#: invenio_app_rdm/administration/records/records.py:39
|
|
301
|
+
#: invenio_app_rdm/administration/records/records.py:118
|
|
302
|
+
msgid "Title"
|
|
303
|
+
msgstr "العنوان"
|
|
304
|
+
|
|
305
|
+
#: invenio_app_rdm/administration/records/records.py:40
|
|
306
|
+
#: invenio_app_rdm/administration/records/records.py:119
|
|
307
|
+
msgid "Owner"
|
|
308
|
+
msgstr "المالك"
|
|
309
|
+
|
|
310
|
+
#: invenio_app_rdm/administration/records/records.py:42
|
|
311
|
+
#: invenio_app_rdm/administration/records/records.py:121
|
|
312
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:271
|
|
313
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:276
|
|
314
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:293
|
|
315
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:142
|
|
316
|
+
msgid "Files"
|
|
317
|
+
msgstr "الملفات"
|
|
318
|
+
|
|
319
|
+
#: invenio_app_rdm/administration/records/records.py:43
|
|
320
|
+
#: invenio_app_rdm/administration/records/records.py:122
|
|
321
|
+
msgid "Stats"
|
|
322
|
+
msgstr "إحصائيّات"
|
|
323
|
+
|
|
324
|
+
#: invenio_app_rdm/administration/records/records.py:48
|
|
325
|
+
msgid "Delete record"
|
|
326
|
+
msgstr "إحذف التسجيلة"
|
|
327
|
+
|
|
328
|
+
#: invenio_app_rdm/administration/records/records.py:53
|
|
329
|
+
msgid "Restore record"
|
|
330
|
+
msgstr "إسترجع التسجيلة"
|
|
331
|
+
|
|
332
|
+
#: invenio_app_rdm/administration/records/records.py:105
|
|
333
|
+
#: invenio_app_rdm/administration/records/records.py:106
|
|
334
|
+
msgid "Drafts"
|
|
335
|
+
msgstr "مسودات"
|
|
336
|
+
|
|
337
|
+
#: invenio_app_rdm/administration/records/records.py:127
|
|
338
|
+
msgid "Set quota"
|
|
339
|
+
msgstr "ثبّت الكوتا"
|
|
340
|
+
|
|
341
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:29
|
|
342
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:30
|
|
343
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:31
|
|
344
|
+
msgid "Moderation"
|
|
345
|
+
msgstr "الإشراف"
|
|
346
|
+
|
|
347
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:45
|
|
348
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:168
|
|
349
|
+
#: invenio_app_rdm/administration/users/users.py:21
|
|
350
|
+
msgid "User"
|
|
351
|
+
msgstr "مستخدم"
|
|
352
|
+
|
|
353
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:51
|
|
354
|
+
#: invenio_app_rdm/administration/users/users.py:23
|
|
355
|
+
#: invenio_app_rdm/administration/users/users.py:33
|
|
356
|
+
msgid "Email"
|
|
357
|
+
msgstr "البريد الإلكتروني"
|
|
358
|
+
|
|
359
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:57
|
|
360
|
+
msgid "Email domain"
|
|
361
|
+
msgstr "نطاق البريد الإلكتروني"
|
|
362
|
+
|
|
363
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:63
|
|
364
|
+
msgid "Activity"
|
|
365
|
+
msgstr "النشاط"
|
|
366
|
+
|
|
367
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:76
|
|
368
|
+
#: invenio_app_rdm/administration/users/users.py:78
|
|
369
|
+
msgid "Approve"
|
|
370
|
+
msgstr "قبول"
|
|
371
|
+
|
|
372
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:81
|
|
373
|
+
#: invenio_app_rdm/administration/users/users.py:88
|
|
374
|
+
msgid "Block"
|
|
375
|
+
msgstr "حظر"
|
|
376
|
+
|
|
377
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:141
|
|
378
|
+
msgid "User moderation"
|
|
379
|
+
msgstr "الإشراف على المستخدم"
|
|
380
|
+
|
|
381
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:164
|
|
382
|
+
#: invenio_app_rdm/administration/users/users.py:31
|
|
383
|
+
msgid "ID"
|
|
384
|
+
msgstr "معرّف ID"
|
|
385
|
+
|
|
386
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:173
|
|
387
|
+
msgid "Open"
|
|
388
|
+
msgstr "مفتوح"
|
|
389
|
+
|
|
390
|
+
#: invenio_app_rdm/administration/users/users.py:22
|
|
391
|
+
#: invenio_app_rdm/administration/users/users.py:32
|
|
392
|
+
msgid "Username"
|
|
393
|
+
msgstr "اسم المستخدم"
|
|
394
|
+
|
|
395
|
+
#: invenio_app_rdm/administration/users/users.py:34
|
|
396
|
+
msgid "Domain "
|
|
397
|
+
msgstr "النّطاق"
|
|
398
|
+
|
|
399
|
+
#: invenio_app_rdm/administration/users/users.py:36
|
|
400
|
+
msgid "Visibility"
|
|
401
|
+
msgstr "مرئيّة"
|
|
402
|
+
|
|
403
|
+
#: invenio_app_rdm/administration/users/users.py:38
|
|
404
|
+
msgid "Confirmed at"
|
|
405
|
+
msgstr "تم التأكيد في"
|
|
406
|
+
|
|
407
|
+
#: invenio_app_rdm/administration/users/users.py:39
|
|
408
|
+
msgid "Verified at"
|
|
409
|
+
msgstr "تم التّحقق في"
|
|
410
|
+
|
|
411
|
+
#: invenio_app_rdm/administration/users/users.py:40
|
|
412
|
+
msgid "Blocked at"
|
|
413
|
+
msgstr "تم الحظر في"
|
|
414
|
+
|
|
415
|
+
#: invenio_app_rdm/administration/users/users.py:56
|
|
416
|
+
#: invenio_app_rdm/administration/users/users.py:58
|
|
417
|
+
msgid "User management"
|
|
418
|
+
msgstr "إدارة المستخدم"
|
|
419
|
+
|
|
420
|
+
#: invenio_app_rdm/administration/users/users.py:83
|
|
421
|
+
msgid "Restore"
|
|
422
|
+
msgstr "إسترجع"
|
|
423
|
+
|
|
424
|
+
#: invenio_app_rdm/administration/users/users.py:93
|
|
425
|
+
msgid "Suspend"
|
|
426
|
+
msgstr "علّق"
|
|
427
|
+
|
|
428
|
+
#: invenio_app_rdm/administration/users/users.py:129
|
|
429
|
+
msgid "User details"
|
|
430
|
+
msgstr "تفاصيل المستخدم"
|
|
431
|
+
|
|
432
|
+
#: invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/records/index.html:12
|
|
86
433
|
msgid "Search "
|
|
87
434
|
msgstr "ابحث"
|
|
88
435
|
|
|
89
|
-
#: invenio_app_rdm/
|
|
90
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_frontpage.html:36
|
|
91
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_frontpage.html:37
|
|
92
|
-
msgid "Search"
|
|
93
|
-
msgstr "بحث"
|
|
94
|
-
|
|
95
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:9
|
|
436
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:12
|
|
96
437
|
msgid "New version"
|
|
97
438
|
msgstr "إصدار جديد"
|
|
98
439
|
|
|
99
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:
|
|
100
|
-
#: invenio_app_rdm/theme/views.py:44
|
|
101
|
-
msgid "New upload"
|
|
102
|
-
msgstr "إيداع جديد"
|
|
103
|
-
|
|
104
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:13
|
|
440
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:16
|
|
105
441
|
msgid "Edit upload"
|
|
106
442
|
msgstr "تعديل الإيداع"
|
|
107
443
|
|
|
108
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
444
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:51
|
|
109
445
|
msgid "Information banner"
|
|
110
446
|
msgstr "راية المعلومات"
|
|
111
447
|
|
|
112
|
-
#: 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:76
|
|
113
449
|
msgid "Community visibility"
|
|
114
450
|
msgstr "مرئية المجتمع"
|
|
115
451
|
|
|
116
|
-
#: 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:77
|
|
117
453
|
msgid "The community is restricted to users with access."
|
|
118
454
|
msgstr "المجموعة حصريّة للأعضاء المخوّل لهم الولوج"
|
|
119
455
|
|
|
120
|
-
#: 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:79
|
|
121
457
|
msgid "Restricted"
|
|
122
458
|
msgstr "مقيدة"
|
|
123
459
|
|
|
124
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
125
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
126
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
460
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:96
|
|
461
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:24
|
|
462
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:121
|
|
127
463
|
msgid "Preview"
|
|
128
464
|
msgstr "مراجعة"
|
|
129
465
|
|
|
130
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
466
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:100
|
|
131
467
|
msgid "You are previewing a published record."
|
|
132
468
|
msgstr "أنت تراجع تسجيلة منشورة"
|
|
133
469
|
|
|
134
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
470
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:102
|
|
135
471
|
msgid "You are previewing changes that have not yet been published."
|
|
136
472
|
msgstr "أنت تراجع تغييرات لم تنشر بعد"
|
|
137
473
|
|
|
138
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
474
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:104
|
|
139
475
|
msgid "You are previewing a new record that has not yet been published."
|
|
140
476
|
msgstr "انت تراجع تسجيلة جديدة لم تنشر بعد"
|
|
141
477
|
|
|
142
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
478
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:106
|
|
143
479
|
msgid ""
|
|
144
480
|
"You are previewing a new record version that has not yet been published."
|
|
145
481
|
msgstr "أنت تراجع إصدارا جديدا لتسجيلة لم تنشر بعد"
|
|
146
482
|
|
|
147
|
-
#: 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:121
|
|
148
484
|
#, python-format
|
|
149
485
|
msgid ""
|
|
150
486
|
"\n"
|
|
151
|
-
" There is a %(link_start)snewer version%(link_end)s of the record
|
|
487
|
+
" There is a %(link_start)snewer version%(link_end)s of the record\n"
|
|
488
|
+
" available.\n"
|
|
152
489
|
" "
|
|
153
490
|
msgstr ""
|
|
154
491
|
"\n"
|
|
155
492
|
"يوجد %(link_start)sإصدار أحدث للتسجيلة المتاحة%(link_end)s"
|
|
156
493
|
|
|
157
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
494
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:145
|
|
158
495
|
msgid "Record access information"
|
|
159
496
|
msgstr "معلومات الدّخول للتسجيلة"
|
|
160
497
|
|
|
161
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
162
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
163
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
498
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:152
|
|
499
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:309
|
|
500
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:155
|
|
501
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:185
|
|
164
502
|
msgid "Reason"
|
|
165
503
|
msgstr "السّبب"
|
|
166
504
|
|
|
167
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
505
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:165
|
|
168
506
|
msgid "Back-navigation"
|
|
169
507
|
msgstr "الرجوع للتصفح"
|
|
170
508
|
|
|
171
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
509
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:167
|
|
172
510
|
msgid "Back to edit"
|
|
173
511
|
msgstr "الرجوع للإعداد"
|
|
174
512
|
|
|
175
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
513
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:185
|
|
176
514
|
msgid "Manage record"
|
|
177
515
|
msgstr "التّصرّف في التسجيلة"
|
|
178
516
|
|
|
179
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
517
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:201
|
|
180
518
|
msgid "Publication date and version number"
|
|
181
519
|
msgstr "تاريخ النّشر و رقم الإصدار"
|
|
182
520
|
|
|
183
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
521
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:205
|
|
184
522
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:25
|
|
185
523
|
msgid "Publication date"
|
|
186
524
|
msgstr "تاريخ النّشر"
|
|
187
525
|
|
|
188
|
-
#: 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:206
|
|
189
527
|
msgid "Published"
|
|
190
528
|
msgstr "نشرت"
|
|
191
529
|
|
|
192
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
530
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:209
|
|
531
|
+
#, python-brace-format
|
|
193
532
|
msgid "Version {version_number}"
|
|
194
533
|
msgstr "الإصدار {version_number}"
|
|
195
534
|
|
|
196
|
-
#: 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:216
|
|
197
536
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:24
|
|
198
537
|
msgid "Resource type"
|
|
199
538
|
msgstr "نوع المورد"
|
|
200
539
|
|
|
201
|
-
#: 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:226
|
|
202
541
|
msgid "Access status"
|
|
203
542
|
msgstr "حالة الاتاحة"
|
|
204
543
|
|
|
205
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
544
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:248
|
|
206
545
|
msgid "Record title and creators"
|
|
207
546
|
msgstr "عنوان التّسجيلة و منشؤها"
|
|
208
547
|
|
|
209
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
548
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:254
|
|
210
549
|
msgid "Creators and contributors"
|
|
211
550
|
msgstr "المنشئون و المساهمون"
|
|
212
551
|
|
|
213
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
214
|
-
msgid "
|
|
215
|
-
msgstr "
|
|
552
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:315
|
|
553
|
+
msgid "Request access"
|
|
554
|
+
msgstr "طلب دخول"
|
|
216
555
|
|
|
217
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
556
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:317
|
|
557
|
+
msgid ""
|
|
558
|
+
"If you would like to request access to these files, please fill out the form"
|
|
559
|
+
" below."
|
|
560
|
+
msgstr "إذا كنت ترغب في طلب الوصول إلى هذه الملفات، يرجى ملء النموذج أدناه."
|
|
561
|
+
|
|
562
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:325
|
|
563
|
+
msgid ""
|
|
564
|
+
"You need to satisfy these conditions in order for this request to be "
|
|
565
|
+
"accepted:"
|
|
566
|
+
msgstr "يجب عليك استيفاء هذه الشروط حتى يتم قبول هذا الطلب:"
|
|
567
|
+
|
|
568
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:350
|
|
569
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:171
|
|
570
|
+
msgid "System files"
|
|
571
|
+
msgstr "ملفات النظام"
|
|
223
572
|
|
|
224
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
573
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:363
|
|
225
574
|
msgid "Additional record details"
|
|
226
575
|
msgstr "تفاصيل إضافيّة حول التّسجيلة"
|
|
227
576
|
|
|
228
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
229
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:16
|
|
577
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:377
|
|
230
578
|
msgid "Record details"
|
|
231
579
|
msgstr "تفاصيل التّسجيلة"
|
|
232
580
|
|
|
233
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
234
|
-
msgid "Upload information"
|
|
235
|
-
msgstr "تحميل المعلومات"
|
|
236
|
-
|
|
237
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:306
|
|
238
|
-
msgid "Created"
|
|
239
|
-
msgstr "تمّ الإنشاء"
|
|
240
|
-
|
|
241
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:312
|
|
242
|
-
msgid "Modified"
|
|
243
|
-
msgstr "تمّ التّغيير"
|
|
244
|
-
|
|
245
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:329
|
|
581
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:394
|
|
246
582
|
msgid "Jump to top of page"
|
|
247
583
|
msgstr "أعلى الصّفحة"
|
|
248
584
|
|
|
249
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
585
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:396
|
|
250
586
|
msgid "Jump up"
|
|
251
587
|
msgstr "إلى أعلى"
|
|
252
588
|
|
|
589
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html:10
|
|
590
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html:14
|
|
591
|
+
msgid "Draft not found"
|
|
592
|
+
msgstr "لم يتم العثور على المسودّة"
|
|
593
|
+
|
|
594
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html:15
|
|
595
|
+
msgid ""
|
|
596
|
+
"This record has already been published and is not currently being edited, so"
|
|
597
|
+
" no draft exists."
|
|
598
|
+
msgstr ""
|
|
599
|
+
"لقد تم نشر هذه التسجيلة بالفعل وهي ليست قيد التعديل حاليًا، لذا لا وجود "
|
|
600
|
+
"لمسودة."
|
|
601
|
+
|
|
602
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html:16
|
|
603
|
+
msgid "Go to published record"
|
|
604
|
+
msgstr "الذهاب إلى تسجيلة منشورة"
|
|
605
|
+
|
|
253
606
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/export.html:18
|
|
254
607
|
msgid "Back to details"
|
|
255
608
|
msgstr "العودة إلى التّفاصيل"
|
|
@@ -258,47 +611,120 @@ msgstr "العودة إلى التّفاصيل"
|
|
|
258
611
|
msgid "Preview for"
|
|
259
612
|
msgstr "معاينة لـ"
|
|
260
613
|
|
|
614
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html:14
|
|
615
|
+
msgid "Permission required"
|
|
616
|
+
msgstr "يلزمك إذن"
|
|
617
|
+
|
|
618
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html:18
|
|
619
|
+
msgid ""
|
|
620
|
+
"The record was previously accessible to the public but is now restricted to "
|
|
621
|
+
"users with access."
|
|
622
|
+
msgstr ""
|
|
623
|
+
"التسجيلة أتيحت للعموم سابقا لكنها مقيّدة الآن و متاحة حصريا للمستخدمين الذين"
|
|
624
|
+
" لهم حق الولوج."
|
|
625
|
+
|
|
626
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html:20
|
|
627
|
+
msgid ""
|
|
628
|
+
"The Digital Object Identifier (DOI) associated with this record remains "
|
|
629
|
+
"active for reference."
|
|
630
|
+
msgstr "المعرف الرقمي للأشاء (DOI) المرتبط بهذه التسجيلة يظل نشطًا كمرجع."
|
|
631
|
+
|
|
632
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html:27
|
|
633
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:55
|
|
634
|
+
msgid "Identifier:"
|
|
635
|
+
msgstr "المعرّف"
|
|
636
|
+
|
|
261
637
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/search.html:8
|
|
262
638
|
msgid "Search results"
|
|
263
639
|
msgstr "نتائج البحث"
|
|
264
640
|
|
|
265
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:
|
|
641
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:10
|
|
266
642
|
msgid "Tombstone"
|
|
267
643
|
msgstr "تمثال"
|
|
268
644
|
|
|
269
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:
|
|
645
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:11
|
|
646
|
+
msgid "Reason unknown"
|
|
647
|
+
msgstr "السبب غير معلوم"
|
|
648
|
+
|
|
649
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:21
|
|
270
650
|
msgid "Gone"
|
|
271
651
|
msgstr "تم"
|
|
272
652
|
|
|
273
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:
|
|
653
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:26
|
|
274
654
|
#, python-format
|
|
275
655
|
msgid ""
|
|
276
656
|
"\n"
|
|
277
|
-
"
|
|
278
|
-
"
|
|
279
|
-
" "
|
|
657
|
+
" The record you are trying to access was removed from %(sitename)s. The\n"
|
|
658
|
+
" metadata of the record is kept for archival purposes."
|
|
280
659
|
msgstr ""
|
|
281
660
|
"\n"
|
|
282
|
-
"
|
|
283
|
-
"لأغراض
|
|
661
|
+
" التسجيلة التي تحاول دخولها حذفت من %(sitename)s. تم الابقاء على\n"
|
|
662
|
+
" الميتاداتا لأغراض الأرشفة والحفظ.\n"
|
|
284
663
|
" "
|
|
285
664
|
|
|
286
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:
|
|
665
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:35
|
|
287
666
|
msgid "Reason for removal:"
|
|
288
667
|
msgstr "سبب الحذف:"
|
|
289
668
|
|
|
290
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
669
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:38
|
|
670
|
+
msgid "Removed by:"
|
|
671
|
+
msgstr "تم الحذف من طرف:"
|
|
672
|
+
|
|
673
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:42
|
|
674
|
+
msgid "Removal note:"
|
|
675
|
+
msgstr "ملاحظة الحذف:"
|
|
676
|
+
|
|
677
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:46
|
|
678
|
+
msgid "Date of removal:"
|
|
679
|
+
msgstr "تاريخ الحذف:"
|
|
680
|
+
|
|
681
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:50
|
|
682
|
+
msgid "Citation:"
|
|
683
|
+
msgstr "إستشهاد:"
|
|
684
|
+
|
|
685
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:16
|
|
686
|
+
msgid "You are currently not logged in"
|
|
687
|
+
msgstr "أنت لم تقم بتسجيل الدخول حاليا"
|
|
688
|
+
|
|
689
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:16
|
|
690
|
+
msgid "Do you have an account?"
|
|
691
|
+
msgstr "هل لديك حساب؟"
|
|
692
|
+
|
|
693
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:17
|
|
694
|
+
msgid "Log in here"
|
|
695
|
+
msgstr "سجل الدّخول هنا"
|
|
696
|
+
|
|
697
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:22
|
|
698
|
+
msgid "You are logged in as"
|
|
699
|
+
msgstr "لقد قمت بتسجيل الدخول باسم"
|
|
700
|
+
|
|
701
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:30
|
|
702
|
+
msgid "Not you?"
|
|
703
|
+
msgstr "لست أنت؟"
|
|
294
704
|
|
|
295
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/
|
|
705
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:31
|
|
706
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:113
|
|
707
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:145
|
|
708
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:153
|
|
709
|
+
msgid "Log out"
|
|
710
|
+
msgstr "خروج"
|
|
711
|
+
|
|
712
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:31
|
|
713
|
+
msgid "to switch account."
|
|
714
|
+
msgstr "لتغيير الحساب."
|
|
715
|
+
|
|
716
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/contact.html:11
|
|
717
|
+
msgid "Send message"
|
|
718
|
+
msgstr "أرسل رسالة"
|
|
719
|
+
|
|
720
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/creatibutors.html:16
|
|
721
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:73
|
|
296
722
|
msgid "Creators"
|
|
297
723
|
msgstr "المنشؤون"
|
|
298
724
|
|
|
299
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/creatibutors.html:
|
|
300
|
-
msgid "Contributors
|
|
301
|
-
msgstr "
|
|
725
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/creatibutors.html:34
|
|
726
|
+
msgid "Contributors"
|
|
727
|
+
msgstr "المساهمون"
|
|
302
728
|
|
|
303
729
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/description.html:14
|
|
304
730
|
msgid "Record description"
|
|
@@ -308,57 +734,112 @@ msgstr "وصف التّسجيلة"
|
|
|
308
734
|
msgid "Description"
|
|
309
735
|
msgstr "وصف"
|
|
310
736
|
|
|
311
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
737
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:38
|
|
312
738
|
msgid "Additional details"
|
|
313
739
|
msgstr "تفاصيل إضافيّة"
|
|
314
740
|
|
|
315
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
741
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:55
|
|
742
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:73
|
|
316
743
|
msgid "Additional titles"
|
|
317
744
|
msgstr "عناوين إضافيّة"
|
|
318
745
|
|
|
319
|
-
#: 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:98
|
|
747
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:116
|
|
320
748
|
msgid "Identifiers"
|
|
321
749
|
msgstr "معرّفات"
|
|
322
750
|
|
|
323
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
751
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:141
|
|
752
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:157
|
|
324
753
|
msgid "Related works"
|
|
325
754
|
msgstr "أعمال ذات علاقة"
|
|
326
755
|
|
|
327
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
756
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:180
|
|
757
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:198
|
|
328
758
|
msgid "Funding"
|
|
329
759
|
msgstr "التّمويل"
|
|
330
760
|
|
|
331
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
761
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:223
|
|
762
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:241
|
|
332
763
|
msgid "Dates"
|
|
333
764
|
msgstr "تواريخ"
|
|
334
765
|
|
|
335
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
336
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/
|
|
766
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:311
|
|
767
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:327
|
|
337
768
|
msgid "References"
|
|
338
769
|
msgstr "مراجع"
|
|
339
770
|
|
|
340
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/
|
|
341
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/
|
|
342
|
-
msgid "
|
|
343
|
-
msgstr "
|
|
344
|
-
|
|
345
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
771
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:17
|
|
772
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:55
|
|
773
|
+
msgid "Views"
|
|
774
|
+
msgstr "عروض"
|
|
775
|
+
|
|
776
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:25
|
|
777
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:75
|
|
778
|
+
msgid "Downloads"
|
|
779
|
+
msgstr "تنزيلات"
|
|
780
|
+
|
|
781
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:36
|
|
782
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:39
|
|
783
|
+
msgid "Show more details"
|
|
784
|
+
msgstr "عرض المزيد من التفاصيل"
|
|
785
|
+
|
|
786
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:37
|
|
787
|
+
msgid "Show less details"
|
|
788
|
+
msgstr "إختصر في عرض التفاصيل"
|
|
789
|
+
|
|
790
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:48
|
|
791
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:70
|
|
792
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:90
|
|
793
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:112
|
|
794
|
+
msgid "All versions"
|
|
795
|
+
msgstr "كل الإصدارات"
|
|
796
|
+
|
|
797
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:49
|
|
798
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:71
|
|
799
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:91
|
|
800
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:113
|
|
801
|
+
msgid "This version"
|
|
802
|
+
msgstr "هذا الإصدار"
|
|
803
|
+
|
|
804
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:62
|
|
805
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:82
|
|
806
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:102
|
|
807
|
+
msgid "More info"
|
|
808
|
+
msgstr "المزيد من المعلومات"
|
|
809
|
+
|
|
810
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:67
|
|
811
|
+
msgid "Total views"
|
|
812
|
+
msgstr "مجموع الإطلاع"
|
|
813
|
+
|
|
814
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:87
|
|
815
|
+
msgid "Total downloads"
|
|
816
|
+
msgstr "مجموع التنزيلات"
|
|
817
|
+
|
|
818
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:95
|
|
819
|
+
msgid "Data volume"
|
|
820
|
+
msgstr "حجم البيانات"
|
|
821
|
+
|
|
822
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:107
|
|
823
|
+
msgid "Total data volume"
|
|
824
|
+
msgstr "مجموع حجم البيانات"
|
|
825
|
+
|
|
826
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:119
|
|
827
|
+
msgid "More info on how stats are collected."
|
|
828
|
+
msgstr "مزيد من المعلومات حول كيفية جمع الإحصائيات."
|
|
352
829
|
|
|
353
830
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:15
|
|
354
831
|
msgid "Keywords"
|
|
355
832
|
msgstr "كلمات مفاتيح"
|
|
356
833
|
|
|
357
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:
|
|
358
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:
|
|
834
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:22
|
|
835
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:39
|
|
359
836
|
msgid "Search results for "
|
|
360
837
|
msgstr "نتائج البحث لـ"
|
|
361
838
|
|
|
839
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/citations.html:2
|
|
840
|
+
msgid "Citation"
|
|
841
|
+
msgstr "إستشهاد"
|
|
842
|
+
|
|
362
843
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:17
|
|
363
844
|
msgid "Details"
|
|
364
845
|
msgstr "تفاصيل"
|
|
@@ -368,55 +849,96 @@ msgid "Publisher"
|
|
|
368
849
|
msgstr "النّاشر"
|
|
369
850
|
|
|
370
851
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:27
|
|
852
|
+
msgid "Published in"
|
|
853
|
+
msgstr "نشر في"
|
|
854
|
+
|
|
855
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:28
|
|
856
|
+
msgid "Imprint"
|
|
857
|
+
msgstr "بصمة"
|
|
858
|
+
|
|
859
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:29
|
|
860
|
+
msgid "Awarding university"
|
|
861
|
+
msgstr "الجامعة المانحة"
|
|
862
|
+
|
|
863
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:30
|
|
864
|
+
msgid "Conference"
|
|
865
|
+
msgstr "مؤتمر"
|
|
866
|
+
|
|
867
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:31
|
|
371
868
|
msgid "Languages"
|
|
372
869
|
msgstr "اللّغات"
|
|
373
870
|
|
|
374
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:
|
|
871
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:32
|
|
375
872
|
msgid "Formats"
|
|
376
873
|
msgstr "صيغ"
|
|
377
874
|
|
|
378
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:
|
|
875
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:33
|
|
379
876
|
msgid "Sizes"
|
|
380
877
|
msgstr "أحجام"
|
|
381
878
|
|
|
382
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/export.html:13
|
|
383
879
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/export.html:14
|
|
384
880
|
msgid "Export"
|
|
385
881
|
msgstr "تصدير"
|
|
386
882
|
|
|
387
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/
|
|
883
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/external_resources.html:9
|
|
884
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/external_resources.html:10
|
|
885
|
+
msgid "External resources"
|
|
886
|
+
msgstr "موارد خارجيّة"
|
|
887
|
+
|
|
388
888
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/keywords_subjects.html:13
|
|
889
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/keywords_subjects.html:14
|
|
389
890
|
msgid "Keywords and subjects"
|
|
390
891
|
msgstr "كلمات مفاتيح و المواضيع"
|
|
391
892
|
|
|
392
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:
|
|
393
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:
|
|
394
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:
|
|
395
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:
|
|
396
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:
|
|
893
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:14
|
|
894
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:16
|
|
895
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:162
|
|
896
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:191
|
|
897
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:61
|
|
898
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/user-access-request/index.html:43
|
|
397
899
|
msgid "Opens in new tab"
|
|
398
900
|
msgstr "فتح في تبويبة جديدة"
|
|
399
901
|
|
|
400
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:
|
|
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
|
+
msgid "Read more"
|
|
905
|
+
msgstr "إقراء المزيد"
|
|
906
|
+
|
|
401
907
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:23
|
|
402
908
|
msgid "Rights"
|
|
403
909
|
msgstr "الحقوق"
|
|
404
910
|
|
|
405
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:
|
|
911
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:54
|
|
406
912
|
msgid "Close"
|
|
407
913
|
msgstr "غلق"
|
|
408
914
|
|
|
409
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:
|
|
915
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:58
|
|
410
916
|
msgid "No further description."
|
|
411
917
|
msgstr "لا مزيد من الوصف"
|
|
412
918
|
|
|
919
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/locations.html:14
|
|
920
|
+
msgid "Geographic locations"
|
|
921
|
+
msgstr "مواقع جغرافيّة"
|
|
922
|
+
|
|
413
923
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/manage_menu.html:10
|
|
414
924
|
msgid "Record management"
|
|
415
925
|
msgstr "إدارة التّسجيلة"
|
|
416
926
|
|
|
417
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/
|
|
418
|
-
msgid "
|
|
419
|
-
msgstr "
|
|
927
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/metrics.html:12
|
|
928
|
+
msgid "Metrics"
|
|
929
|
+
msgstr "قياسات"
|
|
930
|
+
|
|
931
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html:5
|
|
932
|
+
msgid "Upload information"
|
|
933
|
+
msgstr "تحميل المعلومات"
|
|
934
|
+
|
|
935
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html:8
|
|
936
|
+
msgid "Technical metadata"
|
|
937
|
+
msgstr "ميتاداتا تقنيّة"
|
|
938
|
+
|
|
939
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html:15
|
|
940
|
+
msgid "Modified"
|
|
941
|
+
msgstr "تمّ التّغيير"
|
|
420
942
|
|
|
421
943
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/versions.html:12
|
|
422
944
|
msgid "Versions"
|
|
@@ -443,28 +965,44 @@ msgstr "إخفي الإنتماءات"
|
|
|
443
965
|
msgid "Affiliations for"
|
|
444
966
|
msgstr "الإنتماءات لـ"
|
|
445
967
|
|
|
446
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:
|
|
968
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:119
|
|
447
969
|
msgid "Open external link"
|
|
448
970
|
msgstr "إفتح رابط خارجي"
|
|
449
971
|
|
|
450
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/
|
|
972
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:297
|
|
973
|
+
msgid "Conference website"
|
|
974
|
+
msgstr "موقع واب المؤتمر"
|
|
975
|
+
|
|
976
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html:9
|
|
977
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html:24
|
|
978
|
+
msgid "DOI"
|
|
979
|
+
msgstr "المعرف الوحيد للأشياء DOI"
|
|
980
|
+
|
|
981
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html:15
|
|
982
|
+
msgid "Get the DOI badge!"
|
|
983
|
+
msgstr "تحصّل على شارة DOI"
|
|
984
|
+
|
|
985
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html:21
|
|
986
|
+
msgid "DOI Badge"
|
|
987
|
+
msgstr "شارة DOI"
|
|
988
|
+
|
|
989
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:44
|
|
451
990
|
msgid "File preview"
|
|
452
991
|
msgstr "عرض الملف"
|
|
453
992
|
|
|
454
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
993
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:76
|
|
455
994
|
msgid "Name"
|
|
456
995
|
msgstr "إسم"
|
|
457
996
|
|
|
458
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
997
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:77
|
|
459
998
|
msgid "Size"
|
|
460
999
|
msgstr "الحجم"
|
|
461
1000
|
|
|
462
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
msgstr "العمليات"
|
|
1001
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:82
|
|
1002
|
+
msgid "Download all"
|
|
1003
|
+
msgstr "تنزيل الكل"
|
|
466
1004
|
|
|
467
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
1005
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:111
|
|
468
1006
|
msgid ""
|
|
469
1007
|
"This is the file fingerprint (checksum), which can be used to verify the "
|
|
470
1008
|
"file integrity."
|
|
@@ -472,322 +1010,380 @@ msgstr ""
|
|
|
472
1010
|
"هذه هي بصمة الملف (المجموع الاختباري) ، والتي يمكن استخدامها للتحقق من سلامة"
|
|
473
1011
|
" الملف."
|
|
474
1012
|
|
|
475
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
1013
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:125
|
|
476
1014
|
msgid "Download"
|
|
477
1015
|
msgstr "تنزيل"
|
|
478
1016
|
|
|
479
|
-
#: invenio_app_rdm/records_ui/
|
|
480
|
-
msgid "
|
|
481
|
-
msgstr "
|
|
1017
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/locations.html:55
|
|
1018
|
+
msgid "Unknown"
|
|
1019
|
+
msgstr "غير معلوم"
|
|
1020
|
+
|
|
1021
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/stats_popup.html:9
|
|
1022
|
+
msgid "See the full number"
|
|
1023
|
+
msgstr "أنظر العدد الكامل"
|
|
1024
|
+
|
|
1025
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/version.html:13
|
|
1026
|
+
msgid "Version"
|
|
1027
|
+
msgstr "إصدار"
|
|
482
1028
|
|
|
483
|
-
#: invenio_app_rdm/records_ui/
|
|
484
|
-
msgid "
|
|
485
|
-
msgstr "
|
|
1029
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/version.html:14
|
|
1030
|
+
msgid "No DOI available"
|
|
1031
|
+
msgstr "لا يوجد DOI متاح"
|
|
1032
|
+
|
|
1033
|
+
#: invenio_app_rdm/records_ui/views/deposits.py:71
|
|
1034
|
+
#, python-format
|
|
1035
|
+
msgid "Discard the reserved %(scheme_label)s."
|
|
1036
|
+
msgstr "التخلص من المحجوز %(scheme_label)s."
|
|
486
1037
|
|
|
487
|
-
#: invenio_app_rdm/records_ui/views/deposits.py:
|
|
1038
|
+
#: invenio_app_rdm/records_ui/views/deposits.py:74
|
|
1039
|
+
#, python-format
|
|
1040
|
+
msgid "Get a %(scheme_label)s now!"
|
|
1041
|
+
msgstr "تحصل على %(scheme_label)s الآن!"
|
|
1042
|
+
|
|
1043
|
+
#: invenio_app_rdm/records_ui/views/deposits.py:77
|
|
1044
|
+
#, python-format
|
|
488
1045
|
msgid ""
|
|
489
|
-
"Reserve a
|
|
490
|
-
"files prior to upload). The
|
|
491
|
-
" published."
|
|
1046
|
+
"Reserve a %(scheme_label)s by pressing the button (so it can be included in "
|
|
1047
|
+
"files prior to upload). The %(scheme_label)s is registered when your upload "
|
|
1048
|
+
"is published."
|
|
492
1049
|
msgstr ""
|
|
493
|
-
"
|
|
494
|
-
"التحميل). يتم تسجيل
|
|
1050
|
+
"إحجز %(scheme_label)s بالضغط على الزر (بحيث يمكن إدراجه في الملفات قبل "
|
|
1051
|
+
"التحميل). يتم تسجيل %(scheme_label)s عندما يتم نشر التحميل الخاص بك."
|
|
495
1052
|
|
|
496
|
-
#: invenio_app_rdm/records_ui/views/deposits.py:
|
|
1053
|
+
#: invenio_app_rdm/records_ui/views/deposits.py:83
|
|
1054
|
+
#, python-format
|
|
497
1055
|
msgid ""
|
|
498
|
-
"A
|
|
1056
|
+
"A %(scheme_label)s allows your upload to be easily and unambiguously cited. "
|
|
499
1057
|
"Example: 10.1234/foo.bar"
|
|
500
1058
|
msgstr ""
|
|
501
|
-
"يتيح
|
|
1059
|
+
"يتيح %(scheme_label)s إمكانية الإستشهاد بالتحميل الخاص بك بسهولة ودون لبس. "
|
|
502
1060
|
"مثال: 10.1234 / foo.bar"
|
|
503
1061
|
|
|
504
|
-
#: invenio_app_rdm/
|
|
1062
|
+
#: invenio_app_rdm/records_ui/views/deposits.py:197
|
|
1063
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:11
|
|
1064
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:19
|
|
1065
|
+
msgid "All"
|
|
1066
|
+
msgstr "الكلّ"
|
|
1067
|
+
|
|
1068
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/community_dashboard.html:21
|
|
505
1069
|
msgid "Back to invitations"
|
|
506
1070
|
msgstr "عودة إلى الدّعوات"
|
|
507
1071
|
|
|
508
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/user_dashboard.html:
|
|
509
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/
|
|
1072
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/user_dashboard.html:19
|
|
1073
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:31
|
|
1074
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/guest-access-request/index.html:34
|
|
1075
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/user-access-request/index.html:28
|
|
510
1076
|
msgid "Back to requests"
|
|
511
1077
|
msgstr "عودة إلى الطّلبات"
|
|
512
1078
|
|
|
513
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:
|
|
1079
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:52
|
|
514
1080
|
msgid "Conversation"
|
|
515
1081
|
msgstr "محادثة"
|
|
516
1082
|
|
|
517
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:
|
|
1083
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:64
|
|
518
1084
|
msgid "Record"
|
|
519
1085
|
msgstr "تسجيلة"
|
|
520
1086
|
|
|
521
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/
|
|
1087
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/guest-access-request/index.html:13
|
|
1088
|
+
msgid "Access request"
|
|
1089
|
+
msgstr "طلب الولوج"
|
|
1090
|
+
|
|
1091
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:25
|
|
522
1092
|
msgid "View Community"
|
|
523
1093
|
msgstr "إطّلع على المجموعة"
|
|
524
1094
|
|
|
525
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:
|
|
1095
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:63
|
|
526
1096
|
msgid "View record"
|
|
527
1097
|
msgstr "مشاهدة التّسجيلة"
|
|
528
1098
|
|
|
529
|
-
#: invenio_app_rdm/theme/views.py:
|
|
530
|
-
msgid "
|
|
531
|
-
msgstr "
|
|
1099
|
+
#: invenio_app_rdm/theme/views.py:132
|
|
1100
|
+
msgid "Notification preferences were updated."
|
|
1101
|
+
msgstr "تم تحيين إعدادات الإشعار."
|
|
532
1102
|
|
|
533
1103
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:18
|
|
534
1104
|
msgid "About InvenioRDM"
|
|
535
1105
|
msgstr "حول انفنيو لإدارة بيانات البحث"
|
|
536
1106
|
|
|
537
1107
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:19
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
"
|
|
543
|
-
msgstr ""
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
"
|
|
1108
|
+
msgid "Product page"
|
|
1109
|
+
msgstr "صفحة المنتج"
|
|
1110
|
+
|
|
1111
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:20
|
|
1112
|
+
msgid "Features"
|
|
1113
|
+
msgstr "الملامح"
|
|
1114
|
+
|
|
1115
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:21
|
|
1116
|
+
msgid "Roadmap"
|
|
1117
|
+
msgstr "خارطة طريق"
|
|
547
1118
|
|
|
548
1119
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:22
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
"\n"
|
|
552
|
-
" <p><a href=\"%(invenio_rdm_features)s\">Features</a></p>\n"
|
|
553
|
-
" "
|
|
554
|
-
msgstr ""
|
|
555
|
-
"\n"
|
|
556
|
-
" <p><a href=\"%(invenio_rdm_features)s\">الميزات</a></p>\n"
|
|
557
|
-
" "
|
|
1120
|
+
msgid "Demo site"
|
|
1121
|
+
msgstr "موقع تجريبي"
|
|
558
1122
|
|
|
559
1123
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:25
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
"
|
|
565
|
-
msgstr ""
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
"
|
|
1124
|
+
msgid "Get involved"
|
|
1125
|
+
msgstr "شاركنا وأنخرط"
|
|
1126
|
+
|
|
1127
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:26
|
|
1128
|
+
msgid "GitHub"
|
|
1129
|
+
msgstr "جيت هوب GitHub"
|
|
1130
|
+
|
|
1131
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:27
|
|
1132
|
+
msgid "Project Milestones"
|
|
1133
|
+
msgstr "المعالم البارزة للمشروع"
|
|
569
1134
|
|
|
570
1135
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:28
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
"
|
|
576
|
-
msgstr ""
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
"
|
|
1136
|
+
msgid "Documentation"
|
|
1137
|
+
msgstr "الوثائق"
|
|
1138
|
+
|
|
1139
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:31
|
|
1140
|
+
msgid "Community"
|
|
1141
|
+
msgstr "المجتمع"
|
|
1142
|
+
|
|
1143
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:32
|
|
1144
|
+
msgid "Chatroom"
|
|
1145
|
+
msgstr "الدردشة"
|
|
580
1146
|
|
|
581
1147
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:33
|
|
582
|
-
msgid "
|
|
583
|
-
msgstr "
|
|
1148
|
+
msgid "Forum"
|
|
1149
|
+
msgstr "المنتدى"
|
|
584
1150
|
|
|
585
1151
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:34
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
"\n"
|
|
589
|
-
" <p><a href=\"%(invenio_rdm_gh)s\">GitHub</a></p>\n"
|
|
590
|
-
" "
|
|
591
|
-
msgstr ""
|
|
592
|
-
"\n"
|
|
593
|
-
" <p><a href=\"%(invenio_rdm_gh)s\">GitHub جيت هوب</a></p>\n"
|
|
594
|
-
" "
|
|
1152
|
+
msgid "Events & training"
|
|
1153
|
+
msgstr "التظاهرات و التكوين"
|
|
595
1154
|
|
|
596
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
"\n"
|
|
600
|
-
" <p><a href=\"%(invenio_rdm_milestones)s\">Project Milestones</a></p>\n"
|
|
601
|
-
" "
|
|
602
|
-
msgstr ""
|
|
603
|
-
"\n"
|
|
604
|
-
" <p><a href=\"%(invenio_rdm_milestones)s\">معالم المشروع</a></p>\n"
|
|
605
|
-
" "
|
|
1155
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:19
|
|
1156
|
+
msgid "Impersonated session"
|
|
1157
|
+
msgstr "فضاء محاكاة شخصيّة"
|
|
606
1158
|
|
|
607
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
"\n"
|
|
611
|
-
" <p><a href=\"%(invenio_rdm_docs_site)s\">Documentation</a></p>\n"
|
|
612
|
-
" "
|
|
613
|
-
msgstr ""
|
|
614
|
-
"\n"
|
|
615
|
-
" <p><a href=\"%(invenio_rdm_docs_site)s\">التوثيق</a></p>\n"
|
|
616
|
-
" "
|
|
1159
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:21
|
|
1160
|
+
msgid "You must logout after you finish with you inquiry!"
|
|
1161
|
+
msgstr "يجب عليك تسجيل الخروج بعد الانتهاء من استفسارك!"
|
|
617
1162
|
|
|
618
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
619
|
-
|
|
620
|
-
|
|
1163
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:38
|
|
1164
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:37
|
|
1165
|
+
msgid "home"
|
|
1166
|
+
msgstr "الإستقبــال"
|
|
621
1167
|
|
|
622
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
623
|
-
|
|
624
|
-
msgid ""
|
|
625
|
-
"
|
|
626
|
-
" <p><a href=\"%(invenio_rdm_chatroom)s\">Chatroom</a></p>\n"
|
|
627
|
-
" "
|
|
628
|
-
msgstr ""
|
|
629
|
-
"\n"
|
|
630
|
-
" <p><a href=\"%(invenio_rdm_chatroom)s\">غرفة الدردشة</a></p>\n"
|
|
631
|
-
" "
|
|
1168
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:51
|
|
1169
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:50
|
|
1170
|
+
msgid "Menu"
|
|
1171
|
+
msgstr "القائمة"
|
|
632
1172
|
|
|
633
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
634
|
-
|
|
635
|
-
msgid ""
|
|
636
|
-
"
|
|
637
|
-
" <p><a href=\"%(invenio_rdm_talk)s\">Forum</a></p>\n"
|
|
638
|
-
" "
|
|
639
|
-
msgstr ""
|
|
640
|
-
"\n"
|
|
641
|
-
" <p><a href=\"%(invenio_rdm_talk)s\">المنتدى</a></p>\n"
|
|
642
|
-
" "
|
|
1173
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:68
|
|
1174
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:67
|
|
1175
|
+
msgid "Close menu"
|
|
1176
|
+
msgstr "إغلاق القائمة "
|
|
643
1177
|
|
|
644
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
645
|
-
|
|
646
|
-
msgid ""
|
|
647
|
-
"
|
|
648
|
-
" <p><a href=\"%(invenio_events)s\">Events & training</a></p>\n"
|
|
649
|
-
" "
|
|
650
|
-
msgstr ""
|
|
651
|
-
"\n"
|
|
652
|
-
" <p><a href=\"%(invenio_events)s\">الفعاليات والتدريب</a></p>\n"
|
|
653
|
-
" "
|
|
1178
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:120
|
|
1179
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:120
|
|
1180
|
+
msgid "Inbox"
|
|
1181
|
+
msgstr "صندوق الواردات"
|
|
654
1182
|
|
|
655
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
656
|
-
|
|
657
|
-
msgid ""
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
"
|
|
662
|
-
"
|
|
1183
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_frontpage.html:36
|
|
1184
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_frontpage.html:37
|
|
1185
|
+
msgid "Search"
|
|
1186
|
+
msgstr "بحث"
|
|
1187
|
+
|
|
1188
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:18
|
|
1189
|
+
msgid "Log in"
|
|
1190
|
+
msgstr "تسجيل الدّخول"
|
|
1191
|
+
|
|
1192
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:22
|
|
1193
|
+
msgid "Sign up"
|
|
1194
|
+
msgstr "سجّل"
|
|
1195
|
+
|
|
1196
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:39
|
|
1197
|
+
msgid "Quick create"
|
|
1198
|
+
msgstr "إنشاء سريع"
|
|
1199
|
+
|
|
1200
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:56
|
|
1201
|
+
msgid "Actions"
|
|
1202
|
+
msgstr "العمليات"
|
|
1203
|
+
|
|
1204
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:77
|
|
1205
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:120
|
|
1206
|
+
msgid "My account"
|
|
1207
|
+
msgstr "حسابي"
|
|
663
1208
|
|
|
664
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1209
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:12
|
|
665
1210
|
msgid "You've successfully installed InvenioRDM!"
|
|
666
1211
|
msgstr "قمت بالتّثبيت بنجاح"
|
|
667
1212
|
|
|
668
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1213
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:14
|
|
669
1214
|
msgid "What is ahead?"
|
|
670
1215
|
msgstr "ماذا ينتظرنا؟"
|
|
671
1216
|
|
|
672
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1217
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:24
|
|
673
1218
|
msgid "Configure"
|
|
674
1219
|
msgstr "تهيئة"
|
|
675
1220
|
|
|
676
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
677
|
-
#, python-format
|
|
1221
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:27
|
|
678
1222
|
msgid ""
|
|
679
|
-
"
|
|
680
|
-
"
|
|
681
|
-
" information on how to do it visit the <a href=\"%(configuration_link)s\" target=\"_blank\">configuration\n"
|
|
682
|
-
" section in the docs</a>.\n"
|
|
683
|
-
" "
|
|
1223
|
+
"Configure the datamodel, resource types, permissions and much more to make "
|
|
1224
|
+
"it suit your needs! For more information on how to do it visit the"
|
|
684
1225
|
msgstr ""
|
|
685
|
-
"
|
|
686
|
-
"
|
|
687
|
-
" المعلومات حول كيفية القيام بذلك يرجى زيارة قسم <a href=\"%(configuration_link)s\" target=\"_blank\">الإعدادات\n"
|
|
688
|
-
" المدرج ضمن التوثيق</a>.\n"
|
|
689
|
-
" "
|
|
1226
|
+
"قم بتشكيل نموذج البيانات، وأنواع الموارد، والأذونات، والمزيد لتناسب "
|
|
1227
|
+
"احتياجاتك! لمزيد من المعلومات حول كيفية القيام بذلك، تفضل بزيارة"
|
|
690
1228
|
|
|
691
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1229
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:29
|
|
1230
|
+
msgid "configuration section in the docs"
|
|
1231
|
+
msgstr "باب التشكيل configuration في الوثائق "
|
|
1232
|
+
|
|
1233
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:41
|
|
692
1234
|
msgid "Customize"
|
|
693
1235
|
msgstr "تعديل"
|
|
694
1236
|
|
|
695
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
696
|
-
#, python-format
|
|
1237
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:44
|
|
697
1238
|
msgid ""
|
|
698
|
-
"
|
|
699
|
-
"
|
|
700
|
-
"
|
|
701
|
-
" "
|
|
702
|
-
msgstr ""
|
|
703
|
-
"\n"
|
|
704
|
-
" يإمكانك تكييف التمظهر والتصميم ليلائم حاجيات مؤسستك..يمكنك اﻹطلاع على كيفية فعل ذلك من<a\n"
|
|
705
|
-
" href=\"%(configuration_link)s\" target=\"_blank\"> هنا</a>.\n"
|
|
706
|
-
" "
|
|
1239
|
+
"Customize the layout and adapt the styling to match your institution's. See "
|
|
1240
|
+
"how to do so"
|
|
1241
|
+
msgstr "قم بصياغة التصميم وعدّله ليناسب مؤسستك. تعرّف على كيفية القيام بذلك."
|
|
707
1242
|
|
|
708
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1243
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:46
|
|
1244
|
+
msgid "here"
|
|
1245
|
+
msgstr "هنا"
|
|
1246
|
+
|
|
1247
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:57
|
|
709
1248
|
msgid "Run it!"
|
|
710
1249
|
msgstr "قم بتشغيله!"
|
|
711
1250
|
|
|
712
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
"
|
|
719
|
-
msgstr ""
|
|
720
|
-
"\n"
|
|
721
|
-
" <a href=\"%(deployment_link)s\" target=\"_blank\">قم بتشغيل\n"
|
|
722
|
-
"</a> \n"
|
|
723
|
-
" مثيل انفنيو لإدارة بيانات البحث محليًا أو في حاويات.\n"
|
|
724
|
-
" "
|
|
1251
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:59
|
|
1252
|
+
msgid "Run your InvenioRDM instance locally or in containers."
|
|
1253
|
+
msgstr "قم بتشغيل مثيل InvenioRDM الخاص بك محليًا أو عبر حاويات."
|
|
1254
|
+
|
|
1255
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:61
|
|
1256
|
+
msgid "Run"
|
|
1257
|
+
msgstr "شغّل"
|
|
725
1258
|
|
|
726
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1259
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:75
|
|
727
1260
|
msgid "Docs"
|
|
728
1261
|
msgstr "وثائق"
|
|
729
1262
|
|
|
730
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1263
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:84
|
|
731
1264
|
msgid "Code"
|
|
732
1265
|
msgstr "رمز"
|
|
733
1266
|
|
|
734
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
735
|
-
msgid "
|
|
736
|
-
msgstr "
|
|
1267
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:91
|
|
1268
|
+
msgid "To disable this section, add"
|
|
1269
|
+
msgstr "لتعطيل هذا القسم، أضف"
|
|
737
1270
|
|
|
738
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
739
|
-
msgid "
|
|
740
|
-
msgstr "
|
|
1271
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:93
|
|
1272
|
+
msgid "to your invenio.cfg file."
|
|
1273
|
+
msgstr "إلى ملف invenio.cfg الخاص بك."
|
|
741
1274
|
|
|
742
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
msgid "Requests"
|
|
746
|
-
msgstr "الطلبات"
|
|
1275
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:6
|
|
1276
|
+
msgid "In this community"
|
|
1277
|
+
msgstr "في هذه المجموعة"
|
|
747
1278
|
|
|
748
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
749
|
-
|
|
750
|
-
|
|
1279
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:30
|
|
1280
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:31
|
|
1281
|
+
msgid "Search records"
|
|
1282
|
+
msgstr "البحث عن تسجيلات..."
|
|
751
1283
|
|
|
752
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
753
|
-
|
|
754
|
-
|
|
1284
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/site_footer.html:15
|
|
1285
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:15
|
|
1286
|
+
msgid "Powered by"
|
|
1287
|
+
msgstr "مدعوم من طرف"
|
|
755
1288
|
|
|
756
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
757
|
-
msgid "
|
|
758
|
-
|
|
1289
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:13
|
|
1290
|
+
msgid ""
|
|
1291
|
+
"The following files were flagged as 'unhealthy'. This means that the "
|
|
1292
|
+
"checksum check failed or timed out. Please take any action if needed."
|
|
1293
|
+
msgstr ""
|
|
1294
|
+
"تم تصنيف الملفات التالية على أنها \"غير سليمة\". هذا يعني أن عملية التحقق من"
|
|
1295
|
+
" المجموع الاختباري فشلت أو انتهت صلاحيتها. يُرجى اتخاذ أي إجراء إذا لزم "
|
|
1296
|
+
"الأمر."
|
|
759
1297
|
|
|
760
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
761
|
-
|
|
762
|
-
msgid "
|
|
763
|
-
msgstr "
|
|
1298
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:16
|
|
1299
|
+
#, python-format
|
|
1300
|
+
msgid "ID: %s"
|
|
1301
|
+
msgstr "المعرف: %s"
|
|
764
1302
|
|
|
765
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
msgstr "خروج"
|
|
1303
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:17
|
|
1304
|
+
#, python-format
|
|
1305
|
+
msgid "URI: %s"
|
|
1306
|
+
msgstr "معرف الموارد الموحد URI:%s"
|
|
770
1307
|
|
|
771
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
772
|
-
|
|
773
|
-
|
|
1308
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:19
|
|
1309
|
+
#, python-format
|
|
1310
|
+
msgid "Name: %s"
|
|
1311
|
+
msgstr "الإسم: %s"
|
|
774
1312
|
|
|
775
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
776
|
-
|
|
777
|
-
msgid "
|
|
778
|
-
msgstr "
|
|
1313
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:21
|
|
1314
|
+
#, python-format
|
|
1315
|
+
msgid "Created: %s"
|
|
1316
|
+
msgstr "تمّ الإنشاء: %s"
|
|
1317
|
+
|
|
1318
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:22
|
|
1319
|
+
#, python-format
|
|
1320
|
+
msgid "Checksum: %s"
|
|
1321
|
+
msgstr "تدقيق المجموع: %s"
|
|
1322
|
+
|
|
1323
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:23
|
|
1324
|
+
#, python-format
|
|
1325
|
+
msgid "Last check date: %s"
|
|
1326
|
+
msgstr "تاريخ آخر تدقيق: %s"
|
|
1327
|
+
|
|
1328
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:24
|
|
1329
|
+
#, python-format
|
|
1330
|
+
msgid "Last check FAILED with result: %s"
|
|
1331
|
+
msgstr "آخر تدقيق \"فشل\" مع النتيجة: %s"
|
|
1332
|
+
|
|
1333
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:26
|
|
1334
|
+
#, python-format
|
|
1335
|
+
msgid "Record: %s/records/%s"
|
|
1336
|
+
msgstr "تسجيلة: %s/تسجيلات/%s"
|
|
1337
|
+
|
|
1338
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:29
|
|
1339
|
+
#, python-format
|
|
1340
|
+
msgid "Draft: %s/uploads/%s"
|
|
1341
|
+
msgstr "مسودّة: %s/تحميلات/%s"
|
|
779
1342
|
|
|
780
1343
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.de.html:9
|
|
781
1344
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.en.html:8
|
|
1345
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.sv.html:8
|
|
782
1346
|
msgid "Search guide"
|
|
783
1347
|
msgstr "دليل البحث"
|
|
784
1348
|
|
|
785
|
-
#: invenio_app_rdm/
|
|
786
|
-
#: invenio_app_rdm/
|
|
787
|
-
msgid "
|
|
788
|
-
msgstr "
|
|
1349
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/statistics.en.html:8
|
|
1350
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/statistics.sv.html:8
|
|
1351
|
+
msgid "FAQ statistics"
|
|
1352
|
+
msgstr "إحصائيات الأسئلة الشائعة FAQ"
|
|
789
1353
|
|
|
790
|
-
#: invenio_app_rdm/
|
|
791
|
-
#: invenio_app_rdm/
|
|
792
|
-
msgid "
|
|
793
|
-
msgstr "
|
|
1354
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/versioning.en.html:8
|
|
1355
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/versioning.sv.html:8
|
|
1356
|
+
msgid "FAQ versioning"
|
|
1357
|
+
msgstr "إصدارات الأسئلة الشائعة FAQ"
|
|
1358
|
+
|
|
1359
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/macros/records_list.html:10
|
|
1360
|
+
msgid "Recent uploads"
|
|
1361
|
+
msgstr "التحميلات الحديثة"
|
|
1362
|
+
|
|
1363
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:22
|
|
1364
|
+
msgid "Verified community"
|
|
1365
|
+
msgstr "مجتمع تم التحقق منه"
|
|
1366
|
+
|
|
1367
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:29
|
|
1368
|
+
msgid "Privacy policy"
|
|
1369
|
+
msgstr "سياسة الخصوصية"
|
|
1370
|
+
|
|
1371
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:30
|
|
1372
|
+
msgid "Terms of use"
|
|
1373
|
+
msgstr "شروط الاستخدام"
|
|
1374
|
+
|
|
1375
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:31
|
|
1376
|
+
msgid "Support"
|
|
1377
|
+
msgstr "الدعم"
|
|
1378
|
+
|
|
1379
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html:18
|
|
1380
|
+
msgid "Your dashboard"
|
|
1381
|
+
msgstr "لوح القيادة"
|
|
1382
|
+
|
|
1383
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html:18
|
|
1384
|
+
msgid "Anonymous user"
|
|
1385
|
+
msgstr "مستخدم مجهول"
|
|
1386
|
+
|
|
1387
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html:35
|
|
1388
|
+
msgid "New community"
|
|
1389
|
+
msgstr "مجتمع جديد"
|