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
@@ -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",
@@ -192,6 +193,12 @@
192
193
  "takepicture": "Foto",
193
194
  "unsavedchanged": "Vi sono cambiamenti non salvati. Volete comunque lasciare la pagina?"
194
195
  },
196
+ "featureattributes": {
197
+ "name": "Nome",
198
+ "nofeature": "Nessun oggetto attivo",
199
+ "value": "Valore",
200
+ "windowtitle": "Attributi oggetto"
201
+ },
195
202
  "featureform": {
196
203
  "feature": "Oggetto",
197
204
  "noresults": "Nessun risultato",
@@ -244,16 +251,19 @@
244
251
  "identify": {
245
252
  "aggregatedreport": "Rapporto aggregato",
246
253
  "clipboard": "Copia negli appunti",
254
+ "compare": "Confronta gli oggetti selezionati",
255
+ "comparing": "Confronto di {0} oggetti",
247
256
  "download": "Scarica",
248
257
  "export": "Esporta",
249
258
  "featureReport": "Oggetto formulario",
250
- "featurecount": "Number oggetti",
259
+ "featurecount": "{0} oggetti",
251
260
  "layerall": "Tutti i livelli",
252
261
  "link": "Link",
253
262
  "noattributes": "Nessun attributo",
254
263
  "noresults": "Nessun risultato",
255
264
  "querying": "Caricando...",
256
265
  "reportfail": "Errore nella generazione del rapporto",
266
+ "results": "Risultati",
257
267
  "selectreport": "Seleziona rapporto...",
258
268
  "title": "Titolo"
259
269
  },
@@ -343,6 +353,10 @@
343
353
  "PERMISSION_DENIED": "Posizione: permesso negato"
344
354
  }
345
355
  },
356
+ "locationrecorder": {
357
+ "record": "Registra posizione",
358
+ "stop": "Termina registrazione"
359
+ },
346
360
  "map": {
347
361
  "loading": "In caricamento...",
348
362
  "resetrotation": "Resetta orientamento"
@@ -479,6 +493,7 @@
479
493
  "loading": "Caricando formulario..."
480
494
  },
481
495
  "redlining": {
496
+ "attributes": "Attributi oggetto",
482
497
  "buffer": "Buffer",
483
498
  "buffercompute": "Calcola",
484
499
  "bufferdistance": "Distanza",
@@ -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": "",
25
25
  "MapFilter": "Kaartfilter",
26
26
  "MapLight3D": "",
27
+ "ObjectList": "",
27
28
  "Print": "Print",
28
29
  "Reports": "",
29
30
  "Settings": "Instellingen",
@@ -192,6 +193,12 @@
192
193
  "takepicture": "Foto maken",
193
194
  "unsavedchanged": "Er zijn niet-opgeslagen wijzigingen. Wil je de pagina toch verlaten?"
194
195
  },
196
+ "featureattributes": {
197
+ "name": "",
198
+ "nofeature": "",
199
+ "value": "",
200
+ "windowtitle": ""
201
+ },
195
202
  "featureform": {
196
203
  "feature": "Object",
197
204
  "noresults": "Geen resultaten",
@@ -244,6 +251,8 @@
244
251
  "identify": {
245
252
  "aggregatedreport": "",
246
253
  "clipboard": "Kopiëren naar klembord",
254
+ "compare": "",
255
+ "comparing": "",
247
256
  "download": "",
248
257
  "export": "Exporteren",
249
258
  "featureReport": "Rapport",
@@ -254,6 +263,7 @@
254
263
  "noresults": "Geen informatie beschikbaar voor het aangewezen punt",
255
264
  "querying": "Zoeken...",
256
265
  "reportfail": "",
266
+ "results": "",
257
267
  "selectreport": "",
258
268
  "title": "Objectgegevens"
259
269
  },
@@ -343,6 +353,10 @@
343
353
  "PERMISSION_DENIED": "Positie: toestemming geweigerd"
344
354
  }
345
355
  },
356
+ "locationrecorder": {
357
+ "record": "",
358
+ "stop": ""
359
+ },
346
360
  "map": {
347
361
  "loading": "Laden...",
348
362
  "resetrotation": "Rotatie resetten"
@@ -479,6 +493,7 @@
479
493
  "loading": "Formulier laden..."
480
494
  },
481
495
  "redlining": {
496
+ "attributes": "",
482
497
  "buffer": "Buffer",
483
498
  "buffercompute": "Berekenen",
484
499
  "bufferdistance": "Afstand",
@@ -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": "",
@@ -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": "Eksporter",
249
258
  "featureReport": "Objektrapport",
@@ -254,6 +263,7 @@
254
263
  "noresults": "Ingen informasjon for valgt punkt",
255
264
  "querying": "Søker...",
256
265
  "reportfail": "",
266
+ "results": "",
257
267
  "selectreport": "",
258
268
  "title": "Objektinformasjon"
259
269
  },
