qwc2 2025.10.16 → 2025.10.25

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 (69) hide show
  1. package/actions/locate.js +3 -2
  2. package/components/AttributeTableWidget.js +24 -15
  3. package/components/FeatureAttributesWindow.js +178 -0
  4. package/components/IdentifyViewer.js +80 -39
  5. package/components/LocationRecorder.js +138 -0
  6. package/components/NumericInputWindow.js +30 -22
  7. package/components/PickFeature.js +87 -26
  8. package/components/PluginsContainer.js +16 -3
  9. package/components/map/OlLayer.js +2 -1
  10. package/components/map/layers/MVTLayer.js +3 -0
  11. package/components/map/layers/VectorLayer.js +66 -65
  12. package/components/map3d/HeightProfile3D.js +2 -0
  13. package/components/map3d/drawtool/EditTool3D.js +1 -1
  14. package/components/style/App.css +14 -0
  15. package/components/style/AttributeTableWidget.css +1 -1
  16. package/components/style/FeatureAttributesWindow.css +16 -0
  17. package/components/style/IdentifyViewer.css +5 -0
  18. package/components/style/LocationRecorder.css +10 -0
  19. package/components/style/NumericInputWindow.css +22 -0
  20. package/components/style/PluginsContainer.css +16 -0
  21. package/components/widgets/LayerCatalogWidget.js +40 -16
  22. package/components/widgets/NavBar.js +10 -3
  23. package/components/widgets/TextInput.js +4 -2
  24. package/icons/circle_full.svg +75 -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 +5 -1
  29. package/plugins/Identify.js +7 -3
  30. package/plugins/ObjectList.js +116 -0
  31. package/plugins/Redlining.js +21 -56
  32. package/plugins/map/EditingSupport.js +22 -1
  33. package/plugins/map/LocateSupport.js +8 -1
  34. package/plugins/map/RedliningSupport.js +374 -224
  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 +7 -4
  39. package/scripts/updateTranslations.js +1 -1
  40. package/static/translations/bg-BG.json +15 -2
  41. package/static/translations/ca-ES.json +15 -2
  42. package/static/translations/cs-CZ.json +15 -2
  43. package/static/translations/de-CH.json +15 -2
  44. package/static/translations/de-DE.json +15 -2
  45. package/static/translations/en-US.json +15 -2
  46. package/static/translations/es-ES.json +15 -2
  47. package/static/translations/fi-FI.json +15 -2
  48. package/static/translations/fr-FR.json +15 -2
  49. package/static/translations/hu-HU.json +15 -2
  50. package/static/translations/it-IT.json +15 -2
  51. package/static/translations/ja-JP.json +15 -2
  52. package/static/translations/nl-NL.json +15 -2
  53. package/static/translations/no-NO.json +15 -2
  54. package/static/translations/pl-PL.json +15 -2
  55. package/static/translations/pt-BR.json +15 -2
  56. package/static/translations/pt-PT.json +15 -2
  57. package/static/translations/ro-RO.json +15 -2
  58. package/static/translations/ru-RU.json +15 -2
  59. package/static/translations/sv-SE.json +15 -2
  60. package/static/translations/tr-TR.json +15 -2
  61. package/static/translations/tsconfig.json +12 -2
  62. package/static/translations/uk-UA.json +15 -2
  63. package/utils/EditingInterface.js +18 -4
  64. package/utils/EditingUtils.js +3 -1
  65. package/utils/LayerUtils.js +16 -6
  66. package/utils/MiscUtils.js +65 -0
  67. package/utils/expr_grammar/grammar.js +104 -22
  68. package/utils/expr_grammar/grammar.ne +2 -0
  69. package/utils/expr_grammar/test.js +21 -4
@@ -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": "",
@@ -136,7 +137,6 @@
136
137
  "draw3d": {
137
138
  "clone": "",
138
139
  "cone": "",
139
- "ctrlhint": "",
140
140
  "cuboid": "",
141
141
  "cylinder": "",
142
142
  "delete": "",
@@ -192,6 +192,12 @@
192
192
  "takepicture": "Take picture",
193
193
  "unsavedchanged": ""
194
194
  },
