geonetwork-ui 2.10.0-dev.5f1c6f718 → 2.10.0-dev.6183d942b

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.
Files changed (127) hide show
  1. package/fesm2022/geonetwork-ui.mjs +737 -5773
  2. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  3. package/index.d.ts +171 -79
  4. package/index.d.ts.map +1 -1
  5. package/material-styles.css +483 -0
  6. package/package.json +25 -35
  7. package/src/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.ts +9 -0
  8. package/src/libs/api/metadata-converter/src/lib/fixtures/eu.dcat-ap.records.ts +2 -0
  9. package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +1 -0
  10. package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.reuse+ongules.ts +7 -0
  11. package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.reuse+roilaye.ts +1 -0
  12. package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.ts +1 -0
  13. package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +1 -0
  14. package/src/libs/api/metadata-converter/src/lib/fixtures/georhena.records.ts +1 -0
  15. package/src/libs/api/metadata-converter/src/lib/fixtures/metadata-for-i18n.records.ts +2 -0
  16. package/src/libs/api/metadata-converter/src/lib/fixtures/metawal.records.ts +1 -0
  17. package/src/libs/api/metadata-converter/src/lib/fixtures/opendataswiss.records.ts +1 -0
  18. package/src/libs/api/metadata-converter/src/lib/fixtures/sextant.records.ts +2 -0
  19. package/src/libs/api/metadata-converter/src/lib/fixtures/vlaanderen.dcat-ap.records.ts +1 -0
  20. package/src/libs/api/metadata-converter/src/lib/fixtures/wallonie.records.reuse.ts +8 -0
  21. package/src/libs/api/metadata-converter/src/lib/gn4/atomic-operations.ts +48 -7
  22. package/src/libs/api/metadata-converter/src/lib/gn4/gn4.converter.ts +1 -0
  23. package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +5 -4
  24. package/src/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.ts +2 -2
  25. package/src/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.ts +1 -0
  26. package/src/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.ts +7 -0
  27. package/src/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.ts +8 -0
  28. package/src/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.ts +8 -0
  29. package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +11 -0
  30. package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +33 -0
  31. package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +33 -0
  32. package/src/libs/api/repository/src/lib/gn4/auth/auth.service.ts +8 -4
  33. package/src/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.ts +2 -2
  34. package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +54 -32
  35. package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.ts +1 -1
  36. package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.ts +1 -1
  37. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +48 -2
  38. package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +13 -5
  39. package/src/libs/common/domain/src/lib/model/thesaurus/thesaurus.model.ts +2 -1
  40. package/src/libs/common/domain/src/lib/model/user/group.model.ts +8 -0
  41. package/src/libs/common/domain/src/lib/model/user/index.ts +1 -0
  42. package/src/libs/common/domain/src/lib/platform.service.interface.ts +2 -0
  43. package/src/libs/common/fixtures/src/lib/records.fixtures.ts +5 -0
  44. package/src/libs/feature/catalog/src/lib/sources/sources.service.ts +5 -2
  45. package/src/libs/feature/editor/src/lib/+state/editor.actions.ts +4 -1
  46. package/src/libs/feature/editor/src/lib/+state/editor.effects.ts +26 -19
  47. package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +5 -1
  48. package/src/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.ts +0 -2
  49. package/src/libs/feature/editor/src/lib/components/contact-details/contact-details-form.component.css +0 -0
  50. package/src/libs/feature/editor/src/lib/components/contact-details/contact-details-form.component.html +67 -0
  51. package/src/libs/feature/editor/src/lib/components/contact-details/contact-details-form.component.ts +39 -0
  52. package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.html +5 -5
  53. package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.ts +2 -1
  54. package/src/libs/feature/editor/src/lib/components/record-form/form-field/field-focus.directive.ts +41 -0
  55. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.ts +6 -8
  56. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.html +9 -2
  57. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.ts +12 -0
  58. 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
  59. 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
  60. 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
  61. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.html +4 -4
  62. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.ts +7 -0
  63. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-topics/form-field-topics.component.ts +2 -2
  64. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.css +3 -0
  65. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +11 -9
  66. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +12 -0
  67. package/src/libs/feature/editor/src/lib/components/record-form/form-field/index.ts +1 -0
  68. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.css +34 -2
  69. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.html +5 -2
  70. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.ts +51 -33
  71. package/src/libs/feature/editor/src/lib/fields.config.ts +60 -47
  72. package/src/libs/feature/editor/src/lib/models/editor-config.model.ts +4 -0
  73. package/src/libs/feature/editor/src/lib/services/editor.service.ts +4 -9
  74. package/src/libs/feature/map/src/lib/utils/map-utils.service.ts +33 -0
  75. package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +9 -1
  76. package/src/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.ts +2 -2
  77. package/src/libs/ui/dataviz/src/index.ts +0 -1
  78. package/src/libs/ui/elements/src/index.ts +1 -0
  79. package/src/libs/ui/elements/src/lib/contact-details/contact-details.component.html +88 -0
  80. package/src/libs/ui/elements/src/lib/contact-details/contact-details.component.ts +45 -0
  81. package/src/libs/ui/elements/src/lib/contact-pill/contact-pill.component.html +29 -4
  82. package/src/libs/ui/elements/src/lib/contact-pill/contact-pill.component.ts +51 -7
  83. package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.css +13 -0
  84. package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.html +13 -3
  85. package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.ts +43 -6
  86. package/src/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.ts +2 -2
  87. package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.ts +2 -5
  88. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +20 -10
  89. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.ts +29 -1
  90. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.html +4 -5
  91. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.ts +4 -0
  92. package/src/libs/ui/inputs/src/lib/button/button.component.ts +4 -0
  93. package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.ts +2 -2
  94. package/src/libs/ui/inputs/src/lib/url-input/url-input.component.html +2 -2
  95. package/src/libs/ui/inputs/src/lib/url-input/url-input.component.ts +2 -1
  96. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.html +5 -5
  97. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.ts +9 -1
  98. package/src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.html +7 -7
  99. package/src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.ts +14 -1
  100. package/src/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.ts +4 -54
  101. package/src/libs/ui/map/src/lib/map-utils.ts +48 -0
  102. package/src/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.ts +1 -1
  103. package/src/libs/ui/widgets/src/lib/popover/popover.component.ts +7 -1
  104. package/src/libs/util/app-config/src/lib/app-config.ts +70 -9
  105. package/src/libs/util/app-config/src/lib/model.ts +7 -0
  106. package/src/libs/util/app-config/src/lib/parse-utils.ts +50 -1
  107. package/src/libs/util/data-fetcher/src/lib/readers/base-file.ts +1 -2
  108. package/src/libs/util/data-fetcher/src/lib/readers/wfs.ts +6 -3
  109. package/src/libs/util/i18n/src/index.ts +0 -1
  110. package/src/libs/util/i18n/src/lib/i18n.constants.ts +17 -11
  111. package/src/libs/util/i18n/src/lib/i18n.interceptor.ts +2 -2
  112. package/src/libs/util/i18n/src/lib/i18n.providers.ts +14 -17
  113. package/src/libs/util/i18n/src/lib/test.translate.loader.ts +48 -0
  114. package/src/libs/util/shared/src/lib/links/link-utils.ts +1 -1
  115. package/src/libs/util/shared/src/lib/services/date.service.ts +3 -3
  116. package/src/libs/util/shared/src/lib/utils/geojson.ts +58 -1
  117. package/src/libs/util/shared/src/lib/utils/user-display.ts +9 -0
  118. package/style.css +0 -1
  119. package/tailwind.base.css +8 -0
  120. package/translations/de.json +32 -20
  121. package/translations/en.json +32 -20
  122. package/translations/es.json +32 -20
  123. package/translations/fr.json +32 -20
  124. package/translations/it.json +32 -20
  125. package/translations/nl.json +32 -20
  126. package/translations/pt.json +32 -20
  127. package/translations/sk.json +32 -20
