geonetwork-ui 2.5.0-dev.da7bc314b → 2.5.0-dev.ed99f2ef4

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 (142) hide show
  1. package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.mjs +11 -1
  2. package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.mjs +1 -1
  3. package/esm2022/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.mjs +20 -17
  4. package/esm2022/libs/api/repository/src/lib/gn4/gn4-repository.mjs +22 -2
  5. package/esm2022/libs/common/domain/src/lib/model/record/metadata.model.mjs +1 -1
  6. package/esm2022/libs/common/domain/src/lib/repository/records-repository.interface.mjs +1 -1
  7. package/esm2022/libs/feature/dataviz/src/lib/chart-view/chart-view.component.mjs +7 -4
  8. package/esm2022/libs/feature/dataviz/src/lib/service/data.service.mjs +8 -8
  9. package/esm2022/libs/feature/dataviz/src/lib/table-view/table-view.component.mjs +7 -4
  10. package/esm2022/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.mjs +3 -3
  11. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.mjs +2 -1
  12. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.mjs +2 -2
  13. package/esm2022/libs/feature/editor/src/lib/fields.config.mjs +2 -2
  14. package/esm2022/libs/feature/record/src/lib/data-view/data-view.component.mjs +4 -3
  15. package/esm2022/libs/feature/record/src/lib/map-view/map-view.component.mjs +3 -2
  16. package/esm2022/libs/feature/record/src/lib/state/mdview.actions.mjs +4 -1
  17. package/esm2022/libs/feature/record/src/lib/state/mdview.effects.mjs +7 -2
  18. package/esm2022/libs/feature/record/src/lib/state/mdview.facade.mjs +9 -1
  19. package/esm2022/libs/feature/record/src/lib/state/mdview.reducer.mjs +19 -1
  20. package/esm2022/libs/feature/record/src/lib/state/mdview.selectors.mjs +6 -1
  21. package/esm2022/libs/feature/search/src/lib/results-table/results-table-container.component.mjs +1 -1
  22. package/esm2022/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.mjs +7 -2
  23. package/esm2022/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.mjs +14 -4
  24. package/esm2022/libs/ui/search/src/lib/results-table/results-table.component.mjs +10 -3
  25. package/esm2022/libs/util/data-fetcher/src/lib/data-fetcher.mjs +5 -4
  26. package/esm2022/libs/util/data-fetcher/src/lib/readers/base-cache.mjs +12 -0
  27. package/esm2022/libs/util/data-fetcher/src/lib/readers/base-file.mjs +3 -3
  28. package/esm2022/libs/util/data-fetcher/src/lib/readers/base.mjs +1 -1
  29. package/esm2022/libs/util/data-fetcher/src/lib/readers/csv.mjs +2 -2
  30. package/esm2022/libs/util/data-fetcher/src/lib/readers/excel.mjs +2 -2
  31. package/esm2022/libs/util/data-fetcher/src/lib/readers/geojson.mjs +2 -2
  32. package/esm2022/libs/util/data-fetcher/src/lib/readers/gml.mjs +5 -3
  33. package/esm2022/libs/util/data-fetcher/src/lib/readers/json.mjs +2 -2
  34. package/esm2022/libs/util/data-fetcher/src/lib/readers/wfs.mjs +19 -11
  35. package/esm2022/libs/util/data-fetcher/src/lib/utils.mjs +9 -7
  36. package/esm2022/translations/de.json +3 -4
  37. package/esm2022/translations/en.json +4 -13
  38. package/esm2022/translations/es.json +3 -4
  39. package/esm2022/translations/fr.json +15 -16
  40. package/esm2022/translations/it.json +20 -20
  41. package/esm2022/translations/nl.json +3 -4
  42. package/esm2022/translations/pt.json +3 -4
  43. package/fesm2022/geonetwork-ui.mjs +310 -195
  44. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  45. package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts.map +1 -1
  46. package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts +3 -0
  47. package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts.map +1 -1
  48. package/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.d.ts +1 -0
  49. package/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.d.ts.map +1 -1
  50. package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts +2 -1
  51. package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts.map +1 -1
  52. package/libs/common/domain/src/lib/model/record/metadata.model.d.ts +6 -0
  53. package/libs/common/domain/src/lib/model/record/metadata.model.d.ts.map +1 -1
  54. package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts +2 -1
  55. package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts.map +1 -1
  56. package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts +2 -1
  57. package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts.map +1 -1
  58. package/libs/feature/dataviz/src/lib/service/data.service.d.ts +2 -2
  59. package/libs/feature/dataviz/src/lib/service/data.service.d.ts.map +1 -1
  60. package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts +2 -1
  61. package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts.map +1 -1
  62. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.d.ts.map +1 -1
  63. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.d.ts.map +1 -1
  64. package/libs/feature/record/src/lib/data-view/data-view.component.d.ts +1 -0
  65. package/libs/feature/record/src/lib/data-view/data-view.component.d.ts.map +1 -1
  66. package/libs/feature/record/src/lib/map-view/map-view.component.d.ts.map +1 -1
  67. package/libs/feature/record/src/lib/state/mdview.actions.d.ts +16 -1
  68. package/libs/feature/record/src/lib/state/mdview.actions.d.ts.map +1 -1
  69. package/libs/feature/record/src/lib/state/mdview.effects.d.ts +5 -0
  70. package/libs/feature/record/src/lib/state/mdview.effects.d.ts.map +1 -1
  71. package/libs/feature/record/src/lib/state/mdview.facade.d.ts +2 -0
  72. package/libs/feature/record/src/lib/state/mdview.facade.d.ts.map +1 -1
  73. package/libs/feature/record/src/lib/state/mdview.reducer.d.ts +4 -1
  74. package/libs/feature/record/src/lib/state/mdview.reducer.d.ts.map +1 -1
  75. package/libs/feature/record/src/lib/state/mdview.selectors.d.ts +2 -0
  76. package/libs/feature/record/src/lib/state/mdview.selectors.d.ts.map +1 -1
  77. package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts.map +1 -1
  78. package/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.d.ts +4 -2
  79. package/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.d.ts.map +1 -1
  80. package/libs/ui/search/src/lib/results-table/results-table.component.d.ts +3 -1
  81. package/libs/ui/search/src/lib/results-table/results-table.component.d.ts.map +1 -1
  82. package/libs/util/data-fetcher/src/lib/data-fetcher.d.ts +2 -2
  83. package/libs/util/data-fetcher/src/lib/data-fetcher.d.ts.map +1 -1
  84. package/libs/util/data-fetcher/src/lib/readers/base-cache.d.ts +8 -0
  85. package/libs/util/data-fetcher/src/lib/readers/base-cache.d.ts.map +1 -0
  86. package/libs/util/data-fetcher/src/lib/readers/base-file.d.ts +2 -2
  87. package/libs/util/data-fetcher/src/lib/readers/base-file.d.ts.map +1 -1
  88. package/libs/util/data-fetcher/src/lib/readers/base.d.ts +2 -2
  89. package/libs/util/data-fetcher/src/lib/readers/base.d.ts.map +1 -1
  90. package/libs/util/data-fetcher/src/lib/readers/gml.d.ts +5 -3
  91. package/libs/util/data-fetcher/src/lib/readers/gml.d.ts.map +1 -1
  92. package/libs/util/data-fetcher/src/lib/readers/wfs.d.ts +7 -4
  93. package/libs/util/data-fetcher/src/lib/readers/wfs.d.ts.map +1 -1
  94. package/libs/util/data-fetcher/src/lib/utils.d.ts +2 -2
  95. package/libs/util/data-fetcher/src/lib/utils.d.ts.map +1 -1
  96. package/package.json +1 -1
  97. package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +25 -0
  98. package/src/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.ts +4 -0
  99. package/src/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.ts +22 -16
  100. package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +41 -2
  101. package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +3 -1
  102. package/src/libs/common/domain/src/lib/repository/records-repository.interface.ts +4 -1
  103. package/src/libs/common/fixtures/src/lib/records.fixtures.ts +75 -0
  104. package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.ts +4 -1
  105. package/src/libs/feature/dataviz/src/lib/service/data.service.ts +22 -9
  106. package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.ts +2 -1
  107. package/src/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.html +1 -1
  108. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.ts +1 -0
  109. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.ts +1 -1
  110. package/src/libs/feature/editor/src/lib/fields.config.ts +1 -1
  111. package/src/libs/feature/record/src/lib/data-view/data-view.component.html +2 -0
  112. package/src/libs/feature/record/src/lib/data-view/data-view.component.ts +3 -0
  113. package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +2 -1
  114. package/src/libs/feature/record/src/lib/state/mdview.actions.ts +16 -0
  115. package/src/libs/feature/record/src/lib/state/mdview.effects.ts +21 -2
  116. package/src/libs/feature/record/src/lib/state/mdview.facade.ts +15 -0
  117. package/src/libs/feature/record/src/lib/state/mdview.reducer.ts +30 -1
  118. package/src/libs/feature/record/src/lib/state/mdview.selectors.ts +12 -0
  119. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.ts +6 -0
  120. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.html +37 -1
  121. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.ts +8 -2
  122. package/src/libs/ui/search/src/lib/results-table/results-table.component.html +2 -0
  123. package/src/libs/ui/search/src/lib/results-table/results-table.component.ts +6 -0
  124. package/src/libs/util/data-fetcher/src/lib/data-fetcher.ts +13 -4
  125. package/src/libs/util/data-fetcher/src/lib/readers/base-cache.ts +14 -0
  126. package/src/libs/util/data-fetcher/src/lib/readers/base-file.ts +2 -1
  127. package/src/libs/util/data-fetcher/src/lib/readers/base.ts +2 -2
  128. package/src/libs/util/data-fetcher/src/lib/readers/csv.ts +1 -1
  129. package/src/libs/util/data-fetcher/src/lib/readers/excel.ts +1 -1
  130. package/src/libs/util/data-fetcher/src/lib/readers/geojson.ts +1 -1
  131. package/src/libs/util/data-fetcher/src/lib/readers/gml.ts +7 -7
  132. package/src/libs/util/data-fetcher/src/lib/readers/json.ts +1 -1
  133. package/src/libs/util/data-fetcher/src/lib/readers/wfs.ts +34 -11
  134. package/src/libs/util/data-fetcher/src/lib/utils.ts +36 -32
  135. package/translations/de.json +3 -4
  136. package/translations/en.json +4 -13
  137. package/translations/es.json +3 -4
  138. package/translations/fr.json +15 -16
  139. package/translations/it.json +20 -20
  140. package/translations/nl.json +3 -4
  141. package/translations/pt.json +3 -4
  142. package/translations/sk.json +3 -4
