geonetwork-ui 2.4.0-dev.81e72b2e → 2.4.0-dev.825a487d

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 (279) hide show
  1. package/esm2022/libs/api/metadata-converter/src/lib/gn4/atomic-operations.mjs +2 -1
  2. package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.mjs +1 -1
  3. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.mjs +5 -5
  4. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/read-parts.mjs +30 -2
  5. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.mjs +31 -0
  6. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/write-parts.mjs +23 -1
  7. package/esm2022/libs/api/metadata-converter/src/lib/xml-utils.mjs +10 -3
  8. package/esm2022/libs/api/repository/src/lib/gn4/gn4-repository.mjs +31 -3
  9. package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.mjs +9 -5
  10. package/esm2022/libs/common/domain/src/lib/model/record/contact.model.mjs +28 -1
  11. package/esm2022/libs/common/domain/src/lib/model/record/metadata.model.mjs +1 -1
  12. package/esm2022/libs/common/domain/src/lib/platform.service.interface.mjs +1 -1
  13. package/esm2022/libs/common/domain/src/lib/repository/records-repository.interface.mjs +1 -1
  14. package/esm2022/libs/data-access/gn4/src/openapi/api/records.api.service.mjs +2 -6
  15. package/esm2022/libs/feature/catalog/src/lib/records/records.service.mjs +4 -6
  16. package/esm2022/libs/feature/editor/src/lib/+state/editor.actions.mjs +2 -1
  17. package/esm2022/libs/feature/editor/src/lib/+state/editor.effects.mjs +3 -3
  18. package/esm2022/libs/feature/editor/src/lib/+state/editor.facade.mjs +7 -2
  19. package/esm2022/libs/feature/editor/src/lib/+state/editor.models.mjs +1 -1
  20. package/esm2022/libs/feature/editor/src/lib/+state/editor.reducer.mjs +7 -3
  21. package/esm2022/libs/feature/editor/src/lib/+state/editor.selectors.mjs +16 -6
  22. package/esm2022/libs/feature/editor/src/lib/components/contact-card/contact-card.component.mjs +29 -0
  23. package/esm2022/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.mjs +131 -0
  24. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.mjs +170 -0
  25. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.mjs +6 -4
  26. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.mjs +21 -0
  27. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.mjs +7 -6
  28. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.mjs +24 -9
  29. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/index.mjs +1 -2
  30. package/esm2022/libs/feature/editor/src/lib/components/record-form/record-form.component.mjs +11 -7
  31. package/esm2022/libs/feature/editor/src/lib/expressions.mjs +1 -1
  32. package/esm2022/libs/feature/editor/src/lib/fields.config.mjs +159 -60
  33. package/esm2022/libs/feature/editor/src/lib/models/editor-config.model.mjs +2 -0
  34. package/esm2022/libs/feature/editor/src/lib/models/index.mjs +2 -1
  35. package/esm2022/libs/feature/editor/src/lib/services/editor.service.mjs +4 -3
  36. package/esm2022/libs/feature/map/src/lib/utils/map-utils.service.mjs +10 -5
  37. package/esm2022/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.mjs +42 -23
  38. package/esm2022/libs/feature/record/src/lib/data-view-share/data-view-share.component.mjs +13 -5
  39. package/esm2022/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.mjs +49 -15
  40. package/esm2022/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.mjs +3 -3
  41. package/esm2022/libs/feature/search/src/lib/results-table/results-table-container.component.mjs +46 -7
  42. package/esm2022/libs/feature/search/src/lib/state/search.facade.mjs +6 -2
  43. package/esm2022/libs/feature/search/src/lib/utils/service/fields.service.mjs +7 -3
  44. package/esm2022/libs/ui/elements/src/index.mjs +2 -1
  45. package/esm2022/libs/ui/elements/src/lib/api-card/api-card.component.mjs +3 -3
  46. package/esm2022/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.mjs +27 -0
  47. package/esm2022/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.mjs +4 -3
  48. package/esm2022/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.mjs +2 -2
  49. package/esm2022/libs/ui/elements/src/lib/metadata-info/metadata-info.component.mjs +6 -5
  50. package/esm2022/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.mjs +5 -11
  51. package/esm2022/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.mjs +3 -3
  52. package/esm2022/libs/ui/elements/src/lib/sortable-list/sortable-list.component.mjs +7 -3
  53. package/esm2022/libs/ui/elements/src/lib/ui-elements.module.mjs +11 -5
  54. package/esm2022/libs/ui/elements/src/lib/user-preview/user-preview.component.mjs +3 -3
  55. package/esm2022/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.mjs +19 -5
  56. package/esm2022/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.mjs +3 -3
  57. package/esm2022/libs/ui/layout/src/lib/interactive-table/interactive-table.component.mjs +3 -3
  58. package/esm2022/libs/ui/layout/src/lib/max-lines/max-lines.component.mjs +3 -3
  59. package/esm2022/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.mjs +67 -0
  60. package/esm2022/libs/ui/search/src/lib/results-table/results-table.component.mjs +28 -8
  61. package/esm2022/libs/ui/widgets/src/index.mjs +2 -1
  62. package/esm2022/libs/ui/widgets/src/lib/popover/popover.component.mjs +68 -0
  63. package/esm2022/translations/de.json +103 -41
  64. package/esm2022/translations/en.json +76 -17
  65. package/esm2022/translations/es.json +75 -13
  66. package/esm2022/translations/fr.json +84 -25
  67. package/esm2022/translations/it.json +76 -14
  68. package/esm2022/translations/nl.json +75 -13
  69. package/esm2022/translations/pt.json +75 -13
  70. package/fesm2022/geonetwork-ui.mjs +1861 -514
  71. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  72. package/libs/api/metadata-converter/src/lib/gn4/atomic-operations.d.ts.map +1 -1
  73. package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts +1 -0
  74. package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts.map +1 -1
  75. package/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.d.ts.map +1 -1
  76. package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts +8 -1
  77. package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts.map +1 -1
  78. package/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.d.ts +5 -0
  79. package/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.d.ts.map +1 -0
  80. package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts +3 -1
  81. package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts.map +1 -1
  82. package/libs/api/metadata-converter/src/lib/xml-utils.d.ts +1 -0
  83. package/libs/api/metadata-converter/src/lib/xml-utils.d.ts.map +1 -1
  84. package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts +7 -1
  85. package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts.map +1 -1
  86. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts +2 -1
  87. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts.map +1 -1
  88. package/libs/common/domain/src/lib/model/record/contact.model.d.ts +1 -0
  89. package/libs/common/domain/src/lib/model/record/contact.model.d.ts.map +1 -1
  90. package/libs/common/domain/src/lib/model/record/metadata.model.d.ts +2 -1
  91. package/libs/common/domain/src/lib/model/record/metadata.model.d.ts.map +1 -1
  92. package/libs/common/domain/src/lib/platform.service.interface.d.ts +2 -1
  93. package/libs/common/domain/src/lib/platform.service.interface.d.ts.map +1 -1
  94. package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts +17 -0
  95. package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts.map +1 -1
  96. package/libs/data-access/gn4/src/openapi/api/records.api.service.d.ts.map +1 -1
  97. package/libs/feature/catalog/src/lib/records/records.service.d.ts.map +1 -1
  98. package/libs/feature/editor/src/lib/+state/editor.actions.d.ts +5 -0
  99. package/libs/feature/editor/src/lib/+state/editor.actions.d.ts.map +1 -1
  100. package/libs/feature/editor/src/lib/+state/editor.facade.d.ts +4 -4
  101. package/libs/feature/editor/src/lib/+state/editor.facade.d.ts.map +1 -1
  102. package/libs/feature/editor/src/lib/+state/editor.models.d.ts +8 -0
  103. package/libs/feature/editor/src/lib/+state/editor.models.d.ts.map +1 -1
  104. package/libs/feature/editor/src/lib/+state/editor.reducer.d.ts +4 -3
  105. package/libs/feature/editor/src/lib/+state/editor.reducer.d.ts.map +1 -1
  106. package/libs/feature/editor/src/lib/+state/editor.selectors.d.ts +4 -8
  107. package/libs/feature/editor/src/lib/+state/editor.selectors.d.ts.map +1 -1
  108. package/libs/feature/editor/src/lib/components/contact-card/contact-card.component.d.ts +12 -0
  109. package/libs/feature/editor/src/lib/components/contact-card/contact-card.component.d.ts.map +1 -0
  110. package/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.d.ts +27 -0
  111. package/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.d.ts.map +1 -0
  112. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.d.ts +47 -0
  113. 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 -0
  114. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.d.ts.map +1 -1
  115. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts +11 -0
  116. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts.map +1 -0
  117. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.d.ts +3 -1
  118. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.d.ts.map +1 -1
  119. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts +7 -2
  120. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts.map +1 -1
  121. package/libs/feature/editor/src/lib/components/record-form/form-field/index.d.ts +0 -1
  122. package/libs/feature/editor/src/lib/components/record-form/form-field/index.d.ts.map +1 -1
  123. package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts +5 -7
  124. package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts.map +1 -1
  125. package/libs/feature/editor/src/lib/expressions.d.ts +1 -1
  126. package/libs/feature/editor/src/lib/expressions.d.ts.map +1 -1
  127. package/libs/feature/editor/src/lib/fields.config.d.ts +40 -2
  128. package/libs/feature/editor/src/lib/fields.config.d.ts.map +1 -1
  129. package/libs/feature/editor/src/lib/models/editor-config.model.d.ts +36 -0
  130. package/libs/feature/editor/src/lib/models/editor-config.model.d.ts.map +1 -0
  131. package/libs/feature/editor/src/lib/models/index.d.ts +1 -0
  132. package/libs/feature/editor/src/lib/models/index.d.ts.map +1 -1
  133. package/libs/feature/editor/src/lib/services/editor.service.d.ts +2 -2
  134. package/libs/feature/editor/src/lib/services/editor.service.d.ts.map +1 -1
  135. package/libs/feature/map/src/lib/utils/map-utils.service.d.ts.map +1 -1
  136. package/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.d.ts +4 -1
  137. package/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.d.ts.map +1 -1
  138. package/libs/feature/record/src/lib/data-view-share/data-view-share.component.d.ts +4 -1
  139. package/libs/feature/record/src/lib/data-view-share/data-view-share.component.d.ts.map +1 -1
  140. package/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.d.ts +4 -1
  141. package/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.d.ts.map +1 -1
  142. package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts +14 -4
  143. package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts.map +1 -1
  144. package/libs/feature/search/src/lib/state/search.facade.d.ts +1 -0
  145. package/libs/feature/search/src/lib/state/search.facade.d.ts.map +1 -1
  146. package/libs/feature/search/src/lib/utils/service/fields.service.d.ts.map +1 -1
  147. package/libs/ui/elements/src/index.d.ts +1 -0
  148. package/libs/ui/elements/src/index.d.ts.map +1 -1
  149. package/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.d.ts +18 -0
  150. package/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.d.ts.map +1 -0
  151. package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts +1 -1
  152. package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts +0 -3
  153. package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts.map +1 -1
  154. package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts +1 -1
  155. package/libs/ui/elements/src/lib/sortable-list/sortable-list.component.d.ts +4 -4
  156. package/libs/ui/elements/src/lib/sortable-list/sortable-list.component.d.ts.map +1 -1
  157. package/libs/ui/elements/src/lib/ui-elements.module.d.ts +7 -5
  158. package/libs/ui/elements/src/lib/ui-elements.module.d.ts.map +1 -1
  159. package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts +9 -1
  160. package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts.map +1 -1
  161. package/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.d.ts +20 -0
  162. package/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.d.ts.map +1 -0
  163. package/libs/ui/search/src/lib/results-table/results-table.component.d.ts +9 -3
  164. package/libs/ui/search/src/lib/results-table/results-table.component.d.ts.map +1 -1
  165. package/libs/ui/widgets/src/index.d.ts +1 -0
  166. package/libs/ui/widgets/src/index.d.ts.map +1 -1
  167. package/libs/ui/widgets/src/lib/popover/popover.component.d.ts +19 -0
  168. package/libs/ui/widgets/src/lib/popover/popover.component.d.ts.map +1 -0
  169. package/package.json +1 -1
  170. package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.ts +5 -1
  171. package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +37 -12
  172. package/src/libs/api/metadata-converter/src/lib/fixtures/metawal.records.ts +5 -1
  173. package/src/libs/api/metadata-converter/src/lib/gn4/atomic-operations.ts +1 -0
  174. package/src/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.ts +1 -0
  175. package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +4 -2
  176. package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +72 -2
  177. package/src/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.ts +39 -0
  178. package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +70 -1
  179. package/src/libs/api/metadata-converter/src/lib/xml-utils.ts +13 -5
  180. package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +42 -2
  181. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +26 -15
  182. package/src/libs/common/domain/src/lib/model/record/contact.model.ts +28 -0
  183. package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +2 -1
  184. package/src/libs/common/domain/src/lib/platform.service.interface.ts +5 -1
  185. package/src/libs/common/domain/src/lib/repository/records-repository.interface.ts +22 -0
  186. package/src/libs/common/fixtures/src/index.ts +2 -0
  187. package/src/libs/common/fixtures/src/lib/editor/editor.fixtures.ts +156 -0
  188. package/src/libs/common/fixtures/src/lib/editor/index.ts +1 -0
  189. package/src/libs/data-access/gn4/src/openapi/api/records.api.service.ts +1 -5
  190. package/src/libs/data-access/gn4/src/spec.yaml +0 -8
  191. package/src/libs/feature/catalog/src/lib/records/records.service.ts +6 -8
  192. package/src/libs/feature/editor/src/lib/+state/editor.actions.ts +5 -0
  193. package/src/libs/feature/editor/src/lib/+state/editor.effects.ts +2 -2
  194. package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +9 -1
  195. package/src/libs/feature/editor/src/lib/+state/editor.models.ts +11 -0
  196. package/src/libs/feature/editor/src/lib/+state/editor.reducer.ts +11 -5
  197. package/src/libs/feature/editor/src/lib/+state/editor.selectors.ts +22 -8
  198. package/src/libs/feature/editor/src/lib/components/contact-card/contact-card.component.css +0 -0
  199. package/src/libs/feature/editor/src/lib/components/contact-card/contact-card.component.html +25 -0
  200. package/src/libs/feature/editor/src/lib/components/contact-card/contact-card.component.ts +30 -0
  201. package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.html +2 -1
  202. package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.ts +110 -19
  203. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.css +0 -0
  204. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.html +76 -0
  205. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.ts +271 -0
  206. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.html +1 -1
  207. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.ts +8 -6
  208. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.css +0 -0
  209. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.html +5 -0
  210. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.ts +22 -0
  211. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.ts +8 -7
  212. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +20 -9
  213. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +20 -2
  214. package/src/libs/feature/editor/src/lib/components/record-form/form-field/index.ts +0 -1
  215. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.html +51 -11
  216. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.ts +15 -8
  217. package/src/libs/feature/editor/src/lib/expressions.ts +1 -1
  218. package/src/libs/feature/editor/src/lib/fields.config.ts +193 -61
  219. package/src/libs/feature/editor/src/lib/models/editor-config.model.ts +53 -0
  220. package/src/libs/feature/editor/src/lib/models/index.ts +1 -0
  221. package/src/libs/feature/editor/src/lib/services/editor.service.ts +8 -4
  222. package/src/libs/feature/map/src/lib/utils/map-utils.service.ts +8 -4
  223. package/src/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.ts +36 -19
  224. package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.html +6 -2
  225. package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.ts +11 -0
  226. package/src/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.ts +59 -12
  227. package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.html +1 -1
  228. package/src/libs/feature/search/src/lib/results-table/results-table-container.component.html +3 -1
  229. package/src/libs/feature/search/src/lib/results-table/results-table-container.component.ts +57 -3
  230. package/src/libs/feature/search/src/lib/state/search.facade.ts +6 -0
  231. package/src/libs/feature/search/src/lib/utils/service/fields.service.ts +16 -2
  232. package/src/libs/ui/elements/src/index.ts +1 -0
  233. package/src/libs/ui/elements/src/lib/api-card/api-card.component.html +29 -29
  234. package/src/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.css +0 -0
  235. package/src/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.html +12 -0
  236. package/src/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.ts +37 -0
  237. package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.html +4 -1
  238. package/src/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.css +2 -1
  239. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +12 -8
  240. package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.html +14 -20
  241. package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.ts +0 -10
  242. package/src/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.html +1 -1
  243. package/src/libs/ui/elements/src/lib/sortable-list/sortable-list.component.html +3 -1
  244. package/src/libs/ui/elements/src/lib/sortable-list/sortable-list.component.ts +8 -4
  245. package/src/libs/ui/elements/src/lib/ui-elements.module.ts +4 -2
  246. package/src/libs/ui/elements/src/lib/user-preview/user-preview.component.html +1 -1
  247. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.ts +15 -3
  248. package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.css +31 -0
  249. package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.html +15 -0
  250. package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.ts +38 -0
  251. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.html +1 -1
  252. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.html +1 -0
  253. package/src/libs/ui/layout/src/lib/max-lines/max-lines.component.html +1 -0
  254. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.css +0 -0
  255. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.html +26 -0
  256. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.ts +74 -0
  257. package/src/libs/ui/search/src/lib/results-table/results-table.component.html +15 -1
  258. package/src/libs/ui/search/src/lib/results-table/results-table.component.ts +26 -12
  259. package/src/libs/ui/widgets/src/index.ts +1 -0
  260. package/src/libs/ui/widgets/src/lib/popover/popover.component.css +0 -0
  261. package/src/libs/ui/widgets/src/lib/popover/popover.component.html +3 -0
  262. package/src/libs/ui/widgets/src/lib/popover/popover.component.ts +85 -0
  263. package/tailwind.base.css +2 -1
  264. package/translations/de.json +103 -41
  265. package/translations/en.json +76 -17
  266. package/translations/es.json +75 -13
  267. package/translations/fr.json +84 -25
  268. package/translations/it.json +76 -14
  269. package/translations/nl.json +75 -13
  270. package/translations/pt.json +75 -13
  271. package/translations/sk.json +76 -14
  272. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.mjs +0 -2
  273. package/esm2022/libs/feature/editor/src/lib/models/fields.model.mjs +0 -2
  274. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.d.ts +0 -26
  275. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.d.ts.map +0 -1
  276. package/libs/feature/editor/src/lib/models/fields.model.d.ts +0 -15
  277. package/libs/feature/editor/src/lib/models/fields.model.d.ts.map +0 -1
  278. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.ts +0 -43
  279. package/src/libs/feature/editor/src/lib/models/fields.model.ts +0 -29