@@ -0,0 +1,48 @@
1
+ import { inject, Injectable, InjectionToken } from '@angular/core'
2
+ import {
3
+ provideTranslateService,
4
+ TranslateCompiler,
5
+ TranslateLoader,
6
+ TranslationObject,
7
+ } from '@ngx-translate/core'
8
+ import { Observable, of } from 'rxjs'
9
+ import { TranslateMessageFormatCompiler } from 'ngx-translate-messageformat-compiler'
10
+
11
+ /**
12
+ * This translate loader is used for testing purposes, it allows to provide translations directly in the test file without having to create JSON files
13
+ * Taken from https://github.com/mwootendev/ngx-translate-plugins/issues/87
14
+ */
15
+
16
+ const TestTranslations = new InjectionToken<Record<string, TranslationObject>>(
17
+ 'test-translations'
18
+ )
19
+
20
+ @Injectable()
21
+ class TestTranslateLoader implements TranslateLoader {
22
+ translations = inject(TestTranslations)
23
+ getTranslation(lang: string): Observable<TranslationObject> {
24
+ return of(this.translations[lang] as TranslationObject)
25
+ }
26
+ }
27
+
28
+ export function provideTranslateTestingService(
29
+ translations: Record<string, TranslationObject>
30
+ ) {
31
+ return provideTranslateService({
32
+ loader: [
33
+ {
34
+ provide: TestTranslations,
35
+ useValue: translations,
36
+ },
37
+ {
38
+ provide: TranslateLoader,
39
+ useClass: TestTranslateLoader,
40
+ },
41
+ ],
42
+ fallbackLang: 'en',
43
+ compiler: {
44
+ provide: TranslateCompiler,
45
+ useClass: TranslateMessageFormatCompiler,
46
+ },
47
+ })
48
+ }
@@ -266,7 +266,7 @@ export function checkFileFormat(
266
266
  new RegExp(`[./]${format}`, 'i').test(link.name.toLowerCase())) ||
267
267
  ('url' in link &&
268
268
  new RegExp(`[./]${format}`, 'i').test(link.url.toString())) ||