@@ -20,8 +20,6 @@
20
20
  "chart.type.lineSmooth": "smooth line chart",
21
21
  "chart.type.pie": "pie chart",
22
22
  "dashboard.catalog.allRecords": "Datasets",
23
- "dashboard.catalog.contacts": "Contacts",
24
- "dashboard.catalog.thesaurus": "Thesaurus",
25
23
  "dashboard.createRecord": "New dataset",
26
24
  "dashboard.importRecord": "Import",
27
25
  "dashboard.importRecord.importExternal": "Import an external file",
@@ -34,21 +32,12 @@
34
32
  "dashboard.records.myDraft": "My drafts",
35
33
  "dashboard.records.myRecords": "My datasets",
36
34
  "dashboard.records.search": "Search for \"{searchText}\"",
37
- "dashboard.records.templates": "Templates",
38
35
  "dashboard.records.userDetail": "Name",
39
36
  "dashboard.records.userEmail": "Email",
40
37
  "dashboard.records.username": "Username",
41
38
  "dashboard.records.users": "{count, plural, =1{user} other{users}}",
42
39
  "datafeeder.analysisProgressBar.illustration.fileFormatDetection": "File format \n detection",
43
- "datafeeder.analysisProgressBar.illustration.gatheringDatasetInformation": "Gathering dataset \n information",
44
- "datafeeder.analysisProgressBar.illustration.samplingData": "Sampling \n data",
45
- "datafeeder.analysisProgressBar.subtitle": "The analysis may take several minutes, please wait.",
46
- "datafeeder.analysisProgressBar.title": "Analysis in progress",
47
- "datafeeder.datasetValidation.datasetInformation": "The provided dataset contains {number} entities",
48
- "datafeeder.datasetValidation.submitButton": "OK, my data is correct",
49
- "datafeeder.datasetValidation.title": "Make sure your data is correct",
50
- "datafeeder.datasetValidation.unknown": " - ",
51
- "datafeeder.datasetValidationCsv.explicitLineNumbers": "*The table must display the first 5 lines (excluding the header)<br>If this is not the case, check that the file is correctly formatted",
40
+ "datafeeder.anaeditor.record.saveStatus.recordNotPublishedasetValidationCsv.explicitLineNumbers": "*The table must display the first 5 lines (excluding the header)<br>If this is not the case, check that the file is correctly formatted",
52
41
  "datafeeder.datasetValidationCsv.lineNumbers": "Sample of the first 5 lines* of the dataset:",