@@ -2,7 +2,7 @@
2
2
  "Add Layer As": "",
3
3
  "button.login": "Log in",
4
4
  "catalog.figures.datasets": "{count, plural, =0{datasets} one{dataset} other{datasets}}",
5
- "catalog.figures.organizations": "{count, plural, =0{organisations} one{organisation} other{organisations}}",
5
+ "catalog.figures.organizations": "{count, plural, =0{organizations} one{organization} other{organizations}}",
6
6
  "chart.aggregation.average": "average",
7
7
  "chart.aggregation.count": "count",
8
8
  "chart.aggregation.max": "max",
@@ -46,11 +46,11 @@
46
46
  "datafeeder.analysisProgressBar.subtitle": "The analysis may take several minutes, please wait.",
47
47
  "datafeeder.analysisProgressBar.title": "Analyze in progress",
48
48
  "datafeeder.datasetValidation.datasetInformation": "The provided dataset contains {number} entities",
49
- "datafeeder.datasetValidationCsv.lineNumbers": "Sample of the first 5 lines* of the dataset:",
50
- "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",
51
49
  "datafeeder.datasetValidation.submitButton": "OK, my data are correct",
52
50
  "datafeeder.datasetValidation.title": "Make sure your data are correct",
53
51
  "datafeeder.datasetValidation.unknown": " - ",
