geonetwork-ui 2.4.0-dev.cec60ff1 → 2.4.0-dev.e079151e
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/esm2022/libs/api/metadata-converter/src/index.mjs +2 -1
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/atomic-operations.mjs +2 -1
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.mjs +1 -1
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.mjs +5 -5
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/read-parts.mjs +30 -2
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.mjs +31 -0
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/write-parts.mjs +23 -1
- package/esm2022/libs/api/metadata-converter/src/lib/xml-utils.mjs +6 -1
- package/esm2022/libs/api/repository/src/lib/gn4/gn4-repository.mjs +12 -1
- package/esm2022/libs/common/domain/src/lib/model/record/metadata.model.mjs +1 -1
- package/esm2022/libs/common/domain/src/lib/repository/records-repository.interface.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/api/records.api.service.mjs +2 -6
- package/esm2022/libs/feature/editor/src/lib/+state/editor.actions.mjs +2 -1
- package/esm2022/libs/feature/editor/src/lib/+state/editor.effects.mjs +3 -3
- package/esm2022/libs/feature/editor/src/lib/+state/editor.facade.mjs +7 -2
- package/esm2022/libs/feature/editor/src/lib/+state/editor.models.mjs +1 -1
- package/esm2022/libs/feature/editor/src/lib/+state/editor.reducer.mjs +7 -3
- package/esm2022/libs/feature/editor/src/lib/+state/editor.selectors.mjs +16 -6
- package/esm2022/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.mjs +138 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.mjs +21 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.mjs +19 -9
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/index.mjs +1 -2
- package/esm2022/libs/feature/editor/src/lib/components/record-form/record-form.component.mjs +12 -7
- package/esm2022/libs/feature/editor/src/lib/expressions.mjs +1 -1
- package/esm2022/libs/feature/editor/src/lib/fields.config.mjs +153 -60
- package/esm2022/libs/feature/editor/src/lib/models/editor-config.model.mjs +2 -0
- package/esm2022/libs/feature/editor/src/lib/models/index.mjs +2 -1
- package/esm2022/libs/feature/editor/src/lib/services/editor.service.mjs +4 -3
- package/esm2022/libs/feature/map/src/lib/utils/map-utils.service.mjs +3 -4
- package/esm2022/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.mjs +42 -23
- package/esm2022/libs/feature/record/src/lib/data-view-share/data-view-share.component.mjs +13 -5
- package/esm2022/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.mjs +49 -15
- package/esm2022/libs/feature/search/src/lib/results-table/results-table-container.component.mjs +9 -3
- package/esm2022/libs/ui/elements/src/lib/api-card/api-card.component.mjs +3 -3
- package/esm2022/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.mjs +5 -11
- package/esm2022/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.mjs +3 -3
- package/esm2022/libs/ui/elements/src/lib/ui-elements.module.mjs +5 -2
- package/esm2022/libs/ui/elements/src/lib/user-preview/user-preview.component.mjs +3 -3
- package/esm2022/libs/ui/inputs/src/lib/image-input/image-input.component.mjs +11 -5
- package/esm2022/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.mjs +29 -0
- package/esm2022/libs/ui/search/src/lib/results-table/results-table.component.mjs +15 -7
- package/esm2022/libs/ui/widgets/src/index.mjs +2 -1
- package/esm2022/libs/ui/widgets/src/lib/popover/popover.component.mjs +68 -0
- package/esm2022/translations/de.json +58 -32
- package/esm2022/translations/en.json +34 -8
- package/esm2022/translations/es.json +31 -5
- package/esm2022/translations/fr.json +34 -8
- package/esm2022/translations/it.json +32 -6
- package/esm2022/translations/nl.json +31 -5
- package/esm2022/translations/pt.json +31 -5
- package/fesm2022/geonetwork-ui.mjs +937 -236
- package/fesm2022/geonetwork-ui.mjs.map +1 -1
- package/libs/api/metadata-converter/src/index.d.ts +1 -0
- package/libs/api/metadata-converter/src/index.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/gn4/atomic-operations.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts +1 -0
- package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts +8 -1
- package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.d.ts +5 -0
- package/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts +3 -1
- package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/xml-utils.d.ts +1 -0
- package/libs/api/metadata-converter/src/lib/xml-utils.d.ts.map +1 -1
- package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts +1 -0
- package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts.map +1 -1
- package/libs/common/domain/src/lib/model/record/metadata.model.d.ts +2 -1
- package/libs/common/domain/src/lib/model/record/metadata.model.d.ts.map +1 -1
- package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts +9 -0
- package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/api/records.api.service.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/+state/editor.actions.d.ts +5 -0
- package/libs/feature/editor/src/lib/+state/editor.actions.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/+state/editor.facade.d.ts +4 -4
- package/libs/feature/editor/src/lib/+state/editor.facade.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/+state/editor.models.d.ts +8 -0
- package/libs/feature/editor/src/lib/+state/editor.models.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/+state/editor.reducer.d.ts +4 -3
- package/libs/feature/editor/src/lib/+state/editor.reducer.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/+state/editor.selectors.d.ts +4 -8
- package/libs/feature/editor/src/lib/+state/editor.selectors.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.d.ts +27 -0
- package/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts +11 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts +6 -2
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/index.d.ts +0 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/index.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts +5 -7
- package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/expressions.d.ts +1 -1
- package/libs/feature/editor/src/lib/expressions.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/fields.config.d.ts +39 -2
- package/libs/feature/editor/src/lib/fields.config.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/models/editor-config.model.d.ts +36 -0
- package/libs/feature/editor/src/lib/models/editor-config.model.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/models/index.d.ts +1 -0
- package/libs/feature/editor/src/lib/models/index.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/services/editor.service.d.ts +2 -2
- package/libs/feature/editor/src/lib/services/editor.service.d.ts.map +1 -1
- package/libs/feature/map/src/lib/utils/map-utils.service.d.ts.map +1 -1
- package/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.d.ts +4 -1
- package/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.d.ts.map +1 -1
- package/libs/feature/record/src/lib/data-view-share/data-view-share.component.d.ts +4 -1
- package/libs/feature/record/src/lib/data-view-share/data-view-share.component.d.ts.map +1 -1
- package/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.d.ts +4 -1
- package/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.d.ts.map +1 -1
- package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts +3 -1
- package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts +1 -1
- package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts +0 -3
- package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts +1 -1
- package/libs/ui/elements/src/lib/ui-elements.module.d.ts +7 -6
- package/libs/ui/elements/src/lib/ui-elements.module.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts +4 -2
- package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts.map +1 -1
- package/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.d.ts +11 -0
- package/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/results-table/results-table.component.d.ts +4 -2
- package/libs/ui/search/src/lib/results-table/results-table.component.d.ts.map +1 -1
- package/libs/ui/widgets/src/index.d.ts +1 -0
- package/libs/ui/widgets/src/index.d.ts.map +1 -1
- package/libs/ui/widgets/src/lib/popover/popover.component.d.ts +19 -0
- package/libs/ui/widgets/src/lib/popover/popover.component.d.ts.map +1 -0
- package/package.json +1 -1
- package/src/libs/api/metadata-converter/src/index.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.ts +5 -1
- package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +37 -12
- package/src/libs/api/metadata-converter/src/lib/fixtures/metawal.records.ts +5 -1
- package/src/libs/api/metadata-converter/src/lib/gn4/atomic-operations.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +4 -2
- package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +72 -2
- package/src/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.ts +39 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +70 -1
- package/src/libs/api/metadata-converter/src/lib/xml-utils.ts +8 -0
- package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +20 -0
- package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +2 -1
- package/src/libs/common/domain/src/lib/repository/records-repository.interface.ts +12 -0
- package/src/libs/common/fixtures/src/index.ts +2 -0
- package/src/libs/common/fixtures/src/lib/editor/editor.fixtures.ts +156 -0
- package/src/libs/common/fixtures/src/lib/editor/index.ts +1 -0
- package/src/libs/data-access/gn4/src/openapi/api/records.api.service.ts +1 -5
- package/src/libs/data-access/gn4/src/spec.yaml +0 -8
- package/src/libs/feature/editor/src/lib/+state/editor.actions.ts +5 -0
- package/src/libs/feature/editor/src/lib/+state/editor.effects.ts +2 -2
- package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +9 -1
- package/src/libs/feature/editor/src/lib/+state/editor.models.ts +11 -0
- package/src/libs/feature/editor/src/lib/+state/editor.reducer.ts +11 -5
- package/src/libs/feature/editor/src/lib/+state/editor.selectors.ts +22 -8
- package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.html +3 -1
- package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.ts +117 -21
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.css +0 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.html +5 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.ts +22 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +15 -9
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +15 -2
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/index.ts +0 -1
- package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.html +51 -11
- package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.ts +16 -8
- package/src/libs/feature/editor/src/lib/expressions.ts +1 -1
- package/src/libs/feature/editor/src/lib/fields.config.ts +186 -61
- package/src/libs/feature/editor/src/lib/models/editor-config.model.ts +53 -0
- package/src/libs/feature/editor/src/lib/models/index.ts +1 -0
- package/src/libs/feature/editor/src/lib/services/editor.service.ts +8 -4
- package/src/libs/feature/map/src/lib/utils/map-utils.service.ts +2 -3
- package/src/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.ts +36 -19
- package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.html +6 -2
- package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.ts +11 -0
- package/src/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.ts +59 -12
- package/src/libs/feature/search/src/lib/results-table/results-table-container.component.html +1 -0
- package/src/libs/feature/search/src/lib/results-table/results-table-container.component.ts +5 -0
- package/src/libs/ui/elements/src/lib/api-card/api-card.component.html +29 -29
- package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.html +14 -20
- package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.ts +0 -10
- package/src/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.html +1 -1
- package/src/libs/ui/elements/src/lib/ui-elements.module.ts +2 -1
- package/src/libs/ui/elements/src/lib/user-preview/user-preview.component.html +1 -1
- package/src/libs/ui/inputs/src/lib/image-input/image-input.component.html +1 -1
- package/src/libs/ui/inputs/src/lib/image-input/image-input.component.ts +7 -2
- package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.css +31 -0
- package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.html +15 -0
- package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.ts +38 -0
- package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.css +0 -0
- package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.html +17 -0
- package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.ts +22 -0
- package/src/libs/ui/search/src/lib/results-table/results-table.component.html +9 -0
- package/src/libs/ui/search/src/lib/results-table/results-table.component.ts +26 -12
- package/src/libs/ui/widgets/src/index.ts +1 -0
- package/src/libs/ui/widgets/src/lib/popover/popover.component.css +0 -0
- package/src/libs/ui/widgets/src/lib/popover/popover.component.html +3 -0
- package/src/libs/ui/widgets/src/lib/popover/popover.component.ts +85 -0
- package/tailwind.base.css +2 -1
- package/translations/de.json +58 -32
- package/translations/en.json +34 -8
- package/translations/es.json +31 -5
- package/translations/fr.json +34 -8
- package/translations/it.json +32 -6
- package/translations/nl.json +31 -5
- package/translations/pt.json +31 -5
- package/translations/sk.json +32 -6
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.mjs +0 -2
- package/esm2022/libs/feature/editor/src/lib/models/fields.model.mjs +0 -2
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.d.ts +0 -26
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/models/fields.model.d.ts +0 -15
- package/libs/feature/editor/src/lib/models/fields.model.d.ts.map +0 -1
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.ts +0 -43
- package/src/libs/feature/editor/src/lib/models/fields.model.ts +0 -29
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
import { CommonModule } from '@angular/common'
|
|
2
|
+
import {
|
|
3
|
+
Component,
|
|
4
|
+
AfterViewInit,
|
|
5
|
+
ElementRef,
|
|
6
|
+
Input,
|
|
7
|
+
ViewChild,
|
|
8
|
+
OnDestroy,
|
|
9
|
+
OnChanges,
|
|
10
|
+
SimpleChanges,
|
|
11
|
+
TemplateRef,
|
|
12
|
+
Renderer2,
|
|
13
|
+
ViewContainerRef,
|
|
14
|
+
EmbeddedViewRef,
|
|
15
|
+
} from '@angular/core'
|
|
16
|
+
import tippy, { Instance } from 'tippy.js'
|
|
17
|
+
|
|
18
|
+
@Component({
|
|
19
|
+
selector: 'gn-ui-popover',
|
|
20
|
+
templateUrl: './popover.component.html',
|
|
21
|
+
styleUrls: ['./popover.component.css'],
|
|
22
|
+
standalone: true,
|
|
23
|
+
imports: [CommonModule],
|
|
24
|
+
})
|
|
25
|
+
export class PopoverComponent implements AfterViewInit, OnChanges, OnDestroy {
|
|
26
|
+
@ViewChild('popoverContent', { static: false }) popoverContent: ElementRef
|
|
27
|
+
@Input() content: string | TemplateRef<any>
|
|
28
|
+
@Input() theme: 'light' | 'light-border' | 'translucent' | 'material' | ''
|
|
29
|
+
|
|
30
|
+
private tippyInstance: Instance
|
|
31
|
+
private view: EmbeddedViewRef<any>
|
|
32
|
+
|
|
33
|
+
constructor(
|
|
34
|
+
private viewContainerRef: ViewContainerRef,
|
|
35
|
+
private renderer: Renderer2
|
|
36
|
+
) {}
|
|
37
|
+
|
|
38
|
+
private getContent(): string | HTMLElement {
|
|
39
|
+
if (this.content instanceof TemplateRef) {
|
|
40
|
+
if (this.view) {
|
|
41
|
+
this.view.destroy()
|
|
42
|
+
}
|
|
43
|
+
this.view = this.viewContainerRef.createEmbeddedView(this.content)
|
|
44
|
+
this.view.detectChanges()
|
|
45
|
+
const wrapper = this.renderer.createElement('div') // Create a wrapper div
|
|
46
|
+
this.view.rootNodes.forEach((node) => {
|
|
47
|
+
this.renderer.appendChild(wrapper, node) // Append each root node to the wrapper
|
|
48
|
+
})
|
|
49
|
+
return wrapper
|
|
50
|
+
}
|
|
51
|
+
return this.content
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
ngAfterViewInit(): void {
|
|
55
|
+
this.tippyInstance = tippy(this.popoverContent.nativeElement as Element, {
|
|
56
|
+
content: this.getContent(),
|
|
57
|
+
allowHTML: true,
|
|
58
|
+
theme: this.theme,
|
|
59
|
+
})
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
ngOnChanges(changes: SimpleChanges): void {
|
|
63
|
+
if (changes['theme']) {
|
|
64
|
+
this.theme = changes['theme'].currentValue
|
|
65
|
+
if (this.tippyInstance) {
|
|
66
|
+
this.tippyInstance.setProps({ theme: this.theme })
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
if (changes['content']) {
|
|
70
|
+
this.content = changes['content'].currentValue
|
|
71
|
+
if (this.tippyInstance) {
|
|
72
|
+
this.tippyInstance.setContent(this.getContent())
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
ngOnDestroy(): void {
|
|
78
|
+
if (this.tippyInstance) {
|
|
79
|
+
this.tippyInstance.destroy()
|
|
80
|
+
}
|
|
81
|
+
if (this.view) {
|
|
82
|
+
this.view.destroy()
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}
|
package/tailwind.base.css
CHANGED
|
@@ -115,7 +115,8 @@
|
|
|
115
115
|
--padding: var(--gn-ui-badge-padding, 0.375em 0.75em);
|
|
116
116
|
--text-color: var(--gn-ui-badge-text-color, var(--color-gray-50));
|
|
117
117
|
--background-color: var(--gn-ui-badge-background-color, black);
|
|
118
|
-
|
|
118
|
+
--opacity: var(--gn-ui-badge-opacity, 0.7);
|
|
119
|
+
@apply inline-block opacity-[--opacity] p-[--padding] rounded-[--rounded]
|
|
119
120
|
font-medium text-[length:0.875em] leading-none text-[color:--text-color] bg-[color:--background-color];
|
|
120
121
|
}
|
|
121
122
|
/* makes sure icons will not make the badges grow vertically; also make size proportional */
|
package/translations/de.json
CHANGED
|
@@ -165,38 +165,63 @@
|
|
|
165
165
|
"downloads.format.unknown": "unbekannt",
|
|
166
166
|
"downloads.wfs.featuretype.not.found": "Der Layer wurde nicht gefunden",
|
|
167
167
|
"dropFile": "Datei ablegen",
|
|
168
|
-
"editor.record.form.
|
|
169
|
-
"editor.record.form.
|
|
170
|
-
"editor.record.form.
|
|
171
|
-
"editor.record.form.
|
|
172
|
-
"editor.record.form.
|
|
173
|
-
"editor.record.form.license
|
|
174
|
-
"editor.record.form.
|
|
175
|
-
"editor.record.form.
|
|
176
|
-
"editor.record.form.
|
|
177
|
-
"editor.record.form.
|
|
168
|
+
"editor.record.form.bottomButtons.comeBackLater": "",
|
|
169
|
+
"editor.record.form.bottomButtons.next": "",
|
|
170
|
+
"editor.record.form.bottomButtons.previous": "",
|
|
171
|
+
"editor.record.form.field.abstract": "Kurzbeschreibung",
|
|
172
|
+
"editor.record.form.field.keywords": "Schlagwörter",
|
|
173
|
+
"editor.record.form.field.license": "Lizenz",
|
|
174
|
+
"editor.record.form.field.overviews": "",
|
|
175
|
+
"editor.record.form.field.recordUpdated": "Datensatz zuletzt aktualisiert",
|
|
176
|
+
"editor.record.form.field.resourceUpdated": "Letztes Aktualisierungsdatum",
|
|
177
|
+
"editor.record.form.field.temporalExtents": "Zeitlicher Umfang",
|
|
178
|
+
"editor.record.form.field.title": "Metadaten-Titel",
|
|
179
|
+
"editor.record.form.field.uniqueIdentifier": "Eindeutige Kennung (ID)",
|
|
180
|
+
"editor.record.form.field.updateFrequency": "Aktualisierungshäufigkeit",
|
|
181
|
+
"editor.record.form.license.cc-by": "Creative Commons CC-BY",
|
|
182
|
+
"editor.record.form.license.cc-by-sa": "Creative Commons CC-BY-SA",
|
|
183
|
+
"editor.record.form.license.cc-zero": "Creative Commons CC-0",
|
|
184
|
+
"editor.record.form.license.etalab": "Offene Lizenz (Etalab)",
|
|
185
|
+
"editor.record.form.license.etalab-v2": "Offene Lizenz v2.0 (Etalab)",
|
|
186
|
+
"editor.record.form.license.odbl": "Open Data Commons ODbL",
|
|
187
|
+
"editor.record.form.license.odc-by": "Open Data Commons ODC-By",
|
|
188
|
+
"editor.record.form.license.pddl": "Open Data Commons PDDL",
|
|
178
189
|
"editor.record.form.license.unknown": "Unbekannt oder nicht vorhanden",
|
|
179
|
-
"editor.record.form.
|
|
180
|
-
"editor.record.form.
|
|
181
|
-
"editor.record.form.
|
|
182
|
-
"editor.record.form.
|
|
183
|
-
"editor.record.form.
|
|
184
|
-
"editor.record.form.
|
|
185
|
-
"editor.record.form.
|
|
186
|
-
"editor.record.form.
|
|
187
|
-
"editor.record.
|
|
188
|
-
"editor.record.
|
|
189
|
-
"editor.record.
|
|
190
|
-
"editor.record.
|
|
191
|
-
"editor.record.
|
|
192
|
-
"editor.record.
|
|
193
|
-
"editor.record.
|
|
194
|
-
"editor.record.
|
|
195
|
-
"editor.record.
|
|
196
|
-
"editor.record.
|
|
197
|
-
"editor.record.
|
|
198
|
-
"editor.record.
|
|
199
|
-
"editor.record.
|
|
190
|
+
"editor.record.form.page.accessAndContact": "",
|
|
191
|
+
"editor.record.form.page.description": "",
|
|
192
|
+
"editor.record.form.page.ressources": "",
|
|
193
|
+
"editor.record.form.section.about.description": "",
|
|
194
|
+
"editor.record.form.section.about.label": "",
|
|
195
|
+
"editor.record.form.section.annexes.label": "",
|
|
196
|
+
"editor.record.form.section.associatedResources.description": "",
|
|
197
|
+
"editor.record.form.section.associatedResources.label": "",
|
|
198
|
+
"editor.record.form.section.classification.description": "",
|
|
199
|
+
"editor.record.form.section.classification.label": "",
|
|
200
|
+
"editor.record.form.section.dataManagers.description": "",
|
|
201
|
+
"editor.record.form.section.dataManagers.label": "",
|
|
202
|
+
"editor.record.form.section.dataPointOfContact.description": "",
|
|
203
|
+
"editor.record.form.section.dataPointOfContact.label": "",
|
|
204
|
+
"editor.record.form.section.geographicalCoverage.label": "",
|
|
205
|
+
"editor.record.form.section.useAndAccessConditions.label": "",
|
|
206
|
+
"editor.record.form.temporalExtents.addDate": "Zeitpunkt",
|
|
207
|
+
"editor.record.form.temporalExtents.addRange": "Zeitraum",
|
|
208
|
+
"editor.record.form.temporalExtents.date": "Datum",
|
|
209
|
+
"editor.record.form.temporalExtents.range": "Datumsbereich",
|
|
210
|
+
"editor.record.form.updateFrequency.planned": "Die Daten sollten regelmäßig aktualisiert werden.",
|
|
211
|
+
"editor.record.loadError.body": "Der Datensatz konnte nicht geladen werden:",
|
|
212
|
+
"editor.record.loadError.closeMessage": "Verstanden",
|
|
213
|
+
"editor.record.loadError.title": "Fehler beim Laden des Datensatzes",
|
|
214
|
+
"editor.record.publish": "Diesen Datensatz veröffentlichen",
|
|
215
|
+
"editor.record.publishError.body": "Der Datensatz konnte nicht veröffentlicht werden:",
|
|
216
|
+
"editor.record.publishError.closeMessage": "Verstanden",
|
|
217
|
+
"editor.record.publishError.title": "Fehler beim Veröffentlichen des Datensatzes",
|
|
218
|
+
"editor.record.publishSuccess.body": "Der Datensatz wurde erfolgreich veröffentlicht!",
|
|
219
|
+
"editor.record.publishSuccess.title": "Veröffentlichung erfolgreich",
|
|
220
|
+
"editor.record.saveStatus.asDraftOnly": "Nur als Entwurf gespeichert - noch nicht veröffentlicht",
|
|
221
|
+
"editor.record.saveStatus.draftWithChangesPending": "Als Entwurf gespeichert - Änderungen stehen aus",
|
|
222
|
+
"editor.record.saveStatus.recordUpToDate": "Datensatz ist auf dem neuesten Stand",
|
|
223
|
+
"editor.record.upToDate": "Dieser Datensatz ist auf dem neuesten Stand",
|
|
224
|
+
"editor.sidebar.menu.editor": "",
|
|
200
225
|
"externalviewer.dataset.unnamed": "Datensatz aus dem Datahub",
|
|
201
226
|
"facets.block.title.OrgForResource": "Organisation",
|
|
202
227
|
"facets.block.title.availableInServices": "Verfügbar für",
|
|
@@ -274,6 +299,7 @@
|
|
|
274
299
|
"pagination.pageOf": "von",
|
|
275
300
|
"previous": "zurück",
|
|
276
301
|
"record.action.download": "Herunterladen",
|
|
302
|
+
"record.action.duplicate": "",
|
|
277
303
|
"record.action.view": "Anzeigen",
|
|
278
304
|
"record.externalViewer.open": "In externem Kartenviewer öffnen",
|
|
279
305
|
"record.metadata.about": "Beschreibung",
|
|
@@ -404,7 +430,7 @@
|
|
|
404
430
|
"search.filters.resourceType": "Ressourcentyp",
|
|
405
431
|
"search.filters.standard": "Standard",
|
|
406
432
|
"search.filters.title": "Ergebnisse filtern",
|
|
407
|
-
"search.filters.topic": "
|
|
433
|
+
"search.filters.topic": "Themen",
|
|
408
434
|
"search.filters.useSpatialFilter": "Zuerst Datensätze im Interessenbereich anzeigen",
|
|
409
435
|
"search.filters.useSpatialFilterHelp": "Wenn diese Option aktiviert ist, werden Datensätze im Bereich des Katalogs zuerst angezeigt. Datensätze außerhalb dieses Bereichs werden nicht angezeigt.",
|
|
410
436
|
"share.tab.permalink": "Teilen",
|
package/translations/en.json
CHANGED
|
@@ -165,8 +165,19 @@
|
|
|
165
165
|
"downloads.format.unknown": "unknown",
|
|
166
166
|
"downloads.wfs.featuretype.not.found": "The layer was not found",
|
|
167
167
|
"dropFile": "drop file",
|
|
168
|
-
"editor.record.form.
|
|
169
|
-
"editor.record.form.
|
|
168
|
+
"editor.record.form.bottomButtons.comeBackLater": "Come back later",
|
|
169
|
+
"editor.record.form.bottomButtons.next": "Next",
|
|
170
|
+
"editor.record.form.bottomButtons.previous": "Previous",
|
|
171
|
+
"editor.record.form.field.abstract": "Abstract",
|
|
172
|
+
"editor.record.form.field.keywords": "Keywords",
|
|
173
|
+
"editor.record.form.field.license": "License",
|
|
174
|
+
"editor.record.form.field.overviews": "Overviews",
|
|
175
|
+
"editor.record.form.field.recordUpdated": "Record Updated",
|
|
176
|
+
"editor.record.form.field.resourceUpdated": "Resource Updated",
|
|
177
|
+
"editor.record.form.field.temporalExtents": "Temporal extents",
|
|
178
|
+
"editor.record.form.field.title": "Metadata title",
|
|
179
|
+
"editor.record.form.field.uniqueIdentifier": "Unique identifier",
|
|
180
|
+
"editor.record.form.field.updateFrequency": "Update frequency",
|
|
170
181
|
"editor.record.form.license.cc-by": "Creative Commons CC-BY",
|
|
171
182
|
"editor.record.form.license.cc-by-sa": "Creative Commons CC-BY-SA",
|
|
172
183
|
"editor.record.form.license.cc-zero": "Creative Commons CC-0",
|
|
@@ -176,13 +187,26 @@
|
|
|
176
187
|
"editor.record.form.license.odc-by": "Open Data Commons ODC-By",
|
|
177
188
|
"editor.record.form.license.pddl": "Open Data Commons PDDL",
|
|
178
189
|
"editor.record.form.license.unknown": "Unknown or absent",
|
|
179
|
-
"editor.record.form.
|
|
180
|
-
"editor.record.form.
|
|
190
|
+
"editor.record.form.page.accessAndContact": "Access and contact",
|
|
191
|
+
"editor.record.form.page.description": "Resource description",
|
|
192
|
+
"editor.record.form.page.ressources": "Resources",
|
|
193
|
+
"editor.record.form.section.about.description": "This section describes the resource.",
|
|
194
|
+
"editor.record.form.section.about.label": "About the resource",
|
|
195
|
+
"editor.record.form.section.annexes.label": "Annexes",
|
|
196
|
+
"editor.record.form.section.associatedResources.description": "Drop files here to associate them with the resource.",
|
|
197
|
+
"editor.record.form.section.associatedResources.label": "Associated resources",
|
|
198
|
+
"editor.record.form.section.classification.description": "The classification has an impact on the access to the data.",
|
|
199
|
+
"editor.record.form.section.classification.label": "Classification",
|
|
200
|
+
"editor.record.form.section.dataManagers.description": "The data managers are responsible for the data.",
|
|
201
|
+
"editor.record.form.section.dataManagers.label": "Data managers",
|
|
202
|
+
"editor.record.form.section.dataPointOfContact.description": "This information concerns the metadata.",
|
|
203
|
+
"editor.record.form.section.dataPointOfContact.label": "Data point of contact",
|
|
204
|
+
"editor.record.form.section.geographicalCoverage.label": "Geographical coverage",
|
|
205
|
+
"editor.record.form.section.useAndAccessConditions.label": "Use and access conditions",
|
|
181
206
|
"editor.record.form.temporalExtents.addDate": "Time instant",
|
|
182
207
|
"editor.record.form.temporalExtents.addRange": "Time period",
|
|
183
208
|
"editor.record.form.temporalExtents.date": "Date",
|
|
184
209
|
"editor.record.form.temporalExtents.range": "Date range",
|
|
185
|
-
"editor.record.form.updateFrequency": "Update frequency",
|
|
186
210
|
"editor.record.form.updateFrequency.planned": "The data should be updated regularly.",
|
|
187
211
|
"editor.record.loadError.body": "The record could not be loaded:",
|
|
188
212
|
"editor.record.loadError.closeMessage": "Understood",
|
|
@@ -197,6 +221,7 @@
|
|
|
197
221
|
"editor.record.saveStatus.draftWithChangesPending": "Saved as draft - changes are pending",
|
|
198
222
|
"editor.record.saveStatus.recordUpToDate": "Record is up to date",
|
|
199
223
|
"editor.record.upToDate": "This record is up to date",
|
|
224
|
+
"editor.sidebar.menu.editor": "Editor",
|
|
200
225
|
"externalviewer.dataset.unnamed": "Datahub layer",
|
|
201
226
|
"facets.block.title.OrgForResource": "Organisation",
|
|
202
227
|
"facets.block.title.availableInServices": "Available for",
|
|
@@ -265,8 +290,8 @@
|
|
|
265
290
|
"organisations.sortBy.nameDesc": "Name Z → A",
|
|
266
291
|
"organisations.sortBy.recordCountAsc": "Publications 0 → 9",
|
|
267
292
|
"organisations.sortBy.recordCountDesc": "Publications 9 → 0",
|
|
268
|
-
"organization.details.lastPublishedDatasets": "
|
|
269
|
-
"organization.details.lastPublishedDatasets.searchAllButton": "
|
|
293
|
+
"organization.details.lastPublishedDatasets": "",
|
|
294
|
+
"organization.details.lastPublishedDatasets.searchAllButton": "",
|
|
270
295
|
"organization.details.mailContact": "Contact by email",
|
|
271
296
|
"organization.header.recordCount": "{count, plural, =0{data} one{data} other{datas}}",
|
|
272
297
|
"pagination.nextPage": "Next page",
|
|
@@ -274,6 +299,7 @@
|
|
|
274
299
|
"pagination.pageOf": "of",
|
|
275
300
|
"previous": "previous",
|
|
276
301
|
"record.action.download": "Download",
|
|
302
|
+
"record.action.duplicate": "Duplicate",
|
|
277
303
|
"record.action.view": "View",
|
|
278
304
|
"record.externalViewer.open": "Open in the external map viewer",
|
|
279
305
|
"record.metadata.about": "Description",
|
|
@@ -404,7 +430,7 @@
|
|
|
404
430
|
"search.filters.resourceType": "Resource type",
|
|
405
431
|
"search.filters.standard": "Standard",
|
|
406
432
|
"search.filters.title": "Filter your results",
|
|
407
|
-
"search.filters.topic": "
|
|
433
|
+
"search.filters.topic": "Topics",
|
|
408
434
|
"search.filters.useSpatialFilter": "Show records in the area of interest first",
|
|
409
435
|
"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.",
|
|
410
436
|
"share.tab.permalink": "Share",
|
package/translations/es.json
CHANGED
|
@@ -165,8 +165,19 @@
|
|
|
165
165
|
"downloads.format.unknown": "",
|
|
166
166
|
"downloads.wfs.featuretype.not.found": "",
|
|
167
167
|
"dropFile": "",
|
|
168
|
-
"editor.record.form.
|
|
169
|
-
"editor.record.form.
|
|
168
|
+
"editor.record.form.bottomButtons.comeBackLater": "",
|
|
169
|
+
"editor.record.form.bottomButtons.next": "",
|
|
170
|
+
"editor.record.form.bottomButtons.previous": "",
|
|
171
|
+
"editor.record.form.field.abstract": "",
|
|
172
|
+
"editor.record.form.field.keywords": "",
|
|
173
|
+
"editor.record.form.field.license": "",
|
|
174
|
+
"editor.record.form.field.overviews": "",
|
|
175
|
+
"editor.record.form.field.recordUpdated": "",
|
|
176
|
+
"editor.record.form.field.resourceUpdated": "",
|
|
177
|
+
"editor.record.form.field.temporalExtents": "",
|
|
178
|
+
"editor.record.form.field.title": "",
|
|
179
|
+
"editor.record.form.field.uniqueIdentifier": "",
|
|
180
|
+
"editor.record.form.field.updateFrequency": "",
|
|
170
181
|
"editor.record.form.license.cc-by": "",
|
|
171
182
|
"editor.record.form.license.cc-by-sa": "",
|
|
172
183
|
"editor.record.form.license.cc-zero": "",
|
|
@@ -176,13 +187,26 @@
|
|
|
176
187
|
"editor.record.form.license.odc-by": "",
|
|
177
188
|
"editor.record.form.license.pddl": "",
|
|
178
189
|
"editor.record.form.license.unknown": "",
|
|
179
|
-
"editor.record.form.
|
|
180
|
-
"editor.record.form.
|
|
190
|
+
"editor.record.form.page.accessAndContact": "",
|
|
191
|
+
"editor.record.form.page.description": "",
|
|
192
|
+
"editor.record.form.page.ressources": "",
|
|
193
|
+
"editor.record.form.section.about.description": "",
|
|
194
|
+
"editor.record.form.section.about.label": "",
|
|
195
|
+
"editor.record.form.section.annexes.label": "",
|
|
196
|
+
"editor.record.form.section.associatedResources.description": "",
|
|
197
|
+
"editor.record.form.section.associatedResources.label": "",
|
|
198
|
+
"editor.record.form.section.classification.description": "",
|
|
199
|
+
"editor.record.form.section.classification.label": "",
|
|
200
|
+
"editor.record.form.section.dataManagers.description": "",
|
|
201
|
+
"editor.record.form.section.dataManagers.label": "",
|
|
202
|
+
"editor.record.form.section.dataPointOfContact.description": "",
|
|
203
|
+
"editor.record.form.section.dataPointOfContact.label": "",
|
|
204
|
+
"editor.record.form.section.geographicalCoverage.label": "",
|
|
205
|
+
"editor.record.form.section.useAndAccessConditions.label": "",
|
|
181
206
|
"editor.record.form.temporalExtents.addDate": "",
|
|
182
207
|
"editor.record.form.temporalExtents.addRange": "",
|
|
183
208
|
"editor.record.form.temporalExtents.date": "",
|
|
184
209
|
"editor.record.form.temporalExtents.range": "",
|
|
185
|
-
"editor.record.form.updateFrequency": "",
|
|
186
210
|
"editor.record.form.updateFrequency.planned": "",
|
|
187
211
|
"editor.record.loadError.body": "",
|
|
188
212
|
"editor.record.loadError.closeMessage": "",
|
|
@@ -197,6 +221,7 @@
|
|
|
197
221
|
"editor.record.saveStatus.draftWithChangesPending": "",
|
|
198
222
|
"editor.record.saveStatus.recordUpToDate": "",
|
|
199
223
|
"editor.record.upToDate": "",
|
|
224
|
+
"editor.sidebar.menu.editor": "",
|
|
200
225
|
"externalviewer.dataset.unnamed": "",
|
|
201
226
|
"facets.block.title.OrgForResource": "",
|
|
202
227
|
"facets.block.title.availableInServices": "",
|
|
@@ -274,6 +299,7 @@
|
|
|
274
299
|
"pagination.pageOf": "",
|
|
275
300
|
"previous": "",
|
|
276
301
|
"record.action.download": "",
|
|
302
|
+
"record.action.duplicate": "",
|
|
277
303
|
"record.action.view": "",
|
|
278
304
|
"record.externalViewer.open": "",
|
|
279
305
|
"record.metadata.about": "",
|
package/translations/fr.json
CHANGED
|
@@ -165,8 +165,19 @@
|
|
|
165
165
|
"downloads.format.unknown": "inconnu",
|
|
166
166
|
"downloads.wfs.featuretype.not.found": "La couche n'a pas été retrouvée",
|
|
167
167
|
"dropFile": "Faites glisser votre fichier",
|
|
168
|
-
"editor.record.form.
|
|
169
|
-
"editor.record.form.
|
|
168
|
+
"editor.record.form.bottomButtons.comeBackLater": "Revenir plus tard",
|
|
169
|
+
"editor.record.form.bottomButtons.next": "Suivant",
|
|
170
|
+
"editor.record.form.bottomButtons.previous": "Précédent",
|
|
171
|
+
"editor.record.form.field.abstract": "Résumé",
|
|
172
|
+
"editor.record.form.field.keywords": "Mots-clés",
|
|
173
|
+
"editor.record.form.field.license": "Licence",
|
|
174
|
+
"editor.record.form.field.overviews": "Aperçus",
|
|
175
|
+
"editor.record.form.field.recordUpdated": "Date de dernière révision",
|
|
176
|
+
"editor.record.form.field.resourceUpdated": "Date de dernière révision",
|
|
177
|
+
"editor.record.form.field.temporalExtents": "Étendue temporelle",
|
|
178
|
+
"editor.record.form.field.title": "Titre",
|
|
179
|
+
"editor.record.form.field.uniqueIdentifier": "Identifiant unique",
|
|
180
|
+
"editor.record.form.field.updateFrequency": "Fréquence de mise à jour",
|
|
170
181
|
"editor.record.form.license.cc-by": "",
|
|
171
182
|
"editor.record.form.license.cc-by-sa": "",
|
|
172
183
|
"editor.record.form.license.cc-zero": "",
|
|
@@ -176,13 +187,26 @@
|
|
|
176
187
|
"editor.record.form.license.odc-by": "",
|
|
177
188
|
"editor.record.form.license.pddl": "",
|
|
178
189
|
"editor.record.form.license.unknown": "Non-reconnue ou absente",
|
|
179
|
-
"editor.record.form.
|
|
180
|
-
"editor.record.form.
|
|
190
|
+
"editor.record.form.page.accessAndContact": "Acces et contact",
|
|
191
|
+
"editor.record.form.page.description": "Description de la ressource",
|
|
192
|
+
"editor.record.form.page.ressources": "Ressources",
|
|
193
|
+
"editor.record.form.section.about.description": "Ces informations concernent la donnée.",
|
|
194
|
+
"editor.record.form.section.about.label": "A propos de la ressource",
|
|
195
|
+
"editor.record.form.section.annexes.label": "Annexes",
|
|
196
|
+
"editor.record.form.section.associatedResources.description": "Déposez les jeux de données associées à cette fiche de métadonnée.",
|
|
197
|
+
"editor.record.form.section.associatedResources.label": "Ressources associees",
|
|
198
|
+
"editor.record.form.section.classification.description": "La classification a un impact sur la recherche du jeux de données.",
|
|
199
|
+
"editor.record.form.section.classification.label": "Classification",
|
|
200
|
+
"editor.record.form.section.dataManagers.description": "Cette information concerne la donnée.",
|
|
201
|
+
"editor.record.form.section.dataManagers.label": "Responsables de la donnee",
|
|
202
|
+
"editor.record.form.section.dataPointOfContact.description": "Cette information concerne la fiche de métadonnée.",
|
|
203
|
+
"editor.record.form.section.dataPointOfContact.label": "Point de contact de la metadonee",
|
|
204
|
+
"editor.record.form.section.geographicalCoverage.label": "Couverture geographique",
|
|
205
|
+
"editor.record.form.section.useAndAccessConditions.label": "Conditions d'acces et usage",
|
|
181
206
|
"editor.record.form.temporalExtents.addDate": "Date déterminée",
|
|
182
207
|
"editor.record.form.temporalExtents.addRange": "Période de temps",
|
|
183
208
|
"editor.record.form.temporalExtents.date": "Date concernée",
|
|
184
209
|
"editor.record.form.temporalExtents.range": "Période concernée",
|
|
185
|
-
"editor.record.form.updateFrequency": "Fréquence de mise à jour",
|
|
186
210
|
"editor.record.form.updateFrequency.planned": "Ces données doivent être mise à jour régulièrement.",
|
|
187
211
|
"editor.record.loadError.body": "",
|
|
188
212
|
"editor.record.loadError.closeMessage": "",
|
|
@@ -197,6 +221,7 @@
|
|
|
197
221
|
"editor.record.saveStatus.draftWithChangesPending": "Brouillon enregistré - modifications en cours",
|
|
198
222
|
"editor.record.saveStatus.recordUpToDate": "La fiche publiée est à jour",
|
|
199
223
|
"editor.record.upToDate": "",
|
|
224
|
+
"editor.sidebar.menu.editor": "",
|
|
200
225
|
"externalviewer.dataset.unnamed": "Couche du datahub",
|
|
201
226
|
"facets.block.title.OrgForResource": "Organisation",
|
|
202
227
|
"facets.block.title.availableInServices": "Disponible pour",
|
|
@@ -265,8 +290,8 @@
|
|
|
265
290
|
"organisations.sortBy.nameDesc": "Nom Z → A",
|
|
266
291
|
"organisations.sortBy.recordCountAsc": "Données 0 → 9",
|
|
267
292
|
"organisations.sortBy.recordCountDesc": "Données 9 → 0",
|
|
268
|
-
"organization.details.lastPublishedDatasets": "
|
|
269
|
-
"organization.details.lastPublishedDatasets.searchAllButton": "
|
|
293
|
+
"organization.details.lastPublishedDatasets": "",
|
|
294
|
+
"organization.details.lastPublishedDatasets.searchAllButton": "",
|
|
270
295
|
"organization.details.mailContact": "Contacter par mail",
|
|
271
296
|
"organization.header.recordCount": "{count, plural, =0{donnée} one{donnée} other{données}}",
|
|
272
297
|
"pagination.nextPage": "Page suivante",
|
|
@@ -274,6 +299,7 @@
|
|
|
274
299
|
"pagination.pageOf": "sur",
|
|
275
300
|
"previous": "précédent",
|
|
276
301
|
"record.action.download": "Télécharger",
|
|
302
|
+
"record.action.duplicate": "Dupliquer",
|
|
277
303
|
"record.action.view": "Voir",
|
|
278
304
|
"record.externalViewer.open": "Ouvrir dans le visualiseur externe",
|
|
279
305
|
"record.metadata.about": "Description",
|
|
@@ -404,7 +430,7 @@
|
|
|
404
430
|
"search.filters.resourceType": "Type de ressource",
|
|
405
431
|
"search.filters.standard": "Standard",
|
|
406
432
|
"search.filters.title": "Affiner votre recherche",
|
|
407
|
-
"search.filters.topic": "
|
|
433
|
+
"search.filters.topic": "Thèmes",
|
|
408
434
|
"search.filters.useSpatialFilter": "Mettre en avant les résultats sur la zone d'intérêt",
|
|
409
435
|
"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.",
|
|
410
436
|
"share.tab.permalink": "Partager",
|
package/translations/it.json
CHANGED
|
@@ -165,8 +165,19 @@
|
|
|
165
165
|
"downloads.format.unknown": "sconosciuto",
|
|
166
166
|
"downloads.wfs.featuretype.not.found": "Il layer non è stato trovato",
|
|
167
167
|
"dropFile": "Trascina il suo file",
|
|
168
|
-
"editor.record.form.
|
|
169
|
-
"editor.record.form.
|
|
168
|
+
"editor.record.form.bottomButtons.comeBackLater": "",
|
|
169
|
+
"editor.record.form.bottomButtons.next": "",
|
|
170
|
+
"editor.record.form.bottomButtons.previous": "",
|
|
171
|
+
"editor.record.form.field.abstract": "",
|
|
172
|
+
"editor.record.form.field.keywords": "",
|
|
173
|
+
"editor.record.form.field.license": "Licenza",
|
|
174
|
+
"editor.record.form.field.overviews": "",
|
|
175
|
+
"editor.record.form.field.recordUpdated": "",
|
|
176
|
+
"editor.record.form.field.resourceUpdated": "",
|
|
177
|
+
"editor.record.form.field.temporalExtents": "",
|
|
178
|
+
"editor.record.form.field.title": "",
|
|
179
|
+
"editor.record.form.field.uniqueIdentifier": "",
|
|
180
|
+
"editor.record.form.field.updateFrequency": "",
|
|
170
181
|
"editor.record.form.license.cc-by": "",
|
|
171
182
|
"editor.record.form.license.cc-by-sa": "",
|
|
172
183
|
"editor.record.form.license.cc-zero": "",
|
|
@@ -176,13 +187,26 @@
|
|
|
176
187
|
"editor.record.form.license.odc-by": "",
|
|
177
188
|
"editor.record.form.license.pddl": "",
|
|
178
189
|
"editor.record.form.license.unknown": "Non riconosciuta o assente",
|
|
179
|
-
"editor.record.form.
|
|
180
|
-
"editor.record.form.
|
|
190
|
+
"editor.record.form.page.accessAndContact": "",
|
|
191
|
+
"editor.record.form.page.description": "",
|
|
192
|
+
"editor.record.form.page.ressources": "",
|
|
193
|
+
"editor.record.form.section.about.description": "",
|
|
194
|
+
"editor.record.form.section.about.label": "",
|
|
195
|
+
"editor.record.form.section.annexes.label": "",
|
|
196
|
+
"editor.record.form.section.associatedResources.description": "",
|
|
197
|
+
"editor.record.form.section.associatedResources.label": "",
|
|
198
|
+
"editor.record.form.section.classification.description": "",
|
|
199
|
+
"editor.record.form.section.classification.label": "",
|
|
200
|
+
"editor.record.form.section.dataManagers.description": "",
|
|
201
|
+
"editor.record.form.section.dataManagers.label": "",
|
|
202
|
+
"editor.record.form.section.dataPointOfContact.description": "",
|
|
203
|
+
"editor.record.form.section.dataPointOfContact.label": "",
|
|
204
|
+
"editor.record.form.section.geographicalCoverage.label": "",
|
|
205
|
+
"editor.record.form.section.useAndAccessConditions.label": "",
|
|
181
206
|
"editor.record.form.temporalExtents.addDate": "",
|
|
182
207
|
"editor.record.form.temporalExtents.addRange": "",
|
|
183
208
|
"editor.record.form.temporalExtents.date": "",
|
|
184
209
|
"editor.record.form.temporalExtents.range": "",
|
|
185
|
-
"editor.record.form.updateFrequency": "",
|
|
186
210
|
"editor.record.form.updateFrequency.planned": "",
|
|
187
211
|
"editor.record.loadError.body": "",
|
|
188
212
|
"editor.record.loadError.closeMessage": "",
|
|
@@ -197,6 +221,7 @@
|
|
|
197
221
|
"editor.record.saveStatus.draftWithChangesPending": "",
|
|
198
222
|
"editor.record.saveStatus.recordUpToDate": "",
|
|
199
223
|
"editor.record.upToDate": "",
|
|
224
|
+
"editor.sidebar.menu.editor": "",
|
|
200
225
|
"externalviewer.dataset.unnamed": "Layer del datahub",
|
|
201
226
|
"facets.block.title.OrgForResource": "Organizzazione",
|
|
202
227
|
"facets.block.title.availableInServices": "Disponibile per",
|
|
@@ -274,6 +299,7 @@
|
|
|
274
299
|
"pagination.pageOf": "di",
|
|
275
300
|
"previous": "precedente",
|
|
276
301
|
"record.action.download": "Scarica",
|
|
302
|
+
"record.action.duplicate": "",
|
|
277
303
|
"record.action.view": "Visualizza",
|
|
278
304
|
"record.externalViewer.open": "Apri nell'visualizzatore esterno",
|
|
279
305
|
"record.metadata.about": "Descrizione",
|
|
@@ -404,7 +430,7 @@
|
|
|
404
430
|
"search.filters.resourceType": "Tipo di risorsa",
|
|
405
431
|
"search.filters.standard": "Standard",
|
|
406
432
|
"search.filters.title": "Affina la sua ricerca",
|
|
407
|
-
"search.filters.topic": "
|
|
433
|
+
"search.filters.topic": "Argomenti",
|
|
408
434
|
"search.filters.useSpatialFilter": "Evidenzia i risultati nell'area di interesse",
|
|
409
435
|
"search.filters.useSpatialFilterHelp": "Se attivata, le schede relative all'area di interesse del catalogo saranno mostrate per prime; le schede al di fuori di questa area non appariranno nei risultati.",
|
|
410
436
|
"share.tab.permalink": "Condividere",
|
package/translations/nl.json
CHANGED
|
@@ -165,8 +165,19 @@
|
|
|
165
165
|
"downloads.format.unknown": "",
|
|
166
166
|
"downloads.wfs.featuretype.not.found": "",
|
|
167
167
|
"dropFile": "",
|
|
168
|
-
"editor.record.form.
|
|
169
|
-
"editor.record.form.
|
|
168
|
+
"editor.record.form.bottomButtons.comeBackLater": "",
|
|
169
|
+
"editor.record.form.bottomButtons.next": "",
|
|
170
|
+
"editor.record.form.bottomButtons.previous": "",
|
|
171
|
+
"editor.record.form.field.abstract": "",
|
|
172
|
+
"editor.record.form.field.keywords": "",
|
|
173
|
+
"editor.record.form.field.license": "",
|
|
174
|
+
"editor.record.form.field.overviews": "",
|
|
175
|
+
"editor.record.form.field.recordUpdated": "",
|
|
176
|
+
"editor.record.form.field.resourceUpdated": "",
|
|
177
|
+
"editor.record.form.field.temporalExtents": "",
|
|
178
|
+
"editor.record.form.field.title": "",
|
|
179
|
+
"editor.record.form.field.uniqueIdentifier": "",
|
|
180
|
+
"editor.record.form.field.updateFrequency": "",
|
|
170
181
|
"editor.record.form.license.cc-by": "",
|
|
171
182
|
"editor.record.form.license.cc-by-sa": "",
|
|
172
183
|
"editor.record.form.license.cc-zero": "",
|
|
@@ -176,13 +187,26 @@
|
|
|
176
187
|
"editor.record.form.license.odc-by": "",
|
|
177
188
|
"editor.record.form.license.pddl": "",
|
|
178
189
|
"editor.record.form.license.unknown": "",
|
|
179
|
-
"editor.record.form.
|
|
180
|
-
"editor.record.form.
|
|
190
|
+
"editor.record.form.page.accessAndContact": "",
|
|
191
|
+
"editor.record.form.page.description": "",
|
|
192
|
+
"editor.record.form.page.ressources": "",
|
|
193
|
+
"editor.record.form.section.about.description": "",
|
|
194
|
+
"editor.record.form.section.about.label": "",
|
|
195
|
+
"editor.record.form.section.annexes.label": "",
|
|
196
|
+
"editor.record.form.section.associatedResources.description": "",
|
|
197
|
+
"editor.record.form.section.associatedResources.label": "",
|
|
198
|
+
"editor.record.form.section.classification.description": "",
|
|
199
|
+
"editor.record.form.section.classification.label": "",
|
|
200
|
+
"editor.record.form.section.dataManagers.description": "",
|
|
201
|
+
"editor.record.form.section.dataManagers.label": "",
|
|
202
|
+
"editor.record.form.section.dataPointOfContact.description": "",
|
|
203
|
+
"editor.record.form.section.dataPointOfContact.label": "",
|
|
204
|
+
"editor.record.form.section.geographicalCoverage.label": "",
|
|
205
|
+
"editor.record.form.section.useAndAccessConditions.label": "",
|
|
181
206
|
"editor.record.form.temporalExtents.addDate": "",
|
|
182
207
|
"editor.record.form.temporalExtents.addRange": "",
|
|
183
208
|
"editor.record.form.temporalExtents.date": "",
|
|
184
209
|
"editor.record.form.temporalExtents.range": "",
|
|
185
|
-
"editor.record.form.updateFrequency": "",
|
|
186
210
|
"editor.record.form.updateFrequency.planned": "",
|
|
187
211
|
"editor.record.loadError.body": "",
|
|
188
212
|
"editor.record.loadError.closeMessage": "",
|
|
@@ -197,6 +221,7 @@
|
|
|
197
221
|
"editor.record.saveStatus.draftWithChangesPending": "",
|
|
198
222
|
"editor.record.saveStatus.recordUpToDate": "",
|
|
199
223
|
"editor.record.upToDate": "",
|
|
224
|
+
"editor.sidebar.menu.editor": "",
|
|
200
225
|
"externalviewer.dataset.unnamed": "",
|
|
201
226
|
"facets.block.title.OrgForResource": "",
|
|
202
227
|
"facets.block.title.availableInServices": "",
|
|
@@ -274,6 +299,7 @@
|
|
|
274
299
|
"pagination.pageOf": "",
|
|
275
300
|
"previous": "",
|
|
276
301
|
"record.action.download": "",
|
|
302
|
+
"record.action.duplicate": "",
|
|
277
303
|
"record.action.view": "",
|
|
278
304
|
"record.externalViewer.open": "",
|
|
279
305
|
"record.metadata.about": "",
|