geonetwork-ui 2.4.0-dev.cec60ff1 → 2.4.0-dev.e079151e
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.
- package/esm2022/libs/api/metadata-converter/src/index.mjs +2 -1
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/atomic-operations.mjs +2 -1
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.mjs +1 -1
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.mjs +5 -5
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/read-parts.mjs +30 -2
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.mjs +31 -0
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/write-parts.mjs +23 -1
- package/esm2022/libs/api/metadata-converter/src/lib/xml-utils.mjs +6 -1
- package/esm2022/libs/api/repository/src/lib/gn4/gn4-repository.mjs +12 -1
- package/esm2022/libs/common/domain/src/lib/model/record/metadata.model.mjs +1 -1
- package/esm2022/libs/common/domain/src/lib/repository/records-repository.interface.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/api/records.api.service.mjs +2 -6
- package/esm2022/libs/feature/editor/src/lib/+state/editor.actions.mjs +2 -1
- package/esm2022/libs/feature/editor/src/lib/+state/editor.effects.mjs +3 -3
- package/esm2022/libs/feature/editor/src/lib/+state/editor.facade.mjs +7 -2
- package/esm2022/libs/feature/editor/src/lib/+state/editor.models.mjs +1 -1
- package/esm2022/libs/feature/editor/src/lib/+state/editor.reducer.mjs +7 -3
- package/esm2022/libs/feature/editor/src/lib/+state/editor.selectors.mjs +16 -6
- package/esm2022/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.mjs +138 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.mjs +21 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.mjs +19 -9
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/index.mjs +1 -2
- package/esm2022/libs/feature/editor/src/lib/components/record-form/record-form.component.mjs +12 -7
- package/esm2022/libs/feature/editor/src/lib/expressions.mjs +1 -1
- package/esm2022/libs/feature/editor/src/lib/fields.config.mjs +153 -60
- package/esm2022/libs/feature/editor/src/lib/models/editor-config.model.mjs +2 -0
- package/esm2022/libs/feature/editor/src/lib/models/index.mjs +2 -1
- package/esm2022/libs/feature/editor/src/lib/services/editor.service.mjs +4 -3
- package/esm2022/libs/feature/map/src/lib/utils/map-utils.service.mjs +3 -4
- package/esm2022/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.mjs +42 -23
- package/esm2022/libs/feature/record/src/lib/data-view-share/data-view-share.component.mjs +13 -5
- package/esm2022/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.mjs +49 -15
- package/esm2022/libs/feature/search/src/lib/results-table/results-table-container.component.mjs +9 -3
- package/esm2022/libs/ui/elements/src/lib/api-card/api-card.component.mjs +3 -3
- package/esm2022/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.mjs +5 -11
- package/esm2022/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.mjs +3 -3
- package/esm2022/libs/ui/elements/src/lib/ui-elements.module.mjs +5 -2
- package/esm2022/libs/ui/elements/src/lib/user-preview/user-preview.component.mjs +3 -3
- package/esm2022/libs/ui/inputs/src/lib/image-input/image-input.component.mjs +11 -5
- package/esm2022/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.mjs +29 -0
- package/esm2022/libs/ui/search/src/lib/results-table/results-table.component.mjs +15 -7
- package/esm2022/libs/ui/widgets/src/index.mjs +2 -1
- package/esm2022/libs/ui/widgets/src/lib/popover/popover.component.mjs +68 -0
- package/esm2022/translations/de.json +58 -32
- package/esm2022/translations/en.json +34 -8
- package/esm2022/translations/es.json +31 -5
- package/esm2022/translations/fr.json +34 -8
- package/esm2022/translations/it.json +32 -6
- package/esm2022/translations/nl.json +31 -5
- package/esm2022/translations/pt.json +31 -5
- package/fesm2022/geonetwork-ui.mjs +937 -236
- package/fesm2022/geonetwork-ui.mjs.map +1 -1
- package/libs/api/metadata-converter/src/index.d.ts +1 -0
- package/libs/api/metadata-converter/src/index.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/gn4/atomic-operations.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts +1 -0
- package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts +8 -1
- package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.d.ts +5 -0
- package/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts +3 -1
- package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/xml-utils.d.ts +1 -0
- package/libs/api/metadata-converter/src/lib/xml-utils.d.ts.map +1 -1
- package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts +1 -0
- package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts.map +1 -1
- package/libs/common/domain/src/lib/model/record/metadata.model.d.ts +2 -1
- package/libs/common/domain/src/lib/model/record/metadata.model.d.ts.map +1 -1
- package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts +9 -0
- package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/api/records.api.service.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/+state/editor.actions.d.ts +5 -0
- package/libs/feature/editor/src/lib/+state/editor.actions.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/+state/editor.facade.d.ts +4 -4
- package/libs/feature/editor/src/lib/+state/editor.facade.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/+state/editor.models.d.ts +8 -0
- package/libs/feature/editor/src/lib/+state/editor.models.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/+state/editor.reducer.d.ts +4 -3
- package/libs/feature/editor/src/lib/+state/editor.reducer.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/+state/editor.selectors.d.ts +4 -8
- package/libs/feature/editor/src/lib/+state/editor.selectors.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.d.ts +27 -0
- package/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts +11 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts +6 -2
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/index.d.ts +0 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/index.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts +5 -7
- package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/expressions.d.ts +1 -1
- package/libs/feature/editor/src/lib/expressions.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/fields.config.d.ts +39 -2
- package/libs/feature/editor/src/lib/fields.config.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/models/editor-config.model.d.ts +36 -0
- package/libs/feature/editor/src/lib/models/editor-config.model.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/models/index.d.ts +1 -0
- package/libs/feature/editor/src/lib/models/index.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/services/editor.service.d.ts +2 -2
- package/libs/feature/editor/src/lib/services/editor.service.d.ts.map +1 -1
- package/libs/feature/map/src/lib/utils/map-utils.service.d.ts.map +1 -1
- package/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.d.ts +4 -1
- package/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.d.ts.map +1 -1
- package/libs/feature/record/src/lib/data-view-share/data-view-share.component.d.ts +4 -1
- package/libs/feature/record/src/lib/data-view-share/data-view-share.component.d.ts.map +1 -1
- package/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.d.ts +4 -1
- package/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.d.ts.map +1 -1
- package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts +3 -1
- package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts +1 -1
- package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts +0 -3
- package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts +1 -1
- package/libs/ui/elements/src/lib/ui-elements.module.d.ts +7 -6
- package/libs/ui/elements/src/lib/ui-elements.module.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts +4 -2
- package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts.map +1 -1
- package/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.d.ts +11 -0
- package/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/results-table/results-table.component.d.ts +4 -2
- package/libs/ui/search/src/lib/results-table/results-table.component.d.ts.map +1 -1
- package/libs/ui/widgets/src/index.d.ts +1 -0
- package/libs/ui/widgets/src/index.d.ts.map +1 -1
- package/libs/ui/widgets/src/lib/popover/popover.component.d.ts +19 -0
- package/libs/ui/widgets/src/lib/popover/popover.component.d.ts.map +1 -0
- package/package.json +1 -1
- package/src/libs/api/metadata-converter/src/index.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.ts +5 -1
- package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +37 -12
- package/src/libs/api/metadata-converter/src/lib/fixtures/metawal.records.ts +5 -1
- package/src/libs/api/metadata-converter/src/lib/gn4/atomic-operations.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +4 -2
- package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +72 -2
- package/src/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.ts +39 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +70 -1
- package/src/libs/api/metadata-converter/src/lib/xml-utils.ts +8 -0
- package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +20 -0
- package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +2 -1
- package/src/libs/common/domain/src/lib/repository/records-repository.interface.ts +12 -0
- package/src/libs/common/fixtures/src/index.ts +2 -0
- package/src/libs/common/fixtures/src/lib/editor/editor.fixtures.ts +156 -0
- package/src/libs/common/fixtures/src/lib/editor/index.ts +1 -0
- package/src/libs/data-access/gn4/src/openapi/api/records.api.service.ts +1 -5
- package/src/libs/data-access/gn4/src/spec.yaml +0 -8
- package/src/libs/feature/editor/src/lib/+state/editor.actions.ts +5 -0
- package/src/libs/feature/editor/src/lib/+state/editor.effects.ts +2 -2
- package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +9 -1
- package/src/libs/feature/editor/src/lib/+state/editor.models.ts +11 -0
- package/src/libs/feature/editor/src/lib/+state/editor.reducer.ts +11 -5
- package/src/libs/feature/editor/src/lib/+state/editor.selectors.ts +22 -8
- package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.html +3 -1
- package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.ts +117 -21
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.css +0 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.html +5 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.ts +22 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +15 -9
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +15 -2
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/index.ts +0 -1
- package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.html +51 -11
- package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.ts +16 -8
- package/src/libs/feature/editor/src/lib/expressions.ts +1 -1
- package/src/libs/feature/editor/src/lib/fields.config.ts +186 -61
- package/src/libs/feature/editor/src/lib/models/editor-config.model.ts +53 -0
- package/src/libs/feature/editor/src/lib/models/index.ts +1 -0
- package/src/libs/feature/editor/src/lib/services/editor.service.ts +8 -4
- package/src/libs/feature/map/src/lib/utils/map-utils.service.ts +2 -3
- package/src/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.ts +36 -19
- package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.html +6 -2
- package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.ts +11 -0
- package/src/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.ts +59 -12
- package/src/libs/feature/search/src/lib/results-table/results-table-container.component.html +1 -0
- package/src/libs/feature/search/src/lib/results-table/results-table-container.component.ts +5 -0
- package/src/libs/ui/elements/src/lib/api-card/api-card.component.html +29 -29
- package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.html +14 -20
- package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.ts +0 -10
- package/src/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.html +1 -1
- package/src/libs/ui/elements/src/lib/ui-elements.module.ts +2 -1
- package/src/libs/ui/elements/src/lib/user-preview/user-preview.component.html +1 -1
- package/src/libs/ui/inputs/src/lib/image-input/image-input.component.html +1 -1
- package/src/libs/ui/inputs/src/lib/image-input/image-input.component.ts +7 -2
- package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.css +31 -0
- package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.html +15 -0
- package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.ts +38 -0
- package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.css +0 -0
- package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.html +17 -0
- package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.ts +22 -0
- package/src/libs/ui/search/src/lib/results-table/results-table.component.html +9 -0
- package/src/libs/ui/search/src/lib/results-table/results-table.component.ts +26 -12
- package/src/libs/ui/widgets/src/index.ts +1 -0
- package/src/libs/ui/widgets/src/lib/popover/popover.component.css +0 -0
- package/src/libs/ui/widgets/src/lib/popover/popover.component.html +3 -0
- package/src/libs/ui/widgets/src/lib/popover/popover.component.ts +85 -0
- package/tailwind.base.css +2 -1
- package/translations/de.json +58 -32
- package/translations/en.json +34 -8
- package/translations/es.json +31 -5
- package/translations/fr.json +34 -8
- package/translations/it.json +32 -6
- package/translations/nl.json +31 -5
- package/translations/pt.json +31 -5
- package/translations/sk.json +32 -6
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.mjs +0 -2
- package/esm2022/libs/feature/editor/src/lib/models/fields.model.mjs +0 -2
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.d.ts +0 -26
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/models/fields.model.d.ts +0 -15
- package/libs/feature/editor/src/lib/models/fields.model.d.ts.map +0 -1
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.ts +0 -43
- package/src/libs/feature/editor/src/lib/models/fields.model.ts +0 -29
|
@@ -165,8 +165,19 @@
|
|
|
165
165
|
"downloads.format.unknown": "inconnu",
|
|
166
166
|
"downloads.wfs.featuretype.not.found": "La couche n'a pas été retrouvée",
|
|
167
167
|
"dropFile": "Faites glisser votre fichier",
|
|
168
|
-
"editor.record.form.
|
|
169
|
-
"editor.record.form.
|
|
168
|
+
"editor.record.form.bottomButtons.comeBackLater": "Revenir plus tard",
|
|
169
|
+
"editor.record.form.bottomButtons.next": "Suivant",
|
|
170
|
+
"editor.record.form.bottomButtons.previous": "Précédent",
|
|
171
|
+
"editor.record.form.field.abstract": "Résumé",
|
|
172
|
+
"editor.record.form.field.keywords": "Mots-clés",
|
|
173
|
+
"editor.record.form.field.license": "Licence",
|
|
174
|
+
"editor.record.form.field.overviews": "Aperçus",
|
|
175
|
+
"editor.record.form.field.recordUpdated": "Date de dernière révision",
|
|
176
|
+
"editor.record.form.field.resourceUpdated": "Date de dernière révision",
|
|
177
|
+
"editor.record.form.field.temporalExtents": "Étendue temporelle",
|
|
178
|
+
"editor.record.form.field.title": "Titre",
|
|
179
|
+
"editor.record.form.field.uniqueIdentifier": "Identifiant unique",
|
|
180
|
+
"editor.record.form.field.updateFrequency": "Fréquence de mise à jour",
|
|
170
181
|
"editor.record.form.license.cc-by": "",
|
|
171
182
|
"editor.record.form.license.cc-by-sa": "",
|
|
172
183
|
"editor.record.form.license.cc-zero": "",
|
|
@@ -176,13 +187,26 @@
|
|
|
176
187
|
"editor.record.form.license.odc-by": "",
|
|
177
188
|
"editor.record.form.license.pddl": "",
|
|
178
189
|
"editor.record.form.license.unknown": "Non-reconnue ou absente",
|
|
179
|
-
"editor.record.form.
|
|
180
|
-
"editor.record.form.
|
|
190
|
+
"editor.record.form.page.accessAndContact": "Acces et contact",
|
|
191
|
+
"editor.record.form.page.description": "Description de la ressource",
|
|
192
|
+
"editor.record.form.page.ressources": "Ressources",
|
|
193
|
+
"editor.record.form.section.about.description": "Ces informations concernent la donnée.",
|
|
194
|
+
"editor.record.form.section.about.label": "A propos de la ressource",
|
|
195
|
+
"editor.record.form.section.annexes.label": "Annexes",
|
|
196
|
+
"editor.record.form.section.associatedResources.description": "Déposez les jeux de données associées à cette fiche de métadonnée.",
|
|
197
|
+
"editor.record.form.section.associatedResources.label": "Ressources associees",
|
|
198
|
+
"editor.record.form.section.classification.description": "La classification a un impact sur la recherche du jeux de données.",
|
|
199
|
+
"editor.record.form.section.classification.label": "Classification",
|
|
200
|
+
"editor.record.form.section.dataManagers.description": "Cette information concerne la donnée.",
|
|
201
|
+
"editor.record.form.section.dataManagers.label": "Responsables de la donnee",
|
|
202
|
+
"editor.record.form.section.dataPointOfContact.description": "Cette information concerne la fiche de métadonnée.",
|
|
203
|
+
"editor.record.form.section.dataPointOfContact.label": "Point de contact de la metadonee",
|
|
204
|
+
"editor.record.form.section.geographicalCoverage.label": "Couverture geographique",
|
|
205
|
+
"editor.record.form.section.useAndAccessConditions.label": "Conditions d'acces et usage",
|
|
181
206
|
"editor.record.form.temporalExtents.addDate": "Date déterminée",
|
|
182
207
|
"editor.record.form.temporalExtents.addRange": "Période de temps",
|
|
183
208
|
"editor.record.form.temporalExtents.date": "Date concernée",
|
|
184
209
|
"editor.record.form.temporalExtents.range": "Période concernée",
|
|
185
|
-
"editor.record.form.updateFrequency": "Fréquence de mise à jour",
|
|
186
210
|
"editor.record.form.updateFrequency.planned": "Ces données doivent être mise à jour régulièrement.",
|
|
187
211
|
"editor.record.loadError.body": "",
|
|
188
212
|
"editor.record.loadError.closeMessage": "",
|
|
@@ -197,6 +221,7 @@
|
|
|
197
221
|
"editor.record.saveStatus.draftWithChangesPending": "Brouillon enregistré - modifications en cours",
|
|
198
222
|
"editor.record.saveStatus.recordUpToDate": "La fiche publiée est à jour",
|
|
199
223
|
"editor.record.upToDate": "",
|
|
224
|
+
"editor.sidebar.menu.editor": "",
|
|
200
225
|
"externalviewer.dataset.unnamed": "Couche du datahub",
|
|
201
226
|
"facets.block.title.OrgForResource": "Organisation",
|
|
202
227
|
"facets.block.title.availableInServices": "Disponible pour",
|
|
@@ -265,8 +290,8 @@
|
|
|
265
290
|
"organisations.sortBy.nameDesc": "Nom Z → A",
|
|
266
291
|
"organisations.sortBy.recordCountAsc": "Données 0 → 9",
|
|
267
292
|
"organisations.sortBy.recordCountDesc": "Données 9 → 0",
|
|
268
|
-
"organization.details.lastPublishedDatasets": "
|
|
269
|
-
"organization.details.lastPublishedDatasets.searchAllButton": "
|
|
293
|
+
"organization.details.lastPublishedDatasets": "",
|
|
294
|
+
"organization.details.lastPublishedDatasets.searchAllButton": "",
|
|
270
295
|
"organization.details.mailContact": "Contacter par mail",
|
|
271
296
|
"organization.header.recordCount": "{count, plural, =0{donnée} one{donnée} other{données}}",
|
|
272
297
|
"pagination.nextPage": "Page suivante",
|
|
@@ -274,6 +299,7 @@
|
|
|
274
299
|
"pagination.pageOf": "sur",
|
|
275
300
|
"previous": "précédent",
|
|
276
301
|
"record.action.download": "Télécharger",
|
|
302
|
+
"record.action.duplicate": "Dupliquer",
|
|
277
303
|
"record.action.view": "Voir",
|
|
278
304
|
"record.externalViewer.open": "Ouvrir dans le visualiseur externe",
|
|
279
305
|
"record.metadata.about": "Description",
|
|
@@ -404,7 +430,7 @@
|
|
|
404
430
|
"search.filters.resourceType": "Type de ressource",
|
|
405
431
|
"search.filters.standard": "Standard",
|
|
406
432
|
"search.filters.title": "Affiner votre recherche",
|
|
407
|
-
"search.filters.topic": "
|
|
433
|
+
"search.filters.topic": "Thèmes",
|
|
408
434
|
"search.filters.useSpatialFilter": "Mettre en avant les résultats sur la zone d'intérêt",
|
|
409
435
|
"search.filters.useSpatialFilterHelp": "Si cette option est activée, les fiches portant sur la zone d'intérêt du catalogue seront montrées en premier; les fiches en dehors de cette zone n'apparaîtront pas dans les résultats.",
|
|
410
436
|
"share.tab.permalink": "Partager",
|
|
@@ -165,8 +165,19 @@
|
|
|
165
165
|
"downloads.format.unknown": "sconosciuto",
|
|
166
166
|
"downloads.wfs.featuretype.not.found": "Il layer non è stato trovato",
|
|
167
167
|
"dropFile": "Trascina il suo file",
|
|
168
|
-
"editor.record.form.
|
|
169
|
-
"editor.record.form.
|
|
168
|
+
"editor.record.form.bottomButtons.comeBackLater": "",
|
|
169
|
+
"editor.record.form.bottomButtons.next": "",
|
|
170
|
+
"editor.record.form.bottomButtons.previous": "",
|
|
171
|
+
"editor.record.form.field.abstract": "",
|
|
172
|
+
"editor.record.form.field.keywords": "",
|
|
173
|
+
"editor.record.form.field.license": "Licenza",
|
|
174
|
+
"editor.record.form.field.overviews": "",
|
|
175
|
+
"editor.record.form.field.recordUpdated": "",
|
|
176
|
+
"editor.record.form.field.resourceUpdated": "",
|
|
177
|
+
"editor.record.form.field.temporalExtents": "",
|
|
178
|
+
"editor.record.form.field.title": "",
|
|
179
|
+
"editor.record.form.field.uniqueIdentifier": "",
|
|
180
|
+
"editor.record.form.field.updateFrequency": "",
|
|
170
181
|
"editor.record.form.license.cc-by": "",
|
|
171
182
|
"editor.record.form.license.cc-by-sa": "",
|
|
172
183
|
"editor.record.form.license.cc-zero": "",
|
|
@@ -176,13 +187,26 @@
|
|
|
176
187
|
"editor.record.form.license.odc-by": "",
|
|
177
188
|
"editor.record.form.license.pddl": "",
|
|
178
189
|
"editor.record.form.license.unknown": "Non riconosciuta o assente",
|
|
179
|
-
"editor.record.form.
|
|
180
|
-
"editor.record.form.
|
|
190
|
+
"editor.record.form.page.accessAndContact": "",
|
|
191
|
+
"editor.record.form.page.description": "",
|
|
192
|
+
"editor.record.form.page.ressources": "",
|
|
193
|
+
"editor.record.form.section.about.description": "",
|
|
194
|
+
"editor.record.form.section.about.label": "",
|
|
195
|
+
"editor.record.form.section.annexes.label": "",
|
|
196
|
+
"editor.record.form.section.associatedResources.description": "",
|
|
197
|
+
"editor.record.form.section.associatedResources.label": "",
|
|
198
|
+
"editor.record.form.section.classification.description": "",
|
|
199
|
+
"editor.record.form.section.classification.label": "",
|
|
200
|
+
"editor.record.form.section.dataManagers.description": "",
|
|
201
|
+
"editor.record.form.section.dataManagers.label": "",
|
|
202
|
+
"editor.record.form.section.dataPointOfContact.description": "",
|
|
203
|
+
"editor.record.form.section.dataPointOfContact.label": "",
|
|
204
|
+
"editor.record.form.section.geographicalCoverage.label": "",
|
|
205
|
+
"editor.record.form.section.useAndAccessConditions.label": "",
|
|
181
206
|
"editor.record.form.temporalExtents.addDate": "",
|
|
182
207
|
"editor.record.form.temporalExtents.addRange": "",
|
|
183
208
|
"editor.record.form.temporalExtents.date": "",
|
|
184
209
|
"editor.record.form.temporalExtents.range": "",
|
|
185
|
-
"editor.record.form.updateFrequency": "",
|
|
186
210
|
"editor.record.form.updateFrequency.planned": "",
|
|
187
211
|
"editor.record.loadError.body": "",
|
|
188
212
|
"editor.record.loadError.closeMessage": "",
|
|
@@ -197,6 +221,7 @@
|
|
|
197
221
|
"editor.record.saveStatus.draftWithChangesPending": "",
|
|
198
222
|
"editor.record.saveStatus.recordUpToDate": "",
|
|
199
223
|
"editor.record.upToDate": "",
|
|
224
|
+
"editor.sidebar.menu.editor": "",
|
|
200
225
|
"externalviewer.dataset.unnamed": "Layer del datahub",
|
|
201
226
|
"facets.block.title.OrgForResource": "Organizzazione",
|
|
202
227
|
"facets.block.title.availableInServices": "Disponibile per",
|
|
@@ -274,6 +299,7 @@
|
|
|
274
299
|
"pagination.pageOf": "di",
|
|
275
300
|
"previous": "precedente",
|
|
276
301
|
"record.action.download": "Scarica",
|
|
302
|
+
"record.action.duplicate": "",
|
|
277
303
|
"record.action.view": "Visualizza",
|
|
278
304
|
"record.externalViewer.open": "Apri nell'visualizzatore esterno",
|
|
279
305
|
"record.metadata.about": "Descrizione",
|
|
@@ -404,7 +430,7 @@
|
|
|
404
430
|
"search.filters.resourceType": "Tipo di risorsa",
|
|
405
431
|
"search.filters.standard": "Standard",
|
|
406
432
|
"search.filters.title": "Affina la sua ricerca",
|
|
407
|
-
"search.filters.topic": "
|
|
433
|
+
"search.filters.topic": "Argomenti",
|
|
408
434
|
"search.filters.useSpatialFilter": "Evidenzia i risultati nell'area di interesse",
|
|
409
435
|
"search.filters.useSpatialFilterHelp": "Se attivata, le schede relative all'area di interesse del catalogo saranno mostrate per prime; le schede al di fuori di questa area non appariranno nei risultati.",
|
|
410
436
|
"share.tab.permalink": "Condividere",
|
|
@@ -165,8 +165,19 @@
|
|
|
165
165
|
"downloads.format.unknown": "",
|
|
166
166
|
"downloads.wfs.featuretype.not.found": "",
|
|
167
167
|
"dropFile": "",
|
|
168
|
-
"editor.record.form.
|
|
169
|
-
"editor.record.form.
|
|
168
|
+
"editor.record.form.bottomButtons.comeBackLater": "",
|
|
169
|
+
"editor.record.form.bottomButtons.next": "",
|
|
170
|
+
"editor.record.form.bottomButtons.previous": "",
|
|
171
|
+
"editor.record.form.field.abstract": "",
|
|
172
|
+
"editor.record.form.field.keywords": "",
|
|
173
|
+
"editor.record.form.field.license": "",
|
|
174
|
+
"editor.record.form.field.overviews": "",
|
|
175
|
+
"editor.record.form.field.recordUpdated": "",
|
|
176
|
+
"editor.record.form.field.resourceUpdated": "",
|
|
177
|
+
"editor.record.form.field.temporalExtents": "",
|
|
178
|
+
"editor.record.form.field.title": "",
|
|
179
|
+
"editor.record.form.field.uniqueIdentifier": "",
|
|
180
|
+
"editor.record.form.field.updateFrequency": "",
|
|
170
181
|
"editor.record.form.license.cc-by": "",
|
|
171
182
|
"editor.record.form.license.cc-by-sa": "",
|
|
172
183
|
"editor.record.form.license.cc-zero": "",
|
|
@@ -176,13 +187,26 @@
|
|
|
176
187
|
"editor.record.form.license.odc-by": "",
|
|
177
188
|
"editor.record.form.license.pddl": "",
|
|
178
189
|
"editor.record.form.license.unknown": "",
|
|
179
|
-
"editor.record.form.
|
|
180
|
-
"editor.record.form.
|
|
190
|
+
"editor.record.form.page.accessAndContact": "",
|
|
191
|
+
"editor.record.form.page.description": "",
|
|
192
|
+
"editor.record.form.page.ressources": "",
|
|
193
|
+
"editor.record.form.section.about.description": "",
|
|
194
|
+
"editor.record.form.section.about.label": "",
|
|
195
|
+
"editor.record.form.section.annexes.label": "",
|
|
196
|
+
"editor.record.form.section.associatedResources.description": "",
|
|
197
|
+
"editor.record.form.section.associatedResources.label": "",
|
|
198
|
+
"editor.record.form.section.classification.description": "",
|
|
199
|
+
"editor.record.form.section.classification.label": "",
|
|
200
|
+
"editor.record.form.section.dataManagers.description": "",
|
|
201
|
+
"editor.record.form.section.dataManagers.label": "",
|
|
202
|
+
"editor.record.form.section.dataPointOfContact.description": "",
|
|
203
|
+
"editor.record.form.section.dataPointOfContact.label": "",
|
|
204
|
+
"editor.record.form.section.geographicalCoverage.label": "",
|
|
205
|
+
"editor.record.form.section.useAndAccessConditions.label": "",
|
|
181
206
|
"editor.record.form.temporalExtents.addDate": "",
|
|
182
207
|
"editor.record.form.temporalExtents.addRange": "",
|
|
183
208
|
"editor.record.form.temporalExtents.date": "",
|
|
184
209
|
"editor.record.form.temporalExtents.range": "",
|
|
185
|
-
"editor.record.form.updateFrequency": "",
|
|
186
210
|
"editor.record.form.updateFrequency.planned": "",
|
|
187
211
|
"editor.record.loadError.body": "",
|
|
188
212
|
"editor.record.loadError.closeMessage": "",
|
|
@@ -197,6 +221,7 @@
|
|
|
197
221
|
"editor.record.saveStatus.draftWithChangesPending": "",
|
|
198
222
|
"editor.record.saveStatus.recordUpToDate": "",
|
|
199
223
|
"editor.record.upToDate": "",
|
|
224
|
+
"editor.sidebar.menu.editor": "",
|
|
200
225
|
"externalviewer.dataset.unnamed": "",
|
|
201
226
|
"facets.block.title.OrgForResource": "",
|
|
202
227
|
"facets.block.title.availableInServices": "",
|
|
@@ -274,6 +299,7 @@
|
|
|
274
299
|
"pagination.pageOf": "",
|
|
275
300
|
"previous": "",
|
|
276
301
|
"record.action.download": "",
|
|
302
|
+
"record.action.duplicate": "",
|
|
277
303
|
"record.action.view": "",
|
|
278
304
|
"record.externalViewer.open": "",
|
|
279
305
|
"record.metadata.about": "",
|
|
@@ -165,8 +165,19 @@
|
|
|
165
165
|
"downloads.format.unknown": "",
|
|
166
166
|
"downloads.wfs.featuretype.not.found": "",
|
|
167
167
|
"dropFile": "",
|
|
168
|
-
"editor.record.form.
|
|
169
|
-
"editor.record.form.
|
|
168
|
+
"editor.record.form.bottomButtons.comeBackLater": "",
|
|
169
|
+
"editor.record.form.bottomButtons.next": "",
|
|
170
|
+
"editor.record.form.bottomButtons.previous": "",
|
|
171
|
+
"editor.record.form.field.abstract": "",
|
|
172
|
+
"editor.record.form.field.keywords": "",
|
|
173
|
+
"editor.record.form.field.license": "",
|
|
174
|
+
"editor.record.form.field.overviews": "",
|
|
175
|
+
"editor.record.form.field.recordUpdated": "",
|
|
176
|
+
"editor.record.form.field.resourceUpdated": "",
|
|
177
|
+
"editor.record.form.field.temporalExtents": "",
|
|
178
|
+
"editor.record.form.field.title": "",
|
|
179
|
+
"editor.record.form.field.uniqueIdentifier": "",
|
|
180
|
+
"editor.record.form.field.updateFrequency": "",
|
|
170
181
|
"editor.record.form.license.cc-by": "",
|
|
171
182
|
"editor.record.form.license.cc-by-sa": "",
|
|
172
183
|
"editor.record.form.license.cc-zero": "",
|
|
@@ -176,13 +187,26 @@
|
|
|
176
187
|
"editor.record.form.license.odc-by": "",
|
|
177
188
|
"editor.record.form.license.pddl": "",
|
|
178
189
|
"editor.record.form.license.unknown": "",
|
|
179
|
-
"editor.record.form.
|
|
180
|
-
"editor.record.form.
|
|
190
|
+
"editor.record.form.page.accessAndContact": "",
|
|
191
|
+
"editor.record.form.page.description": "",
|
|
192
|
+
"editor.record.form.page.ressources": "",
|
|
193
|
+
"editor.record.form.section.about.description": "",
|
|
194
|
+
"editor.record.form.section.about.label": "",
|
|
195
|
+
"editor.record.form.section.annexes.label": "",
|
|
196
|
+
"editor.record.form.section.associatedResources.description": "",
|
|
197
|
+
"editor.record.form.section.associatedResources.label": "",
|
|
198
|
+
"editor.record.form.section.classification.description": "",
|
|
199
|
+
"editor.record.form.section.classification.label": "",
|
|
200
|
+
"editor.record.form.section.dataManagers.description": "",
|
|
201
|
+
"editor.record.form.section.dataManagers.label": "",
|
|
202
|
+
"editor.record.form.section.dataPointOfContact.description": "",
|
|
203
|
+
"editor.record.form.section.dataPointOfContact.label": "",
|
|
204
|
+
"editor.record.form.section.geographicalCoverage.label": "",
|
|
205
|
+
"editor.record.form.section.useAndAccessConditions.label": "",
|
|
181
206
|
"editor.record.form.temporalExtents.addDate": "",
|
|
182
207
|
"editor.record.form.temporalExtents.addRange": "",
|
|
183
208
|
"editor.record.form.temporalExtents.date": "",
|
|
184
209
|
"editor.record.form.temporalExtents.range": "",
|
|
185
|
-
"editor.record.form.updateFrequency": "",
|
|
186
210
|
"editor.record.form.updateFrequency.planned": "",
|
|
187
211
|
"editor.record.loadError.body": "",
|
|
188
212
|
"editor.record.loadError.closeMessage": "",
|
|
@@ -197,6 +221,7 @@
|
|
|
197
221
|
"editor.record.saveStatus.draftWithChangesPending": "",
|
|
198
222
|
"editor.record.saveStatus.recordUpToDate": "",
|
|
199
223
|
"editor.record.upToDate": "",
|
|
224
|
+
"editor.sidebar.menu.editor": "",
|
|
200
225
|
"externalviewer.dataset.unnamed": "",
|
|
201
226
|
"facets.block.title.OrgForResource": "",
|
|
202
227
|
"facets.block.title.availableInServices": "",
|
|
@@ -274,6 +299,7 @@
|
|
|
274
299
|
"pagination.pageOf": "",
|
|
275
300
|
"previous": "",
|
|
276
301
|
"record.action.download": "",
|
|
302
|
+
"record.action.duplicate": "",
|
|
277
303
|
"record.action.view": "",
|
|
278
304
|
"record.externalViewer.open": "",
|
|
279
305
|
"record.metadata.about": "",
|