52
+ "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",
53
+ "datafeeder.datasetValidationCsv.lineNumbers": "Sample of the first 5 lines* of the dataset:",
54
54
  "datafeeder.form.abstract": "How would you describe your dataset?",
55
55
  "datafeeder.form.datepicker": "Do you know when the dataset was created?",
56
56
  "datafeeder.form.description": "Finally, please describe the process that was used to create the dataset",
@@ -129,7 +129,7 @@
129
129
  "datahub.header.lastRecords": "The latest",
130
130
  "datahub.header.myfavorites": "My favorites",
131
131
  "datahub.header.news": "Home",
132
- "datahub.header.organisations": "Organisations",
132
+ "datahub.header.organizations": "Organizations",
133
133
  "datahub.header.popularRecords": "The most popular",
134
134
  "datahub.header.title.html": "<div class=\"text-white\">Discover open<br> data from my Organization</div>",
135
135
  "datahub.news.contact.contactus": "Contact us",
@@ -147,6 +147,27 @@
147
147
  "dataset.error.parse": "The data was loaded but could not be parsed: \"{ info }\"",
148
148
  "dataset.error.unknown": "The data cannot be displayed: \"{ info }\"",
149
149
  "dataset.error.unsupportedType": "The following content type is unsupported: \"{ info }\"",