@@ -343,6 +353,10 @@
343
353
  "PERMISSION_DENIED": "Posisjon: ikke tillatt"
344
354
  }
345
355
  },
356
+ "locationrecorder": {
357
+ "record": "",
358
+ "stop": ""
359
+ },
346
360
  "map": {
347
361
  "loading": "Laster inn...",
348
362
  "resetrotation": ""
@@ -479,6 +493,7 @@
479
493
  "loading": ""
480
494
  },
481
495
  "redlining": {
496
+ "attributes": "",
482
497
  "buffer": "Buffer",
483
498
  "buffercompute": "Beregner",
484
499
  "bufferdistance": "Avstand",
@@ -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": "",
@@ -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": "Eksport",
249
258
  "featureReport": "Feature report",
@@ -254,6 +263,7 @@
254
263
  "noresults": "Brak dostępnych danych dla wybranego punktu",
255
264
  "querying": "Przetwarzam zapytanie...",
256
265
  "reportfail": "",
266
+ "results": "",
257
267
  "selectreport": "",
258
268
  "title": "Feature Info"
259
269
  },
@@ -343,6 +353,10 @@
343
353
  "PERMISSION_DENIED": "Pozycja: dostęp zabroniony"
344
354
  }
345
355
  },
356
+ "locationrecorder": {
357
+ "record": "",
358
+ "stop": ""
359
+ },
346
360
  "map": {
347
361
  "loading": "Ładowanie...",
348
362
  "resetrotation": ""
@@ -479,6 +493,7 @@
479
493
  "loading": ""
480
494
  },
481
495
  "redlining": {
496
+ "attributes": "",
482
497
  "buffer": "Buforuj",
483
498
  "buffercompute": "Oblicz",
484
499
  "bufferdistance": "Odległość",
@@ -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",
@@ -192,6 +193,12 @@
192
193
  "takepicture": "Selecionar imagem",
193
194
  "unsavedchanged": "Alterações não salvas"
194
195
  },
196
+ "featureattributes": {
197
+ "name": "",
198
+ "nofeature": "",
199
+ "value": "",
200
+ "windowtitle": ""
201
+ },
195
202
  "featureform": {
196
203
  "feature": "Feiçao",
197
204
  "noresults": "Sem resultados",
@@ -244,6 +251,8 @@
244
251
  "identify": {
245
252
  "aggregatedreport": "",
246
253
  "clipboard": "",
254
+ "compare": "",
255
+ "comparing": "",
247
256
  "download": "",
248
257
  "export": "Exportação",
249
258
  "featureReport": "Relatório de recurso",
@@ -254,6 +263,7 @@
254
263
  "noresults": "Nenhuma informação disponível para o ponto selecionado",
255
264
  "querying": "Consultando...",
256
265
  "reportfail": "",
266
+ "results": "",
257
267
  "selectreport": "",
258
268
  "title": "Informação do recurso"
259
269
  },
@@ -343,6 +353,10 @@
343
353
  "PERMISSION_DENIED": "Posição: permissão negada"
344
354
  }
345
355
  },
356
+ "locationrecorder": {
357
+ "record": "",
358
+ "stop": ""
359
+ },
346
360
  "map": {
347
361
  "loading": "Carregar...",
348
362
  "resetrotation": "Redefinir rotação"
@@ -479,6 +493,7 @@
479
493
  "loading": "Carregando"
480
494
  },
481
495
  "redlining": {
496
+ "attributes": "",
482
497
  "buffer": "Buffer",
483
498
  "buffercompute": "Compute",
484
499
  "bufferdistance": "Distância",
@@ -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",
@@ -192,6 +193,12 @@
192
193
  "takepicture": "Tirar Fotografia",
193
194
  "unsavedchanged": "Alterações Não Guardadas"
194
195
  },
196
+ "featureattributes": {
197
+ "name": "",
198
+ "nofeature": "",
199
+ "value": "",
200
+ "windowtitle": ""
201
+ },
195
202
  "featureform": {
196
203
  "feature": "Recurso",
197
204
  "noresults": "Sem Resultados",
@@ -244,6 +251,8 @@
244
251
  "identify": {
245
252
  "aggregatedreport": "",
246
253
  "clipboard": "Área de Transferência",
254
+ "compare": "",
255
+ "comparing": "",
247
256
  "download": "",
248
257
  "export": "Exportar",
249
258
  "featureReport": "Relatório de Recurso",
@@ -254,6 +263,7 @@
254
263
  "noresults": "Nenhuma informação disponível para o ponto selecionado",
255
264
  "querying": "A consultar...",
256
265
  "reportfail": "",
266
+ "results": "",
257
267
  "selectreport": "",
258
268
  "title": "Informações do Recurso"
259
269
  },
@@ -343,6 +353,10 @@
343
353
  "PERMISSION_DENIED": "Posição: permissão negada"
344
354
  }