53
42
  "datafeeder.form.abstract": "How would you describe your dataset?",
54
43
  "datafeeder.form.datepicker": "Do you know when the dataset was created?",
@@ -425,6 +414,7 @@
425
414
  "record.action.download": "Download",
426
415
  "record.action.duplicate": "Duplicate",
427
416
  "record.action.duplicating": "Duplicating...",
417
+ "record.action.rollback": "Rollback",
428
418
  "record.action.view": "View",
429
419
  "record.externalViewer.open": "Open in the external map viewer",
430
420
  "record.feature.limit": "The resource contains more than {count} features and cannot be displayed here.",
@@ -547,6 +537,8 @@
547
537
  "search.error.recordNotFound": "The dataset with identifier \"{ id }\" could not be found.",
548
538
  "search.field.any.placeholder": "Search datasets ...",
549
539
  "search.field.sortBy": "Sort by:",
540
+ "search.filters.availableServices.download": "",
541
+ "search.filters.availableServices.view": "",
550
542
  "search.filters.changeDate": "Updated",
551
543
  "search.filters.clear": "Reset",
552
544
  "search.filters.contact": "Contacts",
@@ -602,7 +594,6 @@
602
594
  "tooltip.url.open": "Open URL",
603
595
  "ui.readLess": "Read less",
604
596
  "ui.readMore": "Read more",
605
- "wfs.aggregations.notsupported": "Aggregations are currently not supported for WFS services",
606
597
  "wfs.feature.limit": "Too many features to display the WFS layer!",
607
598
  "wfs.featuretype.notfound": "No matching feature type was found in the service",
608
599
  "wfs.geojsongml.notsupported": "This service does not support the GeoJSON or GML format",
@@ -20,8 +20,6 @@
20
20
  "chart.type.lineSmooth": "gráfico de líneas suave",
21
21
  "chart.type.pie": "gráfico circular",
22
22
  "dashboard.catalog.allRecords": "",
23
- "dashboard.catalog.contacts": "",
24
- "dashboard.catalog.thesaurus": "",
25
23
  "dashboard.createRecord": "",
26
24
  "dashboard.importRecord": "",
27
25
  "dashboard.importRecord.importExternal": "",