150
+ "domain.contact.role.author": "Author",
151
+ "domain.contact.role.collaborator": "Collaborator",
152
+ "domain.contact.role.contributor": "Contributor",
153
+ "domain.contact.role.custodian": "Custodian",
154
+ "domain.contact.role.distributor": "Distributor",
155
+ "domain.contact.role.editor": "Editor",
156
+ "domain.contact.role.funder": "Funder",
157
+ "domain.contact.role.mediator": "Mediator",
158
+ "domain.contact.role.originator": "Originator",
159
+ "domain.contact.role.other": "Other",
160
+ "domain.contact.role.owner": "Owner",
161
+ "domain.contact.role.point_of_contact": "Point of contact",
162
+ "domain.contact.role.principal_investigator": "Principal investigator",
163
+ "domain.contact.role.processor": "Processor",
164
+ "domain.contact.role.publisher": "Publisher",
165
+ "domain.contact.role.resource_provider": "Resource provider",
166
+ "domain.contact.role.rights_holder": "Rights holder",
167
+ "domain.contact.role.sponsor": "Sponsor",
168
+ "domain.contact.role.stakeholder": "Stakeholder",
169
+ "domain.contact.role.unspecified": "Unspecified",
170
+ "domain.contact.role.user": "User",
150
171
  "domain.record.status.completed": "Completed",
151
172
  "domain.record.status.deprecated": "Deprecated",
152
173
  "domain.record.status.ongoing": "On going",
@@ -165,7 +186,29 @@
165
186
  "downloads.format.unknown": "unknown",
166
187
  "downloads.wfs.featuretype.not.found": "The layer was not found",
167
188
  "dropFile": "drop file",
168
- "editor.record.form.license": "License",
189
+ "editor.record.delete.confirmation.cancelText": "Cancel",
190
+ "editor.record.delete.confirmation.confirmText": "Delete",
191
+ "editor.record.delete.confirmation.message": "Are you sure you want to delete this record?",
192
+ "editor.record.delete.confirmation.title": "Delete record?",
193
+ "editor.record.deleteError.body": "The record could not be deleted:",
194
+ "editor.record.deleteError.closeMessage": "Understood",
195
+ "editor.record.deleteError.title": "Error deleting record",
196
+ "editor.record.deleteSuccess.body": "The record was successfully deleted !",
197
+ "editor.record.deleteSuccess.title": "Delete success",
198
+ "editor.record.form.bottomButtons.comeBackLater": "Come back later",
199
+ "editor.record.form.bottomButtons.next": "Next",
200
+ "editor.record.form.bottomButtons.previous": "Previous",
201
+ "editor.record.form.field.abstract": "Abstract",
202
+ "editor.record.form.field.contactsForResource.noContact": "Please provide at least one point of contact responsible for the data.",
203
+ "editor.record.form.field.keywords": "Keywords",
204
+ "editor.record.form.field.license": "License",
205
+ "editor.record.form.field.overviews": "Overviews",
206
+ "editor.record.form.field.recordUpdated": "Record Updated",
207
+ "editor.record.form.field.resourceUpdated": "Resource Updated",
208
+ "editor.record.form.field.temporalExtents": "Temporal extents",
209
+ "editor.record.form.field.title": "Metadata title",
210
+ "editor.record.form.field.uniqueIdentifier": "Unique identifier",
211
+ "editor.record.form.field.updateFrequency": "Update frequency",
169
212
  "editor.record.form.license.cc-by": "Creative Commons CC-BY",
170
213
  "editor.record.form.license.cc-by-sa": "Creative Commons CC-BY-SA",
171
214
  "editor.record.form.license.cc-zero": "Creative Commons CC-0",
@@ -175,13 +218,26 @@
175
218
  "editor.record.form.license.odc-by": "Open Data Commons ODC-By",
176
219
  "editor.record.form.license.pddl": "Open Data Commons PDDL",
177
220
  "editor.record.form.license.unknown": "Unknown or absent",
178
- "editor.record.form.resourceUpdated": "Last update date",
179
- "editor.record.form.temporalExtents": "Temporal extent",
221
+ "editor.record.form.page.accessAndContact": "Access and contact",
222
+ "editor.record.form.page.description": "Resource description",
223
+ "editor.record.form.page.ressources": "Resources",
224
+ "editor.record.form.section.about.description": "This section describes the resource.",
225
+ "editor.record.form.section.about.label": "About the resource",
226
+ "editor.record.form.section.annexes.label": "Annexes",
227
+ "editor.record.form.section.associatedResources.description": "Drop files here to associate them with the resource.",
228
+ "editor.record.form.section.associatedResources.label": "Associated resources",
229
+ "editor.record.form.section.classification.description": "The classification has an impact on the access to the data.",
230
+ "editor.record.form.section.classification.label": "Classification",
231
+ "editor.record.form.section.dataManagers.description": "The data managers are responsible for the data.",
232
+ "editor.record.form.section.dataManagers.label": "Data managers",
233
+ "editor.record.form.section.dataPointOfContact.description": "This information concerns the metadata.",
234
+ "editor.record.form.section.dataPointOfContact.label": "Data point of contact",
235
+ "editor.record.form.section.geographicalCoverage.label": "Geographical coverage",
236
+ "editor.record.form.section.useAndAccessConditions.label": "Use and access conditions",
180
237
  "editor.record.form.temporalExtents.addDate": "Time instant",
181
238
  "editor.record.form.temporalExtents.addRange": "Time period",
182
239
  "editor.record.form.temporalExtents.date": "Date",
183
240
  "editor.record.form.temporalExtents.range": "Date range",
184
- "editor.record.form.updateFrequency": "Update frequency",
185
241
  "editor.record.form.updateFrequency.planned": "The data should be updated regularly.",
186
242
  "editor.record.loadError.body": "The record could not be loaded:",
187
243
  "editor.record.loadError.closeMessage": "Understood",
@@ -196,6 +252,7 @@
196
252
  "editor.record.saveStatus.draftWithChangesPending": "Saved as draft - changes are pending",
197
253
  "editor.record.saveStatus.recordUpToDate": "Record is up to date",
198
254
  "editor.record.upToDate": "This record is up to date",
