geonetwork-ui 2.10.0-dev.91673b3ba → 2.10.0-dev.981f59a75
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 +1536 -6196
- package/fesm2022/geonetwork-ui.mjs.map +1 -1
- package/index.d.ts +257 -182
- 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 +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 +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 +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 +12 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +14 -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 +36 -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 +59 -37
- 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 +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 -19
- 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 +39 -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 +9 -2
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.ts +12 -0
- 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 +111 -0
- package/src/libs/feature/notify-reuse/src/lib/notify-reuse-form/notify-reuse-form.component.ts +229 -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 +29 -4
- package/src/libs/ui/elements/src/lib/contact-pill/contact-pill.component.ts +51 -7
- package/src/libs/ui/elements/src/lib/external-link-card/external-link-card.component.html +2 -1
- package/src/libs/ui/elements/src/lib/external-link-card/external-link-card.component.ts +2 -2
- package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.css +13 -0
- package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.html +13 -3
- package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.ts +43 -6
- package/src/libs/ui/elements/src/lib/keyword-badge/keyword-badge.component.html +14 -0
- package/src/libs/ui/elements/src/lib/keyword-badge/keyword-badge.component.ts +85 -0
- package/src/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.ts +2 -2
- package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.ts +2 -5
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.css +5 -0
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +7 -10
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.ts +2 -2
- package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.html +4 -5
- package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.ts +4 -0
- package/src/libs/ui/inputs/src/lib/badge/badge.component.html +33 -26
- package/src/libs/ui/inputs/src/lib/badge/badge.component.ts +9 -0
- package/src/libs/ui/inputs/src/lib/button/button.component.ts +4 -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/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/user-display.ts +9 -0
- package/style.css +0 -1
- package/tailwind.base.css +20 -2
- package/translations/de.json +93 -48
- package/translations/en.json +98 -53
- package/translations/es.json +67 -22
- package/translations/fr.json +95 -50
- package/translations/it.json +94 -49
- package/translations/nl.json +66 -21
- package/translations/pt.json +67 -22
- package/translations/sk.json +67 -22
- package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.css +0 -3
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",
|
|
@@ -115,7 +119,28 @@
|
|
|
115
119
|
"domain.record.updateFrequency.week": "{count, plural, =0{0 krát} one{Raz} other{{count} krát}} za týždeň",
|
|
116
120
|
"domain.record.updateFrequency.weekly": "Údaje sa aktualizujú týždenne",
|
|
117
121
|
"domain.record.updateFrequency.year": "{count, plural, =0{0 krát} one{Raz} other{{count} krát}} za rok",
|
|
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": "neznámy",
|
|
141
|
+
"downloads.format.webp": "",
|
|
142
|
+
"downloads.format.xml": "",
|
|
143
|
+
"downloads.format.zip": "",
|
|
119
144
|
"downloads.wfs.featuretype.not.found": "Vrstva nebola nájdená",
|
|
120
145
|
"dropFile": "nahrať súbor",
|
|
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": "",
|
|
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": "Licencia",
|
|
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": "Táto
|
|
291
|
+
"editor.record.form.updateFrequency.planned": "{recordKind, select, dataset{Táto dátová sada} service{Táto služba} reuse{Toto opätovné použitie} other{Tento záznam}} sa pravidelne aktualizuje",
|
|
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": "",
|
|
@@ -389,6 +422,18 @@
|
|
|
389
422
|
"multiselect.filter.placeholder": "Hľadať",
|
|
390
423
|
"nav.back": "Späť",
|
|
391
424
|
"navbar.mobile.menuTitle": "",
|
|
425
|
+
"notify.reuse.form.error.body": "",
|
|
426
|
+
"notify.reuse.form.error.title": "",
|
|
427
|
+
"notify.reuse.form.field.email": "E-mail",
|
|
428
|
+
"notify.reuse.form.field.email.placeholder": "e-mailová adresa kontaktu",
|
|
429
|
+
"notify.reuse.form.field.title": "Názov",
|
|
430
|
+
"notify.reuse.form.field.title.placeholder": "Názov opätovného použitia",
|
|
431
|
+
"notify.reuse.form.field.url": "URL opätovného použitia",
|
|
432
|
+
"notify.reuse.form.field.url.placeholder": "https://www.priklad",
|
|
433
|
+
"notify.reuse.form.required.hint": "* : Povinné polia pre vytvorenie opätovného použitia",
|
|
434
|
+
"notify.reuse.form.submit": "Nahlásiť opätovné použitie",
|
|
435
|
+
"notify.reuse.form.title": "Nahlásiť opätovné použitie",
|
|
436
|
+
"notify.reuse.link.description": "Zdroj opätovného použitia vytvorený cez Datahub",
|
|
392
437
|
"ogc.geojson.notsupported": "",
|
|
393
438
|
"ogc.unreachable.unknown": "So službou sa nedalo spojiť",
|
|
394
439
|
"organisation.filter.placeholder": "Filtrovať výsledky",
|
|
@@ -421,6 +466,7 @@
|
|
|
421
466
|
"record.kind.reuse": "",
|
|
422
467
|
"record.kind.service": "",
|
|
423
468
|
"record.metadata.about": "O",
|
|
469
|
+
"record.metadata.abstract.empty": "",
|
|
424
470
|
"record.metadata.api": "API",
|
|
425
471
|
"record.metadata.api.accessServiceProtocol.GPFDL": "",
|
|
426
472
|
"record.metadata.api.accessServiceProtocol.esriRest": "",
|
|
@@ -494,7 +540,6 @@
|
|
|
494
540
|
"record.metadata.preview.config.idle": "",
|
|
495
541
|
"record.metadata.preview.config.saved": "",
|
|
496
542
|
"record.metadata.preview.config.saving": "",
|
|
497
|
-
"record.metadata.producer": "",
|
|
498
543
|
"record.metadata.publication": "dátum publikácia",
|
|
499
544
|
"record.metadata.publications": "{count, plural, =0{publikácia} one{publikácia} other{publikácie}}",
|
|
500
545
|
"record.metadata.quality": "Kvalita metadát",
|