345
355
  },
356
+ "locationrecorder": {
357
+ "record": "",
358
+ "stop": ""
359
+ },
346
360
  "map": {
347
361
  "loading": "A carregar...",
348
362
  "resetrotation": "Redefinir Rotação"
@@ -479,6 +493,7 @@
479
493
  "loading": "A carregar..."
480
494
  },
481
495
  "redlining": {
496
+ "attributes": "",
482
497
  "buffer": "Tampão",
483
498
  "buffercompute": "Calcular",
484
499
  "bufferdistance": "Distância do Tampão",
@@ -24,6 +24,7 @@
24
24
  "MapExport3D": "",
25
25
  "MapFilter": "",
26
26
  "MapLight3D": "",
27
+ "ObjectList": "",
27
28
  "Print": "Tipărire",
28
29
  "Reports": "",
29
30
  "Settings": "Setări",
@@ -192,6 +193,12 @@
192
193
  "takepicture": "Fotografiază",
193
194
  "unsavedchanged": "Modificările nu sunt salvate. Doriți să părăsiți pagina oricum?"
194
195
  },
196
+ "featureattributes": {
197
+ "name": "",
198
+ "nofeature": "",
199
+ "value": "",
200
+ "windowtitle": ""
201
+ },
195
202
  "featureform": {
196
203
  "feature": "Obiect spațial",
197
204
  "noresults": "Nu există rezultate",
@@ -244,6 +251,8 @@
244
251
  "identify": {
245
252
  "aggregatedreport": "",
246
253
  "clipboard": "Copiere în clipboard",
254
+ "compare": "",
255
+ "comparing": "",
247
256
  "download": "",
248
257
  "export": "Export",
249
258
  "featureReport": "Raport obiect spațial",
@@ -254,6 +263,7 @@
254
263
  "noresults": "Nu există informații în punctul selectat",
255
264
  "querying": "Interogare...",
256
265
  "reportfail": "",
266
+ "results": "",
257
267
  "selectreport": "",
258
268
  "title": "Informații obiect spațial"
259
269
  },
@@ -343,6 +353,10 @@
343
353
  "PERMISSION_DENIED": "Poziția: acces refuzat"
344
354
  }
345
355
  },
356
+ "locationrecorder": {
357
+ "record": "",
358
+ "stop": ""
359
+ },
346
360
  "map": {
347
361
  "loading": "Se încarcă...",
348
362
  "resetrotation": "Resetează rotația"
@@ -479,6 +493,7 @@
479
493
  "loading": "Formularul se încarcă"
480
494
  },
481
495
  "redlining": {
496
+ "attributes": "",
482
497
  "buffer": "Zonă tampon",
483
498
  "buffercompute": "Calcul",
484
499
  "bufferdistance": "Distanța",
@@ -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,6 +251,8 @@
244
251
  "identify": {
245
252
  "aggregatedreport": "",
246
253
  "clipboard": "",
254
+ "compare": "",
255
+ "comparing": "",
247
256
  "download": "",
248
257
  "export": "Экспорт",
249
258
  "featureReport": "Отчёт об объекте",
@@ -254,6 +263,7 @@
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": "",
25
25
  "MapFilter": "",
26
26
  "MapLight3D": "",
27
+ "ObjectList": "",
27
28
  "Print": "Skriv ut",
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": "Exportera",
249
258
  "featureReport": "Objektrapport",
@@ -254,6 +263,7 @@
254
263
  "noresults": "Ingen information för vald punkt",
255
264
  "querying": "Frågar...",
256
265
  "reportfail": "",
266
+ "results": "",
257
267
  "selectreport": "",
258
268
  "title": "Objektinformation"
259
269
  },
@@ -343,6 +353,10 @@
343
353
  "PERMISSION_DENIED": "Position: tillåts inte"
344
354
  }
345
355
  },
356
+ "locationrecorder": {
357
+ "record": "",
358
+ "stop": ""
359
+ },
346
360
  "map": {
347
361
  "loading": "Laddar...",
348
362
  "resetrotation": ""
@@ -479,6 +493,7 @@
479
493
  "loading": ""
480
494
  },
