qwc2 2025.10.15 → 2025.10.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (67) hide show
  1. package/actions/locate.js +3 -2
  2. package/components/AttributeTableWidget.js +24 -15
  3. package/components/FeatureAttributesWindow.js +177 -0
  4. package/components/IdentifyViewer.js +450 -319
  5. package/components/LocationRecorder.js +138 -0
  6. package/components/PickFeature.js +87 -26
  7. package/components/PluginsContainer.js +16 -3
  8. package/components/map/OlLayer.js +2 -1
  9. package/components/map3d/HeightProfile3D.js +2 -0
  10. package/components/map3d/Map3D.js +1 -1
  11. package/components/style/App.css +18 -0
  12. package/components/style/AttributeTableWidget.css +2 -1
  13. package/components/style/FeatureAttributesWindow.css +16 -0
  14. package/components/style/IdentifyViewer.css +56 -80
  15. package/components/style/LocationRecorder.css +10 -0
  16. package/components/style/NumericInputWindow.css +7 -0
  17. package/components/style/PluginsContainer.css +16 -0
  18. package/components/widgets/LayerCatalogWidget.js +40 -16
  19. package/components/widgets/NavBar.js +12 -5
  20. package/components/widgets/style/NavBar.css +0 -1
  21. package/icons/circle_full.svg +75 -0
  22. package/icons/eye-slash.svg +138 -0
  23. package/icons/pin.svg +41 -0
  24. package/icons/unpin.svg +41 -0
  25. package/package.json +1 -1
  26. package/plugins/AttributeTable.js +4 -0
  27. package/plugins/GeometryDigitizer.js +3 -0
  28. package/plugins/HeightProfile.js +2 -0
  29. package/plugins/Identify.js +12 -7
  30. package/plugins/ObjectList.js +116 -0
  31. package/plugins/Redlining.js +14 -55
  32. package/plugins/map/EditingSupport.js +22 -1
  33. package/plugins/map/LocateSupport.js +8 -1
  34. package/plugins/map/RedliningSupport.js +108 -18
  35. package/plugins/map/SnappingSupport.js +11 -6
  36. package/plugins/map/style/SnappingSupport.css +2 -13
  37. package/reducers/locate.js +4 -2
  38. package/reducers/redlining.js +2 -1
  39. package/static/translations/bg-BG.json +16 -1
  40. package/static/translations/ca-ES.json +16 -1
  41. package/static/translations/cs-CZ.json +15 -0
  42. package/static/translations/de-CH.json +17 -2
  43. package/static/translations/de-DE.json +18 -3
  44. package/static/translations/en-US.json +16 -1
  45. package/static/translations/es-ES.json +15 -0
  46. package/static/translations/fi-FI.json +15 -0
  47. package/static/translations/fr-FR.json +16 -1
  48. package/static/translations/hu-HU.json +15 -0
  49. package/static/translations/it-IT.json +16 -1
  50. package/static/translations/ja-JP.json +16 -1
  51. package/static/translations/nl-NL.json +15 -0
  52. package/static/translations/no-NO.json +15 -0
  53. package/static/translations/pl-PL.json +15 -0
  54. package/static/translations/pt-BR.json +15 -0
  55. package/static/translations/pt-PT.json +15 -0
  56. package/static/translations/ro-RO.json +15 -0
  57. package/static/translations/ru-RU.json +15 -0
  58. package/static/translations/sv-SE.json +15 -0
  59. package/static/translations/tr-TR.json +15 -0
  60. package/static/translations/tsconfig.json +12 -0
  61. package/static/translations/uk-UA.json +15 -0
  62. package/utils/EditingInterface.js +4 -1
  63. package/utils/EditingUtils.js +3 -1
  64. package/utils/MiscUtils.js +118 -0
  65. package/utils/expr_grammar/grammar.js +104 -22
  66. package/utils/expr_grammar/grammar.ne +2 -0
  67. package/utils/expr_grammar/test.js +21 -4
@@ -16,7 +16,8 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
16
16
  import { CHANGE_LOCATE_STATE, CHANGE_LOCATE_POSITION, LOCATE_ERROR } from '../actions/locate';
17
17
  var defaultState = {
18
18
  state: "DISABLED",
19
- position: null
19
+ position: null,
20
+ mapPos: null
20
21
  };