269
- ('name' in link && link.name.toLowerCase().includes(format))
269
+ ('name' in link && new RegExp(`\\b${format}\\b`, 'i').test(link.name))
270
270
  )
271
271
  }
272
272
 
@@ -1,4 +1,4 @@
1
- import { Injectable, inject } from '@angular/core'
1
+ import { inject, Injectable } from '@angular/core'
2
2
  import { TranslateService } from '@ngx-translate/core'
3
3
  import { type Locale } from 'date-fns/locale'
4
4
  import { formatDistance } from 'date-fns/formatDistance'
@@ -30,13 +30,13 @@ export class DateService {
30
30
  locale: string
31
31
  dateObj: Date
32
32
  } {
33
- const locale = this.translateService.currentLang || DEFAULT_LANGUAGE
33
+ const locale = this.translateService.getCurrentLang() || DEFAULT_LANGUAGE
34
34
  const dateObj = this.getDateObject(date)
35
35
  return { locale, dateObj }
36
36
  }
37
37
 
38
38
  private async getDateLocale(): Promise<Locale> {
39
- const lang = this.translateService.currentLang || DEFAULT_LANGUAGE
39
+ const lang = this.translateService.getCurrentLang() || DEFAULT_LANGUAGE
40
40
  const locales = await this.dateLocales
41
41
  return locales[lang]
42
42
  }
@@ -1,4 +1,11 @@
1
- import type { Feature, FeatureCollection, Geometry, Position } from 'geojson'
1
+ import type {
2
+ Feature,
3
+ FeatureCollection,
4
+ Geometry,
5
+ Polygon,
6
+ Position,
7
+ } from 'geojson'
8
+ import type { DatasetSpatialExtent } from '../../../../../../libs/common/domain/src/lib/model/record'
2
9
 
3
10
  /**
4
11
  * @returns The geometry if available, otherwise null.
@@ -94,3 +101,53 @@ export function getGeometryBoundingBox(geometry: Geometry): BoundingBox {
94
101
  return coordinatesReducer(emptyExtent, geometry.coordinates)
95
102
  }
96
103
  }
104
+
105
+ /**
106
+ * Builds the closed GeoJSON Polygon matching the given bounding box.
107
+ */
108
+ export function bboxToPolygon(bbox: BoundingBox): Polygon {
109
+ const [minX, minY, maxX, maxY] = bbox
110
+ return {
111
+ type: 'Polygon',
112
+ coordinates: [
113
+ [
114
+ [minX, minY],
115
+ [minX, maxY],
116
+ [maxX, maxY],
117
+ [maxX, minY],
118
+ [minX, minY],
119
+ ],
120
+ ],
121
+ }
122
+ }
123
+
124
+ /**
125
+ * Returns the geometry carried by a spatial extent, falling back to the polygon
126
+ * derived from its bounding box. Returns null when the extent has neither.
127
+ */
128
+ export function spatialExtentToGeometry(
129
+ extent: DatasetSpatialExtent
130
+ ): Geometry | null {
131
+ if (extent.geometry) return extent.geometry
132
+ if (extent.bbox) return bboxToPolygon(extent.bbox)
133
+ return null
134
+ }
135
+
136
+ /**
137
+ * Converts a list of dataset spatial extents into a GeoJSON FeatureCollection,
138
+ * e.g. to be used as the data source of a map layer.
139
+ */
140
+ export function spatialExtentsToFeatureCollection(
141
+ extents: DatasetSpatialExtent[]
142
+ ): FeatureCollection {
143
+ return {
144
+ type: 'FeatureCollection',
145
+ features: extents.reduce<Feature[]>((features, extent) => {
146
+ const geometry = spatialExtentToGeometry(extent)
147
+ if (geometry) {
148
+ features.push({ type: 'Feature', properties: {}, geometry })
149
+ }
150
+ return features
151
+ }, []),
152
+ }
153
+ }
@@ -12,6 +12,15 @@ export function getIndividualDisplayName(individual: Individual): string {
12
12
  return individual.organization?.name ?? individual.email ?? ''
13
13
  }
14
14
 