@@ -34,7 +32,6 @@
34
32
  "dashboard.records.myDraft": "Mis borradores",
35
33
  "dashboard.records.myRecords": "Mis Registros",
36
34
  "dashboard.records.search": "Buscar \"{searchText}\"",
37
- "dashboard.records.templates": "",
38
35
  "dashboard.records.userDetail": "",
39
36
  "dashboard.records.userEmail": "",
40
37
  "dashboard.records.username": "",
@@ -425,6 +422,7 @@
425
422
  "record.action.download": "",
426
423
  "record.action.duplicate": "",
427
424
  "record.action.duplicating": "",
425
+ "record.action.rollback": "",
428
426
  "record.action.view": "",
429
427
  "record.externalViewer.open": "",
430
428
  "record.feature.limit": "",
@@ -547,6 +545,8 @@
547
545
  "search.error.recordNotFound": "",
548
546
  "search.field.any.placeholder": "",
549
547
  "search.field.sortBy": "",
548
+ "search.filters.availableServices.download": "",
549
+ "search.filters.availableServices.view": "",
550
550
  "search.filters.changeDate": "Última actualización",
551
551
  "search.filters.clear": "",
552
552
  "search.filters.contact": "",
@@ -602,7 +602,6 @@
602
602
  "tooltip.url.open": "",
603
603
  "ui.readLess": "",
604
604
  "ui.readMore": "",
605
- "wfs.aggregations.notsupported": "",
606
605
  "wfs.feature.limit": "",
607
606
  "wfs.featuretype.notfound": "",
608
607
  "wfs.geojsongml.notsupported": "",
@@ -20,8 +20,6 @@
20
20
  "chart.type.lineSmooth": "ligne lisse",
21
21
  "chart.type.pie": "camembert",
22
22
  "dashboard.catalog.allRecords": "Jeux de données",
23
- "dashboard.catalog.contacts": "Annuaire",
24
- "dashboard.catalog.thesaurus": "Thésaurus",
25
23
  "dashboard.createRecord": "Nouveau jeu de données",
26
24
  "dashboard.importRecord": "Importer",
27
25
  "dashboard.importRecord.importExternal": "Importer un jeu de données externe",
@@ -34,7 +32,6 @@
34
32
  "dashboard.records.myDraft": "Mes brouillons",
35
33
  "dashboard.records.myRecords": "Mes jeux de données",
36
34
  "dashboard.records.search": "Résultats pour \"{searchText}\"",
37
- "dashboard.records.templates": "Modèles pré-remplis",
38
35
  "dashboard.records.userDetail": "Nom",
39
36
  "dashboard.records.userEmail": "Email",
40
37
  "dashboard.records.username": "Nom d'utilisateur",
@@ -161,7 +158,7 @@
161
158
  "domain.contact.role.point_of_contact": "Point de contact",
162
159
  "domain.contact.role.principal_investigator": "Chercheur principal",
163
160
  "domain.contact.role.processor": "Processeur",
164
- "domain.contact.role.publisher": "Éditeur",
161
+ "domain.contact.role.publisher": "Producteur",
165
162
  "domain.contact.role.resource_provider": "Fournisseur",
166
163
  "domain.contact.role.rights_holder": "Détenteur des droits",
167
164
  "domain.contact.role.sponsor": "Sponsor",
@@ -225,7 +222,7 @@
225
222
  "editor.record.form.constraint.otherConstraints": "Autres contraintes",
226
223
  "editor.record.form.constraint.securityConstraints": "Contraintes de sécurité",
227
224
  "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.",
228
- "editor.record.form.field.abstract": "Résumé",
225
+ "editor.record.form.field.abstract": "Description",
229
226
  "editor.record.form.field.constraintsShortcuts": "",
230
227
  "editor.record.form.field.contacts.noContact": "Veuillez renseigner au moins un point de contact.",
231
228
  "editor.record.form.field.contacts.placeholder": "Choisissez un contact",
@@ -267,14 +264,14 @@
267
264
  "editor.record.form.keywords.place.placeholder": "Rechercher une localisation par mot-clé",
268
265
  "editor.record.form.keywords.place.withoutExtent": "Ce mot-clé n'a pas de localisation géographique associée",
269
266
  "editor.record.form.keywords.placeholder": "Sélectionnez un mot-clé",
270
- "editor.record.form.license.cc-by": "",
271
- "editor.record.form.license.cc-by-sa": "",
272
- "editor.record.form.license.cc-zero": "",
267
+ "editor.record.form.license.cc-by": "Creative Commons CC-BY",
268
+ "editor.record.form.license.cc-by-sa": "Creative Commons CC-BY-SA",
269
+ "editor.record.form.license.cc-zero": "Creative Commons CC-0",
273
270
  "editor.record.form.license.etalab": "Licence Ouverte (Etalab)",
274
271
  "editor.record.form.license.etalab-v2": "Licence Ouverte v2.0 (Etalab)",
275
- "editor.record.form.license.odbl": "",
276
- "editor.record.form.license.odc-by": "",
277
- "editor.record.form.license.pddl": "",
272
+ "editor.record.form.license.odbl": "Open Data Commons ODbL",
273
+ "editor.record.form.license.odc-by": "Open Data Commons ODC-By",
274
+ "editor.record.form.license.pddl": "Open Data Commons PDDL",
278
275
  "editor.record.form.license.unknown": "Inconnue ou absente",