21
22
  export default function locate() {
22
23
  var state = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : defaultState;
@@ -31,7 +32,8 @@ export default function locate() {
31
32
  case CHANGE_LOCATE_POSITION:
32
33
  {
33
34
  return _objectSpread(_objectSpread({}, state), {}, {
34
- position: action.position
35
+ position: action.position,
36
+ mapPos: action.mapPos
35
37
  });
36
38
  }
37
39
  case LOCATE_ERROR:
@@ -16,6 +16,7 @@ import { CHANGE_REDLINING_STATE, RESET_REDLINING_STATE } from '../actions/redlin
16
16
  var defaultState = {
17
17
  action: null,
18
18
  geomType: null,
19
+ format: null,
19
20
  style: {
20
21
  borderColor: [255, 0, 0, 1],
21
22
  fillColor: [255, 255, 255, 1],
@@ -31,7 +32,7 @@ var defaultState = {
31
32
  drawMultiple: true,
32
33
  freehand: false,
33
34
  measurements: false,
34
- numericInput: false,
35
+ extraAction: null,
35
36
  lenUnit: 'metric',
36
37
  areaUnit: 'metric'
37
38
  };
@@ -24,6 +24,7 @@
24
24
  "MapExport3D": "",
25
25
  "MapFilter": "Филтър на картата",
26
26
  "MapLight3D": "Дата и час",
27
+ "ObjectList": "",
27
28
  "Print": "Отпечатване",
28
29
  "Reports": "Доклади",
29
30
  "Settings": "Настройки",
@@ -192,6 +193,12 @@
192
193
  "takepicture": "Направете снимка",
193
194
  "unsavedchanged": "Има неспасени промени. Искате ли все пак да напуснете страницата?"
194
195
  },
196
+ "featureattributes": {
197
+ "name": "",
198
+ "nofeature": "",
199
+ "value": "",
200
+ "windowtitle": ""
201
+ },
195
202
  "featureform": {
196
203
  "feature": "Функции",
197
204
  "noresults": "Няма резултати",
@@ -244,16 +251,19 @@
244
251
  "identify": {
245
252
  "aggregatedreport": "Обобщен доклад",
246
253
  "clipboard": "Копиране в клипборда",
254
+ "compare": "",
255
+ "comparing": "",
247
256
  "download": "Изтегляне",
248
257
  "export": "Експорт",
249
258
  "featureReport": "Отчет за функциите",
250
- "featurecount": "Брой функции",
259
+ "featurecount": "",
251
260
  "layerall": "Всички слоеве",
252
261
  "link": "Връзка към",
253
262
  "noattributes": "Без атрибути",
254
263
  "noresults": "Няма налична информация за избраната точка",
255
264
  "querying": "Запитване...",
256
265
  "reportfail": "Неуспешно генериране на отчет",
266
+ "results": "",
257
267
  "selectreport": "",
258
268
  "title": "Информация за функциите"
259
269
  },
@@ -343,6 +353,10 @@
343
353
  "PERMISSION_DENIED": "Позиция: разрешението е отказано"
344
354
  }
345
355
  },
356
+ "locationrecorder": {
357
+ "record": "",
358
+ "stop": ""
359
+ },
346
360
  "map": {
347
361
  "loading": "Зареждане...",
348
362
  "resetrotation": "Нулиране на въртенето"
@@ -479,6 +493,7 @@
479
493
  "loading": "Зареждане на формуляра..."
480
494
  },
481
495
  "redlining": {
496
+ "attributes": "",
482
497
  "buffer": "Буфер",
483
498
  "buffercompute": "Изчисляване",
484
499
  "bufferdistance": "Разстояние",
@@ -24,6 +24,7 @@
24
24
  "MapExport3D": "Exportar mapa",
25
25
  "MapFilter": "Filtre de mapa",
26
26
  "MapLight3D": "Llum i ombres",
27
+ "ObjectList": "",
27
28
  "Print": "Imprimir",
28
29
  "Reports": "Informes",
29
30
  "Settings": "Opcions",
@@ -192,6 +193,12 @@
192
193
  "takepicture": "Escull imatge",
193
194
  "unsavedchanged": "Hi ha canvis sense guardar. Vols sortir de la pàgina sense guardar?"
194
195
  },
196
+ "featureattributes": {
197
+ "name": "",
198
+ "nofeature": "",
199
+ "value": "",
200
+ "windowtitle": ""
201
+ },
195
202
  "featureform": {
196
203
  "feature": "Element",
197
204
  "noresults": "Sense resultats",
@@ -244,16 +251,19 @@
244
251
  "identify": {
245
252
  "aggregatedreport": "Informe agregat",
246
253
  "clipboard": "Copiar al porta-retalls",
254
+ "compare": "",
255
+ "comparing": "",
247
256
  "download": "Descarregar",
248
257
  "export": "Exportar",
249
258
  "featureReport": "Informe d'element",
250
- "featurecount": "Nombre d'elements",
259
+ "featurecount": "{0} element(s)",
251
260
  "layerall": "Totes les capes",
252
261
  "link": "Link",
253
262
  "noattributes": "Sense atributs",
254
263
  "noresults": "Sense informació disponible sobre el punt seleccionat",
255
264
  "querying": "Consultant...",
256
265
  "reportfail": "No s'ha pogut generar l'informe",
266
+ "results": "",
257
267
  "selectreport": "Seleccionar informe...",
258
268
  "title": "Informació del element"
259
269
  },
@@ -343,6 +353,10 @@
343
353
  "PERMISSION_DENIED": "Permis denegat"
344
354
  }
345
355
  },
356
+ "locationrecorder": {
357
+ "record": "",
358
+ "stop": ""
359
+ },
346
360
  "map": {
347
361
  "loading": "Carregant...",
348
362
  "resetrotation": "Reiniciar rotació"
@@ -479,6 +493,7 @@
479
493
  "loading": "Carregant formulari..."
480
494
  },
481
495
  "redlining": {
496
+ "attributes": "",
482
497
  "buffer": "Buffer",
483
498
  "buffercompute": "Computar",
484
499
  "bufferdistance": "Distància",
@@ -24,6 +24,7 @@
24
24
  "MapExport3D": "",
25
25
  "MapFilter": "",
26
26
  "MapLight3D": "",
27
+ "ObjectList": "",
27
28
  "Print": "Tisk",
28
29
  "Reports": "",
29
30
  "Settings": "Nastavení",
@@ -192,6 +193,12 @@
192
193
  "takepicture": "",
193
194
  "unsavedchanged": ""
194
195
  },
196
+ "featureattributes": {
197
+ "name": "",
198
+ "nofeature": "",
199
+ "value": "",
200
+ "windowtitle": ""
201
+ },
195
202
  "featureform": {
196
203
  "feature": "Prvek",
197
204
  "noresults": "Žádné výsledky",
@@ -244,6 +251,8 @@
244
251
  "identify": {
245
252
  "aggregatedreport": "",
246
253
  "clipboard": "Zkopírovat do schránky",
254
+ "compare": "",
255
+ "comparing": "",
247
256
  "download": "",
248
257
  "export": "Exportovat",
249
258
  "featureReport": "Report prvku",
@@ -254,6 +263,7 @@
254
263
  "noresults": "V tomto bodu nejsou k dispozici informace o žádném prvku",
255
264
  "querying": "Dotazování...",
256
265
  "reportfail": "",
266
+ "results": "",
257
267
  "selectreport": "",
258
268
  "title": "Informace o prvku"
259
269
  },
@@ -343,6 +353,10 @@
343
353
  "PERMISSION_DENIED": "Poloha: nepovoleno"
344
354
  }
345
355
  },
