geonetwork-ui 2.10.0-dev.dc713c01a → 2.10.0-dev.e2dc4fd62
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 +872 -5806
- package/fesm2022/geonetwork-ui.mjs.map +1 -1
- package/index.d.ts +212 -89
- 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 +68 -34
- 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 +5 -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 +6 -0
- package/src/libs/feature/editor/src/lib/+state/editor.effects.ts +0 -1
- package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +10 -1
- package/src/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.ts +0 -2
- package/src/libs/feature/editor/src/lib/components/contact-details/contact-details-form.component.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/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-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-topics/form-field-topics.component.ts +2 -2
- 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 +1 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +5 -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 +5 -1
- package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.ts +77 -5
- package/src/libs/feature/editor/src/lib/fields.config.ts +60 -47
- package/src/libs/feature/editor/src/lib/models/editor-config.model.ts +4 -0
- package/src/libs/feature/editor/src/lib/services/editor.service.ts +1 -1
- 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/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/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/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/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/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/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 +1 -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 +33 -20
- package/translations/en.json +33 -20
- package/translations/es.json +33 -20
- package/translations/fr.json +33 -20
- package/translations/it.json +33 -20
- package/translations/nl.json +33 -20
- package/translations/pt.json +33 -20
- package/translations/sk.json +33 -20
package/translations/pt.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": "",
|
|
@@ -150,6 +154,14 @@
|
|
|
150
154
|
"editor.record.form.draft.updateAlert": "",
|
|
151
155
|
"editor.record.form.field.abstract": "",
|
|
152
156
|
"editor.record.form.field.constraintsShortcuts": "",
|
|
157
|
+
"editor.record.form.field.contactDetails.email": "",
|
|
158
|
+
"editor.record.form.field.contactDetails.email.placeholder": "",
|
|
159
|
+
"editor.record.form.field.contactDetails.firstName": "",
|
|
160
|
+
"editor.record.form.field.contactDetails.firstName.placeholder": "",
|
|
161
|
+
"editor.record.form.field.contactDetails.lastName": "",
|
|
162
|
+
"editor.record.form.field.contactDetails.lastName.placeholder": "",
|
|
163
|
+
"editor.record.form.field.contactDetails.organization": "",
|
|
164
|
+
"editor.record.form.field.contactDetails.organization.placeholder": "",
|
|
153
165
|
"editor.record.form.field.contacts": "",
|
|
154
166
|
"editor.record.form.field.contacts.noContact": "",
|
|
155
167
|
"editor.record.form.field.contacts.placeholder": "",
|
|
@@ -159,6 +171,7 @@
|
|
|
159
171
|
"editor.record.form.field.legalConstraints": "",
|
|
160
172
|
"editor.record.form.field.license": "",
|
|
161
173
|
"editor.record.form.field.onlineLinkResources": "",
|
|
174
|
+
"editor.record.form.field.onlineLinkageResource.defaultName": "",
|
|
162
175
|
"editor.record.form.field.onlineResource.cancel": "",
|
|
163
176
|
"editor.record.form.field.onlineResource.confirm": "",
|
|
164
177
|
"editor.record.form.field.onlineResource.dialogTitle": "",
|
|
@@ -234,25 +247,25 @@
|
|
|
234
247
|
"editor.record.form.temporalExtents.addRange": "",
|
|
235
248
|
"editor.record.form.temporalExtents.date": "",
|
|
236
249
|
"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.
|
|
250
|
+
"editor.record.form.topics.iso.biota": "",
|
|
251
|
+
"editor.record.form.topics.iso.boundaries": "",
|
|
252
|
+
"editor.record.form.topics.iso.climatologyMeteorologyAtmosphere": "",
|
|
253
|
+
"editor.record.form.topics.iso.economy": "",
|
|
254
|
+
"editor.record.form.topics.iso.elevation": "",
|
|
255
|
+
"editor.record.form.topics.iso.environment": "",
|
|
256
|
+
"editor.record.form.topics.iso.farming": "",
|
|
257
|
+
"editor.record.form.topics.iso.geoscientificInformation": "",
|
|
258
|
+
"editor.record.form.topics.iso.health": "",
|
|
259
|
+
"editor.record.form.topics.iso.imageryBaseMapsEarthCover": "",
|
|
260
|
+
"editor.record.form.topics.iso.intelligenceMilitary": "",
|
|
261
|
+
"editor.record.form.topics.iso.location": "",
|
|
262
|
+
"editor.record.form.topics.iso.oceans": "",
|
|
263
|
+
"editor.record.form.topics.iso.planningCadastre": "",
|
|
264
|
+
"editor.record.form.topics.iso.society": "",
|
|
265
|
+
"editor.record.form.topics.iso.structure": "",
|
|
266
|
+
"editor.record.form.topics.iso.transportation": "",
|
|
267
|
+
"editor.record.form.topics.iso.utilitiesCommunication": "",
|
|
268
|
+
"editor.record.form.topics.iso.inlandWaters": "",
|
|
256
269
|
"editor.record.form.topics.placeholder": "",
|
|
257
270
|
"editor.record.form.updateFrequency.planned": "Este conjunto de dados é atualizado regularmente.",
|
|
258
271
|
"editor.record.importFromExternalFile.failure.body": "",
|
|
@@ -494,7 +507,6 @@
|
|
|
494
507
|
"record.metadata.preview.config.idle": "",
|
|
495
508
|
"record.metadata.preview.config.saved": "",
|
|
496
509
|
"record.metadata.preview.config.saving": "",
|
|
497
|
-
"record.metadata.producer": "",
|
|
498
510
|
"record.metadata.publication": "",
|
|
499
511
|
"record.metadata.publications": "{count, plural, =0{} one{} other{}}",
|
|
500
512
|
"record.metadata.quality": "",
|
|
@@ -520,6 +532,7 @@
|
|
|
520
532
|
"record.metadata.quality.updateFrequency.failed": "",
|
|
521
533
|
"record.metadata.quality.updateFrequency.success": "",
|
|
522
534
|
"record.metadata.related": "",
|
|
535
|
+
"record.metadata.resource.contacts": "",
|
|
523
536
|
"record.metadata.resourceCreated": "",
|
|
524
537
|
"record.metadata.resourcePublished": "",
|
|
525
538
|
"record.metadata.resourceUpdated": "",
|
package/translations/sk.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": "Kľúčové slová",
|
|
93
|
+
"domain.record.keywordType.place": "Miesto",
|
|
94
|
+
"domain.record.keywordType.temporal": "Časový",
|
|
95
|
+
"domain.record.keywordType.theme": "Téma",
|
|
92
96
|
"domain.record.status.completed": "Dokončené",
|
|
93
97
|
"domain.record.status.deprecated": "Zastarané",
|
|
94
98
|
"domain.record.status.ongoing": "Prebiehajúce",
|
|
@@ -150,6 +154,14 @@
|
|
|
150
154
|
"editor.record.form.draft.updateAlert": "",
|
|
151
155
|
"editor.record.form.field.abstract": "",
|
|
152
156
|
"editor.record.form.field.constraintsShortcuts": "",
|
|
157
|
+
"editor.record.form.field.contactDetails.email": "",
|
|
158
|
+
"editor.record.form.field.contactDetails.email.placeholder": "",
|
|
159
|
+
"editor.record.form.field.contactDetails.firstName": "",
|
|
160
|
+
"editor.record.form.field.contactDetails.firstName.placeholder": "",
|
|
161
|
+
"editor.record.form.field.contactDetails.lastName": "",
|
|
162
|
+
"editor.record.form.field.contactDetails.lastName.placeholder": "",
|
|
163
|
+
"editor.record.form.field.contactDetails.organization": "",
|
|
164
|
+
"editor.record.form.field.contactDetails.organization.placeholder": "",
|
|
153
165
|
"editor.record.form.field.contacts": "",
|
|
154
166
|
"editor.record.form.field.contacts.noContact": "",
|
|
155
167
|
"editor.record.form.field.contacts.placeholder": "",
|
|
@@ -159,6 +171,7 @@
|
|
|
159
171
|
"editor.record.form.field.legalConstraints": "",
|
|
160
172
|
"editor.record.form.field.license": "Licencia",
|
|
161
173
|
"editor.record.form.field.onlineLinkResources": "",
|
|
174
|
+
"editor.record.form.field.onlineLinkageResource.defaultName": "",
|
|
162
175
|
"editor.record.form.field.onlineResource.cancel": "",
|
|
163
176
|
"editor.record.form.field.onlineResource.confirm": "",
|
|
164
177
|
"editor.record.form.field.onlineResource.dialogTitle": "",
|
|
@@ -234,25 +247,25 @@
|
|
|
234
247
|
"editor.record.form.temporalExtents.addRange": "",
|
|
235
248
|
"editor.record.form.temporalExtents.date": "",
|
|
236
249
|
"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.
|
|
250
|
+
"editor.record.form.topics.iso.biota": "",
|
|
251
|
+
"editor.record.form.topics.iso.boundaries": "",
|
|
252
|
+
"editor.record.form.topics.iso.climatologyMeteorologyAtmosphere": "",
|
|
253
|
+
"editor.record.form.topics.iso.economy": "",
|
|
254
|
+
"editor.record.form.topics.iso.elevation": "",
|
|
255
|
+
"editor.record.form.topics.iso.environment": "",
|
|
256
|
+
"editor.record.form.topics.iso.farming": "",
|
|
257
|
+
"editor.record.form.topics.iso.geoscientificInformation": "",
|
|
258
|
+
"editor.record.form.topics.iso.health": "",
|
|
259
|
+
"editor.record.form.topics.iso.imageryBaseMapsEarthCover": "",
|
|
260
|
+
"editor.record.form.topics.iso.intelligenceMilitary": "",
|
|
261
|
+
"editor.record.form.topics.iso.location": "",
|
|
262
|
+
"editor.record.form.topics.iso.oceans": "",
|
|
263
|
+
"editor.record.form.topics.iso.planningCadastre": "",
|
|
264
|
+
"editor.record.form.topics.iso.society": "",
|
|
265
|
+
"editor.record.form.topics.iso.structure": "",
|
|
266
|
+
"editor.record.form.topics.iso.transportation": "",
|
|
267
|
+
"editor.record.form.topics.iso.utilitiesCommunication": "",
|
|
268
|
+
"editor.record.form.topics.iso.inlandWaters": "",
|
|
256
269
|
"editor.record.form.topics.placeholder": "",
|
|
257
270
|
"editor.record.form.updateFrequency.planned": "Táto množina údajov sa pravidelne aktualizuje",
|
|
258
271
|
"editor.record.importFromExternalFile.failure.body": "",
|
|
@@ -494,7 +507,6 @@
|
|
|
494
507
|
"record.metadata.preview.config.idle": "",
|
|
495
508
|
"record.metadata.preview.config.saved": "",
|
|
496
509
|
"record.metadata.preview.config.saving": "",
|
|
497
|
-
"record.metadata.producer": "",
|
|
498
510
|
"record.metadata.publication": "dátum publikácia",
|
|
499
511
|
"record.metadata.publications": "{count, plural, =0{publikácia} one{publikácia} other{publikácie}}",
|
|
500
512
|
"record.metadata.quality": "Kvalita metadát",
|
|
@@ -520,6 +532,7 @@
|
|
|
520
532
|
"record.metadata.quality.updateFrequency.failed": "Frekvencia aktualizácie nie je určená",
|
|
521
533
|
"record.metadata.quality.updateFrequency.success": "Frekvencia aktualizácie je určená",
|
|
522
534
|
"record.metadata.related": "Súvisiace záznamy",
|
|
535
|
+
"record.metadata.resource.contacts": "Kontakty k zdroju",
|
|
523
536
|
"record.metadata.resourceCreated": "",
|
|
524
537
|
"record.metadata.resourcePublished": "",
|
|
525
538
|
"record.metadata.resourceUpdated": "",
|