279
276
  "editor.record.form.page.accessAndContact": "Informations pour l'utilisation",
280
277
  "editor.record.form.page.description": "Description du jeu de données",
@@ -327,7 +324,7 @@
327
324
  "editor.record.resourceError.closeMessage": "Compris",
328
325
  "editor.record.resourceError.title": "Erreur avec les pièces jointes",
329
326
  "editor.record.saveStatus.draftWithChangesPending": "Sauvegardé - Modifications non publiées",
330
- "editor.record.saveStatus.recordNotPublished": "",
327
+ "editor.record.saveStatus.recordNotPublished": "Sauvegardé - non publié",
331
328
  "editor.record.saveStatus.recordUpToDate": "Sauvegardé - Jeu de données à jour",
332
329
  "editor.record.undo.confirmation.cancelText": "Garder les modifications",
333
330
  "editor.record.undo.confirmation.confirmText": "Retirer les modifications",
@@ -337,7 +334,7 @@
337
334
  "editor.record.undo.tooltip.enabled": "Cliquer sur ce bouton pour annuler les modifications apportées à ce jeu de données",
338
335
  "editor.record.upToDate": "Ce jeu de données est à jour",
339
336
  "editor.sidebar.logout": "Se déconnecter",
340
- "editor.sidebar.menu.editor": "",
337
+ "editor.sidebar.menu.editor": "Editeur",
341
338
  "editor.temporary.disabled": "Pas encore implémenté",
342
339
  "externalviewer.dataset.unnamed": "Couche du datahub",
343
340
  "facets.block.title.OrgForResource": "Organisation",
@@ -385,7 +382,7 @@
385
382
  "map.add.layer": "Ajouter une couche",
386
383
  "map.add.layer.catalog": "Du catalogue",
387
384
  "map.add.layer.file": "À partir d'un fichier",
388
- "map.add.layer.ogc.api": "",
385
+ "map.add.layer.ogc.api": "Depuis un service OGC API",
389
386
  "map.add.layer.wfs": "Depuis un service WFS",
390
387
  "map.add.layer.wms": "Depuis un service WMS",
391
388
  "map.addFromFile.placeholder": "Cliquez ou déposez un fichier ici",
@@ -398,7 +395,7 @@
398
395
  "map.loading.data": "Chargement des données...",
399
396
  "map.loading.service": "Chargement du service...",
400
397
  "map.navigation.message": "Veuillez utiliser CTRL + souris (ou deux doigts sur mobile) pour naviguer sur la carte",
401
- "map.ogc.urlInput.hint": "",
398
+ "map.ogc.urlInput.hint": "Entrez l'URL du service OGC API",
402
399
  "map.select.layer": "Source de données",
403
400
  "map.wfs.urlInput.hint": "Entrez l'URL du service WFS",
404
401
  "map.wms.urlInput.hint": "Entrez l'URL du service WMS",
@@ -425,6 +422,7 @@
425
422
  "record.action.download": "Télécharger",
426
423
  "record.action.duplicate": "Dupliquer",
427
424
  "record.action.duplicating": "Duplication...",
425
+ "record.action.rollback": "Restaurer",
428
426
  "record.action.view": "Voir",
429
427
  "record.externalViewer.open": "Ouvrir dans le visualiseur externe",
430
428
  "record.feature.limit": "La ressource contient plus de {count} entités et ne peut pas être affichée ici.",
@@ -547,6 +545,8 @@
547
545
  "search.error.recordNotFound": "Cette donnée n'a pu être trouvée.",
548
546
  "search.field.any.placeholder": "Rechercher un jeu de données...",
549
547
  "search.field.sortBy": "Trier par :",
548
+ "search.filters.availableServices.download": "",
549
+ "search.filters.availableServices.view": "",
550
550
  "search.filters.changeDate": "Mise à jour",
551
551
  "search.filters.clear": "Réinitialiser",
552
552
  "search.filters.contact": "Contacts",
@@ -602,7 +602,6 @@
602
602
  "tooltip.url.open": "Ouvrir l'URL",
603
603
  "ui.readLess": "Réduire",
604
604
  "ui.readMore": "Lire la suite",
605
- "wfs.aggregations.notsupported": "Agrégations non supportées pour les services WFS",
606
605
  "wfs.feature.limit": "Trop d'objets pour afficher la couche WFS !",
607
606
  "wfs.featuretype.notfound": "La classe d'objets n'a pas été trouvée dans le service",
608
607
  "wfs.geojsongml.notsupported": "Le service ne supporte pas le format GeoJSON ou GML",
@@ -20,8 +20,6 @@
20
20
  "chart.type.lineSmooth": "grafico a linea liscia",
21
21
  "chart.type.pie": "grafico a torta",
22
22
  "dashboard.catalog.allRecords": "Datasets",
23
- "dashboard.catalog.contacts": "Contatti",
24
- "dashboard.catalog.thesaurus": "Thesauri",
25
23
  "dashboard.createRecord": "Crea un record",
