invenio-vocabularies 1.2.0__py2.py3-none-any.whl → 6.3.1__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.
Potentially problematic release.
This version of invenio-vocabularies might be problematic. Click here for more details.
- invenio_vocabularies/__init__.py +2 -2
- invenio_vocabularies/administration/__init__.py +10 -0
- invenio_vocabularies/administration/views/__init__.py +10 -0
- invenio_vocabularies/administration/views/vocabularies.py +45 -0
- invenio_vocabularies/alembic/4a9a4fd235f8_create_vocabulary_schemes.py +4 -4
- invenio_vocabularies/alembic/4f365fced43f_create_vocabularies_tables.py +2 -2
- invenio_vocabularies/alembic/55a700f897b6_add_names_and_afiliations_pid_column.py +96 -0
- invenio_vocabularies/alembic/676dd587542d_create_funders_vocabulary_table.py +1 -1
- invenio_vocabularies/alembic/e1146238edd3_create_awards_table.py +1 -1
- 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 +223 -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 +270 -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-scanner.config.js +63 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/i18next.js +36 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/index.js +1 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/package.json +53 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/scripts/compileCatalog.js +39 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/scripts/initCatalog.js +19 -0
- invenio_vocabularies/cli.py +31 -44
- invenio_vocabularies/config.py +74 -7
- invenio_vocabularies/contrib/affiliations/affiliations.py +22 -6
- invenio_vocabularies/contrib/affiliations/api.py +1 -2
- invenio_vocabularies/contrib/affiliations/config.py +10 -5
- invenio_vocabularies/contrib/affiliations/datastreams.py +186 -0
- invenio_vocabularies/contrib/affiliations/facets.py +36 -0
- invenio_vocabularies/contrib/affiliations/jsonschemas/affiliations/affiliation-v1.0.0.json +38 -7
- invenio_vocabularies/contrib/affiliations/mappings/os-v1/affiliations/affiliation-v1.0.0.json +22 -1
- invenio_vocabularies/contrib/affiliations/mappings/os-v1/affiliations/affiliation-v2.0.0.json +171 -0
- invenio_vocabularies/contrib/affiliations/mappings/os-v2/affiliations/affiliation-v1.0.0.json +22 -1
- invenio_vocabularies/contrib/affiliations/mappings/os-v2/affiliations/affiliation-v2.0.0.json +171 -0
- invenio_vocabularies/contrib/affiliations/mappings/v7/affiliations/affiliation-v1.0.0.json +22 -1
- invenio_vocabularies/contrib/affiliations/schema.py +23 -5
- invenio_vocabularies/contrib/affiliations/services.py +1 -2
- invenio_vocabularies/contrib/awards/awards.py +18 -6
- invenio_vocabularies/contrib/awards/config.py +1 -3
- invenio_vocabularies/contrib/awards/datastreams.py +246 -3
- invenio_vocabularies/contrib/awards/jsonschemas/awards/award-v1.0.0.json +41 -0
- invenio_vocabularies/contrib/awards/mappings/os-v1/awards/award-v1.0.0.json +53 -1
- invenio_vocabularies/contrib/awards/mappings/os-v2/awards/award-v1.0.0.json +53 -1
- invenio_vocabularies/contrib/awards/mappings/v7/awards/award-v1.0.0.json +53 -1
- invenio_vocabularies/contrib/awards/schema.py +27 -35
- invenio_vocabularies/contrib/awards/serializer.py +9 -1
- invenio_vocabularies/contrib/awards/services.py +1 -2
- 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 +220 -0
- invenio_vocabularies/contrib/funders/config.py +12 -5
- invenio_vocabularies/contrib/funders/datastreams.py +40 -62
- invenio_vocabularies/contrib/funders/facets.py +13 -5
- invenio_vocabularies/contrib/funders/funders.py +4 -2
- invenio_vocabularies/contrib/funders/jsonschemas/funders/funder-v1.0.0.json +36 -1
- invenio_vocabularies/contrib/funders/mappings/os-v1/funders/funder-v1.0.0.json +22 -1
- invenio_vocabularies/contrib/funders/mappings/os-v1/funders/funder-v2.0.0.json +156 -0
- invenio_vocabularies/contrib/funders/mappings/os-v2/funders/funder-v1.0.0.json +22 -1
- invenio_vocabularies/contrib/funders/mappings/os-v2/funders/funder-v2.0.0.json +156 -0
- invenio_vocabularies/contrib/funders/mappings/v7/funders/funder-v1.0.0.json +22 -1
- invenio_vocabularies/contrib/funders/schema.py +8 -0
- invenio_vocabularies/contrib/funders/serializer.py +2 -1
- invenio_vocabularies/contrib/names/config.py +5 -3
- invenio_vocabularies/contrib/names/datastreams.py +177 -38
- invenio_vocabularies/contrib/names/jsonschemas/names/name-v1.0.0.json +2 -6
- invenio_vocabularies/contrib/names/mappings/os-v1/names/name-v1.0.0.json +3 -0
- invenio_vocabularies/contrib/names/mappings/os-v1/names/name-v2.0.0.json +150 -0
- invenio_vocabularies/contrib/names/mappings/os-v2/names/name-v1.0.0.json +3 -0
- invenio_vocabularies/contrib/names/mappings/os-v2/names/name-v2.0.0.json +150 -0
- invenio_vocabularies/contrib/names/mappings/v7/names/name-v1.0.0.json +3 -0
- invenio_vocabularies/contrib/names/names.py +29 -13
- invenio_vocabularies/contrib/names/permissions.py +20 -0
- invenio_vocabularies/contrib/names/s3client.py +44 -0
- invenio_vocabularies/contrib/names/schema.py +31 -4
- invenio_vocabularies/contrib/subjects/config.py +9 -3
- invenio_vocabularies/contrib/subjects/datastreams.py +61 -0
- invenio_vocabularies/contrib/subjects/euroscivoc/__init__.py +9 -0
- invenio_vocabularies/contrib/subjects/euroscivoc/datastreams.py +171 -0
- invenio_vocabularies/contrib/subjects/jsonschemas/subjects/subject-v1.0.0.json +31 -0
- invenio_vocabularies/contrib/subjects/mappings/os-v1/subjects/subject-v1.0.0.json +35 -0
- invenio_vocabularies/contrib/subjects/mappings/os-v2/subjects/subject-v1.0.0.json +35 -0
- invenio_vocabularies/contrib/subjects/mappings/v7/subjects/subject-v1.0.0.json +35 -0
- invenio_vocabularies/contrib/subjects/mesh/__init__.py +9 -0
- invenio_vocabularies/contrib/subjects/mesh/datastreams.py +43 -0
- invenio_vocabularies/contrib/subjects/schema.py +47 -5
- invenio_vocabularies/contrib/subjects/subjects.py +10 -0
- invenio_vocabularies/datastreams/datastreams.py +61 -13
- invenio_vocabularies/datastreams/factories.py +1 -2
- invenio_vocabularies/datastreams/readers.py +138 -29
- invenio_vocabularies/datastreams/tasks.py +37 -0
- invenio_vocabularies/datastreams/transformers.py +17 -27
- invenio_vocabularies/datastreams/writers.py +116 -14
- invenio_vocabularies/datastreams/xml.py +34 -0
- invenio_vocabularies/ext.py +59 -5
- invenio_vocabularies/factories.py +137 -0
- invenio_vocabularies/jobs.py +133 -0
- invenio_vocabularies/proxies.py +2 -2
- invenio_vocabularies/records/jsonschemas/vocabularies/definitions-v1.0.0.json +7 -0
- invenio_vocabularies/records/jsonschemas/vocabularies/vocabulary-v1.0.0.json +1 -4
- invenio_vocabularies/records/mappings/os-v1/vocabularies/vocabulary-v1.0.0.json +3 -3
- invenio_vocabularies/records/mappings/os-v2/vocabularies/vocabulary-v1.0.0.json +3 -3
- invenio_vocabularies/records/mappings/v7/vocabularies/vocabulary-v1.0.0.json +3 -3
- invenio_vocabularies/records/models.py +8 -10
- invenio_vocabularies/records/pidprovider.py +1 -2
- invenio_vocabularies/records/systemfields/relations.py +2 -2
- invenio_vocabularies/resources/__init__.py +9 -1
- invenio_vocabularies/resources/config.py +105 -0
- invenio_vocabularies/resources/resource.py +31 -41
- invenio_vocabularies/resources/schema.py +2 -1
- invenio_vocabularies/services/__init__.py +5 -2
- invenio_vocabularies/services/config.py +179 -0
- invenio_vocabularies/services/custom_fields/__init__.py +6 -2
- invenio_vocabularies/services/custom_fields/subject.py +82 -0
- invenio_vocabularies/services/custom_fields/vocabulary.py +19 -9
- invenio_vocabularies/services/facets.py +67 -37
- invenio_vocabularies/services/permissions.py +3 -1
- invenio_vocabularies/services/results.py +110 -0
- invenio_vocabularies/services/schema.py +39 -2
- invenio_vocabularies/services/service.py +46 -94
- invenio_vocabularies/services/tasks.py +1 -1
- 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/af/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/af/LC_MESSAGES/messages.po +1 -1
- invenio_vocabularies/translations/ar/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/ar/LC_MESSAGES/messages.po +9 -8
- invenio_vocabularies/translations/bg/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/bg/LC_MESSAGES/messages.po +1 -1
- invenio_vocabularies/translations/ca/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/ca/LC_MESSAGES/messages.po +1 -1
- invenio_vocabularies/translations/cs/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/cs/LC_MESSAGES/messages.po +1 -1
- invenio_vocabularies/translations/da/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/da/LC_MESSAGES/messages.po +1 -1
- invenio_vocabularies/translations/de/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/de/LC_MESSAGES/messages.po +1 -1
- invenio_vocabularies/translations/de_AT/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/de_AT/LC_MESSAGES/messages.po +139 -0
- invenio_vocabularies/translations/de_DE/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/de_DE/LC_MESSAGES/messages.po +139 -0
- invenio_vocabularies/translations/el/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/el/LC_MESSAGES/messages.po +1 -1
- invenio_vocabularies/translations/en/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/en_AT/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/en_AT/LC_MESSAGES/messages.po +139 -0
- invenio_vocabularies/translations/en_HU/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/en_HU/LC_MESSAGES/messages.po +139 -0
- invenio_vocabularies/translations/es/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/es/LC_MESSAGES/messages.po +1 -1
- invenio_vocabularies/translations/es_CU/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/es_CU/LC_MESSAGES/messages.po +139 -0
- invenio_vocabularies/translations/es_MX/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/es_MX/LC_MESSAGES/messages.po +139 -0
- invenio_vocabularies/translations/et/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/et/LC_MESSAGES/messages.po +1 -1
- invenio_vocabularies/translations/et_EE/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/et_EE/LC_MESSAGES/messages.po +1 -1
- invenio_vocabularies/translations/fa/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/fa/LC_MESSAGES/messages.po +1 -1
- invenio_vocabularies/translations/fa_IR/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/fa_IR/LC_MESSAGES/messages.po +139 -0
- invenio_vocabularies/translations/fr/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/fr/LC_MESSAGES/messages.po +1 -1
- invenio_vocabularies/translations/fr_CI/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/fr_CI/LC_MESSAGES/messages.po +139 -0
- invenio_vocabularies/translations/fr_FR/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/fr_FR/LC_MESSAGES/messages.po +139 -0
- invenio_vocabularies/translations/gl/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/gl/LC_MESSAGES/messages.po +1 -1
- invenio_vocabularies/translations/hi_IN/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/hi_IN/LC_MESSAGES/messages.po +139 -0
- invenio_vocabularies/translations/hr/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/hr/LC_MESSAGES/messages.po +1 -1
- invenio_vocabularies/translations/hu/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/hu/LC_MESSAGES/messages.po +4 -4
- invenio_vocabularies/translations/hu_HU/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/hu_HU/LC_MESSAGES/messages.po +139 -0
- invenio_vocabularies/translations/it/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/it/LC_MESSAGES/messages.po +4 -3
- invenio_vocabularies/translations/ja/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/ja/LC_MESSAGES/messages.po +1 -1
- invenio_vocabularies/translations/ka/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/ka/LC_MESSAGES/messages.po +1 -1
- invenio_vocabularies/translations/lt/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/lt/LC_MESSAGES/messages.po +1 -1
- invenio_vocabularies/translations/messages.pot +95 -48
- invenio_vocabularies/translations/ne/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/ne/LC_MESSAGES/messages.po +139 -0
- invenio_vocabularies/translations/no/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/no/LC_MESSAGES/messages.po +1 -1
- invenio_vocabularies/translations/pl/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/pl/LC_MESSAGES/messages.po +1 -1
- invenio_vocabularies/translations/pt/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/pt/LC_MESSAGES/messages.po +1 -1
- invenio_vocabularies/translations/ro/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/ro/LC_MESSAGES/messages.po +1 -1
- invenio_vocabularies/translations/ru/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/ru/LC_MESSAGES/messages.po +1 -1
- invenio_vocabularies/translations/rw/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/rw/LC_MESSAGES/messages.po +1 -1
- invenio_vocabularies/translations/sk/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/sk/LC_MESSAGES/messages.po +1 -1
- invenio_vocabularies/translations/sv/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/sv/LC_MESSAGES/messages.po +4 -3
- invenio_vocabularies/translations/sv_SE/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/sv_SE/LC_MESSAGES/messages.po +139 -0
- invenio_vocabularies/translations/tr/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/tr/LC_MESSAGES/messages.po +1 -1
- invenio_vocabularies/translations/uk/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/uk/LC_MESSAGES/messages.po +17 -13
- invenio_vocabularies/translations/uk_UA/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/uk_UA/LC_MESSAGES/messages.po +139 -0
- invenio_vocabularies/translations/zh_CN/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/zh_CN/LC_MESSAGES/messages.po +1 -1
- invenio_vocabularies/translations/zh_TW/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/zh_TW/LC_MESSAGES/messages.po +1 -1
- invenio_vocabularies/views.py +12 -26
- invenio_vocabularies/webpack.py +51 -0
- invenio_vocabularies-6.3.1.dist-info/METADATA +346 -0
- invenio_vocabularies-6.3.1.dist-info/RECORD +306 -0
- {invenio_vocabularies-1.2.0.dist-info → invenio_vocabularies-6.3.1.dist-info}/WHEEL +1 -1
- {invenio_vocabularies-1.2.0.dist-info → invenio_vocabularies-6.3.1.dist-info}/entry_points.txt +20 -0
- invenio_vocabularies-1.2.0.dist-info/METADATA +0 -133
- invenio_vocabularies-1.2.0.dist-info/RECORD +0 -220
- {invenio_vocabularies-1.2.0.dist-info → invenio_vocabularies-6.3.1.dist-info}/AUTHORS.rst +0 -0
- {invenio_vocabularies-1.2.0.dist-info → invenio_vocabularies-6.3.1.dist-info}/LICENSE +0 -0
- {invenio_vocabularies-1.2.0.dist-info → invenio_vocabularies-6.3.1.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
{#
|
|
2
|
+
Copyright (C) 2024 CERN.
|
|
3
|
+
|
|
4
|
+
Invenio App RDM is free software; you can redistribute it and/or modify it
|
|
5
|
+
under the terms of the MIT License; see LICENSE file for more details.
|
|
6
|
+
#}
|
|
7
|
+
|
|
8
|
+
{%- from "invenio_administration/macros.html" import go_back %}
|
|
9
|
+
|
|
10
|
+
{% extends "invenio_administration/search.html" %}
|
|
11
|
+
|
|
12
|
+
{% block admin_main_column %}
|
|
13
|
+
<main id="admin-main-content"
|
|
14
|
+
class="ten wide mobile twelve wide tablet thirteen wide computer fourteen wide widescreen column">
|
|
15
|
+
|
|
16
|
+
<div class="ui container fluid pl-10 pr-10 pt-10 pb-10">
|
|
17
|
+
{{ go_back() }}
|
|
18
|
+
<div class="ui grid">
|
|
19
|
+
<div class="column six wide">
|
|
20
|
+
<h1 class="ui header">{{ title or name }}</h1>
|
|
21
|
+
</div>
|
|
22
|
+
<div class="column ten wide right aligned">
|
|
23
|
+
<a class="ui icon labeled button"
|
|
24
|
+
href="{{ edit_endpoint }}">
|
|
25
|
+
<i aria-hidden="true"
|
|
26
|
+
class="cog icon"></i>{{ _("Settings") }}
|
|
27
|
+
</a>
|
|
28
|
+
<a class="ui icon labeled button"
|
|
29
|
+
href="{{ create_ui_endpoint }}">
|
|
30
|
+
<i aria-hidden="true"
|
|
31
|
+
class="calendar icon"></i>{{ _("Schedule") }}
|
|
32
|
+
</a>
|
|
33
|
+
<a class="ui icon labeled button"
|
|
34
|
+
href="{{ run_endpoint }}">
|
|
35
|
+
<i aria-hidden="true"
|
|
36
|
+
class="play icon"></i>{{ _("Run now") }}
|
|
37
|
+
</a>
|
|
38
|
+
</div>
|
|
39
|
+
</div>
|
|
40
|
+
{% block admin_page_content %}
|
|
41
|
+
<div class="ui divider" aria-hidden="true"></div>
|
|
42
|
+
|
|
43
|
+
{%- block search_app %}
|
|
44
|
+
<div
|
|
45
|
+
id="invenio-search-config"
|
|
46
|
+
data-title='{{ title | tojson }}'
|
|
47
|
+
data-resource-name='{{ resource_name | tojson }}'
|
|
48
|
+
data-invenio-search-config='{{ search_config() | tojson }}'
|
|
49
|
+
data-fields='{{ fields | tojson }}'
|
|
50
|
+
data-display-search='{{ display_search | tojson }}'
|
|
51
|
+
data-display-read='{{ display_read | tojson }}'
|
|
52
|
+
data-display-edit='{{ display_edit | tojson }}'
|
|
53
|
+
data-display-delete='{{ display_delete | tojson }}'
|
|
54
|
+
data-resource-schema='{{ resource_schema | tojson }}'
|
|
55
|
+
data-actions='{{ actions | tojson }}'
|
|
56
|
+
data-api-endpoint='{{ api_endpoint }}'
|
|
57
|
+
data-pid-path='{{ pid_path | tojson }}'
|
|
58
|
+
data-create-endpoint='{{ create_ui_endpoint }}'
|
|
59
|
+
data-list-endpoint='{{ list_ui_endpoint }}'
|
|
60
|
+
>
|
|
61
|
+
</div>
|
|
62
|
+
{%- endblock search_app %}
|
|
63
|
+
{% endblock admin_page_content %}
|
|
64
|
+
</div>
|
|
65
|
+
</main>
|
|
66
|
+
{% endblock %}
|
|
67
|
+
|
|
68
|
+
{% block javascript %}
|
|
69
|
+
{{ super() }}
|
|
70
|
+
{{ webpack['invenio-jobs-details.js'] }}
|
|
71
|
+
{% endblock %}
|
|
Binary file
|
|
@@ -11,7 +11,7 @@ msgstr ""
|
|
|
11
11
|
"Report-Msgid-Bugs-To: info@inveniosoftware.org\n"
|
|
12
12
|
"POT-Creation-Date: 2022-10-12 12:27+0000\n"
|
|
13
13
|
"PO-Revision-Date: 2021-07-13 12:40+0000\n"
|
|
14
|
-
"Language-Team: Afrikaans (https://
|
|
14
|
+
"Language-Team: Afrikaans (https://app.transifex.com/inveniosoftware/teams/23537/af/)\n"
|
|
15
15
|
"MIME-Version: 1.0\n"
|
|
16
16
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
17
17
|
"Content-Transfer-Encoding: 8bit\n"
|
|
Binary file
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
# Translators:
|
|
8
8
|
# Tibor Simko <tibor.simko@cern.ch>, 2021
|
|
9
9
|
# Bessem Aamira <bessemamira@gmail.com>, 2022
|
|
10
|
+
# Salaheddine Ben Ali <salaheddine.benali@cnudst.tn>, 2022
|
|
10
11
|
#
|
|
11
12
|
#, fuzzy
|
|
12
13
|
msgid ""
|
|
@@ -15,8 +16,8 @@ msgstr ""
|
|
|
15
16
|
"Report-Msgid-Bugs-To: info@inveniosoftware.org\n"
|
|
16
17
|
"POT-Creation-Date: 2022-10-12 12:27+0000\n"
|
|
17
18
|
"PO-Revision-Date: 2021-07-13 12:40+0000\n"
|
|
18
|
-
"Last-Translator:
|
|
19
|
-
"Language-Team: Arabic (https://
|
|
19
|
+
"Last-Translator: Salaheddine Ben Ali <salaheddine.benali@cnudst.tn>, 2022\n"
|
|
20
|
+
"Language-Team: Arabic (https://app.transifex.com/inveniosoftware/teams/23537/ar/)\n"
|
|
20
21
|
"MIME-Version: 1.0\n"
|
|
21
22
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
22
23
|
"Content-Transfer-Encoding: 8bit\n"
|
|
@@ -65,7 +66,7 @@ msgstr "أفضل تطابق "
|
|
|
65
66
|
#: invenio_vocabularies/contrib/names/config.py:49
|
|
66
67
|
#: invenio_vocabularies/contrib/subjects/config.py:42
|
|
67
68
|
msgid "Name"
|
|
68
|
-
msgstr "
|
|
69
|
+
msgstr "إسم"
|
|
69
70
|
|
|
70
71
|
#: invenio_vocabularies/contrib/affiliations/config.py:52
|
|
71
72
|
#: invenio_vocabularies/contrib/funders/config.py:53
|
|
@@ -73,7 +74,7 @@ msgstr "اسم"
|
|
|
73
74
|
#: invenio_vocabularies/contrib/subjects/config.py:46
|
|
74
75
|
#: invenio_vocabularies/services/service.py:72
|
|
75
76
|
msgid "Newest"
|
|
76
|
-
msgstr "
|
|
77
|
+
msgstr "الأحدث"
|
|
77
78
|
|
|
78
79
|
#: invenio_vocabularies/contrib/affiliations/config.py:56
|
|
79
80
|
#: invenio_vocabularies/contrib/funders/config.py:57
|
|
@@ -98,7 +99,7 @@ msgstr "الرقم لا يمكن أن يكون فارغا"
|
|
|
98
99
|
#: invenio_vocabularies/contrib/awards/schema.py:53
|
|
99
100
|
#: invenio_vocabularies/contrib/funders/schema.py:57
|
|
100
101
|
msgid "PID cannot be blank."
|
|
101
|
-
msgstr ""
|
|
102
|
+
msgstr "معرف PID لا يمكن أن يكون فارغا."
|
|
102
103
|
|
|
103
104
|
#: invenio_vocabularies/contrib/awards/schema.py:61
|
|
104
105
|
#: invenio_vocabularies/contrib/funders/schema.py:65
|
|
@@ -119,7 +120,7 @@ msgstr "معرف Id غير متواجد بمدخلات سجل ROR."
|
|
|
119
120
|
|
|
120
121
|
#: invenio_vocabularies/contrib/funders/datastreams.py:48
|
|
121
122
|
msgid "Name not found in ROR entry."
|
|
122
|
-
msgstr "
|
|
123
|
+
msgstr "الإسم غير متواجد بمدخلات سجل ROR."
|
|
123
124
|
|
|
124
125
|
#: invenio_vocabularies/contrib/funders/schema.py:35
|
|
125
126
|
#: invenio_vocabularies/contrib/funders/schema.py:43
|
|
@@ -129,7 +130,7 @@ msgstr "اﻹسم لا يمكن أن يكون فارغا"
|
|
|
129
130
|
#: invenio_vocabularies/contrib/names/schema.py:53
|
|
130
131
|
msgid ""
|
|
131
132
|
"A name or the family name together with the given name must be present."
|
|
132
|
-
msgstr ""
|
|
133
|
+
msgstr "يجب أن يكون اللّقب أو اسم العائلة موجودا مع الاسم."
|
|
133
134
|
|
|
134
135
|
#: invenio_vocabularies/services/components.py:29
|
|
135
136
|
msgid "The vocabulary type does not exists."
|
|
@@ -137,7 +138,7 @@ msgstr "نوع المفردات غير موجود."
|
|
|
137
138
|
|
|
138
139
|
#: invenio_vocabularies/services/schema.py:77
|
|
139
140
|
msgid "An existing id or a free text {ftf_name} must be present."
|
|
140
|
-
msgstr ""
|
|
141
|
+
msgstr "يجب أن يكون هناك معرف id موجود او نص حر {ftf_name}."
|
|
141
142
|
|
|
142
143
|
#: invenio_vocabularies/services/service.py:68
|
|
143
144
|
msgid "Title"
|
|
Binary file
|
|
@@ -15,7 +15,7 @@ msgstr ""
|
|
|
15
15
|
"POT-Creation-Date: 2022-10-12 12:27+0000\n"
|
|
16
16
|
"PO-Revision-Date: 2021-07-13 12:40+0000\n"
|
|
17
17
|
"Last-Translator: Tibor Simko <tibor.simko@cern.ch>, 2021\n"
|
|
18
|
-
"Language-Team: Bulgarian (https://
|
|
18
|
+
"Language-Team: Bulgarian (https://app.transifex.com/inveniosoftware/teams/23537/bg/)\n"
|
|
19
19
|
"MIME-Version: 1.0\n"
|
|
20
20
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
21
21
|
"Content-Transfer-Encoding: 8bit\n"
|
|
Binary file
|
|
@@ -15,7 +15,7 @@ msgstr ""
|
|
|
15
15
|
"POT-Creation-Date: 2022-10-12 12:27+0000\n"
|
|
16
16
|
"PO-Revision-Date: 2021-07-13 12:40+0000\n"
|
|
17
17
|
"Last-Translator: Tibor Simko <tibor.simko@cern.ch>, 2022\n"
|
|
18
|
-
"Language-Team: Catalan (https://
|
|
18
|
+
"Language-Team: Catalan (https://app.transifex.com/inveniosoftware/teams/23537/ca/)\n"
|
|
19
19
|
"MIME-Version: 1.0\n"
|
|
20
20
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
21
21
|
"Content-Transfer-Encoding: 8bit\n"
|
|
Binary file
|
|
@@ -15,7 +15,7 @@ msgstr ""
|
|
|
15
15
|
"POT-Creation-Date: 2022-10-12 12:27+0000\n"
|
|
16
16
|
"PO-Revision-Date: 2021-07-13 12:40+0000\n"
|
|
17
17
|
"Last-Translator: Tibor Simko <tibor.simko@cern.ch>, 2022\n"
|
|
18
|
-
"Language-Team: Czech (https://
|
|
18
|
+
"Language-Team: Czech (https://app.transifex.com/inveniosoftware/teams/23537/cs/)\n"
|
|
19
19
|
"MIME-Version: 1.0\n"
|
|
20
20
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
21
21
|
"Content-Transfer-Encoding: 8bit\n"
|
|
Binary file
|
|
@@ -11,7 +11,7 @@ msgstr ""
|
|
|
11
11
|
"Report-Msgid-Bugs-To: info@inveniosoftware.org\n"
|
|
12
12
|
"POT-Creation-Date: 2022-10-12 12:27+0000\n"
|
|
13
13
|
"PO-Revision-Date: 2021-07-13 12:40+0000\n"
|
|
14
|
-
"Language-Team: Danish (https://
|
|
14
|
+
"Language-Team: Danish (https://app.transifex.com/inveniosoftware/teams/23537/da/)\n"
|
|
15
15
|
"MIME-Version: 1.0\n"
|
|
16
16
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
17
17
|
"Content-Transfer-Encoding: 8bit\n"
|
|
Binary file
|
|
@@ -20,7 +20,7 @@ msgstr ""
|
|
|
20
20
|
"POT-Creation-Date: 2022-10-12 12:27+0000\n"
|
|
21
21
|
"PO-Revision-Date: 2021-07-13 12:40+0000\n"
|
|
22
22
|
"Last-Translator: chriz_uniba <christina.zeller@uni-bamberg.de>, 2022\n"
|
|
23
|
-
"Language-Team: German (https://
|
|
23
|
+
"Language-Team: German (https://app.transifex.com/inveniosoftware/teams/23537/de/)\n"
|
|
24
24
|
"MIME-Version: 1.0\n"
|
|
25
25
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
26
26
|
"Content-Transfer-Encoding: 8bit\n"
|
|
Binary file
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
# Translations template for invenio-vocabularies.
|
|
2
|
+
# Copyright (C) 2022 CERN
|
|
3
|
+
# This file is distributed under the same license as the
|
|
4
|
+
# invenio-vocabularies project.
|
|
5
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
|
|
6
|
+
#
|
|
7
|
+
#, fuzzy
|
|
8
|
+
msgid ""
|
|
9
|
+
msgstr ""
|
|
10
|
+
"Project-Id-Version: invenio-vocabularies 0.13.2\n"
|
|
11
|
+
"Report-Msgid-Bugs-To: info@inveniosoftware.org\n"
|
|
12
|
+
"POT-Creation-Date: 2022-10-12 12:27+0000\n"
|
|
13
|
+
"PO-Revision-Date: 2021-07-13 12:40+0000\n"
|
|
14
|
+
"Language-Team: German (Austria) (https://app.transifex.com/inveniosoftware/teams/23537/de_AT/)\n"
|
|
15
|
+
"MIME-Version: 1.0\n"
|
|
16
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
17
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
18
|
+
"Generated-By: Babel 2.10.3\n"
|
|
19
|
+
"Language: de_AT\n"
|
|
20
|
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
21
|
+
|
|
22
|
+
#: invenio_vocabularies/config.py:37
|
|
23
|
+
msgid "GRID"
|
|
24
|
+
msgstr ""
|
|
25
|
+
|
|
26
|
+
#: invenio_vocabularies/config.py:38 invenio_vocabularies/config.py:97
|
|
27
|
+
msgid "GND"
|
|
28
|
+
msgstr ""
|
|
29
|
+
|
|
30
|
+
#: invenio_vocabularies/config.py:39 invenio_vocabularies/config.py:96
|
|
31
|
+
msgid "ISNI"
|
|
32
|
+
msgstr ""
|
|
33
|
+
|
|
34
|
+
#: invenio_vocabularies/config.py:40
|
|
35
|
+
msgid "ROR"
|
|
36
|
+
msgstr ""
|
|
37
|
+
|
|
38
|
+
#: invenio_vocabularies/config.py:51 invenio_vocabularies/config.py:60
|
|
39
|
+
msgid "DOI"
|
|
40
|
+
msgstr ""
|
|
41
|
+
|
|
42
|
+
#: invenio_vocabularies/config.py:59
|
|
43
|
+
msgid "URL"
|
|
44
|
+
msgstr ""
|
|
45
|
+
|
|
46
|
+
#: invenio_vocabularies/config.py:95
|
|
47
|
+
msgid "ORCID"
|
|
48
|
+
msgstr ""
|
|
49
|
+
|
|
50
|
+
#: invenio_vocabularies/contrib/affiliations/config.py:44
|
|
51
|
+
#: invenio_vocabularies/contrib/funders/config.py:45
|
|
52
|
+
#: invenio_vocabularies/contrib/names/config.py:45
|
|
53
|
+
#: invenio_vocabularies/contrib/subjects/config.py:38
|
|
54
|
+
#: invenio_vocabularies/services/service.py:64
|
|
55
|
+
msgid "Best match"
|
|
56
|
+
msgstr ""
|
|
57
|
+
|
|
58
|
+
#: invenio_vocabularies/contrib/affiliations/config.py:48
|
|
59
|
+
#: invenio_vocabularies/contrib/funders/config.py:49
|
|
60
|
+
#: invenio_vocabularies/contrib/names/config.py:49
|
|
61
|
+
#: invenio_vocabularies/contrib/subjects/config.py:42
|
|
62
|
+
msgid "Name"
|
|
63
|
+
msgstr ""
|
|
64
|
+
|
|
65
|
+
#: invenio_vocabularies/contrib/affiliations/config.py:52
|
|
66
|
+
#: invenio_vocabularies/contrib/funders/config.py:53
|
|
67
|
+
#: invenio_vocabularies/contrib/names/config.py:53
|
|
68
|
+
#: invenio_vocabularies/contrib/subjects/config.py:46
|
|
69
|
+
#: invenio_vocabularies/services/service.py:72
|
|
70
|
+
msgid "Newest"
|
|
71
|
+
msgstr ""
|
|
72
|
+
|
|
73
|
+
#: invenio_vocabularies/contrib/affiliations/config.py:56
|
|
74
|
+
#: invenio_vocabularies/contrib/funders/config.py:57
|
|
75
|
+
#: invenio_vocabularies/contrib/names/config.py:57
|
|
76
|
+
#: invenio_vocabularies/contrib/subjects/config.py:50
|
|
77
|
+
#: invenio_vocabularies/services/service.py:76
|
|
78
|
+
msgid "Oldest"
|
|
79
|
+
msgstr ""
|
|
80
|
+
|
|
81
|
+
#: invenio_vocabularies/contrib/awards/config.py:51
|
|
82
|
+
msgid "Funders"
|
|
83
|
+
msgstr ""
|
|
84
|
+
|
|
85
|
+
#: invenio_vocabularies/contrib/awards/datastreams.py:47
|
|
86
|
+
msgid "Unknown OpenAIRE funder prefix {openaire_funder_prefix}"
|
|
87
|
+
msgstr ""
|
|
88
|
+
|
|
89
|
+
#: invenio_vocabularies/contrib/awards/schema.py:46
|
|
90
|
+
msgid "Number cannot be blank."
|
|
91
|
+
msgstr ""
|
|
92
|
+
|
|
93
|
+
#: invenio_vocabularies/contrib/awards/schema.py:53
|
|
94
|
+
#: invenio_vocabularies/contrib/funders/schema.py:57
|
|
95
|
+
msgid "PID cannot be blank."
|
|
96
|
+
msgstr ""
|
|
97
|
+
|
|
98
|
+
#: invenio_vocabularies/contrib/awards/schema.py:61
|
|
99
|
+
#: invenio_vocabularies/contrib/funders/schema.py:65
|
|
100
|
+
msgid "Missing PID."
|
|
101
|
+
msgstr ""
|
|
102
|
+
|
|
103
|
+
#: invenio_vocabularies/contrib/awards/schema.py:103
|
|
104
|
+
msgid "An existing id or number/title must be present."
|
|
105
|
+
msgstr ""
|
|
106
|
+
|
|
107
|
+
#: invenio_vocabularies/contrib/awards/schema.py:120
|
|
108
|
+
msgid "At least award or funder should be present."
|
|
109
|
+
msgstr ""
|
|
110
|
+
|
|
111
|
+
#: invenio_vocabularies/contrib/funders/datastreams.py:44
|
|
112
|
+
msgid "Id not found in ROR entry."
|
|
113
|
+
msgstr ""
|
|
114
|
+
|
|
115
|
+
#: invenio_vocabularies/contrib/funders/datastreams.py:48
|
|
116
|
+
msgid "Name not found in ROR entry."
|
|
117
|
+
msgstr ""
|
|
118
|
+
|
|
119
|
+
#: invenio_vocabularies/contrib/funders/schema.py:35
|
|
120
|
+
#: invenio_vocabularies/contrib/funders/schema.py:43
|
|
121
|
+
msgid "Name cannot be blank."
|
|
122
|
+
msgstr ""
|
|
123
|
+
|
|
124
|
+
#: invenio_vocabularies/contrib/names/schema.py:53
|
|
125
|
+
msgid ""
|
|
126
|
+
"A name or the family name together with the given name must be present."
|
|
127
|
+
msgstr ""
|
|
128
|
+
|
|
129
|
+
#: invenio_vocabularies/services/components.py:29
|
|
130
|
+
msgid "The vocabulary type does not exists."
|
|
131
|
+
msgstr ""
|
|
132
|
+
|
|
133
|
+
#: invenio_vocabularies/services/schema.py:77
|
|
134
|
+
msgid "An existing id or a free text {ftf_name} must be present."
|
|
135
|
+
msgstr ""
|
|
136
|
+
|
|
137
|
+
#: invenio_vocabularies/services/service.py:68
|
|
138
|
+
msgid "Title"
|
|
139
|
+
msgstr ""
|
|
Binary file
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
# Translations template for invenio-vocabularies.
|
|
2
|
+
# Copyright (C) 2022 CERN
|
|
3
|
+
# This file is distributed under the same license as the
|
|
4
|
+
# invenio-vocabularies project.
|
|
5
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
|
|
6
|
+
#
|
|
7
|
+
#, fuzzy
|
|
8
|
+
msgid ""
|
|
9
|
+
msgstr ""
|
|
10
|
+
"Project-Id-Version: invenio-vocabularies 0.13.2\n"
|
|
11
|
+
"Report-Msgid-Bugs-To: info@inveniosoftware.org\n"
|
|
12
|
+
"POT-Creation-Date: 2022-10-12 12:27+0000\n"
|
|
13
|
+
"PO-Revision-Date: 2021-07-13 12:40+0000\n"
|
|
14
|
+
"Language-Team: German (Germany) (https://app.transifex.com/inveniosoftware/teams/23537/de_DE/)\n"
|
|
15
|
+
"MIME-Version: 1.0\n"
|
|
16
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
17
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
18
|
+
"Generated-By: Babel 2.10.3\n"
|
|
19
|
+
"Language: de_DE\n"
|
|
20
|
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
21
|
+
|
|
22
|
+
#: invenio_vocabularies/config.py:37
|
|
23
|
+
msgid "GRID"
|
|
24
|
+
msgstr ""
|
|
25
|
+
|
|
26
|
+
#: invenio_vocabularies/config.py:38 invenio_vocabularies/config.py:97
|
|
27
|
+
msgid "GND"
|
|
28
|
+
msgstr ""
|
|
29
|
+
|
|
30
|
+
#: invenio_vocabularies/config.py:39 invenio_vocabularies/config.py:96
|
|
31
|
+
msgid "ISNI"
|
|
32
|
+
msgstr ""
|
|
33
|
+
|
|
34
|
+
#: invenio_vocabularies/config.py:40
|
|
35
|
+
msgid "ROR"
|
|
36
|
+
msgstr ""
|
|
37
|
+
|
|
38
|
+
#: invenio_vocabularies/config.py:51 invenio_vocabularies/config.py:60
|
|
39
|
+
msgid "DOI"
|
|
40
|
+
msgstr ""
|
|
41
|
+
|
|
42
|
+
#: invenio_vocabularies/config.py:59
|
|
43
|
+
msgid "URL"
|
|
44
|
+
msgstr ""
|
|
45
|
+
|
|
46
|
+
#: invenio_vocabularies/config.py:95
|
|
47
|
+
msgid "ORCID"
|
|
48
|
+
msgstr ""
|
|
49
|
+
|
|
50
|
+
#: invenio_vocabularies/contrib/affiliations/config.py:44
|
|
51
|
+
#: invenio_vocabularies/contrib/funders/config.py:45
|
|
52
|
+
#: invenio_vocabularies/contrib/names/config.py:45
|
|
53
|
+
#: invenio_vocabularies/contrib/subjects/config.py:38
|
|
54
|
+
#: invenio_vocabularies/services/service.py:64
|
|
55
|
+
msgid "Best match"
|
|
56
|
+
msgstr ""
|
|
57
|
+
|
|
58
|
+
#: invenio_vocabularies/contrib/affiliations/config.py:48
|
|
59
|
+
#: invenio_vocabularies/contrib/funders/config.py:49
|
|
60
|
+
#: invenio_vocabularies/contrib/names/config.py:49
|
|
61
|
+
#: invenio_vocabularies/contrib/subjects/config.py:42
|
|
62
|
+
msgid "Name"
|
|
63
|
+
msgstr ""
|
|
64
|
+
|
|
65
|
+
#: invenio_vocabularies/contrib/affiliations/config.py:52
|
|
66
|
+
#: invenio_vocabularies/contrib/funders/config.py:53
|
|
67
|
+
#: invenio_vocabularies/contrib/names/config.py:53
|
|
68
|
+
#: invenio_vocabularies/contrib/subjects/config.py:46
|
|
69
|
+
#: invenio_vocabularies/services/service.py:72
|
|
70
|
+
msgid "Newest"
|
|
71
|
+
msgstr ""
|
|
72
|
+
|
|
73
|
+
#: invenio_vocabularies/contrib/affiliations/config.py:56
|
|
74
|
+
#: invenio_vocabularies/contrib/funders/config.py:57
|
|
75
|
+
#: invenio_vocabularies/contrib/names/config.py:57
|
|
76
|
+
#: invenio_vocabularies/contrib/subjects/config.py:50
|
|
77
|
+
#: invenio_vocabularies/services/service.py:76
|
|
78
|
+
msgid "Oldest"
|
|
79
|
+
msgstr ""
|
|
80
|
+
|
|
81
|
+
#: invenio_vocabularies/contrib/awards/config.py:51
|
|
82
|
+
msgid "Funders"
|
|
83
|
+
msgstr ""
|
|
84
|
+
|
|
85
|
+
#: invenio_vocabularies/contrib/awards/datastreams.py:47
|
|
86
|
+
msgid "Unknown OpenAIRE funder prefix {openaire_funder_prefix}"
|
|
87
|
+
msgstr ""
|
|
88
|
+
|
|
89
|
+
#: invenio_vocabularies/contrib/awards/schema.py:46
|
|
90
|
+
msgid "Number cannot be blank."
|
|
91
|
+
msgstr ""
|
|
92
|
+
|
|
93
|
+
#: invenio_vocabularies/contrib/awards/schema.py:53
|
|
94
|
+
#: invenio_vocabularies/contrib/funders/schema.py:57
|
|
95
|
+
msgid "PID cannot be blank."
|
|
96
|
+
msgstr ""
|
|
97
|
+
|
|
98
|
+
#: invenio_vocabularies/contrib/awards/schema.py:61
|
|
99
|
+
#: invenio_vocabularies/contrib/funders/schema.py:65
|
|
100
|
+
msgid "Missing PID."
|
|
101
|
+
msgstr ""
|
|
102
|
+
|
|
103
|
+
#: invenio_vocabularies/contrib/awards/schema.py:103
|
|
104
|
+
msgid "An existing id or number/title must be present."
|
|
105
|
+
msgstr ""
|
|
106
|
+
|
|
107
|
+
#: invenio_vocabularies/contrib/awards/schema.py:120
|
|
108
|
+
msgid "At least award or funder should be present."
|
|
109
|
+
msgstr ""
|
|
110
|
+
|
|
111
|
+
#: invenio_vocabularies/contrib/funders/datastreams.py:44
|
|
112
|
+
msgid "Id not found in ROR entry."
|
|
113
|
+
msgstr ""
|
|
114
|
+
|
|
115
|
+
#: invenio_vocabularies/contrib/funders/datastreams.py:48
|
|
116
|
+
msgid "Name not found in ROR entry."
|
|
117
|
+
msgstr ""
|
|
118
|
+
|
|
119
|
+
#: invenio_vocabularies/contrib/funders/schema.py:35
|
|
120
|
+
#: invenio_vocabularies/contrib/funders/schema.py:43
|
|
121
|
+
msgid "Name cannot be blank."
|
|
122
|
+
msgstr ""
|
|
123
|
+
|
|
124
|
+
#: invenio_vocabularies/contrib/names/schema.py:53
|
|
125
|
+
msgid ""
|
|
126
|
+
"A name or the family name together with the given name must be present."
|
|
127
|
+
msgstr ""
|
|
128
|
+
|
|
129
|
+
#: invenio_vocabularies/services/components.py:29
|
|
130
|
+
msgid "The vocabulary type does not exists."
|
|
131
|
+
msgstr ""
|
|
132
|
+
|
|
133
|
+
#: invenio_vocabularies/services/schema.py:77
|
|
134
|
+
msgid "An existing id or a free text {ftf_name} must be present."
|
|
135
|
+
msgstr ""
|
|
136
|
+
|
|
137
|
+
#: invenio_vocabularies/services/service.py:68
|
|
138
|
+
msgid "Title"
|
|
139
|
+
msgstr ""
|
|
Binary file
|
|
@@ -15,7 +15,7 @@ msgstr ""
|
|
|
15
15
|
"POT-Creation-Date: 2022-10-12 12:27+0000\n"
|
|
16
16
|
"PO-Revision-Date: 2021-07-13 12:40+0000\n"
|
|
17
17
|
"Last-Translator: Tibor Simko <tibor.simko@cern.ch>, 2022\n"
|
|
18
|
-
"Language-Team: Greek (https://
|
|
18
|
+
"Language-Team: Greek (https://app.transifex.com/inveniosoftware/teams/23537/el/)\n"
|
|
19
19
|
"MIME-Version: 1.0\n"
|
|
20
20
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
21
21
|
"Content-Transfer-Encoding: 8bit\n"
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
# Translations template for invenio-vocabularies.
|
|
2
|
+
# Copyright (C) 2022 CERN
|
|
3
|
+
# This file is distributed under the same license as the
|
|
4
|
+
# invenio-vocabularies project.
|
|
5
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
|
|
6
|
+
#
|
|
7
|
+
#, fuzzy
|
|
8
|
+
msgid ""
|
|
9
|
+
msgstr ""
|
|
10
|
+
"Project-Id-Version: invenio-vocabularies 0.13.2\n"
|
|
11
|
+
"Report-Msgid-Bugs-To: info@inveniosoftware.org\n"
|
|
12
|
+
"POT-Creation-Date: 2022-10-12 12:27+0000\n"
|
|
13
|
+
"PO-Revision-Date: 2021-07-13 12:40+0000\n"
|
|
14
|
+
"Language-Team: English (Austria) (https://app.transifex.com/inveniosoftware/teams/23537/en_AT/)\n"
|
|
15
|
+
"MIME-Version: 1.0\n"
|
|
16
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
17
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
18
|
+
"Generated-By: Babel 2.10.3\n"
|
|
19
|
+
"Language: en_AT\n"
|
|
20
|
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
21
|
+
|
|
22
|
+
#: invenio_vocabularies/config.py:37
|
|
23
|
+
msgid "GRID"
|
|
24
|
+
msgstr ""
|
|
25
|
+
|
|
26
|
+
#: invenio_vocabularies/config.py:38 invenio_vocabularies/config.py:97
|
|
27
|
+
msgid "GND"
|
|
28
|
+
msgstr ""
|
|
29
|
+
|
|
30
|
+
#: invenio_vocabularies/config.py:39 invenio_vocabularies/config.py:96
|
|
31
|
+
msgid "ISNI"
|
|
32
|
+
msgstr ""
|
|
33
|
+
|
|
34
|
+
#: invenio_vocabularies/config.py:40
|
|
35
|
+
msgid "ROR"
|
|
36
|
+
msgstr ""
|
|
37
|
+
|
|
38
|
+
#: invenio_vocabularies/config.py:51 invenio_vocabularies/config.py:60
|
|
39
|
+
msgid "DOI"
|
|
40
|
+
msgstr ""
|
|
41
|
+
|
|
42
|
+
#: invenio_vocabularies/config.py:59
|
|
43
|
+
msgid "URL"
|
|
44
|
+
msgstr ""
|
|
45
|
+
|
|
46
|
+
#: invenio_vocabularies/config.py:95
|
|
47
|
+
msgid "ORCID"
|
|
48
|
+
msgstr ""
|
|
49
|
+
|
|
50
|
+
#: invenio_vocabularies/contrib/affiliations/config.py:44
|
|
51
|
+
#: invenio_vocabularies/contrib/funders/config.py:45
|
|
52
|
+
#: invenio_vocabularies/contrib/names/config.py:45
|
|
53
|
+
#: invenio_vocabularies/contrib/subjects/config.py:38
|
|
54
|
+
#: invenio_vocabularies/services/service.py:64
|
|
55
|
+
msgid "Best match"
|
|
56
|
+
msgstr ""
|
|
57
|
+
|
|
58
|
+
#: invenio_vocabularies/contrib/affiliations/config.py:48
|
|
59
|
+
#: invenio_vocabularies/contrib/funders/config.py:49
|
|
60
|
+
#: invenio_vocabularies/contrib/names/config.py:49
|
|
61
|
+
#: invenio_vocabularies/contrib/subjects/config.py:42
|
|
62
|
+
msgid "Name"
|
|
63
|
+
msgstr ""
|
|
64
|
+
|
|
65
|
+
#: invenio_vocabularies/contrib/affiliations/config.py:52
|
|
66
|
+
#: invenio_vocabularies/contrib/funders/config.py:53
|
|
67
|
+
#: invenio_vocabularies/contrib/names/config.py:53
|
|
68
|
+
#: invenio_vocabularies/contrib/subjects/config.py:46
|
|
69
|
+
#: invenio_vocabularies/services/service.py:72
|
|
70
|
+
msgid "Newest"
|
|
71
|
+
msgstr ""
|
|
72
|
+
|
|
73
|
+
#: invenio_vocabularies/contrib/affiliations/config.py:56
|
|
74
|
+
#: invenio_vocabularies/contrib/funders/config.py:57
|
|
75
|
+
#: invenio_vocabularies/contrib/names/config.py:57
|
|
76
|
+
#: invenio_vocabularies/contrib/subjects/config.py:50
|
|
77
|
+
#: invenio_vocabularies/services/service.py:76
|
|
78
|
+
msgid "Oldest"
|
|
79
|
+
msgstr ""
|
|
80
|
+
|
|
81
|
+
#: invenio_vocabularies/contrib/awards/config.py:51
|
|
82
|
+
msgid "Funders"
|
|
83
|
+
msgstr ""
|
|
84
|
+
|
|
85
|
+
#: invenio_vocabularies/contrib/awards/datastreams.py:47
|
|
86
|
+
msgid "Unknown OpenAIRE funder prefix {openaire_funder_prefix}"
|
|
87
|
+
msgstr ""
|
|
88
|
+
|
|
89
|
+
#: invenio_vocabularies/contrib/awards/schema.py:46
|
|
90
|
+
msgid "Number cannot be blank."
|
|
91
|
+
msgstr ""
|
|
92
|
+
|
|
93
|
+
#: invenio_vocabularies/contrib/awards/schema.py:53
|
|
94
|
+
#: invenio_vocabularies/contrib/funders/schema.py:57
|
|
95
|
+
msgid "PID cannot be blank."
|
|
96
|
+
msgstr ""
|
|
97
|
+
|
|
98
|
+
#: invenio_vocabularies/contrib/awards/schema.py:61
|
|
99
|
+
#: invenio_vocabularies/contrib/funders/schema.py:65
|
|
100
|
+
msgid "Missing PID."
|
|
101
|
+
msgstr ""
|
|
102
|
+
|
|
103
|
+
#: invenio_vocabularies/contrib/awards/schema.py:103
|
|
104
|
+
msgid "An existing id or number/title must be present."
|
|
105
|
+
msgstr ""
|
|
106
|
+
|
|
107
|
+
#: invenio_vocabularies/contrib/awards/schema.py:120
|
|
108
|
+
msgid "At least award or funder should be present."
|
|
109
|
+
msgstr ""
|
|
110
|
+
|
|
111
|
+
#: invenio_vocabularies/contrib/funders/datastreams.py:44
|
|
112
|
+
msgid "Id not found in ROR entry."
|
|
113
|
+
msgstr ""
|
|
114
|
+
|
|
115
|
+
#: invenio_vocabularies/contrib/funders/datastreams.py:48
|
|
116
|
+
msgid "Name not found in ROR entry."
|
|
117
|
+
msgstr ""
|
|
118
|
+
|
|
119
|
+
#: invenio_vocabularies/contrib/funders/schema.py:35
|
|
120
|
+
#: invenio_vocabularies/contrib/funders/schema.py:43
|
|
121
|
+
msgid "Name cannot be blank."
|
|
122
|
+
msgstr ""
|
|
123
|
+
|
|
124
|
+
#: invenio_vocabularies/contrib/names/schema.py:53
|
|
125
|
+
msgid ""
|
|
126
|
+
"A name or the family name together with the given name must be present."
|
|
127
|
+
msgstr ""
|
|
128
|
+
|
|
129
|
+
#: invenio_vocabularies/services/components.py:29
|
|
130
|
+
msgid "The vocabulary type does not exists."
|
|
131
|
+
msgstr ""
|
|
132
|
+
|
|
133
|
+
#: invenio_vocabularies/services/schema.py:77
|
|
134
|
+
msgid "An existing id or a free text {ftf_name} must be present."
|
|
135
|
+
msgstr ""
|
|
136
|
+
|
|
137
|
+
#: invenio_vocabularies/services/service.py:68
|
|
138
|
+
msgid "Title"
|
|
139
|
+
msgstr ""
|
|
Binary file
|