255
+ "editor.sidebar.menu.editor": "Editor",
199
256
  "externalviewer.dataset.unnamed": "Datahub layer",
200
257
  "facets.block.title.OrgForResource": "Organisation",
201
258
  "facets.block.title.availableInServices": "Available for",
@@ -264,17 +321,17 @@
264
321
  "organisations.sortBy.nameDesc": "Name Z → A",
265
322
  "organisations.sortBy.recordCountAsc": "Publications 0 → 9",
266
323
  "organisations.sortBy.recordCountDesc": "Publications 9 → 0",
267
- "organization.header.recordCount": "{count, plural, =0{data} one{data} other{datas}}",
268
- "organization.details.publishedDataset": "{count, plural, =0{published dataset} one{published dataset} other{published datasets}}",
324
+ "organization.details.lastPublishedDatasets": "",
325
+ "organization.details.lastPublishedDatasets.searchAllButton": "",
269
326
  "organization.details.mailContact": "Contact by email",
270
- "organization.datasets": "Datasets",
271
- "organization.lastPublishedDatasets": "Last published datasets",
272
- "organization.lastPublishedDatasets.searchAllButton": "Search all",
327
+ "organization.header.recordCount": "{count, plural, =0{data} one{data} other{datas}}",
273
328
  "pagination.nextPage": "Next page",
274
329
  "pagination.page": "page",
275
330
  "pagination.pageOf": "of",
276
331
  "previous": "previous",
332
+ "record.action.delete": "Delete",
277
333
  "record.action.download": "Download",
334
+ "record.action.duplicate": "Duplicate",
278
335
  "record.action.view": "View",
279
336
  "record.externalViewer.open": "Open in the external map viewer",
280
337
  "record.metadata.about": "Description",
@@ -367,11 +424,11 @@
367
424
  "results.sortBy.relevancy": "Relevancy",
368
425
  "search.autocomplete.error": "Suggestions could not be fetched:",
369
426
  "search.error.couldNotReachApi": "The API could not be reached",
427
+ "search.error.organizationHasNoDataset": "This organization has no dataset yet.",
428
+ "search.error.organizationNotFound": "This organization could not be found.",
370
429
  "search.error.receivedError": "An error was received",
371
430
  "search.error.recordHasnolink": "This record currently has no link yet, please come back later.",
372
431
  "search.error.recordNotFound": "The record with identifier \"{ id }\" could not be found.",
373
- "search.error.organizationNotFound": "This organization could not be found.",
374
- "search.error.organizationHasNoDataset": "This organization has no dataset yet.",
375
432
  "search.field.any.placeholder": "Search datasets ...",
376
433
  "search.field.sortBy": "Sort by:",
377
434
  "search.filters.clear": "Reset",
@@ -396,14 +453,16 @@
396
453
  "search.filters.minimize": "Minimize",
397
454
  "search.filters.myRecords": "Show only my records",
398
455
  "search.filters.myRecordsHelp": "When this is enabled, records only created by myself are shown; records created by others will not show up.",
456
+ "search.filters.organization": "Organization",
399
457
  "search.filters.otherRecords": "Showing records from another person",
458
+ "search.filters.producerOrg": "Producer",
400
459
  "search.filters.publicationYear": "Publication year",
401
- "search.filters.publisher": "Organizations",
460
+ "search.filters.publisherOrg": "Publisher",
402
461
  "search.filters.representationType": "Representation type",
403
462
  "search.filters.resourceType": "Resource type",
404
463
  "search.filters.standard": "Standard",
405
464
  "search.filters.title": "Filter your results",
406
- "search.filters.topic": "Topic",
465
+ "search.filters.topic": "Topics",
407
466
  "search.filters.useSpatialFilter": "Show records in the area of interest first",
408
467
  "search.filters.useSpatialFilterHelp": "When this is enabled, records situated in the catalog's area of interest are shown first; records outside of this area will not show up.",
409
468
  "share.tab.permalink": "Share",
@@ -49,6 +49,8 @@
49
49
  "datafeeder.datasetValidation.submitButton": "",
50
50
  "datafeeder.datasetValidation.title": "",
51
51
  "datafeeder.datasetValidation.unknown": "",
52
+ "datafeeder.datasetValidationCsv.explicitLineNumbers": "",
53
+ "datafeeder.datasetValidationCsv.lineNumbers": "",
52
54
  "datafeeder.form.abstract": "",
53
55
  "datafeeder.form.datepicker": "",
54
56
  "datafeeder.form.description": "",
@@ -76,6 +78,7 @@
76
78
  "datafeeder.publishSuccess.geonetworkRecord": "",
77
79
  "datafeeder.publishSuccess.illustration.title": "",
78
80
  "datafeeder.publishSuccess.mapViewer": "",
81
+ "datafeeder.publishSuccess.ogcFeature": "",
79
82
  "datafeeder.publishSuccess.subtitle": "",
80
83
  "datafeeder.publishSuccess.title": "",
81
84
  "datafeeder.publishSuccess.uploadAnotherData": "",
@@ -126,7 +129,7 @@
126
129
  "datahub.header.lastRecords": "",
127
130
  "datahub.header.myfavorites": "",
128
131
  "datahub.header.news": "",
129
- "datahub.header.organisations": "",
132
+ "datahub.header.organizations": "",
130
133
  "datahub.header.popularRecords": "",
131
134
  "datahub.header.title.html": "",
132
135
  "datahub.news.contact.contactus": "",
@@ -144,6 +147,27 @@
144
147
  "dataset.error.parse": "",
145
148
  "dataset.error.unknown": "",
146
149
  "dataset.error.unsupportedType": "",
150
+ "domain.contact.role.author": "",
151
+ "domain.contact.role.collaborator": "",
152
+ "domain.contact.role.contributor": "",
153
+ "domain.contact.role.custodian": "",
154
+ "domain.contact.role.distributor": "",
155
+ "domain.contact.role.editor": "",
156
+ "domain.contact.role.funder": "",
157
+ "domain.contact.role.mediator": "",
158
+ "domain.contact.role.originator": "",
159
+ "domain.contact.role.other": "",
160
+ "domain.contact.role.owner": "",
161
+ "domain.contact.role.point_of_contact": "",
162
+ "domain.contact.role.principal_investigator": "",
163
+ "domain.contact.role.processor": "",
164
+ "domain.contact.role.publisher": "",
165
+ "domain.contact.role.resource_provider": "",
166
+ "domain.contact.role.rights_holder": "",
167
+ "domain.contact.role.sponsor": "",
168
+ "domain.contact.role.stakeholder": "",
169
+ "domain.contact.role.unspecified": "",
170
+ "domain.contact.role.user": "",
147
171
  "domain.record.status.completed": "",
148
172
  "domain.record.status.deprecated": "",
149
173
  "domain.record.status.ongoing": "",
@@ -162,7 +186,29 @@
162
186
  "downloads.format.unknown": "",
163
187
  "downloads.wfs.featuretype.not.found": "",
164
188
  "dropFile": "",