195
+ "featureattributes": {
196
+ "name": "",
197
+ "nofeatureormultiple": "",
198
+ "value": "",
199
+ "windowtitle": ""
200
+ },
195
201
  "featureform": {
196
202
  "feature": "",
197
203
  "noresults": "",
@@ -244,6 +250,7 @@
244
250
  "identify": {
245
251
  "aggregatedreport": "",
246
252
  "clipboard": "",
253
+ "compare": "",
247
254
  "comparing": "",
248
255
  "download": "",
249
256
  "export": "Vienti",
@@ -345,6 +352,10 @@
345
352
  "PERMISSION_DENIED": "Paikka: pääsy estetty"
346
353
  }
347
354
  },
355
+ "locationrecorder": {
356
+ "record": "",
357
+ "stop": ""
358
+ },
348
359
  "map": {
349
360
  "loading": "Lataa...",
350
361
  "resetrotation": ""
@@ -436,7 +447,7 @@
436
447
  "angle": "",
437
448
  "featureunsupported": "",
438
449
  "height": "",
439
- "nofeature": "",
450
+ "nofeatureormultiple": "",
440
451
  "side": "",
441
452
  "width": "",
442
453
  "windowtitle": ""
@@ -481,6 +492,7 @@
481
492
  "loading": ""
482
493
  },