356
+ "locationrecorder": {
357
+ "record": "",
358
+ "stop": ""
359
+ },
346
360
  "map": {
347
361
  "loading": "Načítání...",
348
362
  "resetrotation": "Obnovit orientaci mapy"
@@ -479,6 +493,7 @@
479
493
  "loading": ""
480
494
  },
481
495
  "redlining": {
496
+ "attributes": "",
482
497
  "buffer": "",
483
498
  "buffercompute": "",
484
499
  "bufferdistance": "",
@@ -24,6 +24,7 @@
24
24
  "MapExport3D": "Karte exportieren",
25
25
  "MapFilter": "Kartenfilter",
26
26
  "MapLight3D": "Beleuchtung und Schatten",
27
+ "ObjectList": "Objektliste",
27
28
  "Print": "Drucken",
28
29
  "Reports": "Berichte",
29
30
  "Settings": "Einstellungen",
@@ -192,6 +193,12 @@
192
193
  "takepicture": "Bild schiessen",
193
194
  "unsavedchanged": "Es gibt nicht gespeicherte Änderungen. Soll die Seite trotzdem verlassen werden?"
194
195
  },
196
+ "featureattributes": {
197
+ "name": "Name",
198
+ "nofeature": "Kein aktives Objekt",
199
+ "value": "Wert",
200
+ "windowtitle": "Objektattribute"
201
+ },
195
202
  "featureform": {
196
203
  "feature": "Objekt",
197
204
  "noresults": "Keine Ergebnisse",
@@ -244,16 +251,19 @@
244
251
  "identify": {
245
252
  "aggregatedreport": "Aggregierter Bericht",
246
253
  "clipboard": "Nach Zwischenablage kopieren",
254
+ "compare": "Selektierte Objekte vergleichen",
255
+ "comparing": "Vergleich von {0} Objekte",
247
256
  "download": "Herunterladen",
248
257
  "export": "Exportieren",
249
258
  "featureReport": "Objektblatt",
250
- "featurecount": "Anzahl Objekte",
259
+ "featurecount": "{0} Objekt(e)",
251
260
  "layerall": "Alle Ebenen",
252
261
  "link": "Link",
253
262
  "noattributes": "Keine Attribute",
254
- "noresults": "Keine Resultate an der ausgewählten Position",
263
+ "noresults": "Keine Treffer an der ausgewählten Position",
255
264
  "querying": "Objekte werden abgefragt...",
256
265
  "reportfail": "Bericht konnt nicht erstellt werden",
266
+ "results": "Ergebnisse",
257
267
  "selectreport": "Bericht auswählen...",
258
268
  "title": "Objektinformationen"
259
269
  },
@@ -343,6 +353,10 @@
343
353
  "PERMISSION_DENIED": "Position: Zugriff verweigert"
344
354
  }
