qwc2 2025.3.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +28 -0
- package/README.md +68 -0
- package/actions/display.js +7 -0
- package/actions/editing.js +7 -0
- package/actions/layerinfo.js +7 -0
- package/actions/layers.js +8 -0
- package/actions/localConfig.js +7 -0
- package/actions/locale.js +10 -0
- package/actions/locate.js +8 -0
- package/actions/logging.js +7 -0
- package/actions/map.js +15 -0
- package/actions/measurement.js +8 -0
- package/actions/processNotifications.js +7 -0
- package/actions/redlining.js +7 -0
- package/actions/redliningPick.js +7 -0
- package/actions/serviceinfo.js +7 -0
- package/actions/task.js +9 -0
- package/actions/theme.js +24 -0
- package/actions/windows.js +10 -0
- package/components/AppMenu.js +8 -0
- package/components/AttributeForm.js +34 -0
- package/components/AutoEditForm.js +8 -0
- package/components/CoordinateDisplayer.js +7 -0
- package/components/EditComboField.js +10 -0
- package/components/EditUploadField.js +8 -0
- package/components/FullscreenSwitcher.js +8 -0
- package/components/Icon.js +7 -0
- package/components/IdentifyViewer.js +16 -0
- package/components/ImportLayer.js +25 -0
- package/components/LayerInfoWindow.js +7 -0
- package/components/LinkFeatureForm.js +10 -0
- package/components/MapSelection.js +13 -0
- package/components/NumericInputWindow.js +7 -0
- package/components/PickFeature.js +7 -0
- package/components/PluginsContainer.js +8 -0
- package/components/PrintSelection.js +54 -0
- package/components/QtDesignerForm.js +30 -0
- package/components/ResizeableWindow.js +12 -0
- package/components/SearchBox.js +26 -0
- package/components/ServiceInfoWindow.js +7 -0
- package/components/SideBar.js +9 -0
- package/components/StandardApp.js +35 -0
- package/components/Swipeable.js +1 -0
- package/components/TaskBar.js +7 -0
- package/components/ThemeLayersListWindow.js +9 -0
- package/components/ThemeList.js +12 -0
- package/components/Toolbar.js +7 -0
- package/components/WindowManager.js +7 -0
- package/components/map/OlLayer.js +12 -0
- package/components/map/OlLocate.css +56 -0
- package/components/map/OlLocate.js +17 -0
- package/components/map/OlMap.js +11 -0
- package/components/map/layers/BingLayer.js +8 -0
- package/components/map/layers/GoogleLayer.js +27 -0
- package/components/map/layers/GraticuleLayer.js +8 -0
- package/components/map/layers/ImageLayer.js +8 -0
- package/components/map/layers/MVTLayer.js +7 -0
- package/components/map/layers/OSMLayer.js +8 -0
- package/components/map/layers/OverlayLayer.js +10 -0
- package/components/map/layers/VectorLayer.js +14 -0
- package/components/map/layers/WFSLayer.js +11 -0
- package/components/map/layers/WMSLayer.js +11 -0
- package/components/map/layers/WMTSLayer.js +9 -0
- package/components/map/layers/XYZLayer.js +7 -0
- package/components/map/layers/index.js +8 -0
- package/components/map3d/BottomBar3D.js +7 -0
- package/components/map3d/Compare3D.js +12 -0
- package/components/map3d/Draw3D.js +10 -0
- package/components/map3d/ExportObjects3D.js +17 -0
- package/components/map3d/HeightProfile3D.js +8 -0
- package/components/map3d/HideObjects3D.js +12 -0
- package/components/map3d/Identify3D.js +13 -0
- package/components/map3d/LayerTree3D.js +8 -0
- package/components/map3d/Map3D.js +29 -0
- package/components/map3d/Map3DLight.js +10 -0
- package/components/map3d/MapControls3D.js +20 -0
- package/components/map3d/MapExport3D.js +11 -0
- package/components/map3d/Measure3D.js +23 -0
- package/components/map3d/OverviewMap3D.js +9 -0
- package/components/map3d/SearchField3D.js +16 -0
- package/components/map3d/TopBar3D.js +7 -0
- package/components/map3d/View3DSwitcher.js +7 -0
- package/components/map3d/drawtool/CreateTool3D.js +9 -0
- package/components/map3d/drawtool/EditTool3D.js +9 -0
- package/components/map3d/drawtool/NumericInput3D.js +7 -0
- package/components/map3d/img/viewcone.svg +124 -0
- package/components/map3d/layers/VectorLayer3D.js +7 -0
- package/components/map3d/layers/WFSLayer3D.js +8 -0
- package/components/map3d/layers/WMSLayer3D.js +7 -0
- package/components/map3d/layers/WMTSLayer3D.js +9 -0
- package/components/map3d/layers/index.js +8 -0
- package/components/map3d/models/arrow.glb +0 -0
- package/components/map3d/models/pin.glb +0 -0
- package/components/map3d/slices/map3d.js +1 -0
- package/components/map3d/style/BottomBar3D.css +67 -0
- package/components/map3d/style/Compare3D.css +57 -0
- package/components/map3d/style/Draw3D.css +7 -0
- package/components/map3d/style/HideObjects3D.css +29 -0
- package/components/map3d/style/LayerTree3D.css +126 -0
- package/components/map3d/style/Map3D.css +42 -0
- package/components/map3d/style/Map3DLight.css +72 -0
- package/components/map3d/style/MapControls3D.css +56 -0
- package/components/map3d/style/MapExport3D.css +25 -0
- package/components/map3d/style/OverviewMap3D.css +37 -0
- package/components/map3d/style/SearchField3D.css +7 -0
- package/components/map3d/style/View3DSwitcher.css +27 -0
- package/components/map3d/utils/Tiles3DStyle.js +1 -0
- package/components/share/ShareLink.js +7 -0
- package/components/share/ShareQRCode.js +8 -0
- package/components/share/ShareSocials.js +9 -0
- package/components/share/style/ShareLink.css +13 -0
- package/components/share/style/ShareSocials.css +9 -0
- package/components/style/App.css +229 -0
- package/components/style/AppMenu.css +162 -0
- package/components/style/AttributeForm.css +57 -0
- package/components/style/AutoEditForm.css +64 -0
- package/components/style/DefaultColorScheme.css +60 -0
- package/components/style/EditUploadField.css +103 -0
- package/components/style/FullscreenSwitcher.css +25 -0
- package/components/style/Icon.css +26 -0
- package/components/style/IdentifyViewer.css +249 -0
- package/components/style/ImportLayer.css +28 -0
- package/components/style/LayerInfoWindow.css +46 -0
- package/components/style/LinkFeatureForm.css +48 -0
- package/components/style/NumericInputWindow.css +11 -0
- package/components/style/PickFeature.css +25 -0
- package/components/style/PluginsContainer.css +4 -0
- package/components/style/QtDesignerForm.css +225 -0
- package/components/style/ResizeableWindow.css +178 -0
- package/components/style/SearchBox.css +159 -0
- package/components/style/ServiceInfoWindow.css +34 -0
- package/components/style/SideBar.css +100 -0
- package/components/style/TaskBar.css +35 -0
- package/components/style/ThemeLayersListWindow.css +47 -0
- package/components/style/ThemeList.css +200 -0
- package/components/style/Toolbar.css +20 -0
- package/components/style/WindowManager.css +50 -0
- package/components/timeline/FixedTimeline.js +10 -0
- package/components/timeline/InfiniteTimeline.js +13 -0
- package/components/timeline/TimelineFeaturesSlider.js +10 -0
- package/components/timeline/style/FixedTimeline.css +76 -0
- package/components/timeline/style/InfiniteTimeline.css +94 -0
- package/components/timeline/style/TimelineFeaturesSlider.css +131 -0
- package/components/widgets/AccordeonWidget.js +7 -0
- package/components/widgets/ButtonBar.js +7 -0
- package/components/widgets/ColorButton.js +8 -0
- package/components/widgets/ComboBox.js +7 -0
- package/components/widgets/CopyButton.js +7 -0
- package/components/widgets/DateTimeInput.js +8 -0
- package/components/widgets/EditableSelect.js +8 -0
- package/components/widgets/FileSelector.js +9 -0
- package/components/widgets/Input.js +7 -0
- package/components/widgets/InputContainer.js +7 -0
- package/components/widgets/LayerCatalogWidget.js +3 -0
- package/components/widgets/MenuButton.js +1 -0
- package/components/widgets/ModalDialog.js +7 -0
- package/components/widgets/NavBar.js +7 -0
- package/components/widgets/NumberInput.js +9 -0
- package/components/widgets/PopupMenu.js +1 -0
- package/components/widgets/Primitives.js +7 -0
- package/components/widgets/ReCaptchaWidget.js +1 -0
- package/components/widgets/SearchWidget.js +7 -0
- package/components/widgets/Spinner.js +6 -0
- package/components/widgets/SuggestionInput.js +7 -0
- package/components/widgets/TextInput.js +7 -0
- package/components/widgets/ToggleSwitch.js +7 -0
- package/components/widgets/VectorLayerPicker.js +8 -0
- package/components/widgets/style/AccordeonWidget.css +22 -0
- package/components/widgets/style/ButtonBar.css +88 -0
- package/components/widgets/style/ColorButton.css +88 -0
- package/components/widgets/style/ComboBox.css +83 -0
- package/components/widgets/style/CopyButton.css +21 -0
- package/components/widgets/style/EditableSelect.css +47 -0
- package/components/widgets/style/FileSelector.css +14 -0
- package/components/widgets/style/InputContainer.css +34 -0
- package/components/widgets/style/LayerCatalogWidget.css +59 -0
- package/components/widgets/style/MenuButton.css +122 -0
- package/components/widgets/style/ModalDialog.css +50 -0
- package/components/widgets/style/NavBar.css +12 -0
- package/components/widgets/style/NumberInput.css +76 -0
- package/components/widgets/style/SearchWidget.css +43 -0
- package/components/widgets/style/Spinner.css +32 -0
- package/components/widgets/style/SuggestionInput.css +8 -0
- package/components/widgets/style/TextInput.css +94 -0
- package/components/widgets/style/ToggleSwitch.css +61 -0
- package/components/widgets/style/VectorLayerPicker.css +3 -0
- package/icons/2d.svg +70 -0
- package/icons/3d.svg +70 -0
- package/icons/3d2d.svg +92 -0
- package/icons/after.svg +76 -0
- package/icons/arrow-down.svg +60 -0
- package/icons/arrow-up.svg +60 -0
- package/icons/before.svg +76 -0
- package/icons/bglayer.svg +71 -0
- package/icons/bookmark.svg +170 -0
- package/icons/box.svg +63 -0
- package/icons/buffer.svg +67 -0
- package/icons/camera.svg +118 -0
- package/icons/catalog.svg +62 -0
- package/icons/checked.svg +80 -0
- package/icons/chevron-down.svg +60 -0
- package/icons/chevron-left.svg +59 -0
- package/icons/chevron-right.svg +60 -0
- package/icons/chevron-up.svg +60 -0
- package/icons/circle.svg +70 -0
- package/icons/clear.svg +62 -0
- package/icons/clock.svg +71 -0
- package/icons/cog.svg +60 -0
- package/icons/collapse.svg +73 -0
- package/icons/compare.svg +72 -0
- package/icons/cone.svg +58 -0
- package/icons/confirm.svg +62 -0
- package/icons/copy.svg +60 -0
- package/icons/cuboid.svg +58 -0
- package/icons/cyclomedia.svg +47 -0
- package/icons/cylinder.svg +58 -0
- package/icons/dataimport.svg +116 -0
- package/icons/detach.svg +79 -0
- package/icons/dock.svg +82 -0
- package/icons/dock_bottom.svg +82 -0
- package/icons/dock_left.svg +84 -0
- package/icons/dock_right.svg +84 -0
- package/icons/dock_top.svg +84 -0
- package/icons/draw.svg +78 -0
- package/icons/editdraw.svg +84 -0
- package/icons/edited.svg +78 -0
- package/icons/editing.svg +118 -0
- package/icons/ellipse.svg +72 -0
- package/icons/embed.svg +88 -0
- package/icons/expand.svg +73 -0
- package/icons/export.svg +126 -0
- package/icons/eye.svg +127 -0
- package/icons/featureform.svg +115 -0
- package/icons/fill.svg +62 -0
- package/icons/filter.svg +69 -0
- package/icons/folder-open.svg +60 -0
- package/icons/freehand.svg +82 -0
- package/icons/group.svg +76 -0
- package/icons/home.svg +60 -0
- package/icons/identify_radius.svg +71 -0
- package/icons/identify_region.svg +71 -0
- package/icons/import.svg +62 -0
- package/icons/info-sign.svg +60 -0
- package/icons/info.svg +80 -0
- package/icons/layers.svg +71 -0
- package/icons/light.svg +77 -0
- package/icons/line.svg +61 -0
- package/icons/line_buffer.svg +65 -0
- package/icons/link.svg +75 -0
- package/icons/list-alt.svg +111 -0
- package/icons/lock.svg +54 -0
- package/icons/login.svg +56 -0
- package/icons/logout.svg +56 -0
- package/icons/map3d.svg +51 -0
- package/icons/maximize.svg +84 -0
- package/icons/measure.svg +82 -0
- package/icons/measure_line.svg +87 -0
- package/icons/measure_polygon.svg +88 -0
- package/icons/menu-hamburger.svg +60 -0
- package/icons/minimize.svg +76 -0
- package/icons/minus-sign.svg +60 -0
- package/icons/minus.svg +61 -0
- package/icons/nav-end.svg +74 -0
- package/icons/nav-left.svg +74 -0
- package/icons/nav-right.svg +74 -0
- package/icons/nav-start.svg +73 -0
- package/icons/new.svg +84 -0
- package/icons/nodetool.svg +68 -0
- package/icons/numericinput.svg +86 -0
- package/icons/ok.svg +60 -0
- package/icons/open.svg +79 -0
- package/icons/open_link.svg +74 -0
- package/icons/paint.svg +75 -0
- package/icons/pen.svg +41 -0
- package/icons/person.svg +44 -0
- package/icons/pick.svg +67 -0
- package/icons/pick_point.svg +74 -0
- package/icons/pick_region.svg +71 -0
- package/icons/plus.svg +60 -0
- package/icons/point.svg +67 -0
- package/icons/point_buffer.svg +74 -0
- package/icons/polygon.svg +61 -0
- package/icons/print.svg +60 -0
- package/icons/pyramid.svg +58 -0
- package/icons/radio_checked.svg +78 -0
- package/icons/radio_tristate.svg +75 -0
- package/icons/radio_unchecked.svg +72 -0
- package/icons/rasterexport.svg +124 -0
- package/icons/rect.svg +63 -0
- package/icons/refresh.svg +44 -0
- package/icons/remove.svg +60 -0
- package/icons/report.svg +84 -0
- package/icons/routing-bicycle.svg +40 -0
- package/icons/routing-bus.svg +40 -0
- package/icons/routing-cablecar.svg +40 -0
- package/icons/routing-car.svg +40 -0
- package/icons/routing-ship.svg +40 -0
- package/icons/routing-train.svg +40 -0
- package/icons/routing-tram.svg +40 -0
- package/icons/routing-truck.svg +40 -0
- package/icons/routing-walking.svg +40 -0
- package/icons/routing.svg +68 -0
- package/icons/save.svg +190 -0
- package/icons/scale.svg +62 -0
- package/icons/screenshot.svg +60 -0
- package/icons/search.svg +60 -0
- package/icons/selectbox.svg +79 -0
- package/icons/share.svg +64 -0
- package/icons/snap_edge.svg +79 -0
- package/icons/snap_vertex.svg +79 -0
- package/icons/sphere.svg +58 -0
- package/icons/square.svg +68 -0
- package/icons/sync.svg +72 -0
- package/icons/text.svg +68 -0
- package/icons/themes.svg +81 -0
- package/icons/tilt-down.svg +67 -0
- package/icons/tilt-left.svg +48 -0
- package/icons/tilt-right.svg +48 -0
- package/icons/tilt-up.svg +67 -0
- package/icons/today.svg +45 -0
- package/icons/tools.svg +77 -0
- package/icons/transformtool.svg +74 -0
- package/icons/transparency.svg +132 -0
- package/icons/trash.svg +60 -0
- package/icons/tree_minus.svg +81 -0
- package/icons/tree_plus.svg +81 -0
- package/icons/triangle-down.svg +59 -0
- package/icons/triangle-left.svg +60 -0
- package/icons/triangle-right.svg +60 -0
- package/icons/triangle-up.svg +59 -0
- package/icons/tristate.svg +79 -0
- package/icons/unchecked.svg +74 -0
- package/icons/undock.svg +82 -0
- package/icons/undock_bottom.svg +82 -0
- package/icons/undock_left.svg +82 -0
- package/icons/undock_right.svg +84 -0
- package/icons/undock_top.svg +84 -0
- package/icons/unmaximize.svg +84 -0
- package/icons/unminimize.svg +76 -0
- package/icons/up-down-arrow.svg +66 -0
- package/icons/warning.svg +72 -0
- package/icons/wedge.svg +58 -0
- package/icons/zoom.svg +60 -0
- package/icons/zoomin.svg +71 -0
- package/icons/zoomout.svg +80 -0
- package/libs/openlayers.js +11 -0
- package/package.json +135 -0
- package/plugins/API.js +114 -0
- package/plugins/AttributeTable.js +25 -0
- package/plugins/Authentication.js +13 -0
- package/plugins/BackgroundSwitcher.js +10 -0
- package/plugins/Bookmark.js +13 -0
- package/plugins/BottomBar.js +10 -0
- package/plugins/CookiePopup.js +9 -0
- package/plugins/Cyclomedia.js +11 -0
- package/plugins/Editing.js +21 -0
- package/plugins/FeatureForm.js +21 -0
- package/plugins/FeatureSearch.js +11 -0
- package/plugins/GeometryDigitizer.js +43 -0
- package/plugins/HeightProfile.js +26 -0
- package/plugins/Help.js +11 -0
- package/plugins/HomeButton.js +9 -0
- package/plugins/Identify.js +18 -0
- package/plugins/LayerCatalog.js +45 -0
- package/plugins/LayerTree.js +15 -0
- package/plugins/LocateButton.js +10 -0
- package/plugins/Map.js +22 -0
- package/plugins/MapCompare.js +11 -0
- package/plugins/MapCopyright.js +11 -0
- package/plugins/MapExport.js +23 -0
- package/plugins/MapFilter.js +20 -0
- package/plugins/MapInfoTooltip.js +32 -0
- package/plugins/MapLegend.js +14 -0
- package/plugins/MapTip.js +15 -0
- package/plugins/Measure.js +10 -0
- package/plugins/NewsPopup.js +12 -0
- package/plugins/Panoramax.js +10 -0
- package/plugins/Portal.js +10 -0
- package/plugins/Print.js +22 -0
- package/plugins/ProcessNotifications.js +11 -0
- package/plugins/Redlining.js +12 -0
- package/plugins/Reports.js +15 -0
- package/plugins/Routing.js +23 -0
- package/plugins/ScratchDrawing.js +15 -0
- package/plugins/Settings.js +12 -0
- package/plugins/Share.js +11 -0
- package/plugins/StartupMarker.js +12 -0
- package/plugins/TaskButton.js +9 -0
- package/plugins/ThemeSwitcher.js +10 -0
- package/plugins/TimeManager.js +21 -0
- package/plugins/TopBar.js +13 -0
- package/plugins/ValueTool.js +11 -0
- package/plugins/View3D.js +34 -0
- package/plugins/ZoomButtons.js +11 -0
- package/plugins/map/EditingSupport.js +13 -0
- package/plugins/map/LocateSupport.js +14 -0
- package/plugins/map/MeasurementSupport.js +15 -0
- package/plugins/map/OverviewSupport.js +14 -0
- package/plugins/map/RedliningPickSupport.js +12 -0
- package/plugins/map/RedliningSupport.js +28 -0
- package/plugins/map/ScaleBarSupport.js +10 -0
- package/plugins/map/SnapInteraction.js +1 -0
- package/plugins/map/SnapSupport.js +7 -0
- package/plugins/map/SnappingSupport.js +23 -0
- package/plugins/map/style/OverviewSupport.css +42 -0
- package/plugins/map/style/ScaleBarSupport.css +18 -0
- package/plugins/map/style/SnappingSupport.css +33 -0
- package/plugins/redlining/RedliningBufferSupport.js +8 -0
- package/plugins/style/AttributeTable.css +220 -0
- package/plugins/style/Authentication.css +16 -0
- package/plugins/style/BackgroundSwitcher.css +99 -0
- package/plugins/style/Bookmark.css +62 -0
- package/plugins/style/BottomBar.css +53 -0
- package/plugins/style/Buttons.css +68 -0
- package/plugins/style/CookiePopup.css +24 -0
- package/plugins/style/Cyclomedia.css +66 -0
- package/plugins/style/Editing.css +40 -0
- package/plugins/style/FeatureForm.css +21 -0
- package/plugins/style/FeatureSearch.css +71 -0
- package/plugins/style/GeometryDigitizer.css +28 -0
- package/plugins/style/HeightProfile.css +26 -0
- package/plugins/style/Identify.css +4 -0
- package/plugins/style/LayerCatalog.css +8 -0
- package/plugins/style/LayerTree.css +316 -0
- package/plugins/style/Map.css +43 -0
- package/plugins/style/MapCompare.css +27 -0
- package/plugins/style/MapCopyright.css +17 -0
- package/plugins/style/MapExport.css +55 -0
- package/plugins/style/MapFilter.css +101 -0
- package/plugins/style/MapInfoTooltip.css +78 -0
- package/plugins/style/MapLegend.css +36 -0
- package/plugins/style/MapTip.css +22 -0
- package/plugins/style/Measure.css +23 -0
- package/plugins/style/NewsPopup.css +87 -0
- package/plugins/style/Panoramax.css +15 -0
- package/plugins/style/Portal.css +115 -0
- package/plugins/style/Print.css +116 -0
- package/plugins/style/ProcessNotifications.css +55 -0
- package/plugins/style/Redlining.css +101 -0
- package/plugins/style/Reports.css +11 -0
- package/plugins/style/Routing.css +243 -0
- package/plugins/style/ScratchDrawing.css +8 -0
- package/plugins/style/Settings.css +11 -0
- package/plugins/style/Share.css +59 -0
- package/plugins/style/ThemeSwitcher.css +7 -0
- package/plugins/style/TimeManager.css +91 -0
- package/plugins/style/TopBar.css +50 -0
- package/plugins/style/ValueTool.css +60 -0
- package/reducers/display.js +7 -0
- package/reducers/editing.js +8 -0
- package/reducers/index.js +7 -0
- package/reducers/layerinfo.js +7 -0
- package/reducers/layers.js +14 -0
- package/reducers/localConfig.js +8 -0
- package/reducers/locale.js +8 -0
- package/reducers/locate.js +8 -0
- package/reducers/map.js +11 -0
- package/reducers/measurement.js +8 -0
- package/reducers/processNotifications.js +7 -0
- package/reducers/redlining.js +7 -0
- package/reducers/redliningPick.js +7 -0
- package/reducers/serviceinfo.js +7 -0
- package/reducers/task.js +7 -0
- package/reducers/theme.js +7 -0
- package/reducers/windows.js +7 -0
- package/scripts/dist.sh +16 -0
- package/scripts/gen-plugin-docs.js +9 -0
- package/scripts/makeIconkit.js +7 -0
- package/scripts/package-commands.bat +8 -0
- package/scripts/package-commands.sh +22 -0
- package/scripts/themesConfig.js +48 -0
- package/scripts/themesConfig.py +659 -0
- package/scripts/translateui.sh +51 -0
- package/scripts/updateTranslations.js +17 -0
- package/scripts/wmts_config_generator.py +169 -0
- package/selectors/searchproviders.js +12 -0
- package/static/translations/bg-BG.json +709 -0
- package/static/translations/ca-ES.json +709 -0
- package/static/translations/cs-CZ.json +709 -0
- package/static/translations/de-CH.json +709 -0
- package/static/translations/de-DE.json +709 -0
- package/static/translations/en-US.json +709 -0
- package/static/translations/es-ES.json +709 -0
- package/static/translations/fi-FI.json +709 -0
- package/static/translations/fr-FR.json +709 -0
- package/static/translations/hu-HU.json +709 -0
- package/static/translations/it-IT.json +709 -0
- package/static/translations/ja-JP.json +709 -0
- package/static/translations/nl-NL.json +709 -0
- package/static/translations/no-NO.json +709 -0
- package/static/translations/pl-PL.json +709 -0
- package/static/translations/pt-BR.json +709 -0
- package/static/translations/pt-PT.json +709 -0
- package/static/translations/ro-RO.json +709 -0
- package/static/translations/ru-RU.json +709 -0
- package/static/translations/sv-SE.json +709 -0
- package/static/translations/tr-TR.json +709 -0
- package/static/translations/tsconfig.json +606 -0
- package/stores/StandardStore.js +8 -0
- package/utils/ConfigUtils.js +9 -0
- package/utils/CoordinatesUtils.js +29 -0
- package/utils/DxfUtils.js +10 -0
- package/utils/EditingInterface.js +67 -0
- package/utils/EditingUtils.js +11 -0
- package/utils/FeatureStyles.js +10 -0
- package/utils/IdentifyUtils.js +12 -0
- package/utils/ImageEditor.js +15 -0
- package/utils/LayerUtils.js +57 -0
- package/utils/LocaleUtils.js +9 -0
- package/utils/MapUtils.js +66 -0
- package/utils/MeasureUtils.js +9 -0
- package/utils/MiscUtils.js +15 -0
- package/utils/PermaLinkUtils.js +11 -0
- package/utils/ResourceRegistry.js +7 -0
- package/utils/RoutingInterface.js +12 -0
- package/utils/SearchProviders.js +19 -0
- package/utils/ServiceLayerUtils.js +20 -0
- package/utils/Signal.js +2 -0
- package/utils/ThemeUtils.js +12 -0
- package/utils/VectorLayerUtils.js +20 -0
- package/utils/expr_grammar/README.md +3 -0
- package/utils/expr_grammar/grammar.js +3 -0
- package/utils/expr_grammar/grammar.ne +118 -0
- package/utils/expr_grammar/test.js +13 -0
- package/utils/img/README.markers +1 -0
- package/utils/img/arrowhead.svg +4 -0
- package/utils/img/marker-icon.png +0 -0
- package/utils/img/measurehead.svg +4 -0
|
@@ -0,0 +1,709 @@
|
|
|
1
|
+
{
|
|
2
|
+
"locale": "it-IT",
|
|
3
|
+
"messages": {
|
|
4
|
+
"app": {
|
|
5
|
+
"missingbg": "Impossibile trovare lo sfondo \"{0}\", viene visualizzato lo sfondo predefinito.",
|
|
6
|
+
"missinglayers": "Impossibile trovare i seguenti livelli: {0}.",
|
|
7
|
+
"missingpermalink": "Il permalink o il segnalibro non è valido o è scaduto.",
|
|
8
|
+
"missingprojection": "Impossibile caricare il tema \"{0}\": la proiezione {1} non è definita.",
|
|
9
|
+
"missingtheme": "Impossibile trovare il tema \"{0}\", è stato caricato il tema predefinito."
|
|
10
|
+
},
|
|
11
|
+
"appmenu": {
|
|
12
|
+
"filter": "Filtra menù...",
|
|
13
|
+
"items": {
|
|
14
|
+
"Bookmark": "Segnalibri",
|
|
15
|
+
"Compare3D": "Confronta",
|
|
16
|
+
"Editing": "Strumenti di modifica",
|
|
17
|
+
"ExportObjects3D": "Esporta oggetti",
|
|
18
|
+
"Help": "Aiuto",
|
|
19
|
+
"HideObjects3D": "Nascondi oggetti",
|
|
20
|
+
"LayerTree": "Livelli",
|
|
21
|
+
"LayerTree3D": "Livelli",
|
|
22
|
+
"MapExport": "Esporta mappa",
|
|
23
|
+
"MapExport3D": "Esporta mappa",
|
|
24
|
+
"MapFilter": "Filta mappa",
|
|
25
|
+
"MapLight3D": "Illuminazione e ombre",
|
|
26
|
+
"Print": "Stampa",
|
|
27
|
+
"Reports": "Rapporti",
|
|
28
|
+
"Settings": "Impostazioni",
|
|
29
|
+
"Share": "Condividi",
|
|
30
|
+
"ThemeSwitcher": "Temi",
|
|
31
|
+
"AttributeTable": "Tabella attributi",
|
|
32
|
+
"AuthenticationLogin": "Accedi",
|
|
33
|
+
"AuthenticationLogout": "Disconnetti",
|
|
34
|
+
"Cyclomedia": "Cyclomedia",
|
|
35
|
+
"Draw3D": "Disegnare",
|
|
36
|
+
"FeatureForm": "Formulario oggetto",
|
|
37
|
+
"FeatureSearch": "Ricerca oggetto",
|
|
38
|
+
"GeometryDigitizer": "Digitalizzazione geometrie",
|
|
39
|
+
"IdentifyPoint": "Identifica punto",
|
|
40
|
+
"IdentifyRegion": "Identifica in un poligono",
|
|
41
|
+
"LayerCatalog": "Catalogo livelli",
|
|
42
|
+
"Login": "Accedi",
|
|
43
|
+
"Logout": "Disconnetti",
|
|
44
|
+
"MapLegend": "Legenda",
|
|
45
|
+
"Measure": "Misura",
|
|
46
|
+
"Measure3D": "Misura",
|
|
47
|
+
"MeasureLineString": "Misura una linea",
|
|
48
|
+
"MeasurePolygon": "Misura un poligono",
|
|
49
|
+
"NewsPopup": "Attualità",
|
|
50
|
+
"Panoramax": "Panoramax",
|
|
51
|
+
"Portal": "Portale",
|
|
52
|
+
"PrintScreen3D": "Esporta raster",
|
|
53
|
+
"Redlining": "Strumenti di disegno",
|
|
54
|
+
"Routing": "Routing",
|
|
55
|
+
"Tools": "Strumenti",
|
|
56
|
+
"TimeManager": "Linea temporale",
|
|
57
|
+
"View3D": "Vista 3D"
|
|
58
|
+
},
|
|
59
|
+
"menulabel": "Mappa e strumenti"
|
|
60
|
+
},
|
|
61
|
+
"attribtable": {
|
|
62
|
+
"addfeature": "Aggiungi oggetto",
|
|
63
|
+
"commit": "Salva riga modificata",
|
|
64
|
+
"csvexport": "Esporta a CSV",
|
|
65
|
+
"delete": "Elimina",
|
|
66
|
+
"deletefailed": "Impossibile eliminare uno o più oggetti",
|
|
67
|
+
"deletefeatures": "Elimina gli oggetti selezionati",
|
|
68
|
+
"deleting": "Eliminando...",
|
|
69
|
+
"discard": "Ripristina riga modificata",
|
|
70
|
+
"formeditmode": "Apri il formulario per l'oggetto selezionato",
|
|
71
|
+
"geomnoadd": "Utilizzare il formulario per creare nuovi oggetti per questo livello",
|
|
72
|
+
"limittoextent": "In estensione mappa",
|
|
73
|
+
"loadfailed": "Errore nel caricamento dei dati",
|
|
74
|
+
"loading": "Caricamento...",
|
|
75
|
+
"nodelete": "Non eliminare",
|
|
76
|
+
"nogeomnoform": "Il formulario non è disponibile per livelli senza geometria",
|
|
77
|
+
"pleasereload": "Premere 'Ricarica' per caricare la tabella attributi...",
|
|
78
|
+
"reload": "Ricarica",
|
|
79
|
+
"selectlayer": "Seleziona livello...",
|
|
80
|
+
"title": "Tabella attributi",
|
|
81
|
+
"zoomtoselection": "Zoomare sugli oggetti selezionati"
|
|
82
|
+
},
|
|
83
|
+
"bgswitcher": {
|
|
84
|
+
"nobg": "Nessuno sfondo"
|
|
85
|
+
},
|
|
86
|
+
"bookmark": {
|
|
87
|
+
"add": "Crea segnalibro",
|
|
88
|
+
"addfailed": "Impossibile creare il segnalibro",
|
|
89
|
+
"description": "Inserire descrizione...",
|
|
90
|
+
"lastUpdate": "Ultimo salvataggio",
|
|
91
|
+
"manage": "Gestisci segnalibri",
|
|
92
|
+
"nobookmarks": "Nessun segnalibro",
|
|
93
|
+
"notloggedin": "È necessario aver effettuato l'accesso per utilizzare i segnalibri",
|
|
94
|
+
"open": "Apri nella finestra corrente",
|
|
95
|
+
"openTab": "Apri in una nuova finestra",
|
|
96
|
+
"remove": "Rimuovi segnalibro",
|
|
97
|
+
"removefailed": "Impossibile rimuovere il segnalibro",
|
|
98
|
+
"savefailed": "Impossibile aggiornare il segnalibro",
|
|
99
|
+
"update": "Aggiorna segnalibro",
|
|
100
|
+
"zoomToExtent": "Zoomare sull'estensione"
|
|
101
|
+
},
|
|
102
|
+
"bottombar": {
|
|
103
|
+
"mousepos_label": "Coordinate",
|
|
104
|
+
"scale_label": "Scala",
|
|
105
|
+
"terms_label": "Condizioni di uso",
|
|
106
|
+
"viewertitle_label": "Homepage"
|
|
107
|
+
},
|
|
108
|
+
"compare3d": {
|
|
109
|
+
"clipplane": "Piano di taglio",
|
|
110
|
+
"compare_objects": "Confronta oggetti",
|
|
111
|
+
"toggleall": "Tutti"
|
|
112
|
+
},
|
|
113
|
+
"cookiepopup": {
|
|
114
|
+
"accept": "Accetta",
|
|
115
|
+
"message": "Questo sito web utilizza cookie."
|
|
116
|
+
},
|
|
117
|
+
"copybtn": {
|
|
118
|
+
"click_to_copy": "Clicca per copiare",
|
|
119
|
+
"copied": "Copiato",
|
|
120
|
+
"copyfailed": "Impossibile copiare"
|
|
121
|
+
},
|
|
122
|
+
"cyclomedia": {
|
|
123
|
+
"clickonmap": "Seleziona un punto di registrazione sulla mappa",
|
|
124
|
+
"initializing": "Inizializzazione di Cyclomedia...",
|
|
125
|
+
"loaderror": "Errore durante l'inizializzazione di Cyclomedia",
|
|
126
|
+
"loading": "Caricamento...",
|
|
127
|
+
"login": "Login",
|
|
128
|
+
"scalehint": "Le registrazioni sono solo visibili sulla mappa a partire da una scala di 1:{0}.",
|
|
129
|
+
"title": "Visualizzatore Cyclomedia"
|
|
130
|
+
},
|
|
131
|
+
"draw3d": {
|
|
132
|
+
"cone": "Cono",
|
|
133
|
+
"cuboid": "Cuboide",
|
|
134
|
+
"cylinder": "Cilindro",
|
|
135
|
+
"delete": "Elimina",
|
|
136
|
+
"drawings": "Disegni",
|
|
137
|
+
"intersect": "Intersezione",
|
|
138
|
+
"newgroupprompt": "Nuovo gruppo disegni",
|
|
139
|
+
"numericinput": "Formulario numerico",
|
|
140
|
+
"pick": "Seleziona",
|
|
141
|
+
"position": "Posizione",
|
|
142
|
+
"pyramid": "Piramide",
|
|
143
|
+
"rotate": "Ruota",
|
|
144
|
+
"rotation": "Rotazione",
|
|
145
|
+
"scale": "Scala",
|
|
146
|
+
"sphere": "Sfera",
|
|
147
|
+
"subtract": "Differenza",
|
|
148
|
+
"thescale": "Scala",
|
|
149
|
+
"translate": "Trasla",
|
|
150
|
+
"undoBool": "Annulla l'operazione",
|
|
151
|
+
"union": "Unione",
|
|
152
|
+
"wedge": "Cuneo"
|
|
153
|
+
},
|
|
154
|
+
"editing": {
|
|
155
|
+
"add": "Aggiungi",
|
|
156
|
+
"attrtable": "Tabella",
|
|
157
|
+
"canceldelete": "Annulla",
|
|
158
|
+
"clearpicture": "Cancella",
|
|
159
|
+
"commit": "Salva",
|
|
160
|
+
"commitfailed": "Impossibile salvare",
|
|
161
|
+
"contraintviolation": "Violazione di un vincolo",
|
|
162
|
+
"create": "Crea",
|
|
163
|
+
"delete": "Elimina",
|
|
164
|
+
"discard": "Annulla",
|
|
165
|
+
"draw": "Disegna",
|
|
166
|
+
"feature": "Oggetto",
|
|
167
|
+
"geomreadonly": "La geometria contiene valori Z non nulli ed è quindi di sola lettura.",
|
|
168
|
+
"invalidform": "Formulario invalido",
|
|
169
|
+
"maximize": "Massimizza",
|
|
170
|
+
"minimize": "Minimizza",
|
|
171
|
+
"noeditablelayers": "Nessun livello modificabile",
|
|
172
|
+
"paint": "Modifica",
|
|
173
|
+
"pick": "Seleziona",
|
|
174
|
+
"pickdrawfeature": "Copia geometria esistente",
|
|
175
|
+
"reallydelete": "Elimina",
|
|
176
|
+
"relationcommitfailed": "Alcune relazioni non sono state salvate, consultare i tooltip delle icone per i dettagli.",
|
|
177
|
+
"select": "Seleziona...",
|
|
178
|
+
"takepicture": "Foto",
|
|
179
|
+
"unsavedchanged": "Vi sono cambiamenti non salvati. Volete comunque lasciare la pagina?"
|
|
180
|
+
},
|
|
181
|
+
"featureform": {
|
|
182
|
+
"feature": "Oggetto",
|
|
183
|
+
"noresults": "Nessun risultato",
|
|
184
|
+
"querying": "Caricando...",
|
|
185
|
+
"title": "Formulario oggetto"
|
|
186
|
+
},
|
|
187
|
+
"featuresearch": {
|
|
188
|
+
"noresults": "Nessun risultato",
|
|
189
|
+
"query": "Ricerca",
|
|
190
|
+
"select": "Seleziona",
|
|
191
|
+
"title": "Ricerca oggetto"
|
|
192
|
+
},
|
|
193
|
+
"fileselector": {
|
|
194
|
+
"files": "File",
|
|
195
|
+
"placeholder": "Seleziona file..."
|
|
196
|
+
},
|
|
197
|
+
"geomdigitizer": {
|
|
198
|
+
"applink": "Applicativo",
|
|
199
|
+
"bufferlayername": "Buffer",
|
|
200
|
+
"chooselink": "Seleziona",
|
|
201
|
+
"clear": "Cancella livello",
|
|
202
|
+
"identifypick": "Seleziona oggetto",
|
|
203
|
+
"identifypickregion": "Seleziona oggetto in area",
|
|
204
|
+
"layername": "Digitalizzazione",
|
|
205
|
+
"line_buffer": "Linea (da bufferizzare)",
|
|
206
|
+
"point_buffer": "Punto (da bufferizzare)",
|
|
207
|
+
"selfinter": "Uno o più poligoni contengono autointersecazioni",
|
|
208
|
+
"send": "Invia",
|
|
209
|
+
"wait": "Caricamento..."
|
|
210
|
+
},
|
|
211
|
+
"heightprofile": {
|
|
212
|
+
"asl": "s.l.m.",
|
|
213
|
+
"distance": "Distanza",
|
|
214
|
+
"drawnodes": "Disegna i nodi",
|
|
215
|
+
"error": "Impossibile caricare il profilo di altezza",
|
|
216
|
+
"export": "Esporta",
|
|
217
|
+
"height": "Altitudine",
|
|
218
|
+
"loading": "Calcolo del profilo di altezza...",
|
|
219
|
+
"loadingimage": "Caricamento dell'immagine della mappa...",
|
|
220
|
+
"print": "Stampa profilo d'altezza",
|
|
221
|
+
"title": "Profilo di altezza"
|
|
222
|
+
},
|
|
223
|
+
"hideobjects3d": {
|
|
224
|
+
"clickonmap": "Seleziona oggetto per nasconderlo",
|
|
225
|
+
"object": "Oggetto",
|
|
226
|
+
"restore": "Ripristina oggetto",
|
|
227
|
+
"restoreall": "Ripristina tutti"
|
|
228
|
+
},
|
|
229
|
+
"identify": {
|
|
230
|
+
"aggregatedreport": "Rapporto aggregato",
|
|
231
|
+
"clipboard": "Copia negli appunti",
|
|
232
|
+
"download": "Scarica",
|
|
233
|
+
"export": "Esporta",
|
|
234
|
+
"featureReport": "Oggetto formulario",
|
|
235
|
+
"featurecount": "Number oggetti",
|
|
236
|
+
"layerall": "Tutti i livelli",
|
|
237
|
+
"link": "Link",
|
|
238
|
+
"noattributes": "Nessun attributo",
|
|
239
|
+
"noresults": "Nessun risultato",
|
|
240
|
+
"querying": "Caricando...",
|
|
241
|
+
"reportfail": "Errore nella generazione del rapporto",
|
|
242
|
+
"selectlayer": "Seleziona livello...",
|
|
243
|
+
"title": "Titolo"
|
|
244
|
+
},
|
|
245
|
+
"imageeditor": {
|
|
246
|
+
"confirmclose": "Chiudere senza salvare?",
|
|
247
|
+
"title": "Editor immagine"
|
|
248
|
+
},
|
|
249
|
+
"importlayer": {
|
|
250
|
+
"addfailed": "Impossibile aggiungere il livello",
|
|
251
|
+
"addlayer": "Aggiungi livello",
|
|
252
|
+
"asgroup": "Aggiungi come gruppo",
|
|
253
|
+
"connect": "Connetti",
|
|
254
|
+
"filter": "Filtro",
|
|
255
|
+
"loading": "Caricamento...",
|
|
256
|
+
"localfile": "File locale",
|
|
257
|
+
"nofeatures": "Non è stato importato nessun oggetto ",
|
|
258
|
+
"noresults": "Nessun risultato o URL non valido",
|
|
259
|
+
"notgeopdf": "Il file selezionato non sembra essere un GeoPDF.",
|
|
260
|
+
"shpreprojectionerror": "Non è stato possibile riproiettare la geometria dello shapefile, che potrebbe essere posizionata in modo errato.",
|
|
261
|
+
"supportedformats": "Formati supportati: KML, GeoJSON, GeoPDF, SHP (in zip)",
|
|
262
|
+
"unknownproj": "Il GeoPDF selezionato utilizza una proiezione sconosciuta: {0}",
|
|
263
|
+
"url": "URL",
|
|
264
|
+
"urlplaceholder": "Indirizzo WMS, WMTS, WFS..."
|
|
265
|
+
},
|
|
266
|
+
"infotool": {
|
|
267
|
+
"clickhelpPoint": "Seleziona un luogo da identificare sulla mappa...",
|
|
268
|
+
"clickhelpPolygon": "Disegna un poligono attorno all'area da identificare",
|
|
269
|
+
"clickhelpRadius": "Imposta un raggio e clicca nella mappa per identificare gli oggetti attorno al punto...",
|
|
270
|
+
"radius": "Raggio"
|
|
271
|
+
},
|
|
272
|
+
"layercatalog": {
|
|
273
|
+
"windowtitle": "Catalogo livelli"
|
|
274
|
+
},
|
|
275
|
+
"layerinfo": {
|
|
276
|
+
"abstract": "Riassunto",
|
|
277
|
+
"attribution": "Attribuzione",
|
|
278
|
+
"dataUrl": "URL dati",
|
|
279
|
+
"keywords": "Parole chiavi",
|
|
280
|
+
"legend": "Legenda",
|
|
281
|
+
"maxscale": "Scala massima",
|
|
282
|
+
"metadataUrl": "URL metadati",
|
|
283
|
+
"minscale": "Scala minima",
|
|
284
|
+
"title": "Informazioni livello"
|
|
285
|
+
},
|
|
286
|
+
"layertree": {
|
|
287
|
+
"compare": "Compara il primo livello",
|
|
288
|
+
"deletealllayers": "Rimuovi tutti i livelli",
|
|
289
|
+
"importlayer": "Importa livello",
|
|
290
|
+
"maptip": "Attiva maptip",
|
|
291
|
+
"printlegend": "Stampa legenda",
|
|
292
|
+
"separator": "Separatore",
|
|
293
|
+
"separatortooltip": "Aggiungi separatore",
|
|
294
|
+
"transparency": "Trasparenza",
|
|
295
|
+
"visiblefilter": "Filtra livelli non visibili",
|
|
296
|
+
"zoomtolayer": "Zoom a tutto il livello"
|
|
297
|
+
},
|
|
298
|
+
"layertree3d": {
|
|
299
|
+
"import": "Importa",
|
|
300
|
+
"importobjects": "Importa oggetti",
|
|
301
|
+
"layers": "Livelli",
|
|
302
|
+
"objects": "Oggetti",
|
|
303
|
+
"supportedformats": "Formati supportati: GLTF",
|
|
304
|
+
"zoomtoobject": "Zooma su oggetto"
|
|
305
|
+
},
|
|
306
|
+
"linkfeatureform": {
|
|
307
|
+
"cancel": "Annulla",
|
|
308
|
+
"close": "Chiudi",
|
|
309
|
+
"drawhint": "Disegnare l'oggetto sulla mappa...",
|
|
310
|
+
"pickhint": "Seleziona un oggetto sulla mappa..."
|
|
311
|
+
},
|
|
312
|
+
"locate": {
|
|
313
|
+
"feetUnit": "piedi",
|
|
314
|
+
"metersUnit": "metri",
|
|
315
|
+
"popup": "Sei distante {distance} {unit} da questa posizione",
|
|
316
|
+
"statustooltip": {
|
|
317
|
+
"DISABLED": "Posizione: disattivato",
|
|
318
|
+
"ENABLED": "Posizione: attivato",
|
|
319
|
+
"FOLLOWING": "Posizione: seguendo",
|
|
320
|
+
"LOCATING": "Posizione: rilevando",
|
|
321
|
+
"PERMISSION_DENIED": "Posizione: permesso negato"
|
|
322
|
+
}
|
|
323
|
+
},
|
|
324
|
+
"map": {
|
|
325
|
+
"loading": "In caricamento...",
|
|
326
|
+
"resetrotation": "Resetta orientamento"
|
|
327
|
+
},
|
|
328
|
+
"map3d": {
|
|
329
|
+
"syncview": "Sincronizza visuale",
|
|
330
|
+
"terrain": "Terreno",
|
|
331
|
+
"title": "Visuale 3D"
|
|
332
|
+
},
|
|
333
|
+
"mapexport": {
|
|
334
|
+
"configuration": "Configurazione",
|
|
335
|
+
"format": "Formato",
|
|
336
|
+
"resolution": "Risoluzione",
|
|
337
|
+
"scale": "Scala",
|
|
338
|
+
"size": "Dimensione",
|
|
339
|
+
"submit": "Esporta",
|
|
340
|
+
"usersize": "Seleziona sulla mappa...",
|
|
341
|
+
"wait": "Attendere..."
|
|
342
|
+
},
|
|
343
|
+
"mapfilter": {
|
|
344
|
+
"addcustomfilter": "Aggiungi filtro personalizzato",
|
|
345
|
+
"brokenrendering": "Il rendering della mappa potrebbe essere interrotto a causa di un'espressione filtro invalida",
|
|
346
|
+
"cancel": "Annulla",
|
|
347
|
+
"geomfilter": "Geometrico",
|
|
348
|
+
"hidefiltergeom": "Nascondi geometria filtro",
|
|
349
|
+
"invalidfilter": "Espressione filtro non valida",
|
|
350
|
+
"save": "Salva",
|
|
351
|
+
"select": "Seleziona...",
|
|
352
|
+
"selectlayer": "Seleziona livello",
|
|
353
|
+
"timefilter": "Temporale",
|
|
354
|
+
"timefrom": "Da",
|
|
355
|
+
"timeto": "A"
|
|
356
|
+
},
|
|
357
|
+
"mapinfotooltip": {
|
|
358
|
+
"elevation": "Altitudine",
|
|
359
|
+
"title": "Posizione"
|
|
360
|
+
},
|
|
361
|
+
"maplegend": {
|
|
362
|
+
"bboxdependent": "Legenda in base all'estensione della mappa",
|
|
363
|
+
"onlyvisible": "Mostra solo i livelli attivi nella legenda",
|
|
364
|
+
"scaledependent": "Legenda in base alla scala della mappa",
|
|
365
|
+
"windowtitle": "Legenda"
|
|
366
|
+
},
|
|
367
|
+
"maplight3d": {
|
|
368
|
+
"ambientLightIntensity": "Intensità luce ambientale",
|
|
369
|
+
"animationstep": "Passo animazione",
|
|
370
|
+
"date": "Data",
|
|
371
|
+
"dayspersec": "giorni / sec",
|
|
372
|
+
"directionalLightIntensity": "Intensità luce direzionale",
|
|
373
|
+
"helpersVisible": "Mostra aiuti",
|
|
374
|
+
"minspersec": "minuti / sec",
|
|
375
|
+
"normalBias": "Bias normale",
|
|
376
|
+
"shadowBias": "Bias ombra",
|
|
377
|
+
"shadowMapSize": "Dimensione texture ombra",
|
|
378
|
+
"shadowType": "Tipo di ombra",
|
|
379
|
+
"shadowVolumeFar": "Volume ombra da",
|
|
380
|
+
"shadowVolumeNear": "Volume ombra a",
|
|
381
|
+
"shadowintensity": "Intensità ombra",
|
|
382
|
+
"shadows": "Abilita ombre",
|
|
383
|
+
"showadvanced": "Mostra avanzato",
|
|
384
|
+
"time": "Ora",
|
|
385
|
+
"zFactor": "Fattore Z"
|
|
386
|
+
},
|
|
387
|
+
"measureComponent": {
|
|
388
|
+
"absolute": "m s.l.m.",
|
|
389
|
+
"areaLabel": "Area",
|
|
390
|
+
"bearingLabel": "Direzione",
|
|
391
|
+
"ground": "m s.l.s.",
|
|
392
|
+
"imperial": "Imperiale",
|
|
393
|
+
"lengthLabel": "Lunghezza",
|
|
394
|
+
"metric": "Metrico",
|
|
395
|
+
"pointLabel": "Posizione"
|
|
396
|
+
},
|
|
397
|
+
"misc": {
|
|
398
|
+
"ctrlclickhint": "Apri con Ctrl+Click"
|
|
399
|
+
},
|
|
400
|
+
"navbar": {
|
|
401
|
+
"perpage": "per pagina"
|
|
402
|
+
},
|
|
403
|
+
"newspopup": {
|
|
404
|
+
"dialogclose": "Chiudi",
|
|
405
|
+
"dontshowagain": "Non mostrare nuovamente",
|
|
406
|
+
"title": "Attualità"
|
|
407
|
+
},
|
|
408
|
+
"numericinput": {
|
|
409
|
+
"angle": "Angolo",
|
|
410
|
+
"featureunsupported": "Formulario numerico non disponibile per questa geometria",
|
|
411
|
+
"height": "Altezza",
|
|
412
|
+
"nofeature": "Nessun oggetto attivo",
|
|
413
|
+
"side": "Lato",
|
|
414
|
+
"width": "Larghezza",
|
|
415
|
+
"windowtitle": "Formulario numerico"
|
|
416
|
+
},
|
|
417
|
+
"panoramax": {
|
|
418
|
+
"notfound": "Nessun immagine disponibile per questa posizione",
|
|
419
|
+
"title": "Visualizzatore Panoramax"
|
|
420
|
+
},
|
|
421
|
+
"pickfeature": {
|
|
422
|
+
"querying": "Query..."
|
|
423
|
+
},
|
|
424
|
+
"portal": {
|
|
425
|
+
"filter": "Filtra temi...",
|
|
426
|
+
"menulabel": "Menu"
|
|
427
|
+
},
|
|
428
|
+
"print": {
|
|
429
|
+
"atlasfeature": "Oggetto atlante",
|
|
430
|
+
"download": "Scarica",
|
|
431
|
+
"download_as_onepdf": "come singolo file PDF",
|
|
432
|
+
"download_as_onezip": "come singolo file ZIP",
|
|
433
|
+
"download_as_single": "come file singoli",
|
|
434
|
+
"format": "Formato",
|
|
435
|
+
"grid": "Griglia",
|
|
436
|
+
"layout": "Layout",
|
|
437
|
+
"legend": "Legenda",
|
|
438
|
+
"maximize": "Massimizza",
|
|
439
|
+
"minimize": "Minimizza",
|
|
440
|
+
"nolayouts": "Nessun layout di stampa",
|
|
441
|
+
"notheme": "Nessun tema selezionato",
|
|
442
|
+
"output": "Stampa",
|
|
443
|
+
"overlap": "Sovrapposizione",
|
|
444
|
+
"pickatlasfeature": "Seleziona nel livello {1}...",
|
|
445
|
+
"resolution": "Risoluzione",
|
|
446
|
+
"rotation": "Rotazione",
|
|
447
|
+
"save": "Salva",
|
|
448
|
+
"scale": "Scala",
|
|
449
|
+
"series": "Stampa serie",
|
|
450
|
+
"submit": "Stampa",
|
|
451
|
+
"wait": "Attendere..."
|
|
452
|
+
},
|
|
453
|
+
"qtdesignerform": {
|
|
454
|
+
"loading": "Caricando formulario..."
|
|
455
|
+
},
|
|
456
|
+
"redlining": {
|
|
457
|
+
"border": "Bordo",
|
|
458
|
+
"buffer": "Buffer",
|
|
459
|
+
"buffercompute": "Calcola",
|
|
460
|
+
"bufferdistance": "Distanza",
|
|
461
|
+
"bufferlayer": "Destinazione",
|
|
462
|
+
"bufferlayername": "Buffer",
|
|
463
|
+
"bufferselectfeature": "Seleziona un oggetto...",
|
|
464
|
+
"circle": "Cerchio",
|
|
465
|
+
"delete": "Elimina",
|
|
466
|
+
"draw": "Disegna",
|
|
467
|
+
"edit": "Modifica",
|
|
468
|
+
"ellipse": "Ellisse",
|
|
469
|
+
"export": "Esporta",
|
|
470
|
+
"freehand": "Mano libera",
|
|
471
|
+
"label": "Ettichetta",
|
|
472
|
+
"layer": "Layer",
|
|
473
|
+
"layertitle": "Disegno",
|
|
474
|
+
"line": "Linea",
|
|
475
|
+
"markers": "Punte",
|
|
476
|
+
"measurements": "Mostra misurazioni",
|
|
477
|
+
"numericinput": "Formulario numerico",
|
|
478
|
+
"pick": "Seleziona",
|
|
479
|
+
"point": "Punto",
|
|
480
|
+
"polygon": "Poligono",
|
|
481
|
+
"rectangle": "Rettangolo",
|
|
482
|
+
"size": "Dimensione",
|
|
483
|
+
"square": "Quadrato",
|
|
484
|
+
"text": "Testo",
|
|
485
|
+
"transform": "Transforma",
|
|
486
|
+
"width": "Larghezza"
|
|
487
|
+
},
|
|
488
|
+
"reports": {
|
|
489
|
+
"all": "Tutti",
|
|
490
|
+
"download": "Scarica",
|
|
491
|
+
"pick": "Seleziona",
|
|
492
|
+
"region": "Seleziona area",
|
|
493
|
+
"selectlayer": "Seleziona livello del rapporto..."
|
|
494
|
+
},
|
|
495
|
+
"routing": {
|
|
496
|
+
"add": "Aggiungi",
|
|
497
|
+
"addviapoint": "Via qui",
|
|
498
|
+
"arriveat": "Arrivo il",
|
|
499
|
+
"clear": "Azzera",
|
|
500
|
+
"computefailed": "Errore durante il calcolo",
|
|
501
|
+
"computing": "Calcolo...",
|
|
502
|
+
"excludepolygons": "Escludi aree",
|
|
503
|
+
"export": "Esporta",
|
|
504
|
+
"fastest": "Più veloce",
|
|
505
|
+
"fromhere": "Da qui",
|
|
506
|
+
"importerror": "Impossibile importare. Il contenuto del file deve essere una GeoJSON FeatureCollection di punti.",
|
|
507
|
+
"importhint": "File contenente una GeoJSON FeatureCollection di punti",
|
|
508
|
+
"importpoints": "Importa",
|
|
509
|
+
"iso_intervals": "Intervalli",
|
|
510
|
+
"iso_mode": "Modalità",
|
|
511
|
+
"iso_mode_distance": "Distanza",
|
|
512
|
+
"iso_mode_time": "Tempo",
|
|
513
|
+
"isocenter": "Centro",
|
|
514
|
+
"isoextracenter": "Ulteriore centro",
|
|
515
|
+
"leaveat": "Partenza il",
|
|
516
|
+
"leavenow": "Parti ora",
|
|
517
|
+
"maxspeed": "Velocità massima",
|
|
518
|
+
"method": "Metodo",
|
|
519
|
+
"mode_auto": "Automobile",
|
|
520
|
+
"mode_bicycle": "Bicicletta",
|
|
521
|
+
"mode_heavyvehicle": "Veicolo pesante",
|
|
522
|
+
"mode_transit": "Transito",
|
|
523
|
+
"mode_walking": "A piedi",
|
|
524
|
+
"optimized_route": "Rotta ottimale",
|
|
525
|
+
"reachability": "Raggiungibilità",
|
|
526
|
+
"roundtrip": "Andata e ritorno",
|
|
527
|
+
"route": "Rotta",
|
|
528
|
+
"shortest": "Più corta",
|
|
529
|
+
"tohere": "A qui",
|
|
530
|
+
"useferries": "Utilizza traghetti",
|
|
531
|
+
"usehighways": "Utilizza autostrade",
|
|
532
|
+
"usetollways": "Utilizza strade a pedaggio",
|
|
533
|
+
"windowtitle": "Routing"
|
|
534
|
+
},
|
|
535
|
+
"scratchdrawing": {
|
|
536
|
+
"finish": "Finito"
|
|
537
|
+
},
|
|
538
|
+
"search": {
|
|
539
|
+
"all": "Tutti",
|
|
540
|
+
"circleradius": "Raggio del cerchio",
|
|
541
|
+
"clearfilter": "Azzera",
|
|
542
|
+
"existinglayer": "Il layer esiste già nella mappa",
|
|
543
|
+
"filter": "Filtro",
|
|
544
|
+
"layers": "Cartine",
|
|
545
|
+
"limittoarea": "Limita a area",
|
|
546
|
+
"more": "{0} ulteriori risultati",
|
|
547
|
+
"nodescription": "Nessuna descrizione disponibile",
|
|
548
|
+
"none": "Nessuna",
|
|
549
|
+
"noresults": "Nessun risultato",
|
|
550
|
+
"placeholder": "Cerca luoghi o aggiungi cartina...",
|
|
551
|
+
"places": "Luoghi",
|
|
552
|
+
"providerselection": "Selezione provider",
|
|
553
|
+
"recent": "Ricerche recenti",
|
|
554
|
+
"search": "Cerca",
|
|
555
|
+
"themelayers": "Livelli di temi",
|
|
556
|
+
"themes": "Temi",
|
|
557
|
+
"unknownmore": "Ulteriori risultati"
|
|
558
|
+
},
|
|
559
|
+
"serviceinfo": {
|
|
560
|
+
"abstract": "Riassunto",
|
|
561
|
+
"contactEmail": "Email",
|
|
562
|
+
"contactOrganization": "Organizzazione",
|
|
563
|
+
"contactPerson": "Persona di contatto",
|
|
564
|
+
"contactPhone": "Telefono",
|
|
565
|
+
"contactPosition": "Posizione",
|
|
566
|
+
"keywords": "Parole chiavi",
|
|
567
|
+
"onlineResource": "Risorsa online",
|
|
568
|
+
"title": "Informazioni sul tema"
|
|
569
|
+
},
|
|
570
|
+
"settings": {
|
|
571
|
+
"bookmarks": "Segnalibri",
|
|
572
|
+
"colorscheme": "Stile",
|
|
573
|
+
"confirmlang": "L'applicazione sarà ricaricata per cambiare la lingua. Procedere?",
|
|
574
|
+
"default": "Predefinito",
|
|
575
|
+
"defaulttheme": "Tema predefinito",
|
|
576
|
+
"defaultthemefailed": "Impossibile cambiare il tema predefinito: {0}",
|
|
577
|
+
"language": "Lingua",
|
|
578
|
+
"systemlang": "Lingua del sistema",
|
|
579
|
+
"themes": "Temi"
|
|
580
|
+
},
|
|
581
|
+
"share": {
|
|
582
|
+
"QRCodeLinkTitle": "Codice QR",
|
|
583
|
+
"directLinkTitle": "Collegamento diretto",
|
|
584
|
+
"expires": "Questo permalink è valido fino al {0}.",
|
|
585
|
+
"norestriction": "Nessuna restrizione",
|
|
586
|
+
"refresh": "Genera permalink",
|
|
587
|
+
"restricttogroup": "Limitare al gruppo",
|
|
588
|
+
"shareTitle": "QWC2",
|
|
589
|
+
"showpin": "Mostra pin",
|
|
590
|
+
"socialIntro": "Social network"
|
|
591
|
+
},
|
|
592
|
+
"snapping": {
|
|
593
|
+
"edge": "Snap ai bordi",
|
|
594
|
+
"loading": "Caricamento delle geometrie per snapping",
|
|
595
|
+
"snappingenabled": "Snapping",
|
|
596
|
+
"vertex": "Snap ai vertici"
|
|
597
|
+
},
|
|
598
|
+
"themelayerslist": {
|
|
599
|
+
"addlayer": "Aggiungi layer",
|
|
600
|
+
"addlayerstotheme": "Aggiungi layer alla mappa corrente",
|
|
601
|
+
"addselectedlayers": "Aggiungi i layer selezionati",
|
|
602
|
+
"existinglayers": "I seguenti layer esistono già nella mappa"
|
|
603
|
+
},
|
|
604
|
+
"themeswitcher": {
|
|
605
|
+
"addlayerstotheme": "Aggiungi layer alla mappa corrente",
|
|
606
|
+
"addtotheme": "Aggiungere al tema corrente",
|
|
607
|
+
"changedefaulttheme": "Imposta come tema predefinito",
|
|
608
|
+
"confirmswitch": "Layer che non fanno parte del tema saranno rimossi. Procedere?",
|
|
609
|
+
"filter": "Filtra...",
|
|
610
|
+
"match": {
|
|
611
|
+
"abstract": "Riassunto",
|
|
612
|
+
"keywords": "Parole chiavi",
|
|
613
|
+
"title": "Titolo"
|
|
614
|
+
},
|
|
615
|
+
"openintab": "Apri in nuova scheda",
|
|
616
|
+
"restrictedthemeinfo": "Non sei autorizzato a visualizzare il tema oppure non hai effettuato il login"
|
|
617
|
+
},
|
|
618
|
+
"timemanager": {
|
|
619
|
+
"animationinterval": "Intervallo animazione",
|
|
620
|
+
"classify": "Classifica per attributo",
|
|
621
|
+
"classifynone": "Nessuno",
|
|
622
|
+
"displayfeatures": "Linea temporale con oggetti",
|
|
623
|
+
"displaylayers": "Linea temporale con livelli",
|
|
624
|
+
"displayminimal": "Solo linea temporale",
|
|
625
|
+
"edit": "Modifica",
|
|
626
|
+
"endtime": "Fine",
|
|
627
|
+
"filterwarning": "Sono attivi filtri sulla mappa",
|
|
628
|
+
"future": "Futuro",
|
|
629
|
+
"group": "Raggruppa per attributo",
|
|
630
|
+
"groupnone": "Nessuno",
|
|
631
|
+
"home": "Ripristina linea temporale",
|
|
632
|
+
"loading": "Caricamento...",
|
|
633
|
+
"loop": "Ripeti",
|
|
634
|
+
"markers": "Marker",
|
|
635
|
+
"notemporaldata": "Nessun layer con dimensioni temporali è attivo nella cartina.",
|
|
636
|
+
"now": "Adesso",
|
|
637
|
+
"past": "Passato",
|
|
638
|
+
"play": "Anima",
|
|
639
|
+
"playrev": "Anima indietro",
|
|
640
|
+
"rewind": "Resetta animazione",
|
|
641
|
+
"starttime": "Inizio",
|
|
642
|
+
"stepback": "Passo indietro",
|
|
643
|
+
"stepfwd": "Passo avanti",
|
|
644
|
+
"stepsize": "Passo",
|
|
645
|
+
"stop": "Ferma animazione",
|
|
646
|
+
"timeline": "Linea temporale",
|
|
647
|
+
"timeline_fixed": "Fissa",
|
|
648
|
+
"timeline_infinite": "Infinita",
|
|
649
|
+
"timelinedisplay": "Visualizzazione",
|
|
650
|
+
"timelinescale": "Scala temporale (non-linearità)",
|
|
651
|
+
"title": "Linea temporale",
|
|
652
|
+
"toggle": "Abilità gesitone temporale",
|
|
653
|
+
"unit": {
|
|
654
|
+
"century": "secoli",
|
|
655
|
+
"days": "giorni",
|
|
656
|
+
"decade": "decenni",
|
|
657
|
+
"hours": "ore",
|
|
658
|
+
"milliseconds": "millisecondi",
|
|
659
|
+
"minutes": "minuti",
|
|
660
|
+
"months": "mesi",
|
|
661
|
+
"seconds": "secondi",
|
|
662
|
+
"years": "anni"
|
|
663
|
+
},
|
|
664
|
+
"zoomin": "Ingrandisci",
|
|
665
|
+
"zoomout": "Rimpicciolisci"
|
|
666
|
+
},
|
|
667
|
+
"tooltip": {
|
|
668
|
+
"background": "Cambia sfondo",
|
|
669
|
+
"fullscreendisable": "Disattiva modalità schermo intero",
|
|
670
|
+
"fullscreenenable": "Attiva modalitä schermo intero",
|
|
671
|
+
"home": "Mostra tutta la mappa intera",
|
|
672
|
+
"zoomin": "Ingrandisci",
|
|
673
|
+
"zoomout": "Rimpicciolisci"
|
|
674
|
+
},
|
|
675
|
+
"valuetool": {
|
|
676
|
+
"all": "Tutte",
|
|
677
|
+
"allbands": "Tutte le bande",
|
|
678
|
+
"alllayers": "Tutti i livelli",
|
|
679
|
+
"bands": "Bande",
|
|
680
|
+
"graph": "Grafico",
|
|
681
|
+
"layer": "Livello",
|
|
682
|
+
"nodata": "Nessun dato",
|
|
683
|
+
"options": "Opzioni",
|
|
684
|
+
"selectedbands": "Bande selezionate",
|
|
685
|
+
"selectedlayers": "Livelli selezionati",
|
|
686
|
+
"selectlayersbands": "Seleziona livelli / bande",
|
|
687
|
+
"showbands": "Bande",
|
|
688
|
+
"showlayers": "Livelli",
|
|
689
|
+
"table": "Tabelle",
|
|
690
|
+
"title": "Value Tool",
|
|
691
|
+
"visiblelayers": "Livelli visibili"
|
|
692
|
+
},
|
|
693
|
+
"vectorlayerpicker": {
|
|
694
|
+
"none": "Nessuno",
|
|
695
|
+
"prompt": "Nome del layer"
|
|
696
|
+
},
|
|
697
|
+
"window": {
|
|
698
|
+
"close": "Chiudi",
|
|
699
|
+
"detach": "Staccare",
|
|
700
|
+
"dock": "Aggancia",
|
|
701
|
+
"embed": "Incorporare",
|
|
702
|
+
"maximize": "Massimizza",
|
|
703
|
+
"minimize": "Minimizza",
|
|
704
|
+
"undock": "Sgancia",
|
|
705
|
+
"unmaximize": "Ripristina",
|
|
706
|
+
"unminimize": "Ingrandisci"
|
|
707
|
+
}
|
|
708
|
+
}
|
|
709
|
+
}
|