geonetwork-ui 2.10.0-dev.b5836aad7 → 2.10.0-dev.bf2e85a24
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 +2285 -6919
- package/fesm2022/geonetwork-ui.mjs.map +1 -1
- package/index.d.ts +248 -173
- package/index.d.ts.map +1 -1
- package/material-styles.css +483 -0
- package/package.json +25 -35
- 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 +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.reuse+ongules.ts +7 -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 +1 -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 +8 -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 +5 -4
- 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 +7 -0
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.ts +8 -0
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.ts +8 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +11 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +33 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +33 -0
- package/src/libs/api/repository/src/lib/gn4/auth/auth.service.ts +8 -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 +72 -38
- package/src/libs/api/repository/src/lib/gn4/gn4.provider.ts +6 -1
- 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 +48 -2
- package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +13 -5
- package/src/libs/common/domain/src/lib/model/thesaurus/thesaurus.model.ts +2 -1
- package/src/libs/common/domain/src/lib/model/user/group.model.ts +8 -0
- package/src/libs/common/domain/src/lib/model/user/index.ts +1 -0
- package/src/libs/common/domain/src/lib/platform.service.interface.ts +2 -0
- package/src/libs/common/fixtures/src/lib/records.fixtures.ts +56 -0
- package/src/libs/feature/catalog/src/lib/sources/sources.service.ts +5 -2
- package/src/libs/feature/editor/src/lib/+state/editor.actions.ts +10 -1
- package/src/libs/feature/editor/src/lib/+state/editor.effects.ts +26 -20
- package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +15 -2
- 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.css +0 -0
- package/src/libs/feature/editor/src/lib/components/contact-details/contact-details-form.component.html +67 -0
- package/src/libs/feature/editor/src/lib/components/contact-details/contact-details-form.component.ts +39 -0
- package/src/libs/feature/editor/src/lib/components/metadata-quality-panel/metadata-quality-panel.component.html +18 -3
- package/src/libs/feature/editor/src/lib/components/metadata-quality-panel/metadata-quality-panel.component.ts +33 -40
- 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 +41 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.ts +32 -34
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.html +13 -13
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.ts +18 -4
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.html +8 -7
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.ts +6 -6
- 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-online-single-link-resource/form-field-online-single-link-resource.component.css +0 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-single-link-resource/form-field-online-single-link-resource.component.html +5 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-single-link-resource/form-field-online-single-link-resource.component.ts +89 -0
- 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-topics/form-field-topics.component.ts +2 -2
- 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 +3 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +21 -16
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +14 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/index.ts +1 -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 +118 -5
- package/src/libs/feature/editor/src/lib/expressions.ts +380 -8
- package/src/libs/feature/editor/src/lib/fields.config.ts +310 -336
- 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 +9 -13
- 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/notify-reuse-form/notify-reuse-form.component.css +0 -0
- package/src/libs/feature/notify-reuse/src/lib/notify-reuse-form/notify-reuse-form.component.html +1 -0
- package/src/libs/feature/notify-reuse/src/lib/notify-reuse-form/notify-reuse-form.component.ts +21 -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 +2 -0
- package/src/libs/ui/elements/src/lib/contact-details/contact-details.component.html +88 -0
- package/src/libs/ui/elements/src/lib/contact-details/contact-details.component.ts +45 -0
- package/src/libs/ui/elements/src/lib/contact-pill/contact-pill.component.html +41 -0
- package/src/libs/ui/elements/src/lib/contact-pill/contact-pill.component.ts +70 -0
- 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/internal-link-card/internal-link-card.component.html +1 -1
- package/src/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.ts +0 -1
- package/src/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.ts +2 -2
- package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.ts +2 -5
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.css +0 -4
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +39 -68
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.ts +59 -11
- 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/button/button.component.ts +8 -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/url-input/url-input.component.html +2 -2
- package/src/libs/ui/inputs/src/lib/url-input/url-input.component.ts +2 -1
- 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/map-container/map-container.component.ts +2 -1
- package/src/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.ts +15 -64
- 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/record-preview-row/record-preview-row.component.html +0 -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/util/app-config/src/lib/app-config.ts +70 -9
- package/src/libs/util/app-config/src/lib/model.ts +7 -0
- package/src/libs/util/app-config/src/lib/parse-utils.ts +50 -1
- 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 +23 -1
- package/src/libs/util/shared/src/lib/record/quality-score.util.ts +33 -18
- 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/src/libs/util/shared/src/lib/utils/index.ts +1 -0
- package/src/libs/util/shared/src/lib/utils/user-display.ts +32 -0
- package/style.css +0 -1
- package/tailwind.base.css +19 -2
- package/translations/de.json +81 -48
- package/translations/en.json +86 -53
- package/translations/es.json +55 -22
- package/translations/fr.json +83 -50
- package/translations/it.json +81 -48
- package/translations/nl.json +54 -21
- package/translations/pt.json +55 -22
- package/translations/sk.json +55 -22
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,9 +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": "",
|
|
178
|
+
"editor.record.form.field.contactDetails.email": "Contact email",
|
|
179
|
+
"editor.record.form.field.contactDetails.email.placeholder": "example@domainname.com",
|
|
180
|
+
"editor.record.form.field.contactDetails.firstName": "Contact first name",
|
|
181
|
+
"editor.record.form.field.contactDetails.firstName.placeholder": "First name",
|
|
182
|
+
"editor.record.form.field.contactDetails.lastName": "Contact last name",
|
|
183
|
+
"editor.record.form.field.contactDetails.lastName.placeholder": "Last name",
|
|
184
|
+
"editor.record.form.field.contactDetails.organization": "Contact organization",
|
|
185
|
+
"editor.record.form.field.contactDetails.organization.placeholder": "Company",
|
|
153
186
|
"editor.record.form.field.contacts": "Point of contact - Email",
|
|
154
187
|
"editor.record.form.field.contacts.noContact": "Please provide at least one point of contact.",
|
|
155
188
|
"editor.record.form.field.contacts.placeholder": "Choose a contact",
|
|
@@ -159,6 +192,7 @@
|
|
|
159
192
|
"editor.record.form.field.legalConstraints": "Legal constraint",
|
|
160
193
|
"editor.record.form.field.license": "License",
|
|
161
194
|
"editor.record.form.field.onlineLinkResources": "Attached resources",
|
|
195
|
+
"editor.record.form.field.onlineLinkageResource.defaultName": "Link",
|
|
162
196
|
"editor.record.form.field.onlineResource.cancel": "Cancel",
|
|
163
197
|
"editor.record.form.field.onlineResource.confirm": "Confirm",
|
|
164
198
|
"editor.record.form.field.onlineResource.dialogTitle": "Modify the dataset preview",
|
|
@@ -179,9 +213,9 @@
|
|
|
179
213
|
"editor.record.form.field.otherConstraints": "Other constraint",
|
|
180
214
|
"editor.record.form.field.overviews": "Overview",
|
|
181
215
|
"editor.record.form.field.recordUpdated": "Record updated",
|
|
182
|
-
"editor.record.form.field.resourceCreated": "Dataset created",
|
|
216
|
+
"editor.record.form.field.resourceCreated": "{recordKind, select, dataset{Dataset} service{Service} reuse{Reuse} other{Record}} created",
|
|
183
217
|
"editor.record.form.field.resourceIdentifier": "Identifier",
|
|
184
|
-
"editor.record.form.field.resourceUpdated": "Dataset updated",
|
|
218
|
+
"editor.record.form.field.resourceUpdated": "{recordKind, select, dataset{Dataset} service{Service} reuse{Reuse} other{Record}} updated",
|
|
185
219
|
"editor.record.form.field.securityConstraints": "Security constraints",
|
|
186
220
|
"editor.record.form.field.spatialExtents": "Spatial extents",
|
|
187
221
|
"editor.record.form.field.temporalExtents": "Temporal extents",
|
|
@@ -212,59 +246,58 @@
|
|
|
212
246
|
"editor.record.form.multilingual.title": "Translations",
|
|
213
247
|
"editor.record.form.multilingual.validate": "Validate",
|
|
214
248
|
"editor.record.form.page.accessAndContact": "Information for use",
|
|
215
|
-
"editor.record.form.page.description": "Dataset description",
|
|
249
|
+
"editor.record.form.page.description": "{recordKind, select, dataset{Dataset} service{Service} reuse{Reuse} other{Record}} description",
|
|
216
250
|
"editor.record.form.page.resources": "Resources",
|
|
217
|
-
"editor.record.form.section.about.description": "This section describes the dataset",
|
|
218
|
-
"editor.record.form.section.about.label": "About the dataset",
|
|
219
|
-
"editor.record.form.section.annexes.description": "Annexes are optional resources. They are attached to the dataset, and help understand the data (manual, etc.).",
|
|
251
|
+
"editor.record.form.section.about.description": "This section describes the {recordKind, select, dataset{dataset} service{service} reuse{reuse} other{record}}",
|
|
252
|
+
"editor.record.form.section.about.label": "About the {recordKind, select, dataset{dataset} service{service} reuse{reuse} other{record}}",
|
|
253
|
+
"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.).",
|
|
220
254
|
"editor.record.form.section.annexes.label": "Annexes",
|
|
221
255
|
"editor.record.form.section.associatedResources.description": "Point out where the data can be found",
|
|
222
256
|
"editor.record.form.section.associatedResources.label": "Associated resources",
|
|
223
|
-
"editor.record.form.section.classification.description": "Appropriate keywords help users find the dataset",
|
|
257
|
+
"editor.record.form.section.classification.description": "Appropriate keywords help users find the {recordKind, select, dataset{dataset} service{service} reuse{reuse} other{record}}",
|
|
224
258
|
"editor.record.form.section.classification.label": "Keywords",
|
|
225
259
|
"editor.record.form.section.dataManagers.description": "The data managers are responsible for the data",
|
|
226
260
|
"editor.record.form.section.dataManagers.label": "Data managers",
|
|
227
261
|
"editor.record.form.section.geographicalCoverage.label": "Geographical coverage",
|
|
228
262
|
"editor.record.form.section.metadataPointOfContact.description": "This information concerns the metadata",
|
|
229
263
|
"editor.record.form.section.metadataPointOfContact.label": "Metadata point of contact",
|
|
230
|
-
"editor.record.form.section.topics.description": "Topics help to better group datasets",
|
|
264
|
+
"editor.record.form.section.topics.description": "Topics help to better group {recordKind, select, dataset{datasets} service{services} reuse{reuses} other{records}}",
|
|
231
265
|
"editor.record.form.section.topics.label": "Topics",
|
|
232
266
|
"editor.record.form.section.useAndAccessConditions.label": "Use and access conditions",
|
|
233
267
|
"editor.record.form.temporalExtents.addDate": "Time instant",
|
|
234
268
|
"editor.record.form.temporalExtents.addRange": "Time period",
|
|
235
269
|
"editor.record.form.temporalExtents.date": "Date",
|
|
236
270
|
"editor.record.form.temporalExtents.range": "Date range",
|
|
237
|
-
"editor.record.form.topics.
|
|
238
|
-
"editor.record.form.topics.
|
|
239
|
-
"editor.record.form.topics.
|
|
240
|
-
"editor.record.form.topics.
|
|
241
|
-
"editor.record.form.topics.
|
|
242
|
-
"editor.record.form.topics.
|
|
243
|
-
"editor.record.form.topics.
|
|
244
|
-
"editor.record.form.topics.
|
|
245
|
-
"editor.record.form.topics.
|
|
246
|
-
"editor.record.form.topics.
|
|
247
|
-
"editor.record.form.topics.
|
|
248
|
-
"editor.record.form.topics.
|
|
249
|
-
"editor.record.form.topics.
|
|
250
|
-
"editor.record.form.topics.
|
|
251
|
-
"editor.record.form.topics.
|
|
252
|
-
"editor.record.form.topics.
|
|
253
|
-
"editor.record.form.topics.
|
|
254
|
-
"editor.record.form.topics.
|
|
255
|
-
"editor.record.form.topics.
|
|
271
|
+
"editor.record.form.topics.iso.biota": "Biota",
|
|
272
|
+
"editor.record.form.topics.iso.boundaries": "Boundaries",
|
|
273
|
+
"editor.record.form.topics.iso.climatologyMeteorologyAtmosphere": "Climatology / Meteorology / Atmosphere",
|
|
274
|
+
"editor.record.form.topics.iso.economy": "Economy",
|
|
275
|
+
"editor.record.form.topics.iso.elevation": "Elevation",
|
|
276
|
+
"editor.record.form.topics.iso.environment": "Environnement",
|
|
277
|
+
"editor.record.form.topics.iso.farming": "Farming",
|
|
278
|
+
"editor.record.form.topics.iso.geoscientificInformation": "Geoscientific Information",
|
|
279
|
+
"editor.record.form.topics.iso.health": "Health",
|
|
280
|
+
"editor.record.form.topics.iso.imageryBaseMapsEarthCover": "Imagery / Base Maps / Earth Cover",
|
|
281
|
+
"editor.record.form.topics.iso.inlandWaters": "Inland Waters",
|
|
282
|
+
"editor.record.form.topics.iso.intelligenceMilitary": "Intelligence / Military",
|
|
283
|
+
"editor.record.form.topics.iso.location": "Location",
|
|
284
|
+
"editor.record.form.topics.iso.oceans": "Oceans",
|
|
285
|
+
"editor.record.form.topics.iso.planningCadastre": "Planning / Cadastre",
|
|
286
|
+
"editor.record.form.topics.iso.society": "Society",
|
|
287
|
+
"editor.record.form.topics.iso.structure": "Structure",
|
|
288
|
+
"editor.record.form.topics.iso.transportation": "Transportation",
|
|
289
|
+
"editor.record.form.topics.iso.utilitiesCommunication": "Utilities / Communication",
|
|
256
290
|
"editor.record.form.topics.placeholder": "Select one or several topics",
|
|
257
|
-
"editor.record.form.updateFrequency.planned": "This dataset is updated regularly",
|
|
291
|
+
"editor.record.form.updateFrequency.planned": "This {recordKind, select, dataset{dataset} service{service} reuse{reuse} other{record}} is updated regularly",
|
|
258
292
|
"editor.record.importFromExternalFile.failure.body": "Failure",
|
|
259
|
-
"editor.record.importFromExternalFile.failure.title": "The
|
|
293
|
+
"editor.record.importFromExternalFile.failure.title": "The import failed: ",
|
|
260
294
|
"editor.record.importFromExternalFile.success.body": "Import successful",
|
|
261
295
|
"editor.record.importFromExternalFile.success.title": "The dataset has been successfully imported.",
|
|
262
|
-
"editor.record.loadError.body": "The
|
|
296
|
+
"editor.record.loadError.body": "The record could not be loaded:",
|
|
263
297
|
"editor.record.loadError.closeMessage": "Understood",
|
|
264
|
-
"editor.record.loadError.title": "Error loading
|
|
265
|
-
"editor.record.lock.harvested": "Datasets harvested from an external catalog are not editable",
|
|
298
|
+
"editor.record.loadError.title": "Error loading record",
|
|
299
|
+
"editor.record.lock.harvested": "{recordKind, select, dataset{Datasets} service{Services} reuse{Reuses} other{Records}} harvested from an external catalog are not editable",
|
|
266
300
|
"editor.record.lock.owner": "You are not an editor of the allowed groups",
|
|
267
|
-
"editor.record.lock.resourceType": "Records of a type other than dataset are not editable",
|
|
268
301
|
"editor.record.multilingual.confirmation.cancelText": "Keep the language(s)",
|
|
269
302
|
"editor.record.multilingual.confirmation.confirmText": "Remove the language(s)",
|
|
270
303
|
"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?",
|
|
@@ -274,31 +307,31 @@
|
|
|
274
307
|
"editor.record.onlineResourceError.closeMessage": "Understood",
|
|
275
308
|
"editor.record.onlineResourceError.title": "Error adding resource",
|
|
276
309
|
"editor.record.placeKeywordWithoutLabel": "Unnamed location",
|
|
277
|
-
"editor.record.publish": "Publish this dataset",
|
|
310
|
+
"editor.record.publish": "Publish this {recordKind, select, dataset{dataset} service{service} reuse{reuse} other{record}}",
|
|
278
311
|
"editor.record.publish.confirmation.cancelText": "Cancel",
|
|
279
312
|
"editor.record.publish.confirmation.confirmText": "Publish",
|
|
280
|
-
"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?",
|
|
281
|
-
"editor.record.publishError.body": "The dataset could not be published:",
|
|
313
|
+
"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?",
|
|
314
|
+
"editor.record.publishError.body": "The {recordKind, select, dataset{dataset} service{service} reuse{reuse} other{record}} could not be published:",
|
|
282
315
|
"editor.record.publishError.closeMessage": "Understood",
|
|
283
|
-
"editor.record.publishError.title": "Error publishing dataset",
|
|
284
|
-
"editor.record.publishSuccess.body": "The dataset was successfully published!",
|
|
316
|
+
"editor.record.publishError.title": "Error publishing {recordKind, select, dataset{dataset} service{service} reuse{reuse} other{record}}",
|
|
317
|
+
"editor.record.publishSuccess.body": "The {recordKind, select, dataset{dataset} service{service} reuse{reuse} other{record}} was successfully published!",
|
|
285
318
|
"editor.record.publishSuccess.title": "Publish success",
|
|
286
|
-
"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",
|
|
319
|
+
"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",
|
|
287
320
|
"editor.record.publishVersionError.closeMessage": "Understood",
|
|
288
321
|
"editor.record.publishVersionError.title": "A critical issue was encountered",
|
|
289
|
-
"editor.record.resourceError.body": "There was an issue with the dataset attachments:",
|
|
322
|
+
"editor.record.resourceError.body": "There was an issue with the {recordKind, select, dataset{dataset} service{service} reuse{reuse} other{record}} attachments:",
|
|
290
323
|
"editor.record.resourceError.closeMessage": "Understood",
|
|
291
|
-
"editor.record.resourceError.title": "Error with the dataset attachments",
|
|
324
|
+
"editor.record.resourceError.title": "Error with the {recordKind, select, dataset{dataset} service{service} reuse{reuse} other{record}} attachments",
|
|
292
325
|
"editor.record.saveStatus.draftWithChangesPending": "Saved - Unpublished differences",
|
|
293
326
|
"editor.record.saveStatus.recordNotPublished": "Saved - not published",
|
|
294
327
|
"editor.record.saveStatus.recordUpToDate": "Saved - Record up to date",
|
|
295
328
|
"editor.record.undo.confirmation.cancelText": "Keep the changes",
|
|
296
329
|
"editor.record.undo.confirmation.confirmText": "Discard the changes",
|
|
297
|
-
"editor.record.undo.confirmation.message": "Are you sure you want to cancel the pending changes on this dataset ?",
|
|
330
|
+
"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}} ?",
|
|
298
331
|
"editor.record.undo.confirmation.title": "Cancel changes?",
|
|
299
|
-
"editor.record.undo.tooltip.disabled": "There are no pending changes on this dataset",
|
|
300
|
-
"editor.record.undo.tooltip.enabled": "Clicking this button will cancel the pending changes on this dataset.",
|
|
301
|
-
"editor.record.upToDate": "This dataset is up to date",
|
|
332
|
+
"editor.record.undo.tooltip.disabled": "There are no pending changes on this {recordKind, select, dataset{dataset} service{service} reuse{reuse} other{record}}",
|
|
333
|
+
"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}}.",
|
|
334
|
+
"editor.record.upToDate": "This {recordKind, select, dataset{dataset} service{service} reuse{reuse} other{record}} is up to date",
|
|
302
335
|
"editor.sidebar.logout": "Log out",
|
|
303
336
|
"editor.sidebar.menu.editor": "Editor",
|
|
304
337
|
"editor.temporary.disabled": "Not implemented yet",
|
|
@@ -494,7 +527,6 @@
|
|
|
494
527
|
"record.metadata.preview.config.idle": "Set as default preview",
|
|
495
528
|
"record.metadata.preview.config.saved": "Saved !",
|
|
496
529
|
"record.metadata.preview.config.saving": "Saving...",
|
|
497
|
-
"record.metadata.producer": "Data producer",
|
|
498
530
|
"record.metadata.publication": "Date of publication",
|
|
499
531
|
"record.metadata.publications": "{count, plural, =0{publication} one{publication} other{publications}}",
|
|
500
532
|
"record.metadata.quality": "Metadata Quality",
|
|
@@ -520,6 +552,7 @@
|
|
|
520
552
|
"record.metadata.quality.updateFrequency.failed": "Update frequency is not specified",
|
|
521
553
|
"record.metadata.quality.updateFrequency.success": "Update frequency is specified",
|
|
522
554
|
"record.metadata.related": "Explore the catalog",
|
|
555
|
+
"record.metadata.resource.contacts": "Contacts for the resource",
|
|
523
556
|
"record.metadata.resourceCreated": "Created",
|
|
524
557
|
"record.metadata.resourcePublished": "Published",
|
|
525
558
|
"record.metadata.resourceUpdated": "Last updated",
|
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": "",
|
|
@@ -150,6 +175,14 @@
|
|
|
150
175
|
"editor.record.form.draft.updateAlert": "",
|
|
151
176
|
"editor.record.form.field.abstract": "",
|
|
152
177
|
"editor.record.form.field.constraintsShortcuts": "",
|
|
178
|
+
"editor.record.form.field.contactDetails.email": "",
|
|
179
|
+
"editor.record.form.field.contactDetails.email.placeholder": "",
|
|
180
|
+
"editor.record.form.field.contactDetails.firstName": "",
|
|
181
|
+
"editor.record.form.field.contactDetails.firstName.placeholder": "",
|
|
182
|
+
"editor.record.form.field.contactDetails.lastName": "",
|
|
183
|
+
"editor.record.form.field.contactDetails.lastName.placeholder": "",
|
|
184
|
+
"editor.record.form.field.contactDetails.organization": "",
|
|
185
|
+
"editor.record.form.field.contactDetails.organization.placeholder": "",
|
|
153
186
|
"editor.record.form.field.contacts": "Punto de contacto - Correo ",
|
|
154
187
|
"editor.record.form.field.contacts.noContact": "",
|
|
155
188
|
"editor.record.form.field.contacts.placeholder": "",
|
|
@@ -159,6 +192,7 @@
|
|
|
159
192
|
"editor.record.form.field.legalConstraints": "",
|
|
160
193
|
"editor.record.form.field.license": "",
|
|
161
194
|
"editor.record.form.field.onlineLinkResources": "",
|
|
195
|
+
"editor.record.form.field.onlineLinkageResource.defaultName": "",
|
|
162
196
|
"editor.record.form.field.onlineResource.cancel": "",
|
|
163
197
|
"editor.record.form.field.onlineResource.confirm": "",
|
|
164
198
|
"editor.record.form.field.onlineResource.dialogTitle": "",
|
|
@@ -234,27 +268,27 @@
|
|
|
234
268
|
"editor.record.form.temporalExtents.addRange": "",
|
|
235
269
|
"editor.record.form.temporalExtents.date": "",
|
|
236
270
|
"editor.record.form.temporalExtents.range": "",
|
|
237
|
-
"editor.record.form.topics.
|
|
238
|
-
"editor.record.form.topics.
|
|
239
|
-
"editor.record.form.topics.
|
|
240
|
-
"editor.record.form.topics.
|
|
241
|
-
"editor.record.form.topics.
|
|
242
|
-
"editor.record.form.topics.
|
|
243
|
-
"editor.record.form.topics.
|
|
244
|
-
"editor.record.form.topics.
|
|
245
|
-
"editor.record.form.topics.
|
|
246
|
-
"editor.record.form.topics.
|
|
247
|
-
"editor.record.form.topics.
|
|
248
|
-
"editor.record.form.topics.
|
|
249
|
-
"editor.record.form.topics.
|
|
250
|
-
"editor.record.form.topics.
|
|
251
|
-
"editor.record.form.topics.
|
|
252
|
-
"editor.record.form.topics.
|
|
253
|
-
"editor.record.form.topics.
|
|
254
|
-
"editor.record.form.topics.
|
|
255
|
-
"editor.record.form.topics.
|
|
271
|
+
"editor.record.form.topics.iso.biota": "",
|
|
272
|
+
"editor.record.form.topics.iso.boundaries": "",
|
|
273
|
+
"editor.record.form.topics.iso.climatologyMeteorologyAtmosphere": "",
|
|
274
|
+
"editor.record.form.topics.iso.economy": "",
|
|
275
|
+
"editor.record.form.topics.iso.elevation": "",
|
|
276
|
+
"editor.record.form.topics.iso.environment": "",
|
|
277
|
+
"editor.record.form.topics.iso.farming": "",
|
|
278
|
+
"editor.record.form.topics.iso.geoscientificInformation": "",
|
|
279
|
+
"editor.record.form.topics.iso.health": "",
|
|
280
|
+
"editor.record.form.topics.iso.imageryBaseMapsEarthCover": "",
|
|
281
|
+
"editor.record.form.topics.iso.inlandWaters": "",
|
|
282
|
+
"editor.record.form.topics.iso.intelligenceMilitary": "",
|
|
283
|
+
"editor.record.form.topics.iso.location": "",
|
|
284
|
+
"editor.record.form.topics.iso.oceans": "",
|
|
285
|
+
"editor.record.form.topics.iso.planningCadastre": "",
|
|
286
|
+
"editor.record.form.topics.iso.society": "",
|
|
287
|
+
"editor.record.form.topics.iso.structure": "",
|
|
288
|
+
"editor.record.form.topics.iso.transportation": "",
|
|
289
|
+
"editor.record.form.topics.iso.utilitiesCommunication": "",
|
|
256
290
|
"editor.record.form.topics.placeholder": "",
|
|
257
|
-
"editor.record.form.updateFrequency.planned": "Este conjunto de datos se actualiza regularmente
|
|
291
|
+
"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",
|
|
258
292
|
"editor.record.importFromExternalFile.failure.body": "",
|
|
259
293
|
"editor.record.importFromExternalFile.failure.title": "",
|
|
260
294
|
"editor.record.importFromExternalFile.success.body": "",
|
|
@@ -264,7 +298,6 @@
|
|
|
264
298
|
"editor.record.loadError.title": "",
|
|
265
299
|
"editor.record.lock.harvested": "",
|
|
266
300
|
"editor.record.lock.owner": "",
|
|
267
|
-
"editor.record.lock.resourceType": "",
|
|
268
301
|
"editor.record.multilingual.confirmation.cancelText": "",
|
|
269
302
|
"editor.record.multilingual.confirmation.confirmText": "",
|
|
270
303
|
"editor.record.multilingual.confirmation.message": "",
|
|
@@ -494,7 +527,6 @@
|
|
|
494
527
|
"record.metadata.preview.config.idle": "",
|
|
495
528
|
"record.metadata.preview.config.saved": "",
|
|
496
529
|
"record.metadata.preview.config.saving": "",
|
|
497
|
-
"record.metadata.producer": "",
|
|
498
530
|
"record.metadata.publication": "",
|
|
499
531
|
"record.metadata.publications": "{count, plural, =0{} one{} other{}}",
|
|
500
532
|
"record.metadata.quality": "",
|
|
@@ -520,6 +552,7 @@
|
|
|
520
552
|
"record.metadata.quality.updateFrequency.failed": "",
|
|
521
553
|
"record.metadata.quality.updateFrequency.success": "",
|
|
522
554
|
"record.metadata.related": "",
|
|
555
|
+
"record.metadata.resource.contacts": "",
|
|
523
556
|
"record.metadata.resourceCreated": "",
|
|
524
557
|
"record.metadata.resourcePublished": "",
|
|
525
558
|
"record.metadata.resourceUpdated": "",
|