345
355
  },
356
+ "locationrecorder": {
357
+ "record": "Position aufzeichen",
358
+ "stop": "Aufzeichnung stoppen"
359
+ },
346
360
  "map": {
347
361
  "loading": "Karte wird geladen...",
348
362
  "resetrotation": "Drehung zurücksetzen"
@@ -479,6 +493,7 @@
479
493
  "loading": "Formular wird geladen..."
480
494
  },
481
495
  "redlining": {
496
+ "attributes": "Objektattribute",
482
497
  "buffer": "Puffern",
483
498
  "buffercompute": "Berechnen",
484
499
  "bufferdistance": "Distanz",
@@ -24,6 +24,7 @@
24
24
  "MapExport3D": "Karte exportieren",
25
25
  "MapFilter": "Kartenfilter",
26
26
  "MapLight3D": "Beleuchtung und Schatten",
27
+ "ObjectList": "Objektliste",
27
28
  "Print": "Drucken",
28
29
  "Reports": "Berichte",
29
30
  "Settings": "Einstellungen",
@@ -192,6 +193,12 @@
192
193
  "takepicture": "Bild schießen",
193
194
  "unsavedchanged": "Es gibt nicht gespeicherte Änderungen. Soll die Seite trotzdem verlassen werden?"
194
195
  },
196
+ "featureattributes": {
197
+ "name": "Name",
198
+ "nofeature": "Kein aktives Objekt",
199
+ "value": "Wert",
200
+ "windowtitle": "Objektattribute"
201
+ },
195
202
  "featureform": {
196
203
  "feature": "Objekt",
197
204
  "noresults": "Keine Ergebnisse",
@@ -244,16 +251,19 @@
244
251
  "identify": {
245
252
  "aggregatedreport": "Aggregierter Bericht",
246
253
  "clipboard": "Nach Zwischenablage kopieren",
254
+ "compare": "Selektierte Objekte vergleichen",
255
+ "comparing": "Vergleich von {0} Objekte",
247
256
  "download": "Herunterladen",
248
257
  "export": "Exportieren",
249
258
  "featureReport": "Objektblatt",
250
- "featurecount": "Anzahl Objekte",
259
+ "featurecount": "{0} Objekt(e)",
251
260
  "layerall": "Alle Ebenen",
252
261
  "link": "Link",
253
262
  "noattributes": "Keine Attribute",
254
- "noresults": "Keine Resultate an der ausgewählten Position",
263
+ "noresults": "Keine Treffer an der ausgewählten Position",
255
264
  "querying": "Objekte werden abgefragt...",
256
265
  "reportfail": "Bericht konnt nicht erstellt werden",
266
+ "results": "Ergebnisse",
257
267
  "selectreport": "Bericht auswählen...",
258
268
  "title": "Objektinformationen"
259
269
  },
@@ -343,6 +353,10 @@
343
353
  "PERMISSION_DENIED": "Position: Zugriff verweigert"
344
354
  }