26
24
  "dashboard.importRecord": "Importare",
27
25
  "dashboard.importRecord.importExternal": "Importare un dataset esterno",
@@ -34,7 +32,6 @@
34
32
  "dashboard.records.myDraft": "Le mie bozze",
35
33
  "dashboard.records.myRecords": "I miei dati",
36
34
  "dashboard.records.search": "Risultati per \"{searchText}\"",
37
- "dashboard.records.templates": "Modelli precompilati",
38
35
  "dashboard.records.userDetail": "Nome",
39
36
  "dashboard.records.userEmail": "Email",
40
37
  "dashboard.records.username": "Nome utente",
@@ -205,9 +202,9 @@
205
202
  "editor.record.deleteError.title": "Errore durante l'eliminazione",
206
203
  "editor.record.deleteSuccess.body": "Il dataset è stato eliminato correttamente",
207
204
  "editor.record.deleteSuccess.title": "Eliminazione riuscita",
208
- "editor.record.error.back": "",
209
- "editor.record.error.explanation": "",
210
- "editor.record.error.message": "",
205
+ "editor.record.error.back": "Ritorna al catalogo",
206
+ "editor.record.error.explanation": "Forse non ha accesso a questa pagina oppure questo collegamento potrebbe non essere valido.",
207
+ "editor.record.error.message": "Qualcosa è andato storto",
211
208
  "editor.record.form.bottomButtons.comeBackLater": "Ritorna più tardi",
212
209
  "editor.record.form.bottomButtons.next": "Avanti",
213
210
  "editor.record.form.bottomButtons.previous": "Precedente",
@@ -267,18 +264,18 @@
267
264
  "editor.record.form.keywords.place.placeholder": "Cerca una posizione per parola chiave",
268
265
  "editor.record.form.keywords.place.withoutExtent": "Questa parola chiave non ha una posizione geografica associata",
269
266
  "editor.record.form.keywords.placeholder": "Seleziona una parola chiave",
270
- "editor.record.form.license.cc-by": "",
271
- "editor.record.form.license.cc-by-sa": "",
272
- "editor.record.form.license.cc-zero": "",
267
+ "editor.record.form.license.cc-by": "Creative Commons CC-BY",
268
+ "editor.record.form.license.cc-by-sa": "Creative Commons CC-BY-SA",
269
+ "editor.record.form.license.cc-zero": "Creative Commons CC-0",
273
270
  "editor.record.form.license.etalab": "Licenza aperta (Etalab)",
274
271
  "editor.record.form.license.etalab-v2": "Licenza aperta v2.0 (Etalab)",
275
- "editor.record.form.license.odbl": "",
276
- "editor.record.form.license.odc-by": "",
277
- "editor.record.form.license.pddl": "",
272
+ "editor.record.form.license.odbl": "Open Data Commons ODbL",
273
+ "editor.record.form.license.odc-by": "Open Data Commons ODC-By",
274
+ "editor.record.form.license.pddl": "Open Data Commons PDDL",
278
275
  "editor.record.form.license.unknown": "Sconosciuto o assente",
279
276
  "editor.record.form.page.accessAndContact": "Informazioni per l'uso",
280
277
  "editor.record.form.page.description": "Descrizione del dataset",
281
- "editor.record.form.page.resources": "",
278
+ "editor.record.form.page.resources": "Risorse",
282
279
  "editor.record.form.section.about.description": "Queste informazioni riguardano il dataset",
283
280
  "editor.record.form.section.about.label": "Informazioni sul dataset",
284
281
  "editor.record.form.section.annexes.description": "Gli allegati sono risorse facoltative. Sono allegati al dataset e aiutano a comprendere meglio i dati (avviso, ecc.).",
@@ -305,7 +302,7 @@
305
302
  "editor.record.loadError.body": "Impossibile caricare il dataset:",
306
303
  "editor.record.loadError.closeMessage": "Capito",
307
304
  "editor.record.loadError.title": "Errore durante il caricamento",
308
- "editor.record.lock.reason": "",
305
+ "editor.record.lock.reason": "Non è un editore di uno dei gruppi autorizzati",
309
306
  "editor.record.onlineResource.protocol.other": "Altro",
310
307
  "editor.record.onlineResourceError.body": "Ha successo un'errore durante l'aggiunta della risorsa:",
311
308
  "editor.record.onlineResourceError.closeMessage": "Capito",
@@ -327,7 +324,7 @@
327
324
  "editor.record.resourceError.closeMessage": "Capito",
328
325
  "editor.record.resourceError.title": "Errore con gli allegati",
329
326
  "editor.record.saveStatus.draftWithChangesPending": "Salvato - Modifiche non pubblicate",
330
- "editor.record.saveStatus.recordNotPublished": "",
327
+ "editor.record.saveStatus.recordNotPublished": "Salvato - non pubblicato",
331
328
  "editor.record.saveStatus.recordUpToDate": "Salvato - Dataset aggiornato",
332
329
  "editor.record.undo.confirmation.cancelText": "Mantieni le modifiche",
333
330
  "editor.record.undo.confirmation.confirmText": "Annulla le modifiche",
