invenio-vocabularies 9.1.2__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_vocabularies/__init__.py +16 -0
- invenio_vocabularies/administration/__init__.py +10 -0
- invenio_vocabularies/administration/views/__init__.py +10 -0
- invenio_vocabularies/administration/views/vocabularies.py +43 -0
- invenio_vocabularies/alembic/17c703ce1eb7_create_names_table.py +54 -0
- invenio_vocabularies/alembic/3ba812d80559_add_internal_name_id.py +36 -0
- invenio_vocabularies/alembic/4a9a4fd235f8_create_vocabulary_schemes.py +37 -0
- invenio_vocabularies/alembic/4f365fced43f_create_vocabularies_tables.py +92 -0
- invenio_vocabularies/alembic/55a700f897b6_add_names_and_afiliations_pid_column.py +96 -0
- invenio_vocabularies/alembic/6312f33645c1_create_affiliations_table.py +54 -0
- invenio_vocabularies/alembic/676dd587542d_create_funders_vocabulary_table.py +58 -0
- invenio_vocabularies/alembic/8ff82dfb0be8_create_vocabularies_branch.py +28 -0
- invenio_vocabularies/alembic/__init__.py +9 -0
- invenio_vocabularies/alembic/af2457652217_drop_unique_constraint_from_internal_id.py +37 -0
- invenio_vocabularies/alembic/e1146238edd3_create_awards_table.py +56 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/.eslintrc.yml +11 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/.prettierrc +1 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/index.js +7 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/package.json +25 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/AwardResults.js +95 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/CustomAwardForm.js +139 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FunderDropdown.js +87 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingField.js +244 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingField.test.js +1 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingFieldItem.js +152 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingModal.js +246 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/NoAwardResults.js +37 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/index.js +8 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/index.js +7 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/index.js +7 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/index.js +7 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/i18next.js +36 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/_generatedTranslations.js +66 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ar/messages.po +96 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ar/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/bg/messages.po +94 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/bg/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ca/messages.po +94 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ca/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/cs/messages.po +97 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/cs/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/da/messages.po +94 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/da/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/de/messages.po +98 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/de/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/el/messages.po +94 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/el/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/en/messages.po +88 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/en/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/es/messages.po +96 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/es/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/et/messages.po +95 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/et/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/fa/messages.po +94 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/fa/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/fr/messages.po +96 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/fr/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/hr/messages.po +94 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/hr/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/hu/messages.po +96 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/hu/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/index.js +24 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/it/messages.po +96 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/it/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ja/messages.po +94 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ja/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ka/messages.po +94 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ka/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ko/messages.po +90 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ko/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/lt/messages.po +94 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/lt/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/no/messages.po +94 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/no/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/pl/messages.po +94 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/pl/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/pt/messages.po +94 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/pt/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ro/messages.po +95 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ro/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ru/messages.po +95 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ru/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/sk/messages.po +94 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/sk/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/sv/messages.po +98 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/sv/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/tr/messages.po +96 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/tr/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/uk/messages.po +94 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/uk/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/zh_CN/messages.po +96 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/zh_CN/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/zh_TW/messages.po +94 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/zh_TW/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/package.json +19 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/translations.pot +88 -0
- invenio_vocabularies/cli.py +175 -0
- invenio_vocabularies/config.py +231 -0
- invenio_vocabularies/contrib/__init__.py +9 -0
- invenio_vocabularies/contrib/affiliations/__init__.py +20 -0
- invenio_vocabularies/contrib/affiliations/affiliations.py +61 -0
- invenio_vocabularies/contrib/affiliations/api.py +13 -0
- invenio_vocabularies/contrib/affiliations/config.py +79 -0
- invenio_vocabularies/contrib/affiliations/datastreams.py +301 -0
- invenio_vocabularies/contrib/affiliations/facets.py +36 -0
- invenio_vocabularies/contrib/affiliations/jsonschemas/__init__.py +9 -0
- invenio_vocabularies/contrib/affiliations/jsonschemas/affiliations/affiliation-v1.0.0.json +63 -0
- invenio_vocabularies/contrib/affiliations/mappings/__init__.py +10 -0
- invenio_vocabularies/contrib/affiliations/mappings/os-v1/__init__.py +9 -0
- invenio_vocabularies/contrib/affiliations/mappings/os-v1/affiliations/affiliation-v1.0.0.json +112 -0
- invenio_vocabularies/contrib/affiliations/mappings/os-v1/affiliations/affiliation-v2.0.0.json +171 -0
- invenio_vocabularies/contrib/affiliations/mappings/os-v2/__init__.py +9 -0
- invenio_vocabularies/contrib/affiliations/mappings/os-v2/affiliations/affiliation-v1.0.0.json +112 -0
- invenio_vocabularies/contrib/affiliations/mappings/os-v2/affiliations/affiliation-v2.0.0.json +171 -0
- invenio_vocabularies/contrib/affiliations/mappings/v7/__init__.py +9 -0
- invenio_vocabularies/contrib/affiliations/mappings/v7/affiliations/affiliation-v1.0.0.json +112 -0
- invenio_vocabularies/contrib/affiliations/models.py +13 -0
- invenio_vocabularies/contrib/affiliations/resources.py +16 -0
- invenio_vocabularies/contrib/affiliations/schema.py +71 -0
- invenio_vocabularies/contrib/affiliations/services.py +15 -0
- invenio_vocabularies/contrib/awards/__init__.py +19 -0
- invenio_vocabularies/contrib/awards/api.py +13 -0
- invenio_vocabularies/contrib/awards/awards.py +96 -0
- invenio_vocabularies/contrib/awards/config.py +59 -0
- invenio_vocabularies/contrib/awards/datastreams.py +372 -0
- invenio_vocabularies/contrib/awards/jsonschemas/__init__.py +9 -0
- invenio_vocabularies/contrib/awards/jsonschemas/awards/award-v1.0.0.json +91 -0
- invenio_vocabularies/contrib/awards/mappings/__init__.py +9 -0
- invenio_vocabularies/contrib/awards/mappings/os-v1/__init__.py +9 -0
- invenio_vocabularies/contrib/awards/mappings/os-v1/awards/award-v1.0.0.json +147 -0
- invenio_vocabularies/contrib/awards/mappings/os-v2/__init__.py +9 -0
- invenio_vocabularies/contrib/awards/mappings/os-v2/awards/award-v1.0.0.json +147 -0
- invenio_vocabularies/contrib/awards/mappings/v7/__init__.py +9 -0
- invenio_vocabularies/contrib/awards/mappings/v7/awards/award-v1.0.0.json +147 -0
- invenio_vocabularies/contrib/awards/models.py +13 -0
- invenio_vocabularies/contrib/awards/resources.py +16 -0
- invenio_vocabularies/contrib/awards/schema.py +119 -0
- invenio_vocabularies/contrib/awards/serializer.py +47 -0
- invenio_vocabularies/contrib/awards/services.py +15 -0
- invenio_vocabularies/contrib/common/__init__.py +9 -0
- invenio_vocabularies/contrib/common/openaire/__init__.py +9 -0
- invenio_vocabularies/contrib/common/openaire/datastreams.py +84 -0
- invenio_vocabularies/contrib/common/ror/__init__.py +9 -0
- invenio_vocabularies/contrib/common/ror/datastreams.py +230 -0
- invenio_vocabularies/contrib/funders/__init__.py +19 -0
- invenio_vocabularies/contrib/funders/api.py +13 -0
- invenio_vocabularies/contrib/funders/config.py +78 -0
- invenio_vocabularies/contrib/funders/datastreams.py +97 -0
- invenio_vocabularies/contrib/funders/facets.py +36 -0
- invenio_vocabularies/contrib/funders/funders.py +72 -0
- invenio_vocabularies/contrib/funders/jsonschemas/__init__.py +9 -0
- invenio_vocabularies/contrib/funders/jsonschemas/funders/funder-v1.0.0.json +65 -0
- invenio_vocabularies/contrib/funders/mappings/__init__.py +9 -0
- invenio_vocabularies/contrib/funders/mappings/os-v1/__init__.py +9 -0
- invenio_vocabularies/contrib/funders/mappings/os-v1/funders/funder-v1.0.0.json +90 -0
- invenio_vocabularies/contrib/funders/mappings/os-v1/funders/funder-v2.0.0.json +156 -0
- invenio_vocabularies/contrib/funders/mappings/os-v2/__init__.py +9 -0
- invenio_vocabularies/contrib/funders/mappings/os-v2/funders/funder-v1.0.0.json +90 -0
- invenio_vocabularies/contrib/funders/mappings/os-v2/funders/funder-v2.0.0.json +156 -0
- invenio_vocabularies/contrib/funders/mappings/v7/__init__.py +9 -0
- invenio_vocabularies/contrib/funders/mappings/v7/funders/funder-v1.0.0.json +90 -0
- invenio_vocabularies/contrib/funders/models.py +13 -0
- invenio_vocabularies/contrib/funders/resources.py +16 -0
- invenio_vocabularies/contrib/funders/schema.py +88 -0
- invenio_vocabularies/contrib/funders/serializer.py +33 -0
- invenio_vocabularies/contrib/funders/services.py +15 -0
- invenio_vocabularies/contrib/names/__init__.py +19 -0
- invenio_vocabularies/contrib/names/api.py +13 -0
- invenio_vocabularies/contrib/names/components.py +24 -0
- invenio_vocabularies/contrib/names/config.py +75 -0
- invenio_vocabularies/contrib/names/datastreams.py +483 -0
- invenio_vocabularies/contrib/names/jsonschemas/__init__.py +9 -0
- invenio_vocabularies/contrib/names/jsonschemas/names/name-v1.0.0.json +68 -0
- invenio_vocabularies/contrib/names/mappings/__init__.py +9 -0
- invenio_vocabularies/contrib/names/mappings/os-v1/__init__.py +9 -0
- invenio_vocabularies/contrib/names/mappings/os-v1/names/name-v1.0.0.json +101 -0
- invenio_vocabularies/contrib/names/mappings/os-v1/names/name-v2.0.0.json +165 -0
- invenio_vocabularies/contrib/names/mappings/os-v2/__init__.py +9 -0
- invenio_vocabularies/contrib/names/mappings/os-v2/names/name-v1.0.0.json +101 -0
- invenio_vocabularies/contrib/names/mappings/os-v2/names/name-v2.0.0.json +165 -0
- invenio_vocabularies/contrib/names/mappings/v7/__init__.py +9 -0
- invenio_vocabularies/contrib/names/mappings/v7/names/name-v1.0.0.json +101 -0
- invenio_vocabularies/contrib/names/models.py +13 -0
- invenio_vocabularies/contrib/names/names.py +80 -0
- invenio_vocabularies/contrib/names/permissions.py +30 -0
- invenio_vocabularies/contrib/names/resources.py +54 -0
- invenio_vocabularies/contrib/names/s3client.py +50 -0
- invenio_vocabularies/contrib/names/schema.py +121 -0
- invenio_vocabularies/contrib/names/services.py +64 -0
- invenio_vocabularies/contrib/subjects/__init__.py +22 -0
- invenio_vocabularies/contrib/subjects/api.py +14 -0
- invenio_vocabularies/contrib/subjects/config.py +90 -0
- invenio_vocabularies/contrib/subjects/datastreams.py +63 -0
- invenio_vocabularies/contrib/subjects/euroscivoc/__init__.py +9 -0
- invenio_vocabularies/contrib/subjects/euroscivoc/datastreams.py +101 -0
- invenio_vocabularies/contrib/subjects/facets.py +23 -0
- invenio_vocabularies/contrib/subjects/gemet/__init__.py +9 -0
- invenio_vocabularies/contrib/subjects/gemet/datastreams.py +140 -0
- invenio_vocabularies/contrib/subjects/jsonschemas/__init__.py +10 -0
- invenio_vocabularies/contrib/subjects/jsonschemas/subjects/subject-v1.0.0.json +69 -0
- invenio_vocabularies/contrib/subjects/mappings/__init__.py +9 -0
- invenio_vocabularies/contrib/subjects/mappings/os-v1/__init__.py +9 -0
- invenio_vocabularies/contrib/subjects/mappings/os-v1/subjects/subject-v1.0.0.json +96 -0
- invenio_vocabularies/contrib/subjects/mappings/os-v2/__init__.py +9 -0
- invenio_vocabularies/contrib/subjects/mappings/os-v2/subjects/subject-v1.0.0.json +96 -0
- invenio_vocabularies/contrib/subjects/mappings/v7/__init__.py +9 -0
- invenio_vocabularies/contrib/subjects/mappings/v7/subjects/subject-v1.0.0.json +96 -0
- invenio_vocabularies/contrib/subjects/mesh/__init__.py +9 -0
- invenio_vocabularies/contrib/subjects/mesh/datastreams.py +48 -0
- invenio_vocabularies/contrib/subjects/models.py +14 -0
- invenio_vocabularies/contrib/subjects/nvs/__init__.py +9 -0
- invenio_vocabularies/contrib/subjects/nvs/datastreams.py +114 -0
- invenio_vocabularies/contrib/subjects/resources.py +17 -0
- invenio_vocabularies/contrib/subjects/schema.py +101 -0
- invenio_vocabularies/contrib/subjects/services.py +30 -0
- invenio_vocabularies/contrib/subjects/subjects.py +55 -0
- invenio_vocabularies/datastreams/__init__.py +18 -0
- invenio_vocabularies/datastreams/datastreams.py +239 -0
- invenio_vocabularies/datastreams/errors.py +29 -0
- invenio_vocabularies/datastreams/factories.py +86 -0
- invenio_vocabularies/datastreams/readers.py +448 -0
- invenio_vocabularies/datastreams/tasks.py +115 -0
- invenio_vocabularies/datastreams/transformers.py +130 -0
- invenio_vocabularies/datastreams/writers.py +222 -0
- invenio_vocabularies/datastreams/xml.py +34 -0
- invenio_vocabularies/ext.py +179 -0
- invenio_vocabularies/factories.py +193 -0
- invenio_vocabularies/fixtures.py +52 -0
- invenio_vocabularies/jobs.py +207 -0
- invenio_vocabularies/proxies.py +27 -0
- invenio_vocabularies/records/__init__.py +9 -0
- invenio_vocabularies/records/api.py +53 -0
- invenio_vocabularies/records/jsonschemas/__init__.py +9 -0
- invenio_vocabularies/records/jsonschemas/vocabularies/definitions-v1.0.0.json +30 -0
- invenio_vocabularies/records/jsonschemas/vocabularies/vocabulary-v1.0.0.json +55 -0
- invenio_vocabularies/records/mappings/__init__.py +9 -0
- invenio_vocabularies/records/mappings/os-v1/__init__.py +9 -0
- invenio_vocabularies/records/mappings/os-v1/vocabularies/vocabulary-v1.0.0.json +109 -0
- invenio_vocabularies/records/mappings/os-v2/__init__.py +9 -0
- invenio_vocabularies/records/mappings/os-v2/vocabularies/vocabulary-v1.0.0.json +109 -0
- invenio_vocabularies/records/mappings/v7/__init__.py +9 -0
- invenio_vocabularies/records/mappings/v7/vocabularies/vocabulary-v1.0.0.json +109 -0
- invenio_vocabularies/records/models.py +90 -0
- invenio_vocabularies/records/pidprovider.py +118 -0
- invenio_vocabularies/records/systemfields/__init__.py +16 -0
- invenio_vocabularies/records/systemfields/pid.py +125 -0
- invenio_vocabularies/records/systemfields/relations.py +51 -0
- invenio_vocabularies/resources/__init__.py +23 -0
- invenio_vocabularies/resources/config.py +105 -0
- invenio_vocabularies/resources/resource.py +156 -0
- invenio_vocabularies/resources/schema.py +21 -0
- invenio_vocabularies/resources/serializer.py +39 -0
- invenio_vocabularies/services/__init__.py +19 -0
- invenio_vocabularies/services/components.py +58 -0
- invenio_vocabularies/services/config.py +173 -0
- invenio_vocabularies/services/custom_fields/__init__.py +17 -0
- invenio_vocabularies/services/custom_fields/subject.py +82 -0
- invenio_vocabularies/services/custom_fields/vocabulary.py +96 -0
- invenio_vocabularies/services/facets.py +114 -0
- invenio_vocabularies/services/generators.py +38 -0
- invenio_vocabularies/services/permissions.py +30 -0
- invenio_vocabularies/services/querystr.py +57 -0
- invenio_vocabularies/services/results.py +110 -0
- invenio_vocabularies/services/schema.py +163 -0
- invenio_vocabularies/services/service.py +189 -0
- invenio_vocabularies/services/tasks.py +38 -0
- invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/subjects.html +23 -0
- invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/vocabularies-list.html +12 -0
- invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/vocabulary-details.html +71 -0
- invenio_vocabularies/translations/ar/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/ar/LC_MESSAGES/messages.po +277 -0
- invenio_vocabularies/translations/bg/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/bg/LC_MESSAGES/messages.po +275 -0
- invenio_vocabularies/translations/ca/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/ca/LC_MESSAGES/messages.po +276 -0
- invenio_vocabularies/translations/cs/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/cs/LC_MESSAGES/messages.po +281 -0
- invenio_vocabularies/translations/da/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/da/LC_MESSAGES/messages.po +271 -0
- invenio_vocabularies/translations/de/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/de/LC_MESSAGES/messages.po +293 -0
- invenio_vocabularies/translations/el/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/el/LC_MESSAGES/messages.po +275 -0
- invenio_vocabularies/translations/es/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/es/LC_MESSAGES/messages.po +281 -0
- invenio_vocabularies/translations/et/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/et/LC_MESSAGES/messages.po +276 -0
- invenio_vocabularies/translations/fa/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/fa/LC_MESSAGES/messages.po +275 -0
- invenio_vocabularies/translations/fr/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/fr/LC_MESSAGES/messages.po +279 -0
- invenio_vocabularies/translations/hr/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/hr/LC_MESSAGES/messages.po +275 -0
- invenio_vocabularies/translations/hu/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/hu/LC_MESSAGES/messages.po +280 -0
- invenio_vocabularies/translations/it/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/it/LC_MESSAGES/messages.po +277 -0
- invenio_vocabularies/translations/ja/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/ja/LC_MESSAGES/messages.po +275 -0
- invenio_vocabularies/translations/ka/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/ka/LC_MESSAGES/messages.po +275 -0
- invenio_vocabularies/translations/ko/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/ko/LC_MESSAGES/messages.po +275 -0
- invenio_vocabularies/translations/lt/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/lt/LC_MESSAGES/messages.po +275 -0
- invenio_vocabularies/translations/messages.pot +270 -0
- invenio_vocabularies/translations/no/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/no/LC_MESSAGES/messages.po +275 -0
- invenio_vocabularies/translations/pl/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/pl/LC_MESSAGES/messages.po +275 -0
- invenio_vocabularies/translations/pt/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/pt/LC_MESSAGES/messages.po +275 -0
- invenio_vocabularies/translations/ro/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/ro/LC_MESSAGES/messages.po +280 -0
- invenio_vocabularies/translations/ru/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/ru/LC_MESSAGES/messages.po +276 -0
- invenio_vocabularies/translations/sk/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/sk/LC_MESSAGES/messages.po +276 -0
- invenio_vocabularies/translations/sv/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/sv/LC_MESSAGES/messages.po +280 -0
- invenio_vocabularies/translations/tr/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/tr/LC_MESSAGES/messages.po +277 -0
- invenio_vocabularies/translations/uk/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/uk/LC_MESSAGES/messages.po +275 -0
- invenio_vocabularies/translations/zh_CN/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/zh_CN/LC_MESSAGES/messages.po +276 -0
- invenio_vocabularies/translations/zh_TW/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/zh_TW/LC_MESSAGES/messages.po +275 -0
- invenio_vocabularies/views.py +53 -0
- invenio_vocabularies/webpack.py +51 -0
- invenio_vocabularies-9.1.2.dist-info/METADATA +517 -0
- invenio_vocabularies-9.1.2.dist-info/RECORD +337 -0
- invenio_vocabularies-9.1.2.dist-info/WHEEL +6 -0
- invenio_vocabularies-9.1.2.dist-info/entry_points.txt +73 -0
- invenio_vocabularies-9.1.2.dist-info/licenses/AUTHORS.rst +13 -0
- invenio_vocabularies-9.1.2.dist-info/licenses/LICENSE +21 -0
- invenio_vocabularies-9.1.2.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,281 @@
|
|
|
1
|
+
# Translations template for invenio-vocabularies.
|
|
2
|
+
# Copyright (C) 2025 CERN
|
|
3
|
+
# This file is distributed under the same license as the
|
|
4
|
+
# invenio-vocabularies project.
|
|
5
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, 2025.
|
|
6
|
+
#
|
|
7
|
+
# Translators:
|
|
8
|
+
# Alizee Pace <alizee.pace@gmail.com>, 2021
|
|
9
|
+
# Tibor Simko <tibor.simko@cern.ch>, 2022
|
|
10
|
+
# Zacharias Zacharodimos <zacharias.zacharodimos@cern.ch>, 2025
|
|
11
|
+
# Jesús Martín <jesusmartin@sallep.net>, 2025
|
|
12
|
+
#
|
|
13
|
+
#, fuzzy
|
|
14
|
+
msgid ""
|
|
15
|
+
msgstr ""
|
|
16
|
+
"Project-Id-Version: invenio-vocabularies 8.1.0\n"
|
|
17
|
+
"Report-Msgid-Bugs-To: info@inveniosoftware.org\n"
|
|
18
|
+
"POT-Creation-Date: 2025-07-08 20:00+0000\n"
|
|
19
|
+
"PO-Revision-Date: 2021-07-13 12:40+0000\n"
|
|
20
|
+
"Last-Translator: Jesús Martín <jesusmartin@sallep.net>, 2025\n"
|
|
21
|
+
"Language-Team: Spanish (https://app.transifex.com/inveniosoftware/teams/23537/es/)\n"
|
|
22
|
+
"MIME-Version: 1.0\n"
|
|
23
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
24
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
25
|
+
"Generated-By: Babel 2.17.0\n"
|
|
26
|
+
"Language: es\n"
|
|
27
|
+
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
|
28
|
+
|
|
29
|
+
#: invenio_vocabularies/config.py:44
|
|
30
|
+
msgid "GRID"
|
|
31
|
+
msgstr "GRID"
|
|
32
|
+
|
|
33
|
+
#: invenio_vocabularies/config.py:45 invenio_vocabularies/config.py:126
|
|
34
|
+
#: invenio_vocabularies/config.py:131
|
|
35
|
+
msgid "GND"
|
|
36
|
+
msgstr "GND"
|
|
37
|
+
|
|
38
|
+
#: invenio_vocabularies/config.py:46 invenio_vocabularies/config.py:125
|
|
39
|
+
msgid "ISNI"
|
|
40
|
+
msgstr "ISNI"
|
|
41
|
+
|
|
42
|
+
#: invenio_vocabularies/config.py:47
|
|
43
|
+
msgid "ROR"
|
|
44
|
+
msgstr "ROR"
|
|
45
|
+
|
|
46
|
+
#: invenio_vocabularies/config.py:68
|
|
47
|
+
msgid "PIC"
|
|
48
|
+
msgstr ""
|
|
49
|
+
|
|
50
|
+
#: invenio_vocabularies/config.py:69
|
|
51
|
+
msgid "EDMO"
|
|
52
|
+
msgstr ""
|
|
53
|
+
|
|
54
|
+
#: invenio_vocabularies/config.py:75 invenio_vocabularies/config.py:84
|
|
55
|
+
msgid "DOI"
|
|
56
|
+
msgstr "DOI"
|
|
57
|
+
|
|
58
|
+
#: invenio_vocabularies/config.py:83 invenio_vocabularies/config.py:132
|
|
59
|
+
msgid "URL"
|
|
60
|
+
msgstr "URL"
|
|
61
|
+
|
|
62
|
+
#: invenio_vocabularies/config.py:124
|
|
63
|
+
msgid "ORCID"
|
|
64
|
+
msgstr "ORCID"
|
|
65
|
+
|
|
66
|
+
#: invenio_vocabularies/administration/views/vocabularies.py:37
|
|
67
|
+
#: invenio_vocabularies/config.py:175
|
|
68
|
+
#: invenio_vocabularies/contrib/affiliations/config.py:61
|
|
69
|
+
#: invenio_vocabularies/contrib/funders/config.py:60
|
|
70
|
+
#: invenio_vocabularies/contrib/names/config.py:55
|
|
71
|
+
#: invenio_vocabularies/contrib/subjects/config.py:70
|
|
72
|
+
msgid "Name"
|
|
73
|
+
msgstr "Nombre"
|
|
74
|
+
|
|
75
|
+
#: invenio_vocabularies/administration/views/vocabularies.py:38
|
|
76
|
+
#: invenio_vocabularies/config.py:179
|
|
77
|
+
msgid "Number of entries"
|
|
78
|
+
msgstr "Número de entradas"
|
|
79
|
+
|
|
80
|
+
#: invenio_vocabularies/jobs.py:30
|
|
81
|
+
msgid "Process ROR affiliations"
|
|
82
|
+
msgstr ""
|
|
83
|
+
|
|
84
|
+
#: invenio_vocabularies/jobs.py:31
|
|
85
|
+
msgid "Load ROR affiliations"
|
|
86
|
+
msgstr ""
|
|
87
|
+
|
|
88
|
+
#: invenio_vocabularies/jobs.py:68
|
|
89
|
+
msgid "Process ROR funders"
|
|
90
|
+
msgstr ""
|
|
91
|
+
|
|
92
|
+
#: invenio_vocabularies/jobs.py:69
|
|
93
|
+
msgid "Load ROR funders"
|
|
94
|
+
msgstr ""
|
|
95
|
+
|
|
96
|
+
#: invenio_vocabularies/jobs.py:106
|
|
97
|
+
msgid "Import awards from OpenAIRE"
|
|
98
|
+
msgstr ""
|
|
99
|
+
|
|
100
|
+
#: invenio_vocabularies/jobs.py:107
|
|
101
|
+
msgid "Import Awards OpenAIRE"
|
|
102
|
+
msgstr ""
|
|
103
|
+
|
|
104
|
+
#: invenio_vocabularies/jobs.py:141
|
|
105
|
+
msgid "Update awards from CORDIS"
|
|
106
|
+
msgstr ""
|
|
107
|
+
|
|
108
|
+
#: invenio_vocabularies/jobs.py:142
|
|
109
|
+
msgid "Update Awards CORDIS"
|
|
110
|
+
msgstr ""
|
|
111
|
+
|
|
112
|
+
#: invenio_vocabularies/jobs.py:169 invenio_vocabularies/jobs.py:170
|
|
113
|
+
msgid "Import ORCID data"
|
|
114
|
+
msgstr ""
|
|
115
|
+
|
|
116
|
+
#: invenio_vocabularies/administration/views/vocabularies.py:21
|
|
117
|
+
#: invenio_vocabularies/administration/views/vocabularies.py:24
|
|
118
|
+
msgid "Vocabulary Types"
|
|
119
|
+
msgstr ""
|
|
120
|
+
|
|
121
|
+
#: invenio_vocabularies/administration/views/vocabularies.py:25
|
|
122
|
+
msgid "Site management"
|
|
123
|
+
msgstr "Gestión del sitio"
|
|
124
|
+
|
|
125
|
+
#: invenio_vocabularies/contrib/affiliations/config.py:57
|
|
126
|
+
#: invenio_vocabularies/contrib/funders/config.py:56
|
|
127
|
+
#: invenio_vocabularies/contrib/names/config.py:51
|
|
128
|
+
#: invenio_vocabularies/contrib/subjects/config.py:66
|
|
129
|
+
#: invenio_vocabularies/services/config.py:67
|
|
130
|
+
msgid "Best match"
|
|
131
|
+
msgstr "Mejor coincidencia"
|
|
132
|
+
|
|
133
|
+
#: invenio_vocabularies/contrib/affiliations/config.py:65
|
|
134
|
+
#: invenio_vocabularies/contrib/funders/config.py:64
|
|
135
|
+
#: invenio_vocabularies/contrib/names/config.py:59
|
|
136
|
+
#: invenio_vocabularies/contrib/subjects/config.py:74
|
|
137
|
+
#: invenio_vocabularies/services/config.py:75
|
|
138
|
+
msgid "Newest"
|
|
139
|
+
msgstr "El más nuevo"
|
|
140
|
+
|
|
141
|
+
#: invenio_vocabularies/contrib/affiliations/config.py:69
|
|
142
|
+
#: invenio_vocabularies/contrib/funders/config.py:68
|
|
143
|
+
#: invenio_vocabularies/contrib/names/config.py:63
|
|
144
|
+
#: invenio_vocabularies/contrib/subjects/config.py:78
|
|
145
|
+
#: invenio_vocabularies/services/config.py:79
|
|
146
|
+
msgid "Oldest"
|
|
147
|
+
msgstr "El más antiguo"
|
|
148
|
+
|
|
149
|
+
#: invenio_vocabularies/contrib/affiliations/schema.py:41
|
|
150
|
+
#: invenio_vocabularies/contrib/funders/schema.py:36
|
|
151
|
+
#: invenio_vocabularies/contrib/funders/schema.py:44
|
|
152
|
+
msgid "Name cannot be blank."
|
|
153
|
+
msgstr "El nombre no puede estar el blanco"
|
|
154
|
+
|
|
155
|
+
#: invenio_vocabularies/contrib/affiliations/schema.py:47
|
|
156
|
+
#: invenio_vocabularies/contrib/awards/schema.py:69
|
|
157
|
+
#: invenio_vocabularies/contrib/funders/schema.py:60
|
|
158
|
+
msgid "PID cannot be blank."
|
|
159
|
+
msgstr "El PID no puede estar en blanco."
|
|
160
|
+
|
|
161
|
+
#: invenio_vocabularies/contrib/awards/config.py:49
|
|
162
|
+
msgid "Funders"
|
|
163
|
+
msgstr "Financiadores"
|
|
164
|
+
|
|
165
|
+
#: invenio_vocabularies/contrib/awards/datastreams.py:67
|
|
166
|
+
#, python-brace-format
|
|
167
|
+
msgid "Unknown OpenAIRE funder prefix {openaire_funder_prefix}"
|
|
168
|
+
msgstr ""
|
|
169
|
+
"Prefijo de financiador de OpenAIRE desconocido {openaire_funder_prefix}"
|
|
170
|
+
|
|
171
|
+
#: invenio_vocabularies/contrib/awards/datastreams.py:108
|
|
172
|
+
#, python-brace-format
|
|
173
|
+
msgid "Missing title attribute for award {award_id}"
|
|
174
|
+
msgstr "Falta el atributo de título para el premio {award_id}"
|
|
175
|
+
|
|
176
|
+
#: invenio_vocabularies/contrib/awards/datastreams.py:244
|
|
177
|
+
#, python-brace-format
|
|
178
|
+
msgid "No related legal basis programme found for project {project_id}"
|
|
179
|
+
msgstr ""
|
|
180
|
+
|
|
181
|
+
#: invenio_vocabularies/contrib/awards/schema.py:52
|
|
182
|
+
msgid "Number cannot be blank."
|
|
183
|
+
msgstr "El número no puede estar en blanco."
|
|
184
|
+
|
|
185
|
+
#: invenio_vocabularies/contrib/awards/schema.py:100
|
|
186
|
+
msgid "An existing id or either number or title must be present."
|
|
187
|
+
msgstr ""
|
|
188
|
+
|
|
189
|
+
#: invenio_vocabularies/contrib/awards/schema.py:118
|
|
190
|
+
msgid "At least award or funder should be present."
|
|
191
|
+
msgstr "Debe estar presente al menos el premio o el financiador."
|
|
192
|
+
|
|
193
|
+
#: invenio_vocabularies/contrib/common/ror/datastreams.py:147
|
|
194
|
+
msgid "Id not found in ROR entry."
|
|
195
|
+
msgstr "ID no encontrado en la entrada ROR."
|
|
196
|
+
|
|
197
|
+
#: invenio_vocabularies/contrib/common/ror/datastreams.py:179
|
|
198
|
+
msgid "Name with type ror_display not found in ROR entry."
|
|
199
|
+
msgstr "El nombre con el tipo ror_display no se encontró en la entrada ROR."
|
|
200
|
+
|
|
201
|
+
#: invenio_vocabularies/contrib/funders/schema.py:73
|
|
202
|
+
#: invenio_vocabularies/services/schema.py:120
|
|
203
|
+
msgid "Missing PID."
|
|
204
|
+
msgstr "PID perdido."
|
|
205
|
+
|
|
206
|
+
#: invenio_vocabularies/contrib/names/schema.py:76
|
|
207
|
+
msgid ""
|
|
208
|
+
"A name or the family name together with the given name must be present."
|
|
209
|
+
msgstr ""
|
|
210
|
+
"Debe estar presente un nombre o el apellido junto con el nombre de pila."
|
|
211
|
+
|
|
212
|
+
#: invenio_vocabularies/contrib/names/schema.py:90
|
|
213
|
+
msgid "Duplicated affiliations."
|
|
214
|
+
msgstr "Afiliaciones duplicadas."
|
|
215
|
+
|
|
216
|
+
#: invenio_vocabularies/records/models.py:84
|
|
217
|
+
#, python-format
|
|
218
|
+
msgid "No '%(banned_char)s' allowed in VocabularyScheme.id"
|
|
219
|
+
msgstr ""
|
|
220
|
+
|
|
221
|
+
#: invenio_vocabularies/services/components.py:29
|
|
222
|
+
msgid "The vocabulary type does not exists."
|
|
223
|
+
msgstr "El tipo de vocabulario no existe."
|
|
224
|
+
|
|
225
|
+
#: invenio_vocabularies/services/config.py:71
|
|
226
|
+
msgid "Title"
|
|
227
|
+
msgstr "Título"
|
|
228
|
+
|
|
229
|
+
#: invenio_vocabularies/services/config.py:90
|
|
230
|
+
msgid "ID"
|
|
231
|
+
msgstr "ID"
|
|
232
|
+
|
|
233
|
+
#: invenio_vocabularies/services/config.py:100
|
|
234
|
+
msgid "Ascending"
|
|
235
|
+
msgstr "Ascendente"
|
|
236
|
+
|
|
237
|
+
#: invenio_vocabularies/services/config.py:101
|
|
238
|
+
msgid "Descending"
|
|
239
|
+
msgstr "Descendente"
|
|
240
|
+
|
|
241
|
+
#: invenio_vocabularies/services/schema.py:85
|
|
242
|
+
#, python-brace-format
|
|
243
|
+
msgid "An existing id or a free text {ftf_name} must be present."
|
|
244
|
+
msgstr ""
|
|
245
|
+
"Debe estar presente un identificador existente o un texto libre {ftf_name}."
|
|
246
|
+
|
|
247
|
+
#: invenio_vocabularies/services/custom_fields/subject.py:50
|
|
248
|
+
msgid "Subjects"
|
|
249
|
+
msgstr "Temas"
|
|
250
|
+
|
|
251
|
+
#: invenio_vocabularies/services/custom_fields/subject.py:57
|
|
252
|
+
msgid "Keywords and subjects"
|
|
253
|
+
msgstr "Palabras clave y temas"
|
|
254
|
+
|
|
255
|
+
#: invenio_vocabularies/services/custom_fields/subject.py:59
|
|
256
|
+
msgid "The subjects related to the community"
|
|
257
|
+
msgstr ""
|
|
258
|
+
|
|
259
|
+
#: invenio_vocabularies/services/custom_fields/subject.py:60
|
|
260
|
+
msgid "Search for a subject by name e.g. Psychology ..."
|
|
261
|
+
msgstr ""
|
|
262
|
+
|
|
263
|
+
#: invenio_vocabularies/services/custom_fields/subject.py:62
|
|
264
|
+
msgid "Search for subjects..."
|
|
265
|
+
msgstr ""
|
|
266
|
+
|
|
267
|
+
#: invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/subjects.html:16
|
|
268
|
+
msgid "Search results for "
|
|
269
|
+
msgstr "Buscar resultados para"
|
|
270
|
+
|
|
271
|
+
#: invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/vocabulary-details.html:26
|
|
272
|
+
msgid "Settings"
|
|
273
|
+
msgstr "Ajustes"
|
|
274
|
+
|
|
275
|
+
#: invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/vocabulary-details.html:31
|
|
276
|
+
msgid "Schedule"
|
|
277
|
+
msgstr "Horario"
|
|
278
|
+
|
|
279
|
+
#: invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/vocabulary-details.html:36
|
|
280
|
+
msgid "Run now"
|
|
281
|
+
msgstr "Ejecutar ahora"
|
|
Binary file
|
|
@@ -0,0 +1,276 @@
|
|
|
1
|
+
# Translations template for invenio-vocabularies.
|
|
2
|
+
# Copyright (C) 2025 CERN
|
|
3
|
+
# This file is distributed under the same license as the
|
|
4
|
+
# invenio-vocabularies project.
|
|
5
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, 2025.
|
|
6
|
+
#
|
|
7
|
+
# Translators:
|
|
8
|
+
# Mart Jantson, 2022
|
|
9
|
+
# Martin Jantson <martinjantson97@gmail.com>, 2025
|
|
10
|
+
#
|
|
11
|
+
#, fuzzy
|
|
12
|
+
msgid ""
|
|
13
|
+
msgstr ""
|
|
14
|
+
"Project-Id-Version: invenio-vocabularies 8.1.0\n"
|
|
15
|
+
"Report-Msgid-Bugs-To: info@inveniosoftware.org\n"
|
|
16
|
+
"POT-Creation-Date: 2025-07-08 20:00+0000\n"
|
|
17
|
+
"PO-Revision-Date: 2021-07-13 12:40+0000\n"
|
|
18
|
+
"Last-Translator: Martin Jantson <martinjantson97@gmail.com>, 2025\n"
|
|
19
|
+
"Language-Team: Estonian (https://app.transifex.com/inveniosoftware/teams/23537/et/)\n"
|
|
20
|
+
"MIME-Version: 1.0\n"
|
|
21
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
22
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
23
|
+
"Generated-By: Babel 2.17.0\n"
|
|
24
|
+
"Language: et\n"
|
|
25
|
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
26
|
+
|
|
27
|
+
#: invenio_vocabularies/config.py:44
|
|
28
|
+
msgid "GRID"
|
|
29
|
+
msgstr "GRID"
|
|
30
|
+
|
|
31
|
+
#: invenio_vocabularies/config.py:45 invenio_vocabularies/config.py:126
|
|
32
|
+
#: invenio_vocabularies/config.py:131
|
|
33
|
+
msgid "GND"
|
|
34
|
+
msgstr "GND"
|
|
35
|
+
|
|
36
|
+
#: invenio_vocabularies/config.py:46 invenio_vocabularies/config.py:125
|
|
37
|
+
msgid "ISNI"
|
|
38
|
+
msgstr "ISNI"
|
|
39
|
+
|
|
40
|
+
#: invenio_vocabularies/config.py:47
|
|
41
|
+
msgid "ROR"
|
|
42
|
+
msgstr "ROR"
|
|
43
|
+
|
|
44
|
+
#: invenio_vocabularies/config.py:68
|
|
45
|
+
msgid "PIC"
|
|
46
|
+
msgstr ""
|
|
47
|
+
|
|
48
|
+
#: invenio_vocabularies/config.py:69
|
|
49
|
+
msgid "EDMO"
|
|
50
|
+
msgstr ""
|
|
51
|
+
|
|
52
|
+
#: invenio_vocabularies/config.py:75 invenio_vocabularies/config.py:84
|
|
53
|
+
msgid "DOI"
|
|
54
|
+
msgstr "DOI"
|
|
55
|
+
|
|
56
|
+
#: invenio_vocabularies/config.py:83 invenio_vocabularies/config.py:132
|
|
57
|
+
msgid "URL"
|
|
58
|
+
msgstr "URL"
|
|
59
|
+
|
|
60
|
+
#: invenio_vocabularies/config.py:124
|
|
61
|
+
msgid "ORCID"
|
|
62
|
+
msgstr "ORCID"
|
|
63
|
+
|
|
64
|
+
#: invenio_vocabularies/administration/views/vocabularies.py:37
|
|
65
|
+
#: invenio_vocabularies/config.py:175
|
|
66
|
+
#: invenio_vocabularies/contrib/affiliations/config.py:61
|
|
67
|
+
#: invenio_vocabularies/contrib/funders/config.py:60
|
|
68
|
+
#: invenio_vocabularies/contrib/names/config.py:55
|
|
69
|
+
#: invenio_vocabularies/contrib/subjects/config.py:70
|
|
70
|
+
msgid "Name"
|
|
71
|
+
msgstr "Nimi"
|
|
72
|
+
|
|
73
|
+
#: invenio_vocabularies/administration/views/vocabularies.py:38
|
|
74
|
+
#: invenio_vocabularies/config.py:179
|
|
75
|
+
msgid "Number of entries"
|
|
76
|
+
msgstr ""
|
|
77
|
+
|
|
78
|
+
#: invenio_vocabularies/jobs.py:30
|
|
79
|
+
msgid "Process ROR affiliations"
|
|
80
|
+
msgstr ""
|
|
81
|
+
|
|
82
|
+
#: invenio_vocabularies/jobs.py:31
|
|
83
|
+
msgid "Load ROR affiliations"
|
|
84
|
+
msgstr ""
|
|
85
|
+
|
|
86
|
+
#: invenio_vocabularies/jobs.py:68
|
|
87
|
+
msgid "Process ROR funders"
|
|
88
|
+
msgstr ""
|
|
89
|
+
|
|
90
|
+
#: invenio_vocabularies/jobs.py:69
|
|
91
|
+
msgid "Load ROR funders"
|
|
92
|
+
msgstr ""
|
|
93
|
+
|
|
94
|
+
#: invenio_vocabularies/jobs.py:106
|
|
95
|
+
msgid "Import awards from OpenAIRE"
|
|
96
|
+
msgstr ""
|
|
97
|
+
|
|
98
|
+
#: invenio_vocabularies/jobs.py:107
|
|
99
|
+
msgid "Import Awards OpenAIRE"
|
|
100
|
+
msgstr ""
|
|
101
|
+
|
|
102
|
+
#: invenio_vocabularies/jobs.py:141
|
|
103
|
+
msgid "Update awards from CORDIS"
|
|
104
|
+
msgstr ""
|
|
105
|
+
|
|
106
|
+
#: invenio_vocabularies/jobs.py:142
|
|
107
|
+
msgid "Update Awards CORDIS"
|
|
108
|
+
msgstr ""
|
|
109
|
+
|
|
110
|
+
#: invenio_vocabularies/jobs.py:169 invenio_vocabularies/jobs.py:170
|
|
111
|
+
msgid "Import ORCID data"
|
|
112
|
+
msgstr ""
|
|
113
|
+
|
|
114
|
+
#: invenio_vocabularies/administration/views/vocabularies.py:21
|
|
115
|
+
#: invenio_vocabularies/administration/views/vocabularies.py:24
|
|
116
|
+
msgid "Vocabulary Types"
|
|
117
|
+
msgstr ""
|
|
118
|
+
|
|
119
|
+
#: invenio_vocabularies/administration/views/vocabularies.py:25
|
|
120
|
+
msgid "Site management"
|
|
121
|
+
msgstr ""
|
|
122
|
+
|
|
123
|
+
#: invenio_vocabularies/contrib/affiliations/config.py:57
|
|
124
|
+
#: invenio_vocabularies/contrib/funders/config.py:56
|
|
125
|
+
#: invenio_vocabularies/contrib/names/config.py:51
|
|
126
|
+
#: invenio_vocabularies/contrib/subjects/config.py:66
|
|
127
|
+
#: invenio_vocabularies/services/config.py:67
|
|
128
|
+
msgid "Best match"
|
|
129
|
+
msgstr "Parim vaste"
|
|
130
|
+
|
|
131
|
+
#: invenio_vocabularies/contrib/affiliations/config.py:65
|
|
132
|
+
#: invenio_vocabularies/contrib/funders/config.py:64
|
|
133
|
+
#: invenio_vocabularies/contrib/names/config.py:59
|
|
134
|
+
#: invenio_vocabularies/contrib/subjects/config.py:74
|
|
135
|
+
#: invenio_vocabularies/services/config.py:75
|
|
136
|
+
msgid "Newest"
|
|
137
|
+
msgstr "Uusim"
|
|
138
|
+
|
|
139
|
+
#: invenio_vocabularies/contrib/affiliations/config.py:69
|
|
140
|
+
#: invenio_vocabularies/contrib/funders/config.py:68
|
|
141
|
+
#: invenio_vocabularies/contrib/names/config.py:63
|
|
142
|
+
#: invenio_vocabularies/contrib/subjects/config.py:78
|
|
143
|
+
#: invenio_vocabularies/services/config.py:79
|
|
144
|
+
msgid "Oldest"
|
|
145
|
+
msgstr "Vanim"
|
|
146
|
+
|
|
147
|
+
#: invenio_vocabularies/contrib/affiliations/schema.py:41
|
|
148
|
+
#: invenio_vocabularies/contrib/funders/schema.py:36
|
|
149
|
+
#: invenio_vocabularies/contrib/funders/schema.py:44
|
|
150
|
+
msgid "Name cannot be blank."
|
|
151
|
+
msgstr "Nime väli ei tohi olla tühi."
|
|
152
|
+
|
|
153
|
+
#: invenio_vocabularies/contrib/affiliations/schema.py:47
|
|
154
|
+
#: invenio_vocabularies/contrib/awards/schema.py:69
|
|
155
|
+
#: invenio_vocabularies/contrib/funders/schema.py:60
|
|
156
|
+
msgid "PID cannot be blank."
|
|
157
|
+
msgstr "PID ei saa olla tühi."
|
|
158
|
+
|
|
159
|
+
#: invenio_vocabularies/contrib/awards/config.py:49
|
|
160
|
+
msgid "Funders"
|
|
161
|
+
msgstr "Rahastajad"
|
|
162
|
+
|
|
163
|
+
#: invenio_vocabularies/contrib/awards/datastreams.py:67
|
|
164
|
+
#, python-brace-format
|
|
165
|
+
msgid "Unknown OpenAIRE funder prefix {openaire_funder_prefix}"
|
|
166
|
+
msgstr "Tundmatu OpenAIRE rahastaja prefiks {openaire_funder_prefix}"
|
|
167
|
+
|
|
168
|
+
#: invenio_vocabularies/contrib/awards/datastreams.py:108
|
|
169
|
+
#, python-brace-format
|
|
170
|
+
msgid "Missing title attribute for award {award_id}"
|
|
171
|
+
msgstr ""
|
|
172
|
+
|
|
173
|
+
#: invenio_vocabularies/contrib/awards/datastreams.py:244
|
|
174
|
+
#, python-brace-format
|
|
175
|
+
msgid "No related legal basis programme found for project {project_id}"
|
|
176
|
+
msgstr ""
|
|
177
|
+
|
|
178
|
+
#: invenio_vocabularies/contrib/awards/schema.py:52
|
|
179
|
+
msgid "Number cannot be blank."
|
|
180
|
+
msgstr "Numbri väli ei tohi olla tühi."
|
|
181
|
+
|
|
182
|
+
#: invenio_vocabularies/contrib/awards/schema.py:100
|
|
183
|
+
msgid "An existing id or either number or title must be present."
|
|
184
|
+
msgstr ""
|
|
185
|
+
|
|
186
|
+
#: invenio_vocabularies/contrib/awards/schema.py:118
|
|
187
|
+
msgid "At least award or funder should be present."
|
|
188
|
+
msgstr "Vähemalt grandi või rahastaja olemasolu on vajalik."
|
|
189
|
+
|
|
190
|
+
#: invenio_vocabularies/contrib/common/ror/datastreams.py:147
|
|
191
|
+
msgid "Id not found in ROR entry."
|
|
192
|
+
msgstr "Id-d ei leitud ROR kirjest."
|
|
193
|
+
|
|
194
|
+
#: invenio_vocabularies/contrib/common/ror/datastreams.py:179
|
|
195
|
+
msgid "Name with type ror_display not found in ROR entry."
|
|
196
|
+
msgstr ""
|
|
197
|
+
|
|
198
|
+
#: invenio_vocabularies/contrib/funders/schema.py:73
|
|
199
|
+
#: invenio_vocabularies/services/schema.py:120
|
|
200
|
+
msgid "Missing PID."
|
|
201
|
+
msgstr "PID puudub."
|
|
202
|
+
|
|
203
|
+
#: invenio_vocabularies/contrib/names/schema.py:76
|
|
204
|
+
msgid ""
|
|
205
|
+
"A name or the family name together with the given name must be present."
|
|
206
|
+
msgstr "Esineda peab nimi või perekonnanimi koos eesnimega."
|
|
207
|
+
|
|
208
|
+
#: invenio_vocabularies/contrib/names/schema.py:90
|
|
209
|
+
msgid "Duplicated affiliations."
|
|
210
|
+
msgstr ""
|
|
211
|
+
|
|
212
|
+
#: invenio_vocabularies/records/models.py:84
|
|
213
|
+
#, python-format
|
|
214
|
+
msgid "No '%(banned_char)s' allowed in VocabularyScheme.id"
|
|
215
|
+
msgstr ""
|
|
216
|
+
|
|
217
|
+
#: invenio_vocabularies/services/components.py:29
|
|
218
|
+
msgid "The vocabulary type does not exists."
|
|
219
|
+
msgstr "Sellist sõnavara tüüpi ei ole olemas."
|
|
220
|
+
|
|
221
|
+
#: invenio_vocabularies/services/config.py:71
|
|
222
|
+
msgid "Title"
|
|
223
|
+
msgstr "Pealkiri"
|
|
224
|
+
|
|
225
|
+
#: invenio_vocabularies/services/config.py:90
|
|
226
|
+
msgid "ID"
|
|
227
|
+
msgstr "ID"
|
|
228
|
+
|
|
229
|
+
#: invenio_vocabularies/services/config.py:100
|
|
230
|
+
msgid "Ascending"
|
|
231
|
+
msgstr "Kasvav"
|
|
232
|
+
|
|
233
|
+
#: invenio_vocabularies/services/config.py:101
|
|
234
|
+
msgid "Descending"
|
|
235
|
+
msgstr "Kahanev"
|
|
236
|
+
|
|
237
|
+
#: invenio_vocabularies/services/schema.py:85
|
|
238
|
+
#, python-brace-format
|
|
239
|
+
msgid "An existing id or a free text {ftf_name} must be present."
|
|
240
|
+
msgstr "Olemas peab olema olemasolev ID või vaba tekst {ftf_name}."
|
|
241
|
+
|
|
242
|
+
#: invenio_vocabularies/services/custom_fields/subject.py:50
|
|
243
|
+
msgid "Subjects"
|
|
244
|
+
msgstr "Teemad"
|
|
245
|
+
|
|
246
|
+
#: invenio_vocabularies/services/custom_fields/subject.py:57
|
|
247
|
+
msgid "Keywords and subjects"
|
|
248
|
+
msgstr "Märksõnad ja teemad"
|
|
249
|
+
|
|
250
|
+
#: invenio_vocabularies/services/custom_fields/subject.py:59
|
|
251
|
+
msgid "The subjects related to the community"
|
|
252
|
+
msgstr ""
|
|
253
|
+
|
|
254
|
+
#: invenio_vocabularies/services/custom_fields/subject.py:60
|
|
255
|
+
msgid "Search for a subject by name e.g. Psychology ..."
|
|
256
|
+
msgstr ""
|
|
257
|
+
|
|
258
|
+
#: invenio_vocabularies/services/custom_fields/subject.py:62
|
|
259
|
+
msgid "Search for subjects..."
|
|
260
|
+
msgstr ""
|
|
261
|
+
|
|
262
|
+
#: invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/subjects.html:16
|
|
263
|
+
msgid "Search results for "
|
|
264
|
+
msgstr "Otsi tulemusi"
|
|
265
|
+
|
|
266
|
+
#: invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/vocabulary-details.html:26
|
|
267
|
+
msgid "Settings"
|
|
268
|
+
msgstr "Seaded"
|
|
269
|
+
|
|
270
|
+
#: invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/vocabulary-details.html:31
|
|
271
|
+
msgid "Schedule"
|
|
272
|
+
msgstr ""
|
|
273
|
+
|
|
274
|
+
#: invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/vocabulary-details.html:36
|
|
275
|
+
msgid "Run now"
|
|
276
|
+
msgstr ""
|
|
Binary file
|