345
355
  },
356
+ "locationrecorder": {
357
+ "record": "Position aufzeichen",
358
+ "stop": "Aufzeichnung stoppen"
359
+ },
346
360
  "map": {
347
361
  "loading": "Karte wird geladen...",
348
362
  "resetrotation": "Drehung zurücksetzen"
@@ -434,7 +448,7 @@
434
448
  "angle": "Winkel",
435
449
  "featureunsupported": "Numerische Eingabe nicht verfügbar für dieses Objekt",
436
450
  "height": "Höhe",
437
- "nofeature": "Kein Objekt aktiv",
451
+ "nofeature": "Kein aktives Objekt",
438
452
  "side": "Seite",
439
453
  "width": "Breite",
440
454
  "windowtitle": "Numerische Eingabe"
@@ -479,6 +493,7 @@
479
493
  "loading": "Formular wird geladen..."
480
494
  },
481
495
  "redlining": {
496
+ "attributes": "Objektattribute",
482
497
  "buffer": "Puffern",
483
498
  "buffercompute": "Berechnen",
484
499
  "bufferdistance": "Distanz",
@@ -24,6 +24,7 @@
24
24
  "MapExport3D": "Export Map",
25
25
  "MapFilter": "Map Filter",
26
26
  "MapLight3D": "Light and Shadows",
27
+ "ObjectList": "Object list",
27
28
  "Print": "Print",
28
29
  "Reports": "Reports",
29
30
  "Settings": "Settings",
@@ -192,6 +193,12 @@
192
193
  "takepicture": "Take picture",
193
194
  "unsavedchanged": "There are unsaved changes. Do you want to leave the page anyway?"
194
195
  },
196
+ "featureattributes": {
197
+ "name": "Name",
198
+ "nofeature": "No active feature",
199
+ "value": "Value",
200
+ "windowtitle": "Feature attributes"
201
+ },
195
202
  "featureform": {
196
203
  "feature": "Feature",
197
204
  "noresults": "No results",
@@ -244,16 +251,19 @@
244
251
  "identify": {
245
252
  "aggregatedreport": "Aggregated report",
246
253
  "clipboard": "Copy to clipboard",
254
+ "compare": "Compare selected objects",
255
+ "comparing": "Comparing {0} features",
247
256
  "download": "Download",
248
257
  "export": "Export",
249
258
  "featureReport": "Feature report",
250
- "featurecount": "Feature count",
259
+ "featurecount": "{0} feature(s)",
251
260
  "layerall": "All layers",
252
261
  "link": "Link",
253
262
  "noattributes": "No attributes",
254
263
  "noresults": "No information available for the selected point",
255
264
  "querying": "Querying...",
256
265
  "reportfail": "Failed to generate report",
266
+ "results": "Results",
257
267
  "selectreport": "Select report..",
258
268
  "title": "Feature Info"
259
269
  },
@@ -343,6 +353,10 @@
343
353
  "PERMISSION_DENIED": "Position: permission denied"
344
354
  }
345
355
  },
356
+ "locationrecorder": {
357
+ "record": "Record location",
358
+ "stop": "Stop recording"
359
+ },
346
360
  "map": {
347
361
  "loading": "Loading...",
348
362
  "resetrotation": "Reset rotation"
@@ -479,6 +493,7 @@
479
493
  "loading": "Loading form..."
480
494
  },
481
495
  "redlining": {
496
+ "attributes": "Feature attributes",
482
497
  "buffer": "Buffer",
483
498
  "buffercompute": "Compute",
484
499
  "bufferdistance": "Distance",
@@ -24,6 +24,7 @@
24
24
  "MapExport3D": "Exportar mapa",
25
25
  "MapFilter": "Filtro de mapa",
26
26
  "MapLight3D": "Luz y sombras",
27
+ "ObjectList": "",
27
28
  "Print": "Imprimir",
28
29
  "Reports": "Informes",
29
30
  "Settings": "Opciones",
@@ -192,6 +193,12 @@
192
193
  "takepicture": "Tomar fotografía",
193
194
  "unsavedchanged": "Hay cambios sin guardar. Quieres salir de la página sin guardar?"
194
195
  },
