geonetwork-ui 2.11.0-dev.a5c259d9e → 2.11.0-dev.a63e6e32a
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/geonetwork-ui.mjs +477 -295
- package/fesm2022/geonetwork-ui.mjs.map +1 -1
- package/index.d.ts +137 -75
- package/index.d.ts.map +1 -1
- package/package.json +2 -1
- package/src/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.ts +107 -34
- package/src/libs/common/domain/src/lib/model/search/filter.model.ts +20 -1
- package/src/libs/feature/map/src/index.ts +0 -1
- package/src/libs/feature/map/src/lib/feature-map.module.ts +1 -8
- package/src/libs/feature/router/src/lib/default/state/query-params.utils.ts +1 -1
- package/src/libs/feature/search/src/index.ts +2 -0
- package/src/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.html +5 -4
- package/src/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.ts +20 -20
- package/src/libs/feature/{map/src/lib → search/src/lib/geocoding}/geocoding.service.ts +5 -1
- package/src/libs/feature/search/src/lib/location-search/location-search.component.html +8 -0
- package/src/libs/feature/search/src/lib/location-search/location-search.component.ts +40 -0
- package/src/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.ts +18 -8
- package/src/libs/feature/search/src/lib/utils/service/fields.service.ts +8 -2
- package/src/libs/feature/search/src/lib/utils/service/fields.ts +49 -5
- package/src/libs/ui/elements/src/lib/service-capabilities/service-capabilities.component.ts +2 -1
- package/src/libs/ui/inputs/src/index.ts +1 -0
- package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.html +10 -1
- package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.ts +8 -0
- package/src/libs/ui/inputs/src/lib/date-adapter.providers.ts +30 -0
- package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.ts +3 -24
- package/src/libs/ui/inputs/src/lib/date-range-dropdown/date-range-dropdown.component.css +37 -3
- package/src/libs/ui/inputs/src/lib/date-range-dropdown/date-range-dropdown.component.html +135 -16
- package/src/libs/ui/inputs/src/lib/date-range-dropdown/date-range-dropdown.component.ts +166 -29
- package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.ts +3 -7
- package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.html +7 -4
- package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.ts +12 -9
- package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.model.ts +2 -2
- package/src/libs/ui/inputs/src/lib/spatial-extent-dropdown/spatial-extent-dropdown.component.html +3 -9
- package/src/libs/ui/inputs/src/lib/spatial-extent-dropdown/spatial-extent-dropdown.component.ts +26 -2
- package/src/libs/ui/map/src/lib/components/map-container/map-container.component.ts +2 -0
- package/src/libs/util/shared/src/index.ts +1 -0
- package/src/libs/util/shared/src/lib/autofocus.directive.ts +26 -0
- package/src/libs/util/shared/src/lib/links/link-utils.ts +19 -10
- package/src/libs/util/shared/src/lib/services/date.service.ts +3 -3
- package/src/libs/util/shared/src/lib/utils/geojson.ts +8 -0
- package/translations/de.json +9 -5
- package/translations/en.json +8 -4
- package/translations/es.json +7 -3
- package/translations/fr.json +9 -5
- package/translations/it.json +7 -3
- package/translations/nl.json +7 -3
- package/translations/pt.json +7 -3
- package/translations/sk.json +7 -3
- package/src/libs/feature/map/src/lib/geocoding/geocoding.component.css +0 -0
- package/src/libs/feature/map/src/lib/geocoding/geocoding.component.html +0 -41
- package/src/libs/feature/map/src/lib/geocoding/geocoding.component.ts +0 -112
|
@@ -24,7 +24,7 @@ import {
|
|
|
24
24
|
propagateToDocumentOnly,
|
|
25
25
|
} from '../../../../../../libs/util/shared/src'
|
|
26
26
|
import { ButtonComponent } from '../button/button.component'
|
|
27
|
-
import { NgIcon, provideIcons } from '@ng-icons/core'
|
|
27
|
+
import { NgIcon, provideIcons, provideNgIconsConfig } from '@ng-icons/core'
|
|
28
28
|
import { FormsModule } from '@angular/forms'
|
|
29
29
|
import { TranslatePipe } from '@ngx-translate/core'
|
|
30
30
|
|
|
@@ -46,19 +46,22 @@ import {
|
|
|
46
46
|
matExpandMore,
|
|
47
47
|
matExpandLess,
|
|
48
48
|
}),
|
|
49
|
+
provideNgIconsConfig({
|
|
50
|
+
size: '1.5rem',
|
|
51
|
+
}),
|
|
49
52
|
],
|
|
50
53
|
standalone: true,
|
|
51
54
|
})
|
|
52
|
-
export class DropdownMultiselectComponent {
|
|
55
|
+
export class DropdownMultiselectComponent<T = unknown> {
|
|
53
56
|
private scrollStrategies = inject(ScrollStrategyOptions)
|
|
54
57
|
|
|
55
58
|
@Input() title: string
|
|
56
|
-
@Input() choices: Choice[]
|
|
57
|
-
@Input() selected:
|
|
59
|
+
@Input() choices: Choice<T>[]
|
|
60
|
+
@Input() selected: T[] = []
|
|
58
61
|
@Input() allowSearch = true
|
|
59
62
|
@Input() maxRows: number
|
|
60
63
|
@Input() searchInputValue = ''
|
|
61
|
-
@Output() selectValues = new EventEmitter<
|
|
64
|
+
@Output() selectValues = new EventEmitter<T[]>()
|
|
62
65
|
@ViewChild('overlayOrigin') overlayOrigin: CdkOverlayOrigin
|
|
63
66
|
@ViewChild(CdkConnectedOverlay) overlay: CdkConnectedOverlay
|
|
64
67
|
@ViewChild('overlayContainer', { read: ElementRef })
|
|
@@ -115,7 +118,7 @@ export class DropdownMultiselectComponent {
|
|
|
115
118
|
|
|
116
119
|
private setFocus() {
|
|
117
120
|
setTimeout(() => {
|
|
118
|
-
this.searchFieldInput
|
|
121
|
+
this.searchFieldInput?.nativeElement.focus()
|
|
119
122
|
}, 0)
|
|
120
123
|
}
|
|
121
124
|
|
|
@@ -194,18 +197,18 @@ export class DropdownMultiselectComponent {
|
|
|
194
197
|
this.checkboxes.get(newIndex).nativeElement.focus()
|
|
195
198
|
}
|
|
196
199
|
|
|
197
|
-
isSelected(choice: Choice) {
|
|
200
|
+
isSelected(choice: Choice<T>) {
|
|
198
201
|
return this.selected.indexOf(choice.value) > -1
|
|
199
202
|
}
|
|
200
203
|
|
|
201
|
-
select(choice: Choice
|
|
204
|
+
select(choice: Choice<T>, selected: boolean) {
|
|
202
205
|
this.selected = selected
|
|
203
206
|
? [...this.selected.filter((v) => v !== choice.value), choice.value]
|
|
204
207
|
: this.selected.filter((v) => v !== choice.value)
|
|
205
208
|
this.selectValues.emit(this.selected)
|
|
206
209
|
}
|
|
207
210
|
|
|
208
|
-
toggle(choice: Choice) {
|
|
211
|
+
toggle(choice: Choice<T>) {
|
|
209
212
|
this.select(choice, !this.isSelected(choice))
|
|
210
213
|
}
|
|
211
214
|
|
package/src/libs/ui/inputs/src/lib/spatial-extent-dropdown/spatial-extent-dropdown.component.html
CHANGED
|
@@ -79,11 +79,7 @@
|
|
|
79
79
|
@if (hasSelection) {
|
|
80
80
|
<gn-ui-button
|
|
81
81
|
[type]="'primary-light'"
|
|
82
|
-
[title]="
|
|
83
|
-
('search.filters.spatialExtent.bboxDelete' | translate) +
|
|
84
|
-
' ' +
|
|
85
|
-
fileName
|
|
86
|
-
"
|
|
82
|
+
[title]="selectionDeleteLabelKey | translate: selectionLabelParams"
|
|
87
83
|
(buttonClick)="removeSelection($event)"
|
|
88
84
|
extraClass="group gap-x-2 w-full h-[28px] px-[8px] py-[4px] mb-[12px] bg-primary-lighter text-white"
|
|
89
85
|
data-test="spatial-extent-selected-item"
|
|
@@ -94,12 +90,10 @@
|
|
|
94
90
|
size="15px"
|
|
95
91
|
></ng-icon>
|
|
96
92
|
<span class="group-hover:hidden truncate text-sm m-auto">
|
|
97
|
-
{{
|
|
98
|
-
{{ fileName }}
|
|
93
|
+
{{ selectionLabelKey | translate: selectionLabelParams }}
|
|
99
94
|
</span>
|
|
100
95
|
<span class="hidden group-hover:block truncate text-sm m-auto">
|
|
101
|
-
{{
|
|
102
|
-
{{ fileName }}
|
|
96
|
+
{{ selectionDeleteLabelKey | translate: selectionLabelParams }}
|
|
103
97
|
</span>
|
|
104
98
|
<ng-icon
|
|
105
99
|
name="iconoirCheckCircle"
|
package/src/libs/ui/inputs/src/lib/spatial-extent-dropdown/spatial-extent-dropdown.component.ts
CHANGED
|
@@ -46,13 +46,20 @@ import {
|
|
|
46
46
|
marker('search.filters.spatialExtent.import')
|
|
47
47
|
marker('search.filters.spatialExtent.helpText')
|
|
48
48
|
marker('search.filters.spatialExtent.error.title')
|
|
49
|
-
|
|
49
|
+
|
|
50
|
+
const LABEL_FROM_FILE = marker('search.filters.spatialExtent.bboxFromFile')
|
|
51
|
+
const LABEL_FROM_FILE_DELETE = marker(
|
|
52
|
+
'search.filters.spatialExtent.bboxFromFileDelete'
|
|
53
|
+
)
|
|
54
|
+
const LABEL_INITIAL = marker('search.filters.spatialExtent.bboxInitial')
|
|
55
|
+
const LABEL_INITIAL_DELETE = marker(
|
|
56
|
+
'search.filters.spatialExtent.bboxInitialDelete'
|
|
57
|
+
)
|
|
50
58
|
|
|
51
59
|
export interface SpatialExtentDropdownError {
|
|
52
60
|
key: string
|
|
53
61
|
params?: Record<string, string | number>
|
|
54
62
|
}
|
|
55
|
-
marker('search.filters.spatialExtent.bboxDelete')
|
|
56
63
|
|
|
57
64
|
@Component({
|
|
58
65
|
selector: 'gn-ui-spatial-extent-dropdown',
|
|
@@ -85,6 +92,11 @@ export class SpatialExtentDropdownComponent {
|
|
|
85
92
|
|
|
86
93
|
@Input() title: string
|
|
87
94
|
@Input() maxFileSizeMb: number | null = null
|
|
95
|
+
@Input() set initialBbox(value: BoundingBox | null) {
|
|
96
|
+
if (!this.bbox && value) {
|
|
97
|
+
this.bbox = value
|
|
98
|
+
}
|
|
99
|
+
}
|
|
88
100
|
|
|
89
101
|
@Output() bboxChange = new EventEmitter<BoundingBox | null>()
|
|
90
102
|
@Output() errorChange = new EventEmitter<SpatialExtentDropdownError>()
|
|
@@ -123,6 +135,18 @@ export class SpatialExtentDropdownComponent {
|
|
|
123
135
|
return !!this.bbox
|
|
124
136
|
}
|
|
125
137
|
|
|
138
|
+
get selectionLabelKey() {
|
|
139
|
+
return this.fileName ? LABEL_FROM_FILE : LABEL_INITIAL
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
get selectionDeleteLabelKey() {
|
|
143
|
+
return this.fileName ? LABEL_FROM_FILE_DELETE : LABEL_INITIAL_DELETE
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
get selectionLabelParams() {
|
|
147
|
+
return { fileName: this.fileName }
|
|
148
|
+
}
|
|
149
|
+
|
|
126
150
|
openOverlay() {
|
|
127
151
|
this.overlayMinWidth =
|
|
128
152
|
this.overlayOrigin.elementRef.nativeElement.getBoundingClientRect()
|
|
@@ -58,6 +58,8 @@ import { transformExtent } from 'ol/proj.js'
|
|
|
58
58
|
export const DEFAULT_BASEMAP_LAYER: MapContextLayerMapLibreStyle = {
|
|
59
59
|
type: 'maplibre-style',
|
|
60
60
|
styleUrl: `https://basemaps.cartocdn.com/gl/positron-gl-style/style.json`,
|
|
61
|
+
clickable: false,
|
|
62
|
+
hoverable: false,
|
|
61
63
|
}
|
|
62
64
|
|
|
63
65
|
const DEFAULT_VIEW: MapContextView = {
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import {
|
|
2
|
+
Directive,
|
|
3
|
+
ElementRef,
|
|
4
|
+
Injector,
|
|
5
|
+
Input,
|
|
6
|
+
afterNextRender,
|
|
7
|
+
booleanAttribute,
|
|
8
|
+
inject,
|
|
9
|
+
} from '@angular/core'
|
|
10
|
+
|
|
11
|
+
@Directive({
|
|
12
|
+
selector: '[gnUiAutofocus]',
|
|
13
|
+
standalone: true,
|
|
14
|
+
})
|
|
15
|
+
export class AutofocusDirective {
|
|
16
|
+
private el = inject<ElementRef<HTMLElement>>(ElementRef)
|
|
17
|
+
private injector = inject(Injector)
|
|
18
|
+
|
|
19
|
+
@Input({ alias: 'gnUiAutofocus', transform: booleanAttribute })
|
|
20
|
+
set autofocus(active: boolean) {
|
|
21
|
+
if (!active) return
|
|
22
|
+
afterNextRender(() => this.el.nativeElement.focus(), {
|
|
23
|
+
injector: this.injector,
|
|
24
|
+
})
|
|
25
|
+
}
|
|
26
|
+
}
|
|
@@ -344,7 +344,11 @@ export function getLinkLabel(
|
|
|
344
344
|
return format ? `${label} (${format})` : label
|
|
345
345
|
}
|
|
346
346
|
|
|
347
|
-
export async function getLayers(
|
|
347
|
+
export async function getLayers(
|
|
348
|
+
url: string,
|
|
349
|
+
serviceProtocol: ServiceProtocol,
|
|
350
|
+
deep = false
|
|
351
|
+
) {
|
|
348
352
|
switch (serviceProtocol) {
|
|
349
353
|
case 'ogcFeatures': {
|
|
350
354
|
const layers = await new OgcApiEndpoint(url).allCollections
|
|
@@ -352,7 +356,10 @@ export async function getLayers(url: string, serviceProtocol: ServiceProtocol) {
|
|
|
352
356
|
}
|
|
353
357
|
case 'wfs': {
|
|
354
358
|
const endpointWfs = await new WfsEndpoint(url).isReady()
|
|
355
|
-
const featureTypes =
|
|
359
|
+
const featureTypes = endpointWfs.getFeatureTypes()
|
|
360
|
+
if (!deep) {
|
|
361
|
+
return featureTypes
|
|
362
|
+
}
|
|
356
363
|
const layers = (
|
|
357
364
|
await Promise.allSettled(
|
|
358
365
|
featureTypes.map((collection) => {
|
|
@@ -366,14 +373,16 @@ export async function getLayers(url: string, serviceProtocol: ServiceProtocol) {
|
|
|
366
373
|
}
|
|
367
374
|
case 'wms': {
|
|
368
375
|
const endpointWms = await new WmsEndpoint(url).isReady()
|
|
369
|
-
const
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
376
|
+
const layersSummary = endpointWms
|
|
377
|
+
.getLayers()
|
|
378
|
+
.flatMap(wmsLayerFlatten)
|
|
379
|
+
.filter((l) => l.name)
|
|
380
|
+
if (!deep) {
|
|
381
|
+
return layersSummary
|
|
382
|
+
}
|
|
383
|
+
const layers = layersSummary.map((collection) =>
|
|
384
|
+
endpointWms.getLayerByName(collection.name)
|
|
385
|
+
)
|
|
377
386
|
return layers
|
|
378
387
|
}
|
|
379
388
|
case 'wmts': {
|
|
@@ -35,10 +35,10 @@ export class DateService {
|
|
|
35
35
|
return { locale, dateObj }
|
|
36
36
|
}
|
|
37
37
|
|
|
38
|
-
|
|
38
|
+
async getDateFnsLocale(): Promise<Locale> {
|
|
39
39
|
const lang = this.translateService.getCurrentLang() || DEFAULT_LANGUAGE
|
|
40
40
|
const locales = await this.dateLocales
|
|
41
|
-
return locales[lang]
|
|
41
|
+
return locales[lang] ?? locales[DEFAULT_LANGUAGE]
|
|
42
42
|
}
|
|
43
43
|
|
|
44
44
|
formatDate(
|
|
@@ -61,7 +61,7 @@ export class DateService {
|
|
|
61
61
|
const dateObj = this.getDateObject(date)
|
|
62
62
|
|
|
63
63
|
const now = new Date()
|
|
64
|
-
const locale = await this.
|
|
64
|
+
const locale = await this.getDateFnsLocale()
|
|
65
65
|
|
|
66
66
|
return formatDistance(dateObj, now, {
|
|
67
67
|
addSuffix: true,
|
|
@@ -38,6 +38,14 @@ export function getGeometryFromGeoJSON(
|
|
|
38
38
|
// FIXME: this type should be more generic across the project
|
|
39
39
|
export type BoundingBox = [number, number, number, number]
|
|
40
40
|
|
|
41
|
+
export function isBoundingBox(value: unknown): value is BoundingBox {
|
|
42
|
+
return (
|
|
43
|
+
Array.isArray(value) &&
|
|
44
|
+
value.length === 4 &&
|
|
45
|
+
value.every((item) => typeof item === 'number')
|
|
46
|
+
)
|
|
47
|
+
}
|
|
48
|
+
|
|
41
49
|
export function getGeometryBoundingBox(geometry: Geometry): BoundingBox {
|
|
42
50
|
// use the bounding box if specified in the GeoJSON object
|
|
43
51
|
if (geometry.bbox) {
|
package/translations/de.json
CHANGED
|
@@ -65,9 +65,10 @@
|
|
|
65
65
|
"dataset.error.restrictedAccess": "",
|
|
66
66
|
"dataset.error.unknown": "Die Daten können nicht angezeigt werden: \"{ info }\"",
|
|
67
67
|
"dataset.error.unsupportedType": "Der folgende Inhaltstyp wird nicht unterstützt: \"{ info }\"",
|
|
68
|
-
"daterange.filter.
|
|
68
|
+
"daterange.filter.datePlaceholder": "tt.mm.jjjj",
|
|
69
|
+
"daterange.filter.from": "Ab dem",
|
|
69
70
|
"daterange.filter.period": "Zeitraum auswählen",
|
|
70
|
-
"daterange.filter.to": "Bis",
|
|
71
|
+
"daterange.filter.to": "Bis zum",
|
|
71
72
|
"domain.contact.role.author": "Autor",
|
|
72
73
|
"domain.contact.role.collaborator": "Mitarbeiter",
|
|
73
74
|
"domain.contact.role.contributor": "Beitragender",
|
|
@@ -424,7 +425,6 @@
|
|
|
424
425
|
"map.add.layer.wms": "Aus WMS",
|
|
425
426
|
"map.addFromFile.placeholder": "Klicke hier oder ziehe eine Datei herein",
|
|
426
427
|
"map.dropdown.placeholder": "Kein Vorschaulayer verfügbar",
|
|
427
|
-
"map.geocoding.placeholder": "Nach einem Ort suchen",
|
|
428
428
|
"map.help.addFromFile": "Klicke oder ziehe eine Datei herein um eine Karte hinzuzufügen (momentan wird nur das GeoJSON-Format unterstützt).",
|
|
429
429
|
"map.layer.add": "Hinzufügen",
|
|
430
430
|
"map.layers.available": "Verfügbare Layer",
|
|
@@ -689,10 +689,13 @@
|
|
|
689
689
|
"search.filters.recordKind.reuse": "Wiederverwendungen",
|
|
690
690
|
"search.filters.recordKind.service": "Dienste",
|
|
691
691
|
"search.filters.representationType": "Repräsentationstyp",
|
|
692
|
+
"search.filters.resourceCreationRevisionDate": "Ressourcendatum",
|
|
692
693
|
"search.filters.resourceType": "Ressourcentyp",
|
|
693
694
|
"search.filters.spatialExtent": "",
|
|
694
|
-
"search.filters.spatialExtent.
|
|
695
|
-
"search.filters.spatialExtent.
|
|
695
|
+
"search.filters.spatialExtent.bboxFromFile": "",
|
|
696
|
+
"search.filters.spatialExtent.bboxFromFileDelete": "",
|
|
697
|
+
"search.filters.spatialExtent.bboxInitial": "",
|
|
698
|
+
"search.filters.spatialExtent.bboxInitialDelete": "",
|
|
696
699
|
"search.filters.spatialExtent.error.fileTooLarge": "",
|
|
697
700
|
"search.filters.spatialExtent.error.invalidFormat": "",
|
|
698
701
|
"search.filters.spatialExtent.error.noGeometry": "",
|
|
@@ -701,6 +704,7 @@
|
|
|
701
704
|
"search.filters.spatialExtent.import": "",
|
|
702
705
|
"search.filters.standard": "Standard",
|
|
703
706
|
"search.filters.summaryLabel.changeDate": "Geändert am: ",
|
|
707
|
+
"search.filters.summaryLabel.resourceCreationRevisionDate": "Ressourcendatum: ",
|
|
704
708
|
"search.filters.summaryLabel.user": "Geändert von: ",
|
|
705
709
|
"search.filters.title": "Ergebnisse filtern",
|
|
706
710
|
"search.filters.topic": "Themen",
|
package/translations/en.json
CHANGED
|
@@ -65,9 +65,10 @@
|
|
|
65
65
|
"dataset.error.restrictedAccess": "Access to this resource is restricted",
|
|
66
66
|
"dataset.error.unknown": "The data cannot be displayed: \"{ info }\"",
|
|
67
67
|
"dataset.error.unsupportedType": "The following content type is unsupported: \"{ info }\"",
|
|
68
|
+
"daterange.filter.datePlaceholder": "mm/dd/yyyy",
|
|
68
69
|
"daterange.filter.from": "From",
|
|
69
70
|
"daterange.filter.period": "Period",
|
|
70
|
-
"daterange.filter.to": "
|
|
71
|
+
"daterange.filter.to": "Until",
|
|
71
72
|
"domain.contact.role.author": "Author",
|
|
72
73
|
"domain.contact.role.collaborator": "Collaborator",
|
|
73
74
|
"domain.contact.role.contributor": "Contributor",
|
|
@@ -424,7 +425,6 @@
|
|
|
424
425
|
"map.add.layer.wms": "From WMS",
|
|
425
426
|
"map.addFromFile.placeholder": "Click or drop a file here",
|
|
426
427
|
"map.dropdown.placeholder": "No preview layer available",
|
|
427
|
-
"map.geocoding.placeholder": "Search for a place",
|
|
428
428
|
"map.help.addFromFile": "Click or drag and drop a file to add to the map (currently supports GeoJSON format only).",
|
|
429
429
|
"map.layer.add": "Add",
|
|
430
430
|
"map.layers.available": "Available Layers",
|
|
@@ -689,10 +689,13 @@
|
|
|
689
689
|
"search.filters.recordKind.reuse": "Reuses",
|
|
690
690
|
"search.filters.recordKind.service": "Services",
|
|
691
691
|
"search.filters.representationType": "Representation type",
|
|
692
|
+
"search.filters.resourceCreationRevisionDate": "Resource date",
|
|
692
693
|
"search.filters.resourceType": "Resource type",
|
|
693
694
|
"search.filters.spatialExtent": "Spatial extent",
|
|
694
|
-
"search.filters.spatialExtent.
|
|
695
|
-
"search.filters.spatialExtent.
|
|
695
|
+
"search.filters.spatialExtent.bboxFromFile": "extent from {fileName}",
|
|
696
|
+
"search.filters.spatialExtent.bboxFromFileDelete": "Delete {fileName}",
|
|
697
|
+
"search.filters.spatialExtent.bboxInitial": "Pre-selected extent",
|
|
698
|
+
"search.filters.spatialExtent.bboxInitialDelete": "Delete selection",
|
|
696
699
|
"search.filters.spatialExtent.error.fileTooLarge": "The file exceeds the maximum allowed size ({maxSize} MB)",
|
|
697
700
|
"search.filters.spatialExtent.error.invalidFormat": "The file could not be read as a valid GeoJSON",
|
|
698
701
|
"search.filters.spatialExtent.error.noGeometry": "No geometry could be found in the file",
|
|
@@ -701,6 +704,7 @@
|
|
|
701
704
|
"search.filters.spatialExtent.import": "Import a GeoJSON",
|
|
702
705
|
"search.filters.standard": "Standard",
|
|
703
706
|
"search.filters.summaryLabel.changeDate": "Updated: ",
|
|
707
|
+
"search.filters.summaryLabel.resourceCreationRevisionDate": "Resource date: ",
|
|
704
708
|
"search.filters.summaryLabel.user": "Editor: ",
|
|
705
709
|
"search.filters.title": "Filter your results",
|
|
706
710
|
"search.filters.topic": "Topics",
|
package/translations/es.json
CHANGED
|
@@ -65,6 +65,7 @@
|
|
|
65
65
|
"dataset.error.restrictedAccess": "",
|
|
66
66
|
"dataset.error.unknown": "",
|
|
67
67
|
"dataset.error.unsupportedType": "",
|
|
68
|
+
"daterange.filter.datePlaceholder": "dd/mm/aaaa",
|
|
68
69
|
"daterange.filter.from": "",
|
|
69
70
|
"daterange.filter.period": "",
|
|
70
71
|
"daterange.filter.to": "",
|
|
@@ -424,7 +425,6 @@
|
|
|
424
425
|
"map.add.layer.wms": "",
|
|
425
426
|
"map.addFromFile.placeholder": "",
|
|
426
427
|
"map.dropdown.placeholder": "",
|
|
427
|
-
"map.geocoding.placeholder": "",
|
|
428
428
|
"map.help.addFromFile": "",
|
|
429
429
|
"map.layer.add": "",
|
|
430
430
|
"map.layers.available": "",
|
|
@@ -689,10 +689,13 @@
|
|
|
689
689
|
"search.filters.recordKind.reuse": "",
|
|
690
690
|
"search.filters.recordKind.service": "",
|
|
691
691
|
"search.filters.representationType": "",
|
|
692
|
+
"search.filters.resourceCreationRevisionDate": "",
|
|
692
693
|
"search.filters.resourceType": "",
|
|
693
694
|
"search.filters.spatialExtent": "",
|
|
694
|
-
"search.filters.spatialExtent.
|
|
695
|
-
"search.filters.spatialExtent.
|
|
695
|
+
"search.filters.spatialExtent.bboxFromFile": "",
|
|
696
|
+
"search.filters.spatialExtent.bboxFromFileDelete": "",
|
|
697
|
+
"search.filters.spatialExtent.bboxInitial": "",
|
|
698
|
+
"search.filters.spatialExtent.bboxInitialDelete": "",
|
|
696
699
|
"search.filters.spatialExtent.error.fileTooLarge": "",
|
|
697
700
|
"search.filters.spatialExtent.error.invalidFormat": "",
|
|
698
701
|
"search.filters.spatialExtent.error.noGeometry": "",
|
|
@@ -701,6 +704,7 @@
|
|
|
701
704
|
"search.filters.spatialExtent.import": "",
|
|
702
705
|
"search.filters.standard": "",
|
|
703
706
|
"search.filters.summaryLabel.changeDate": "",
|
|
707
|
+
"search.filters.summaryLabel.resourceCreationRevisionDate": "",
|
|
704
708
|
"search.filters.summaryLabel.user": "",
|
|
705
709
|
"search.filters.title": "",
|
|
706
710
|
"search.filters.topic": "",
|
package/translations/fr.json
CHANGED
|
@@ -65,9 +65,10 @@
|
|
|
65
65
|
"dataset.error.restrictedAccess": "L’accès à cette ressource est restreint",
|
|
66
66
|
"dataset.error.unknown": "Les données ne peuvent être affichées: \"{ info }\"",
|
|
67
67
|
"dataset.error.unsupportedType": "Le type de contenu suivant n'est pas pris en charge: \"{ info }\"",
|
|
68
|
-
"daterange.filter.
|
|
68
|
+
"daterange.filter.datePlaceholder": "jj/mm/aaaa",
|
|
69
|
+
"daterange.filter.from": "A partir du",
|
|
69
70
|
"daterange.filter.period": "Choix de la période",
|
|
70
|
-
"daterange.filter.to": "
|
|
71
|
+
"daterange.filter.to": "Jusqu'au",
|
|
71
72
|
"domain.contact.role.author": "Auteur",
|
|
72
73
|
"domain.contact.role.collaborator": "Collaborateur",
|
|
73
74
|
"domain.contact.role.contributor": "Contributeur",
|
|
@@ -424,7 +425,6 @@
|
|
|
424
425
|
"map.add.layer.wms": "Depuis un service WMS",
|
|
425
426
|
"map.addFromFile.placeholder": "Cliquez ou déposez un fichier ici",
|
|
426
427
|
"map.dropdown.placeholder": "Aucune couche d'aperçu disponible",
|
|
427
|
-
"map.geocoding.placeholder": "Rechercher un lieu",
|
|
428
428
|
"map.help.addFromFile": "Cliquez ou glissez-déposez un fichier pour l'ajouter à la carte (supporte actuellement uniquement le format GeoJSON).",
|
|
429
429
|
"map.layer.add": "Ajouter",
|
|
430
430
|
"map.layers.available": "Couches disponibles",
|
|
@@ -689,10 +689,13 @@
|
|
|
689
689
|
"search.filters.recordKind.reuse": "Réutilisations",
|
|
690
690
|
"search.filters.recordKind.service": "Services",
|
|
691
691
|
"search.filters.representationType": "Type de représentation",
|
|
692
|
+
"search.filters.resourceCreationRevisionDate": "Date de la ressource",
|
|
692
693
|
"search.filters.resourceType": "Type de ressource",
|
|
693
694
|
"search.filters.spatialExtent": "Étendue spatiale",
|
|
694
|
-
"search.filters.spatialExtent.
|
|
695
|
-
"search.filters.spatialExtent.
|
|
695
|
+
"search.filters.spatialExtent.bboxFromFile": "étendue de {fileName}",
|
|
696
|
+
"search.filters.spatialExtent.bboxFromFileDelete": "Supprimer {fileName}",
|
|
697
|
+
"search.filters.spatialExtent.bboxInitial": "étendue présélectionnée",
|
|
698
|
+
"search.filters.spatialExtent.bboxInitialDelete": "Supprimer la sélection",
|
|
696
699
|
"search.filters.spatialExtent.error.fileTooLarge": "Le fichier dépasse la taille maximale autorisée ({maxSize} Mo)",
|
|
697
700
|
"search.filters.spatialExtent.error.invalidFormat": "Le fichier n'a pas pu être lu comme un GeoJSON valide",
|
|
698
701
|
"search.filters.spatialExtent.error.noGeometry": "Aucune géométrie n'a pu être trouvée dans le fichier",
|
|
@@ -701,6 +704,7 @@
|
|
|
701
704
|
"search.filters.spatialExtent.import": "Importer un GeoJSON",
|
|
702
705
|
"search.filters.standard": "Standard",
|
|
703
706
|
"search.filters.summaryLabel.changeDate": "Mise à jour : ",
|
|
707
|
+
"search.filters.summaryLabel.resourceCreationRevisionDate": "Date de la ressource : ",
|
|
704
708
|
"search.filters.summaryLabel.user": "Éditeur : ",
|
|
705
709
|
"search.filters.title": "Affiner votre recherche",
|
|
706
710
|
"search.filters.topic": "Thèmes",
|
package/translations/it.json
CHANGED
|
@@ -65,6 +65,7 @@
|
|
|
65
65
|
"dataset.error.restrictedAccess": "L'accesso a questa risorsa è limitato",
|
|
66
66
|
"dataset.error.unknown": "Impossibile visualizzare i dati: \"{info}\"",
|
|
67
67
|
"dataset.error.unsupportedType": "Il seguente tipo di contenuto non è supportato: \"{info}\"",
|
|
68
|
+
"daterange.filter.datePlaceholder": "gg/mm/aaaa",
|
|
68
69
|
"daterange.filter.from": "",
|
|
69
70
|
"daterange.filter.period": "",
|
|
70
71
|
"daterange.filter.to": "",
|
|
@@ -424,7 +425,6 @@
|
|
|
424
425
|
"map.add.layer.wms": "Da un WMS",
|
|
425
426
|
"map.addFromFile.placeholder": "Clicca o trascina un file qui",
|
|
426
427
|
"map.dropdown.placeholder": "Nessun livello di anteprima disponibile",
|
|
427
|
-
"map.geocoding.placeholder": "Cerca un luogo",
|
|
428
428
|
"map.help.addFromFile": "Clicca o trascina un file per aggiungerlo alla mappa (attualmente supporta solo il formato GeoJSON)",
|
|
429
429
|
"map.layer.add": "Aggiungi",
|
|
430
430
|
"map.layers.available": "Layer disponibili",
|
|
@@ -689,10 +689,13 @@
|
|
|
689
689
|
"search.filters.recordKind.reuse": "Riutilizzi",
|
|
690
690
|
"search.filters.recordKind.service": "Servizi",
|
|
691
691
|
"search.filters.representationType": "Tipo di rappresentazione",
|
|
692
|
+
"search.filters.resourceCreationRevisionDate": "Data della risorsa",
|
|
692
693
|
"search.filters.resourceType": "Tipo di risorsa",
|
|
693
694
|
"search.filters.spatialExtent": "",
|
|
694
|
-
"search.filters.spatialExtent.
|
|
695
|
-
"search.filters.spatialExtent.
|
|
695
|
+
"search.filters.spatialExtent.bboxFromFile": "",
|
|
696
|
+
"search.filters.spatialExtent.bboxFromFileDelete": "",
|
|
697
|
+
"search.filters.spatialExtent.bboxInitial": "",
|
|
698
|
+
"search.filters.spatialExtent.bboxInitialDelete": "",
|
|
696
699
|
"search.filters.spatialExtent.error.fileTooLarge": "",
|
|
697
700
|
"search.filters.spatialExtent.error.invalidFormat": "",
|
|
698
701
|
"search.filters.spatialExtent.error.noGeometry": "",
|
|
@@ -701,6 +704,7 @@
|
|
|
701
704
|
"search.filters.spatialExtent.import": "",
|
|
702
705
|
"search.filters.standard": "Standard",
|
|
703
706
|
"search.filters.summaryLabel.changeDate": "Aggiornato: ",
|
|
707
|
+
"search.filters.summaryLabel.resourceCreationRevisionDate": "Data della risorsa: ",
|
|
704
708
|
"search.filters.summaryLabel.user": "Editor: ",
|
|
705
709
|
"search.filters.title": "Affina la sua ricerca",
|
|
706
710
|
"search.filters.topic": "Argomenti",
|
package/translations/nl.json
CHANGED
|
@@ -65,6 +65,7 @@
|
|
|
65
65
|
"dataset.error.restrictedAccess": "",
|
|
66
66
|
"dataset.error.unknown": "",
|
|
67
67
|
"dataset.error.unsupportedType": "",
|
|
68
|
+
"daterange.filter.datePlaceholder": "dd-mm-jjjj",
|
|
68
69
|
"daterange.filter.from": "",
|
|
69
70
|
"daterange.filter.period": "",
|
|
70
71
|
"daterange.filter.to": "",
|
|
@@ -424,7 +425,6 @@
|
|
|
424
425
|
"map.add.layer.wms": "",
|
|
425
426
|
"map.addFromFile.placeholder": "",
|
|
426
427
|
"map.dropdown.placeholder": "",
|
|
427
|
-
"map.geocoding.placeholder": "",
|
|
428
428
|
"map.help.addFromFile": "",
|
|
429
429
|
"map.layer.add": "",
|
|
430
430
|
"map.layers.available": "",
|
|
@@ -689,10 +689,13 @@
|
|
|
689
689
|
"search.filters.recordKind.reuse": "",
|
|
690
690
|
"search.filters.recordKind.service": "",
|
|
691
691
|
"search.filters.representationType": "",
|
|
692
|
+
"search.filters.resourceCreationRevisionDate": "",
|
|
692
693
|
"search.filters.resourceType": "",
|
|
693
694
|
"search.filters.spatialExtent": "",
|
|
694
|
-
"search.filters.spatialExtent.
|
|
695
|
-
"search.filters.spatialExtent.
|
|
695
|
+
"search.filters.spatialExtent.bboxFromFile": "",
|
|
696
|
+
"search.filters.spatialExtent.bboxFromFileDelete": "",
|
|
697
|
+
"search.filters.spatialExtent.bboxInitial": "",
|
|
698
|
+
"search.filters.spatialExtent.bboxInitialDelete": "",
|
|
696
699
|
"search.filters.spatialExtent.error.fileTooLarge": "",
|
|
697
700
|
"search.filters.spatialExtent.error.invalidFormat": "",
|
|
698
701
|
"search.filters.spatialExtent.error.noGeometry": "",
|
|
@@ -701,6 +704,7 @@
|
|
|
701
704
|
"search.filters.spatialExtent.import": "",
|
|
702
705
|
"search.filters.standard": "",
|
|
703
706
|
"search.filters.summaryLabel.changeDate": "",
|
|
707
|
+
"search.filters.summaryLabel.resourceCreationRevisionDate": "",
|
|
704
708
|
"search.filters.summaryLabel.user": "",
|
|
705
709
|
"search.filters.title": "",
|
|
706
710
|
"search.filters.topic": "",
|
package/translations/pt.json
CHANGED
|
@@ -65,6 +65,7 @@
|
|
|
65
65
|
"dataset.error.restrictedAccess": "",
|
|
66
66
|
"dataset.error.unknown": "",
|
|
67
67
|
"dataset.error.unsupportedType": "",
|
|
68
|
+
"daterange.filter.datePlaceholder": "dd/mm/aaaa",
|
|
68
69
|
"daterange.filter.from": "",
|
|
69
70
|
"daterange.filter.period": "",
|
|
70
71
|
"daterange.filter.to": "",
|
|
@@ -424,7 +425,6 @@
|
|
|
424
425
|
"map.add.layer.wms": "",
|
|
425
426
|
"map.addFromFile.placeholder": "",
|
|
426
427
|
"map.dropdown.placeholder": "",
|
|
427
|
-
"map.geocoding.placeholder": "",
|
|
428
428
|
"map.help.addFromFile": "",
|
|
429
429
|
"map.layer.add": "",
|
|
430
430
|
"map.layers.available": "",
|
|
@@ -689,10 +689,13 @@
|
|
|
689
689
|
"search.filters.recordKind.reuse": "",
|
|
690
690
|
"search.filters.recordKind.service": "",
|
|
691
691
|
"search.filters.representationType": "",
|
|
692
|
+
"search.filters.resourceCreationRevisionDate": "",
|
|
692
693
|
"search.filters.resourceType": "",
|
|
693
694
|
"search.filters.spatialExtent": "",
|
|
694
|
-
"search.filters.spatialExtent.
|
|
695
|
-
"search.filters.spatialExtent.
|
|
695
|
+
"search.filters.spatialExtent.bboxFromFile": "",
|
|
696
|
+
"search.filters.spatialExtent.bboxFromFileDelete": "",
|
|
697
|
+
"search.filters.spatialExtent.bboxInitial": "",
|
|
698
|
+
"search.filters.spatialExtent.bboxInitialDelete": "",
|
|
696
699
|
"search.filters.spatialExtent.error.fileTooLarge": "",
|
|
697
700
|
"search.filters.spatialExtent.error.invalidFormat": "",
|
|
698
701
|
"search.filters.spatialExtent.error.noGeometry": "",
|
|
@@ -701,6 +704,7 @@
|
|
|
701
704
|
"search.filters.spatialExtent.import": "",
|
|
702
705
|
"search.filters.standard": "",
|
|
703
706
|
"search.filters.summaryLabel.changeDate": "",
|
|
707
|
+
"search.filters.summaryLabel.resourceCreationRevisionDate": "",
|
|
704
708
|
"search.filters.summaryLabel.user": "",
|
|
705
709
|
"search.filters.title": "",
|
|
706
710
|
"search.filters.topic": "",
|
package/translations/sk.json
CHANGED
|
@@ -65,6 +65,7 @@
|
|
|
65
65
|
"dataset.error.restrictedAccess": "",
|
|
66
66
|
"dataset.error.unknown": "Dáta nie je možné zobraziť: \"{ info }\"",
|
|
67
67
|
"dataset.error.unsupportedType": "Nepodporovaný typ obsahu: \"{ info }\"",
|
|
68
|
+
"daterange.filter.datePlaceholder": "d. m. rrrr",
|
|
68
69
|
"daterange.filter.from": "",
|
|
69
70
|
"daterange.filter.period": "",
|
|
70
71
|
"daterange.filter.to": "",
|
|
@@ -424,7 +425,6 @@
|
|
|
424
425
|
"map.add.layer.wms": "Z WMS",
|
|
425
426
|
"map.addFromFile.placeholder": "Kliknite na tlačidlo alebo sem vložte súbor",
|
|
426
427
|
"map.dropdown.placeholder": "",
|
|
427
|
-
"map.geocoding.placeholder": "Nájsť miesto",
|
|
428
428
|
"map.help.addFromFile": "Kliknite na tlačidlo alebo sem vložte súbor, ktorý chcete pridať do mapy (v súčasnosti podporuje iba formát GeoJSON).",
|
|
429
429
|
"map.layer.add": "Pridať",
|
|
430
430
|
"map.layers.available": "Dostupné vrsty",
|
|
@@ -689,10 +689,13 @@
|
|
|
689
689
|
"search.filters.recordKind.reuse": "",
|
|
690
690
|
"search.filters.recordKind.service": "",
|
|
691
691
|
"search.filters.representationType": "Typ reprezentácie",
|
|
692
|
+
"search.filters.resourceCreationRevisionDate": "",
|
|
692
693
|
"search.filters.resourceType": "Typ zdroja",
|
|
693
694
|
"search.filters.spatialExtent": "",
|
|
694
|
-
"search.filters.spatialExtent.
|
|
695
|
-
"search.filters.spatialExtent.
|
|
695
|
+
"search.filters.spatialExtent.bboxFromFile": "",
|
|
696
|
+
"search.filters.spatialExtent.bboxFromFileDelete": "",
|
|
697
|
+
"search.filters.spatialExtent.bboxInitial": "",
|
|
698
|
+
"search.filters.spatialExtent.bboxInitialDelete": "",
|
|
696
699
|
"search.filters.spatialExtent.error.fileTooLarge": "",
|
|
697
700
|
"search.filters.spatialExtent.error.invalidFormat": "",
|
|
698
701
|
"search.filters.spatialExtent.error.noGeometry": "",
|
|
@@ -701,6 +704,7 @@
|
|
|
701
704
|
"search.filters.spatialExtent.import": "",
|
|
702
705
|
"search.filters.standard": "Štandard",
|
|
703
706
|
"search.filters.summaryLabel.changeDate": "",
|
|
707
|
+
"search.filters.summaryLabel.resourceCreationRevisionDate": "",
|
|
704
708
|
"search.filters.summaryLabel.user": "",
|
|
705
709
|
"search.filters.title": "Filtrovanie výsledkov",
|
|
706
710
|
"search.filters.topic": "Témy",
|
|
File without changes
|