@@ -337,7 +334,7 @@
337
334
  "editor.record.undo.tooltip.enabled": "Fare clic su questo pulsante per annullare le modifiche apportate a questo dataset",
338
335
  "editor.record.upToDate": "Questo dataset è aggiornato",
339
336
  "editor.sidebar.logout": "Esci",
340
- "editor.sidebar.menu.editor": "",
337
+ "editor.sidebar.menu.editor": "Editore",
341
338
  "editor.temporary.disabled": "Non ancora implementato",
342
339
  "externalviewer.dataset.unnamed": "Layer del datahub",
343
340
  "facets.block.title.OrgForResource": "Organizzazione",
@@ -385,7 +382,7 @@
385
382
  "map.add.layer": "Aggiungere un layer",
386
383
  "map.add.layer.catalog": "Dal catalogo",
387
384
  "map.add.layer.file": "Da un file",
388
- "map.add.layer.ogc.api": "",
385
+ "map.add.layer.ogc.api": "Da OGC API",
389
386
  "map.add.layer.wfs": "Da un WFS",
390
387
  "map.add.layer.wms": "Da un WMS",
391
388
  "map.addFromFile.placeholder": "Clicca o trascina un file qui",
@@ -398,7 +395,7 @@
398
395
  "map.loading.data": "Caricamento dati...",
399
396
  "map.loading.service": "Caricamento del servizio...",
400
397
  "map.navigation.message": "Si prega di utilizzare CTRL + mouse (o due dita su mobile) per navigare sulla mappa",
401
- "map.ogc.urlInput.hint": "",
398
+ "map.ogc.urlInput.hint": "Inserisci URL del servizio OGC API",
402
399
  "map.select.layer": "Sorgente dati",
403
400
  "map.wfs.urlInput.hint": "Inserisci URL del servizio WFS",
404
401
  "map.wms.urlInput.hint": "Inserisci URL del servizio WMS",
@@ -424,7 +421,8 @@
424
421
  "record.action.delete": "Elimina",
425
422
  "record.action.download": "Scarica",
426
423
  "record.action.duplicate": "Duplicato",
427
- "record.action.duplicating": "",
424
+ "record.action.duplicating": "Duplicazione",
425
+ "record.action.rollback": "Annulla",
428
426
  "record.action.view": "Visualizza",
429
427
  "record.externalViewer.open": "Aprire nel visualizzatore esterno",
430
428
  "record.feature.limit": "La risorsa contiene più di {count} funzionalità e non può essere visualizzata qui.",
@@ -547,6 +545,8 @@
547
545
  "search.error.recordNotFound": "Impossibile trovare questi dati.",
548
546
  "search.field.any.placeholder": "Cerca un dataset...",
549
547
  "search.field.sortBy": "Ordina per:",
548
+ "search.filters.availableServices.download": "",
549
+ "search.filters.availableServices.view": "",
550
550
  "search.filters.changeDate": "Aggiornato",
551
551
  "search.filters.clear": "Ripristina",
552
552
  "search.filters.contact": "Contatti",
@@ -602,7 +602,7 @@
602
602
  "tooltip.url.open": "Aprire l'URL",
603
603
  "ui.readLess": "Ridurre",
604
604
  "ui.readMore": "Leggere di più",
605
- "wfs.aggregations.notsupported": "",
605
+ "wfs.aggregations.notsupported": "Aggregazioni non supportate per i servizi WFS",
606
606
  "wfs.feature.limit": "Troppi oggetti per visualizzare il WFS layer!",
607
607
  "wfs.featuretype.notfound": "La classe di oggetto non è stata trovata nel servizio",
608
608
  "wfs.geojsongml.notsupported": "Il servizio non supporta il formato GeoJSON o GML",
@@ -20,8 +20,6 @@
20
20
  "chart.type.lineSmooth": "glad lijndiagram",
21
21
  "chart.type.pie": "cirkeldiagram",
22
22
  "dashboard.catalog.allRecords": "",
23
- "dashboard.catalog.contacts": "",
24
- "dashboard.catalog.thesaurus": "",
25
23
  "dashboard.createRecord": "",
26
24
  "dashboard.importRecord": "",
27
25
  "dashboard.importRecord.importExternal": "",
@@ -34,7 +32,6 @@
34
32
  "dashboard.records.myDraft": "Mijn concepten",
35
33
  "dashboard.records.myRecords": "Mijn Records",
36
34
  "dashboard.records.search": "Zoeken naar \"{searchText}\"",
37
- "dashboard.records.templates": "",
38
35
  "dashboard.records.userDetail": "",
39
36
  "dashboard.records.userEmail": "",
40
37
  "dashboard.records.username": "",
@@ -425,6 +422,7 @@
425
422
  "record.action.download": "",
426
423
  "record.action.duplicate": "",
427
424
  "record.action.duplicating": "",
425
+ "record.action.rollback": "",
428
426
  "record.action.view": "",
429
427
  "record.externalViewer.open": "",
430
428
  "record.feature.limit": "",
@@ -547,6 +545,8 @@
547
545
  "search.error.recordNotFound": "",
548
546
  "search.field.any.placeholder": "",
549
547
  "search.field.sortBy": "",
