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": "fr-FR",
|
|
3
|
+
"messages": {
|
|
4
|
+
"app": {
|
|
5
|
+
"missingbg": "Impossible de trouver le fond \"{0}\", affichage du fond par défaut.",
|
|
6
|
+
"missinglayers": "Impossible de trouver les couches suivantes: {0}.",
|
|
7
|
+
"missingpermalink": "Le permalien ou le signet n'est pas valide ou a expiré.",
|
|
8
|
+
"missingprojection": "Impossible de charger le thème \"{0}\": la projection {1} n'est pas définie.",
|
|
9
|
+
"missingtheme": "Impossible de trouver le thème \"{0}\", chargement du thème par défaut."
|
|
10
|
+
},
|
|
11
|
+
"appmenu": {
|
|
12
|
+
"filter": "Filtrer le menu...",
|
|
13
|
+
"items": {
|
|
14
|
+
"Bookmark": "Marque-pages",
|
|
15
|
+
"Compare3D": "Comparer",
|
|
16
|
+
"Editing": "Editer",
|
|
17
|
+
"ExportObjects3D": "Exporter objets",
|
|
18
|
+
"Help": "Aide",
|
|
19
|
+
"HideObjects3D": "Cacher objets",
|
|
20
|
+
"LayerTree": "Couches",
|
|
21
|
+
"LayerTree3D": "Couches",
|
|
22
|
+
"MapExport": "Exporter la carte",
|
|
23
|
+
"MapExport3D": "Exporter la carte",
|
|
24
|
+
"MapFilter": "Filtrer la carte",
|
|
25
|
+
"MapLight3D": "Illumination et ombres",
|
|
26
|
+
"Print": "Imprimer",
|
|
27
|
+
"Reports": "Rapports",
|
|
28
|
+
"Settings": "Paramètres",
|
|
29
|
+
"Share": "Partager",
|
|
30
|
+
"ThemeSwitcher": "Thèmes",
|
|
31
|
+
"AttributeTable": "Table d'attributs",
|
|
32
|
+
"AuthenticationLogin": "Connexion",
|
|
33
|
+
"AuthenticationLogout": "Déconnexion",
|
|
34
|
+
"Cyclomedia": "Cyclomedia",
|
|
35
|
+
"Draw3D": "Dessiner",
|
|
36
|
+
"FeatureForm": "Formulaire d'objet",
|
|
37
|
+
"FeatureSearch": "Recherche objet",
|
|
38
|
+
"GeometryDigitizer": "Digitalisation des géométries",
|
|
39
|
+
"IdentifyPoint": "Interroger point",
|
|
40
|
+
"IdentifyRegion": "Interroger la région",
|
|
41
|
+
"LayerCatalog": "Catalogue des couches",
|
|
42
|
+
"Login": "Connexion",
|
|
43
|
+
"Logout": "Déconnexion",
|
|
44
|
+
"MapLegend": "Légende",
|
|
45
|
+
"Measure": "Mesurer",
|
|
46
|
+
"Measure3D": "Mesurer",
|
|
47
|
+
"MeasureLineString": "Mesurer une ligne",
|
|
48
|
+
"MeasurePolygon": "Mesurer un polygone",
|
|
49
|
+
"NewsPopup": "Actualités",
|
|
50
|
+
"Panoramax": "Panoramax",
|
|
51
|
+
"Portal": "Portail",
|
|
52
|
+
"PrintScreen3D": "Export raster",
|
|
53
|
+
"Redlining": "Dessiner",
|
|
54
|
+
"Routing": "Routage",
|
|
55
|
+
"Tools": "Outils",
|
|
56
|
+
"TimeManager": "Ligne du temps",
|
|
57
|
+
"View3D": "Vue 3D"
|
|
58
|
+
},
|
|
59
|
+
"menulabel": "Cartes et outils"
|
|
60
|
+
},
|
|
61
|
+
"attribtable": {
|
|
62
|
+
"addfeature": "Ajouter un objet",
|
|
63
|
+
"commit": "Enregistrer les modifications",
|
|
64
|
+
"csvexport": "Exporter en CSV",
|
|
65
|
+
"delete": "Supprimer",
|
|
66
|
+
"deletefailed": "Un ou plusieurs objets n'ont pas pu être supprimés",
|
|
67
|
+
"deletefeatures": "Suppression des objets sélectionnés",
|
|
68
|
+
"deleting": "Suppression en cours...",
|
|
69
|
+
"discard": "Abandonner les modifications",
|
|
70
|
+
"formeditmode": "Basculer sur la vue formulaire",
|
|
71
|
+
"geomnoadd": "Veuillez utiliser le formulaire d'édition pour ajouter de nouveaux objets à cette couche",
|
|
72
|
+
"limittoextent": "Dans l'étendue de la carte",
|
|
73
|
+
"loadfailed": "Echec du chargement de l'objet",
|
|
74
|
+
"loading": "Chargement en cours...",
|
|
75
|
+
"nodelete": "Ne pas supprimer",
|
|
76
|
+
"nogeomnoform": "Le formulaire d'édition n'est pas disponible pour les couches sans géométrie",
|
|
77
|
+
"pleasereload": "Veuillez cliquer sur 'Actualiser' pour charger la table d'attributs",
|
|
78
|
+
"reload": "Actualiser",
|
|
79
|
+
"selectlayer": "Sélectionner une couche...",
|
|
80
|
+
"title": "Table d'attributs",
|
|
81
|
+
"zoomtoselection": "Zommer sur les objets sélectionnés"
|
|
82
|
+
},
|
|
83
|
+
"bgswitcher": {
|
|
84
|
+
"nobg": "Pas de fond"
|
|
85
|
+
},
|
|
86
|
+
"bookmark": {
|
|
87
|
+
"add": "Ajouter un marque-page",
|
|
88
|
+
"addfailed": "Echec de création du marque-page",
|
|
89
|
+
"description": "Entrer la description...",
|
|
90
|
+
"lastUpdate": "Dernier enregistrement",
|
|
91
|
+
"manage": "Gérer les marque-pages",
|
|
92
|
+
"nobookmarks": "Pas de marque-pages",
|
|
93
|
+
"notloggedin": "Vous avez besoin d'être authentifié pour pouvoir enregistrer des marques-pages",
|
|
94
|
+
"open": "Ouvrir le marque-page dans l'onglet courant",
|
|
95
|
+
"openTab": "Ouvrir le marque-page dans un nouvel onglet",
|
|
96
|
+
"remove": "Supprimer le marque-page",
|
|
97
|
+
"removefailed": "Echec de suppression du marque-page",
|
|
98
|
+
"savefailed": "Echec d'enregistrement du marque-page",
|
|
99
|
+
"update": "Sauvegarder le marque-page",
|
|
100
|
+
"zoomToExtent": "Zommer sur l'étendue"
|
|
101
|
+
},
|
|
102
|
+
"bottombar": {
|
|
103
|
+
"mousepos_label": "Coordonnées",
|
|
104
|
+
"scale_label": "Echelle",
|
|
105
|
+
"terms_label": "Conditions d'utilisation",
|
|
106
|
+
"viewertitle_label": "Page d'accueil"
|
|
107
|
+
},
|
|
108
|
+
"compare3d": {
|
|
109
|
+
"clipplane": "Plan d'écrêtage",
|
|
110
|
+
"compare_objects": "Comparer objets",
|
|
111
|
+
"toggleall": "Tous"
|
|
112
|
+
},
|
|
113
|
+
"cookiepopup": {
|
|
114
|
+
"accept": "Accepter",
|
|
115
|
+
"message": "Ce site web utilise des cookies."
|
|
116
|
+
},
|
|
117
|
+
"copybtn": {
|
|
118
|
+
"click_to_copy": "Cliquer pour copier",
|
|
119
|
+
"copied": "Copié",
|
|
120
|
+
"copyfailed": "Impossible de copier"
|
|
121
|
+
},
|
|
122
|
+
"cyclomedia": {
|
|
123
|
+
"clickonmap": "Cliquez sur un enregistrement sur la carte",
|
|
124
|
+
"initializing": "Initialisation de Cyclomedia...",
|
|
125
|
+
"loaderror": "Échec de l'initialisation de Cyclomedia",
|
|
126
|
+
"loading": "Chargement",
|
|
127
|
+
"login": "Connexion",
|
|
128
|
+
"scalehint": "Les enregistrements ne sont visibles que sur la carte sous l'échelle 1 :{0}.",
|
|
129
|
+
"title": "Visualiseur Cyclomedia"
|
|
130
|
+
},
|
|
131
|
+
"draw3d": {
|
|
132
|
+
"cone": "Cône",
|
|
133
|
+
"cuboid": "Cuboïde",
|
|
134
|
+
"cylinder": "Cylindre",
|
|
135
|
+
"delete": "Effacer",
|
|
136
|
+
"drawings": "Dessins",
|
|
137
|
+
"intersect": "Croiser",
|
|
138
|
+
"newgroupprompt": "Ajouter un groupe de dessin",
|
|
139
|
+
"numericinput": "Entrée numérique",
|
|
140
|
+
"pick": "Choisir",
|
|
141
|
+
"position": "Position",
|
|
142
|
+
"pyramid": "Pyramide",
|
|
143
|
+
"rotate": "Tourner",
|
|
144
|
+
"rotation": "Rotation",
|
|
145
|
+
"scale": "Redimensionner",
|
|
146
|
+
"sphere": "Sphère",
|
|
147
|
+
"subtract": "Soustraire",
|
|
148
|
+
"thescale": "Echelle",
|
|
149
|
+
"translate": "Déplacer",
|
|
150
|
+
"undoBool": "Annuler l'opération",
|
|
151
|
+
"union": "Unir",
|
|
152
|
+
"wedge": "Coin"
|
|
153
|
+
},
|
|
154
|
+
"editing": {
|
|
155
|
+
"add": "Ajouter",
|
|
156
|
+
"attrtable": "Table",
|
|
157
|
+
"canceldelete": "Annuler la suppression",
|
|
158
|
+
"clearpicture": "Réinitialiser",
|
|
159
|
+
"commit": "Appliquer",
|
|
160
|
+
"commitfailed": "Échec de l'enregistrement",
|
|
161
|
+
"contraintviolation": "Violation de contrainte",
|
|
162
|
+
"create": "Créer",
|
|
163
|
+
"delete": "Supprimer",
|
|
164
|
+
"discard": "Rejeter",
|
|
165
|
+
"draw": "Dessiner",
|
|
166
|
+
"feature": "Objet",
|
|
167
|
+
"geomreadonly": "La géométrie contient des valeurs Z non nulles et ne peut donc pas être modifiée.",
|
|
168
|
+
"invalidform": "Formulaire non valide",
|
|
169
|
+
"maximize": "Maximiser",
|
|
170
|
+
"minimize": "Minimiser",
|
|
171
|
+
"noeditablelayers": "Il n'y a pas de couche éditable pour ce thème",
|
|
172
|
+
"paint": "Éditer",
|
|
173
|
+
"pick": "Choisir",
|
|
174
|
+
"pickdrawfeature": "Copier la géométrie existante",
|
|
175
|
+
"reallydelete": "Supprimer",
|
|
176
|
+
"relationcommitfailed": "Certaines relations n'ont pas pu être enregistrées. Pour plus de détails consulter le bouton d'informations",
|
|
177
|
+
"select": "Sélectionner",
|
|
178
|
+
"takepicture": "Ajouter une photo",
|
|
179
|
+
"unsavedchanged": "Il y a des modifications non enregistrées. Faut-il quand même quitter la page?"
|
|
180
|
+
},
|
|
181
|
+
"featureform": {
|
|
182
|
+
"feature": "Objet",
|
|
183
|
+
"noresults": "Pas de résultats",
|
|
184
|
+
"querying": "Identification en cours...",
|
|
185
|
+
"title": "Formulaire d'objet"
|
|
186
|
+
},
|
|
187
|
+
"featuresearch": {
|
|
188
|
+
"noresults": "Pas de résultats",
|
|
189
|
+
"query": "Terme",
|
|
190
|
+
"select": "Sélectionner",
|
|
191
|
+
"title": "Recherche objet"
|
|
192
|
+
},
|
|
193
|
+
"fileselector": {
|
|
194
|
+
"files": "Fichiers",
|
|
195
|
+
"placeholder": "Choisir un fichier..."
|
|
196
|
+
},
|
|
197
|
+
"geomdigitizer": {
|
|
198
|
+
"applink": "Application",
|
|
199
|
+
"bufferlayername": "Tampon",
|
|
200
|
+
"chooselink": "Choisir...",
|
|
201
|
+
"clear": "Effacer la couche",
|
|
202
|
+
"identifypick": "Choisir un objet",
|
|
203
|
+
"identifypickregion": "Sélectionner des objets dans la région",
|
|
204
|
+
"layername": "Digitalisation",
|
|
205
|
+
"line_buffer": "Ligne (sera tamponnée)",
|
|
206
|
+
"point_buffer": "Point (sera tamponnée)",
|
|
207
|
+
"selfinter": "Un ou plusieurs polygones contiennent des auto-intersections",
|
|
208
|
+
"send": "Envoyer",
|
|
209
|
+
"wait": "Chargement..."
|
|
210
|
+
},
|
|
211
|
+
"heightprofile": {
|
|
212
|
+
"asl": "s/mer",
|
|
213
|
+
"distance": "Distance",
|
|
214
|
+
"drawnodes": "Dessiner des nœuds",
|
|
215
|
+
"error": "Échec du calcul du profil de hauteur",
|
|
216
|
+
"export": "Exporter le profil",
|
|
217
|
+
"height": "Altitude",
|
|
218
|
+
"loading": "Calcul du profil de hauteur...",
|
|
219
|
+
"loadingimage": "Chargement de l'image de la carte...",
|
|
220
|
+
"print": "Imprimer le profil de hauteur",
|
|
221
|
+
"title": "Profil de hauteur"
|
|
222
|
+
},
|
|
223
|
+
"hideobjects3d": {
|
|
224
|
+
"clickonmap": "Cliquer sur les objets pour les cacher...",
|
|
225
|
+
"object": "Objet",
|
|
226
|
+
"restore": "Restaurer l'objet",
|
|
227
|
+
"restoreall": "Restaurer tous"
|
|
228
|
+
},
|
|
229
|
+
"identify": {
|
|
230
|
+
"aggregatedreport": "Rapport agrégé",
|
|
231
|
+
"clipboard": "Copier dans le presse-papiers",
|
|
232
|
+
"download": "Télécharger",
|
|
233
|
+
"export": "Exporter",
|
|
234
|
+
"featureReport": "Données de l'objet",
|
|
235
|
+
"featurecount": "Éléments sélectionnés",
|
|
236
|
+
"layerall": "Toutes les couches",
|
|
237
|
+
"link": "Lien",
|
|
238
|
+
"noattributes": "Pas d'attribut",
|
|
239
|
+
"noresults": "Pas de résultats pour la position sélectionnée",
|
|
240
|
+
"querying": "Identification en cours...",
|
|
241
|
+
"reportfail": "Le rapport n'a pas été généré",
|
|
242
|
+
"selectlayer": "Sélectionner la couche...",
|
|
243
|
+
"title": "Informations sur l'objet"
|
|
244
|
+
},
|
|
245
|
+
"imageeditor": {
|
|
246
|
+
"confirmclose": "Fermer sans enregistrer?",
|
|
247
|
+
"title": "Traitement des images"
|
|
248
|
+
},
|
|
249
|
+
"importlayer": {
|
|
250
|
+
"addfailed": "La couche n'a pas pu être ajoutée",
|
|
251
|
+
"addlayer": "Ajouter une couche",
|
|
252
|
+
"asgroup": "Ajouter comme groupe",
|
|
253
|
+
"connect": "Connecter",
|
|
254
|
+
"filter": "Filtrer",
|
|
255
|
+
"loading": "Chargement...",
|
|
256
|
+
"localfile": "Fichier local",
|
|
257
|
+
"nofeatures": "Aucune entité ne peut être importée.",
|
|
258
|
+
"noresults": "Pas de résultat ou URL non valide",
|
|
259
|
+
"notgeopdf": "Le fichier sélectionné ne semble pas être un GeoPDF.",
|
|
260
|
+
"shpreprojectionerror": "La géométrie du fichier Shapefile n'a pas pu être reprojetée et peut être mal placée.",
|
|
261
|
+
"supportedformats": "Formats supportés: KML, GeoJSON, GeoPDF, SHP (zip)",
|
|
262
|
+
"unknownproj": "Le GeoPDF sélectionné utilise une projection inconnue: {0}.",
|
|
263
|
+
"url": "URL",
|
|
264
|
+
"urlplaceholder": "Entrer l'URL d'un WMS, WMTS, WFS..."
|
|
265
|
+
},
|
|
266
|
+
"infotool": {
|
|
267
|
+
"clickhelpPoint": "Cliquez sur un emplacement pour l'identifier sur la carte...",
|
|
268
|
+
"clickhelpPolygon": "Dessiner un polygone pour identifier les objets",
|
|
269
|
+
"clickhelpRadius": "Configurez un rayon et cliquez sur un emplacement pour identifier les objets autour de ce point",
|
|
270
|
+
"radius": "Rayon"
|
|
271
|
+
},
|
|
272
|
+
"layercatalog": {
|
|
273
|
+
"windowtitle": "Catalogue de couches"
|
|
274
|
+
},
|
|
275
|
+
"layerinfo": {
|
|
276
|
+
"abstract": "Résumé",
|
|
277
|
+
"attribution": "Attribution",
|
|
278
|
+
"dataUrl": "URL des données",
|
|
279
|
+
"keywords": "Mots-clés",
|
|
280
|
+
"legend": "Légende",
|
|
281
|
+
"maxscale": "Echelle max",
|
|
282
|
+
"metadataUrl": "URL des métadonnées",
|
|
283
|
+
"minscale": "Echelle min",
|
|
284
|
+
"title": "Informations sur la couche"
|
|
285
|
+
},
|
|
286
|
+
"layertree": {
|
|
287
|
+
"compare": "Comparer",
|
|
288
|
+
"deletealllayers": "Supprimer toutes les couches",
|
|
289
|
+
"importlayer": "Importer une couche",
|
|
290
|
+
"maptip": "Afficher les infobulles",
|
|
291
|
+
"printlegend": "Imprimer la légende",
|
|
292
|
+
"separator": "Séparateur",
|
|
293
|
+
"separatortooltip": "Ajouter séparateur",
|
|
294
|
+
"transparency": "Transparence",
|
|
295
|
+
"visiblefilter": "Filtrer couches invisibles",
|
|
296
|
+
"zoomtolayer": "Zoomer sur la couche"
|
|
297
|
+
},
|
|
298
|
+
"layertree3d": {
|
|
299
|
+
"import": "Importer",
|
|
300
|
+
"importobjects": "Importer objets",
|
|
301
|
+
"layers": "Couches",
|
|
302
|
+
"objects": "Objets",
|
|
303
|
+
"supportedformats": "Formats supportés: GLTF",
|
|
304
|
+
"zoomtoobject": "Zoomer sur le objet"
|
|
305
|
+
},
|
|
306
|
+
"linkfeatureform": {
|
|
307
|
+
"cancel": "Annuler",
|
|
308
|
+
"close": "Fermer",
|
|
309
|
+
"drawhint": "Dessiner un objet sur la carte...",
|
|
310
|
+
"pickhint": "Sélectionner un objet sur la carte..."
|
|
311
|
+
},
|
|
312
|
+
"locate": {
|
|
313
|
+
"feetUnit": "pieds",
|
|
314
|
+
"metersUnit": "mètres",
|
|
315
|
+
"popup": "Vous êtes dans un périmètre de {distance} {unit} de ce point",
|
|
316
|
+
"statustooltip": {
|
|
317
|
+
"DISABLED": "Position: désactivée",
|
|
318
|
+
"ENABLED": "Position: activée",
|
|
319
|
+
"FOLLOWING": "Position: bouger avec le GPS",
|
|
320
|
+
"LOCATING": "Position: en cours...",
|
|
321
|
+
"PERMISSION_DENIED": "Position: accès refusé"
|
|
322
|
+
}
|
|
323
|
+
},
|
|
324
|
+
"map": {
|
|
325
|
+
"loading": "Chargement de la carte...",
|
|
326
|
+
"resetrotation": "Réinitialiser la rotation"
|
|
327
|
+
},
|
|
328
|
+
"map3d": {
|
|
329
|
+
"syncview": "Synchroniser la vue",
|
|
330
|
+
"terrain": "Terrain",
|
|
331
|
+
"title": "Vue 3D"
|
|
332
|
+
},
|
|
333
|
+
"mapexport": {
|
|
334
|
+
"configuration": "Configuration",
|
|
335
|
+
"format": "Format",
|
|
336
|
+
"resolution": "Résolution",
|
|
337
|
+
"scale": "Echelle",
|
|
338
|
+
"size": "Dimension",
|
|
339
|
+
"submit": "Exporter",
|
|
340
|
+
"usersize": "Selectionner sur la carte...",
|
|
341
|
+
"wait": "Veuillez patienter..."
|
|
342
|
+
},
|
|
343
|
+
"mapfilter": {
|
|
344
|
+
"addcustomfilter": "Ajouter filtre personnalisé",
|
|
345
|
+
"brokenrendering": "Le rendu de la carte peut être interrompu à cause d'une expression filtre invalide",
|
|
346
|
+
"cancel": "Annuler",
|
|
347
|
+
"geomfilter": "Géométrique",
|
|
348
|
+
"hidefiltergeom": "Masquer la géométrie du filtre",
|
|
349
|
+
"invalidfilter": "Expression de filtre non valide",
|
|
350
|
+
"save": "Enregistrer",
|
|
351
|
+
"select": "Sélectionner...",
|
|
352
|
+
"selectlayer": "Sélectionner couche",
|
|
353
|
+
"timefilter": "Temporelle",
|
|
354
|
+
"timefrom": "De",
|
|
355
|
+
"timeto": "A"
|
|
356
|
+
},
|
|
357
|
+
"mapinfotooltip": {
|
|
358
|
+
"elevation": "Altitude",
|
|
359
|
+
"title": "Position"
|
|
360
|
+
},
|
|
361
|
+
"maplegend": {
|
|
362
|
+
"bboxdependent": "Légende dépendante de l'étendue de la carte",
|
|
363
|
+
"onlyvisible": "Seulement les couches visibles",
|
|
364
|
+
"scaledependent": "Légende dépendante de l'échelle de la carte",
|
|
365
|
+
"windowtitle": "Légende"
|
|
366
|
+
},
|
|
367
|
+
"maplight3d": {
|
|
368
|
+
"ambientLightIntensity": "Intensité lumineuse ambiante",
|
|
369
|
+
"animationstep": "Pas d'animation",
|
|
370
|
+
"date": "Date",
|
|
371
|
+
"dayspersec": "jours / sec",
|
|
372
|
+
"directionalLightIntensity": "Intensité lumineuse directionnelle",
|
|
373
|
+
"helpersVisible": "Montrer les aides",
|
|
374
|
+
"minspersec": "minutes / sec",
|
|
375
|
+
"normalBias": "Bias normal",
|
|
376
|
+
"shadowBias": "Bias de l'ombre",
|
|
377
|
+
"shadowMapSize": "Taille texture d'ombre",
|
|
378
|
+
"shadowType": "Type d'ombre",
|
|
379
|
+
"shadowVolumeFar": "Volume d'ombre de",
|
|
380
|
+
"shadowVolumeNear": "Volume d'ombre à",
|
|
381
|
+
"shadowintensity": "Intensité de l'ombre",
|
|
382
|
+
"shadows": "Activer les ombres",
|
|
383
|
+
"showadvanced": "Paramètres avancés",
|
|
384
|
+
"time": "Heure",
|
|
385
|
+
"zFactor": "Facteur z"
|
|
386
|
+
},
|
|
387
|
+
"measureComponent": {
|
|
388
|
+
"absolute": "m alt.",
|
|
389
|
+
"areaLabel": "Surface",
|
|
390
|
+
"bearingLabel": "Direction",
|
|
391
|
+
"ground": "m a.d.s.",
|
|
392
|
+
"imperial": "Impérial",
|
|
393
|
+
"lengthLabel": "Longueur",
|
|
394
|
+
"metric": "Métrique",
|
|
395
|
+
"pointLabel": "Position"
|
|
396
|
+
},
|
|
397
|
+
"misc": {
|
|
398
|
+
"ctrlclickhint": "Ouvrir avec Ctrl+Clic"
|
|
399
|
+
},
|
|
400
|
+
"navbar": {
|
|
401
|
+
"perpage": "Par page"
|
|
402
|
+
},
|
|
403
|
+
"newspopup": {
|
|
404
|
+
"dialogclose": "Fermer",
|
|
405
|
+
"dontshowagain": "Ne plus montrer",
|
|
406
|
+
"title": "Actualités"
|
|
407
|
+
},
|
|
408
|
+
"numericinput": {
|
|
409
|
+
"angle": "Angle",
|
|
410
|
+
"featureunsupported": "Entrée numérique non disponible pour cette géométrie",
|
|
411
|
+
"height": "Hauteur",
|
|
412
|
+
"nofeature": "Aucune objet active",
|
|
413
|
+
"side": "Côté",
|
|
414
|
+
"width": "Largeur",
|
|
415
|
+
"windowtitle": "Entrée numérique"
|
|
416
|
+
},
|
|
417
|
+
"panoramax": {
|
|
418
|
+
"notfound": "Il n'y a pas d'image disponible pour cet emplacement.",
|
|
419
|
+
"title": "Visionneuse Panoramax"
|
|
420
|
+
},
|
|
421
|
+
"pickfeature": {
|
|
422
|
+
"querying": "Interrogation"
|
|
423
|
+
},
|
|
424
|
+
"portal": {
|
|
425
|
+
"filter": "Filtrer les thèmes...",
|
|
426
|
+
"menulabel": "Menu"
|
|
427
|
+
},
|
|
428
|
+
"print": {
|
|
429
|
+
"atlasfeature": "Objet atlas",
|
|
430
|
+
"download": "Télécharger",
|
|
431
|
+
"download_as_onepdf": "en un seul document PDF",
|
|
432
|
+
"download_as_onezip": "en un seul fichier ZIP",
|
|
433
|
+
"download_as_single": "en fichiers séparés",
|
|
434
|
+
"format": "Format",
|
|
435
|
+
"grid": "Grille",
|
|
436
|
+
"layout": "Mise en page",
|
|
437
|
+
"legend": "Légende",
|
|
438
|
+
"maximize": "Maximiser",
|
|
439
|
+
"minimize": "Minimiser",
|
|
440
|
+
"nolayouts": "Il n'y a pas de mise en page disponible pour le thème choisi.",
|
|
441
|
+
"notheme": "Pas de thème sélectionné",
|
|
442
|
+
"output": "Impression",
|
|
443
|
+
"overlap": "Superposition",
|
|
444
|
+
"pickatlasfeature": "Choisir dans la couche {0}",
|
|
445
|
+
"resolution": "Résolution",
|
|
446
|
+
"rotation": "Rotation",
|
|
447
|
+
"save": "Enregistrer",
|
|
448
|
+
"scale": "Echelle",
|
|
449
|
+
"series": "Impression en série",
|
|
450
|
+
"submit": "Imprimer",
|
|
451
|
+
"wait": "Veuillez patienter..."
|
|
452
|
+
},
|
|
453
|
+
"qtdesignerform": {
|
|
454
|
+
"loading": "Chargement du formulaire..."
|
|
455
|
+
},
|
|
456
|
+
"redlining": {
|
|
457
|
+
"border": "Bordure",
|
|
458
|
+
"buffer": "Tampon",
|
|
459
|
+
"buffercompute": "Calculer",
|
|
460
|
+
"bufferdistance": "Distance",
|
|
461
|
+
"bufferlayer": "Couche cible",
|
|
462
|
+
"bufferlayername": "Sortie",
|
|
463
|
+
"bufferselectfeature": "Choisissez une entité pour le tampon...",
|
|
464
|
+
"circle": "Cercle",
|
|
465
|
+
"delete": "Effacer",
|
|
466
|
+
"draw": "Dessiner",
|
|
467
|
+
"edit": "Editer",
|
|
468
|
+
"ellipse": "Ellipse",
|
|
469
|
+
"export": "Exporter",
|
|
470
|
+
"freehand": "Dessin à main libre",
|
|
471
|
+
"label": "Texte",
|
|
472
|
+
"layer": "Couche",
|
|
473
|
+
"layertitle": "Dessin",
|
|
474
|
+
"line": "Ligne",
|
|
475
|
+
"markers": "Pointes",
|
|
476
|
+
"measurements": "Montrer les mesures",
|
|
477
|
+
"numericinput": "Entrée numérique",
|
|
478
|
+
"pick": "Choisir",
|
|
479
|
+
"point": "Point",
|
|
480
|
+
"polygon": "Polygone",
|
|
481
|
+
"rectangle": "Rectangle",
|
|
482
|
+
"size": "Taille",
|
|
483
|
+
"square": "Carré",
|
|
484
|
+
"text": "Texte",
|
|
485
|
+
"transform": "Transformer",
|
|
486
|
+
"width": "Largeur"
|
|
487
|
+
},
|
|
488
|
+
"reports": {
|
|
489
|
+
"all": "Tous",
|
|
490
|
+
"download": "Télécharger",
|
|
491
|
+
"pick": "Selectionner",
|
|
492
|
+
"region": "Selectionner region",
|
|
493
|
+
"selectlayer": "Sélectionner la couche du rapport..."
|
|
494
|
+
},
|
|
495
|
+
"routing": {
|
|
496
|
+
"add": "Ajouter",
|
|
497
|
+
"addviapoint": "Par ici",
|
|
498
|
+
"arriveat": "Arriver à",
|
|
499
|
+
"clear": "Réinitialiser",
|
|
500
|
+
"computefailed": "Échec du calcul",
|
|
501
|
+
"computing": "Calculation...",
|
|
502
|
+
"excludepolygons": "Exclure les zones",
|
|
503
|
+
"export": "Exporter",
|
|
504
|
+
"fastest": "Plus rapide",
|
|
505
|
+
"fromhere": "À partir d'ici",
|
|
506
|
+
"importerror": "Impossible d'importer. Le contenu du fichier doit être une GeoJSON FeatureCollection de points",
|
|
507
|
+
"importhint": "Fichier contenant une GeoJSON FeatureCollection de points",
|
|
508
|
+
"importpoints": "Importer",
|
|
509
|
+
"iso_intervals": "Intervalles",
|
|
510
|
+
"iso_mode": "Mode",
|
|
511
|
+
"iso_mode_distance": "Distance",
|
|
512
|
+
"iso_mode_time": "Temps",
|
|
513
|
+
"isocenter": "Centre",
|
|
514
|
+
"isoextracenter": "Centre additionnel",
|
|
515
|
+
"leaveat": "Partir à",
|
|
516
|
+
"leavenow": "Partir maintenant",
|
|
517
|
+
"maxspeed": "Vitesse maximale",
|
|
518
|
+
"method": "Méthode",
|
|
519
|
+
"mode_auto": "Automobile",
|
|
520
|
+
"mode_bicycle": "Bicyclette",
|
|
521
|
+
"mode_heavyvehicle": "Véhicule lourd",
|
|
522
|
+
"mode_transit": "Transit",
|
|
523
|
+
"mode_walking": "Marcher",
|
|
524
|
+
"optimized_route": "Route optimale",
|
|
525
|
+
"reachability": "Accessibilité",
|
|
526
|
+
"roundtrip": "Aller-retour",
|
|
527
|
+
"route": "Route",
|
|
528
|
+
"shortest": "Plus courte",
|
|
529
|
+
"tohere": "Jusqu'ici",
|
|
530
|
+
"useferries": "Utiliser les ferries",
|
|
531
|
+
"usehighways": "Utiliser les autoroutes",
|
|
532
|
+
"usetollways": "Utiliser les péages",
|
|
533
|
+
"windowtitle": "Routage"
|
|
534
|
+
},
|
|
535
|
+
"scratchdrawing": {
|
|
536
|
+
"finish": "Terminer"
|
|
537
|
+
},
|
|
538
|
+
"search": {
|
|
539
|
+
"all": "Tous",
|
|
540
|
+
"circleradius": "Rayon du cercle",
|
|
541
|
+
"clearfilter": "Effacer",
|
|
542
|
+
"existinglayer": "La couche existe déjà dans la carte",
|
|
543
|
+
"filter": "Affiner la recherche",
|
|
544
|
+
"layers": "Couches",
|
|
545
|
+
"limittoarea": "Limiter à la région",
|
|
546
|
+
"more": "{0} autres résultats",
|
|
547
|
+
"nodescription": "Pas de description disponible",
|
|
548
|
+
"none": "Aucune",
|
|
549
|
+
"noresults": "Pas de résultats",
|
|
550
|
+
"placeholder": "Rechercher un lieu ou ajouter une carte...",
|
|
551
|
+
"places": "Lieus",
|
|
552
|
+
"providerselection": "Services de recherche",
|
|
553
|
+
"recent": "Recherches récentes",
|
|
554
|
+
"search": "Chercher",
|
|
555
|
+
"themelayers": "Couches de thèmes",
|
|
556
|
+
"themes": "Cartes",
|
|
557
|
+
"unknownmore": "Plus de résultats"
|
|
558
|
+
},
|
|
559
|
+
"serviceinfo": {
|
|
560
|
+
"abstract": "Résumé",
|
|
561
|
+
"contactEmail": "Courrier électronique",
|
|
562
|
+
"contactOrganization": "Organisation",
|
|
563
|
+
"contactPerson": "Personne de contact",
|
|
564
|
+
"contactPhone": "Téléphone",
|
|
565
|
+
"contactPosition": "Poste",
|
|
566
|
+
"keywords": "mots-clés",
|
|
567
|
+
"onlineResource": "Ressource en ligne",
|
|
568
|
+
"title": "Information sur le thème"
|
|
569
|
+
},
|
|
570
|
+
"settings": {
|
|
571
|
+
"bookmarks": "Marque-pages",
|
|
572
|
+
"colorscheme": "Schéma de couleurs",
|
|
573
|
+
"confirmlang": "L'application sera rechargée pour changer la langue. Procéder?",
|
|
574
|
+
"default": "Par défaut",
|
|
575
|
+
"defaulttheme": "Thème par défaut",
|
|
576
|
+
"defaultthemefailed": "Impossible de modifier le thème par défaut : {0}",
|
|
577
|
+
"language": "Langue",
|
|
578
|
+
"systemlang": "Langue du système",
|
|
579
|
+
"themes": "Thèmes"
|
|
580
|
+
},
|
|
581
|
+
"share": {
|
|
582
|
+
"QRCodeLinkTitle": "QR code",
|
|
583
|
+
"directLinkTitle": "Via un lien direct",
|
|
584
|
+
"expires": "Ce lien permanent est valide jusqu'au {0}.",
|
|
585
|
+
"norestriction": "Aucune restriction",
|
|
586
|
+
"refresh": "Générer un lien permanent",
|
|
587
|
+
"restricttogroup": "Limiter au groupe",
|
|
588
|
+
"shareTitle": "QWC2",
|
|
589
|
+
"showpin": "Afficher les épingles",
|
|
590
|
+
"socialIntro": "Via votre réseau social favori"
|
|
591
|
+
},
|
|
592
|
+
"snapping": {
|
|
593
|
+
"edge": "Snapping aux bords",
|
|
594
|
+
"loading": "Chargement",
|
|
595
|
+
"snappingenabled": "Snapping activé",
|
|
596
|
+
"vertex": "Snapping aux sommets"
|
|
597
|
+
},
|
|
598
|
+
"themelayerslist": {
|
|
599
|
+
"addlayer": "Ajouter la couche",
|
|
600
|
+
"addlayerstotheme": "Ajouter des couches à la carte",
|
|
601
|
+
"addselectedlayers": "Ajouter les couches sélectionnées",
|
|
602
|
+
"existinglayers": "Les couches suivantes existent déjà dans la carte"
|
|
603
|
+
},
|
|
604
|
+
"themeswitcher": {
|
|
605
|
+
"addlayerstotheme": "Ajouter des couches à la carte",
|
|
606
|
+
"addtotheme": "Ajouter au thème actuel",
|
|
607
|
+
"changedefaulttheme": "Sélectionner ce thème comme thème par défaut",
|
|
608
|
+
"confirmswitch": "Les couches ajoutées par vos soins seront perdues en changeant de thème. Voulez-vous continuer ?",
|
|
609
|
+
"filter": "Filtre...",
|
|
610
|
+
"match": {
|
|
611
|
+
"abstract": "Résumé",
|
|
612
|
+
"keywords": "Mots-clés",
|
|
613
|
+
"title": "Titre"
|
|
614
|
+
},
|
|
615
|
+
"openintab": "Ouvrir dans l'onglet",
|
|
616
|
+
"restrictedthemeinfo": "Vous n'êtes pas autorisé à voir le thème ou vous n'êtes pas connecté"
|
|
617
|
+
},
|
|
618
|
+
"timemanager": {
|
|
619
|
+
"animationinterval": "Intervalle d'animation",
|
|
620
|
+
"classify": "Classement par attribut",
|
|
621
|
+
"classifynone": "Aucun",
|
|
622
|
+
"displayfeatures": "Chronologie avec objets",
|
|
623
|
+
"displaylayers": "Chronologie avec couches",
|
|
624
|
+
"displayminimal": "Chronologie uniquement",
|
|
625
|
+
"edit": "Modifier",
|
|
626
|
+
"endtime": "Fin",
|
|
627
|
+
"filterwarning": "Filtres sont actifs sur la carte",
|
|
628
|
+
"future": "Future",
|
|
629
|
+
"group": "Attribut de regroupement",
|
|
630
|
+
"groupnone": "Aucun",
|
|
631
|
+
"home": "Réinitialiser",
|
|
632
|
+
"loading": "Chargement...",
|
|
633
|
+
"loop": "Répéter",
|
|
634
|
+
"markers": "Marqueurs",
|
|
635
|
+
"notemporaldata": "Aucune couche temporelle n'est visible sur la carte.",
|
|
636
|
+
"now": "Maintenant",
|
|
637
|
+
"past": "Passé",
|
|
638
|
+
"play": "Jouer",
|
|
639
|
+
"playrev": "Jouer en sens inverse",
|
|
640
|
+
"rewind": "Rembobiner",
|
|
641
|
+
"starttime": "Début",
|
|
642
|
+
"stepback": "Pas en arrière",
|
|
643
|
+
"stepfwd": "Pas en avant",
|
|
644
|
+
"stepsize": "Taille de pas",
|
|
645
|
+
"stop": "Stop",
|
|
646
|
+
"timeline": "Chronologie",
|
|
647
|
+
"timeline_fixed": "Fixe",
|
|
648
|
+
"timeline_infinite": "Infinie",
|
|
649
|
+
"timelinedisplay": "Affichage",
|
|
650
|
+
"timelinescale": "Échelle de temps (non-linéarité)",
|
|
651
|
+
"title": "Ligne du temps",
|
|
652
|
+
"toggle": "Activer le contrôle du temps",
|
|
653
|
+
"unit": {
|
|
654
|
+
"century": "siècles",
|
|
655
|
+
"days": "jours",
|
|
656
|
+
"decade": "décennies",
|
|
657
|
+
"hours": "heures",
|
|
658
|
+
"milliseconds": "millisecondes",
|
|
659
|
+
"minutes": "minutes",
|
|
660
|
+
"months": "mois",
|
|
661
|
+
"seconds": "secondes",
|
|
662
|
+
"years": "années"
|
|
663
|
+
},
|
|
664
|
+
"zoomin": "Zoomer",
|
|
665
|
+
"zoomout": "Dézoomer"
|
|
666
|
+
},
|
|
667
|
+
"tooltip": {
|
|
668
|
+
"background": "Changer de fond",
|
|
669
|
+
"fullscreendisable": "Désactiver le mode plein écran",
|
|
670
|
+
"fullscreenenable": "Activer le mode plein écran",
|
|
671
|
+
"home": "Afficher toute la carte",
|
|
672
|
+
"zoomin": "Zoomer",
|
|
673
|
+
"zoomout": "Dézoomer"
|
|
674
|
+
},
|
|
675
|
+
"valuetool": {
|
|
676
|
+
"all": "Tous",
|
|
677
|
+
"allbands": "Tous les bandes",
|
|
678
|
+
"alllayers": "Tous les couches",
|
|
679
|
+
"bands": "Bandes",
|
|
680
|
+
"graph": "Graphe",
|
|
681
|
+
"layer": "Couche",
|
|
682
|
+
"nodata": "Pas de données",
|
|
683
|
+
"options": "Options",
|
|
684
|
+
"selectedbands": "Bandes sélectionées",
|
|
685
|
+
"selectedlayers": "Couches sélectionées",
|
|
686
|
+
"selectlayersbands": "Selectionner couches / bandes",
|
|
687
|
+
"showbands": "Bandes",
|
|
688
|
+
"showlayers": "Couches",
|
|
689
|
+
"table": "Tableau",
|
|
690
|
+
"title": "Value Tool",
|
|
691
|
+
"visiblelayers": "Couches visibles"
|
|
692
|
+
},
|
|
693
|
+
"vectorlayerpicker": {
|
|
694
|
+
"none": "Aucune",
|
|
695
|
+
"prompt": "Entrez le nom de la couche"
|
|
696
|
+
},
|
|
697
|
+
"window": {
|
|
698
|
+
"close": "Fermer",
|
|
699
|
+
"detach": "Détacher",
|
|
700
|
+
"dock": "Attacher",
|
|
701
|
+
"embed": "Incorporer",
|
|
702
|
+
"maximize": "Agrandir",
|
|
703
|
+
"minimize": "Minimiser",
|
|
704
|
+
"undock": "Détacher",
|
|
705
|
+
"unmaximize": "Réduire",
|
|
706
|
+
"unminimize": "Agrandir"
|
|
707
|
+
}
|
|
708
|
+
}
|
|
709
|
+
}
|