483
494
  "redlining": {
495
+ "attributes": "",
484
496
  "buffer": "Bufferi",
485
497
  "buffercompute": "Laske",
486
498
  "bufferdistance": "Etäisyys",
@@ -488,6 +500,7 @@
488
500
  "bufferlayername": "Bufferi",
489
501
  "bufferselectfeature": "Valitse bufferin ominaisuus...",
490
502
  "circle": "Ympyrä",
503
+ "ctrlhint": "",
491
504
  "delete": "Poista",
492
505
  "draw": "Piirrä",
493
506
  "edit": "Editoi",
@@ -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",
@@ -136,7 +137,6 @@
136
137
  "draw3d": {
137
138
  "clone": "Copier",
138
139
  "cone": "Cône",
139
- "ctrlhint": "Ctrl pour sélection multiple...",
140
140
  "cuboid": "Cuboïde",
141
141
  "cylinder": "Cylindre",
142
142
  "delete": "Effacer",
@@ -192,6 +192,12 @@
192
192
  "takepicture": "Ajouter une photo",
193
193
  "unsavedchanged": "Il y a des modifications non enregistrées. Faut-il quand même quitter la page?"
194
194
  },
195
+ "featureattributes": {
196
+ "name": "Nom",
197
+ "nofeatureormultiple": "Aucune o plus objets actives",
198
+ "value": "Valeur",
199
+ "windowtitle": "Attributs de l'objet"
200
+ },
195
201
  "featureform": {
196
202
  "feature": "Objet",
197
203
  "noresults": "Pas de résultats",
@@ -244,6 +250,7 @@
244
250
  "identify": {
245
251
  "aggregatedreport": "Rapport agrégé",
246
252
  "clipboard": "Copier dans le presse-papiers",
253
+ "compare": "Comparer les objets sélectionnés",
247
254
  "comparing": "Comparison de {0} objets",
248
255
  "download": "Télécharger",
249
256
  "export": "Exporter",
@@ -345,6 +352,10 @@
345
352
  "PERMISSION_DENIED": "Position: accès refusé"
346
353
  }
347
354
  },
355
+ "locationrecorder": {
356
+ "record": "Enregistrer la position",
357
+ "stop": "Arrêter l'enregistrement"
358
+ },
348
359
  "map": {
349
360
  "loading": "Chargement de la carte...",
350
361
  "resetrotation": "Réinitialiser la rotation"
@@ -436,7 +447,7 @@
436
447
  "angle": "Angle",
437
448
  "featureunsupported": "Entrée numérique non disponible pour cette géométrie",
438
449
  "height": "Hauteur",
439
- "nofeature": "Aucune objet active",
450
+ "nofeatureormultiple": "",
440
451
  "side": "Côté",
441
452
  "width": "Largeur",
442
453
  "windowtitle": "Entrée numérique"
@@ -481,6 +492,7 @@
481
492
  "loading": "Chargement du formulaire..."
482
493
  },
483
494
  "redlining": {
495
+ "attributes": "Attributs de l'objet",
484
496
  "buffer": "Tampon",
485
497
  "buffercompute": "Calculer",
486
498
  "bufferdistance": "Distance",
@@ -488,6 +500,7 @@
488
500
  "bufferlayername": "Sortie",
489
501
  "bufferselectfeature": "Choisissez une entité pour le tampon...",
490
502
  "circle": "Cercle",
503
+ "ctrlhint": "Ctrl pour sélection multiple...",
491
504
  "delete": "Effacer",
492
505
  "draw": "Dessiner",
493
506
  "edit": "Editer",
@@ -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": "",
@@ -136,7 +137,6 @@
136
137
  "draw3d": {
137
138
  "clone": "",
138
139
  "cone": "",
139
- "ctrlhint": "",
140
140
  "cuboid": "",
141
141
  "cylinder": "",
142
142
  "delete": "",
@@ -192,6 +192,12 @@
192
192
  "takepicture": "",
193
193
  "unsavedchanged": ""
194
194
  },
195
+ "featureattributes": {
196
+ "name": "",
197
+ "nofeatureormultiple": "",
198
+ "value": "",
199
+ "windowtitle": ""
200
+ },
195
201
  "featureform": {
196
202
  "feature": "",
197
203
  "noresults": "",
@@ -244,6 +250,7 @@
244
250
  "identify": {
245
251
  "aggregatedreport": "",
246
252
  "clipboard": "",
253
+ "compare": "",
247
254
  "comparing": "",
248
255
  "download": "",
249
256
  "export": "Exportálás",
@@ -345,6 +352,10 @@
345
352
  "PERMISSION_DENIED": "Hozzáférés megtagadva"
346
353
  }
347
354
  },
355
+ "locationrecorder": {
356
+ "record": "",
357
+ "stop": ""
358
+ },
348
359
  "map": {
349
360
  "loading": "Betöltés...",
350
361
  "resetrotation": ""
@@ -436,7 +447,7 @@
436
447
  "angle": "",
437
448
  "featureunsupported": "",
438
449
  "height": "",
439
- "nofeature": "",
450
+ "nofeatureormultiple": "",
440
451
  "side": "",
441
452
  "width": "",
442
453
  "windowtitle": ""
@@ -481,6 +492,7 @@
481
492
  "loading": ""
482
493
  },
483
494
  "redlining": {
495
+ "attributes": "",
484
496
  "buffer": "",
485
497
  "buffercompute": "",
486
498
  "bufferdistance": "",
@@ -488,6 +500,7 @@
488
500
  "bufferlayername": "",
489
501
  "bufferselectfeature": "",
490
502
  "circle": "",
503
+ "ctrlhint": "",
491
504
  "delete": "",
492
505
  "draw": "",
493
506
  "edit": "",
@@ -24,6 +24,7 @@
24
24
  "MapExport3D": "Esporta mappa",
25
25
  "MapFilter": "Filta mappa",
26
26
  "MapLight3D": "Illuminazione e ombre",
27
+ "ObjectList": "Lista oggetti",
27
28
  "Print": "Stampa",
28
29
  "Reports": "Rapporti",
29
30
  "Settings": "Impostazioni",
@@ -136,7 +137,6 @@
136
137
  "draw3d": {
137
138
  "clone": "Copia",
138
139
  "cone": "Cono",
139
- "ctrlhint": "Ctrl per selezione multipla...",
140
140
  "cuboid": "Cuboide",
141
141
  "cylinder": "Cilindro",
142
142
  "delete": "Elimina",
@@ -192,6 +192,12 @@
192
192
  "takepicture": "Foto",
193
193
  "unsavedchanged": "Vi sono cambiamenti non salvati. Volete comunque lasciare la pagina?"
194
194
  },
195
+ "featureattributes": {
196
+ "name": "Nome",
197
+ "nofeatureormultiple": "Nessun o più oggetti attivi",
198
+ "value": "Valore",
199
+ "windowtitle": "Attributi oggetto"
200
+ },
195
201
  "featureform": {
196
202
  "feature": "Oggetto",
197
203
  "noresults": "Nessun risultato",
@@ -244,6 +250,7 @@
244
250
  "identify": {
245
251
  "aggregatedreport": "Rapporto aggregato",
246
252
  "clipboard": "Copia negli appunti",
253
+ "compare": "Confronta gli oggetti selezionati",
247
254
  "comparing": "Confronto di {0} oggetti",
248
255
  "download": "Scarica",
249
256
  "export": "Esporta",
@@ -345,6 +352,10 @@
345
352
  "PERMISSION_DENIED": "Posizione: permesso negato"
346
353
  }
347
354
  },
355
+ "locationrecorder": {
356
+ "record": "Registra posizione",
357
+ "stop": "Termina registrazione"
358
+ },
348
359
  "map": {
349
360
  "loading": "In caricamento...",
350
361
  "resetrotation": "Resetta orientamento"
@@ -436,7 +447,7 @@
436
447
  "angle": "Angolo",
437
448
  "featureunsupported": "Formulario numerico non disponibile per questa geometria",
438
449
  "height": "Altezza",
439
- "nofeature": "Nessun oggetto attivo",
450
+ "nofeatureormultiple": "Nessun o più oggetti attivi",
440
451
  "side": "Lato",
441
452
  "width": "Larghezza",
442
453
  "windowtitle": "Formulario numerico"
@@ -481,6 +492,7 @@
481
492
  "loading": "Caricando formulario..."
482
493
  },
483
494
  "redlining": {
495
+ "attributes": "Attributi oggetto",
484
496
  "buffer": "Buffer",
485
497
  "buffercompute": "Calcola",
486
498
  "bufferdistance": "Distanza",
@@ -488,6 +500,7 @@
488
500
  "bufferlayername": "Buffer",
489
501
  "bufferselectfeature": "Seleziona un oggetto...",
490
502
  "circle": "Cerchio",
503
+ "ctrlhint": "Ctrl per selezione multipla...",
491
504
  "delete": "Elimina",
492
505
  "draw": "Disegna",
493
506
  "edit": "Modifica",
@@ -24,6 +24,7 @@
24
24
  "MapExport3D": "地図をエクスポート",
25
25
  "MapFilter": "マップ・フィルタ",
26
26
  "MapLight3D": "光と影",
27
+ "ObjectList": "",
27
28
  "Print": "印刷",
28
29
  "Reports": "レポート",
29
30
  "Settings": "設定",
@@ -136,7 +137,6 @@
136
137
  "draw3d": {
137
138
  "clone": "クローン",
138
139
  "cone": "円錐",
139
- "ctrlhint": "Ctrl を使うと複数選択できます",
140
140
  "cuboid": "直方体",
141
141
  "cylinder": "円柱",
142
142
  "delete": "削除",
@@ -192,6 +192,12 @@
192
192
  "takepicture": "撮影する",
193
193
  "unsavedchanged": "保存されていない変更があります。それでもこのページを離れますか?"
194
194
  },
195
+ "featureattributes": {
196
+ "name": "",
197
+ "nofeatureormultiple": "",
198
+ "value": "",
199
+ "windowtitle": ""
200
+ },
195
201
  "featureform": {
196
202
  "feature": "地物",
197
203
  "noresults": "検索結果無し",
@@ -244,6 +250,7 @@
244
250
  "identify": {
245
251
  "aggregatedreport": "集合レポート",
246
252
  "clipboard": "クリップボードにコピー",
253
+ "compare": "",
247
254
  "comparing": "",
248
255
  "download": "ダウンロード",
249
256
  "export": "エクスポート",
@@ -345,6 +352,10 @@
345
352
  "PERMISSION_DENIED": "位置情報: 許可無し"
346
353
  }
347
354
  },
355
+ "locationrecorder": {
356
+ "record": "",
357
+ "stop": ""
358
+ },
348
359
  "map": {
349
360
  "loading": "ロード中...",
350
361
  "resetrotation": "回転をリセット"
@@ -436,7 +447,7 @@
436
447
  "angle": "角度",
437
448
  "featureunsupported": "このジオメトリに対しては数値入力は使用できません",
438
449
  "height": "高さ",
439
- "nofeature": "アクティブな地物がありません",
450
+ "nofeatureormultiple": "",
440
451
  "side": "サイド",
441
452
  "width": "幅",
442
453
  "windowtitle": "数値入力"
@@ -481,6 +492,7 @@
481
492
  "loading": "フォームをロード中..."
482
493
  },
483
494
  "redlining": {
495
+ "attributes": "",
484
496
  "buffer": "バッファ",
485
497
  "buffercompute": "計算",
486
498
  "bufferdistance": "距離",
@@ -488,6 +500,7 @@
488
500
  "bufferlayername": "バッファ",
489
501
  "bufferselectfeature": "バッファを適用する地物を選択...",
490
502
  "circle": "円",
503
+ "ctrlhint": "",
491
504
  "delete": "削除",
492
505
  "draw": "作図",
493
506
  "edit": "編集",
@@ -24,6 +24,7 @@
24
24
  "MapExport3D": "",
25
25
  "MapFilter": "Kaartfilter",
26
26
  "MapLight3D": "",
27
+ "ObjectList": "",
27
28
  "Print": "Print",
28
29
  "Reports": "",
29
30
  "Settings": "Instellingen",
@@ -136,7 +137,6 @@
136
137
  "draw3d": {
137
138
  "clone": "",
138
139
  "cone": "",
139
- "ctrlhint": "",
140
140
  "cuboid": "",
141
141
  "cylinder": "",
142
142
  "delete": "",
@@ -192,6 +192,12 @@
192
192
  "takepicture": "Foto maken",
193
193
  "unsavedchanged": "Er zijn niet-opgeslagen wijzigingen. Wil je de pagina toch verlaten?"
194
194
  },
195
+ "featureattributes": {
196
+ "name": "",
197
+ "nofeatureormultiple": "",
198
+ "value": "",
199
+ "windowtitle": ""
200
+ },
195
201
  "featureform": {
196
202
  "feature": "Object",
197
203
  "noresults": "Geen resultaten",
@@ -244,6 +250,7 @@
244
250
  "identify": {
245
251
  "aggregatedreport": "",
246
252
  "clipboard": "Kopiëren naar klembord",
253
+ "compare": "",
247
254
  "comparing": "",
248
255
  "download": "",
249
256
  "export": "Exporteren",
@@ -345,6 +352,10 @@
345
352
  "PERMISSION_DENIED": "Positie: toestemming geweigerd"
346
353
  }
347
354
  },
355
+ "locationrecorder": {
356
+ "record": "",
357
+ "stop": ""
358
+ },
348
359
  "map": {
349
360
  "loading": "Laden...",
350
361
  "resetrotation": "Rotatie resetten"
@@ -436,7 +447,7 @@
436
447
  "angle": "Hoek",
437
448
  "featureunsupported": "Numerieke invoer niet beschikbaar voor deze geometrie",
438
449
  "height": "Hoogte",
439
- "nofeature": "Geen actieve object",
450
+ "nofeatureormultiple": "",
440
451
  "side": "Zijde",
441
452
  "width": "Breedte",
442
453
  "windowtitle": "Numerieke invoer"
@@ -481,6 +492,7 @@
481
492
  "loading": "Formulier laden..."
482
493
  },
483
494
  "redlining": {
495
+ "attributes": "",
484
496
  "buffer": "Buffer",
485
497
  "buffercompute": "Berekenen",
486
498
  "bufferdistance": "Afstand",
@@ -488,6 +500,7 @@
488
500
  "bufferlayername": "Laag",
489
501
  "bufferselectfeature": "Selecteer object om te bufferen...",
490
502
  "circle": "Cirkel",
503
+ "ctrlhint": "",
491
504
  "delete": "Verwijderen",
492
505
  "draw": "Tekenen",
493
506
  "edit": "Bewerken",
@@ -24,6 +24,7 @@
24
24
  "MapExport3D": "",
25
25
  "MapFilter": "",
26
26
  "MapLight3D": "",
27
+ "ObjectList": "",
27
28
  "Print": "Skriv ut",
28
29
  "Reports": "",
29
30
  "Settings": "",
@@ -136,7 +137,6 @@
136
137
  "draw3d": {
137
138
  "clone": "",
138
139
  "cone": "",
139
- "ctrlhint": "",
140
140
  "cuboid": "",
141
141
  "cylinder": "",
142
142
  "delete": "",
@@ -192,6 +192,12 @@
192
192
  "takepicture": "",
193
193
  "unsavedchanged": ""
194
194
  },
195
+ "featureattributes": {
196
+ "name": "",
197
+ "nofeatureormultiple": "",
198
+ "value": "",
199
+ "windowtitle": ""
200
+ },
195
201
  "featureform": {
196
202
  "feature": "",
197
203
  "noresults": "",
@@ -244,6 +250,7 @@
244
250
  "identify": {
245
251
  "aggregatedreport": "",
246
252
  "clipboard": "",
253
+ "compare": "",
247
254
  "comparing": "",
248
255
  "download": "",
249
256
  "export": "Eksporter",
@@ -345,6 +352,10 @@
345
352
  "PERMISSION_DENIED": "Posisjon: ikke tillatt"
346
353
  }
347
354
  },
355
+ "locationrecorder": {
356
+ "record": "",
357
+ "stop": ""
358
+ },
348
359
  "map": {
349
360
  "loading": "Laster inn...",
350
361
  "resetrotation": ""
@@ -436,7 +447,7 @@
436
447
  "angle": "",
437
448
  "featureunsupported": "",
438
449
  "height": "",
439
- "nofeature": "",
450
+ "nofeatureormultiple": "",
440
451
  "side": "",
441
452
  "width": "",
442
453
  "windowtitle": ""
@@ -481,6 +492,7 @@
481
492
  "loading": ""
482
493
  },
483
494
  "redlining": {
495
+ "attributes": "",
484
496
  "buffer": "Buffer",
485
497
  "buffercompute": "Beregner",
486
498
  "bufferdistance": "Avstand",
@@ -488,6 +500,7 @@
488
500
  "bufferlayername": "Buffer",
489
501
  "bufferselectfeature": "Velg et objekt fra buffer",
490
502
  "circle": "",
503
+ "ctrlhint": "",
491
504
  "delete": "Slett",
492
505
  "draw": "Tegn",
493
506
  "edit": "Rediger",
@@ -24,6 +24,7 @@
24
24
  "MapExport3D": "",
25
25
  "MapFilter": "",
26
26
  "MapLight3D": "",
27
+ "ObjectList": "",
27
28
  "Print": "Drukuj",
28
29
  "Reports": "",
29
30
  "Settings": "",
@@ -136,7 +137,6 @@
136
137
  "draw3d": {
137
138
  "clone": "",
138
139
  "cone": "",
139
- "ctrlhint": "",
140
140
  "cuboid": "",
141
141
  "cylinder": "",
142
142
  "delete": "",
@@ -192,6 +192,12 @@
192
192
  "takepicture": "",
193
193
  "unsavedchanged": ""
194
194
  },
195
+ "featureattributes": {
196
+ "name": "",
197
+ "nofeatureormultiple": "",
198
+ "value": "",
199
+ "windowtitle": ""
200
+ },
195
201
  "featureform": {
196
202
  "feature": "",
197
203
  "noresults": "",
@@ -244,6 +250,7 @@
244
250
  "identify": {
245
251
  "aggregatedreport": "",
246
252
  "clipboard": "",
253
+ "compare": "",
247
254
  "comparing": "",
248
255
  "download": "",
249
256
  "export": "Eksport",
@@ -345,6 +352,10 @@
345
352
  "PERMISSION_DENIED": "Pozycja: dostęp zabroniony"
346
353
  }
347
354
  },
355
+ "locationrecorder": {
356
+ "record": "",
357
+ "stop": ""
358
+ },
348
359
  "map": {
349
360
  "loading": "Ładowanie...",
350
361
  "resetrotation": ""
@@ -436,7 +447,7 @@
436
447
  "angle": "",
437
448
  "featureunsupported": "",
438
449
  "height": "",
439
- "nofeature": "",
450
+ "nofeatureormultiple": "",
440
451
  "side": "",
441
452
  "width": "",
442
453
  "windowtitle": ""
@@ -481,6 +492,7 @@
481
492
  "loading": ""
482
493
  },
483
494
  "redlining": {
495
+ "attributes": "",
484
496
  "buffer": "Buforuj",
485
497
  "buffercompute": "Oblicz",
486
498
  "bufferdistance": "Odległość",
@@ -488,6 +500,7 @@
488
500
  "bufferlayername": "Buforuj",
489
501
  "bufferselectfeature": "Wybierz element do buforowania",
490
502
  "circle": "",
503
+ "ctrlhint": "",
491
504
  "delete": "Usuń",
492
505
  "draw": "Rysuj",
493
506
  "edit": "Edytuj",
@@ -24,6 +24,7 @@
24
24
  "MapExport3D": "",
25
25
  "MapFilter": "",
26
26
  "MapLight3D": "",
27
+ "ObjectList": "",
27
28
  "Print": "Imprimir",
28
29
  "Reports": "",
29
30
  "Settings": "Configurações",
@@ -136,7 +137,6 @@
136
137
  "draw3d": {
137
138
  "clone": "",
138
139
  "cone": "",
139
- "ctrlhint": "",
140
140
  "cuboid": "",
141
141
  "cylinder": "",
142
142
  "delete": "",
@@ -192,6 +192,12 @@
192
192
  "takepicture": "Selecionar imagem",
193
193
  "unsavedchanged": "Alterações não salvas"
194
194
  },
195
+ "featureattributes": {
196
+ "name": "",
197
+ "nofeatureormultiple": "",
198
+ "value": "",
199
+ "windowtitle": ""
200
+ },
195
201
  "featureform": {
196
202
  "feature": "Feiçao",
197
203
  "noresults": "Sem resultados",
@@ -244,6 +250,7 @@
244
250
  "identify": {
245
251
  "aggregatedreport": "",
246
252
  "clipboard": "",
253
+ "compare": "",
247
254
  "comparing": "",
248
255
  "download": "",
249
256
  "export": "Exportação",
@@ -345,6 +352,10 @@
345
352
  "PERMISSION_DENIED": "Posição: permissão negada"
346
353
  }
347
354
  },
355
+ "locationrecorder": {
356
+ "record": "",
357
+ "stop": ""
358
+ },
348
359
  "map": {
349
360
  "loading": "Carregar...",
350
361
  "resetrotation": "Redefinir rotação"
@@ -436,7 +447,7 @@
436
447
  "angle": "ângulo",
437
448
  "featureunsupported": "Feição não suportada",
438
449
  "height": "Altura",
439
- "nofeature": "Sem feição",
450
+ "nofeatureormultiple": "",
440
451
  "side": "Margem",
441
452
  "width": "Largura",
442
453
  "windowtitle": "Título da janela"
@@ -481,6 +492,7 @@
481
492
  "loading": "Carregando"
482
493
  },
483
494
  "redlining": {
495
+ "attributes": "",
484
496
  "buffer": "Buffer",
485
497
  "buffercompute": "Compute",
486
498
  "bufferdistance": "Distância",
@@ -488,6 +500,7 @@
488
500
  "bufferlayername": "Nome do buffer",
489
501
  "bufferselectfeature": "Selecione uma característica para o buffer...",
490
502
  "circle": "Círculo",
503
+ "ctrlhint": "",
491
504
  "delete": "Excluir",
492
505
  "draw": "Traçar",
493
506
  "edit": "Editar",