geonetwork-ui 2.4.0-dev.5cc37149 → 2.4.0-dev.618ec561
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/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 +10 -5
- package/esm2022/libs/feature/search/src/lib/results-table/results-table-container.component.mjs +9 -3
- package/esm2022/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.mjs +4 -3
- package/esm2022/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.mjs +2 -2
- package/esm2022/libs/ui/elements/src/lib/metadata-info/metadata-info.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/layout/src/lib/form-field-wrapper/form-field-wrapper.component.mjs +3 -3
- 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 +32 -10
- package/esm2022/translations/en.json +32 -10
- package/esm2022/translations/es.json +31 -9
- package/esm2022/translations/fr.json +32 -10
- package/esm2022/translations/it.json +32 -10
- package/esm2022/translations/nl.json +31 -9
- package/esm2022/translations/pt.json +31 -9
- package/fesm2022/geonetwork-ui.mjs +823 -206
- 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/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/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/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 +8 -4
- 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/markdown-editor/markdown-editor.component.html +4 -1
- package/src/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.css +2 -1
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +12 -8
- 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/layout/src/lib/form-field-wrapper/form-field-wrapper.component.html +1 -1
- 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 +32 -10
- package/translations/en.json +32 -10
- package/translations/es.json +31 -9
- package/translations/fr.json +32 -10
- package/translations/it.json +32 -10
- package/translations/nl.json +31 -9
- package/translations/pt.json +31 -9
- package/translations/sk.json +32 -10
- 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,68 @@
|
|
|
1
|
+
import { CommonModule } from '@angular/common';
|
|
2
|
+
import { Component, ElementRef, Input, ViewChild, TemplateRef, Renderer2, ViewContainerRef, } from '@angular/core';
|
|
3
|
+
import tippy from 'tippy.js';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export class PopoverComponent {
|
|
6
|
+
constructor(viewContainerRef, renderer) {
|
|
7
|
+
this.viewContainerRef = viewContainerRef;
|
|
8
|
+
this.renderer = renderer;
|
|
9
|
+
}
|
|
10
|
+
getContent() {
|
|
11
|
+
if (this.content instanceof TemplateRef) {
|
|
12
|
+
if (this.view) {
|
|
13
|
+
this.view.destroy();
|
|
14
|
+
}
|
|
15
|
+
this.view = this.viewContainerRef.createEmbeddedView(this.content);
|
|
16
|
+
this.view.detectChanges();
|
|
17
|
+
const wrapper = this.renderer.createElement('div'); // Create a wrapper div
|
|
18
|
+
this.view.rootNodes.forEach((node) => {
|
|
19
|
+
this.renderer.appendChild(wrapper, node); // Append each root node to the wrapper
|
|
20
|
+
});
|
|
21
|
+
return wrapper;
|
|
22
|
+
}
|
|
23
|
+
return this.content;
|
|
24
|
+
}
|
|
25
|
+
ngAfterViewInit() {
|
|
26
|
+
this.tippyInstance = tippy(this.popoverContent.nativeElement, {
|
|
27
|
+
content: this.getContent(),
|
|
28
|
+
allowHTML: true,
|
|
29
|
+
theme: this.theme,
|
|
30
|
+
});
|
|
31
|
+
}
|
|
32
|
+
ngOnChanges(changes) {
|
|
33
|
+
if (changes['theme']) {
|
|
34
|
+
this.theme = changes['theme'].currentValue;
|
|
35
|
+
if (this.tippyInstance) {
|
|
36
|
+
this.tippyInstance.setProps({ theme: this.theme });
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
if (changes['content']) {
|
|
40
|
+
this.content = changes['content'].currentValue;
|
|
41
|
+
if (this.tippyInstance) {
|
|
42
|
+
this.tippyInstance.setContent(this.getContent());
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
ngOnDestroy() {
|
|
47
|
+
if (this.tippyInstance) {
|
|
48
|
+
this.tippyInstance.destroy();
|
|
49
|
+
}
|
|
50
|
+
if (this.view) {
|
|
51
|
+
this.view.destroy();
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PopoverComponent, deps: [{ token: i0.ViewContainerRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
55
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: PopoverComponent, isStandalone: true, selector: "gn-ui-popover", inputs: { content: "content", theme: "theme" }, viewQueries: [{ propertyName: "popoverContent", first: true, predicate: ["popoverContent"], descendants: true }], usesOnChanges: true, ngImport: i0, template: "<span #popoverContent>\n <ng-content></ng-content>\n</span>\n", styles: [""], dependencies: [{ kind: "ngmodule", type: CommonModule }] }); }
|
|
56
|
+
}
|
|
57
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PopoverComponent, decorators: [{
|
|
58
|
+
type: Component,
|
|
59
|
+
args: [{ selector: 'gn-ui-popover', standalone: true, imports: [CommonModule], template: "<span #popoverContent>\n <ng-content></ng-content>\n</span>\n" }]
|
|
60
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }, { type: i0.Renderer2 }]; }, propDecorators: { popoverContent: [{
|
|
61
|
+
type: ViewChild,
|
|
62
|
+
args: ['popoverContent', { static: false }]
|
|
63
|
+
}], content: [{
|
|
64
|
+
type: Input
|
|
65
|
+
}], theme: [{
|
|
66
|
+
type: Input
|
|
67
|
+
}] } });
|
|
68
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicG9wb3Zlci5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3VpL3dpZGdldHMvc3JjL2xpYi9wb3BvdmVyL3BvcG92ZXIuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy91aS93aWRnZXRzL3NyYy9saWIvcG9wb3Zlci9wb3BvdmVyLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQTtBQUM5QyxPQUFPLEVBQ0wsU0FBUyxFQUVULFVBQVUsRUFDVixLQUFLLEVBQ0wsU0FBUyxFQUlULFdBQVcsRUFDWCxTQUFTLEVBQ1QsZ0JBQWdCLEdBRWpCLE1BQU0sZUFBZSxDQUFBO0FBQ3RCLE9BQU8sS0FBbUIsTUFBTSxVQUFVLENBQUE7O0FBUzFDLE1BQU0sT0FBTyxnQkFBZ0I7SUFRM0IsWUFDVSxnQkFBa0MsRUFDbEMsUUFBbUI7UUFEbkIscUJBQWdCLEdBQWhCLGdCQUFnQixDQUFrQjtRQUNsQyxhQUFRLEdBQVIsUUFBUSxDQUFXO0lBQzFCLENBQUM7SUFFSSxVQUFVO1FBQ2hCLElBQUksSUFBSSxDQUFDLE9BQU8sWUFBWSxXQUFXLEVBQUU7WUFDdkMsSUFBSSxJQUFJLENBQUMsSUFBSSxFQUFFO2dCQUNiLElBQUksQ0FBQyxJQUFJLENBQUMsT0FBTyxFQUFFLENBQUE7YUFDcEI7WUFDRCxJQUFJLENBQUMsSUFBSSxHQUFHLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxrQkFBa0IsQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLENBQUE7WUFDbEUsSUFBSSxDQUFDLElBQUksQ0FBQyxhQUFhLEVBQUUsQ0FBQTtZQUN6QixNQUFNLE9BQU8sR0FBRyxJQUFJLENBQUMsUUFBUSxDQUFDLGFBQWEsQ0FBQyxLQUFLLENBQUMsQ0FBQSxDQUFDLHVCQUF1QjtZQUMxRSxJQUFJLENBQUMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxPQUFPLENBQUMsQ0FBQyxJQUFJLEVBQUUsRUFBRTtnQkFDbkMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxXQUFXLENBQUMsT0FBTyxFQUFFLElBQUksQ0FBQyxDQUFBLENBQUMsdUNBQXVDO1lBQ2xGLENBQUMsQ0FBQyxDQUFBO1lBQ0YsT0FBTyxPQUFPLENBQUE7U0FDZjtRQUNELE9BQU8sSUFBSSxDQUFDLE9BQU8sQ0FBQTtJQUNyQixDQUFDO0lBRUQsZUFBZTtRQUNiLElBQUksQ0FBQyxhQUFhLEdBQUcsS0FBSyxDQUFDLElBQUksQ0FBQyxjQUFjLENBQUMsYUFBd0IsRUFBRTtZQUN2RSxPQUFPLEVBQUUsSUFBSSxDQUFDLFVBQVUsRUFBRTtZQUMxQixTQUFTLEVBQUUsSUFBSTtZQUNmLEtBQUssRUFBRSxJQUFJLENBQUMsS0FBSztTQUNsQixDQUFDLENBQUE7SUFDSixDQUFDO0lBRUQsV0FBVyxDQUFDLE9BQXNCO1FBQ2hDLElBQUksT0FBTyxDQUFDLE9BQU8sQ0FBQyxFQUFFO1lBQ3BCLElBQUksQ0FBQyxLQUFLLEdBQUcsT0FBTyxDQUFDLE9BQU8sQ0FBQyxDQUFDLFlBQVksQ0FBQTtZQUMxQyxJQUFJLElBQUksQ0FBQyxhQUFhLEVBQUU7Z0JBQ3RCLElBQUksQ0FBQyxhQUFhLENBQUMsUUFBUSxDQUFDLEVBQUUsS0FBSyxFQUFFLElBQUksQ0FBQyxLQUFLLEVBQUUsQ0FBQyxDQUFBO2FBQ25EO1NBQ0Y7UUFDRCxJQUFJLE9BQU8sQ0FBQyxTQUFTLENBQUMsRUFBRTtZQUN0QixJQUFJLENBQUMsT0FBTyxHQUFHLE9BQU8sQ0FBQyxTQUFTLENBQUMsQ0FBQyxZQUFZLENBQUE7WUFDOUMsSUFBSSxJQUFJLENBQUMsYUFBYSxFQUFFO2dCQUN0QixJQUFJLENBQUMsYUFBYSxDQUFDLFVBQVUsQ0FBQyxJQUFJLENBQUMsVUFBVSxFQUFFLENBQUMsQ0FBQTthQUNqRDtTQUNGO0lBQ0gsQ0FBQztJQUVELFdBQVc7UUFDVCxJQUFJLElBQUksQ0FBQyxhQUFhLEVBQUU7WUFDdEIsSUFBSSxDQUFDLGFBQWEsQ0FBQyxPQUFPLEVBQUUsQ0FBQTtTQUM3QjtRQUNELElBQUksSUFBSSxDQUFDLElBQUksRUFBRTtZQUNiLElBQUksQ0FBQyxJQUFJLENBQUMsT0FBTyxFQUFFLENBQUE7U0FDcEI7SUFDSCxDQUFDOytHQTNEVSxnQkFBZ0I7bUdBQWhCLGdCQUFnQixnUUN4QjdCLGdFQUdBLHlERG1CWSxZQUFZOzs0RkFFWCxnQkFBZ0I7a0JBUDVCLFNBQVM7K0JBQ0UsZUFBZSxjQUdiLElBQUksV0FDUCxDQUFDLFlBQVksQ0FBQzsrSEFHeUIsY0FBYztzQkFBN0QsU0FBUzt1QkFBQyxnQkFBZ0IsRUFBRSxFQUFFLE1BQU0sRUFBRSxLQUFLLEVBQUU7Z0JBQ3JDLE9BQU87c0JBQWYsS0FBSztnQkFDRyxLQUFLO3NCQUFiLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nXG5pbXBvcnQge1xuICBDb21wb25lbnQsXG4gIEFmdGVyVmlld0luaXQsXG4gIEVsZW1lbnRSZWYsXG4gIElucHV0LFxuICBWaWV3Q2hpbGQsXG4gIE9uRGVzdHJveSxcbiAgT25DaGFuZ2VzLFxuICBTaW1wbGVDaGFuZ2VzLFxuICBUZW1wbGF0ZVJlZixcbiAgUmVuZGVyZXIyLFxuICBWaWV3Q29udGFpbmVyUmVmLFxuICBFbWJlZGRlZFZpZXdSZWYsXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnXG5pbXBvcnQgdGlwcHksIHsgSW5zdGFuY2UgfSBmcm9tICd0aXBweS5qcydcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZ24tdWktcG9wb3ZlcicsXG4gIHRlbXBsYXRlVXJsOiAnLi9wb3BvdmVyLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vcG9wb3Zlci5jb21wb25lbnQuY3NzJ10sXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGltcG9ydHM6IFtDb21tb25Nb2R1bGVdLFxufSlcbmV4cG9ydCBjbGFzcyBQb3BvdmVyQ29tcG9uZW50IGltcGxlbWVudHMgQWZ0ZXJWaWV3SW5pdCwgT25DaGFuZ2VzLCBPbkRlc3Ryb3kge1xuICBAVmlld0NoaWxkKCdwb3BvdmVyQ29udGVudCcsIHsgc3RhdGljOiBmYWxzZSB9KSBwb3BvdmVyQ29udGVudDogRWxlbWVudFJlZlxuICBASW5wdXQoKSBjb250ZW50OiBzdHJpbmcgfCBUZW1wbGF0ZVJlZjxhbnk+XG4gIEBJbnB1dCgpIHRoZW1lOiAnbGlnaHQnIHwgJ2xpZ2h0LWJvcmRlcicgfCAndHJhbnNsdWNlbnQnIHwgJ21hdGVyaWFsJyB8ICcnXG5cbiAgcHJpdmF0ZSB0aXBweUluc3RhbmNlOiBJbnN0YW5jZVxuICBwcml2YXRlIHZpZXc6IEVtYmVkZGVkVmlld1JlZjxhbnk+XG5cbiAgY29uc3RydWN0b3IoXG4gICAgcHJpdmF0ZSB2aWV3Q29udGFpbmVyUmVmOiBWaWV3Q29udGFpbmVyUmVmLFxuICAgIHByaXZhdGUgcmVuZGVyZXI6IFJlbmRlcmVyMlxuICApIHt9XG5cbiAgcHJpdmF0ZSBnZXRDb250ZW50KCk6IHN0cmluZyB8IEhUTUxFbGVtZW50IHtcbiAgICBpZiAodGhpcy5jb250ZW50IGluc3RhbmNlb2YgVGVtcGxhdGVSZWYpIHtcbiAgICAgIGlmICh0aGlzLnZpZXcpIHtcbiAgICAgICAgdGhpcy52aWV3LmRlc3Ryb3koKVxuICAgICAgfVxuICAgICAgdGhpcy52aWV3ID0gdGhpcy52aWV3Q29udGFpbmVyUmVmLmNyZWF0ZUVtYmVkZGVkVmlldyh0aGlzLmNvbnRlbnQpXG4gICAgICB0aGlzLnZpZXcuZGV0ZWN0Q2hhbmdlcygpXG4gICAgICBjb25zdCB3cmFwcGVyID0gdGhpcy5yZW5kZXJlci5jcmVhdGVFbGVtZW50KCdkaXYnKSAvLyBDcmVhdGUgYSB3cmFwcGVyIGRpdlxuICAgICAgdGhpcy52aWV3LnJvb3ROb2Rlcy5mb3JFYWNoKChub2RlKSA9PiB7XG4gICAgICAgIHRoaXMucmVuZGVyZXIuYXBwZW5kQ2hpbGQod3JhcHBlciwgbm9kZSkgLy8gQXBwZW5kIGVhY2ggcm9vdCBub2RlIHRvIHRoZSB3cmFwcGVyXG4gICAgICB9KVxuICAgICAgcmV0dXJuIHdyYXBwZXJcbiAgICB9XG4gICAgcmV0dXJuIHRoaXMuY29udGVudFxuICB9XG5cbiAgbmdBZnRlclZpZXdJbml0KCk6IHZvaWQge1xuICAgIHRoaXMudGlwcHlJbnN0YW5jZSA9IHRpcHB5KHRoaXMucG9wb3ZlckNvbnRlbnQubmF0aXZlRWxlbWVudCBhcyBFbGVtZW50LCB7XG4gICAgICBjb250ZW50OiB0aGlzLmdldENvbnRlbnQoKSxcbiAgICAgIGFsbG93SFRNTDogdHJ1ZSxcbiAgICAgIHRoZW1lOiB0aGlzLnRoZW1lLFxuICAgIH0pXG4gIH1cblxuICBuZ09uQ2hhbmdlcyhjaGFuZ2VzOiBTaW1wbGVDaGFuZ2VzKTogdm9pZCB7XG4gICAgaWYgKGNoYW5nZXNbJ3RoZW1lJ10pIHtcbiAgICAgIHRoaXMudGhlbWUgPSBjaGFuZ2VzWyd0aGVtZSddLmN1cnJlbnRWYWx1ZVxuICAgICAgaWYgKHRoaXMudGlwcHlJbnN0YW5jZSkge1xuICAgICAgICB0aGlzLnRpcHB5SW5zdGFuY2Uuc2V0UHJvcHMoeyB0aGVtZTogdGhpcy50aGVtZSB9KVxuICAgICAgfVxuICAgIH1cbiAgICBpZiAoY2hhbmdlc1snY29udGVudCddKSB7XG4gICAgICB0aGlzLmNvbnRlbnQgPSBjaGFuZ2VzWydjb250ZW50J10uY3VycmVudFZhbHVlXG4gICAgICBpZiAodGhpcy50aXBweUluc3RhbmNlKSB7XG4gICAgICAgIHRoaXMudGlwcHlJbnN0YW5jZS5zZXRDb250ZW50KHRoaXMuZ2V0Q29udGVudCgpKVxuICAgICAgfVxuICAgIH1cbiAgfVxuXG4gIG5nT25EZXN0cm95KCk6IHZvaWQge1xuICAgIGlmICh0aGlzLnRpcHB5SW5zdGFuY2UpIHtcbiAgICAgIHRoaXMudGlwcHlJbnN0YW5jZS5kZXN0cm95KClcbiAgICB9XG4gICAgaWYgKHRoaXMudmlldykge1xuICAgICAgdGhpcy52aWV3LmRlc3Ryb3koKVxuICAgIH1cbiAgfVxufVxuIiwiPHNwYW4gI3BvcG92ZXJDb250ZW50PlxuICA8bmctY29udGVudD48L25nLWNvbnRlbnQ+XG48L3NwYW4+XG4iXX0=
|
|
@@ -165,9 +165,19 @@
|
|
|
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.
|
|
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",
|
|
171
181
|
"editor.record.form.license.cc-by": "Creative Commons CC-BY",
|
|
172
182
|
"editor.record.form.license.cc-by-sa": "Creative Commons CC-BY-SA",
|
|
173
183
|
"editor.record.form.license.cc-zero": "Creative Commons CC-0",
|
|
@@ -177,16 +187,26 @@
|
|
|
177
187
|
"editor.record.form.license.odc-by": "Open Data Commons ODC-By",
|
|
178
188
|
"editor.record.form.license.pddl": "Open Data Commons PDDL",
|
|
179
189
|
"editor.record.form.license.unknown": "Unbekannt oder nicht vorhanden",
|
|
180
|
-
"editor.record.form.
|
|
181
|
-
"editor.record.form.
|
|
182
|
-
"editor.record.form.
|
|
183
|
-
"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": "",
|
|
184
206
|
"editor.record.form.temporalExtents.addDate": "Zeitpunkt",
|
|
185
207
|
"editor.record.form.temporalExtents.addRange": "Zeitraum",
|
|
186
208
|
"editor.record.form.temporalExtents.date": "Datum",
|
|
187
209
|
"editor.record.form.temporalExtents.range": "Datumsbereich",
|
|
188
|
-
"editor.record.form.unique.identifier": "Eindeutige Kennung (ID)",
|
|
189
|
-
"editor.record.form.updateFrequency": "Aktualisierungshäufigkeit",
|
|
190
210
|
"editor.record.form.updateFrequency.planned": "Die Daten sollten regelmäßig aktualisiert werden.",
|
|
191
211
|
"editor.record.loadError.body": "Der Datensatz konnte nicht geladen werden:",
|
|
192
212
|
"editor.record.loadError.closeMessage": "Verstanden",
|
|
@@ -201,6 +221,7 @@
|
|
|
201
221
|
"editor.record.saveStatus.draftWithChangesPending": "Als Entwurf gespeichert - Änderungen stehen aus",
|
|
202
222
|
"editor.record.saveStatus.recordUpToDate": "Datensatz ist auf dem neuesten Stand",
|
|
203
223
|
"editor.record.upToDate": "Dieser Datensatz ist auf dem neuesten Stand",
|
|
224
|
+
"editor.sidebar.menu.editor": "",
|
|
204
225
|
"externalviewer.dataset.unnamed": "Datensatz aus dem Datahub",
|
|
205
226
|
"facets.block.title.OrgForResource": "Organisation",
|
|
206
227
|
"facets.block.title.availableInServices": "Verfügbar für",
|
|
@@ -278,6 +299,7 @@
|
|
|
278
299
|
"pagination.pageOf": "von",
|
|
279
300
|
"previous": "zurück",
|
|
280
301
|
"record.action.download": "Herunterladen",
|
|
302
|
+
"record.action.duplicate": "",
|
|
281
303
|
"record.action.view": "Anzeigen",
|
|
282
304
|
"record.externalViewer.open": "In externem Kartenviewer öffnen",
|
|
283
305
|
"record.metadata.about": "Beschreibung",
|
|
@@ -408,7 +430,7 @@
|
|
|
408
430
|
"search.filters.resourceType": "Ressourcentyp",
|
|
409
431
|
"search.filters.standard": "Standard",
|
|
410
432
|
"search.filters.title": "Ergebnisse filtern",
|
|
411
|
-
"search.filters.topic": "
|
|
433
|
+
"search.filters.topic": "Themen",
|
|
412
434
|
"search.filters.useSpatialFilter": "Zuerst Datensätze im Interessenbereich anzeigen",
|
|
413
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.",
|
|
414
436
|
"share.tab.permalink": "Teilen",
|
|
@@ -165,9 +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.
|
|
170
|
-
"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",
|
|
171
181
|
"editor.record.form.license.cc-by": "Creative Commons CC-BY",
|
|
172
182
|
"editor.record.form.license.cc-by-sa": "Creative Commons CC-BY-SA",
|
|
173
183
|
"editor.record.form.license.cc-zero": "Creative Commons CC-0",
|
|
@@ -177,16 +187,26 @@
|
|
|
177
187
|
"editor.record.form.license.odc-by": "Open Data Commons ODC-By",
|
|
178
188
|
"editor.record.form.license.pddl": "Open Data Commons PDDL",
|
|
179
189
|
"editor.record.form.license.unknown": "Unknown or absent",
|
|
180
|
-
"editor.record.form.
|
|
181
|
-
"editor.record.form.
|
|
182
|
-
"editor.record.form.
|
|
183
|
-
"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",
|
|
184
206
|
"editor.record.form.temporalExtents.addDate": "Time instant",
|
|
185
207
|
"editor.record.form.temporalExtents.addRange": "Time period",
|
|
186
208
|
"editor.record.form.temporalExtents.date": "Date",
|
|
187
209
|
"editor.record.form.temporalExtents.range": "Date range",
|
|
188
|
-
"editor.record.form.unique.identifier": "Unique identifier",
|
|
189
|
-
"editor.record.form.updateFrequency": "Update frequency",
|
|
190
210
|
"editor.record.form.updateFrequency.planned": "The data should be updated regularly.",
|
|
191
211
|
"editor.record.loadError.body": "The record could not be loaded:",
|
|
192
212
|
"editor.record.loadError.closeMessage": "Understood",
|
|
@@ -201,6 +221,7 @@
|
|
|
201
221
|
"editor.record.saveStatus.draftWithChangesPending": "Saved as draft - changes are pending",
|
|
202
222
|
"editor.record.saveStatus.recordUpToDate": "Record is up to date",
|
|
203
223
|
"editor.record.upToDate": "This record is up to date",
|
|
224
|
+
"editor.sidebar.menu.editor": "Editor",
|
|
204
225
|
"externalviewer.dataset.unnamed": "Datahub layer",
|
|
205
226
|
"facets.block.title.OrgForResource": "Organisation",
|
|
206
227
|
"facets.block.title.availableInServices": "Available for",
|
|
@@ -278,6 +299,7 @@
|
|
|
278
299
|
"pagination.pageOf": "of",
|
|
279
300
|
"previous": "previous",
|
|
280
301
|
"record.action.download": "Download",
|
|
302
|
+
"record.action.duplicate": "Duplicate",
|
|
281
303
|
"record.action.view": "View",
|
|
282
304
|
"record.externalViewer.open": "Open in the external map viewer",
|
|
283
305
|
"record.metadata.about": "Description",
|
|
@@ -408,7 +430,7 @@
|
|
|
408
430
|
"search.filters.resourceType": "Resource type",
|
|
409
431
|
"search.filters.standard": "Standard",
|
|
410
432
|
"search.filters.title": "Filter your results",
|
|
411
|
-
"search.filters.topic": "
|
|
433
|
+
"search.filters.topic": "Topics",
|
|
412
434
|
"search.filters.useSpatialFilter": "Show records in the area of interest first",
|
|
413
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.",
|
|
414
436
|
"share.tab.permalink": "Share",
|
|
@@ -165,9 +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.
|
|
170
|
-
"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": "",
|
|
171
181
|
"editor.record.form.license.cc-by": "",
|
|
172
182
|
"editor.record.form.license.cc-by-sa": "",
|
|
173
183
|
"editor.record.form.license.cc-zero": "",
|
|
@@ -177,16 +187,26 @@
|
|
|
177
187
|
"editor.record.form.license.odc-by": "",
|
|
178
188
|
"editor.record.form.license.pddl": "",
|
|
179
189
|
"editor.record.form.license.unknown": "",
|
|
180
|
-
"editor.record.form.
|
|
181
|
-
"editor.record.form.
|
|
182
|
-
"editor.record.form.
|
|
183
|
-
"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": "",
|
|
184
206
|
"editor.record.form.temporalExtents.addDate": "",
|
|
185
207
|
"editor.record.form.temporalExtents.addRange": "",
|
|
186
208
|
"editor.record.form.temporalExtents.date": "",
|
|
187
209
|
"editor.record.form.temporalExtents.range": "",
|
|
188
|
-
"editor.record.form.unique.identifier": "",
|
|
189
|
-
"editor.record.form.updateFrequency": "",
|
|
190
210
|
"editor.record.form.updateFrequency.planned": "",
|
|
191
211
|
"editor.record.loadError.body": "",
|
|
192
212
|
"editor.record.loadError.closeMessage": "",
|
|
@@ -201,6 +221,7 @@
|
|
|
201
221
|
"editor.record.saveStatus.draftWithChangesPending": "",
|
|
202
222
|
"editor.record.saveStatus.recordUpToDate": "",
|
|
203
223
|
"editor.record.upToDate": "",
|
|
224
|
+
"editor.sidebar.menu.editor": "",
|
|
204
225
|
"externalviewer.dataset.unnamed": "",
|
|
205
226
|
"facets.block.title.OrgForResource": "",
|
|
206
227
|
"facets.block.title.availableInServices": "",
|
|
@@ -278,6 +299,7 @@
|
|
|
278
299
|
"pagination.pageOf": "",
|
|
279
300
|
"previous": "",
|
|
280
301
|
"record.action.download": "",
|
|
302
|
+
"record.action.duplicate": "",
|
|
281
303
|
"record.action.view": "",
|
|
282
304
|
"record.externalViewer.open": "",
|
|
283
305
|
"record.metadata.about": "",
|
|
@@ -165,9 +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.
|
|
170
|
-
"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",
|
|
171
181
|
"editor.record.form.license.cc-by": "",
|
|
172
182
|
"editor.record.form.license.cc-by-sa": "",
|
|
173
183
|
"editor.record.form.license.cc-zero": "",
|
|
@@ -177,16 +187,26 @@
|
|
|
177
187
|
"editor.record.form.license.odc-by": "",
|
|
178
188
|
"editor.record.form.license.pddl": "",
|
|
179
189
|
"editor.record.form.license.unknown": "Non-reconnue ou absente",
|
|
180
|
-
"editor.record.form.
|
|
181
|
-
"editor.record.form.
|
|
182
|
-
"editor.record.form.
|
|
183
|
-
"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",
|
|
184
206
|
"editor.record.form.temporalExtents.addDate": "Date déterminée",
|
|
185
207
|
"editor.record.form.temporalExtents.addRange": "Période de temps",
|
|
186
208
|
"editor.record.form.temporalExtents.date": "Date concernée",
|
|
187
209
|
"editor.record.form.temporalExtents.range": "Période concernée",
|
|
188
|
-
"editor.record.form.unique.identifier": "",
|
|
189
|
-
"editor.record.form.updateFrequency": "Fréquence de mise à jour",
|
|
190
210
|
"editor.record.form.updateFrequency.planned": "Ces données doivent être mise à jour régulièrement.",
|
|
191
211
|
"editor.record.loadError.body": "",
|
|
192
212
|
"editor.record.loadError.closeMessage": "",
|
|
@@ -201,6 +221,7 @@
|
|
|
201
221
|
"editor.record.saveStatus.draftWithChangesPending": "Brouillon enregistré - modifications en cours",
|
|
202
222
|
"editor.record.saveStatus.recordUpToDate": "La fiche publiée est à jour",
|
|
203
223
|
"editor.record.upToDate": "",
|
|
224
|
+
"editor.sidebar.menu.editor": "",
|
|
204
225
|
"externalviewer.dataset.unnamed": "Couche du datahub",
|
|
205
226
|
"facets.block.title.OrgForResource": "Organisation",
|
|
206
227
|
"facets.block.title.availableInServices": "Disponible pour",
|
|
@@ -278,6 +299,7 @@
|
|
|
278
299
|
"pagination.pageOf": "sur",
|
|
279
300
|
"previous": "précédent",
|
|
280
301
|
"record.action.download": "Télécharger",
|
|
302
|
+
"record.action.duplicate": "Dupliquer",
|
|
281
303
|
"record.action.view": "Voir",
|
|
282
304
|
"record.externalViewer.open": "Ouvrir dans le visualiseur externe",
|
|
283
305
|
"record.metadata.about": "Description",
|
|
@@ -408,7 +430,7 @@
|
|
|
408
430
|
"search.filters.resourceType": "Type de ressource",
|
|
409
431
|
"search.filters.standard": "Standard",
|
|
410
432
|
"search.filters.title": "Affiner votre recherche",
|
|
411
|
-
"search.filters.topic": "
|
|
433
|
+
"search.filters.topic": "Thèmes",
|
|
412
434
|
"search.filters.useSpatialFilter": "Mettre en avant les résultats sur la zone d'intérêt",
|
|
413
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.",
|
|
414
436
|
"share.tab.permalink": "Partager",
|
|
@@ -165,9 +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.
|
|
170
|
-
"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": "",
|
|
171
181
|
"editor.record.form.license.cc-by": "",
|
|
172
182
|
"editor.record.form.license.cc-by-sa": "",
|
|
173
183
|
"editor.record.form.license.cc-zero": "",
|
|
@@ -177,16 +187,26 @@
|
|
|
177
187
|
"editor.record.form.license.odc-by": "",
|
|
178
188
|
"editor.record.form.license.pddl": "",
|
|
179
189
|
"editor.record.form.license.unknown": "Non riconosciuta o assente",
|
|
180
|
-
"editor.record.form.
|
|
181
|
-
"editor.record.form.
|
|
182
|
-
"editor.record.form.
|
|
183
|
-
"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": "",
|
|
184
206
|
"editor.record.form.temporalExtents.addDate": "",
|
|
185
207
|
"editor.record.form.temporalExtents.addRange": "",
|
|
186
208
|
"editor.record.form.temporalExtents.date": "",
|
|
187
209
|
"editor.record.form.temporalExtents.range": "",
|
|
188
|
-
"editor.record.form.unique.identifier": "",
|
|
189
|
-
"editor.record.form.updateFrequency": "",
|
|
190
210
|
"editor.record.form.updateFrequency.planned": "",
|
|
191
211
|
"editor.record.loadError.body": "",
|
|
192
212
|
"editor.record.loadError.closeMessage": "",
|
|
@@ -201,6 +221,7 @@
|
|
|
201
221
|
"editor.record.saveStatus.draftWithChangesPending": "",
|
|
202
222
|
"editor.record.saveStatus.recordUpToDate": "",
|
|
203
223
|
"editor.record.upToDate": "",
|
|
224
|
+
"editor.sidebar.menu.editor": "",
|
|
204
225
|
"externalviewer.dataset.unnamed": "Layer del datahub",
|
|
205
226
|
"facets.block.title.OrgForResource": "Organizzazione",
|
|
206
227
|
"facets.block.title.availableInServices": "Disponibile per",
|
|
@@ -278,6 +299,7 @@
|
|
|
278
299
|
"pagination.pageOf": "di",
|
|
279
300
|
"previous": "precedente",
|
|
280
301
|
"record.action.download": "Scarica",
|
|
302
|
+
"record.action.duplicate": "",
|
|
281
303
|
"record.action.view": "Visualizza",
|
|
282
304
|
"record.externalViewer.open": "Apri nell'visualizzatore esterno",
|
|
283
305
|
"record.metadata.about": "Descrizione",
|
|
@@ -408,7 +430,7 @@
|
|
|
408
430
|
"search.filters.resourceType": "Tipo di risorsa",
|
|
409
431
|
"search.filters.standard": "Standard",
|
|
410
432
|
"search.filters.title": "Affina la sua ricerca",
|
|
411
|
-
"search.filters.topic": "
|
|
433
|
+
"search.filters.topic": "Argomenti",
|
|
412
434
|
"search.filters.useSpatialFilter": "Evidenzia i risultati nell'area di interesse",
|
|
413
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.",
|
|
414
436
|
"share.tab.permalink": "Condividere",
|
|
@@ -165,9 +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.
|
|
170
|
-
"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": "",
|
|
171
181
|
"editor.record.form.license.cc-by": "",
|
|
172
182
|
"editor.record.form.license.cc-by-sa": "",
|
|
173
183
|
"editor.record.form.license.cc-zero": "",
|
|
@@ -177,16 +187,26 @@
|
|
|
177
187
|
"editor.record.form.license.odc-by": "",
|
|
178
188
|
"editor.record.form.license.pddl": "",
|
|
179
189
|
"editor.record.form.license.unknown": "",
|
|
180
|
-
"editor.record.form.
|
|
181
|
-
"editor.record.form.
|
|
182
|
-
"editor.record.form.
|
|
183
|
-
"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": "",
|
|
184
206
|
"editor.record.form.temporalExtents.addDate": "",
|
|
185
207
|
"editor.record.form.temporalExtents.addRange": "",
|
|
186
208
|
"editor.record.form.temporalExtents.date": "",
|
|
187
209
|
"editor.record.form.temporalExtents.range": "",
|
|
188
|
-
"editor.record.form.unique.identifier": "",
|
|
189
|
-
"editor.record.form.updateFrequency": "",
|
|
190
210
|
"editor.record.form.updateFrequency.planned": "",
|
|
191
211
|
"editor.record.loadError.body": "",
|
|
192
212
|
"editor.record.loadError.closeMessage": "",
|
|
@@ -201,6 +221,7 @@
|
|
|
201
221
|
"editor.record.saveStatus.draftWithChangesPending": "",
|
|
202
222
|
"editor.record.saveStatus.recordUpToDate": "",
|
|
203
223
|
"editor.record.upToDate": "",
|
|
224
|
+
"editor.sidebar.menu.editor": "",
|
|
204
225
|
"externalviewer.dataset.unnamed": "",
|
|
205
226
|
"facets.block.title.OrgForResource": "",
|
|
206
227
|
"facets.block.title.availableInServices": "",
|
|
@@ -278,6 +299,7 @@
|
|
|
278
299
|
"pagination.pageOf": "",
|
|
279
300
|
"previous": "",
|
|
280
301
|
"record.action.download": "",
|
|
302
|
+
"record.action.duplicate": "",
|
|
281
303
|
"record.action.view": "",
|
|
282
304
|
"record.externalViewer.open": "",
|
|
283
305
|
"record.metadata.about": "",
|
|
@@ -165,9 +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.
|
|
170
|
-
"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": "",
|
|
171
181
|
"editor.record.form.license.cc-by": "",
|
|
172
182
|
"editor.record.form.license.cc-by-sa": "",
|
|
173
183
|
"editor.record.form.license.cc-zero": "",
|
|
@@ -177,16 +187,26 @@
|
|
|
177
187
|
"editor.record.form.license.odc-by": "",
|
|
178
188
|
"editor.record.form.license.pddl": "",
|
|
179
189
|
"editor.record.form.license.unknown": "",
|
|
180
|
-
"editor.record.form.
|
|
181
|
-
"editor.record.form.
|
|
182
|
-
"editor.record.form.
|
|
183
|
-
"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": "",
|
|
184
206
|
"editor.record.form.temporalExtents.addDate": "",
|
|
185
207
|
"editor.record.form.temporalExtents.addRange": "",
|
|
186
208
|
"editor.record.form.temporalExtents.date": "",
|
|
187
209
|
"editor.record.form.temporalExtents.range": "",
|
|
188
|
-
"editor.record.form.unique.identifier": "",
|
|
189
|
-
"editor.record.form.updateFrequency": "",
|
|
190
210
|
"editor.record.form.updateFrequency.planned": "",
|
|
191
211
|
"editor.record.loadError.body": "",
|
|
192
212
|
"editor.record.loadError.closeMessage": "",
|
|
@@ -201,6 +221,7 @@
|
|
|
201
221
|
"editor.record.saveStatus.draftWithChangesPending": "",
|
|
202
222
|
"editor.record.saveStatus.recordUpToDate": "",
|
|
203
223
|
"editor.record.upToDate": "",
|
|
224
|
+
"editor.sidebar.menu.editor": "",
|
|
204
225
|
"externalviewer.dataset.unnamed": "",
|
|
205
226
|
"facets.block.title.OrgForResource": "",
|
|
206
227
|
"facets.block.title.availableInServices": "",
|
|
@@ -278,6 +299,7 @@
|
|
|
278
299
|
"pagination.pageOf": "",
|
|
279
300
|
"previous": "",
|
|
280
301
|
"record.action.download": "",
|
|
302
|
+
"record.action.duplicate": "",
|
|
281
303
|
"record.action.view": "",
|
|
282
304
|
"record.externalViewer.open": "",
|
|
283
305
|
"record.metadata.about": "",
|