481
495
  "redlining": {
496
+ "attributes": "",
482
497
  "buffer": "Buffert",
483
498
  "buffercompute": "Beräkna",
484
499
  "bufferdistance": "Avstånd",
@@ -24,6 +24,7 @@
24
24
  "MapExport3D": "",
25
25
  "MapFilter": "Harita Filtresi",
26
26
  "MapLight3D": "Tarih Zaman",
27
+ "ObjectList": "",
27
28
  "Print": "Yazdır",
28
29
  "Reports": "Raporlar",
29
30
  "Settings": "Ayarlar",
@@ -192,6 +193,12 @@
192
193
  "takepicture": "Fotoğraf çek",
193
194
  "unsavedchanged": "Kaydedilmemiş değişiklikler mevcut. Yine de sayfadan ayrılmak istiyor musunuz?"
194
195
  },
196
+ "featureattributes": {
197
+ "name": "",
198
+ "nofeature": "",
199
+ "value": "",
200
+ "windowtitle": ""
201
+ },
195
202
  "featureform": {
196
203
  "feature": "Obje",
197
204
  "noresults": "Sonuç yok",
@@ -244,6 +251,8 @@
244
251
  "identify": {
245
252
  "aggregatedreport": "Toplu rapor",
246
253
  "clipboard": "Panoya kopyala",
254
+ "compare": "",
255
+ "comparing": "",
247
256
  "download": "İndir",
248
257
  "export": "Dışarıya aktar",
249
258
  "featureReport": "Obje raporu",
@@ -254,6 +263,7 @@
254
263
  "noresults": "Seçilen nokta için geçerli bilgi yok",
255
264
  "querying": "Sorgulanıyor...",
256
265
  "reportfail": "Rapor üretilemedi",
266
+ "results": "",
257
267
  "selectreport": "",
258
268
  "title": "Obje Bilgisi"
259
269
  },
@@ -343,6 +353,10 @@
343
353
  "PERMISSION_DENIED": "Konum: izin verilmedi"
344
354
  }
345
355
  },
356
+ "locationrecorder": {
357
+ "record": "",
358
+ "stop": ""
359
+ },
346
360
  "map": {
347
361
  "loading": "Yükleniyor...",
348
362
  "resetrotation": "Dönüklüğü sıfırla"
@@ -479,6 +493,7 @@
479
493
  "loading": "Form yükleniyor..."
480
494
  },
481
495
  "redlining": {
496
+ "attributes": "",
482
497
  "buffer": "Tampon",
483
498
  "buffercompute": "Hesapla",
484
499
  "bufferdistance": "Mesafe",
@@ -45,6 +45,7 @@
45
45
  "appmenu.items.MeasureLineString",
46
46
  "appmenu.items.MeasurePolygon",
47
47
  "appmenu.items.NewsPopup",
48
+ "appmenu.items.ObjectList",
48
49
  "appmenu.items.Panoramax",
49
50
  "appmenu.items.Portal",
50
51
  "appmenu.items.PrintScreen3D",
@@ -79,6 +80,7 @@
79
80
  "appmenu.items.MapExport3D",
80
81
  "appmenu.items.MapFilter",
81
82
  "appmenu.items.MapLight3D",
83
+ "appmenu.items.ObjectList",
82
84
  "appmenu.items.Print",
83
85
  "appmenu.items.Reports",
84
86
  "appmenu.items.Settings",
@@ -195,6 +197,10 @@
195
197
  "editing.select",
196
198
  "editing.takepicture",
197
199
  "editing.unsavedchanged",
200
+ "featureattributes.name",
201
+ "featureattributes.nofeature",
202
+ "featureattributes.value",
203
+ "featureattributes.windowtitle",
198
204
  "featureform.feature",
199
205
  "featureform.noresults",
200
206
  "featureform.querying",
@@ -234,6 +240,8 @@
234
240
  "hideobjects3d.restoreall",
235
241
  "identify.aggregatedreport",
236
242
  "identify.clipboard",
243
+ "identify.compare",
244
+ "identify.comparing",
237
245
  "identify.download",
238
246
  "identify.export",
239
247
  "identify.featureReport",
@@ -244,6 +252,7 @@
244
252
  "identify.noresults",
245
253
  "identify.querying",
246
254
  "identify.reportfail",
255
+ "identify.results",
247
256
  "identify.selectreport",
248
257
  "identify.title",
249
258
  "imageeditor.confirmclose",
@@ -310,6 +319,8 @@
310
319
  "locate.statustooltip.FOLLOWING",
311
320
  "locate.statustooltip.LOCATING",
312
321
  "locate.statustooltip.PERMISSION_DENIED",
322
+ "locationrecorder.record",
323
+ "locationrecorder.stop",
313
324
  "map.loading",
314
325
  "map.resetrotation",
315
326
  "map3d.lockview",
@@ -411,6 +422,7 @@
411
422
  "print.submit",
412
423
  "print.wait",
413
424
  "qtdesignerform.loading",
425
+ "redlining.attributes",
414
426
  "redlining.buffer",
415
427
  "redlining.buffercompute",
416
428
  "redlining.bufferdistance",