165
- "editor.record.form.license": "",
189
+ "editor.record.delete.confirmation.cancelText": "",
190
+ "editor.record.delete.confirmation.confirmText": "",
191
+ "editor.record.delete.confirmation.message": "",
192
+ "editor.record.delete.confirmation.title": "",
193
+ "editor.record.deleteError.body": "",
194
+ "editor.record.deleteError.closeMessage": "",
195
+ "editor.record.deleteError.title": "",
196
+ "editor.record.deleteSuccess.body": "",
197
+ "editor.record.deleteSuccess.title": "",
198
+ "editor.record.form.bottomButtons.comeBackLater": "",
199
+ "editor.record.form.bottomButtons.next": "",
200
+ "editor.record.form.bottomButtons.previous": "",
201
+ "editor.record.form.field.abstract": "",
202
+ "editor.record.form.field.contactsForResource.noContact": "",
203
+ "editor.record.form.field.keywords": "",
204
+ "editor.record.form.field.license": "",
205
+ "editor.record.form.field.overviews": "",
206
+ "editor.record.form.field.recordUpdated": "",
207
+ "editor.record.form.field.resourceUpdated": "",
208
+ "editor.record.form.field.temporalExtents": "",
209
+ "editor.record.form.field.title": "",
210
+ "editor.record.form.field.uniqueIdentifier": "",
211
+ "editor.record.form.field.updateFrequency": "",
166
212
  "editor.record.form.license.cc-by": "",
167
213
  "editor.record.form.license.cc-by-sa": "",
168
214
  "editor.record.form.license.cc-zero": "",
@@ -172,13 +218,26 @@
172
218
  "editor.record.form.license.odc-by": "",
173
219
  "editor.record.form.license.pddl": "",
174
220
  "editor.record.form.license.unknown": "",
175
- "editor.record.form.resourceUpdated": "",
176
- "editor.record.form.temporalExtents": "",
221
+ "editor.record.form.page.accessAndContact": "",
222
+ "editor.record.form.page.description": "",
223
+ "editor.record.form.page.ressources": "",
224
+ "editor.record.form.section.about.description": "",
225
+ "editor.record.form.section.about.label": "",
226
+ "editor.record.form.section.annexes.label": "",
227
+ "editor.record.form.section.associatedResources.description": "",
228
+ "editor.record.form.section.associatedResources.label": "",
229
+ "editor.record.form.section.classification.description": "",
230
+ "editor.record.form.section.classification.label": "",
231
+ "editor.record.form.section.dataManagers.description": "",
232
+ "editor.record.form.section.dataManagers.label": "",
233
+ "editor.record.form.section.dataPointOfContact.description": "",
234
+ "editor.record.form.section.dataPointOfContact.label": "",
235
+ "editor.record.form.section.geographicalCoverage.label": "",
236
+ "editor.record.form.section.useAndAccessConditions.label": "",
177
237
  "editor.record.form.temporalExtents.addDate": "",
178
238
  "editor.record.form.temporalExtents.addRange": "",
179
239
  "editor.record.form.temporalExtents.date": "",
180
240
  "editor.record.form.temporalExtents.range": "",
181
- "editor.record.form.updateFrequency": "",
182
241
  "editor.record.form.updateFrequency.planned": "",
183
242
  "editor.record.loadError.body": "",
184
243
  "editor.record.loadError.closeMessage": "",
@@ -193,6 +252,7 @@
193
252
  "editor.record.saveStatus.draftWithChangesPending": "",
194
253
  "editor.record.saveStatus.recordUpToDate": "",
195
254
  "editor.record.upToDate": "",
255
+ "editor.sidebar.menu.editor": "",
196
256
  "externalviewer.dataset.unnamed": "",
197
257
  "facets.block.title.OrgForResource": "",
198
258
  "facets.block.title.availableInServices": "",
@@ -261,17 +321,17 @@
261
321
  "organisations.sortBy.nameDesc": "",
262
322
  "organisations.sortBy.recordCountAsc": "",
263
323
  "organisations.sortBy.recordCountDesc": "",
264
- "organization.header.recordCount": "{count, plural, =0{} one{} other{}}",
265
- "organization.details.publishedDataset": "{count, plural, =0{} one{} other{{}}",
324
+ "organization.details.lastPublishedDatasets": "",
325
+ "organization.details.lastPublishedDatasets.searchAllButton": "",
266
326
  "organization.details.mailContact": "",
267
- "organization.datasets": "",
268
- "organization.lastPublishedDatasets": "",
269
- "organization.lastPublishedDatasets.searchAllButton": "",
327
+ "organization.header.recordCount": "{count, plural, =0{} one{} other{}}",
270
328
  "pagination.nextPage": "",
271
329
  "pagination.page": "",
272
330
  "pagination.pageOf": "",
273
331
  "previous": "",
332
+ "record.action.delete": "",
274
333
  "record.action.download": "",
334
+ "record.action.duplicate": "",
275
335
  "record.action.view": "",
276
336
  "record.externalViewer.open": "",
277
337
  "record.metadata.about": "",
@@ -364,11 +424,11 @@
364
424
  "results.sortBy.relevancy": "",
365
425
  "search.autocomplete.error": "",
366
426
  "search.error.couldNotReachApi": "",
427
+ "search.error.organizationHasNoDataset": "",
428
+ "search.error.organizationNotFound": "",
367
429
  "search.error.receivedError": "",
368
430
  "search.error.recordHasnolink": "",
369
431
  "search.error.recordNotFound": "",
370
- "search.error.organizationNotFound": "",
371
- "search.error.organizationHasNoDataset": "",
372
432
  "search.field.any.placeholder": "",
373
433
  "search.field.sortBy": "",
374
434
  "search.filters.clear": "",
@@ -393,9 +453,11 @@
393
453
  "search.filters.minimize": "",
394
454
  "search.filters.myRecords": "",
395
455
  "search.filters.myRecordsHelp": "",
456
+ "search.filters.organization": "",
396
457
  "search.filters.otherRecords": "",
458
+ "search.filters.producerOrg": "",
397
459
  "search.filters.publicationYear": "",
398
- "search.filters.publisher": "",
460
+ "search.filters.publisherOrg": "",
399
461
  "search.filters.representationType": "",
400
462
  "search.filters.resourceType": "",
401
463
  "search.filters.standard": "",
@@ -46,11 +46,11 @@
46
46
  "datafeeder.analysisProgressBar.subtitle": "L'analyse peut prendre plusieurs minutes, merci d'attendre.",
47
47
  "datafeeder.analysisProgressBar.title": "Analyse en cours",
48
48
  "datafeeder.datasetValidation.datasetInformation": "Le jeu de données fourni contient {number} entités",
49
- "datafeeder.datasetValidationCsv.lineNumbers": "Résumé des 5 premières lignes* du CSV :",
50
- "datafeeder.datasetValidationCsv.explicitLineNumbers": "*Le tableau doit afficher les 5 premières lignes (hors en-tête)<br>Si ce n'est pas le cas, vérifier que le fichier est bien formatté",
51
49
  "datafeeder.datasetValidation.submitButton": "OK, mes données sont correctes",