196
+ "featureattributes": {
197
+ "name": "",
198
+ "nofeature": "",
199
+ "value": "",
200
+ "windowtitle": ""
201
+ },
195
202
  "featureform": {
196
203
  "feature": "Elemento",
197
204
  "noresults": "Sin resultados",
@@ -244,6 +251,8 @@
244
251
  "identify": {
245
252
  "aggregatedreport": "Informe agregado",
246
253
  "clipboard": "Copiar al portapapeles",
254
+ "compare": "",
255
+ "comparing": "",
247
256
  "download": "Descargar",
248
257
  "export": "Exportar",
249
258
  "featureReport": "Informe del elemento",
@@ -254,6 +263,7 @@
254
263
  "noresults": "Sin información disponible sobre el punto seleccionado",
255
264
  "querying": "Consultando...",
256
265
  "reportfail": "No se pudo generar el informe",
266
+ "results": "",
257
267
  "selectreport": "Seleccionar informe...",
258
268
  "title": "Información del elemento"
259
269
  },
@@ -343,6 +353,10 @@
343
353
  "PERMISSION_DENIED": "Posición: permiso denegado"
344
354
  }
345
355
  },
356
+ "locationrecorder": {
357
+ "record": "",
358
+ "stop": ""
359
+ },
346
360
  "map": {
347
361
  "loading": "Cargando...",
348
362
  "resetrotation": "Reiniciar rotación"
@@ -479,6 +493,7 @@
479
493
  "loading": "Cargando formulario..."
480
494
  },
481
495
  "redlining": {
496
+ "attributes": "",
482
497
  "buffer": "Bufer",
483
498
  "buffercompute": "Computar",
484
499
  "bufferdistance": "Distancia",
@@ -24,6 +24,7 @@
24
24
  "MapExport3D": "",
25
25
  "MapFilter": "",
26
26
  "MapLight3D": "",
27
+ "ObjectList": "",
27
28
  "Print": "Tulosta",
28
29
  "Reports": "",
29
30
  "Settings": "",
@@ -192,6 +193,12 @@
192
193
  "takepicture": "Take picture",
193
194
  "unsavedchanged": ""
194
195
  },
196
+ "featureattributes": {
197
+ "name": "",
198
+ "nofeature": "",
199
+ "value": "",
200
+ "windowtitle": ""
201
+ },
195
202
  "featureform": {
196
203
  "feature": "",
197
204
  "noresults": "",
@@ -244,6 +251,8 @@
244
251
  "identify": {
245
252
  "aggregatedreport": "",
246
253
  "clipboard": "",
254
+ "compare": "",
255
+ "comparing": "",
247
256
  "download": "",
248
257
  "export": "Vienti",
249
258
  "featureReport": "Ominaisuustietoraportti",
@@ -254,6 +263,7 @@
254
263
  "noresults": "Valitulla pisteellä ei ole informaatiota",
255
264
  "querying": "Kysely käynnissä...",
256
265
  "reportfail": "",
266
+ "results": "",
257
267
  "selectreport": "",
258
268
  "title": "Ominaisuustiedot"
259
269
  },
@@ -343,6 +353,10 @@
343
353
  "PERMISSION_DENIED": "Paikka: pääsy estetty"
344
354
  }
345
355
  },
356
+ "locationrecorder": {
357
+ "record": "",
358
+ "stop": ""
359
+ },
346
360
  "map": {
347
361
  "loading": "Lataa...",
348
362
  "resetrotation": ""
@@ -479,6 +493,7 @@
479
493
  "loading": ""
480
494
  },
481
495
  "redlining": {
496
+ "attributes": "",
482
497
  "buffer": "Bufferi",
483
498
  "buffercompute": "Laske",
484
499
  "bufferdistance": "Etäisyys",
@@ -24,6 +24,7 @@
24
24
  "MapExport3D": "Exporter la carte",
25
25
  "MapFilter": "Filtrer la carte",
26
26
  "MapLight3D": "Illumination et ombres",
27
+ "ObjectList": "Liste d'objets",
27
28
  "Print": "Imprimer",
28
29
  "Reports": "Rapports",
29
30
  "Settings": "Paramètres",
@@ -192,6 +193,12 @@
192
193
  "takepicture": "Ajouter une photo",
193
194
  "unsavedchanged": "Il y a des modifications non enregistrées. Faut-il quand même quitter la page?"
194
195
  },
