qwc2 2025.8.7 → 2025.8.20

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 (111) hide show
  1. package/actions/localConfig.js +1 -1
  2. package/actions/locale.js +1 -6
  3. package/components/LayerInfoWindow.js +1 -1
  4. package/components/MessageBar.js +7 -0
  5. package/components/PluginsContainer.js +3 -2
  6. package/components/ResizeableWindow.js +2 -2
  7. package/components/SearchBox.js +1 -1
  8. package/components/ServiceInfoWindow.js +1 -1
  9. package/components/SideBar.js +2 -2
  10. package/components/StandardApp.js +12 -16
  11. package/components/TaskBar.js +2 -2
  12. package/components/ThemeList.js +1 -1
  13. package/components/map/OlMap.js +2 -2
  14. package/components/map3d/ImportObjects3D.js +1 -1
  15. package/components/map3d/Map3D.js +12 -11
  16. package/components/map3d/MapControls3D.js +2 -2
  17. package/components/map3d/SearchField3D.js +3 -3
  18. package/components/map3d/drawtool/NumericInput3D.js +3 -3
  19. package/components/map3d/style/MapControls3D.css +9 -16
  20. package/components/map3d/utils/MiscUtils3D.js +7 -2
  21. package/components/map3d/utils/OrbitControls3D.js +2 -1
  22. package/components/map3d/utils/Tiles3DStyle.js +4 -4
  23. package/components/style/{TaskBar.css → MessageBar.css} +4 -4
  24. package/components/style/PluginsContainer.css +1 -1
  25. package/components/widgets/TextInput.js +1 -1
  26. package/icons/above_terr.svg +81 -0
  27. package/icons/above_zero.svg +80 -0
  28. package/package.json +3 -2
  29. package/plugins/API.js +3 -3
  30. package/plugins/AttributeTable.js +1 -1
  31. package/plugins/BottomBar.js +1 -1
  32. package/plugins/HeightProfile.js +10 -7
  33. package/plugins/Map.js +4 -3
  34. package/plugins/MapCompare.js +1 -1
  35. package/plugins/MapCopyright.js +2 -2
  36. package/plugins/MapExport.js +1 -1
  37. package/plugins/Reports.js +1 -1
  38. package/plugins/Routing.js +1 -1
  39. package/plugins/TopBar.js +1 -1
  40. package/plugins/TourGuide.js +3 -1
  41. package/plugins/View3D.js +26 -20
  42. package/plugins/map/LocateSupport.js +3 -5
  43. package/plugins/map/style/LocateSupport.css +33 -0
  44. package/{components/map3d/Settings3D.js → plugins/map3d/BackgroundSwitcher3D.js} +3 -1
  45. package/{components → plugins}/map3d/BottomBar3D.js +3 -1
  46. package/plugins/map3d/Compare3D.js +14 -0
  47. package/{components → plugins}/map3d/Draw3D.js +3 -1
  48. package/{components → plugins}/map3d/ExportObjects3D.js +12 -11
  49. package/plugins/map3d/HideObjects3D.js +18 -0
  50. package/{components → plugins}/map3d/Identify3D.js +10 -6
  51. package/plugins/map3d/LayerTree3D.js +9 -0
  52. package/plugins/map3d/MapCopyright3D.js +11 -0
  53. package/{components → plugins}/map3d/MapExport3D.js +3 -1
  54. package/plugins/map3d/MapLight3D.js +11 -0
  55. package/{components → plugins}/map3d/Measure3D.js +3 -1
  56. package/{components → plugins}/map3d/OverviewMap3D.js +3 -3
  57. package/plugins/map3d/Settings3D.js +9 -0
  58. package/plugins/map3d/TopBar3D.js +15 -0
  59. package/plugins/style/HeightProfile.css +10 -0
  60. package/plugins/style/MapCopyright.css +3 -3
  61. package/plugins/style/View3D.css +0 -4
  62. package/reducers/localConfig.js +1 -1
  63. package/reducers/windows.js +1 -1
  64. package/scripts/gen-plugin-docs.js +2 -2
  65. package/selectors/searchproviders.js +3 -7
  66. package/static/translations/bg-BG.json +3 -0
  67. package/static/translations/ca-ES.json +3 -0
  68. package/static/translations/cs-CZ.json +3 -0
  69. package/static/translations/de-CH.json +4 -1
  70. package/static/translations/de-DE.json +4 -1
  71. package/static/translations/en-US.json +4 -1
  72. package/static/translations/es-ES.json +3 -0
  73. package/static/translations/fi-FI.json +3 -0
  74. package/static/translations/fr-FR.json +4 -1
  75. package/static/translations/hu-HU.json +3 -0
  76. package/static/translations/it-IT.json +4 -1
  77. package/static/translations/ja-JP.json +3 -0
  78. package/static/translations/nl-NL.json +3 -0
  79. package/static/translations/no-NO.json +3 -0
  80. package/static/translations/pl-PL.json +3 -0
  81. package/static/translations/pt-BR.json +3 -0
  82. package/static/translations/pt-PT.json +3 -0
  83. package/static/translations/ro-RO.json +3 -0
  84. package/static/translations/ru-RU.json +3 -0
  85. package/static/translations/sv-SE.json +3 -0
  86. package/static/translations/tr-TR.json +3 -0
  87. package/static/translations/tsconfig.json +5 -1
  88. package/static/translations/uk-UA.json +747 -0
  89. package/utils/LayerUtils.js +1 -1
  90. package/utils/LocaleUtils.js +6 -1
  91. package/utils/PluginStore.js +1 -0
  92. package/utils/SearchProviders.js +8 -3
  93. package/utils/ThemeUtils.js +2 -2
  94. package/components/map/OlLocate.css +0 -56
  95. package/components/map/OlLocate.js +0 -17
  96. package/components/map3d/Compare3D.js +0 -12
  97. package/components/map3d/HideObjects3D.js +0 -14
  98. package/components/map3d/LayerTree3D.js +0 -7
  99. package/components/map3d/Map3DLight.js +0 -11
  100. package/components/map3d/TopBar3D.js +0 -7
  101. package/components/map3d/img/viewcone.svg +0 -124
  102. package/components/map3d/models/arrow.glb +0 -0
  103. package/components/map3d/models/pin.glb +0 -0
  104. package/utils/img/person.png +0 -0
  105. /package/{components → plugins}/map3d/style/BottomBar3D.css +0 -0
  106. /package/{components → plugins}/map3d/style/Compare3D.css +0 -0
  107. /package/{components → plugins}/map3d/style/HideObjects3D.css +0 -0
  108. /package/{components → plugins}/map3d/style/LayerTree3D.css +0 -0
  109. /package/{components/map3d/style/Map3DLight.css → plugins/map3d/style/MapLight3D.css} +0 -0
  110. /package/{components → plugins}/map3d/style/OverviewMap3D.css +0 -0
  111. /package/{components → plugins}/map3d/style/Settings3D.css +0 -0