52
50
  "datafeeder.datasetValidation.title": "Vérifiez que vos données sont correctes",
53
51
  "datafeeder.datasetValidation.unknown": " - ",
52
+ "datafeeder.datasetValidationCsv.explicitLineNumbers": "*Le tableau doit afficher les 5 premières lignes (hors en-tête)<br>Si ce n'est pas le cas, vérifier que le fichier est bien formatté",
53
+ "datafeeder.datasetValidationCsv.lineNumbers": "Résumé des 5 premières lignes* du CSV :",
54
54
  "datafeeder.form.abstract": "Comment décrire votre jeu de données ?",
55
55
  "datafeeder.form.datepicker": "Savez-vous quand la donnée a été créée ?",
56
56
  "datafeeder.form.description": "Enfin, décrivez le processus utilisé pour créer la donnée",
@@ -129,7 +129,7 @@
129
129
  "datahub.header.lastRecords": "Les plus récentes",
130
130
  "datahub.header.myfavorites": "Mes favoris",
131
131
  "datahub.header.news": "Accueil",
132
- "datahub.header.organisations": "Organisations",
132
+ "datahub.header.organizations": "Organisations",
133
133
  "datahub.header.popularRecords": "Les plus appréciées",
134
134
  "datahub.header.title.html": "<div class=\"text-white\">Toutes les données<br>publiques de mon organisation</div>",
135
135
  "datahub.news.contact.contactus": "Contactez-nous",
@@ -147,6 +147,27 @@
147
147
  "dataset.error.parse": "Les données ont été chargées mais leur décodage a échoué: \"{ info }\"",
148
148
  "dataset.error.unknown": "Les données ne peuvent être affichées: \"{ info }\"",
149
149
  "dataset.error.unsupportedType": "Le type de contenu suivant n'est pas pris en charge: \"{ info }\"",
150
+ "domain.contact.role.author": "Auteur",
151
+ "domain.contact.role.collaborator": "Collaborateur",
152
+ "domain.contact.role.contributor": "Contributeur",
153
+ "domain.contact.role.custodian": "Gestionnaire",
154
+ "domain.contact.role.distributor": "Distributeur",
155
+ "domain.contact.role.editor": "Éditeur",
156
+ "domain.contact.role.funder": "Financeur",
157
+ "domain.contact.role.mediator": "Médiateur",
158
+ "domain.contact.role.originator": "Créateur",
159
+ "domain.contact.role.other": "Autre",
160
+ "domain.contact.role.owner": "Propriétaire",
161
+ "domain.contact.role.point_of_contact": "Point de contact",
162
+ "domain.contact.role.principal_investigator": "Chercheur principal",
163
+ "domain.contact.role.processor": "Processeur",
164
+ "domain.contact.role.publisher": "Éditeur",
165
+ "domain.contact.role.resource_provider": "Fournisseur",
166
+ "domain.contact.role.rights_holder": "Détenteur des droits",
167
+ "domain.contact.role.sponsor": "Sponsor",
168
+ "domain.contact.role.stakeholder": "Partie prenante",
169
+ "domain.contact.role.unspecified": "Non spécifié",
170
+ "domain.contact.role.user": "Utilisateur",
150
171
  "domain.record.status.completed": "Finalisé",
151
172
  "domain.record.status.deprecated": "Obsolète",
152
173
  "domain.record.status.ongoing": "Mise à jour continue",
@@ -165,7 +186,29 @@
165
186
  "downloads.format.unknown": "inconnu",
166
187
  "downloads.wfs.featuretype.not.found": "La couche n'a pas été retrouvée",
167
188
  "dropFile": "Faites glisser votre fichier",
168
- "editor.record.form.license": "Licence",
189
+ "editor.record.delete.confirmation.cancelText": "Annuler",
190
+ "editor.record.delete.confirmation.confirmText": "Supprimer",
191
+ "editor.record.delete.confirmation.message": "Etes-vous sûr de vouloir supprimer cette fiche ?",
192
+ "editor.record.delete.confirmation.title": "Supprimer la fiche",
193
+ "editor.record.deleteError.body": "La fiche n'a pas pu être supprimée :",
194
+ "editor.record.deleteError.closeMessage": "Compris",
195
+ "editor.record.deleteError.title": "Erreur lors de la suppression",
196
+ "editor.record.deleteSuccess.body": "La fiche a bien été supprimée !",
197
+ "editor.record.deleteSuccess.title": "Suppression réussie",
198
+ "editor.record.form.bottomButtons.comeBackLater": "Revenir plus tard",
199
+ "editor.record.form.bottomButtons.next": "Suivant",
200
+ "editor.record.form.bottomButtons.previous": "Précédent",
201
+ "editor.record.form.field.abstract": "Résumé",
202
+ "editor.record.form.field.contactsForResource.noContact": "Veuillez renseigner au moins un point de contact responsable de la donnée.",
203
+ "editor.record.form.field.keywords": "Mots-clés",
204
+ "editor.record.form.field.license": "Licence",
205
+ "editor.record.form.field.overviews": "Aperçus",
206
+ "editor.record.form.field.recordUpdated": "Date de dernière révision",
207
+ "editor.record.form.field.resourceUpdated": "Date de dernière révision",
208
+ "editor.record.form.field.temporalExtents": "Étendue temporelle",
209
+ "editor.record.form.field.title": "",
210
+ "editor.record.form.field.uniqueIdentifier": "Identifiant unique",
211
+ "editor.record.form.field.updateFrequency": "Fréquence de mise à jour",
169
212
  "editor.record.form.license.cc-by": "",
170
213
  "editor.record.form.license.cc-by-sa": "",
171
214
  "editor.record.form.license.cc-zero": "",
@@ -175,27 +218,41 @@
175
218
  "editor.record.form.license.odc-by": "",
176
219
  "editor.record.form.license.pddl": "",
177
220
  "editor.record.form.license.unknown": "Non-reconnue ou absente",
178
- "editor.record.form.resourceUpdated": "Date de dernière révision",
179
- "editor.record.form.temporalExtents": "Étendue temporelle",
221
+ "editor.record.form.page.accessAndContact": "Acces et contact",
222
+ "editor.record.form.page.description": "Description de la ressource",
223
+ "editor.record.form.page.ressources": "Ressources",
224
+ "editor.record.form.section.about.description": "Ces informations concernent la donnée.",
225
+ "editor.record.form.section.about.label": "A propos de la ressource",
226
+ "editor.record.form.section.annexes.label": "Annexes",
227
+ "editor.record.form.section.associatedResources.description": "Déposez les jeux de données associées à cette fiche de métadonnée.",
228
+ "editor.record.form.section.associatedResources.label": "Ressources associees",
229
+ "editor.record.form.section.classification.description": "La classification a un impact sur la recherche du jeux de données.",
230
+ "editor.record.form.section.classification.label": "Classification",
231
+ "editor.record.form.section.dataManagers.description": "Cette information concerne la donnée.",
232
+ "editor.record.form.section.dataManagers.label": "Responsables de la donnee",
233
+ "editor.record.form.section.dataPointOfContact.description": "Cette information concerne la fiche de métadonnée.",
234
+ "editor.record.form.section.dataPointOfContact.label": "Point de contact de la metadonee",
235
+ "editor.record.form.section.geographicalCoverage.label": "Couverture geographique",
236
+ "editor.record.form.section.useAndAccessConditions.label": "Conditions d'acces et usage",
180
237
  "editor.record.form.temporalExtents.addDate": "Date déterminée",
