geonetwork-ui 2.10.0-dev.e97ea6950 → 2.10.0-dev.f1c00d5fe
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 +2558 -6985
- package/fesm2022/geonetwork-ui.mjs.map +1 -1
- package/index.d.ts +299 -189
- package/index.d.ts.map +1 -1
- package/package.json +25 -35
- package/src/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.ts +20 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/eu.dcat-ap.records.ts +4 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +23 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.reuse+ongules.ts +8 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.reuse+roilaye.ts +2 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.ts +2 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +2 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/georhena.records.ts +2 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/metadata-for-i18n.records.ts +4 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/metawal.records.ts +23 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/opendataswiss.records.ts +2 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/sextant.records.ts +4 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/vlaanderen.dcat-ap.records.ts +2 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/wallonie.records.reuse.ts +9 -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 +2 -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 +11 -0
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.ts +21 -0
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.ts +52 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +24 -1
- package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +73 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +79 -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 +79 -41
- 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 +37 -2
- package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +23 -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/domain/src/lib/repository/records-repository.interface.ts +2 -1
- package/src/libs/common/fixtures/src/lib/records.fixtures.ts +62 -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 +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 +68 -0
- package/src/libs/feature/editor/src/lib/components/contact-details/contact-details-form.component.ts +41 -0
- 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/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 +33 -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 +28 -16
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +16 -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 +354 -337
- package/src/libs/feature/editor/src/lib/models/editor-config.model.ts +10 -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 +2 -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.css +0 -0
- package/src/libs/feature/notify-reuse/src/lib/notify-reuse-form/notify-reuse-form.component.html +111 -0
- package/src/libs/feature/notify-reuse/src/lib/notify-reuse-form/notify-reuse-form.component.ts +234 -0
- 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 +3 -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/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-contact/metadata-contact.component.ts +2 -5
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.css +3 -2
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +26 -68
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.ts +30 -10
- 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/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/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/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/ui/widgets/src/lib/spinning-loader/spinning-loader.component.html +1 -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 +26 -2
- package/translations/de.json +112 -50
- package/translations/en.json +117 -55
- package/translations/es.json +86 -24
- package/translations/fr.json +114 -52
- package/translations/it.json +113 -51
- package/translations/nl.json +85 -23
- package/translations/pt.json +86 -24
- package/translations/sk.json +86 -24
- 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,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": "Email",
|
|
179
|
+
"editor.record.form.field.contactDetails.email.placeholder": "example@domainname.com",
|
|
180
|
+
"editor.record.form.field.contactDetails.firstName": "First name",
|
|
181
|
+
"editor.record.form.field.contactDetails.firstName.placeholder": "First name",
|
|
182
|
+
"editor.record.form.field.contactDetails.lastName": "Last name",
|
|
183
|
+
"editor.record.form.field.contactDetails.lastName.placeholder": "Last name",
|
|
184
|
+
"editor.record.form.field.contactDetails.organization": "Organization",
|
|
185
|
+
"editor.record.form.field.contactDetails.organization.placeholder": "Organization",
|
|
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,10 @@
|
|
|
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",
|
|
219
|
+
"editor.record.form.field.reuseUrl": "URL of the reuse",
|
|
185
220
|
"editor.record.form.field.securityConstraints": "Security constraints",
|
|
186
221
|
"editor.record.form.field.spatialExtents": "Spatial extents",
|
|
187
222
|
"editor.record.form.field.temporalExtents": "Temporal extents",
|
|
@@ -212,59 +247,65 @@
|
|
|
212
247
|
"editor.record.form.multilingual.title": "Translations",
|
|
213
248
|
"editor.record.form.multilingual.validate": "Validate",
|
|
214
249
|
"editor.record.form.page.accessAndContact": "Information for use",
|
|
215
|
-
"editor.record.form.page.description": "Dataset description",
|
|
250
|
+
"editor.record.form.page.description": "{recordKind, select, dataset{Dataset} service{Service} reuse{Reuse} other{Record}} description",
|
|
216
251
|
"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.).",
|
|
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.).",
|
|
220
255
|
"editor.record.form.section.annexes.label": "Annexes",
|
|
221
256
|
"editor.record.form.section.associatedResources.description": "Point out where the data can be found",
|
|
222
257
|
"editor.record.form.section.associatedResources.label": "Associated resources",
|
|
223
|
-
"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}}",
|
|
224
259
|
"editor.record.form.section.classification.label": "Keywords",
|
|
225
260
|
"editor.record.form.section.dataManagers.description": "The data managers are responsible for the data",
|
|
226
261
|
"editor.record.form.section.dataManagers.label": "Data managers",
|
|
227
262
|
"editor.record.form.section.geographicalCoverage.label": "Geographical coverage",
|
|
263
|
+
"editor.record.form.section.lightPointOfContact.label": "Point of contact",
|
|
228
264
|
"editor.record.form.section.metadataPointOfContact.description": "This information concerns the metadata",
|
|
229
265
|
"editor.record.form.section.metadataPointOfContact.label": "Metadata point of contact",
|
|
230
|
-
"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}}",
|
|
231
267
|
"editor.record.form.section.topics.label": "Topics",
|
|
232
268
|
"editor.record.form.section.useAndAccessConditions.label": "Use and access conditions",
|
|
233
269
|
"editor.record.form.temporalExtents.addDate": "Time instant",
|
|
234
270
|
"editor.record.form.temporalExtents.addRange": "Time period",
|
|
235
271
|
"editor.record.form.temporalExtents.date": "Date",
|
|
236
272
|
"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.
|
|
273
|
+
"editor.record.form.topics.iso.biota": "Biota",
|
|
274
|
+
"editor.record.form.topics.iso.boundaries": "Boundaries",
|
|
275
|
+
"editor.record.form.topics.iso.climatologyMeteorologyAtmosphere": "Climatology / Meteorology / Atmosphere",
|
|
276
|
+
"editor.record.form.topics.iso.economy": "Economy",
|
|
277
|
+
"editor.record.form.topics.iso.elevation": "Elevation",
|
|
278
|
+
"editor.record.form.topics.iso.environment": "Environnement",
|
|
279
|
+
"editor.record.form.topics.iso.farming": "Farming",
|
|
280
|
+
"editor.record.form.topics.iso.geoscientificInformation": "Geoscientific Information",
|
|
281
|
+
"editor.record.form.topics.iso.health": "Health",
|
|
282
|
+
"editor.record.form.topics.iso.imageryBaseMapsEarthCover": "Imagery / Base Maps / Earth Cover",
|
|
283
|
+
"editor.record.form.topics.iso.inlandWaters": "Inland Waters",
|
|
284
|
+
"editor.record.form.topics.iso.intelligenceMilitary": "Intelligence / Military",
|
|
285
|
+
"editor.record.form.topics.iso.location": "Location",
|
|
286
|
+
"editor.record.form.topics.iso.oceans": "Oceans",
|
|
287
|
+
"editor.record.form.topics.iso.planningCadastre": "Planning / Cadastre",
|
|
288
|
+
"editor.record.form.topics.iso.society": "Society",
|
|
289
|
+
"editor.record.form.topics.iso.structure": "Structure",
|
|
290
|
+
"editor.record.form.topics.iso.transportation": "Transportation",
|
|
291
|
+
"editor.record.form.topics.iso.utilitiesCommunication": "Utilities / Communication",
|
|
256
292
|
"editor.record.form.topics.placeholder": "Select one or several topics",
|
|
257
|
-
"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",
|
|
258
294
|
"editor.record.importFromExternalFile.failure.body": "Failure",
|
|
259
|
-
"editor.record.importFromExternalFile.failure.title": "The
|
|
295
|
+
"editor.record.importFromExternalFile.failure.title": "The import failed: ",
|
|
260
296
|
"editor.record.importFromExternalFile.success.body": "Import successful",
|
|
261
297
|
"editor.record.importFromExternalFile.success.title": "The dataset has been successfully imported.",
|
|
262
|
-
"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:",
|
|
263
305
|
"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",
|
|
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",
|
|
266
308
|
"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
309
|
"editor.record.multilingual.confirmation.cancelText": "Keep the language(s)",
|
|
269
310
|
"editor.record.multilingual.confirmation.confirmText": "Remove the language(s)",
|
|
270
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?",
|
|
@@ -274,31 +315,31 @@
|
|
|
274
315
|
"editor.record.onlineResourceError.closeMessage": "Understood",
|
|
275
316
|
"editor.record.onlineResourceError.title": "Error adding resource",
|
|
276
317
|
"editor.record.placeKeywordWithoutLabel": "Unnamed location",
|
|
277
|
-
"editor.record.publish": "Publish this dataset",
|
|
318
|
+
"editor.record.publish": "Publish this {recordKind, select, dataset{dataset} service{service} reuse{reuse} other{record}}",
|
|
278
319
|
"editor.record.publish.confirmation.cancelText": "Cancel",
|
|
279
320
|
"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:",
|
|
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:",
|
|
282
323
|
"editor.record.publishError.closeMessage": "Understood",
|
|
283
|
-
"editor.record.publishError.title": "Error publishing dataset",
|
|
284
|
-
"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!",
|
|
285
326
|
"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",
|
|
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",
|
|
287
328
|
"editor.record.publishVersionError.closeMessage": "Understood",
|
|
288
329
|
"editor.record.publishVersionError.title": "A critical issue was encountered",
|
|
289
|
-
"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:",
|
|
290
331
|
"editor.record.resourceError.closeMessage": "Understood",
|
|
291
|
-
"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",
|
|
292
333
|
"editor.record.saveStatus.draftWithChangesPending": "Saved - Unpublished differences",
|
|
293
334
|
"editor.record.saveStatus.recordNotPublished": "Saved - not published",
|
|
294
335
|
"editor.record.saveStatus.recordUpToDate": "Saved - Record up to date",
|
|
295
336
|
"editor.record.undo.confirmation.cancelText": "Keep the changes",
|
|
296
337
|
"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 ?",
|
|
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}} ?",
|
|
298
339
|
"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",
|
|
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",
|
|
302
343
|
"editor.sidebar.logout": "Log out",
|
|
303
344
|
"editor.sidebar.menu.editor": "Editor",
|
|
304
345
|
"editor.temporary.disabled": "Not implemented yet",
|
|
@@ -389,6 +430,21 @@
|
|
|
389
430
|
"multiselect.filter.placeholder": "Search",
|
|
390
431
|
"nav.back": "Back",
|
|
391
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",
|
|
392
448
|
"ogc.geojson.notsupported": "This OGC API does not support the GeoJSON format",
|
|
393
449
|
"ogc.unreachable.unknown": "The service could not be reached",
|
|
394
450
|
"organisation.filter.placeholder": "Filter results",
|
|
@@ -410,6 +466,7 @@
|
|
|
410
466
|
"record.action.download": "Download",
|
|
411
467
|
"record.action.duplicate": "Duplicate",
|
|
412
468
|
"record.action.duplicating": "Duplicating...",
|
|
469
|
+
"record.action.question": "Ask a question",
|
|
413
470
|
"record.action.rollback": "Rollback",
|
|
414
471
|
"record.action.switchLang": "Switch to default",
|
|
415
472
|
"record.action.view": "View",
|
|
@@ -421,6 +478,7 @@
|
|
|
421
478
|
"record.kind.reuse": "reuse",
|
|
422
479
|
"record.kind.service": "service",
|
|
423
480
|
"record.metadata.about": "Description",
|
|
481
|
+
"record.metadata.abstract.empty": "No description available",
|
|
424
482
|
"record.metadata.api": "API",
|
|
425
483
|
"record.metadata.api.accessServiceProtocol.GPFDL": "GPFDL",
|
|
426
484
|
"record.metadata.api.accessServiceProtocol.esriRest": "esriRest",
|
|
@@ -494,7 +552,6 @@
|
|
|
494
552
|
"record.metadata.preview.config.idle": "Set as default preview",
|
|
495
553
|
"record.metadata.preview.config.saved": "Saved !",
|
|
496
554
|
"record.metadata.preview.config.saving": "Saving...",
|
|
497
|
-
"record.metadata.producer": "Data producer",
|
|
498
555
|
"record.metadata.publication": "Date of publication",
|
|
499
556
|
"record.metadata.publications": "{count, plural, =0{publication} one{publication} other{publications}}",
|
|
500
557
|
"record.metadata.quality": "Metadata Quality",
|
|
@@ -520,6 +577,7 @@
|
|
|
520
577
|
"record.metadata.quality.updateFrequency.failed": "Update frequency is not specified",
|
|
521
578
|
"record.metadata.quality.updateFrequency.success": "Update frequency is specified",
|
|
522
579
|
"record.metadata.related": "Explore the catalog",
|
|
580
|
+
"record.metadata.resource.contacts": "Contacts for the resource",
|
|
523
581
|
"record.metadata.resourceCreated": "Created",
|
|
524
582
|
"record.metadata.resourcePublished": "Published",
|
|
525
583
|
"record.metadata.resourceUpdated": "Last updated",
|
|
@@ -549,6 +607,12 @@
|
|
|
549
607
|
"record.metadata.userFeedbacks.sortSelector.choices.oldestFirst": "Oldest comments first",
|
|
550
608
|
"record.metadata.userFeedbacks.sortSelector.label": "Sort by ...",
|
|
551
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",
|
|
552
616
|
"record.tab.chart": "Chart",
|
|
553
617
|
"record.tab.data": "Table",
|
|
554
618
|
"record.tab.map": "Map",
|
|
@@ -638,8 +702,6 @@
|
|
|
638
702
|
"service.metadata.filter": "Layers will be filtered by title and abstract",
|
|
639
703
|
"service.metadata.filter.noLayers": "No layer matches your search",
|
|
640
704
|
"service.metadata.other": "Other information",
|
|
641
|
-
"service.metadata.question": "Ask a question",
|
|
642
|
-
"service.metadata.reuse": "Declare a reuse",
|
|
643
705
|
"service.metadata.search": "Search through the layer list",
|
|
644
706
|
"service.metadata.search.clear": "Clear the layer search",
|
|
645
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": "",
|
|
@@ -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": "",
|
|
@@ -182,6 +216,7 @@
|
|
|
182
216
|
"editor.record.form.field.resourceCreated": "",
|
|
183
217
|
"editor.record.form.field.resourceIdentifier": "",
|
|
184
218
|
"editor.record.form.field.resourceUpdated": "",
|
|
219
|
+
"editor.record.form.field.reuseUrl": "URL de la reutilización",
|
|
185
220
|
"editor.record.form.field.securityConstraints": "",
|
|
186
221
|
"editor.record.form.field.spatialExtents": "",
|
|
187
222
|
"editor.record.form.field.temporalExtents": "",
|
|
@@ -225,6 +260,7 @@
|
|
|
225
260
|
"editor.record.form.section.dataManagers.description": "",
|
|
226
261
|
"editor.record.form.section.dataManagers.label": "",
|
|
227
262
|
"editor.record.form.section.geographicalCoverage.label": "",
|
|
263
|
+
"editor.record.form.section.lightPointOfContact.label": "Punto de contacto",
|
|
228
264
|
"editor.record.form.section.metadataPointOfContact.description": "",
|
|
229
265
|
"editor.record.form.section.metadataPointOfContact.label": "",
|
|
230
266
|
"editor.record.form.section.topics.description": "",
|
|
@@ -234,37 +270,42 @@
|
|
|
234
270
|
"editor.record.form.temporalExtents.addRange": "",
|
|
235
271
|
"editor.record.form.temporalExtents.date": "",
|
|
236
272
|
"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.
|
|
273
|
+
"editor.record.form.topics.iso.biota": "",
|
|
274
|
+
"editor.record.form.topics.iso.boundaries": "",
|
|
275
|
+
"editor.record.form.topics.iso.climatologyMeteorologyAtmosphere": "",
|
|
276
|
+
"editor.record.form.topics.iso.economy": "",
|
|
277
|
+
"editor.record.form.topics.iso.elevation": "",
|
|
278
|
+
"editor.record.form.topics.iso.environment": "",
|
|
279
|
+
"editor.record.form.topics.iso.farming": "",
|
|
280
|
+
"editor.record.form.topics.iso.geoscientificInformation": "",
|
|
281
|
+
"editor.record.form.topics.iso.health": "",
|
|
282
|
+
"editor.record.form.topics.iso.imageryBaseMapsEarthCover": "",
|
|
283
|
+
"editor.record.form.topics.iso.inlandWaters": "",
|
|
284
|
+
"editor.record.form.topics.iso.intelligenceMilitary": "",
|
|
285
|
+
"editor.record.form.topics.iso.location": "",
|
|
286
|
+
"editor.record.form.topics.iso.oceans": "",
|
|
287
|
+
"editor.record.form.topics.iso.planningCadastre": "",
|
|
288
|
+
"editor.record.form.topics.iso.society": "",
|
|
289
|
+
"editor.record.form.topics.iso.structure": "",
|
|
290
|
+
"editor.record.form.topics.iso.transportation": "",
|
|
291
|
+
"editor.record.form.topics.iso.utilitiesCommunication": "",
|
|
256
292
|
"editor.record.form.topics.placeholder": "",
|
|
257
|
-
"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",
|
|
258
294
|
"editor.record.importFromExternalFile.failure.body": "",
|
|
259
295
|
"editor.record.importFromExternalFile.failure.title": "",
|
|
260
296
|
"editor.record.importFromExternalFile.success.body": "",
|
|
261
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",
|
|
262
304
|
"editor.record.loadError.body": "",
|
|
263
305
|
"editor.record.loadError.closeMessage": "",
|
|
264
306
|
"editor.record.loadError.title": "",
|
|
265
307
|
"editor.record.lock.harvested": "",
|
|
266
308
|
"editor.record.lock.owner": "",
|
|
267
|
-
"editor.record.lock.resourceType": "",
|
|
268
309
|
"editor.record.multilingual.confirmation.cancelText": "",
|
|
269
310
|
"editor.record.multilingual.confirmation.confirmText": "",
|
|
270
311
|
"editor.record.multilingual.confirmation.message": "",
|
|
@@ -389,6 +430,21 @@
|
|
|
389
430
|
"multiselect.filter.placeholder": "",
|
|
390
431
|
"nav.back": "",
|
|
391
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",
|
|
392
448
|
"ogc.geojson.notsupported": "",
|
|
393
449
|
"ogc.unreachable.unknown": "",
|
|
394
450
|
"organisation.filter.placeholder": "",
|
|
@@ -410,6 +466,7 @@
|
|
|
410
466
|
"record.action.download": "",
|
|
411
467
|
"record.action.duplicate": "",
|
|
412
468
|
"record.action.duplicating": "",
|
|
469
|
+
"record.action.question": "",
|
|
413
470
|
"record.action.rollback": "",
|
|
414
471
|
"record.action.switchLang": "",
|
|
415
472
|
"record.action.view": "",
|
|
@@ -421,6 +478,7 @@
|
|
|
421
478
|
"record.kind.reuse": "",
|
|
422
479
|
"record.kind.service": "",
|
|
423
480
|
"record.metadata.about": "",
|
|
481
|
+
"record.metadata.abstract.empty": "",
|
|
424
482
|
"record.metadata.api": "",
|
|
425
483
|
"record.metadata.api.accessServiceProtocol.GPFDL": "",
|
|
426
484
|
"record.metadata.api.accessServiceProtocol.esriRest": "",
|
|
@@ -494,7 +552,6 @@
|
|
|
494
552
|
"record.metadata.preview.config.idle": "",
|
|
495
553
|
"record.metadata.preview.config.saved": "",
|
|
496
554
|
"record.metadata.preview.config.saving": "",
|
|
497
|
-
"record.metadata.producer": "",
|
|
498
555
|
"record.metadata.publication": "",
|
|
499
556
|
"record.metadata.publications": "{count, plural, =0{} one{} other{}}",
|
|
500
557
|
"record.metadata.quality": "",
|
|
@@ -520,6 +577,7 @@
|
|
|
520
577
|
"record.metadata.quality.updateFrequency.failed": "",
|
|
521
578
|
"record.metadata.quality.updateFrequency.success": "",
|
|
522
579
|
"record.metadata.related": "",
|
|
580
|
+
"record.metadata.resource.contacts": "",
|
|
523
581
|
"record.metadata.resourceCreated": "",
|
|
524
582
|
"record.metadata.resourcePublished": "",
|
|
525
583
|
"record.metadata.resourceUpdated": "",
|
|
@@ -549,6 +607,12 @@
|
|
|
549
607
|
"record.metadata.userFeedbacks.sortSelector.choices.oldestFirst": "",
|
|
550
608
|
"record.metadata.userFeedbacks.sortSelector.label": "",
|
|
551
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": "",
|
|
552
616
|
"record.tab.chart": "",
|
|
553
617
|
"record.tab.data": "",
|
|
554
618
|
"record.tab.map": "",
|
|
@@ -638,8 +702,6 @@
|
|
|
638
702
|
"service.metadata.filter": "",
|
|
639
703
|
"service.metadata.filter.noLayers": "",
|
|
640
704
|
"service.metadata.other": "",
|
|
641
|
-
"service.metadata.question": "",
|
|
642
|
-
"service.metadata.reuse": "",
|
|
643
705
|
"service.metadata.search": "",
|
|
644
706
|
"service.metadata.search.clear": "",
|
|
645
707
|
"service.metadata.spatialExtent": "",
|