548
+ "search.filters.availableServices.download": "",
549
+ "search.filters.availableServices.view": "",
550
550
  "search.filters.changeDate": "",
551
551
  "search.filters.clear": "",
552
552
  "search.filters.contact": "",
@@ -602,7 +602,6 @@
602
602
  "tooltip.url.open": "",
603
603
  "ui.readLess": "",
604
604
  "ui.readMore": "",
605
- "wfs.aggregations.notsupported": "",
606
605
  "wfs.feature.limit": "",
607
606
  "wfs.featuretype.notfound": "",
608
607
  "wfs.geojsongml.notsupported": "",
@@ -20,8 +20,6 @@
20
20
  "chart.type.lineSmooth": "gráfico de linha suave",
21
21
  "chart.type.pie": "gráfico de pizza",
22
22
  "dashboard.catalog.allRecords": "",
23
- "dashboard.catalog.contacts": "",
24
- "dashboard.catalog.thesaurus": "",
25
23
  "dashboard.createRecord": "",
26
24
  "dashboard.importRecord": "",
27
25
  "dashboard.importRecord.importExternal": "",
@@ -34,7 +32,6 @@
34
32
  "dashboard.records.myDraft": "Meus rascunhos",
35
33
  "dashboard.records.myRecords": "Meus Registros",
36
34
  "dashboard.records.search": "Buscar por \"{searchText}\"",
37
- "dashboard.records.templates": "",
38
35
  "dashboard.records.userDetail": "",
39
36
  "dashboard.records.userEmail": "",
40
37
  "dashboard.records.username": "",
@@ -425,6 +422,7 @@
425
422
  "record.action.download": "",
426
423
  "record.action.duplicate": "",
427
424
  "record.action.duplicating": "",
425
+ "record.action.rollback": "",
428
426
  "record.action.view": "",
429
427
  "record.externalViewer.open": "",
430
428
  "record.feature.limit": "",
@@ -547,6 +545,8 @@
547
545
  "search.error.recordNotFound": "",
548
546
  "search.field.any.placeholder": "",
549
547
  "search.field.sortBy": "",
548
+ "search.filters.availableServices.download": "",
549
+ "search.filters.availableServices.view": "",
550
550
  "search.filters.changeDate": "",
551
551
  "search.filters.clear": "",
552
552
  "search.filters.contact": "",
@@ -602,7 +602,6 @@
602
602
  "tooltip.url.open": "",
603
603
  "ui.readLess": "",
604
604
  "ui.readMore": "",
605
- "wfs.aggregations.notsupported": "",
606
605
  "wfs.feature.limit": "",
607
606
  "wfs.featuretype.notfound": "",
608
607
  "wfs.geojsongml.notsupported": "",
@@ -20,8 +20,6 @@
20
20
  "chart.type.lineSmooth": "vyhladený čiarový graf",
21
21
  "chart.type.pie": "koláčový graf",
22
22
  "dashboard.catalog.allRecords": "",
23
- "dashboard.catalog.contacts": "",
24
- "dashboard.catalog.thesaurus": "",
25
23
  "dashboard.createRecord": "",
26
24
  "dashboard.importRecord": "",
27
25
  "dashboard.importRecord.importExternal": "",
@@ -34,7 +32,6 @@
34
32
  "dashboard.records.myDraft": "Moje koncepty",
35
33
  "dashboard.records.myRecords": "Moje záznamy",
36
34
  "dashboard.records.search": "Hľadať \"{searchText}\"",
37
- "dashboard.records.templates": "",
38
35
  "dashboard.records.userDetail": "Meno",
39
36
  "dashboard.records.userEmail": "Email",
40
37
  "dashboard.records.username": "Užívateľské meno",
@@ -425,6 +422,7 @@
425
422
  "record.action.download": "Stiahnuť",
426
423
  "record.action.duplicate": "",
427
424
  "record.action.duplicating": "",
425
+ "record.action.rollback": "",
428
426
  "record.action.view": "Zobraziť",
429
427
  "record.externalViewer.open": "Otvoriť v externom mapovom prehliadači",
430
428
  "record.feature.limit": "",
@@ -547,6 +545,8 @@
547
545
  "search.error.recordNotFound": "Záznam s identifikátorom \"{ id }\" sa nepodarilo nájsť.",
548
546
  "search.field.any.placeholder": "Hľadať datasety ...",
549
547
  "search.field.sortBy": "Zoradiť podľa:",
548
+ "search.filters.availableServices.download": "",
549
+ "search.filters.availableServices.view": "",
550
550
  "search.filters.changeDate": "",
551
551
  "search.filters.clear": "Obnoviť",
552
552
  "search.filters.contact": "Kontakty",
@@ -602,7 +602,6 @@
602
602
  "tooltip.url.open": "Otvoriť URL",
603
603
  "ui.readLess": "Čítať menej",
604
604
  "ui.readMore": "Čítať viac",
605
- "wfs.aggregations.notsupported": "",
606
605
  "wfs.feature.limit": "",
607
606
  "wfs.featuretype.notfound": "V službe nebol nájdený žiadny zodpovedajúci typ funkcie",
608
607
  "wfs.geojsongml.notsupported": "Táto služba nepodporuje formát GeoJSON alebo GML",