181
238
  "editor.record.form.temporalExtents.addRange": "Période de temps",
182
239
  "editor.record.form.temporalExtents.date": "Date concernée",
183
240
  "editor.record.form.temporalExtents.range": "Période concernée",
184
- "editor.record.form.updateFrequency": "Fréquence de mise à jour",
185
241
  "editor.record.form.updateFrequency.planned": "Ces données doivent être mise à jour régulièrement.",
186
- "editor.record.loadError.body": "",
187
- "editor.record.loadError.closeMessage": "",
188
- "editor.record.loadError.title": "",
189
- "editor.record.publish": "",
190
- "editor.record.publishError.body": "",
191
- "editor.record.publishError.closeMessage": "",
192
- "editor.record.publishError.title": "",
193
- "editor.record.publishSuccess.body": "",
194
- "editor.record.publishSuccess.title": "",
242
+ "editor.record.loadError.body": "La fiche n'a pas pu être chargée :",
243
+ "editor.record.loadError.closeMessage": "Compris",
244
+ "editor.record.loadError.title": "Erreur lors du chargement",
245
+ "editor.record.publish": "Publier cette fiche",
246
+ "editor.record.publishError.body": "La fiche n'a pas pu être publiée :",
247
+ "editor.record.publishError.closeMessage": "Compris",
248
+ "editor.record.publishError.title": "Erreur lors de la publication",
249
+ "editor.record.publishSuccess.body": "La fiche a bien été publiée !",
250
+ "editor.record.publishSuccess.title": "Publication réussie",
195
251
  "editor.record.saveStatus.asDraftOnly": "Brouillon enregistré - fiche non publiée",
196
252
  "editor.record.saveStatus.draftWithChangesPending": "Brouillon enregistré - modifications en cours",
197
253
  "editor.record.saveStatus.recordUpToDate": "La fiche publiée est à jour",
198
254
  "editor.record.upToDate": "",
255
+ "editor.sidebar.menu.editor": "",
199
256
  "externalviewer.dataset.unnamed": "Couche du datahub",
200
257
  "facets.block.title.OrgForResource": "Organisation",
201
258
  "facets.block.title.availableInServices": "Disponible pour",
@@ -264,17 +321,17 @@
264
321
  "organisations.sortBy.nameDesc": "Nom Z → A",
265
322
  "organisations.sortBy.recordCountAsc": "Données 0 → 9",
266
323
  "organisations.sortBy.recordCountDesc": "Données 9 → 0",
267
- "organization.header.recordCount": "{count, plural, =0{donnée} one{donnée} other{données}}",
268
- "organization.details.publishedDataset": "{count, plural, =0{donnée publiée} one{donnée publiée} other{données publiées}}",
324
+ "organization.details.lastPublishedDatasets": "",
325
+ "organization.details.lastPublishedDatasets.searchAllButton": "",
269
326
  "organization.details.mailContact": "Contacter par mail",
270
- "organization.datasets": "Données",
271
- "organization.lastPublishedDatasets": "Dernières données publiées",
272
- "organization.lastPublishedDatasets.searchAllButton": "Rechercher tous",
327
+ "organization.header.recordCount": "{count, plural, =0{donnée} one{donnée} other{données}}",
273
328
  "pagination.nextPage": "Page suivante",
274
329
  "pagination.page": "page",
275
330
  "pagination.pageOf": "sur",
276
331
  "previous": "précédent",
332
+ "record.action.delete": "Supprimer",
277
333
  "record.action.download": "Télécharger",
334
+ "record.action.duplicate": "Dupliquer",
278
335
  "record.action.view": "Voir",
279
336
  "record.externalViewer.open": "Ouvrir dans le visualiseur externe",
280
337
  "record.metadata.about": "Description",
@@ -367,11 +424,11 @@
367
424
  "results.sortBy.relevancy": "Pertinence",
368
425
  "search.autocomplete.error": "Les suggestions ne peuvent pas être récupérées",
369
426
  "search.error.couldNotReachApi": "Problème de connexion à l'API",
427
+ "search.error.organizationHasNoDataset": "Cette organisation n'a pas encore de données.",
428
+ "search.error.organizationNotFound": "L'organisation n'a pas pu être trouvée.",
370
429
  "search.error.receivedError": "Erreur retournée",
371
430
  "search.error.recordHasnolink": "Ce dataset n'a pas encore de lien, réessayez plus tard s'il vous plaît.",
372
431
  "search.error.recordNotFound": "Cette donnée n'a pu être trouvée.",
373
- "search.error.organizationNotFound": "L'organisation n'a pas pu être trouvée.",
374
- "search.error.organizationHasNoDataset": "Cette organisation n'a pas encore de données.",
375
432
  "search.field.any.placeholder": "Rechercher une donnée...",
376
433
  "search.field.sortBy": "Trier par :",
377
434
  "search.filters.clear": "Réinitialiser",
@@ -396,14 +453,16 @@
396
453
  "search.filters.minimize": "Réduire",
397
454
  "search.filters.myRecords": "Voir mes données",
398
455
  "search.filters.myRecordsHelp": "Quand activé, n'affiche que les données créées avec mon utilisateur. Les données créées par les autres utilisateurs ne sont pas affichées.",
456
+ "search.filters.organization": "Organisation",
399
457
  "search.filters.otherRecords": "Affichage des données d'un autre utilisateur",
458
+ "search.filters.producerOrg": "Producteur",
400
459
  "search.filters.publicationYear": "Année de publication",
401
- "search.filters.publisher": "Organisations",
460
+ "search.filters.publisherOrg": "Distributeur",
402
461
  "search.filters.representationType": "Type de représentation",
403
462
  "search.filters.resourceType": "Type de ressource",
404
463
  "search.filters.standard": "Standard",
405
464
  "search.filters.title": "Affiner votre recherche",
406
- "search.filters.topic": "Thème",
465
+ "search.filters.topic": "Thèmes",
407
466
  "search.filters.useSpatialFilter": "Mettre en avant les résultats sur la zone d'intérêt",
408
467
  "search.filters.useSpatialFilterHelp": "Si cette option est activée, les fiches portant sur la zone d'intérêt du catalogue seront montrées en premier; les fiches en dehors de cette zone n'apparaîtront pas dans les résultats.",
409
468
  "share.tab.permalink": "Partager",