15
+ export function getAddressLines(address: string | undefined): string[] {
16
+ return address
17
+ ? address
18
+ .split(',')
19
+ .map((part) => part.trim())
20
+ .filter(Boolean)
21
+ : []
22
+ }
23
+
15
24
  export function toIndividual(user: UserModel): Individual {
16
25
  return {
17
26
  firstName: user.name,
package/style.css CHANGED
@@ -1,4 +1,3 @@
1
1
  @import 'tippy.js/dist/tippy.css';
2
2
  @import 'ol/ol.css';
3
- @import '@angular/material/prebuilt-themes/indigo-pink.css';
4
3
  @import './tailwind.base.css';
package/tailwind.base.css CHANGED
@@ -1,3 +1,5 @@
1
+ @import './material-styles.css';
2
+
1
3
  @tailwind base;
2
4
  @tailwind components;
3
5
  @tailwind utilities;
@@ -119,6 +121,12 @@
119
121
  border-gray-100 focus:ring-4 focus:ring-gray-50;
120
122
  }
121
123
 
124
+ .gn-ui-btn-gray-light {
125
+ @apply gn-ui-btn text-black
126
+ bg-gray-50 hover:bg-gray-100 focus:bg-gray-100 active:bg-gray-200
127
+ border-gray-50 focus:ring-4 focus:ring-gray-100;
128
+ }
129
+
122
130
  .gn-ui-btn-black {
123
131
  @apply gn-ui-btn text-white
124
132
  bg-black hover:bg-gray-950 focus:bg-gray-950 active:bg-gray-900
@@ -89,6 +89,10 @@
89
89
  "domain.contact.role.stakeholder": "Beteiligter",
90
90
  "domain.contact.role.unspecified": "Nicht angegeben",
91
91
  "domain.contact.role.user": "Benutzer",
92
+ "domain.record.keywordType.other": "Stichworte",
93
+ "domain.record.keywordType.place": "Ort",
94
+ "domain.record.keywordType.temporal": "Zeitlich",
95
+ "domain.record.keywordType.theme": "Thema",
92
96
  "domain.record.status.completed": "Abgeschlossen",
93
97
  "domain.record.status.deprecated": "Veraltet",
94
98
  "domain.record.status.ongoing": "Kontinuierliche Aktualisierung",
@@ -150,6 +154,14 @@
150
154
  "editor.record.form.draft.updateAlert": "Seit der Erstellung dieses Entwurfs wurde dieser Datensatz am { date } von { user } geändert. Durch das Veröffentlichen Ihrer Version können dessen Änderungen gelöscht werden. Um dies zu vermeiden, können Sie Ihre Änderungen rückgängig machen oder Ihre Version in voller Kenntnis der Sachlage veröffentlichen.",
151
155
  "editor.record.form.field.abstract": "Kurzbeschreibung",
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": "Ansprechpartner - Email",
154
166
  "editor.record.form.field.contacts.noContact": "Bitte geben Sie mindestens einen Ansprechpartner an.",
155
167
  "editor.record.form.field.contacts.placeholder": "Kontakt auswählen",
@@ -159,6 +171,7 @@
159
171
  "editor.record.form.field.legalConstraints": "Rechtliche Einschränkung",
160
172
  "editor.record.form.field.license": "Lizenz",
161
173
  "editor.record.form.field.onlineLinkResources": "Beigefügte Ressourcen",
174
+ "editor.record.form.field.onlineLinkageResource.defaultName": "Link",
162
175
  "editor.record.form.field.onlineResource.cancel": "Abbrechen",
163
176
  "editor.record.form.field.onlineResource.confirm": "Bestätigen",
164
177
  "editor.record.form.field.onlineResource.dialogTitle": "Vorschau des Datensatzes bearbeiten",
@@ -234,25 +247,25 @@
234
247
  "editor.record.form.temporalExtents.addRange": "Zeitraum",
235
248
  "editor.record.form.temporalExtents.date": "Datum",
236
249
  "editor.record.form.temporalExtents.range": "Datumsbereich",
237
- "editor.record.form.topics.inspire.biota": "Biologie",
238
- "editor.record.form.topics.inspire.boundaries": "Grenzen",
239
- "editor.record.form.topics.inspire.climatology": "Klimatologie/Meteorologie/Atmosphäre",
240
- "editor.record.form.topics.inspire.economy": "Wirtschaft",
241
- "editor.record.form.topics.inspire.elevation": "Höhenangaben",
242
- "editor.record.form.topics.inspire.environnement": "Umwelt",
243
- "editor.record.form.topics.inspire.farming": "Landwirtschaft",
244
- "editor.record.form.topics.inspire.geoscientific": "Geowissenschaften",
245
- "editor.record.form.topics.inspire.health": "Gesundheitswesen",
246
- "editor.record.form.topics.inspire.imagery": "Bilddaten/Basiskarten/Landbedeckung",
247
- "editor.record.form.topics.inspire.intelligence": "Aufklärung/Militär",
248
- "editor.record.form.topics.inspire.location": "Ortsangaben",
249
- "editor.record.form.topics.inspire.oceans": "Meere",
250
- "editor.record.form.topics.inspire.planning": "Planungsunterlagen/Kataster",
251
- "editor.record.form.topics.inspire.society": "Gesellschaft",
252
- "editor.record.form.topics.inspire.structure": "Bauwerke",
253
- "editor.record.form.topics.inspire.transportation": "Verkehrswesen",
254
- "editor.record.form.topics.inspire.utilities": "Ver- und Entsorgung/Nachrichtenwesen",
255
- "editor.record.form.topics.inspire.waters": "Binnengewässer",
250
+ "editor.record.form.topics.iso.biota": "Biologie",
251
+ "editor.record.form.topics.iso.boundaries": "Grenzen",
252
+ "editor.record.form.topics.iso.climatologyMeteorologyAtmosphere": "Klimatologie/Meteorologie/Atmosphäre",
253
+ "editor.record.form.topics.iso.economy": "Wirtschaft",
254
+ "editor.record.form.topics.iso.elevation": "Höhenangaben",
255
+ "editor.record.form.topics.iso.environment": "Umwelt",
256
+ "editor.record.form.topics.iso.farming": "Landwirtschaft",
257
+ "editor.record.form.topics.iso.geoscientificInformation": "Geowissenschaften",
258
+ "editor.record.form.topics.iso.health": "Gesundheitswesen",
259
+ "editor.record.form.topics.iso.imageryBaseMapsEarthCover": "Bilddaten/Basiskarten/Landbedeckung",
260
+ "editor.record.form.topics.iso.intelligenceMilitary": "Aufklärung/Militär",
261
+ "editor.record.form.topics.iso.location": "Ortsangaben",
262
+ "editor.record.form.topics.iso.oceans": "Meere",
263
+ "editor.record.form.topics.iso.planningCadastre": "Planungsunterlagen/Kataster",
264
+ "editor.record.form.topics.iso.society": "Gesellschaft",
265
+ "editor.record.form.topics.iso.structure": "Bauwerke",
266
+ "editor.record.form.topics.iso.transportation": "Verkehrswesen",
267
+ "editor.record.form.topics.iso.utilitiesCommunication": "Ver- und Entsorgung/Nachrichtenwesen",
268
+ "editor.record.form.topics.iso.inlandWaters": "Binnengewässer",
256
269
  "editor.record.form.topics.placeholder": "Ein oder mehrere Themen auswählen",
257
270
  "editor.record.form.updateFrequency.planned": "Dieses Dataset wird regelmäßig aktualisiert.",
258
271
  "editor.record.importFromExternalFile.failure.body": "Beim Importieren des Datensatzes ist ein Fehler aufgetreten:",
@@ -494,7 +507,6 @@
494
507
  "record.metadata.preview.config.idle": "Standardvorschau festlegen",
495
508
  "record.metadata.preview.config.saved": "Gespeichert!",
496
509
  "record.metadata.preview.config.saving": "Speichern...",
497
- "record.metadata.producer": "Datenproduzent",
498
510
  "record.metadata.publication": "Veröffentlichungsdatum",
499
511
  "record.metadata.publications": "{count, plural, =0{Veröffentlichungsdatum} one{Veröffentlichungsdatum} other{Veröffentlichungen}}",
500
512
  "record.metadata.quality": "Metadatenqualität",
@@ -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",
@@ -150,6 +154,14 @@
150
154
  "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.",
151
155
  "editor.record.form.field.abstract": "Abstract",
152
156
  "editor.record.form.field.constraintsShortcuts": "",
157
+ "editor.record.form.field.contactDetails.email": "Contact email",
158
+ "editor.record.form.field.contactDetails.email.placeholder": "example@domainname.com",
159
+ "editor.record.form.field.contactDetails.firstName": "Contact first name",
160
+ "editor.record.form.field.contactDetails.firstName.placeholder": "First name",
161
+ "editor.record.form.field.contactDetails.lastName": "Contact last name",
162
+ "editor.record.form.field.contactDetails.lastName.placeholder": "Last name",
163
+ "editor.record.form.field.contactDetails.organization": "Contact organization",
164
+ "editor.record.form.field.contactDetails.organization.placeholder": "Company",
153
165
  "editor.record.form.field.contacts": "Point of contact - Email",
154
166
  "editor.record.form.field.contacts.noContact": "Please provide at least one point of contact.",
155
167
  "editor.record.form.field.contacts.placeholder": "Choose a contact",
@@ -159,6 +171,7 @@
159
171
  "editor.record.form.field.legalConstraints": "Legal constraint",
160
172
  "editor.record.form.field.license": "License",
161
173
  "editor.record.form.field.onlineLinkResources": "Attached resources",
174
+ "editor.record.form.field.onlineLinkageResource.defaultName": "Link",
162
175
  "editor.record.form.field.onlineResource.cancel": "Cancel",
163
176
  "editor.record.form.field.onlineResource.confirm": "Confirm",
164
177
  "editor.record.form.field.onlineResource.dialogTitle": "Modify the dataset preview",
@@ -234,25 +247,25 @@
234
247
  "editor.record.form.temporalExtents.addRange": "Time period",
235
248
  "editor.record.form.temporalExtents.date": "Date",
236
249
  "editor.record.form.temporalExtents.range": "Date range",
237
- "editor.record.form.topics.inspire.biota": "Biota",
238
- "editor.record.form.topics.inspire.boundaries": "Boundaries",
239
- "editor.record.form.topics.inspire.climatology": "Climatology / Meteorology / Atmosphere",
240
- "editor.record.form.topics.inspire.economy": "Economy",
241
- "editor.record.form.topics.inspire.elevation": "Elevation",
242
- "editor.record.form.topics.inspire.environnement": "Environnement",
243
- "editor.record.form.topics.inspire.farming": "Farming",
244
- "editor.record.form.topics.inspire.geoscientific": "Geoscientific Information",
245
- "editor.record.form.topics.inspire.health": "Health",
246
- "editor.record.form.topics.inspire.imagery": "Imagery / Base Maps / Earth Cover",
247
- "editor.record.form.topics.inspire.intelligence": "Intelligence / Military",
248
- "editor.record.form.topics.inspire.location": "Location",
249
- "editor.record.form.topics.inspire.oceans": "Oceans",
250
- "editor.record.form.topics.inspire.planning": "Planning / Cadastre",
251
- "editor.record.form.topics.inspire.society": "Society",
252
- "editor.record.form.topics.inspire.structure": "Structure",
253
- "editor.record.form.topics.inspire.transportation": "Transportation",
254
- "editor.record.form.topics.inspire.utilities": "Utilities / Communication",
255
- "editor.record.form.topics.inspire.waters": "Inland Waters",
250
+ "editor.record.form.topics.iso.biota": "Biota",
251
+ "editor.record.form.topics.iso.boundaries": "Boundaries",
252
+ "editor.record.form.topics.iso.climatologyMeteorologyAtmosphere": "Climatology / Meteorology / Atmosphere",
253
+ "editor.record.form.topics.iso.economy": "Economy",
254
+ "editor.record.form.topics.iso.elevation": "Elevation",
255
+ "editor.record.form.topics.iso.environment": "Environnement",
256
+ "editor.record.form.topics.iso.farming": "Farming",
257
+ "editor.record.form.topics.iso.geoscientificInformation": "Geoscientific Information",
258
+ "editor.record.form.topics.iso.health": "Health",
259
+ "editor.record.form.topics.iso.imageryBaseMapsEarthCover": "Imagery / Base Maps / Earth Cover",
260
+ "editor.record.form.topics.iso.intelligenceMilitary": "Intelligence / Military",
261
+ "editor.record.form.topics.iso.location": "Location",
262
+ "editor.record.form.topics.iso.oceans": "Oceans",
263
+ "editor.record.form.topics.iso.planningCadastre": "Planning / Cadastre",
264
+ "editor.record.form.topics.iso.society": "Society",
265
+ "editor.record.form.topics.iso.structure": "Structure",
266
+ "editor.record.form.topics.iso.transportation": "Transportation",
267
+ "editor.record.form.topics.iso.utilitiesCommunication": "Utilities / Communication",
268
+ "editor.record.form.topics.iso.inlandWaters": "Inland Waters",
256
269
  "editor.record.form.topics.placeholder": "Select one or several topics",
257
270
  "editor.record.form.updateFrequency.planned": "This dataset is updated regularly",
258
271
  "editor.record.importFromExternalFile.failure.body": "Failure",
@@ -494,7 +507,6 @@
494
507
  "record.metadata.preview.config.idle": "Set as default preview",
495
508
  "record.metadata.preview.config.saved": "Saved !",
496
509
  "record.metadata.preview.config.saving": "Saving...",
497
- "record.metadata.producer": "Data producer",
498
510
  "record.metadata.publication": "Date of publication",
499
511
  "record.metadata.publications": "{count, plural, =0{publication} one{publication} other{publications}}",
500
512
  "record.metadata.quality": "Metadata Quality",
@@ -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": "Punto de contacto - Correo ",
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.inspire.biota": "",
238
- "editor.record.form.topics.inspire.boundaries": "",
239
- "editor.record.form.topics.inspire.climatology": "",
240
- "editor.record.form.topics.inspire.economy": "",
241
- "editor.record.form.topics.inspire.elevation": "",
242
- "editor.record.form.topics.inspire.environnement": "",
243
- "editor.record.form.topics.inspire.farming": "",
244
- "editor.record.form.topics.inspire.geoscientific": "",
245
- "editor.record.form.topics.inspire.health": "",
246
- "editor.record.form.topics.inspire.imagery": "",
247
- "editor.record.form.topics.inspire.intelligence": "",
248
- "editor.record.form.topics.inspire.location": "",
249
- "editor.record.form.topics.inspire.oceans": "",
250
- "editor.record.form.topics.inspire.planning": "",
251
- "editor.record.form.topics.inspire.society": "",
252
- "editor.record.form.topics.inspire.structure": "",
253
- "editor.record.form.topics.inspire.transportation": "",
254
- "editor.record.form.topics.inspire.utilities": "",
255
- "editor.record.form.topics.inspire.waters": "",
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 datos se actualiza 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": "",
@@ -89,6 +89,10 @@
89
89
  "domain.contact.role.stakeholder": "Partie prenante",
90
90
  "domain.contact.role.unspecified": "Non spécifié",
91
91
  "domain.contact.role.user": "Utilisateur",
92
+ "domain.record.keywordType.other": "Mots-clés",
93
+ "domain.record.keywordType.place": "Localisation",
94
+ "domain.record.keywordType.temporal": "Temps",
95
+ "domain.record.keywordType.theme": "Thème",
92
96
  "domain.record.status.completed": "Finalisé",
93
97
  "domain.record.status.deprecated": "Obsolète",
94
98
  "domain.record.status.ongoing": "Mise à jour continue",
@@ -150,6 +154,14 @@
150
154
  "editor.record.form.draft.updateAlert": "Depuis la création de ce brouillon, ce jeu de données a été modifié le { date } par { user }. Publier votre version peut supprimer ses modifications. Pour éviter cela, vous pouvez annuler vos changements, ou publier votre version en connaissance de cause.",
151
155
  "editor.record.form.field.abstract": "Description",
152
156
  "editor.record.form.field.constraintsShortcuts": "",
157
+ "editor.record.form.field.contactDetails.email": "Email du point de contact",
158
+ "editor.record.form.field.contactDetails.email.placeholder": "exemple@nomdedomaine.com",
159
+ "editor.record.form.field.contactDetails.firstName": "Prénom du point de contact",
160
+ "editor.record.form.field.contactDetails.firstName.placeholder": "Prénom",
161
+ "editor.record.form.field.contactDetails.lastName": "Nom du point de contact",
162
+ "editor.record.form.field.contactDetails.lastName.placeholder": "Nom",
163
+ "editor.record.form.field.contactDetails.organization": "Organisation du point de contact",
164
+ "editor.record.form.field.contactDetails.organization.placeholder": "Company",
153
165
  "editor.record.form.field.contacts": "Point de contact - Email",
154
166
  "editor.record.form.field.contacts.noContact": "Veuillez renseigner au moins un point de contact.",
155
167
  "editor.record.form.field.contacts.placeholder": "Choisissez un contact",
@@ -159,6 +171,7 @@
159
171
  "editor.record.form.field.legalConstraints": "Contrainte légale",
160
172
  "editor.record.form.field.license": "Licence",
161
173
  "editor.record.form.field.onlineLinkResources": "Ressources attachées",
174
+ "editor.record.form.field.onlineLinkageResource.defaultName": "Lien",
162
175
  "editor.record.form.field.onlineResource.cancel": "Annuler",
163
176
  "editor.record.form.field.onlineResource.confirm": "Valider",
164
177
  "editor.record.form.field.onlineResource.dialogTitle": "Modifier l'aperçu du jeu de données",
@@ -234,25 +247,25 @@
234
247
  "editor.record.form.temporalExtents.addRange": "Période de temps",
235
248
  "editor.record.form.temporalExtents.date": "Date concernée",
236
249
  "editor.record.form.temporalExtents.range": "Période concernée",
237
- "editor.record.form.topics.inspire.biota": "Biote",
238
- "editor.record.form.topics.inspire.boundaries": "Limites",
239
- "editor.record.form.topics.inspire.climatology": "Climatologie/Météorologie/Atmosphère",
240
- "editor.record.form.topics.inspire.economy": "Économie",
241
- "editor.record.form.topics.inspire.elevation": "Altitude",
242
- "editor.record.form.topics.inspire.environnement": "Environnement",
243
- "editor.record.form.topics.inspire.farming": "Agriculture",
244
- "editor.record.form.topics.inspire.geoscientific": "Informations géoscientifiques",
245
- "editor.record.form.topics.inspire.health": "Santé",
246
- "editor.record.form.topics.inspire.imagery": "Imagerie/Cartes de base/Occupation des terres",
247
- "editor.record.form.topics.inspire.intelligence": "Renseignement/Secteur militaire",
248
- "editor.record.form.topics.inspire.location": "Localisation",
249
- "editor.record.form.topics.inspire.oceans": "Océans",
250
- "editor.record.form.topics.inspire.planning": "Planification/Cadastre",
251
- "editor.record.form.topics.inspire.society": "Société",
252
- "editor.record.form.topics.inspire.structure": "Structure",
253
- "editor.record.form.topics.inspire.transportation": "Transport",
254
- "editor.record.form.topics.inspire.utilities": "Services d’utilité publique/Communication",
255
- "editor.record.form.topics.inspire.waters": "Eaux intérieures",
250
+ "editor.record.form.topics.iso.biota": "Biote",
251
+ "editor.record.form.topics.iso.boundaries": "Limites",
252
+ "editor.record.form.topics.iso.climatologyMeteorologyAtmosphere": "Climatologie/Météorologie/Atmosphère",
253
+ "editor.record.form.topics.iso.economy": "Économie",
254
+ "editor.record.form.topics.iso.elevation": "Altitude",
255
+ "editor.record.form.topics.iso.environment": "Environnement",
256
+ "editor.record.form.topics.iso.farming": "Agriculture",
257
+ "editor.record.form.topics.iso.geoscientificInformation": "Informations géoscientifiques",
258
+ "editor.record.form.topics.iso.health": "Santé",
259
+ "editor.record.form.topics.iso.imageryBaseMapsEarthCover": "Imagerie/Cartes de base/Occupation des terres",
260
+ "editor.record.form.topics.iso.intelligenceMilitary": "Renseignement/Secteur militaire",
261
+ "editor.record.form.topics.iso.location": "Localisation",
262
+ "editor.record.form.topics.iso.oceans": "Océans",
263
+ "editor.record.form.topics.iso.planningCadastre": "Planification/Cadastre",
264
+ "editor.record.form.topics.iso.society": "Société",
265
+ "editor.record.form.topics.iso.structure": "Structure",
266
+ "editor.record.form.topics.iso.transportation": "Transport",
267
+ "editor.record.form.topics.iso.utilitiesCommunication": "Services d’utilité publique/Communication",
268
+ "editor.record.form.topics.iso.inlandWaters": "Eaux intérieures",
256
269
  "editor.record.form.topics.placeholder": "Sélectionnez un ou plusieurs thèmes",
257
270
  "editor.record.form.updateFrequency.planned": "Ce jeu de données est mis à jour régulièrement",
258
271
  "editor.record.importFromExternalFile.failure.body": "Une erreur est survenue pendant l'import du jeu de données : ",
@@ -494,7 +507,6 @@
494
507
  "record.metadata.preview.config.idle": "Définir l'aperçu par défaut",
495
508
  "record.metadata.preview.config.saved": "Sauvegardé !",
496
509
  "record.metadata.preview.config.saving": "Sauvegarde...",
497
- "record.metadata.producer": "Producteur de la donnée",
498
510
  "record.metadata.publication": "Date de publication",
499
511
  "record.metadata.publications": "{count, plural, =0{ressource} one{ressource} other{ressources}}",
500
512
  "record.metadata.quality": "Description de la ressource",
@@ -89,6 +89,10 @@
89
89
  "domain.contact.role.stakeholder": "Parte interessata",
90
90
  "domain.contact.role.unspecified": "Non specificato",
91
91
  "domain.contact.role.user": "Utente",
92
+ "domain.record.keywordType.other": "Parole chiave",
93
+ "domain.record.keywordType.place": "Luogo",
94
+ "domain.record.keywordType.temporal": "Temporale",
95
+ "domain.record.keywordType.theme": "Tema",
92
96
  "domain.record.status.completed": "Completato",
93
97
  "domain.record.status.deprecated": "Deprecato",
94
98
  "domain.record.status.ongoing": "Aggiornamento continuo",
@@ -150,6 +154,14 @@
150
154
  "editor.record.form.draft.updateAlert": "Da quando è stata creata questa bozza, questo dataset è stato modificato il { date } da { user }. La pubblicazione della sua versione potrebbe rimuovere le loro modifiche. Per evitarlo, puoi annullare le sue modifiche o pubblicare la sua versione consapevolmente.",
151
155
  "editor.record.form.field.abstract": "Riassunto",
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": "Inserisci almeno un punto di contatto.",
155
167
  "editor.record.form.field.contacts.placeholder": "Scegli un contatto",
@@ -159,6 +171,7 @@
159
171
  "editor.record.form.field.legalConstraints": "Vincolo legale",
160
172
  "editor.record.form.field.license": "Licenza",
161
173
  "editor.record.form.field.onlineLinkResources": "Risorse allegate",
174
+ "editor.record.form.field.onlineLinkageResource.defaultName": "Link",
162
175
  "editor.record.form.field.onlineResource.cancel": "Annulla",
163
176
  "editor.record.form.field.onlineResource.confirm": "Convalida",
164
177
  "editor.record.form.field.onlineResource.dialogTitle": "Modifica anteprima dataset",
@@ -234,25 +247,25 @@
234
247
  "editor.record.form.temporalExtents.addRange": "Periodo di tempo",
235
248
  "editor.record.form.temporalExtents.date": "Data rilevante",
236
249
  "editor.record.form.temporalExtents.range": "Periodo interessato",
237
- "editor.record.form.topics.inspire.biota": "",
238
- "editor.record.form.topics.inspire.boundaries": "",
239
- "editor.record.form.topics.inspire.climatology": "",
240
- "editor.record.form.topics.inspire.economy": "",
241
- "editor.record.form.topics.inspire.elevation": "",
242
- "editor.record.form.topics.inspire.environnement": "",
243
- "editor.record.form.topics.inspire.farming": "",
244
- "editor.record.form.topics.inspire.geoscientific": "",
245
- "editor.record.form.topics.inspire.health": "",
246
- "editor.record.form.topics.inspire.imagery": "",
247
- "editor.record.form.topics.inspire.intelligence": "",
248
- "editor.record.form.topics.inspire.location": "",
249
- "editor.record.form.topics.inspire.oceans": "",
250
- "editor.record.form.topics.inspire.planning": "",
251
- "editor.record.form.topics.inspire.society": "",
252
- "editor.record.form.topics.inspire.structure": "",
253
- "editor.record.form.topics.inspire.transportation": "",
254
- "editor.record.form.topics.inspire.utilities": "",
255
- "editor.record.form.topics.inspire.waters": "",
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": "Questi dati dovrebbero essere aggiornati regolarmente",
258
271
  "editor.record.importFromExternalFile.failure.body": "Ha successo un'errore durante l'importazione del dataset: ",
@@ -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": "Produttore dei dati",
498
510
  "record.metadata.publication": "Data di pubblicazione",
499
511
  "record.metadata.publications": "{count, plural, =0{pubblicazione} one{pubblicazione} other{pubblicazioni}}",
500
512
  "record.metadata.quality": "Qualità dei metadati",