geonetwork-ui 2.10.0-dev.270411d14 → 2.10.0-dev.2be368c45
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/fesm2022/geonetwork-ui.mjs +1277 -6185
- package/fesm2022/geonetwork-ui.mjs.map +1 -1
- package/index.d.ts +181 -165
- package/index.d.ts.map +1 -1
- package/package.json +23 -33
- package/src/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.ts +9 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/eu.dcat-ap.records.ts +2 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +22 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.reuse+ongules.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.reuse+roilaye.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/georhena.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/metadata-for-i18n.records.ts +2 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/metawal.records.ts +22 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/opendataswiss.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/sextant.records.ts +2 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/vlaanderen.dcat-ap.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/wallonie.records.reuse.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/gn4/atomic-operations.ts +48 -7
- package/src/libs/api/metadata-converter/src/lib/gn4/gn4.converter.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +6 -5
- package/src/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.ts +2 -2
- package/src/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.ts +4 -0
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.ts +13 -0
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.ts +45 -1
- package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +13 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +40 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +47 -1
- package/src/libs/api/repository/src/lib/gn4/auth/auth.service.ts +4 -4
- package/src/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.ts +2 -2
- package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +12 -8
- package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.ts +1 -1
- package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.ts +1 -1
- package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +11 -22
- package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +12 -0
- package/src/libs/common/domain/src/lib/model/thesaurus/thesaurus.model.ts +2 -1
- package/src/libs/common/domain/src/lib/repository/records-repository.interface.ts +2 -1
- package/src/libs/common/fixtures/src/lib/records.fixtures.ts +57 -0
- package/src/libs/feature/catalog/src/lib/sources/sources.service.ts +5 -2
- package/src/libs/feature/editor/src/index.ts +1 -0
- package/src/libs/feature/editor/src/lib/+state/editor.actions.ts +4 -1
- package/src/libs/feature/editor/src/lib/+state/editor.effects.ts +26 -19
- package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +5 -1
- package/src/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.ts +0 -2
- package/src/libs/feature/editor/src/lib/components/contact-details/contact-details-form.component.html +7 -6
- package/src/libs/feature/editor/src/lib/components/contact-details/contact-details-form.component.ts +10 -8
- package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.html +5 -14
- package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.ts +3 -28
- package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.html +5 -5
- package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.ts +2 -1
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/field-focus.directive.ts +4 -1
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.ts +7 -7
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.ts +1 -1
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.ts +12 -5
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.html +4 -4
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.ts +7 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.html +6 -2
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.ts +3 -1
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.css +0 -34
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +27 -16
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +11 -0
- package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.css +35 -0
- package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.html +18 -5
- package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.ts +76 -19
- package/src/libs/feature/editor/src/lib/expressions.ts +380 -8
- package/src/libs/feature/editor/src/lib/fields.config.ts +295 -291
- package/src/libs/feature/editor/src/lib/models/editor-config.model.ts +6 -3
- package/src/libs/feature/editor/src/lib/services/editor.service.ts +8 -12
- package/src/libs/feature/map/src/lib/utils/map-utils.service.ts +33 -0
- package/src/libs/feature/notify-reuse/src/index.ts +1 -0
- package/src/libs/feature/notify-reuse/src/lib/edit-delete-reuse-buttons/edit-delete-reuse-buttons.component.css +0 -0
- package/src/libs/feature/notify-reuse/src/lib/edit-delete-reuse-buttons/edit-delete-reuse-buttons.component.html +23 -0
- package/src/libs/feature/notify-reuse/src/lib/edit-delete-reuse-buttons/edit-delete-reuse-buttons.component.ts +114 -0
- package/src/libs/feature/notify-reuse/src/lib/notify-reuse-form/notify-reuse-form.component.html +111 -1
- package/src/libs/feature/notify-reuse/src/lib/notify-reuse-form/notify-reuse-form.component.ts +211 -8
- package/src/libs/feature/notify-reuse/src/lib/utils/url.ts +16 -0
- package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +9 -1
- package/src/libs/feature/search/src/lib/results-table/results-table-container.component.ts +10 -5
- package/src/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.ts +2 -2
- package/src/libs/ui/dataviz/src/index.ts +0 -1
- package/src/libs/ui/elements/src/index.ts +1 -0
- package/src/libs/ui/elements/src/lib/contact-details/contact-details.component.html +48 -56
- package/src/libs/ui/elements/src/lib/external-link-card/external-link-card.component.html +2 -1
- package/src/libs/ui/elements/src/lib/external-link-card/external-link-card.component.ts +2 -2
- package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.css +13 -0
- package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.html +13 -3
- package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.ts +43 -6
- package/src/libs/ui/elements/src/lib/keyword-badge/keyword-badge.component.html +14 -0
- package/src/libs/ui/elements/src/lib/keyword-badge/keyword-badge.component.ts +85 -0
- package/src/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.ts +2 -2
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.css +5 -0
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +4 -7
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.ts +2 -2
- package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.html +4 -5
- package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.ts +4 -0
- package/src/libs/ui/inputs/src/lib/badge/badge.component.html +33 -26
- package/src/libs/ui/inputs/src/lib/badge/badge.component.ts +9 -0
- package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.ts +2 -2
- package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.html +1 -1
- package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.ts +3 -3
- package/src/libs/ui/inputs/src/lib/text-input/text-input.component.css +0 -3
- package/src/libs/ui/inputs/src/lib/text-input/text-input.component.html +11 -7
- package/src/libs/ui/inputs/src/lib/text-input/text-input.component.ts +56 -30
- package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.html +5 -5
- package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.ts +9 -1
- package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.html +1 -1
- package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.ts +3 -8
- package/src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.html +7 -7
- package/src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.ts +14 -1
- package/src/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.ts +4 -54
- package/src/libs/ui/map/src/lib/map-utils.ts +48 -0
- package/src/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.ts +1 -1
- package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.html +12 -8
- package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.ts +3 -1
- package/src/libs/ui/search/src/lib/results-table/results-table.component.html +1 -0
- package/src/libs/ui/widgets/src/lib/popover/popover.component.ts +7 -1
- package/src/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.html +1 -1
- package/src/libs/util/app-config/src/lib/app-config.ts +21 -9
- package/src/libs/util/data-fetcher/src/lib/readers/base-file.ts +1 -2
- package/src/libs/util/data-fetcher/src/lib/readers/wfs.ts +6 -3
- package/src/libs/util/i18n/src/index.ts +0 -1
- package/src/libs/util/i18n/src/lib/i18n.constants.ts +17 -11
- package/src/libs/util/i18n/src/lib/i18n.interceptor.ts +2 -2
- package/src/libs/util/i18n/src/lib/i18n.providers.ts +14 -17
- package/src/libs/util/i18n/src/lib/test.translate.loader.ts +48 -0
- package/src/libs/util/shared/src/lib/links/link-utils.ts +22 -0
- package/src/libs/util/shared/src/lib/services/date.service.ts +3 -3
- package/src/libs/util/shared/src/lib/utils/geojson.ts +58 -1
- package/style.css +0 -1
- package/tailwind.base.css +9 -0
- package/translations/de.json +84 -31
- package/translations/en.json +94 -41
- package/translations/es.json +58 -5
- package/translations/fr.json +91 -38
- package/translations/it.json +85 -32
- package/translations/nl.json +57 -4
- package/translations/pt.json +58 -5
- package/translations/sk.json +58 -5
- package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.css +0 -3
package/translations/en.json
CHANGED
|
@@ -89,6 +89,10 @@
|
|
|
89
89
|
"domain.contact.role.stakeholder": "Stakeholder",
|
|
90
90
|
"domain.contact.role.unspecified": "Unspecified",
|
|
91
91
|
"domain.contact.role.user": "User",
|
|
92
|
+
"domain.record.keywordType.other": "Keywords",
|
|
93
|
+
"domain.record.keywordType.place": "Place",
|
|
94
|
+
"domain.record.keywordType.temporal": "Temporal",
|
|
95
|
+
"domain.record.keywordType.theme": "Theme",
|
|
92
96
|
"domain.record.status.completed": "Completed",
|
|
93
97
|
"domain.record.status.deprecated": "Deprecated",
|
|
94
98
|
"domain.record.status.ongoing": "Ongoing",
|
|
@@ -115,18 +119,39 @@
|
|
|
115
119
|
"domain.record.updateFrequency.week": "{count, plural, =0{0 times} one{Once} other{{count} times}} per week",
|
|
116
120
|
"domain.record.updateFrequency.weekly": "Data is updated on a weekly basis",
|
|
117
121
|
"domain.record.updateFrequency.year": "{count, plural, =0{0 times} one{Once} other{{count} times}} per year",
|
|
122
|
+
"downloads.format.csv": "csv",
|
|
123
|
+
"downloads.format.dxf": "dxf",
|
|
124
|
+
"downloads.format.excel": "excel",
|
|
125
|
+
"downloads.format.fgb": "fgb",
|
|
126
|
+
"downloads.format.geojson": "geojson",
|
|
127
|
+
"downloads.format.gml": "gml",
|
|
128
|
+
"downloads.format.gpkg": "gpkg",
|
|
129
|
+
"downloads.format.html": "html",
|
|
130
|
+
"downloads.format.jpg": "jpg",
|
|
131
|
+
"downloads.format.json": "json",
|
|
132
|
+
"downloads.format.jsonfg": "jsonfg",
|
|
133
|
+
"downloads.format.kml": "kml",
|
|
134
|
+
"downloads.format.pdf": "pdf",
|
|
135
|
+
"downloads.format.png": "png",
|
|
136
|
+
"downloads.format.postgis": "postgis",
|
|
137
|
+
"downloads.format.shp": "shp",
|
|
138
|
+
"downloads.format.svg": "svg",
|
|
139
|
+
"downloads.format.tiff": "tiff",
|
|
118
140
|
"downloads.format.unknown": "Unknown",
|
|
141
|
+
"downloads.format.webp": "webp",
|
|
142
|
+
"downloads.format.xml": "xml",
|
|
143
|
+
"downloads.format.zip": "zip",
|
|
119
144
|
"downloads.wfs.featuretype.not.found": "The layer was not found",
|
|
120
145
|
"dropFile": "Drop file",
|
|
121
|
-
"editor.new.record.title": "My dataset",
|
|
146
|
+
"editor.new.record.title": "My {recordKind, select, dataset{dataset} service{service} reuse{reuse} other{record}}",
|
|
122
147
|
"editor.record.delete.confirmation.cancelText": "Cancel",
|
|
123
148
|
"editor.record.delete.confirmation.confirmText": "Delete",
|
|
124
|
-
"editor.record.delete.confirmation.message": "Are you sure you want to delete this dataset?",
|
|
125
|
-
"editor.record.delete.confirmation.title": "Delete dataset?",
|
|
126
|
-
"editor.record.deleteError.body": "The dataset could not be deleted:",
|
|
149
|
+
"editor.record.delete.confirmation.message": "Are you sure you want to delete this {recordKind, select, dataset{dataset} service{service} reuse{reuse} other{record}}?",
|
|
150
|
+
"editor.record.delete.confirmation.title": "Delete {recordKind, select, dataset{dataset} service{service} reuse{reuse} other{record}}?",
|
|
151
|
+
"editor.record.deleteError.body": "The {recordKind, select, dataset{dataset} service{service} reuse{reuse} other{record}} could not be deleted:",
|
|
127
152
|
"editor.record.deleteError.closeMessage": "Understood",
|
|
128
|
-
"editor.record.deleteError.title": "Error deleting dataset",
|
|
129
|
-
"editor.record.deleteSuccess.body": "The dataset was successfully deleted!",
|
|
153
|
+
"editor.record.deleteError.title": "Error deleting {recordKind, select, dataset{dataset} service{service} reuse{reuse} other{record}}",
|
|
154
|
+
"editor.record.deleteSuccess.body": "The {recordKind, select, dataset{dataset} service{service} reuse{reuse} other{record}} was successfully deleted!",
|
|
130
155
|
"editor.record.deleteSuccess.title": "Delete success",
|
|
131
156
|
"editor.record.error.back": "Go back to the catalog",
|
|
132
157
|
"editor.record.error.explanation": "You might not have access to this record,<br> Or this link might not be valid.",
|
|
@@ -147,17 +172,17 @@
|
|
|
147
172
|
"editor.record.form.constraint.not.known": "The conditions are unknown",
|
|
148
173
|
"editor.record.form.constraint.otherConstraints": "Other constraints",
|
|
149
174
|
"editor.record.form.constraint.securityConstraints": "Security constraints",
|
|
150
|
-
"editor.record.form.draft.updateAlert": "Since you created this draft, the dataset has been updated on { date } by { user }. Publishing your draft might erase their edits. To avoid this, you need to either cancel your changes or knowingly publish your own version.",
|
|
175
|
+
"editor.record.form.draft.updateAlert": "Since you created this draft, the {recordKind, select, dataset{dataset} service{service} reuse{reuse} other{record}} has been updated on { date } by { user }. Publishing your draft might erase their edits. To avoid this, you need to either cancel your changes or knowingly publish your own version.",
|
|
151
176
|
"editor.record.form.field.abstract": "Abstract",
|
|
152
177
|
"editor.record.form.field.constraintsShortcuts": "",
|
|
153
|
-
"editor.record.form.field.contactDetails.email": "
|
|
178
|
+
"editor.record.form.field.contactDetails.email": "Email",
|
|
154
179
|
"editor.record.form.field.contactDetails.email.placeholder": "example@domainname.com",
|
|
155
|
-
"editor.record.form.field.contactDetails.firstName": "
|
|
180
|
+
"editor.record.form.field.contactDetails.firstName": "First name",
|
|
156
181
|
"editor.record.form.field.contactDetails.firstName.placeholder": "First name",
|
|
157
|
-
"editor.record.form.field.contactDetails.lastName": "
|
|
182
|
+
"editor.record.form.field.contactDetails.lastName": "Last name",
|
|
158
183
|
"editor.record.form.field.contactDetails.lastName.placeholder": "Last name",
|
|
159
|
-
"editor.record.form.field.contactDetails.organization": "
|
|
160
|
-
"editor.record.form.field.contactDetails.organization.placeholder": "
|
|
184
|
+
"editor.record.form.field.contactDetails.organization": "Organization",
|
|
185
|
+
"editor.record.form.field.contactDetails.organization.placeholder": "Organization",
|
|
161
186
|
"editor.record.form.field.contacts": "Point of contact - Email",
|
|
162
187
|
"editor.record.form.field.contacts.noContact": "Please provide at least one point of contact.",
|
|
163
188
|
"editor.record.form.field.contacts.placeholder": "Choose a contact",
|
|
@@ -188,9 +213,10 @@
|
|
|
188
213
|
"editor.record.form.field.otherConstraints": "Other constraint",
|
|
189
214
|
"editor.record.form.field.overviews": "Overview",
|
|
190
215
|
"editor.record.form.field.recordUpdated": "Record updated",
|
|
191
|
-
"editor.record.form.field.resourceCreated": "Dataset created",
|
|
216
|
+
"editor.record.form.field.resourceCreated": "{recordKind, select, dataset{Dataset} service{Service} reuse{Reuse} other{Record}} created",
|
|
192
217
|
"editor.record.form.field.resourceIdentifier": "Identifier",
|
|
193
|
-
"editor.record.form.field.resourceUpdated": "Dataset updated",
|
|
218
|
+
"editor.record.form.field.resourceUpdated": "{recordKind, select, dataset{Dataset} service{Service} reuse{Reuse} other{Record}} updated",
|
|
219
|
+
"editor.record.form.field.reuseUrl": "URL of the reuse",
|
|
194
220
|
"editor.record.form.field.securityConstraints": "Security constraints",
|
|
195
221
|
"editor.record.form.field.spatialExtents": "Spatial extents",
|
|
196
222
|
"editor.record.form.field.temporalExtents": "Temporal extents",
|
|
@@ -221,22 +247,23 @@
|
|
|
221
247
|
"editor.record.form.multilingual.title": "Translations",
|
|
222
248
|
"editor.record.form.multilingual.validate": "Validate",
|
|
223
249
|
"editor.record.form.page.accessAndContact": "Information for use",
|
|
224
|
-
"editor.record.form.page.description": "Dataset description",
|
|
250
|
+
"editor.record.form.page.description": "{recordKind, select, dataset{Dataset} service{Service} reuse{Reuse} other{Record}} description",
|
|
225
251
|
"editor.record.form.page.resources": "Resources",
|
|
226
|
-
"editor.record.form.section.about.description": "This section describes the dataset",
|
|
227
|
-
"editor.record.form.section.about.label": "About the dataset",
|
|
228
|
-
"editor.record.form.section.annexes.description": "Annexes are optional resources. They are attached to the dataset, and help understand the data (manual, etc.).",
|
|
252
|
+
"editor.record.form.section.about.description": "This section describes the {recordKind, select, dataset{dataset} service{service} reuse{reuse} other{record}}",
|
|
253
|
+
"editor.record.form.section.about.label": "About the {recordKind, select, dataset{dataset} service{service} reuse{reuse} other{record}}",
|
|
254
|
+
"editor.record.form.section.annexes.description": "Annexes are optional resources. They are attached to the {recordKind, select, dataset{dataset} service{service} reuse{reuse} other{record}}, and help understand the data (manual, etc.).",
|
|
229
255
|
"editor.record.form.section.annexes.label": "Annexes",
|
|
230
256
|
"editor.record.form.section.associatedResources.description": "Point out where the data can be found",
|
|
231
257
|
"editor.record.form.section.associatedResources.label": "Associated resources",
|
|
232
|
-
"editor.record.form.section.classification.description": "Appropriate keywords help users find the dataset",
|
|
258
|
+
"editor.record.form.section.classification.description": "Appropriate keywords help users find the {recordKind, select, dataset{dataset} service{service} reuse{reuse} other{record}}",
|
|
233
259
|
"editor.record.form.section.classification.label": "Keywords",
|
|
234
260
|
"editor.record.form.section.dataManagers.description": "The data managers are responsible for the data",
|
|
235
261
|
"editor.record.form.section.dataManagers.label": "Data managers",
|
|
236
262
|
"editor.record.form.section.geographicalCoverage.label": "Geographical coverage",
|
|
263
|
+
"editor.record.form.section.lightPointOfContact.label": "Point of contact",
|
|
237
264
|
"editor.record.form.section.metadataPointOfContact.description": "This information concerns the metadata",
|
|
238
265
|
"editor.record.form.section.metadataPointOfContact.label": "Metadata point of contact",
|
|
239
|
-
"editor.record.form.section.topics.description": "Topics help to better group datasets",
|
|
266
|
+
"editor.record.form.section.topics.description": "Topics help to better group {recordKind, select, dataset{datasets} service{services} reuse{reuses} other{records}}",
|
|
240
267
|
"editor.record.form.section.topics.label": "Topics",
|
|
241
268
|
"editor.record.form.section.useAndAccessConditions.label": "Use and access conditions",
|
|
242
269
|
"editor.record.form.temporalExtents.addDate": "Time instant",
|
|
@@ -253,6 +280,7 @@
|
|
|
253
280
|
"editor.record.form.topics.iso.geoscientificInformation": "Geoscientific Information",
|
|
254
281
|
"editor.record.form.topics.iso.health": "Health",
|
|
255
282
|
"editor.record.form.topics.iso.imageryBaseMapsEarthCover": "Imagery / Base Maps / Earth Cover",
|
|
283
|
+
"editor.record.form.topics.iso.inlandWaters": "Inland Waters",
|
|
256
284
|
"editor.record.form.topics.iso.intelligenceMilitary": "Intelligence / Military",
|
|
257
285
|
"editor.record.form.topics.iso.location": "Location",
|
|
258
286
|
"editor.record.form.topics.iso.oceans": "Oceans",
|
|
@@ -261,19 +289,23 @@
|
|
|
261
289
|
"editor.record.form.topics.iso.structure": "Structure",
|
|
262
290
|
"editor.record.form.topics.iso.transportation": "Transportation",
|
|
263
291
|
"editor.record.form.topics.iso.utilitiesCommunication": "Utilities / Communication",
|
|
264
|
-
"editor.record.form.topics.iso.inlandWaters": "Inland Waters",
|
|
265
292
|
"editor.record.form.topics.placeholder": "Select one or several topics",
|
|
266
|
-
"editor.record.form.updateFrequency.planned": "This dataset is updated regularly",
|
|
293
|
+
"editor.record.form.updateFrequency.planned": "This {recordKind, select, dataset{dataset} service{service} reuse{reuse} other{record}} is updated regularly",
|
|
267
294
|
"editor.record.importFromExternalFile.failure.body": "Failure",
|
|
268
|
-
"editor.record.importFromExternalFile.failure.title": "The
|
|
295
|
+
"editor.record.importFromExternalFile.failure.title": "The import failed: ",
|
|
269
296
|
"editor.record.importFromExternalFile.success.body": "Import successful",
|
|
270
297
|
"editor.record.importFromExternalFile.success.title": "The dataset has been successfully imported.",
|
|
271
|
-
"editor.record.
|
|
298
|
+
"editor.record.light.leave": "Return to the reuse",
|
|
299
|
+
"editor.record.light.save": "Save the reuse",
|
|
300
|
+
"editor.record.light.saveError.body": "The reuse could not be saved:",
|
|
301
|
+
"editor.record.light.saveError.title": "Saving failed",
|
|
302
|
+
"editor.record.light.saveSuccess.body": "The reuse was successfully saved.",
|
|
303
|
+
"editor.record.light.saveSuccess.title": "Reuse saved",
|
|
304
|
+
"editor.record.loadError.body": "The record could not be loaded:",
|
|
272
305
|
"editor.record.loadError.closeMessage": "Understood",
|
|
273
|
-
"editor.record.loadError.title": "Error loading
|
|
274
|
-
"editor.record.lock.harvested": "Datasets harvested from an external catalog are not editable",
|
|
306
|
+
"editor.record.loadError.title": "Error loading record",
|
|
307
|
+
"editor.record.lock.harvested": "{recordKind, select, dataset{Datasets} service{Services} reuse{Reuses} other{Records}} harvested from an external catalog are not editable",
|
|
275
308
|
"editor.record.lock.owner": "You are not an editor of the allowed groups",
|
|
276
|
-
"editor.record.lock.resourceType": "Records of a type other than dataset are not editable",
|
|
277
309
|
"editor.record.multilingual.confirmation.cancelText": "Keep the language(s)",
|
|
278
310
|
"editor.record.multilingual.confirmation.confirmText": "Remove the language(s)",
|
|
279
311
|
"editor.record.multilingual.confirmation.message": "You are about to remove one or several languages, which will delete all of the related translations. Do you want to proceed?",
|
|
@@ -283,31 +315,31 @@
|
|
|
283
315
|
"editor.record.onlineResourceError.closeMessage": "Understood",
|
|
284
316
|
"editor.record.onlineResourceError.title": "Error adding resource",
|
|
285
317
|
"editor.record.placeKeywordWithoutLabel": "Unnamed location",
|
|
286
|
-
"editor.record.publish": "Publish this dataset",
|
|
318
|
+
"editor.record.publish": "Publish this {recordKind, select, dataset{dataset} service{service} reuse{reuse} other{record}}",
|
|
287
319
|
"editor.record.publish.confirmation.cancelText": "Cancel",
|
|
288
320
|
"editor.record.publish.confirmation.confirmText": "Publish",
|
|
289
|
-
"editor.record.publish.confirmation.message": "Since you created this draft, the dataset has been updated on { date } by { user }. Publishing your draft might erase their edits. Do you wish to proceed?",
|
|
290
|
-
"editor.record.publishError.body": "The dataset could not be published:",
|
|
321
|
+
"editor.record.publish.confirmation.message": "Since you created this draft, the {recordKind, select, dataset{dataset} service{service} reuse{reuse} other{record}} has been updated on { date } by { user }. Publishing your draft might erase their edits. Do you wish to proceed?",
|
|
322
|
+
"editor.record.publishError.body": "The {recordKind, select, dataset{dataset} service{service} reuse{reuse} other{record}} could not be published:",
|
|
291
323
|
"editor.record.publishError.closeMessage": "Understood",
|
|
292
|
-
"editor.record.publishError.title": "Error publishing dataset",
|
|
293
|
-
"editor.record.publishSuccess.body": "The dataset was successfully published!",
|
|
324
|
+
"editor.record.publishError.title": "Error publishing {recordKind, select, dataset{dataset} service{service} reuse{reuse} other{record}}",
|
|
325
|
+
"editor.record.publishSuccess.body": "The {recordKind, select, dataset{dataset} service{service} reuse{reuse} other{record}} was successfully published!",
|
|
294
326
|
"editor.record.publishSuccess.title": "Publish success",
|
|
295
|
-
"editor.record.publishVersionError.body": "The dataset cannot be published because an incompatible GeoNetwork version was detected. Please contact the administrator of the platform to solve this issue.\nCurrent version: {currentVersion}\nMinimum compatible version: 4.2.5",
|
|
327
|
+
"editor.record.publishVersionError.body": "The {recordKind, select, dataset{dataset} service{service} reuse{reuse} other{record}} cannot be published because an incompatible GeoNetwork version was detected. Please contact the administrator of the platform to solve this issue.\nCurrent version: {currentVersion}\nMinimum compatible version: 4.2.5",
|
|
296
328
|
"editor.record.publishVersionError.closeMessage": "Understood",
|
|
297
329
|
"editor.record.publishVersionError.title": "A critical issue was encountered",
|
|
298
|
-
"editor.record.resourceError.body": "There was an issue with the dataset attachments:",
|
|
330
|
+
"editor.record.resourceError.body": "There was an issue with the {recordKind, select, dataset{dataset} service{service} reuse{reuse} other{record}} attachments:",
|
|
299
331
|
"editor.record.resourceError.closeMessage": "Understood",
|
|
300
|
-
"editor.record.resourceError.title": "Error with the dataset attachments",
|
|
332
|
+
"editor.record.resourceError.title": "Error with the {recordKind, select, dataset{dataset} service{service} reuse{reuse} other{record}} attachments",
|
|
301
333
|
"editor.record.saveStatus.draftWithChangesPending": "Saved - Unpublished differences",
|
|
302
334
|
"editor.record.saveStatus.recordNotPublished": "Saved - not published",
|
|
303
335
|
"editor.record.saveStatus.recordUpToDate": "Saved - Record up to date",
|
|
304
336
|
"editor.record.undo.confirmation.cancelText": "Keep the changes",
|
|
305
337
|
"editor.record.undo.confirmation.confirmText": "Discard the changes",
|
|
306
|
-
"editor.record.undo.confirmation.message": "Are you sure you want to cancel the pending changes on this dataset ?",
|
|
338
|
+
"editor.record.undo.confirmation.message": "Are you sure you want to cancel the pending changes on this {recordKind, select, dataset{dataset} service{service} reuse{reuse} other{record}} ?",
|
|
307
339
|
"editor.record.undo.confirmation.title": "Cancel changes?",
|
|
308
|
-
"editor.record.undo.tooltip.disabled": "There are no pending changes on this dataset",
|
|
309
|
-
"editor.record.undo.tooltip.enabled": "Clicking this button will cancel the pending changes on this dataset.",
|
|
310
|
-
"editor.record.upToDate": "This dataset is up to date",
|
|
340
|
+
"editor.record.undo.tooltip.disabled": "There are no pending changes on this {recordKind, select, dataset{dataset} service{service} reuse{reuse} other{record}}",
|
|
341
|
+
"editor.record.undo.tooltip.enabled": "Clicking this button will cancel the pending changes on this {recordKind, select, dataset{dataset} service{service} reuse{reuse} other{record}}.",
|
|
342
|
+
"editor.record.upToDate": "This {recordKind, select, dataset{dataset} service{service} reuse{reuse} other{record}} is up to date",
|
|
311
343
|
"editor.sidebar.logout": "Log out",
|
|
312
344
|
"editor.sidebar.menu.editor": "Editor",
|
|
313
345
|
"editor.temporary.disabled": "Not implemented yet",
|
|
@@ -398,6 +430,21 @@
|
|
|
398
430
|
"multiselect.filter.placeholder": "Search",
|
|
399
431
|
"nav.back": "Back",
|
|
400
432
|
"navbar.mobile.menuTitle": "Quick access",
|
|
433
|
+
"notify.reuse.form.error.body": "The reuse could not be saved. Please try again.",
|
|
434
|
+
"notify.reuse.form.error.title": "Error saving the reuse",
|
|
435
|
+
"notify.reuse.form.field.email": "Email",
|
|
436
|
+
"notify.reuse.form.field.email.placeholder": "contact email address",
|
|
437
|
+
"notify.reuse.form.field.title": "Title",
|
|
438
|
+
"notify.reuse.form.field.title.placeholder": "Title of the reuse",
|
|
439
|
+
"notify.reuse.form.field.url": "Reuse URL",
|
|
440
|
+
"notify.reuse.form.field.url.placeholder": "https://www.example",
|
|
441
|
+
"notify.reuse.form.required.hint": "* : Required fields for creating a reuse",
|
|
442
|
+
"notify.reuse.form.submit": "Declare the reuse",
|
|
443
|
+
"notify.reuse.form.title": "Declare a reuse",
|
|
444
|
+
"notify.reuse.link.description": "Link to the reuse",
|
|
445
|
+
"notify.reuse.record.action.declare": "Declare a reuse",
|
|
446
|
+
"notify.reuse.record.action.delete": "Delete the reuse",
|
|
447
|
+
"notify.reuse.record.action.edit": "Edit the reuse",
|
|
401
448
|
"ogc.geojson.notsupported": "This OGC API does not support the GeoJSON format",
|
|
402
449
|
"ogc.unreachable.unknown": "The service could not be reached",
|
|
403
450
|
"organisation.filter.placeholder": "Filter results",
|
|
@@ -419,6 +466,7 @@
|
|
|
419
466
|
"record.action.download": "Download",
|
|
420
467
|
"record.action.duplicate": "Duplicate",
|
|
421
468
|
"record.action.duplicating": "Duplicating...",
|
|
469
|
+
"record.action.question": "Ask a question",
|
|
422
470
|
"record.action.rollback": "Rollback",
|
|
423
471
|
"record.action.switchLang": "Switch to default",
|
|
424
472
|
"record.action.view": "View",
|
|
@@ -430,6 +478,7 @@
|
|
|
430
478
|
"record.kind.reuse": "reuse",
|
|
431
479
|
"record.kind.service": "service",
|
|
432
480
|
"record.metadata.about": "Description",
|
|
481
|
+
"record.metadata.abstract.empty": "No description available",
|
|
433
482
|
"record.metadata.api": "API",
|
|
434
483
|
"record.metadata.api.accessServiceProtocol.GPFDL": "GPFDL",
|
|
435
484
|
"record.metadata.api.accessServiceProtocol.esriRest": "esriRest",
|
|
@@ -558,6 +607,12 @@
|
|
|
558
607
|
"record.metadata.userFeedbacks.sortSelector.choices.oldestFirst": "Oldest comments first",
|
|
559
608
|
"record.metadata.userFeedbacks.sortSelector.label": "Sort by ...",
|
|
560
609
|
"record.more.details": "Read more",
|
|
610
|
+
"record.reuse.delete.confirmation.cancelText": "Cancel",
|
|
611
|
+
"record.reuse.delete.confirmation.confirmText": "Delete",
|
|
612
|
+
"record.reuse.delete.confirmation.message": "Are you sure you want to delete this reuse?",
|
|
613
|
+
"record.reuse.delete.confirmation.title": "Delete reuse?",
|
|
614
|
+
"record.reuse.deleteError.body": "The reuse could not be deleted:",
|
|
615
|
+
"record.reuse.deleteError.title": "Error deleting reuse",
|
|
561
616
|
"record.tab.chart": "Chart",
|
|
562
617
|
"record.tab.data": "Table",
|
|
563
618
|
"record.tab.map": "Map",
|
|
@@ -647,8 +702,6 @@
|
|
|
647
702
|
"service.metadata.filter": "Layers will be filtered by title and abstract",
|
|
648
703
|
"service.metadata.filter.noLayers": "No layer matches your search",
|
|
649
704
|
"service.metadata.other": "Other information",
|
|
650
|
-
"service.metadata.question": "Ask a question",
|
|
651
|
-
"service.metadata.reuse": "Declare a reuse",
|
|
652
705
|
"service.metadata.search": "Search through the layer list",
|
|
653
706
|
"service.metadata.search.clear": "Clear the layer search",
|
|
654
707
|
"service.metadata.spatialExtent": "Spatial extent",
|
package/translations/es.json
CHANGED
|
@@ -89,6 +89,10 @@
|
|
|
89
89
|
"domain.contact.role.stakeholder": "",
|
|
90
90
|
"domain.contact.role.unspecified": "",
|
|
91
91
|
"domain.contact.role.user": "",
|
|
92
|
+
"domain.record.keywordType.other": "",
|
|
93
|
+
"domain.record.keywordType.place": "",
|
|
94
|
+
"domain.record.keywordType.temporal": "",
|
|
95
|
+
"domain.record.keywordType.theme": "",
|
|
92
96
|
"domain.record.status.completed": "",
|
|
93
97
|
"domain.record.status.deprecated": "",
|
|
94
98
|
"domain.record.status.ongoing": "",
|
|
@@ -115,7 +119,28 @@
|
|
|
115
119
|
"domain.record.updateFrequency.week": "{count, plural, =0{0 veces} one{Una vez} other{{count} veces}} a la semana",
|
|
116
120
|
"domain.record.updateFrequency.weekly": "Los datos se actualizan semanalmente",
|
|
117
121
|
"domain.record.updateFrequency.year": "{count, plural, =0{0 veces} one{Una vez} other{{count} veces}} al año",
|
|
122
|
+
"downloads.format.csv": "",
|
|
123
|
+
"downloads.format.dxf": "",
|
|
124
|
+
"downloads.format.excel": "",
|
|
125
|
+
"downloads.format.fgb": "",
|
|
126
|
+
"downloads.format.geojson": "",
|
|
127
|
+
"downloads.format.gml": "",
|
|
128
|
+
"downloads.format.gpkg": "",
|
|
129
|
+
"downloads.format.html": "",
|
|
130
|
+
"downloads.format.jpg": "",
|
|
131
|
+
"downloads.format.json": "",
|
|
132
|
+
"downloads.format.jsonfg": "",
|
|
133
|
+
"downloads.format.kml": "",
|
|
134
|
+
"downloads.format.pdf": "",
|
|
135
|
+
"downloads.format.png": "",
|
|
136
|
+
"downloads.format.postgis": "",
|
|
137
|
+
"downloads.format.shp": "",
|
|
138
|
+
"downloads.format.svg": "",
|
|
139
|
+
"downloads.format.tiff": "",
|
|
118
140
|
"downloads.format.unknown": "",
|
|
141
|
+
"downloads.format.webp": "",
|
|
142
|
+
"downloads.format.xml": "",
|
|
143
|
+
"downloads.format.zip": "",
|
|
119
144
|
"downloads.wfs.featuretype.not.found": "",
|
|
120
145
|
"dropFile": "",
|
|
121
146
|
"editor.new.record.title": "",
|
|
@@ -191,6 +216,7 @@
|
|
|
191
216
|
"editor.record.form.field.resourceCreated": "",
|
|
192
217
|
"editor.record.form.field.resourceIdentifier": "",
|
|
193
218
|
"editor.record.form.field.resourceUpdated": "",
|
|
219
|
+
"editor.record.form.field.reuseUrl": "URL de la reutilización",
|
|
194
220
|
"editor.record.form.field.securityConstraints": "",
|
|
195
221
|
"editor.record.form.field.spatialExtents": "",
|
|
196
222
|
"editor.record.form.field.temporalExtents": "",
|
|
@@ -234,6 +260,7 @@
|
|
|
234
260
|
"editor.record.form.section.dataManagers.description": "",
|
|
235
261
|
"editor.record.form.section.dataManagers.label": "",
|
|
236
262
|
"editor.record.form.section.geographicalCoverage.label": "",
|
|
263
|
+
"editor.record.form.section.lightPointOfContact.label": "Punto de contacto",
|
|
237
264
|
"editor.record.form.section.metadataPointOfContact.description": "",
|
|
238
265
|
"editor.record.form.section.metadataPointOfContact.label": "",
|
|
239
266
|
"editor.record.form.section.topics.description": "",
|
|
@@ -253,6 +280,7 @@
|
|
|
253
280
|
"editor.record.form.topics.iso.geoscientificInformation": "",
|
|
254
281
|
"editor.record.form.topics.iso.health": "",
|
|
255
282
|
"editor.record.form.topics.iso.imageryBaseMapsEarthCover": "",
|
|
283
|
+
"editor.record.form.topics.iso.inlandWaters": "",
|
|
256
284
|
"editor.record.form.topics.iso.intelligenceMilitary": "",
|
|
257
285
|
"editor.record.form.topics.iso.location": "",
|
|
258
286
|
"editor.record.form.topics.iso.oceans": "",
|
|
@@ -261,19 +289,23 @@
|
|
|
261
289
|
"editor.record.form.topics.iso.structure": "",
|
|
262
290
|
"editor.record.form.topics.iso.transportation": "",
|
|
263
291
|
"editor.record.form.topics.iso.utilitiesCommunication": "",
|
|
264
|
-
"editor.record.form.topics.iso.inlandWaters": "",
|
|
265
292
|
"editor.record.form.topics.placeholder": "",
|
|
266
|
-
"editor.record.form.updateFrequency.planned": "Este conjunto de datos se actualiza regularmente
|
|
293
|
+
"editor.record.form.updateFrequency.planned": "{recordKind, select, dataset{Este conjunto de datos} service{Este servicio} reuse{Esta reutilización} other{Este registro}} se actualiza regularmente",
|
|
267
294
|
"editor.record.importFromExternalFile.failure.body": "",
|
|
268
295
|
"editor.record.importFromExternalFile.failure.title": "",
|
|
269
296
|
"editor.record.importFromExternalFile.success.body": "",
|
|
270
297
|
"editor.record.importFromExternalFile.success.title": "",
|
|
298
|
+
"editor.record.light.leave": "Salir sin guardar",
|
|
299
|
+
"editor.record.light.save": "Guardar la reutilización",
|
|
300
|
+
"editor.record.light.saveError.body": "No se pudo guardar la reutilización:",
|
|
301
|
+
"editor.record.light.saveError.title": "Error al guardar",
|
|
302
|
+
"editor.record.light.saveSuccess.body": "La reutilización se guardó correctamente.",
|
|
303
|
+
"editor.record.light.saveSuccess.title": "Reutilización guardada",
|
|
271
304
|
"editor.record.loadError.body": "",
|
|
272
305
|
"editor.record.loadError.closeMessage": "",
|
|
273
306
|
"editor.record.loadError.title": "",
|
|
274
307
|
"editor.record.lock.harvested": "",
|
|
275
308
|
"editor.record.lock.owner": "",
|
|
276
|
-
"editor.record.lock.resourceType": "",
|
|
277
309
|
"editor.record.multilingual.confirmation.cancelText": "",
|
|
278
310
|
"editor.record.multilingual.confirmation.confirmText": "",
|
|
279
311
|
"editor.record.multilingual.confirmation.message": "",
|
|
@@ -398,6 +430,21 @@
|
|
|
398
430
|
"multiselect.filter.placeholder": "",
|
|
399
431
|
"nav.back": "",
|
|
400
432
|
"navbar.mobile.menuTitle": "Acceso rápido",
|
|
433
|
+
"notify.reuse.form.error.body": "",
|
|
434
|
+
"notify.reuse.form.error.title": "",
|
|
435
|
+
"notify.reuse.form.field.email": "Correo electrónico",
|
|
436
|
+
"notify.reuse.form.field.email.placeholder": "dirección de correo del contacto",
|
|
437
|
+
"notify.reuse.form.field.title": "Título",
|
|
438
|
+
"notify.reuse.form.field.title.placeholder": "Título de la reutilización",
|
|
439
|
+
"notify.reuse.form.field.url": "URL de la reutilización",
|
|
440
|
+
"notify.reuse.form.field.url.placeholder": "https://www.ejemplo",
|
|
441
|
+
"notify.reuse.form.required.hint": "* : Campos obligatorios para la creación de una reutilización",
|
|
442
|
+
"notify.reuse.form.submit": "Declarar la reutilización",
|
|
443
|
+
"notify.reuse.form.title": "Declarar una reutilización",
|
|
444
|
+
"notify.reuse.link.description": "Un recurso de reutilización creado a través del Datahub",
|
|
445
|
+
"notify.reuse.record.action.declare": "Declarar una reutilización",
|
|
446
|
+
"notify.reuse.record.action.delete": "Eliminar la reutilización",
|
|
447
|
+
"notify.reuse.record.action.edit": "Editar la reutilización",
|
|
401
448
|
"ogc.geojson.notsupported": "",
|
|
402
449
|
"ogc.unreachable.unknown": "",
|
|
403
450
|
"organisation.filter.placeholder": "",
|
|
@@ -419,6 +466,7 @@
|
|
|
419
466
|
"record.action.download": "",
|
|
420
467
|
"record.action.duplicate": "",
|
|
421
468
|
"record.action.duplicating": "",
|
|
469
|
+
"record.action.question": "",
|
|
422
470
|
"record.action.rollback": "",
|
|
423
471
|
"record.action.switchLang": "",
|
|
424
472
|
"record.action.view": "",
|
|
@@ -430,6 +478,7 @@
|
|
|
430
478
|
"record.kind.reuse": "",
|
|
431
479
|
"record.kind.service": "",
|
|
432
480
|
"record.metadata.about": "",
|
|
481
|
+
"record.metadata.abstract.empty": "",
|
|
433
482
|
"record.metadata.api": "",
|
|
434
483
|
"record.metadata.api.accessServiceProtocol.GPFDL": "",
|
|
435
484
|
"record.metadata.api.accessServiceProtocol.esriRest": "",
|
|
@@ -558,6 +607,12 @@
|
|
|
558
607
|
"record.metadata.userFeedbacks.sortSelector.choices.oldestFirst": "",
|
|
559
608
|
"record.metadata.userFeedbacks.sortSelector.label": "",
|
|
560
609
|
"record.more.details": "",
|
|
610
|
+
"record.reuse.delete.confirmation.cancelText": "",
|
|
611
|
+
"record.reuse.delete.confirmation.confirmText": "",
|
|
612
|
+
"record.reuse.delete.confirmation.message": "",
|
|
613
|
+
"record.reuse.delete.confirmation.title": "",
|
|
614
|
+
"record.reuse.deleteError.body": "",
|
|
615
|
+
"record.reuse.deleteError.title": "",
|
|
561
616
|
"record.tab.chart": "",
|
|
562
617
|
"record.tab.data": "",
|
|
563
618
|
"record.tab.map": "",
|
|
@@ -647,8 +702,6 @@
|
|
|
647
702
|
"service.metadata.filter": "",
|
|
648
703
|
"service.metadata.filter.noLayers": "",
|
|
649
704
|
"service.metadata.other": "",
|
|
650
|
-
"service.metadata.question": "",
|
|
651
|
-
"service.metadata.reuse": "",
|
|
652
705
|
"service.metadata.search": "",
|
|
653
706
|
"service.metadata.search.clear": "",
|
|
654
707
|
"service.metadata.spatialExtent": "",
|