@geogirafe/lib-geoportal 1.1.0-dev.2584931681 → 1.1.0-dev.2588173445
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/assets/i18n/de.json +51 -26
- package/assets/i18n/en.json +54 -28
- package/assets/i18n/fr.json +53 -28
- package/assets/i18n/it.json +51 -26
- package/components/advancedfilter/component.d.ts +12 -8
- package/components/advancedfilter/component.js +67 -16
- package/components/advancedfilter/filterconditionelement.d.ts +57 -0
- package/components/advancedfilter/filterconditionelement.js +208 -0
- package/components/advancedfilter/layerfilterelement.d.ts +17 -35
- package/components/advancedfilter/layerfilterelement.js +74 -63
- package/components/drawing-toolbar/component.d.ts +26 -0
- package/components/drawing-toolbar/component.js +148 -0
- package/components/main.d.ts +1 -0
- package/components/main.js +1 -0
- package/models/filter.d.ts +3 -2
- package/models/filter.js +26 -12
- package/models/gmf.d.ts +1 -0
- package/models/layers/layerwms.d.ts +2 -0
- package/models/layers/layerwms.js +6 -2
- package/models/main.d.ts +3 -3
- package/models/main.js +2 -2
- package/models/serverwfs.d.ts +3 -1
- package/models/serverwfs.js +11 -1
- package/models/xmlTypes.d.ts +12 -0
- package/models/xmlTypes.js +38 -1
- package/package.json +1 -1
- package/templates/public/about.json +1 -1
- package/tools/app/geogirafeapp.js +2 -0
- package/tools/configuration/girafeconfig.d.ts +4 -0
- package/tools/configuration/girafeconfig.js +10 -0
- package/tools/drawing/drawingFeature.d.ts +7 -2
- package/tools/drawing/drawingFeature.js +34 -2
- package/tools/drawing/drawingState.d.ts +4 -0
- package/tools/drawing/drawingState.js +1 -0
- package/tools/drawing/olDrawing.js +1 -15
- package/tools/filter/basefilter.d.ts +5 -3
- package/tools/filter/basefilter.js +32 -8
- package/tools/tests/mockconfig.d.ts +3 -0
- package/tools/tests/mockconfig.js +4 -1
- package/tools/utils/olutils.d.ts +5 -3
- package/tools/utils/olutils.js +2 -0
- package/tools/wfs/wfsclient.d.ts +10 -0
- package/tools/wfs/wfsclient.js +48 -3
- package/tools/wfs/wfsfilter.js +3 -12
- package/tools/wfs/wfsfiltercondition.d.ts +24 -6
- package/tools/wfs/wfsfiltercondition.js +104 -9
- package/tools/wfs/wfsmanager.d.ts +6 -1
- package/tools/wfs/wfsmanager.js +33 -2
package/assets/i18n/de.json
CHANGED
|
@@ -18,7 +18,6 @@
|
|
|
18
18
|
"add_theme": "Thema hinzufügen",
|
|
19
19
|
"Advanced filter": "Erweiterter Filter",
|
|
20
20
|
"advanced-filter-panel": "Erweiterter Filter",
|
|
21
|
-
"after": "nach",
|
|
22
21
|
"Altitude": "Höhe",
|
|
23
22
|
"An error occurred while loading the themes. This has nothing to do with GeoGirafe and is very probably a backend-configuration error (wrong content in themes.json, or CORS error). Please check the backend configuration.": "Ein Fehler ist beim Laden der Themen aufgetreten. Dies hat nichts mit GeoGirafe zu tun und ist höchstwahrscheinlich ein Backend-Konfigurationsfehler (falscher Inhalt in themes.json oder CORS-Fehler). Bitte überprüfen Sie die Backend-Konfiguration.",
|
|
24
23
|
"Apply": "Anwenden",
|
|
@@ -32,12 +31,8 @@
|
|
|
32
31
|
"Basemap visible": "Hintergrundkartenauswahl sichtbar",
|
|
33
32
|
"Basemaps": "Hintergrundkarten",
|
|
34
33
|
"Batch creation mode": "Batch-Modus",
|
|
35
|
-
"before": "vor",
|
|
36
|
-
"between": "zwischen",
|
|
37
|
-
"boolean": "boolescher Wert",
|
|
38
34
|
"Build": "Build",
|
|
39
35
|
"by selecting a theme": "wählen Sie ein Thema",
|
|
40
|
-
"byte": "Byte",
|
|
41
36
|
"Cancel": "Abbrechen",
|
|
42
37
|
"Cancel editing": "Editieren abbrechen",
|
|
43
38
|
"Cannot send message": "Nachricht konnte nicht gesendet werden",
|
|
@@ -57,7 +52,6 @@
|
|
|
57
52
|
"color_option_uniform": "Einheitliche Farbe",
|
|
58
53
|
"Connecting to the print server, please wait.": "Verbindung zum Druckserver wird hergestellt, bitte warten.",
|
|
59
54
|
"contact-panel": "Kontaktformular",
|
|
60
|
-
"contains": "enthält",
|
|
61
55
|
"Control opacity": "Deckkraft steuern",
|
|
62
56
|
"Copy ShortUrl": "Kurz-URL kopieren",
|
|
63
57
|
"Copy to Clipboard": "In die Zwischenablage kopieren",
|
|
@@ -74,12 +68,42 @@
|
|
|
74
68
|
"dark": "Dunkel",
|
|
75
69
|
"darkFrontendMode": "Anzeigemodus",
|
|
76
70
|
"darkMapMode": "Dunkle Karte",
|
|
71
|
+
"datatype-boolean": "Boolescher Wert",
|
|
72
|
+
"datatype-byte": "Byte",
|
|
73
|
+
"datatype-curve": "Kurve",
|
|
74
|
+
"datatype-date": "Datum",
|
|
75
|
+
"datatype-dateTime": "Datum und Uhrzeit",
|
|
76
|
+
"datatype-decimal": "Dezimalzahl",
|
|
77
|
+
"datatype-double": "Gleitkommazahl",
|
|
78
|
+
"datatype-int": "Ganzzahl",
|
|
79
|
+
"datatype-integer": "Ganzzahl",
|
|
80
|
+
"datatype-linestring": "Linie",
|
|
81
|
+
"datatype-list": "Liste",
|
|
82
|
+
"datatype-long": "Lange Ganzzahl",
|
|
83
|
+
"datatype-multicurve": "MultiKurve",
|
|
84
|
+
"datatype-multigeometry": "MultiGeometrie",
|
|
85
|
+
"datatype-multilinestring": "MultiLinie",
|
|
86
|
+
"datatype-multipoint": "MultiPunkt",
|
|
87
|
+
"datatype-multipolygon": "MultiPolygon",
|
|
88
|
+
"datatype-multisurface": "MultiFläche",
|
|
89
|
+
"datatype-negativeInteger": "Negative Ganzzahl",
|
|
90
|
+
"datatype-nonNegativeInteger": "Positive Ganzzahl",
|
|
91
|
+
"datatype-nonPositiveInteger": "Negative Ganzzahl",
|
|
92
|
+
"datatype-number": "Zahl",
|
|
93
|
+
"datatype-point": "Punkt",
|
|
94
|
+
"datatype-polygon": "Polygon",
|
|
95
|
+
"datatype-positiveInteger": "Positive Ganzzahl",
|
|
96
|
+
"datatype-short": "Kurze Ganzzahl",
|
|
97
|
+
"datatype-string": "Text",
|
|
98
|
+
"datatype-surface": "Fläche",
|
|
99
|
+
"datatype-unknown": "Unbekannt",
|
|
100
|
+
"datatype-unsignedByte": "Vorzeichenloses Byte",
|
|
101
|
+
"datatype-unsignedInt": "Vorzeichenlose Ganzzahl",
|
|
102
|
+
"datatype-unsignedLong": "Vorzeichenlose lange Ganzzahl",
|
|
103
|
+
"datatype-unsignedShort": "Vorzeichenlose kurze Ganzzahl",
|
|
77
104
|
"Date": "Datum",
|
|
78
|
-
"date": "Datum",
|
|
79
|
-
"dateTime": "Datum und Uhrzeit",
|
|
80
105
|
"de": "Deutsch",
|
|
81
106
|
"debug": "Debug",
|
|
82
|
-
"decimal": "Dezimalzahl",
|
|
83
107
|
"Define time restriction on group": "Zeitliche Begrenzung für Gruppe definieren",
|
|
84
108
|
"Define time restriction on layer": "Zeitliche Begrenzung für Layer definieren",
|
|
85
109
|
"delete": "Löschen",
|
|
@@ -93,6 +117,7 @@
|
|
|
93
117
|
"delete_help": "Profil-Linie löschen",
|
|
94
118
|
"Disable drawing": "Zeichnen deaktivieren",
|
|
95
119
|
"Discard": "Verwerfen",
|
|
120
|
+
"Disk": "Kreis",
|
|
96
121
|
"Display menu": "Menü anzeigen",
|
|
97
122
|
"Distance": "Entfernung",
|
|
98
123
|
"Do you want to delete this bookmark?": "Möchten Sie dieses Lesezeichen löschen?",
|
|
@@ -104,7 +129,6 @@
|
|
|
104
129
|
"Documentation": "Dokumentation",
|
|
105
130
|
"does not contain": "enthält nicht",
|
|
106
131
|
"does not equal": "ungleich",
|
|
107
|
-
"double": "Gleitkommazahl",
|
|
108
132
|
"download": "Herunterladen",
|
|
109
133
|
"download_help": "Herunterladen",
|
|
110
134
|
"download_video": "Video herunterladen",
|
|
@@ -161,6 +185,21 @@
|
|
|
161
185
|
"Filter layer": "Layer filtern",
|
|
162
186
|
"Filter layer tree...": "Layerliste filtern...",
|
|
163
187
|
"Filtering deactivated: layers in layergroup don't have identical attributes.": "Filterung deaktiviert: Layer in der Layergruppe haben nicht identische Attribute.",
|
|
188
|
+
"filteroperator-AFTER": "NACH",
|
|
189
|
+
"filteroperator-AND": "UND",
|
|
190
|
+
"filteroperator-BEFORE": "VOR",
|
|
191
|
+
"filteroperator-BETWEEN": "ZWISCHEN",
|
|
192
|
+
"filteroperator-CONTAINS": "ENTHÄLT",
|
|
193
|
+
"filteroperator-IN": "IN",
|
|
194
|
+
"filteroperator-INTERSECTS": "SCHNEIDET",
|
|
195
|
+
"filteroperator-IS NOT NULL": "IST NICHT LEER",
|
|
196
|
+
"filteroperator-IS NULL": "IST LEER",
|
|
197
|
+
"filteroperator-LIKE": "ENTSPRICHT",
|
|
198
|
+
"filteroperator-NOT BETWEEN": "NICHT ZWISCHEN",
|
|
199
|
+
"filteroperator-NOT IN": "NICHT IN",
|
|
200
|
+
"filteroperator-NOT LIKE": "ENTSPRICHT NICHT",
|
|
201
|
+
"filteroperator-OR": "ODER",
|
|
202
|
+
"filteroperator-WITHIN": "INNERHALB",
|
|
164
203
|
"Fix height to": "Höhe festlegen auf",
|
|
165
204
|
"Fix length to": "Länge festlegen auf",
|
|
166
205
|
"Fix side length to": "Seitenlänge festlegen auf",
|
|
@@ -182,6 +221,7 @@
|
|
|
182
221
|
"Geolocation permission denied": "Geolokalisierungserlaubnis vom Benutzer verweigert",
|
|
183
222
|
"Geolocation permission unavailable": "Standortinformationen nicht verfügbar",
|
|
184
223
|
"Geolocation timeout": "Die Geolokalisierungsanfrage ist abgelaufen",
|
|
224
|
+
"geometry": "Geometrie",
|
|
185
225
|
"Geometry type": "Geometrietyp",
|
|
186
226
|
"GitLab": "GitLab",
|
|
187
227
|
"Give feeback": "Feedback geben",
|
|
@@ -205,12 +245,8 @@
|
|
|
205
245
|
"Hide Swiper": "Swiper ausblenden",
|
|
206
246
|
"info": "Information",
|
|
207
247
|
"Information without public faith": "Informationen ohne öffentliche Glaubwürdigkeit",
|
|
208
|
-
"int": "Ganzzahl",
|
|
209
|
-
"integer": "Ganzzahl",
|
|
210
248
|
"Intensity": "Intensität",
|
|
211
249
|
"Invert selection": "Auswahl umkehren",
|
|
212
|
-
"is blank": "ist leer",
|
|
213
|
-
"is not blank": "ist nicht leer",
|
|
214
250
|
"it": "Italienisch",
|
|
215
251
|
"It might be offline": "Der Dienst könnte offline sein",
|
|
216
252
|
"KML": "KML",
|
|
@@ -245,7 +281,6 @@
|
|
|
245
281
|
"Login": "Anmelden",
|
|
246
282
|
"logLevel": "Log Level",
|
|
247
283
|
"Logout": "Abmelden",
|
|
248
|
-
"long": "lange Ganzzahl",
|
|
249
284
|
"Longpress disable geolocation": "Drücke den Button und halte ihn gedrückt, um die Geolokalisierung zu deaktivieren.",
|
|
250
285
|
"Manual entry": "Manuelle Eingabe",
|
|
251
286
|
"map": "Karte",
|
|
@@ -268,7 +303,6 @@
|
|
|
268
303
|
"My selection": "Meine Auswahl",
|
|
269
304
|
"Name": "Name",
|
|
270
305
|
"Navigate to Selection": "Zur Auswahl navigieren",
|
|
271
|
-
"negativeInteger": "negative Ganzzahl",
|
|
272
306
|
"New Filter": "Neuer Filter",
|
|
273
307
|
"news": "Nachrichten",
|
|
274
308
|
"No": "Nein",
|
|
@@ -279,10 +313,7 @@
|
|
|
279
313
|
"No graph to export in PNG!": "Kein Diagramm zum Exportieren als PNG!",
|
|
280
314
|
"No layer available": "Kein Layer verfügbar",
|
|
281
315
|
"No match found": "Keine Ergebnisse gefunden",
|
|
282
|
-
"nonNegativeInteger": "positive Ganzzahl",
|
|
283
|
-
"nonPositiveInteger": "negative Ganzzahl",
|
|
284
316
|
"Nothing here yet!": "Hier ist noch nichts!",
|
|
285
|
-
"number": "Zahl",
|
|
286
317
|
"Offline data": "Offline-Daten",
|
|
287
318
|
"Offline mode": "Offline-Modus",
|
|
288
319
|
"Ok": "Ok",
|
|
@@ -312,7 +343,7 @@
|
|
|
312
343
|
"PNG export": "PNG-Export",
|
|
313
344
|
"Point": "Punkt",
|
|
314
345
|
"Polygon": "Polygon",
|
|
315
|
-
"
|
|
346
|
+
"Possible values": "Mögliche Werte",
|
|
316
347
|
"predefined": "Vordefiniert",
|
|
317
348
|
"Predefined servers": "Vordefinierte Server",
|
|
318
349
|
"Press 'Enter' to apply": "Drücken Sie 'Enter' um anzuwenden",
|
|
@@ -433,7 +464,6 @@
|
|
|
433
464
|
"Shadows": "Schatten",
|
|
434
465
|
"Share this map": "Diese Karte teilen",
|
|
435
466
|
"share-panel": "Karte teilen oder einbetten",
|
|
436
|
-
"short": "kurze Ganzzahl",
|
|
437
467
|
"Show metadata": "Metadaten anzeigen",
|
|
438
468
|
"Show or hide measure information": "Massinformationen anzeigen oder ausblenden",
|
|
439
469
|
"Show or hide shape name": "Formname anzeigen oder ausblenden",
|
|
@@ -456,7 +486,6 @@
|
|
|
456
486
|
"Source Type": "Typ der Quelle",
|
|
457
487
|
"Square": "Quadrat",
|
|
458
488
|
"stop_video": "Video stoppen",
|
|
459
|
-
"string": "Text",
|
|
460
489
|
"Stroke color": "Strichfarbe",
|
|
461
490
|
"Suggestions": "Vorschläge",
|
|
462
491
|
"SVG": "SVG",
|
|
@@ -485,10 +514,6 @@
|
|
|
485
514
|
"Tools": "Werkzeuge",
|
|
486
515
|
"unfreeze-column": "Spaltenfixierung aufheben",
|
|
487
516
|
"Unselect all filtered layers": "Alle Layers im Filter abwählen",
|
|
488
|
-
"unsignedByte": "vorzeichenloses Byte",
|
|
489
|
-
"unsignedInt": "vorzeichenlose Ganzzahl",
|
|
490
|
-
"unsignedLong": "vorzeichenlose lange Ganzzahl",
|
|
491
|
-
"unsignedShort": "vorzeichenlose kurze Ganzzahl",
|
|
492
517
|
"Unsupported file format": "Nicht unterstütztes Dateiformat",
|
|
493
518
|
"URL (auto_WMTS)": "URL",
|
|
494
519
|
"URL (WMS)": "URL",
|
package/assets/i18n/en.json
CHANGED
|
@@ -18,7 +18,6 @@
|
|
|
18
18
|
"add_theme": "Add a theme",
|
|
19
19
|
"Advanced filter": "Advanced filter",
|
|
20
20
|
"advanced-filter-panel": "Advanced Filter",
|
|
21
|
-
"after": "after",
|
|
22
21
|
"Altitude": "Altitude",
|
|
23
22
|
"An error occurred while loading the themes. This has nothing to do with GeoGirafe and is very probably a backend-configuration error (wrong content in themes.json, or CORS error). Please check the backend configuration.": "An error occurred while loading the themes. This has nothing to do with GeoGirafe and is very probably a backend-configuration error (wrong content in themes.json, or CORS error). Please check the backend configuration.",
|
|
24
23
|
"Apply": "Apply",
|
|
@@ -32,12 +31,8 @@
|
|
|
32
31
|
"Basemap visible": "Basemap selection visible",
|
|
33
32
|
"Basemaps": "Basemaps",
|
|
34
33
|
"Batch creation mode": "Batch creation mode",
|
|
35
|
-
"before": "before",
|
|
36
|
-
"between": "between",
|
|
37
|
-
"boolean": "boolean",
|
|
38
34
|
"Build": "Build",
|
|
39
35
|
"by selecting a theme": "by selecting a theme",
|
|
40
|
-
"byte": "byte",
|
|
41
36
|
"Cancel": "Cancel",
|
|
42
37
|
"Cancel editing": "Cancel editing",
|
|
43
38
|
"Cannot send message": "Cannot send message",
|
|
@@ -74,12 +69,42 @@
|
|
|
74
69
|
"dark": "Dark",
|
|
75
70
|
"darkFrontendMode": "Display mode",
|
|
76
71
|
"darkMapMode": "Dark map",
|
|
72
|
+
"datatype-boolean": "Boolean",
|
|
73
|
+
"datatype-byte": "Byte",
|
|
74
|
+
"datatype-curve": "Curve",
|
|
75
|
+
"datatype-date": "Date",
|
|
76
|
+
"datatype-dateTime": "Date time",
|
|
77
|
+
"datatype-decimal": "Decimal",
|
|
78
|
+
"datatype-double": "Double",
|
|
79
|
+
"datatype-int": "Integer",
|
|
80
|
+
"datatype-integer": "Integer",
|
|
81
|
+
"datatype-linestring": "LineString",
|
|
82
|
+
"datatype-list": "List",
|
|
83
|
+
"datatype-long": "Long",
|
|
84
|
+
"datatype-multicurve": "MultiCurve",
|
|
85
|
+
"datatype-multigeometry": "MultiGeometry",
|
|
86
|
+
"datatype-multilinestring": "MultiLineString",
|
|
87
|
+
"datatype-multipoint": "MultiPoint",
|
|
88
|
+
"datatype-multipolygon": "MultiPolygon",
|
|
89
|
+
"datatype-multisurface": "MultiSurface",
|
|
90
|
+
"datatype-negativeInteger": "Negative Integer",
|
|
91
|
+
"datatype-nonNegativeInteger": "Non-negative Integer",
|
|
92
|
+
"datatype-nonPositiveInteger": "Non-positive Integer",
|
|
93
|
+
"datatype-number": "Number",
|
|
94
|
+
"datatype-point": "Point",
|
|
95
|
+
"datatype-polygon": "Polygon",
|
|
96
|
+
"datatype-positiveInteger": "Positive Integer",
|
|
97
|
+
"datatype-short": "Short",
|
|
98
|
+
"datatype-string": "String",
|
|
99
|
+
"datatype-surface": "Surface",
|
|
100
|
+
"datatype-unknown": "Unknown",
|
|
101
|
+
"datatype-unsignedByte": "Unsigned Byte",
|
|
102
|
+
"datatype-unsignedInt": "Unsigned Integer",
|
|
103
|
+
"datatype-unsignedLong": "Unsigned Long",
|
|
104
|
+
"datatype-unsignedShort": "Unsigned Short",
|
|
77
105
|
"Date": "Date",
|
|
78
|
-
"date": "date",
|
|
79
|
-
"dateTime": "date time",
|
|
80
106
|
"de": "German",
|
|
81
107
|
"debug": "Debug",
|
|
82
|
-
"decimal": "decimal",
|
|
83
108
|
"Define time restriction on group": "Define time restriction on group",
|
|
84
109
|
"Define time restriction on layer": "Define time restriction on layer",
|
|
85
110
|
"delete": "Delete",
|
|
@@ -93,6 +118,7 @@
|
|
|
93
118
|
"delete_help": "Delete profile line",
|
|
94
119
|
"Disable drawing": "Disable drawing",
|
|
95
120
|
"Discard": "Discard",
|
|
121
|
+
"Disk": "Circle",
|
|
96
122
|
"Display menu": "Display menu",
|
|
97
123
|
"Distance": "Distance",
|
|
98
124
|
"Do you want to delete this bookmark?": "Do you want to delete this bookmark?",
|
|
@@ -104,7 +130,6 @@
|
|
|
104
130
|
"Documentation": "Documentation",
|
|
105
131
|
"does not contain": "does not contain",
|
|
106
132
|
"does not equal": "does not equal",
|
|
107
|
-
"double": "double",
|
|
108
133
|
"download": "Download",
|
|
109
134
|
"download_help": "Download",
|
|
110
135
|
"download_video": "Download video",
|
|
@@ -162,6 +187,21 @@
|
|
|
162
187
|
"Filter layer": "Filter layer",
|
|
163
188
|
"Filter layer tree...": "Filter layer tree...",
|
|
164
189
|
"Filtering deactivated: layers in layergroup don't have identical attributes.": "Filtering deactivated: layers in layergroup don't have identical attributes.",
|
|
190
|
+
"filteroperator-AFTER": "AFTER",
|
|
191
|
+
"filteroperator-AND": "AND",
|
|
192
|
+
"filteroperator-BEFORE": "BEFORE",
|
|
193
|
+
"filteroperator-BETWEEN": "BETWEEN",
|
|
194
|
+
"filteroperator-CONTAINS": "CONTAINS",
|
|
195
|
+
"filteroperator-IN": "IN",
|
|
196
|
+
"filteroperator-INTERSECTS": "INTERSECTS",
|
|
197
|
+
"filteroperator-IS NOT NULL": "IS NOT NULL",
|
|
198
|
+
"filteroperator-IS NULL": "IS NULL",
|
|
199
|
+
"filteroperator-LIKE": "LIKE",
|
|
200
|
+
"filteroperator-NOT BETWEEN": "NOT BETWEEN",
|
|
201
|
+
"filteroperator-NOT IN": "NOT IN",
|
|
202
|
+
"filteroperator-NOT LIKE": "NOT LIKE",
|
|
203
|
+
"filteroperator-OR": "OR",
|
|
204
|
+
"filteroperator-WITHIN": "WITHIN",
|
|
165
205
|
"Fix height to": "Fix height to",
|
|
166
206
|
"Fix length to": "Fix length to",
|
|
167
207
|
"Fix side length to": "Fix side length to",
|
|
@@ -183,6 +223,7 @@
|
|
|
183
223
|
"Geolocation permission denied": "Geolocation permission denied by user",
|
|
184
224
|
"Geolocation permission unavailable": "Geolocation information not available",
|
|
185
225
|
"Geolocation timeout": "Geolocation request has expired",
|
|
226
|
+
"geometry": "Geometry",
|
|
186
227
|
"Geometry type": "Geometry type",
|
|
187
228
|
"GitLab": "GitLab",
|
|
188
229
|
"Give feeback": "Give feeback",
|
|
@@ -206,12 +247,8 @@
|
|
|
206
247
|
"Hide Swiper": "Hide Swiper",
|
|
207
248
|
"info": "Info",
|
|
208
249
|
"Information without public faith": "Information without public faith",
|
|
209
|
-
"int": "integer",
|
|
210
|
-
"integer": "integer",
|
|
211
250
|
"Intensity": "Intensity",
|
|
212
251
|
"Invert selection": "Invert selection",
|
|
213
|
-
"is blank": "is blank",
|
|
214
|
-
"is not blank": "is not blank",
|
|
215
252
|
"it": "Italian",
|
|
216
253
|
"It might be offline": "It might be offline",
|
|
217
254
|
"KML": "KML",
|
|
@@ -246,30 +283,28 @@
|
|
|
246
283
|
"Login": "Login",
|
|
247
284
|
"logLevel": "Log level",
|
|
248
285
|
"Logout": "Logout",
|
|
249
|
-
"long": "long",
|
|
250
286
|
"Longpress disable geolocation": "Press and hold the button to disable geolocation.",
|
|
251
287
|
"Manual entry": "Manual entry",
|
|
252
288
|
"map": "Map",
|
|
253
289
|
"map.geo.admin.ch": "map.geo.admin.ch",
|
|
254
290
|
"Material": "Material",
|
|
255
291
|
"measure-information-full": "Full",
|
|
292
|
+
"measure-information-mixed": "Mixed",
|
|
293
|
+
"measure-information-mixed-tooltip": "Multiple Drawings are selected. When you change the shown information it will change for ALL of them",
|
|
256
294
|
"measure-information-none": "None",
|
|
257
295
|
"measure-information-simple": "Simple",
|
|
258
|
-
"measure-information-mixed": "Mixed",
|
|
259
296
|
"measure-information-tooltip": "You can change the amount of information shown on the map",
|
|
260
|
-
"measure-information-mixed-tooltip": "Multiple Drawings are selected. When you change the shown information it will change for ALL of them",
|
|
261
297
|
"Measures": "Measures",
|
|
262
298
|
"Medium": "Medium",
|
|
263
299
|
"Message sent": "Message sent",
|
|
264
300
|
"meters": "meters",
|
|
265
301
|
"Move": "Move",
|
|
266
302
|
"Move Shape": "Move Shape",
|
|
303
|
+
"multiple-shapes-selected": "${shape-count} Shapes selected",
|
|
267
304
|
"My Drawing": "My Drawing",
|
|
268
305
|
"My selection": "My selection",
|
|
269
|
-
"multiple-shapes-selected": "${shape-count} Shapes selected",
|
|
270
306
|
"Name": "Name",
|
|
271
307
|
"Navigate to Selection": "Navigate to Selection",
|
|
272
|
-
"negativeInteger": "negative integer",
|
|
273
308
|
"New Filter": "New Filter",
|
|
274
309
|
"news": "News",
|
|
275
310
|
"No": "No",
|
|
@@ -280,10 +315,7 @@
|
|
|
280
315
|
"No graph to export in PNG!": "No graph to export in PNG!",
|
|
281
316
|
"No layer available": "No layer available",
|
|
282
317
|
"No match found": "No match found",
|
|
283
|
-
"nonNegativeInteger": "non-negative integer",
|
|
284
|
-
"nonPositiveInteger": "non-positive integer",
|
|
285
318
|
"Nothing here yet!": "Nothing here yet!",
|
|
286
|
-
"number": "number",
|
|
287
319
|
"Offline data": "Offline data",
|
|
288
320
|
"Offline mode": "Offline mode",
|
|
289
321
|
"Ok": "Ok",
|
|
@@ -313,7 +345,7 @@
|
|
|
313
345
|
"PNG export": "PNG export",
|
|
314
346
|
"Point": "Point",
|
|
315
347
|
"Polygon": "Polygon",
|
|
316
|
-
"
|
|
348
|
+
"Possible values": "Possible values",
|
|
317
349
|
"predefined": "Predefined",
|
|
318
350
|
"Predefined servers": "Predefined servers",
|
|
319
351
|
"Press 'Enter' to apply": "Press 'Enter' to apply",
|
|
@@ -434,7 +466,6 @@
|
|
|
434
466
|
"Shadows": "Shadows",
|
|
435
467
|
"Share this map": "Share this map",
|
|
436
468
|
"share-panel": "Share or embed map",
|
|
437
|
-
"short": "short",
|
|
438
469
|
"Show metadata": "Show metadata",
|
|
439
470
|
"Show or hide measure information": "Show or hide measure information",
|
|
440
471
|
"Show or hide shape name": "Show or hide shape name",
|
|
@@ -458,7 +489,6 @@
|
|
|
458
489
|
"Source Type": "Source Type",
|
|
459
490
|
"Square": "Square",
|
|
460
491
|
"stop_video": "Stop video",
|
|
461
|
-
"string": "string",
|
|
462
492
|
"Stroke color": "Stroke color",
|
|
463
493
|
"Suggestions": "Suggestions",
|
|
464
494
|
"SVG": "SVG",
|
|
@@ -487,10 +517,6 @@
|
|
|
487
517
|
"Tools": "Tools",
|
|
488
518
|
"unfreeze-column": "Unfreeze column",
|
|
489
519
|
"Unselect all filtered layers": "Unselect all filtered layers",
|
|
490
|
-
"unsignedByte": "unsigned byte",
|
|
491
|
-
"unsignedInt": "unsigned integer",
|
|
492
|
-
"unsignedLong": "unsigned long",
|
|
493
|
-
"unsignedShort": "unsigned short",
|
|
494
520
|
"Unsupported file format": "Unsupported file format",
|
|
495
521
|
"URL (auto_WMTS)": "URL",
|
|
496
522
|
"URL (WMS)": "URL",
|
package/assets/i18n/fr.json
CHANGED
|
@@ -16,9 +16,8 @@
|
|
|
16
16
|
"add_group": "Ajouter un groupe de couches",
|
|
17
17
|
"add_layer": "Ajouter une couche",
|
|
18
18
|
"add_theme": "Ajouter un thème",
|
|
19
|
-
"Advanced filter": "
|
|
20
|
-
"advanced-filter-panel": "
|
|
21
|
-
"after": "après",
|
|
19
|
+
"Advanced filter": "Filtre avancé",
|
|
20
|
+
"advanced-filter-panel": "Filtre avancé",
|
|
22
21
|
"Altitude": "Altitude",
|
|
23
22
|
"An error occurred while loading the themes. This has nothing to do with GeoGirafe and is very probably a backend-configuration error (wrong content in themes.json, or CORS error). Please check the backend configuration.": "Une erreur s'est produite lors du chargement des thèmes. Cela n'a rien à voir avec GeoGirafe et est très probablement une erreur de configuration du backend (contenu incorrect dans themes.json ou erreur CORS). Veuillez vérifier la configuration du backend.",
|
|
24
23
|
"Apply": "Appliquer",
|
|
@@ -32,12 +31,8 @@
|
|
|
32
31
|
"Basemap visible": "Sélection de la carte de base visible",
|
|
33
32
|
"Basemaps": "Fonds de carte",
|
|
34
33
|
"Batch creation mode": "mode batch",
|
|
35
|
-
"before": "avant",
|
|
36
|
-
"between": "entre",
|
|
37
|
-
"boolean": "booléen",
|
|
38
34
|
"Build": "Build",
|
|
39
35
|
"by selecting a theme": "en sélectionnant un thème",
|
|
40
|
-
"byte": "octet",
|
|
41
36
|
"Cancel": "Annuler",
|
|
42
37
|
"Cancel editing": "Annuler l'édition",
|
|
43
38
|
"Cannot send message": "Impossible d'envoyer le message",
|
|
@@ -57,7 +52,6 @@
|
|
|
57
52
|
"color_option_uniform": "Couleur unique",
|
|
58
53
|
"Connecting to the print server, please wait.": "Connexion au serveur d'impression, veuillez patienter.",
|
|
59
54
|
"contact-panel": "Nous contacter",
|
|
60
|
-
"contains": "contient",
|
|
61
55
|
"Control opacity": "Contrôler l'opacité",
|
|
62
56
|
"Copy ShortUrl": "Copier le lien court",
|
|
63
57
|
"Copy to Clipboard": "Copier dans le presse-papiers",
|
|
@@ -74,12 +68,42 @@
|
|
|
74
68
|
"dark": "Sombre",
|
|
75
69
|
"darkFrontendMode": "Mode d'affichage",
|
|
76
70
|
"darkMapMode": "Carte sombre",
|
|
71
|
+
"datatype-boolean": "Booléen",
|
|
72
|
+
"datatype-byte": "Octet",
|
|
73
|
+
"datatype-curve": "Courbe",
|
|
74
|
+
"datatype-date": "Date",
|
|
75
|
+
"datatype-dateTime": "Date et heure",
|
|
76
|
+
"datatype-decimal": "Décimal",
|
|
77
|
+
"datatype-double": "Double",
|
|
78
|
+
"datatype-int": "Entier",
|
|
79
|
+
"datatype-integer": "Entier",
|
|
80
|
+
"datatype-linestring": "Ligne",
|
|
81
|
+
"datatype-list": "Liste",
|
|
82
|
+
"datatype-long": "Entier long",
|
|
83
|
+
"datatype-multicurve": "MultiCourbe",
|
|
84
|
+
"datatype-multigeometry": "MultiGéométrie",
|
|
85
|
+
"datatype-multilinestring": "MultiLigne",
|
|
86
|
+
"datatype-multipoint": "MultiPoint",
|
|
87
|
+
"datatype-multipolygon": "MultiPolygone",
|
|
88
|
+
"datatype-multisurface": "MultiSurface",
|
|
89
|
+
"datatype-negativeInteger": "Entier négatif",
|
|
90
|
+
"datatype-nonNegativeInteger": "Entier non négatif",
|
|
91
|
+
"datatype-nonPositiveInteger": "Entier non positif",
|
|
92
|
+
"datatype-number": "Chiffre",
|
|
93
|
+
"datatype-point": "Point",
|
|
94
|
+
"datatype-polygon": "Polygone",
|
|
95
|
+
"datatype-positiveInteger": "Entier positif",
|
|
96
|
+
"datatype-short": "Entier court",
|
|
97
|
+
"datatype-string": "Texte",
|
|
98
|
+
"datatype-surface": "Surface",
|
|
99
|
+
"datatype-unknown": "Inconnu",
|
|
100
|
+
"datatype-unsignedByte": "Octet non signé",
|
|
101
|
+
"datatype-unsignedInt": "Entier non signé",
|
|
102
|
+
"datatype-unsignedLong": "Entier long non signé",
|
|
103
|
+
"datatype-unsignedShort": "Entier court non signé",
|
|
77
104
|
"Date": "Date",
|
|
78
|
-
"date": "date",
|
|
79
|
-
"dateTime": "date et heure",
|
|
80
105
|
"de": "Allemand",
|
|
81
106
|
"debug": "Debug",
|
|
82
|
-
"decimal": "décimal",
|
|
83
107
|
"Define time restriction on group": "Définir la restriction temporelle pour le groupe",
|
|
84
108
|
"Define time restriction on layer": "Définir la restriction temporelle sur la couche",
|
|
85
109
|
"delete": "Supprimer",
|
|
@@ -93,6 +117,7 @@
|
|
|
93
117
|
"delete_help": "Supprimer la ligne de profil",
|
|
94
118
|
"Disable drawing": "Désactiver le dessin",
|
|
95
119
|
"Discard": "Annuler cette entité",
|
|
120
|
+
"Disk": "Cercle",
|
|
96
121
|
"Display menu": "Afficher le menu",
|
|
97
122
|
"Distance": "Distance",
|
|
98
123
|
"Do you want to delete this bookmark?": "Voulez-vous supprimer ce favori ?",
|
|
@@ -104,7 +129,6 @@
|
|
|
104
129
|
"Documentation": "Documentation",
|
|
105
130
|
"does not contain": "ne contient pas",
|
|
106
131
|
"does not equal": "n'est pas égal à",
|
|
107
|
-
"double": "double",
|
|
108
132
|
"download": "Télécharger",
|
|
109
133
|
"download_help": "Télécharger",
|
|
110
134
|
"download_video": "Télécharger la vidéo",
|
|
@@ -161,6 +185,21 @@
|
|
|
161
185
|
"Filter layer": "Filtrer la couche",
|
|
162
186
|
"Filter layer tree...": "Filtrer les couches...",
|
|
163
187
|
"Filtering deactivated: layers in layergroup don't have identical attributes.": "Filtrage désactivé : les couches dans le groupe de couches n'ont pas d'attributs identiques.",
|
|
188
|
+
"filteroperator-AFTER": "APRÈS",
|
|
189
|
+
"filteroperator-AND": "ET",
|
|
190
|
+
"filteroperator-BEFORE": "AVANT",
|
|
191
|
+
"filteroperator-BETWEEN": "ENTRE",
|
|
192
|
+
"filteroperator-CONTAINS": "CONTIENT",
|
|
193
|
+
"filteroperator-IN": "DANS",
|
|
194
|
+
"filteroperator-INTERSECTS": "INTERSECTE",
|
|
195
|
+
"filteroperator-IS NOT NULL": "N'EST PAS VIDE",
|
|
196
|
+
"filteroperator-IS NULL": "EST VIDE",
|
|
197
|
+
"filteroperator-LIKE": "COMME",
|
|
198
|
+
"filteroperator-NOT BETWEEN": "PAS ENTRE",
|
|
199
|
+
"filteroperator-NOT IN": "PAS DANS",
|
|
200
|
+
"filteroperator-NOT LIKE": "PAS COMME",
|
|
201
|
+
"filteroperator-OR": "OU",
|
|
202
|
+
"filteroperator-WITHIN": "À L'INTÉRIEUR",
|
|
164
203
|
"Fix height to": "Fixer la hauteur à",
|
|
165
204
|
"Fix length to": "Fixer la longueur à",
|
|
166
205
|
"Fix side length to": "Fixer la longueur du côté à",
|
|
@@ -182,6 +221,7 @@
|
|
|
182
221
|
"Geolocation permission denied": "Autorisation de géolocalisation refusée",
|
|
183
222
|
"Geolocation permission unavailable": "L'information sur la localisation n'est pas disponible",
|
|
184
223
|
"Geolocation timeout": "La demande de géolocalisation a expiré",
|
|
224
|
+
"geometry": "Géométrie",
|
|
185
225
|
"Geometry type": "Type de géométrie",
|
|
186
226
|
"GitLab": "GitLab",
|
|
187
227
|
"Give feeback": "Donner un avis",
|
|
@@ -205,12 +245,8 @@
|
|
|
205
245
|
"Hide Swiper": "Masquer le swiper",
|
|
206
246
|
"info": "Information",
|
|
207
247
|
"Information without public faith": "Informations dépourvues de foi publique",
|
|
208
|
-
"int": "entier",
|
|
209
|
-
"integer": "entier",
|
|
210
248
|
"Intensity": "Intensité",
|
|
211
249
|
"Invert selection": "Inverser la sélection",
|
|
212
|
-
"is blank": "est vide",
|
|
213
|
-
"is not blank": "n'est pas vide",
|
|
214
250
|
"it": "Italien",
|
|
215
251
|
"It might be offline": "Il pourrait être hors ligne",
|
|
216
252
|
"KML": "KML",
|
|
@@ -245,7 +281,6 @@
|
|
|
245
281
|
"Login": "Connexion",
|
|
246
282
|
"logLevel": "Niveau de log",
|
|
247
283
|
"Logout": "Déconnexion",
|
|
248
|
-
"long": "entier long",
|
|
249
284
|
"Longpress disable geolocation": "Maintenez le bouton pour désactiver la géolocalisation.",
|
|
250
285
|
"Manual entry": "Entrée manuelle",
|
|
251
286
|
"map": "Carte",
|
|
@@ -268,7 +303,6 @@
|
|
|
268
303
|
"My selection": "Ma sélection",
|
|
269
304
|
"Name": "Nom",
|
|
270
305
|
"Navigate to Selection": "Naviguer vers la sélection",
|
|
271
|
-
"negativeInteger": "entier négatif",
|
|
272
306
|
"New Filter": "Nouveau filtre",
|
|
273
307
|
"news": "Actualités",
|
|
274
308
|
"No": "Non",
|
|
@@ -279,10 +313,7 @@
|
|
|
279
313
|
"No graph to export in PNG!": "Aucun graphique à exporter en PNG !",
|
|
280
314
|
"No layer available": "Aucune couche disponible",
|
|
281
315
|
"No match found": "Aucun résultat correspondant",
|
|
282
|
-
"nonNegativeInteger": "entier non négatif",
|
|
283
|
-
"nonPositiveInteger": "entier non positif",
|
|
284
316
|
"Nothing here yet!": "Rien ici pour le moment !",
|
|
285
|
-
"number": "chiffre",
|
|
286
317
|
"Offline data": "Données hors-ligne",
|
|
287
318
|
"Offline mode": "Mode hors-ligne",
|
|
288
319
|
"Ok": "Ok",
|
|
@@ -312,7 +343,7 @@
|
|
|
312
343
|
"PNG export": "Export PNG",
|
|
313
344
|
"Point": "Point",
|
|
314
345
|
"Polygon": "Polygone",
|
|
315
|
-
"
|
|
346
|
+
"Possible values": "Valeurs possibles",
|
|
316
347
|
"predefined": "Prédéfini",
|
|
317
348
|
"Predefined servers": "Serveurs prédéfinis",
|
|
318
349
|
"Press 'Enter' to apply": "Appuyez sur 'Entrée' pour appliquer",
|
|
@@ -433,7 +464,6 @@
|
|
|
433
464
|
"Shadows": "Ombres",
|
|
434
465
|
"Share this map": "Partager cette carte",
|
|
435
466
|
"share-panel": "Partager ou intégrer la carte",
|
|
436
|
-
"short": "entier court",
|
|
437
467
|
"Show metadata": "Afficher les métadonnées",
|
|
438
468
|
"Show or hide measure information": "Afficher ou masquer les informations de mesure",
|
|
439
469
|
"Show or hide shape name": "Afficher ou masquer le nom de la forme",
|
|
@@ -456,7 +486,6 @@
|
|
|
456
486
|
"Source Type": "Type de la source",
|
|
457
487
|
"Square": "Carré",
|
|
458
488
|
"stop_video": "Arrêter la vidéo",
|
|
459
|
-
"string": "chaîne",
|
|
460
489
|
"Stroke color": "Couleur du trait",
|
|
461
490
|
"Suggestions": "Suggestions",
|
|
462
491
|
"SVG": "SVG",
|
|
@@ -485,10 +514,6 @@
|
|
|
485
514
|
"Tools": "Outis",
|
|
486
515
|
"unfreeze-column": "Libérer la colonne",
|
|
487
516
|
"Unselect all filtered layers": "Déselectionner toutes les couches filtrées",
|
|
488
|
-
"unsignedByte": "octet non signé",
|
|
489
|
-
"unsignedInt": "entier non signé",
|
|
490
|
-
"unsignedLong": "entier long non signé",
|
|
491
|
-
"unsignedShort": "entier court non signé",
|
|
492
517
|
"Unsupported file format": "Format de fichier non supporté",
|
|
493
518
|
"URL (auto_WMTS)": "URL",
|
|
494
519
|
"URL (WMS)": "URL",
|