196
+ "featureattributes": {
197
+ "name": "Nom",
198
+ "nofeature": "Aucune objet active",
199
+ "value": "Valeur",
200
+ "windowtitle": "Attributs de l'objet"
201
+ },
195
202
  "featureform": {
196
203
  "feature": "Objet",
197
204
  "noresults": "Pas de résultats",
@@ -244,16 +251,19 @@
244
251
  "identify": {
245
252
  "aggregatedreport": "Rapport agrégé",
246
253
  "clipboard": "Copier dans le presse-papiers",
254
+ "compare": "Comparer les objets sélectionnés",
255
+ "comparing": "Comparison de {0} objets",
247
256
  "download": "Télécharger",
248
257
  "export": "Exporter",
249
258
  "featureReport": "Données de l'objet",
250
- "featurecount": "Éléments sélectionnés",
259
+ "featurecount": "{0} élément(s)",
251
260
  "layerall": "Toutes les couches",
252
261
  "link": "Lien",
253
262
  "noattributes": "Pas d'attribut",
254
263
  "noresults": "Pas de résultats pour la position sélectionnée",
255
264
  "querying": "Identification en cours...",
256
265
  "reportfail": "Le rapport n'a pas été généré",
266
+ "results": "Résultats",
257
267
  "selectreport": "Selectionner rapport...",
258
268
  "title": "Informations sur l'objet"
259
269
  },
@@ -343,6 +353,10 @@
343
353
  "PERMISSION_DENIED": "Position: accès refusé"
344
354
  }
345
355
  },
356
+ "locationrecorder": {
357
+ "record": "Enregistrer la position",
358
+ "stop": "Arrêter l'enregistrement"
359
+ },
346
360
  "map": {
347
361
  "loading": "Chargement de la carte...",
348
362
  "resetrotation": "Réinitialiser la rotation"
@@ -479,6 +493,7 @@
479
493
  "loading": "Chargement du formulaire..."
480
494
  },
481
495
  "redlining": {
496
+ "attributes": "Attributs de l'objet",
482
497
  "buffer": "Tampon",
483
498
  "buffercompute": "Calculer",
484
499
  "bufferdistance": "Distance",
@@ -24,6 +24,7 @@
24
24
  "MapExport3D": "",
25
25
  "MapFilter": "",
26
26
  "MapLight3D": "",
27
+ "ObjectList": "",
27
28
  "Print": "Nyomtatás",
28
29
  "Reports": "",
29
30
  "Settings": "",
@@ -192,6 +193,12 @@
192
193
  "takepicture": "",
193
194
  "unsavedchanged": ""
194
195
  },
196
+ "featureattributes": {
197
+ "name": "",
198
+ "nofeature": "",
199
+ "value": "",
200
+ "windowtitle": ""
201
+ },
195
202
  "featureform": {
196
203
  "feature": "",
197
204
  "noresults": "",
@@ -244,6 +251,8 @@
244
251
  "identify": {
245
252
  "aggregatedreport": "",
246
253
  "clipboard": "",
254
+ "compare": "",
255
+ "comparing": "",
247
256
  "download": "",
248
257
  "export": "Exportálás",
249
258
  "featureReport": "Lekérdezés eredménye",
@@ -254,6 +263,7 @@
254
263
  "noresults": "Nincs információ a kiválasztott pontról",
255
264
  "querying": "Lekérdezés...",
256
265
  "reportfail": "",
266
+ "results": "",
257
267
  "selectreport": "",
258
268
  "title": "Lekérdezés információ"
259
269
  },
@@ -343,6 +353,10 @@
343
353
  "PERMISSION_DENIED": "Hozzáférés megtagadva"
344
354
  }
345
355
  },
356
+ "locationrecorder": {
357
+ "record": "",
358
+ "stop": ""
359
+ },
346
360
  "map": {
347
361
  "loading": "Betöltés...",
348
362
  "resetrotation": ""
@@ -479,6 +493,7 @@
479
493
  "loading": ""
480
494
  },
481
495
  "redlining": {
496
+ "attributes": "",
482
497
  "buffer": "",
483
498
  "buffercompute": "",
484
499
  "bufferdistance": "",