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,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Search for a funder by name": "البحث على ممول عبر الإسم",
|
|
3
|
+
"Funder": "مموّل",
|
|
4
|
+
"Search for funder...": "البحث عن مموّل...",
|
|
5
|
+
"Additional information": "معلومات إضافية",
|
|
6
|
+
"optional": "اختياري",
|
|
7
|
+
"Number": "رقم",
|
|
8
|
+
"Award/Grant number": "رقم المكافئة/المنحة",
|
|
9
|
+
"Title": "العنوان",
|
|
10
|
+
"Award/Grant Title": "عنوان المكافئة/المنحة",
|
|
11
|
+
"URL": "عنوان URL",
|
|
12
|
+
"Award/Grant URL": "رابط URL المكافئة/المنحة",
|
|
13
|
+
"Add": "إضافة",
|
|
14
|
+
"Add custom": "إضافة إجراء/خاصة",
|
|
15
|
+
"Edit": "تعديل",
|
|
16
|
+
"Remove": "حذف",
|
|
17
|
+
"Open external link": "إفتح رابط خارجي",
|
|
18
|
+
"Funder is required.": "الممول إجباري",
|
|
19
|
+
"URL must be valid.": "يجب أن يكون رابط URL ساري المفعول",
|
|
20
|
+
"URL must be set alongside title or number.": "",
|
|
21
|
+
"Add standard award/grant": "إضافة مكافئة/منحة متعارف عليها standard",
|
|
22
|
+
"Add custom funding": "إضافة تمويل مشخّص custom",
|
|
23
|
+
"Search for awards/grants": "البحث عن مكافأت/منح",
|
|
24
|
+
"Cancel": "إلغاء",
|
|
25
|
+
"Change": "غيّر",
|
|
26
|
+
"Did not find your award/grant? ": "لم تجد المكافئة/المنحة الخاصة بك؟",
|
|
27
|
+
"Add a custom award/grant.": "إضافةمكافئة/منحةمشخّصة custom"
|
|
28
|
+
}
|
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/bg/messages.po
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
#
|
|
2
|
+
# Translators:
|
|
3
|
+
# Tibor Simko <tibor.simko@cern.ch>, 2025
|
|
4
|
+
#
|
|
5
|
+
msgid ""
|
|
6
|
+
msgstr ""
|
|
7
|
+
"Project-Id-Version: i18next-conv\n"
|
|
8
|
+
"POT-Creation-Date: 2025-07-08T15:47:17.169Z\n"
|
|
9
|
+
"PO-Revision-Date: 2025-05-13 21:01+0000\n"
|
|
10
|
+
"Last-Translator: Tibor Simko <tibor.simko@cern.ch>, 2025\n"
|
|
11
|
+
"Language-Team: Bulgarian (https://app.transifex.com/inveniosoftware/teams/23537/bg/)\n"
|
|
12
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
13
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
14
|
+
"Language: bg\n"
|
|
15
|
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
16
|
+
"mime-version: 1.0\n"
|
|
17
|
+
|
|
18
|
+
msgid "Search for a funder by name"
|
|
19
|
+
msgstr ""
|
|
20
|
+
|
|
21
|
+
msgid "Funder"
|
|
22
|
+
msgstr ""
|
|
23
|
+
|
|
24
|
+
msgid "Search for funder..."
|
|
25
|
+
msgstr ""
|
|
26
|
+
|
|
27
|
+
msgid "Additional information"
|
|
28
|
+
msgstr ""
|
|
29
|
+
|
|
30
|
+
msgid "optional"
|
|
31
|
+
msgstr "изборен"
|
|
32
|
+
|
|
33
|
+
msgid "Number"
|
|
34
|
+
msgstr ""
|
|
35
|
+
|
|
36
|
+
msgid "Award/Grant number"
|
|
37
|
+
msgstr ""
|
|
38
|
+
|
|
39
|
+
msgid "Title"
|
|
40
|
+
msgstr "Заглавие"
|
|
41
|
+
|
|
42
|
+
msgid "Award/Grant Title"
|
|
43
|
+
msgstr ""
|
|
44
|
+
|
|
45
|
+
msgid "URL"
|
|
46
|
+
msgstr ""
|
|
47
|
+
|
|
48
|
+
msgid "Award/Grant URL"
|
|
49
|
+
msgstr ""
|
|
50
|
+
|
|
51
|
+
msgid "Add"
|
|
52
|
+
msgstr ""
|
|
53
|
+
|
|
54
|
+
msgid "Add custom"
|
|
55
|
+
msgstr ""
|
|
56
|
+
|
|
57
|
+
msgid "Edit"
|
|
58
|
+
msgstr "Редакция"
|
|
59
|
+
|
|
60
|
+
msgid "Remove"
|
|
61
|
+
msgstr "Премахване"
|
|
62
|
+
|
|
63
|
+
msgid "Open external link"
|
|
64
|
+
msgstr ""
|
|
65
|
+
|
|
66
|
+
msgid "Funder is required."
|
|
67
|
+
msgstr ""
|
|
68
|
+
|
|
69
|
+
msgid "URL must be valid."
|
|
70
|
+
msgstr ""
|
|
71
|
+
|
|
72
|
+
msgid "URL must be set alongside title or number."
|
|
73
|
+
msgstr ""
|
|
74
|
+
|
|
75
|
+
msgid "Add standard award/grant"
|
|
76
|
+
msgstr ""
|
|
77
|
+
|
|
78
|
+
msgid "Add custom funding"
|
|
79
|
+
msgstr ""
|
|
80
|
+
|
|
81
|
+
msgid "Search for awards/grants"
|
|
82
|
+
msgstr ""
|
|
83
|
+
|
|
84
|
+
msgid "Cancel"
|
|
85
|
+
msgstr "Отказ"
|
|
86
|
+
|
|
87
|
+
msgid "Change"
|
|
88
|
+
msgstr ""
|
|
89
|
+
|
|
90
|
+
msgid "Did not find your award/grant? "
|
|
91
|
+
msgstr ""
|
|
92
|
+
|
|
93
|
+
msgid "Add a custom award/grant."
|
|
94
|
+
msgstr ""
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Search for a funder by name": "",
|
|
3
|
+
"Funder": "",
|
|
4
|
+
"Search for funder...": "",
|
|
5
|
+
"Additional information": "",
|
|
6
|
+
"optional": "изборен",
|
|
7
|
+
"Number": "",
|
|
8
|
+
"Award/Grant number": "",
|
|
9
|
+
"Title": "Заглавие",
|
|
10
|
+
"Award/Grant Title": "",
|
|
11
|
+
"URL": "",
|
|
12
|
+
"Award/Grant URL": "",
|
|
13
|
+
"Add": "",
|
|
14
|
+
"Add custom": "",
|
|
15
|
+
"Edit": "Редакция",
|
|
16
|
+
"Remove": "Премахване",
|
|
17
|
+
"Open external link": "",
|
|
18
|
+
"Funder is required.": "",
|
|
19
|
+
"URL must be valid.": "",
|
|
20
|
+
"URL must be set alongside title or number.": "",
|
|
21
|
+
"Add standard award/grant": "",
|
|
22
|
+
"Add custom funding": "",
|
|
23
|
+
"Search for awards/grants": "",
|
|
24
|
+
"Cancel": "Отказ",
|
|
25
|
+
"Change": "",
|
|
26
|
+
"Did not find your award/grant? ": "",
|
|
27
|
+
"Add a custom award/grant.": ""
|
|
28
|
+
}
|
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ca/messages.po
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
#
|
|
2
|
+
# Translators:
|
|
3
|
+
# Tibor Simko <tibor.simko@cern.ch>, 2025
|
|
4
|
+
#
|
|
5
|
+
msgid ""
|
|
6
|
+
msgstr ""
|
|
7
|
+
"Project-Id-Version: i18next-conv\n"
|
|
8
|
+
"POT-Creation-Date: 2025-07-08T15:47:17.169Z\n"
|
|
9
|
+
"PO-Revision-Date: 2025-05-13 21:01+0000\n"
|
|
10
|
+
"Last-Translator: Tibor Simko <tibor.simko@cern.ch>, 2025\n"
|
|
11
|
+
"Language-Team: Catalan (https://app.transifex.com/inveniosoftware/teams/23537/ca/)\n"
|
|
12
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
13
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
14
|
+
"Language: ca\n"
|
|
15
|
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
16
|
+
"mime-version: 1.0\n"
|
|
17
|
+
|
|
18
|
+
msgid "Search for a funder by name"
|
|
19
|
+
msgstr ""
|
|
20
|
+
|
|
21
|
+
msgid "Funder"
|
|
22
|
+
msgstr ""
|
|
23
|
+
|
|
24
|
+
msgid "Search for funder..."
|
|
25
|
+
msgstr ""
|
|
26
|
+
|
|
27
|
+
msgid "Additional information"
|
|
28
|
+
msgstr ""
|
|
29
|
+
|
|
30
|
+
msgid "optional"
|
|
31
|
+
msgstr "opcional"
|
|
32
|
+
|
|
33
|
+
msgid "Number"
|
|
34
|
+
msgstr ""
|
|
35
|
+
|
|
36
|
+
msgid "Award/Grant number"
|
|
37
|
+
msgstr ""
|
|
38
|
+
|
|
39
|
+
msgid "Title"
|
|
40
|
+
msgstr "Títol"
|
|
41
|
+
|
|
42
|
+
msgid "Award/Grant Title"
|
|
43
|
+
msgstr ""
|
|
44
|
+
|
|
45
|
+
msgid "URL"
|
|
46
|
+
msgstr "URL"
|
|
47
|
+
|
|
48
|
+
msgid "Award/Grant URL"
|
|
49
|
+
msgstr ""
|
|
50
|
+
|
|
51
|
+
msgid "Add"
|
|
52
|
+
msgstr "Afegeix"
|
|
53
|
+
|
|
54
|
+
msgid "Add custom"
|
|
55
|
+
msgstr ""
|
|
56
|
+
|
|
57
|
+
msgid "Edit"
|
|
58
|
+
msgstr "Edita"
|
|
59
|
+
|
|
60
|
+
msgid "Remove"
|
|
61
|
+
msgstr "Elimina"
|
|
62
|
+
|
|
63
|
+
msgid "Open external link"
|
|
64
|
+
msgstr ""
|
|
65
|
+
|
|
66
|
+
msgid "Funder is required."
|
|
67
|
+
msgstr ""
|
|
68
|
+
|
|
69
|
+
msgid "URL must be valid."
|
|
70
|
+
msgstr ""
|
|
71
|
+
|
|
72
|
+
msgid "URL must be set alongside title or number."
|
|
73
|
+
msgstr ""
|
|
74
|
+
|
|
75
|
+
msgid "Add standard award/grant"
|
|
76
|
+
msgstr ""
|
|
77
|
+
|
|
78
|
+
msgid "Add custom funding"
|
|
79
|
+
msgstr ""
|
|
80
|
+
|
|
81
|
+
msgid "Search for awards/grants"
|
|
82
|
+
msgstr ""
|
|
83
|
+
|
|
84
|
+
msgid "Cancel"
|
|
85
|
+
msgstr "Cancel·la"
|
|
86
|
+
|
|
87
|
+
msgid "Change"
|
|
88
|
+
msgstr ""
|
|
89
|
+
|
|
90
|
+
msgid "Did not find your award/grant? "
|
|
91
|
+
msgstr ""
|
|
92
|
+
|
|
93
|
+
msgid "Add a custom award/grant."
|
|
94
|
+
msgstr ""
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Search for a funder by name": "",
|
|
3
|
+
"Funder": "",
|
|
4
|
+
"Search for funder...": "",
|
|
5
|
+
"Additional information": "",
|
|
6
|
+
"optional": "opcional",
|
|
7
|
+
"Number": "",
|
|
8
|
+
"Award/Grant number": "",
|
|
9
|
+
"Title": "Títol",
|
|
10
|
+
"Award/Grant Title": "",
|
|
11
|
+
"URL": "URL",
|
|
12
|
+
"Award/Grant URL": "",
|
|
13
|
+
"Add": "Afegeix",
|
|
14
|
+
"Add custom": "",
|
|
15
|
+
"Edit": "Edita",
|
|
16
|
+
"Remove": "Elimina",
|
|
17
|
+
"Open external link": "",
|
|
18
|
+
"Funder is required.": "",
|
|
19
|
+
"URL must be valid.": "",
|
|
20
|
+
"URL must be set alongside title or number.": "",
|
|
21
|
+
"Add standard award/grant": "",
|
|
22
|
+
"Add custom funding": "",
|
|
23
|
+
"Search for awards/grants": "",
|
|
24
|
+
"Cancel": "Cancel·la",
|
|
25
|
+
"Change": "",
|
|
26
|
+
"Did not find your award/grant? ": "",
|
|
27
|
+
"Add a custom award/grant.": ""
|
|
28
|
+
}
|
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/cs/messages.po
ADDED
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
#
|
|
2
|
+
# Translators:
|
|
3
|
+
# Jiří Kunčar <jiri.kuncar@gmail.com>, 2025
|
|
4
|
+
# Tibor Simko <tibor.simko@cern.ch>, 2025
|
|
5
|
+
# Mirek Simek <miroslav.simek@gmail.com>, 2025
|
|
6
|
+
# daniela.hornickova, 2025
|
|
7
|
+
#
|
|
8
|
+
msgid ""
|
|
9
|
+
msgstr ""
|
|
10
|
+
"Project-Id-Version: i18next-conv\n"
|
|
11
|
+
"POT-Creation-Date: 2025-07-08T15:47:17.169Z\n"
|
|
12
|
+
"PO-Revision-Date: 2025-05-13 21:01+0000\n"
|
|
13
|
+
"Last-Translator: daniela.hornickova, 2025\n"
|
|
14
|
+
"Language-Team: Czech (https://app.transifex.com/inveniosoftware/teams/23537/cs/)\n"
|
|
15
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
16
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
17
|
+
"Language: cs\n"
|
|
18
|
+
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
|
19
|
+
"mime-version: 1.0\n"
|
|
20
|
+
|
|
21
|
+
msgid "Search for a funder by name"
|
|
22
|
+
msgstr "Vyhledat poskytovatele podle názvu"
|
|
23
|
+
|
|
24
|
+
msgid "Funder"
|
|
25
|
+
msgstr "Poskytovatel"
|
|
26
|
+
|
|
27
|
+
msgid "Search for funder..."
|
|
28
|
+
msgstr "Hledat poskytovatele..."
|
|
29
|
+
|
|
30
|
+
msgid "Additional information"
|
|
31
|
+
msgstr "Další informace"
|
|
32
|
+
|
|
33
|
+
msgid "optional"
|
|
34
|
+
msgstr "volitelné"
|
|
35
|
+
|
|
36
|
+
msgid "Number"
|
|
37
|
+
msgstr "Číslo"
|
|
38
|
+
|
|
39
|
+
msgid "Award/Grant number"
|
|
40
|
+
msgstr "Číslo grantu/ceny"
|
|
41
|
+
|
|
42
|
+
msgid "Title"
|
|
43
|
+
msgstr "Název"
|
|
44
|
+
|
|
45
|
+
msgid "Award/Grant Title"
|
|
46
|
+
msgstr "Název grantu/ceny"
|
|
47
|
+
|
|
48
|
+
msgid "URL"
|
|
49
|
+
msgstr "URL"
|
|
50
|
+
|
|
51
|
+
msgid "Award/Grant URL"
|
|
52
|
+
msgstr "URL grantu/ceny"
|
|
53
|
+
|
|
54
|
+
msgid "Add"
|
|
55
|
+
msgstr "Přidat"
|
|
56
|
+
|
|
57
|
+
msgid "Add custom"
|
|
58
|
+
msgstr "Přidat vlastní"
|
|
59
|
+
|
|
60
|
+
msgid "Edit"
|
|
61
|
+
msgstr "Upravit"
|
|
62
|
+
|
|
63
|
+
msgid "Remove"
|
|
64
|
+
msgstr "Odstranit"
|
|
65
|
+
|
|
66
|
+
msgid "Open external link"
|
|
67
|
+
msgstr "Otevřít externí odkaz"
|
|
68
|
+
|
|
69
|
+
msgid "Funder is required."
|
|
70
|
+
msgstr "Poskytovatel je povinný."
|
|
71
|
+
|
|
72
|
+
msgid "URL must be valid."
|
|
73
|
+
msgstr "URL musí být platná."
|
|
74
|
+
|
|
75
|
+
msgid "URL must be set alongside title or number."
|
|
76
|
+
msgstr "URL musí být uvedena spolu s názvem nebo číslem."
|
|
77
|
+
|
|
78
|
+
msgid "Add standard award/grant"
|
|
79
|
+
msgstr "Přidat standardní grant/cenu"
|
|
80
|
+
|
|
81
|
+
msgid "Add custom funding"
|
|
82
|
+
msgstr "Přidat vlastní financování"
|
|
83
|
+
|
|
84
|
+
msgid "Search for awards/grants"
|
|
85
|
+
msgstr "Hledat granty/ceny"
|
|
86
|
+
|
|
87
|
+
msgid "Cancel"
|
|
88
|
+
msgstr "Zrušit"
|
|
89
|
+
|
|
90
|
+
msgid "Change"
|
|
91
|
+
msgstr "Změnit"
|
|
92
|
+
|
|
93
|
+
msgid "Did not find your award/grant? "
|
|
94
|
+
msgstr "Nenašli jste svůj grant/cenu? "
|
|
95
|
+
|
|
96
|
+
msgid "Add a custom award/grant."
|
|
97
|
+
msgstr "Přidat vlastní grant/cenu."
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Search for a funder by name": "Vyhledat poskytovatele podle názvu",
|
|
3
|
+
"Funder": "Poskytovatel",
|
|
4
|
+
"Search for funder...": "Hledat poskytovatele...",
|
|
5
|
+
"Additional information": "Další informace",
|
|
6
|
+
"optional": "volitelné",
|
|
7
|
+
"Number": "Číslo",
|
|
8
|
+
"Award/Grant number": "Číslo grantu/ceny",
|
|
9
|
+
"Title": "Název",
|
|
10
|
+
"Award/Grant Title": "Název grantu/ceny",
|
|
11
|
+
"URL": "URL",
|
|
12
|
+
"Award/Grant URL": "URL grantu/ceny",
|
|
13
|
+
"Add": "Přidat",
|
|
14
|
+
"Add custom": "Přidat vlastní",
|
|
15
|
+
"Edit": "Upravit",
|
|
16
|
+
"Remove": "Odstranit",
|
|
17
|
+
"Open external link": "Otevřít externí odkaz",
|
|
18
|
+
"Funder is required.": "Poskytovatel je povinný.",
|
|
19
|
+
"URL must be valid.": "URL musí být platná.",
|
|
20
|
+
"URL must be set alongside title or number.": "URL musí být uvedena spolu s názvem nebo číslem.",
|
|
21
|
+
"Add standard award/grant": "Přidat standardní grant/cenu",
|
|
22
|
+
"Add custom funding": "Přidat vlastní financování",
|
|
23
|
+
"Search for awards/grants": "Hledat granty/ceny",
|
|
24
|
+
"Cancel": "Zrušit",
|
|
25
|
+
"Change": "Změnit",
|
|
26
|
+
"Did not find your award/grant? ": "Nenašli jste svůj grant/cenu? ",
|
|
27
|
+
"Add a custom award/grant.": "Přidat vlastní grant/cenu."
|
|
28
|
+
}
|
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/da/messages.po
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
#
|
|
2
|
+
# Translators:
|
|
3
|
+
# Alizee Pace <alizee.pace@gmail.com>, 2025
|
|
4
|
+
#
|
|
5
|
+
msgid ""
|
|
6
|
+
msgstr ""
|
|
7
|
+
"Project-Id-Version: i18next-conv\n"
|
|
8
|
+
"POT-Creation-Date: 2025-07-08T15:47:17.169Z\n"
|
|
9
|
+
"PO-Revision-Date: 2025-05-13 21:01+0000\n"
|
|
10
|
+
"Last-Translator: Alizee Pace <alizee.pace@gmail.com>, 2025\n"
|
|
11
|
+
"Language-Team: Danish (https://app.transifex.com/inveniosoftware/teams/23537/da/)\n"
|
|
12
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
13
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
14
|
+
"Language: da\n"
|
|
15
|
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
16
|
+
"mime-version: 1.0\n"
|
|
17
|
+
|
|
18
|
+
msgid "Search for a funder by name"
|
|
19
|
+
msgstr ""
|
|
20
|
+
|
|
21
|
+
msgid "Funder"
|
|
22
|
+
msgstr ""
|
|
23
|
+
|
|
24
|
+
msgid "Search for funder..."
|
|
25
|
+
msgstr ""
|
|
26
|
+
|
|
27
|
+
msgid "Additional information"
|
|
28
|
+
msgstr ""
|
|
29
|
+
|
|
30
|
+
msgid "optional"
|
|
31
|
+
msgstr ""
|
|
32
|
+
|
|
33
|
+
msgid "Number"
|
|
34
|
+
msgstr ""
|
|
35
|
+
|
|
36
|
+
msgid "Award/Grant number"
|
|
37
|
+
msgstr ""
|
|
38
|
+
|
|
39
|
+
msgid "Title"
|
|
40
|
+
msgstr ""
|
|
41
|
+
|
|
42
|
+
msgid "Award/Grant Title"
|
|
43
|
+
msgstr ""
|
|
44
|
+
|
|
45
|
+
msgid "URL"
|
|
46
|
+
msgstr ""
|
|
47
|
+
|
|
48
|
+
msgid "Award/Grant URL"
|
|
49
|
+
msgstr ""
|
|
50
|
+
|
|
51
|
+
msgid "Add"
|
|
52
|
+
msgstr ""
|
|
53
|
+
|
|
54
|
+
msgid "Add custom"
|
|
55
|
+
msgstr ""
|
|
56
|
+
|
|
57
|
+
msgid "Edit"
|
|
58
|
+
msgstr ""
|
|
59
|
+
|
|
60
|
+
msgid "Remove"
|
|
61
|
+
msgstr ""
|
|
62
|
+
|
|
63
|
+
msgid "Open external link"
|
|
64
|
+
msgstr ""
|
|
65
|
+
|
|
66
|
+
msgid "Funder is required."
|
|
67
|
+
msgstr ""
|
|
68
|
+
|
|
69
|
+
msgid "URL must be valid."
|
|
70
|
+
msgstr ""
|
|
71
|
+
|
|
72
|
+
msgid "URL must be set alongside title or number."
|
|
73
|
+
msgstr ""
|
|
74
|
+
|
|
75
|
+
msgid "Add standard award/grant"
|
|
76
|
+
msgstr ""
|
|
77
|
+
|
|
78
|
+
msgid "Add custom funding"
|
|
79
|
+
msgstr ""
|
|
80
|
+
|
|
81
|
+
msgid "Search for awards/grants"
|
|
82
|
+
msgstr ""
|
|
83
|
+
|
|
84
|
+
msgid "Cancel"
|
|
85
|
+
msgstr "Afbryd"
|
|
86
|
+
|
|
87
|
+
msgid "Change"
|
|
88
|
+
msgstr ""
|
|
89
|
+
|
|
90
|
+
msgid "Did not find your award/grant? "
|
|
91
|
+
msgstr ""
|
|
92
|
+
|
|
93
|
+
msgid "Add a custom award/grant."
|
|
94
|
+
msgstr ""
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Search for a funder by name": "",
|
|
3
|
+
"Funder": "",
|
|
4
|
+
"Search for funder...": "",
|
|
5
|
+
"Additional information": "",
|
|
6
|
+
"optional": "",
|
|
7
|
+
"Number": "",
|
|
8
|
+
"Award/Grant number": "",
|
|
9
|
+
"Title": "",
|
|
10
|
+
"Award/Grant Title": "",
|
|
11
|
+
"URL": "",
|
|
12
|
+
"Award/Grant URL": "",
|
|
13
|
+
"Add": "",
|
|
14
|
+
"Add custom": "",
|
|
15
|
+
"Edit": "",
|
|
16
|
+
"Remove": "",
|
|
17
|
+
"Open external link": "",
|
|
18
|
+
"Funder is required.": "",
|
|
19
|
+
"URL must be valid.": "",
|
|
20
|
+
"URL must be set alongside title or number.": "",
|
|
21
|
+
"Add standard award/grant": "",
|
|
22
|
+
"Add custom funding": "",
|
|
23
|
+
"Search for awards/grants": "",
|
|
24
|
+
"Cancel": "Afbryd",
|
|
25
|
+
"Change": "",
|
|
26
|
+
"Did not find your award/grant? ": "",
|
|
27
|
+
"Add a custom award/grant.": ""
|
|
28
|
+
}
|
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/de/messages.po
ADDED
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
#
|
|
2
|
+
# Translators:
|
|
3
|
+
# c960a0736ea0fb7507bb1c3555e7d33f_88b575f <3cef15c38ce2563e884ec389656c9161_1006830>, 2025
|
|
4
|
+
# Hermann Schranzhofer <hermann.schranzhofer@tugraz.at>, 2025
|
|
5
|
+
# Tibor Simko <tibor.simko@cern.ch>, 2025
|
|
6
|
+
# Adienne Karsten-Welker, 2025
|
|
7
|
+
# Sarah Wiechers, 2025
|
|
8
|
+
#
|
|
9
|
+
msgid ""
|
|
10
|
+
msgstr ""
|
|
11
|
+
"Project-Id-Version: i18next-conv\n"
|
|
12
|
+
"POT-Creation-Date: 2025-07-08T15:47:17.169Z\n"
|
|
13
|
+
"PO-Revision-Date: 2025-05-13 21:01+0000\n"
|
|
14
|
+
"Last-Translator: Sarah Wiechers, 2025\n"
|
|
15
|
+
"Language-Team: German (https://app.transifex.com/inveniosoftware/teams/23537/de/)\n"
|
|
16
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
17
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
18
|
+
"Language: de\n"
|
|
19
|
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
20
|
+
"mime-version: 1.0\n"
|
|
21
|
+
|
|
22
|
+
msgid "Search for a funder by name"
|
|
23
|
+
msgstr "Suche nach Förderer anhand des Namens"
|
|
24
|
+
|
|
25
|
+
msgid "Funder"
|
|
26
|
+
msgstr "Förderer"
|
|
27
|
+
|
|
28
|
+
msgid "Search for funder..."
|
|
29
|
+
msgstr "Suche nach Förderer ..."
|
|
30
|
+
|
|
31
|
+
msgid "Additional information"
|
|
32
|
+
msgstr "Zusätzliche Informationen"
|
|
33
|
+
|
|
34
|
+
msgid "optional"
|
|
35
|
+
msgstr "optional"
|
|
36
|
+
|
|
37
|
+
msgid "Number"
|
|
38
|
+
msgstr "Nummer"
|
|
39
|
+
|
|
40
|
+
msgid "Award/Grant number"
|
|
41
|
+
msgstr "Förder-/Stipendiennummer"
|
|
42
|
+
|
|
43
|
+
msgid "Title"
|
|
44
|
+
msgstr "Titel"
|
|
45
|
+
|
|
46
|
+
msgid "Award/Grant Title"
|
|
47
|
+
msgstr "Förderungs-/Stipendientitel"
|
|
48
|
+
|
|
49
|
+
msgid "URL"
|
|
50
|
+
msgstr "URL"
|
|
51
|
+
|
|
52
|
+
msgid "Award/Grant URL"
|
|
53
|
+
msgstr "Förderungs-/Stipendien-URL"
|
|
54
|
+
|
|
55
|
+
msgid "Add"
|
|
56
|
+
msgstr "Hinzufügen"
|
|
57
|
+
|
|
58
|
+
msgid "Add custom"
|
|
59
|
+
msgstr "Benutzerdefinierte hinzufügen"
|
|
60
|
+
|
|
61
|
+
msgid "Edit"
|
|
62
|
+
msgstr "Editieren"
|
|
63
|
+
|
|
64
|
+
msgid "Remove"
|
|
65
|
+
msgstr "Entfernen"
|
|
66
|
+
|
|
67
|
+
msgid "Open external link"
|
|
68
|
+
msgstr "Externen Link öffnen"
|
|
69
|
+
|
|
70
|
+
msgid "Funder is required."
|
|
71
|
+
msgstr "Förderer ist erforderlich."
|
|
72
|
+
|
|
73
|
+
msgid "URL must be valid."
|
|
74
|
+
msgstr "Die URL muss gültig sein."
|
|
75
|
+
|
|
76
|
+
msgid "URL must be set alongside title or number."
|
|
77
|
+
msgstr "Die URL muss zusammen mit dem Titel oder der Nummer angegeben werden."
|
|
78
|
+
|
|
79
|
+
msgid "Add standard award/grant"
|
|
80
|
+
msgstr "Standard-Förderung/Stipendium hinzufügen"
|
|
81
|
+
|
|
82
|
+
msgid "Add custom funding"
|
|
83
|
+
msgstr "Benutzerdefinierte Förderung hinzufügen"
|
|
84
|
+
|
|
85
|
+
msgid "Search for awards/grants"
|
|
86
|
+
msgstr "Nach Förderung/Stipendium suchen"
|
|
87
|
+
|
|
88
|
+
msgid "Cancel"
|
|
89
|
+
msgstr "Abbrechen"
|
|
90
|
+
|
|
91
|
+
msgid "Change"
|
|
92
|
+
msgstr "Ändern"
|
|
93
|
+
|
|
94
|
+
msgid "Did not find your award/grant? "
|
|
95
|
+
msgstr "Konnten Sie Ihre Förderung/Ihr Stipendium nicht finden? "
|
|
96
|
+
|
|
97
|
+
msgid "Add a custom award/grant."
|
|
98
|
+
msgstr "Eine benutzerdefinierte Förderung oder ein Stipendium hinzufügen."
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Search for a funder by name": "Suche nach Förderer anhand des Namens",
|
|
3
|
+
"Funder": "Förderer",
|
|
4
|
+
"Search for funder...": "Suche nach Förderer ...",
|
|
5
|
+
"Additional information": "Zusätzliche Informationen",
|
|
6
|
+
"optional": "optional",
|
|
7
|
+
"Number": "Nummer",
|
|
8
|
+
"Award/Grant number": "Förder-/Stipendiennummer",
|
|
9
|
+
"Title": "Titel",
|
|
10
|
+
"Award/Grant Title": "Förderungs-/Stipendientitel",
|
|
11
|
+
"URL": "URL",
|
|
12
|
+
"Award/Grant URL": "Förderungs-/Stipendien-URL",
|
|
13
|
+
"Add": "Hinzufügen",
|
|
14
|
+
"Add custom": "Benutzerdefinierte hinzufügen",
|
|
15
|
+
"Edit": "Editieren",
|
|
16
|
+
"Remove": "Entfernen",
|
|
17
|
+
"Open external link": "Externen Link öffnen",
|
|
18
|
+
"Funder is required.": "Förderer ist erforderlich.",
|
|
19
|
+
"URL must be valid.": "Die URL muss gültig sein.",
|
|
20
|
+
"URL must be set alongside title or number.": "Die URL muss zusammen mit dem Titel oder der Nummer angegeben werden.",
|
|
21
|
+
"Add standard award/grant": "Standard-Förderung/Stipendium hinzufügen",
|
|
22
|
+
"Add custom funding": "Benutzerdefinierte Förderung hinzufügen",
|
|
23
|
+
"Search for awards/grants": "Nach Förderung/Stipendium suchen",
|
|
24
|
+
"Cancel": "Abbrechen",
|
|
25
|
+
"Change": "Ändern",
|
|
26
|
+
"Did not find your award/grant? ": "Konnten Sie Ihre Förderung/Ihr Stipendium nicht finden? ",
|
|
27
|
+
"Add a custom award/grant.": "Eine benutzerdefinierte Förderung oder ein Stipendium hinzufügen."
|
|
28
|
+
}
|