@@ -0,0 +1,747 @@
1
+ {
2
+ "locale": "uk-UA",
3
+ "messages": {
4
+ "app": {
5
+ "missingbg": "",
6
+ "missinglayers": "",
7
+ "missingpermalink": "",
8
+ "missingprojection": "",
9
+ "missingtheme": ""
10
+ },
11
+ "appmenu": {
12
+ "filter": "",
13
+ "items": {
14
+ "Bookmark": "",
15
+ "Compare3D": "",
16
+ "Editing": "Редагування",
17
+ "ExportObjects3D": "",
18
+ "Help": "Допомога",
19
+ "HideObjects3D": "",
20
+ "LayerTree": "Шари і легенда",
21
+ "LayerTree3D": "",
22
+ "MapExport": "Експортувати карту",
23
+ "MapExport3D": "",
24
+ "MapFilter": "",
25
+ "MapLight3D": "",
26
+ "Print": "Друк",
27
+ "Reports": "",
28
+ "Settings": "",
29
+ "Settings3D": "",
30
+ "Share": "Поділитися лінком",
31
+ "ThemeSwitcher": "Тема",
32
+ "AttributeTable": "",
33
+ "AuthenticationLogin": "",
34
+ "AuthenticationLogout": "",
35
+ "Cyclomedia": "",
36
+ "Draw3D": "",
37
+ "FeatureForm": "",
38
+ "FeatureSearch": "",
39
+ "GeometryDigitizer": "",
40
+ "IdentifyPoint": "",
41
+ "IdentifyRegion": "Визначити регіон",
42
+ "LayerCatalog": "",
43
+ "Login": "",
44
+ "Logout": "",
45
+ "MapLegend": "",
46
+ "Measure": "Виміряти",
47
+ "Measure3D": "",
48
+ "MeasureLineString": "Поміряти відрізок",
49
+ "MeasurePolygon": "Виміряти полігон",
50
+ "NewsPopup": "",
51
+ "Panoramax": "",
52
+ "Portal": "",
53
+ "PrintScreen3D": "",
54
+ "Redlining": "Розмітка",
55
+ "Routing": "",
56
+ "Tools": "Інструменти карти",
57
+ "TourGuide": "",
58
+ "TimeManager": "",
59
+ "View3D": ""
60
+ },
61
+ "menulabel": "Карта та інструменти"
62
+ },
63
+ "attribtable": {
64
+ "addfeature": "",
65
+ "commit": "",
66
+ "csvexport": "",
67
+ "delete": "",
68
+ "deletefailed": "",
69
+ "deletefeatures": "",
70
+ "deleting": "",
71
+ "discard": "",
72
+ "formeditmode": "",
73
+ "geomnoadd": "",
74
+ "limittoextent": "",
75
+ "loadfailed": "",
76
+ "loading": "",
77
+ "nodelete": "",
78
+ "nogeomnoform": "",
79
+ "pleasereload": "",
80
+ "reload": "",
81
+ "selectlayer": "",
82
+ "title": "",
83
+ "zoomtoselection": ""
84
+ },
85
+ "bgswitcher": {
86
+ "nobg": "Фон відсутній"
87
+ },
88
+ "bookmark": {
89
+ "add": "",
90
+ "addfailed": "",
91
+ "description": "",
92
+ "lastUpdate": "",
93
+ "manage": "",
94
+ "nobookmarks": "",
95
+ "notloggedin": "",
96
+ "open": "",
97
+ "openTab": "",
98
+ "remove": "",
99
+ "removefailed": "",
100
+ "savefailed": "",
101
+ "update": "",
102
+ "zoomToExtent": ""
103
+ },
104
+ "bottombar": {
105
+ "mousepos_label": "Координати",
106
+ "scale_label": "Масштаб",
107
+ "terms_label": "Правила користування",
108
+ "viewertitle_label": "Домашня сторінка"
109
+ },
110
+ "compare3d": {
111
+ "clipplane": "",
112
+ "compare_objects": "",
113
+ "info_message": "",
114
+ "modify": "",
115
+ "toggleall": ""
116
+ },
117
+ "cookiepopup": {
118
+ "accept": "",
119
+ "message": ""
120
+ },
121
+ "copybtn": {
122
+ "click_to_copy": "Копіювати",
123
+ "copied": "Скопійовано",
124
+ "copyfailed": ""
125
+ },
126
+ "cyclomedia": {
127
+ "clickonmap": "",
128
+ "initializing": "",
129
+ "loaderror": "",
130
+ "loading": "",
131
+ "login": "",
132
+ "scalehint": "",
133
+ "title": ""
134
+ },
135
+ "draw3d": {
136
+ "clone": "",
137
+ "cone": "",
138
+ "ctrlhint": "",
139
+ "cuboid": "",
140
+ "cylinder": "",
141
+ "delete": "",
142
+ "drawings": "",
143
+ "intersect": "",
144
+ "label": "",
145
+ "newgroupprompt": "",
146
+ "numericinput": "",
147
+ "pick": "",
148
+ "position": "",
149
+ "pyramid": "",
150
+ "rotate": "",
151
+ "rotation": "",
152
+ "scale": "",
153
+ "sphere": "",
154
+ "subtract": "",
155
+ "thescale": "",
156
+ "thesize": "",
157
+ "translate": "",
158
+ "undoBool": "",
159
+ "union": "",
160
+ "wedge": ""
161
+ },
162
+ "editing": {
163
+ "add": "",
164
+ "attrtable": "",
165
+ "canceldelete": "Не видаляти",
166
+ "clearpicture": "",
167
+ "commit": "Підтвердити зміни",
168
+ "commitfailed": "",
169
+ "contraintviolation": "",
170
+ "create": "",
171
+ "delete": "Видалити",
172
+ "discard": "Скасувати зміни",
173
+ "draw": "Намалювати",
174
+ "feature": "",
175
+ "geomnonzeroz": "",
176
+ "geomreadonly": "",
177
+ "invalidform": "",
178
+ "maximize": "Розгорнути",
179
+ "minimize": "Згорнути",
180
+ "noeditablelayers": "Немає шарів доступних для редагування.",
181
+ "paint": "",
182
+ "pick": "Вибрати",
183
+ "pickdrawfeature": "",
184
+ "reallydelete": "Видалити",
185
+ "relationcommitfailed": "",
186
+ "select": "Виберіть...",
187
+ "takepicture": "",
188
+ "unsavedchanged": ""
189
+ },
190
+ "featureform": {
191
+ "feature": "",
192
+ "noresults": "",
193
+ "querying": "",
194
+ "title": ""
195
+ },
196
+ "featuresearch": {
197
+ "noresults": "",
198
+ "query": "",
199
+ "select": "",
200
+ "title": ""
201
+ },
202
+ "fileselector": {
203
+ "files": "",
204
+ "placeholder": "Выберіть файл..."
205
+ },
206
+ "geomdigitizer": {
207
+ "applink": "",
208
+ "bufferlayername": "",
209
+ "chooselink": "",
210
+ "clear": "",
211
+ "identifypick": "",
212
+ "identifypickregion": "",
213
+ "layername": "",
214
+ "line_buffer": "",
215
+ "point_buffer": "",
216
+ "selfinter": "",
217
+ "send": "",
218
+ "wait": ""
219
+ },
220
+ "heightprofile": {
221
+ "asl": "над р.м.",
222
+ "dhmdefaultname": "",
223
+ "distance": "Дистанція",
224
+ "drawnodes": "",
225
+ "error": "",
226
+ "export": "",
227
+ "height": "Висота",
228
+ "loading": "Розрахунок профілю висот...",
229
+ "loadingimage": "",
230
+ "print": "",
231
+ "title": ""
232
+ },
233
+ "hideobjects3d": {
234
+ "clickonmap": "",
235
+ "object": "",
236
+ "restore": "",
237
+ "restoreall": ""
238
+ },
239
+ "identify": {
240
+ "aggregatedreport": "",
241
+ "clipboard": "",
242
+ "download": "",
243
+ "export": "Експорт",
244
+ "featureReport": "Звіт по об’єкту",
245
+ "featurecount": "",
246
+ "layerall": "",
247
+ "link": "Посилання",
248
+ "noattributes": "Атрибути відсутні",
249
+ "noresults": "Для обраної точки інформація відсутня",
250
+ "querying": "Обробка запиту...",
251
+ "reportfail": "",
252
+ "selectreport": "",
253
+ "title": "Відомості про об’єкт"
254
+ },
255
+ "imageeditor": {
256
+ "confirmclose": "",
257
+ "title": ""
258
+ },
259
+ "import3d": {
260
+ "importing": "",
261
+ "noprocessesserver": ""
262
+ },
263
+ "importlayer": {
264
+ "addfailed": "",
265
+ "addlayer": "Додати шар",
266
+ "asgroup": "",
267
+ "connect": "Підключитись",
268
+ "filter": "Фільтрувати...",
269
+ "loading": "",
270
+ "localfile": "",
271
+ "nofeatures": "Жоден об’єкт не доступний для імпорту",
272
+ "noresults": "",
273
+ "notgeopdf": "",
274
+ "shpreprojectionerror": "",
275
+ "supportedformats": "",
276
+ "unknownproj": "",
277
+ "url": "",
278
+ "urlplaceholder": "Введіть URL для WMS, WMTS, WFS..."
279
+ },
280
+ "infotool": {
281
+ "clickhelpPoint": "",
282
+ "clickhelpPolygon": "Обведіть об’єкти полігоном для отримання інформації…",
283
+ "clickhelpRadius": "",
284
+ "radius": ""
285
+ },
286
+ "layercatalog": {
287
+ "windowtitle": ""
288
+ },
289
+ "layerinfo": {
290
+ "abstract": "Опис",
291
+ "attribution": "Автор",
292
+ "dataUrl": "URL даних",
293
+ "keywords": "Ключові слова",
294
+ "legend": "Легенда",
295
+ "maxscale": "",
296
+ "metadataUrl": "URL метаданных",
297
+ "minscale": "",
298
+ "title": "Інформація про шар"
299
+ },
300
+ "layertree": {
301
+ "compare": "Порівняти верхній шар",
302
+ "deletealllayers": "Видалити всі шари",
303
+ "hidealllayers": "Приховати всі шари",
304
+ "importlayer": "Імпортувати шар",
305
+ "maptip": "Показувати підказки на карті",
306
+ "printlegend": "Друкувати легенду",
307
+ "separator": "",
308
+ "separatortooltip": "",
309
+ "transparency": "",
310
+ "visiblefilter": "",
311
+ "zoomtolayer": ""
312
+ },
313
+ "layertree3d": {
314
+ "customheight": "",
315
+ "import": "",
316
+ "importobjects": "",
317
+ "layers": "",
318
+ "objects": "",
319
+ "supportedformats": "",
320
+ "zoomtoobject": ""
321
+ },
322
+ "linkfeatureform": {
323
+ "cancel": "",
324
+ "close": "",
325
+ "drawhint": "",
326
+ "pickhint": ""
327
+ },
328
+ "locate": {
329
+ "feetUnit": "футів",
330
+ "metersUnit": "метрів",
331
+ "popup": "Ви на відстані {distance} {unit} від цієї точки",
332
+ "statustooltip": {
333
+ "DISABLED": "Геолокація: відключена",
334
+ "ENABLED": "Геолокація: увімкена",
335
+ "FOLLOWING": "Геолокація: стеження",
336
+ "LOCATING": "Геолокація: визначення місцезнаходження…",
337
+ "PERMISSION_DENIED": "Геолокація: доступ заборонено"
338
+ }
339
+ },
340
+ "map": {
341
+ "loading": "Завантаження...",
342
+ "resetrotation": ""
343
+ },
344
+ "map3d": {
345
+ "lockview": "",
346
+ "syncview": "",
347
+ "terrain": "",
348
+ "title": ""
349
+ },
350
+ "mapexport": {
351
+ "configuration": "",
352
+ "format": "Формат:",
353
+ "projection": "",
354
+ "resolution": "Роздільна здатність:",
355
+ "scale": "",
356
+ "size": "",
357
+ "submit": "",
358
+ "usersize": "",
359
+ "wait": ""
360
+ },
361
+ "mapfilter": {
362
+ "addcustomfilter": "",
363
+ "brokenrendering": "",
364
+ "cancel": "",
365
+ "geomfilter": "",
366
+ "hidefiltergeom": "",
367
+ "invalidfilter": "",
368
+ "save": "",
369
+ "select": "",
370
+ "selectlayer": "",
371
+ "timefilter": "",
372
+ "timefrom": "",
373
+ "timeto": ""
374
+ },
375
+ "mapinfotooltip": {
376
+ "elevation": "Висота над рівнем моря",
377
+ "title": "Позиція"
378
+ },
379
+ "maplegend": {
380
+ "bboxdependent": "",
381
+ "onlyvisible": "",
382
+ "scaledependent": "",
383
+ "windowtitle": ""
384
+ },
385
+ "maplight3d": {
386
+ "animationstep": "",
387
+ "date": "",
388
+ "dayspersec": "",
389
+ "helpersVisible": "",
390
+ "minspersec": "",
391
+ "moonLightIntensity": "",
392
+ "normalBias": "",
393
+ "shadowBias": "",
394
+ "shadowMapSize": "",
395
+ "shadowType": "",
396
+ "shadowVolumeFar": "",
397
+ "shadowVolumeNear": "",
398
+ "shadowintensity": "",
399
+ "shadows": "",
400
+ "showadvanced": "",
401
+ "sunLightIntensity": "",
402
+ "time": "",
403
+ "zFactor": ""
404
+ },
405
+ "measureComponent": {
406
+ "absolute": "",
407
+ "areaLabel": "Площа",
408
+ "bearingLabel": "",
409
+ "ground": "",
410
+ "heightDiffLabel": "",
411
+ "imperial": "",
412
+ "lengthLabel": "Довжина",
413
+ "metric": "",
414
+ "pointLabel": "Позиція"
415
+ },
416
+ "misc": {
417
+ "ctrlclickhint": ""
418
+ },
419
+ "navbar": {
420
+ "perpage": ""
421
+ },
422
+ "newspopup": {
423
+ "dialogclose": "",
424
+ "dontshowagain": "",
425
+ "title": ""
426
+ },
427
+ "numericinput": {
428
+ "angle": "",
429
+ "featureunsupported": "",
430
+ "height": "",
431
+ "nofeature": "",
432
+ "side": "",
433
+ "width": "",
434
+ "windowtitle": ""
435
+ },
436
+ "panoramax": {
437
+ "notfound": "",
438
+ "title": ""
439
+ },
440
+ "pickfeature": {
441
+ "querying": ""
442
+ },
443
+ "portal": {
444
+ "filter": "",
445
+ "menulabel": ""
446
+ },
447
+ "print": {
448
+ "atlasfeature": "",
449
+ "download": "",
450
+ "download_as_onepdf": "",
451
+ "download_as_onezip": "",
452
+ "download_as_single": "",
453
+ "format": "Формат",
454
+ "grid": "Сітка",
455
+ "layout": "Макет",
456
+ "legend": "",
457
+ "maximize": "Розгорнути",
458
+ "minimize": "Згорнути",
459
+ "nolayouts": "Вибранна тема не підтримує друк",
460
+ "notheme": "Тема не вибрана",
461
+ "output": "",
462
+ "overlap": "",
463
+ "pickatlasfeature": "",
464
+ "resolution": "Роздільна здатність",
465
+ "rotation": "Поворот",
466
+ "save": "",
467
+ "scale": "Масштаб",
468
+ "series": "",
469
+ "submit": "Друк",
470
+ "wait": ""
471
+ },
472
+ "qtdesignerform": {
473
+ "loading": ""
474
+ },
475
+ "redlining": {
476
+ "border": "Межа",
477
+ "buffer": "",
478
+ "buffercompute": "",
479
+ "bufferdistance": "",
480
+ "bufferlayer": "",
481
+ "bufferlayername": "",
482
+ "bufferselectfeature": "",
483
+ "circle": "",
484
+ "delete": "",
485
+ "draw": "",
486
+ "edit": "",
487
+ "ellipse": "",
488
+ "export": "",
489
+ "freehand": "",
490
+ "label": "Напис",
491
+ "layer": "",
492
+ "layertitle": "",
493
+ "line": "Лінія",
494
+ "markers": "",
495
+ "measurements": "",
496
+ "numericinput": "",
497
+ "pick": "Вибрати",
498
+ "point": "Точка",
499
+ "polygon": "Полігон",
500
+ "rectangle": "",
501
+ "size": "Розмір",
502
+ "square": "",
503
+ "text": "Текст",
504
+ "transform": "",
505
+ "width": "Ширина"
506
+ },
507
+ "reports": {
508
+ "all": "",
509
+ "download": "",
510
+ "pick": "",
511
+ "region": "",
512
+ "selectlayer": ""
513
+ },
514
+ "routing": {
515
+ "add": "",
516
+ "addviapoint": "",
517
+ "arriveat": "",
518
+ "clear": "",
519
+ "computefailed": "",
520
+ "computing": "",
521
+ "excludepolygons": "",
522
+ "export": "",
523
+ "fastest": "",
524
+ "fromhere": "",
525
+ "importerror": "",
526
+ "importhint": "",
527
+ "importpoints": "",
528
+ "iso_intervals": "",
529
+ "iso_mode": "",
530
+ "iso_mode_distance": "",
531
+ "iso_mode_time": "",
532
+ "isocenter": "",
533
+ "isoextracenter": "",
534
+ "leaveat": "",
535
+ "leavenow": "",
536
+ "maxspeed": "",
537
+ "method": "",
538
+ "mode_auto": "",
539
+ "mode_bicycle": "",
540
+ "mode_heavyvehicle": "",
541
+ "mode_transit": "",
542
+ "mode_walking": "",
543
+ "optimized_route": "",
544
+ "reachability": "",
545
+ "roundtrip": "",
546
+ "route": "",
547
+ "shortest": "",
548
+ "tohere": "",
549
+ "useferries": "",
550
+ "usehighways": "",
551
+ "usetollways": "",
552
+ "windowtitle": ""
553
+ },
554
+ "scratchdrawing": {
555
+ "finish": ""
556
+ },
557
+ "search": {
558
+ "all": "Все",
559
+ "circleradius": "",
560
+ "clearfilter": "",
561
+ "coordinates": "",
562
+ "existinglayer": "",
563
+ "filter": "",
564
+ "layers": "",
565
+ "limittoarea": "",
566
+ "more": "",
567
+ "nodescription": "",
568
+ "none": "",
569
+ "noresults": "",
570
+ "placeholder": "",
571
+ "places": "",
572
+ "providerselection": "",
573
+ "recent": "",
574
+ "search": "Пошук",
575
+ "themelayers": "",
576
+ "themes": "",
577
+ "unknownmore": ""
578
+ },
579
+ "serviceinfo": {
580
+ "abstract": "",
581
+ "contactEmail": "",
582
+ "contactOrganization": "",
583
+ "contactPerson": "",
584
+ "contactPhone": "",
585
+ "contactPosition": "",
586
+ "keywords": "",
587
+ "onlineResource": "",
588
+ "title": ""
589
+ },
590
+ "settings": {
591
+ "bookmarks": "",
592
+ "colorscheme": "",
593
+ "confirmlang": "",
594
+ "default": "",
595
+ "defaulttheme": "",
596
+ "defaultthemefailed": "",
597
+ "language": "",
598
+ "systemlang": "",
599
+ "themes": ""
600
+ },
601
+ "settings3d": {
602
+ "quality": ""
603
+ },
604
+ "share": {
605
+ "QRCodeLinkTitle": "QR-код",
606
+ "directLinkTitle": "За прямим посиланням",
607
+ "expires": "",
608
+ "norestriction": "",
609
+ "refresh": "",
610
+ "restricttogroup": "",
611
+ "shareTitle": "QWC2",
612
+ "showpin": "",
613
+ "socialIntro": "У вашій улюбленій соцмережі"
614
+ },
615
+ "snapping": {
616
+ "edge": "",
617
+ "loading": "",
618
+ "snappingenabled": "",
619
+ "vertex": ""
620
+ },
621
+ "themelayerslist": {
622
+ "addlayer": "",
623
+ "addlayerstotheme": "",
624
+ "addselectedlayers": "",
625
+ "existinglayers": ""
626
+ },
627
+ "themeswitcher": {
628
+ "addlayerstotheme": "",
629
+ "addtotheme": "",
630
+ "changedefaulttheme": "",
631
+ "confirmswitch": "",
632
+ "filter": "Фільтр...",
633
+ "match": {
634
+ "abstract": "",
635
+ "keywords": "",
636
+ "title": ""
637
+ },
638
+ "openintab": "",
639
+ "restrictedthemeinfo": ""
640
+ },
641
+ "timemanager": {
642
+ "animationinterval": "",
643
+ "classify": "",
644
+ "classifynone": "",
645
+ "displayfeatures": "",
646
+ "displaylayers": "",
647
+ "displayminimal": "",
648
+ "edit": "",
649
+ "endtime": "",
650
+ "filterwarning": "",
651
+ "future": "",
652
+ "group": "",
653
+ "groupnone": "",
654
+ "home": "",
655
+ "loading": "",
656
+ "loop": "",
657
+ "markers": "",
658
+ "notemporaldata": "",
659
+ "now": "",
660
+ "past": "",
661
+ "play": "",
662
+ "playrev": "",
663
+ "rewind": "",
664
+ "starttime": "",
665
+ "stepback": "",
666
+ "stepfwd": "",
667
+ "stepsize": "",
668
+ "stop": "",
669
+ "timeline": "",
670
+ "timeline_fixed": "",
671
+ "timeline_infinite": "",
672
+ "timelinedisplay": "",
673
+ "timelinescale": "",
674
+ "title": "",
675
+ "toggle": "",
676
+ "unit": {
677
+ "century": "",
678
+ "days": "",
679
+ "decade": "",
680
+ "hours": "",
681
+ "milliseconds": "",
682
+ "minutes": "",
683
+ "months": "",
684
+ "seconds": "",
685
+ "years": ""
686
+ },
687
+ "zoomin": "",
688
+ "zoomout": ""
689
+ },
690
+ "tooltip": {
691
+ "background": "Змінити фон",
692
+ "fullscreendisable": "",
693
+ "fullscreenenable": "",
694
+ "home": "Показати всю карту",
695
+ "zoomin": "Збільшити",
696
+ "zoomout": "Зменшити"
697
+ },
698
+ "tourguide": {
699
+ "done": "",
700
+ "next": "",
701
+ "previous": ""
702
+ },
703
+ "valuetool": {
704
+ "all": "",
705
+ "allbands": "",
706
+ "alllayers": "",
707
+ "bands": "",
708
+ "graph": "",
709
+ "layer": "",
710
+ "nodata": "",
711
+ "options": "",
712
+ "selectedbands": "",
713
+ "selectedlayers": "",
714
+ "selectlayersbands": "",
715
+ "showbands": "",
716
+ "showlayers": "",
717
+ "table": "",
718
+ "title": "",
719
+ "visiblelayers": "",
720
+ "ymax": "",
721
+ "ymin": ""
722
+ },
723
+ "vectorlayerpicker": {
724
+ "none": "",
725
+ "prompt": ""
726
+ },
727
+ "view3d": {
728
+ "storingstate": ""
729
+ },
730
+ "window": {
731
+ "close": "",
732
+ "detach": "",
733
+ "dock": "",
734
+ "embed": "",
735
+ "maximize": "",
736
+ "minimize": "",
737
+ "undock": "",
738
+ "unmaximize": "",
739
+ "unminimize": ""
740
+ },
741
+ "colorschemes": {
742
+ "default": "",
743
+ "dark": "",
744
+ "highcontrast": ""
745
+ }
746
+ }
747
+ }