@kalisio/kdk 2.1.8 → 2.2.0
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/.travis.test.sh +42 -10
- package/README.md +2 -2
- package/core/api/application.js +6 -1
- package/core/api/authentication.js +17 -1
- package/core/api/db.js +7 -2
- package/core/api/hooks/hooks.authentication.js +4 -2
- package/core/api/hooks/hooks.authorisations.js +12 -2
- package/core/api/hooks/hooks.model.js +5 -5
- package/core/api/hooks/hooks.organisations.js +0 -4
- package/core/api/services/account/account.hooks.js +10 -6
- package/core/api/services/account/account.service.js +1 -1
- package/{map/api/services/geocoder/geocoder.hooks.js → core/api/services/import-export/import-export.hooks.js} +7 -5
- package/core/api/services/import-export/import-export.service.js +11 -0
- package/core/api/services/index.js +13 -1
- package/core/api/services/users/users.hooks.js +2 -3
- package/core/client/api.js +16 -14
- package/core/client/capabilities.js +6 -2
- package/core/client/components/KContent.vue +11 -1
- package/core/client/components/KDialog.vue +17 -15
- package/core/client/components/KSponsor.vue +1 -1
- package/core/client/components/KTextArea.vue +5 -1
- package/core/client/components/app/KAbout.vue +1 -2
- package/core/client/components/app/KWelcome.vue +3 -5
- package/core/client/components/chart/KTimeSeriesChart.vue +24 -37
- package/core/client/components/collection/KColumn.vue +20 -17
- package/core/client/components/editor/KModalEditor.vue +0 -2
- package/core/client/components/form/KChipsField.vue +12 -2
- package/core/client/components/form/KColorField.vue +12 -2
- package/core/client/components/form/KColorScaleField.vue +12 -2
- package/core/client/components/form/KDateTimeRangeField.vue +12 -2
- package/core/client/components/form/KDatetimeField.vue +12 -2
- package/core/client/components/form/KEmailField.vue +12 -2
- package/core/client/components/form/KFileField.vue +12 -2
- package/core/client/components/form/KForm.vue +43 -9
- package/core/client/components/form/KIconField.vue +12 -2
- package/core/client/components/form/KItemField.vue +25 -4
- package/core/client/components/form/KNumberField.vue +12 -2
- package/core/client/components/form/KOptionsField.vue +12 -2
- package/core/client/components/form/KPasswordField.vue +12 -2
- package/core/client/components/form/KPhoneField.vue +13 -3
- package/core/client/components/form/KPropertyItemField.vue +12 -2
- package/core/client/components/form/KResolutionField.vue +126 -0
- package/core/client/components/form/KRoleField.vue +12 -2
- package/core/client/components/form/KSelectField.vue +14 -4
- package/core/client/components/form/KTextField.vue +12 -2
- package/core/client/components/form/KTextareaField.vue +13 -3
- package/core/client/components/form/KToggleField.vue +12 -2
- package/core/client/components/form/KTokenField.vue +12 -2
- package/core/client/components/form/KUnitField.vue +12 -2
- package/core/client/components/form/KUrlField.vue +12 -2
- package/core/client/components/input/KIconChooser.vue +10 -12
- package/core/client/components/input/KPalette.vue +2 -1
- package/core/client/components/layout/KPage.vue +5 -4
- package/core/client/components/layout/KWindow.vue +10 -10
- package/core/client/components/media/KColorScale.vue +26 -20
- package/core/client/components/media/KImageViewer.vue +57 -33
- package/core/client/components/media/KShape.vue +14 -103
- package/core/client/components/screen/KRegisterScreen.vue +0 -1
- package/core/client/components/screen/KScreenFooter.vue +0 -18
- package/core/client/components/team/KAddMember.vue +14 -11
- package/core/client/components/team/KGroupsActivity.vue +14 -0
- package/core/client/components/team/KMembersActivity.vue +12 -0
- package/core/client/components/team/KTagsActivity.vue +14 -0
- package/core/client/components/time/KDateTime.vue +23 -7
- package/core/client/components/time/KTimeControl.vue +142 -0
- package/core/client/components/tool/KExportTool.vue +57 -0
- package/core/client/composables/collection.js +0 -1
- package/core/client/composables/pwa.js +0 -1
- package/core/client/composables/schema.js +1 -1
- package/core/client/composables/session.js +30 -6
- package/core/client/exporter.js +141 -0
- package/core/client/i18n/core_en.json +93 -24
- package/core/client/i18n/core_fr.json +94 -24
- package/core/client/index.js +3 -0
- package/core/client/layout.js +34 -14
- package/core/client/local-storage.js +8 -6
- package/core/client/mixins/index.js +0 -1
- package/core/client/mixins/mixin.base-field.js +24 -2
- package/core/client/mixins/mixin.object-proxy.js +0 -1
- package/core/client/readers/reader.csv.js +1 -1
- package/core/client/search.js +2 -1
- package/core/client/services/index.js +2 -1
- package/core/client/services/local-settings.service.js +4 -4
- package/core/client/theme.js +3 -3
- package/core/client/time.js +4 -0
- package/core/client/units.js +149 -4
- package/core/client/utils/index.js +13 -6
- package/core/client/utils/utils.account.js +1 -1
- package/core/client/utils/utils.colors.js +43 -0
- package/core/client/utils/utils.platform.js +0 -1
- package/core/client/utils/utils.pwa.js +14 -14
- package/core/client/utils/utils.session.js +1 -1
- package/core/client/utils/utils.shapes.js +270 -0
- package/core/client/utils/utils.time.js +37 -0
- package/core/common/permissions.js +3 -0
- package/core/common/schemas/settings.update.json +50 -29
- package/extras/css/core.variables.scss +3 -1
- package/extras/tours/map/navigation-bar.js +17 -15
- package/extras/tours/map/timeline.js +33 -33
- package/map/api/config/categories.cjs +4 -1
- package/map/api/hooks/hooks.catalog.js +39 -0
- package/map/api/hooks/hooks.features.js +23 -3
- package/map/api/hooks/hooks.query.js +31 -10
- package/map/api/models/projects.model.mongodb.js +8 -0
- package/map/api/services/catalog/catalog.hooks.js +5 -3
- package/map/api/services/features/features.hooks.js +18 -6
- package/map/api/services/index.js +22 -6
- package/map/api/services/projects/projects.hooks.js +118 -0
- package/map/client/capture.js +16 -0
- package/map/client/cesium/utils/index.js +3 -0
- package/map/client/cesium/utils/utils.events.js +30 -0
- package/map/client/cesium/utils/utils.popup.js +17 -0
- package/map/client/cesium/{utils.js → utils/utils.style.js} +53 -49
- package/map/client/components/KCapture.vue +50 -0
- package/map/client/components/KCaptureTextArea.vue +53 -0
- package/map/client/components/KCompass.vue +2 -2
- package/map/client/components/KFeaturesChart.vue +1 -1
- package/map/client/components/KFeaturesFilter.vue +2 -2
- package/map/client/components/KLayerStyleForm.vue +256 -430
- package/map/client/components/KLevelSlider.vue +1 -1
- package/map/client/components/KNorth.vue +31 -0
- package/map/client/components/KProjectMenu.vue +88 -0
- package/map/client/components/KTimezoneMap.vue +36 -23
- package/map/client/components/catalog/KAddLayer.vue +3 -4
- package/map/client/components/catalog/KConnectLayer.vue +16 -4
- package/map/client/components/catalog/KCreateLayer.vue +1 -2
- package/map/client/components/catalog/KCreateProject.vue +100 -0
- package/map/client/components/catalog/KCreateView.vue +25 -2
- package/map/client/components/catalog/KLayersPanel.vue +24 -27
- package/map/client/components/catalog/KLayersSelector.vue +1 -1
- package/map/client/components/catalog/KProjectEditor.vue +91 -0
- package/map/client/components/catalog/KProjectManager.vue +60 -0
- package/map/client/components/catalog/KProjectSelector.vue +38 -0
- package/map/client/components/catalog/KProjectsPanel.vue +153 -0
- package/map/client/components/catalog/KSelectLayers.vue +96 -0
- package/map/client/components/catalog/KSelectViews.vue +96 -0
- package/map/client/components/catalog/KViewsPanel.vue +66 -30
- package/map/client/components/form/KDirectionField.vue +24 -5
- package/map/client/components/form/KLayerCategoryField.vue +12 -2
- package/map/client/components/form/KLocationField.vue +20 -5
- package/map/client/components/form/KOwsLayerField.vue +12 -2
- package/map/client/components/form/KOwsServiceField.vue +12 -2
- package/map/client/components/form/KSelectLayersField.vue +159 -0
- package/map/client/components/form/KSelectViewsField.vue +121 -0
- package/map/client/components/form/KTimezoneField.vue +24 -17
- package/map/client/components/legend/KColorScaleLegend.vue +1 -1
- package/map/client/components/legend/KLayerLegend.vue +61 -0
- package/map/client/components/legend/KLegend.vue +45 -44
- package/map/client/components/legend/KLegendRenderer.vue +5 -3
- package/map/client/components/legend/KSymbolsLegend.vue +12 -10
- package/map/client/components/legend/KVariablesLegend.vue +78 -0
- package/map/client/components/location/KGeocodersFilter.vue +2 -4
- package/map/client/components/location/KLocationMap.vue +48 -17
- package/map/client/components/location/KLocationSearch.vue +13 -3
- package/map/client/components/tools/KSearchTool.vue +17 -12
- package/map/client/components/widget/KElevationProfile.vue +16 -19
- package/map/client/components/widget/KMapillaryViewer.vue +21 -22
- package/map/client/components/widget/KTimeSeries.vue +35 -23
- package/map/client/composables/activity.js +15 -2
- package/map/client/composables/catalog.js +66 -0
- package/map/client/composables/highlight.js +56 -20
- package/map/client/composables/index.js +2 -0
- package/map/client/composables/location.js +25 -18
- package/map/client/composables/project.js +122 -0
- package/map/client/geolocation.js +1 -1
- package/map/client/globe.js +2 -0
- package/map/client/i18n/map_en.json +123 -76
- package/map/client/i18n/map_fr.json +124 -72
- package/map/client/index.js +3 -0
- package/map/client/init.js +17 -0
- package/map/client/leaflet/GSMaPLayer.js +16 -17
- package/map/client/leaflet/ShapeMarker.js +40 -0
- package/map/client/leaflet/TiledFeatureLayer.js +1 -1
- package/map/client/leaflet/TiledMeshLayer.js +11 -15
- package/map/client/leaflet/TiledWindLayer.js +6 -10
- package/map/client/leaflet/utils/index.js +4 -0
- package/map/client/leaflet/utils/utils.events.js +41 -0
- package/map/client/leaflet/utils/utils.popup.js +21 -0
- package/map/client/leaflet/utils/utils.style.js +191 -0
- package/map/client/leaflet/utils/utils.tiles.js +87 -0
- package/map/client/map.js +2 -0
- package/map/client/mixins/globe/mixin.base-globe.js +29 -21
- package/map/client/mixins/globe/mixin.geojson-layers.js +132 -69
- package/map/client/mixins/globe/mixin.popup.js +2 -1
- package/map/client/mixins/globe/mixin.style.js +6 -4
- package/map/client/mixins/globe/mixin.tooltip.js +8 -3
- package/map/client/mixins/map/mixin.base-map.js +13 -11
- package/map/client/mixins/map/mixin.edit-layers.js +15 -15
- package/map/client/mixins/map/mixin.forecast-layers.js +3 -1
- package/map/client/mixins/map/mixin.geojson-layers.js +56 -20
- package/map/client/mixins/map/mixin.georaster-layers.js +4 -11
- package/map/client/mixins/map/mixin.heatmap-layers.js +1 -1
- package/map/client/mixins/map/mixin.popup.js +2 -1
- package/map/client/mixins/map/mixin.style.js +4 -67
- package/map/client/mixins/map/mixin.tiled-mesh-layers.js +2 -1
- package/map/client/mixins/map/mixin.tiled-wind-layers.js +4 -2
- package/map/client/mixins/map/mixin.tooltip.js +2 -1
- package/map/client/mixins/mixin.activity.js +66 -191
- package/map/client/mixins/mixin.catalog-panel.js +6 -6
- package/map/client/mixins/mixin.context.js +13 -10
- package/map/client/mixins/mixin.feature-service.js +29 -300
- package/map/client/mixins/mixin.weacast.js +11 -17
- package/map/client/pixi-utils.js +1 -1
- package/map/client/planets.js +58 -0
- package/map/client/utils/index.js +6 -0
- package/map/client/utils/utils.capture.js +176 -0
- package/map/client/utils/utils.catalog.js +149 -0
- package/map/client/utils/utils.features.js +364 -0
- package/map/client/utils/utils.js +0 -151
- package/map/client/utils/utils.layers.js +174 -0
- package/map/client/utils/utils.location.js +91 -23
- package/map/client/utils/utils.project.js +8 -0
- package/map/client/utils/utils.schema.js +0 -1
- package/map/client/utils/utils.style.js +297 -0
- package/map/client/utils.all.js +2 -2
- package/map/client/utils.globe.js +1 -1
- package/map/client/utils.map.js +1 -1
- package/map/common/permissions.js +2 -0
- package/map/common/schemas/capture.create.json +132 -0
- package/map/common/schemas/projects.create.json +52 -0
- package/map/common/schemas/projects.update.json +52 -0
- package/package.json +6 -5
- package/test/api/core/account.test.js +20 -0
- package/test/api/core/config/default.cjs +16 -3
- package/test/api/core/import-export.test.js +86 -0
- package/test/api/core/test-log-2023-12-19.log +7 -0
- package/test/api/core/test-log-2024-01-04.log +14 -0
- package/test/api/map/catalog.test.js +164 -0
- package/test/api/map/index.test.js +25 -61
- package/test/api/map/test-log-2023-11-24.log +121 -0
- package/test/api/map/test-log-2023-12-12.log +29 -0
- package/test/api/map/test-log-2023-12-13.log +5 -0
- package/test/api/map/test-log-2024-01-04.log +2 -0
- package/test/api/map/test-log-2024-01-11.log +1 -0
- package/test/api/map/test-log-2024-01-25.log +19 -0
- package/test/client/core/layout.js +25 -5
- package/test/client/core/utils.js +7 -0
- package/test/client/map/catalog.js +78 -1
- package/test/client/map/time.js +2 -1
- package/core/client/components/screen/KEndpointScreen.vue +0 -80
- package/core/client/mixins/mixin.account.js +0 -61
- package/extras/icons/kdk.png +0 -0
- package/map/api/services/geocoder/geocoder.service.js +0 -79
- package/map/client/components/KCaptureToolbar.vue +0 -155
- package/map/client/components/KColorLegend.vue +0 -349
- package/map/client/components/KTimeline.vue +0 -293
- package/map/client/components/KUrlLegend.vue +0 -122
- package/map/client/leaflet/utils.js +0 -246
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"CLOSE": "Close",
|
|
3
3
|
"SEARCH": "Search",
|
|
4
|
+
"LAYERS_LABEL": "My data",
|
|
5
|
+
"VIEWS_LABEL": "My views",
|
|
6
|
+
"PROJECTS_LABEL": "My projects",
|
|
7
|
+
"CATALOG_LABEL": "Catalog",
|
|
8
|
+
"PROJECT_LAYERS_LABEL": "Data",
|
|
9
|
+
"PROJECT_VIEWS_LABEL": "Views",
|
|
4
10
|
"errors": {
|
|
5
11
|
"GEOLOCATION_NOT_SUPPORTED": "Geolocation does not seem to be supported on your device or browser.",
|
|
6
12
|
"GEOLOCATION_ERROR": "We are not able to locate your position, this might affect some features of the application.",
|
|
@@ -17,6 +23,20 @@
|
|
|
17
23
|
"INVALID_GPX_FILE": "{file} is not a valid GPX file",
|
|
18
24
|
"INVALID_KML_FILE": "{file} is not a valid KML file"
|
|
19
25
|
},
|
|
26
|
+
"utils": {
|
|
27
|
+
"layers": {
|
|
28
|
+
"INVALID_FEATURES_DIALOG_TITLE": "Invalid elements",
|
|
29
|
+
"INVALID_FEATURES_DIALOG_MESSAGE": "Your layer contains {total} elements with invalid geometry (e.g. self-intersection). As a consequence they will be removed prior to saving.",
|
|
30
|
+
"DOWNLOAD_INVALID_FEATURES_LABEL": "By checking this option the invalid features will be exported to a file before saving",
|
|
31
|
+
"INVALID_FEATURES_FILE": "InvalidFeatures.geojson",
|
|
32
|
+
"SAVING_LABEL": "Please wait while saving layer data,</br>processed {processed} over {total} features",
|
|
33
|
+
"SAVE_DIALOG_TITLE": "Tiling layer {layer}",
|
|
34
|
+
"SAVE_DIALOG_MESSAGE": "Your layer contains too much elements and has been optimized to be smoothly displayed.</br>As a consequence, it will only be visible at a local scale from a given zoom level.",
|
|
35
|
+
"REMOVING_LABEL": "Please wait while removing layer data",
|
|
36
|
+
"REMOVE_DIALOG_TITLE": "Remove {layer} ?",
|
|
37
|
+
"REMOVE_DIALOG_MESSAGE": "Are you sure you want to remove <b>{layer}</b> from your workspace ?"
|
|
38
|
+
}
|
|
39
|
+
},
|
|
20
40
|
"mixins": {
|
|
21
41
|
"fileLayers": {
|
|
22
42
|
"IMPORTED_DATA_NAME": "My data"
|
|
@@ -25,15 +45,7 @@
|
|
|
25
45
|
"CONVERT_UNITS": "Click to change unit"
|
|
26
46
|
},
|
|
27
47
|
"activity": {
|
|
28
|
-
"ADD_LAYER": "Add a
|
|
29
|
-
"SAVE_LABEL": "Save layer",
|
|
30
|
-
"SAVING_LABEL": "Please wait while saving layer data,</br>processed {processed} over {total} features",
|
|
31
|
-
"INVALID_FEATURES_DIALOG_TITLE": "Invalid elements",
|
|
32
|
-
"INVALID_FEATURES_DIALOG_MESSAGE": "Your layer contains {features.length} elements with invalid geometry (e.g. self-intersection). As a consequence they will be removed prior to saving.",
|
|
33
|
-
"DOWNLOAD_INVALID_FEATURES_LABEL": "By checking this option the invalid features will be exported to a file before saving",
|
|
34
|
-
"INVALID_FEATURES_FILE": "InvalidFeatures.geojson",
|
|
35
|
-
"SAVE_DIALOG_TITLE": "Tiling layer {layer}",
|
|
36
|
-
"SAVE_DIALOG_MESSAGE": "Your layer contains too much elements and has been optimized to be smoothly displayed.</br>As a consequence, it will only be visible at a local scale from a given zoom level.",
|
|
48
|
+
"ADD_LAYER": "Add a layer",
|
|
37
49
|
"EDIT_LABEL": "Edit properties",
|
|
38
50
|
"EDIT_LAYER_STYLE_LABEL": "Edit style",
|
|
39
51
|
"FILTER_DATA_LABEL": "Filter data",
|
|
@@ -42,10 +54,6 @@
|
|
|
42
54
|
"START_EDIT_DATA_LABEL": "Start data edit",
|
|
43
55
|
"STOP_EDIT_DATA_LABEL": "Stop data edit",
|
|
44
56
|
"EDITING_DATA_MESSAGE": "Editing",
|
|
45
|
-
"REMOVE_LABEL": "Remove",
|
|
46
|
-
"REMOVING_LABEL": "Please wait while removing layer data",
|
|
47
|
-
"REMOVE_DIALOG_TITLE": "Remove {layer} ?",
|
|
48
|
-
"REMOVE_DIALOG_MESSAGE": "Are you sure you want to remove <b>{layer}</b> from your workspace ?",
|
|
49
57
|
"ZOOM_TO_LABEL": "Zoom to",
|
|
50
58
|
"ZOOM_IN": "Zoom in",
|
|
51
59
|
"ZOOM_OUT": "Zoom out",
|
|
@@ -64,12 +72,17 @@
|
|
|
64
72
|
"DISPLAY_LEGEND": "Display legend",
|
|
65
73
|
"HIDE_LEGEND": "Hide legend",
|
|
66
74
|
"SEARCH_LOCATION": "Search a location",
|
|
67
|
-
"
|
|
75
|
+
"ADD_VIEW": "Add view",
|
|
76
|
+
"CREATE_VIEW": "Create view",
|
|
77
|
+
"CREATE_PROJECT": "Create project",
|
|
78
|
+
"MANAGE_PROJECT": "Manage project",
|
|
68
79
|
"SYNCHRONIZE_TIMELINE_LABEL": "Synchronize with timeline",
|
|
69
80
|
"TOOLS": "Tools",
|
|
70
81
|
"SAVE_LAYER_EDITION_CHANGES": "Save edition changes",
|
|
71
82
|
"DISCARD_LAYER_EDITION_CHANGES": "Discard edition changes",
|
|
72
|
-
"CAPTURE_VIEW": "Capture the view"
|
|
83
|
+
"CAPTURE_VIEW": "Capture the view",
|
|
84
|
+
"SAVE_LABEL": "Save layer",
|
|
85
|
+
"REMOVE_LABEL": "Remove"
|
|
73
86
|
},
|
|
74
87
|
"timeseries": {
|
|
75
88
|
"FORECAST_PROBE": "Forecast"
|
|
@@ -190,10 +203,6 @@
|
|
|
190
203
|
"POPUP": "You are within {distance} {unit} from this point",
|
|
191
204
|
"OUTSIDE_MAP_BOUNDS": "You seem located outside the boundaries of the map"
|
|
192
205
|
},
|
|
193
|
-
"geocoders": {
|
|
194
|
-
"BAN": "BAN",
|
|
195
|
-
"NOMINATIN": "Nominatin"
|
|
196
|
-
},
|
|
197
206
|
"schemas": {
|
|
198
207
|
"CATALOG_CREATE_TITLE": "Create a new data layer",
|
|
199
208
|
"CATALOG_NAME_FIELD_LABEL": "Enter the name of the new layer",
|
|
@@ -205,16 +214,38 @@
|
|
|
205
214
|
"LAYER_CATEGORY_ICON_FIELD_LABEL": "Select an icon for this category",
|
|
206
215
|
"LAYER_CATEGORY_LAYERS_FIELD_LABEL": "Select the layers in this category",
|
|
207
216
|
"LAYER_CATEGORY_EXCLUSIVE_FIELD_LABEL": "Make selection exclusive within this category",
|
|
217
|
+
"PROJECT_CREATE_TITLE": "Create a new project?",
|
|
218
|
+
"PROJECT_NAME_FIELD_LABEL": "Enter the name of this project",
|
|
219
|
+
"PROJECT_DESCRIPTION_FIELD_LABEL": "Enter the description of this project",
|
|
220
|
+
"PROJECT_LAYERS_FIELD_LABEL": "Select the layers in this project",
|
|
221
|
+
"PROJECT_VIEWS_FIELD_LABEL": "Select the views in this project",
|
|
222
|
+
"PROJECT_INDENTIFIER_FIELD_LABEL": "Enter the identifier of this project for third-party applications",
|
|
208
223
|
"MAP_SETTINGS": "Map parameters",
|
|
209
224
|
"RESTORE_VIEW_FIELD_LABEL": "Save current extent",
|
|
210
225
|
"RESTORE_LAYERS_FIELD_LABEL": "Save active layers",
|
|
211
226
|
"LOCATION_FORMAT_LABEL": "Location format",
|
|
212
|
-
"LOCATION_FORMAT_HELPER": "<a target='_blank' href='https://github.com/nerik/formatcoords#formatting'>🛈</a>",
|
|
213
227
|
"TIMELINE_SETTINGS": "Timeline parameters",
|
|
214
228
|
"TIMELINE_STEP": "Timeline step (in minutes)",
|
|
215
229
|
"TIMELINE_INTERVAL": "Real-time data refresh update interval",
|
|
216
230
|
"TIMESERIES_SETTINGS": "Timeseries parameters",
|
|
217
|
-
"TIMESERIES_SPAN": "Timeseries span (in hours)"
|
|
231
|
+
"TIMESERIES_SPAN": "Timeseries span (in hours)",
|
|
232
|
+
"CAPTURE_RESOLUTION_FIELD_LABEL": "Resolution setting",
|
|
233
|
+
"CAPTURE_HEADER_FIELD_LABEL": "Title setting",
|
|
234
|
+
"CAPTURE_FOOTER_FIELD_LABEL": "Footer setting",
|
|
235
|
+
"CAPTURE_LEGEND_POSITION_FIELD_LABEL": "Set legend position",
|
|
236
|
+
"CAPTURE_LEGEND_NOT_DISPLAYED_FIELD_LABEL": "Do not display",
|
|
237
|
+
"CAPTURE_LEGEND_LEFT_POSITION_FIELD_LABEL": " Display left",
|
|
238
|
+
"CAPTURE_LEGEND_RIGHT_POSITION_FIELD_LABEL": " Display right",
|
|
239
|
+
"CAPTURE_COMPASS_POSITION_FIELD_LABEL": "Set compass position",
|
|
240
|
+
"CAPTURE_TOP_LEFT_POSITION_FIELD_LABEL": "Display top left",
|
|
241
|
+
"CAPTURE_TOP_RIGHT_POSITION_FIELD_LABEL": "Display top right",
|
|
242
|
+
"CAPTURE_BOTTOM_RIGHT_POSITION_FIELD_LABEL": "Display bottom right",
|
|
243
|
+
"CAPTURE_BOTTOM_LEFT_POSITION_FIELD_LABEL": "Display bottom left",
|
|
244
|
+
"CAPTURE_ADVANCED_SETTINGS": "Advanced setting",
|
|
245
|
+
"CAPTURE_DATETIME_RANGE_FIELD_LABEL": "Set time interval",
|
|
246
|
+
"CAPTURE_FORMAT_FIELD_LABEL": "Select file format",
|
|
247
|
+
"CAPTURE_PDF_FORMAT_FIELD_LABEL": "PDF",
|
|
248
|
+
"CAPTURE_PNG_FORMAT_FIELD_LABEL": "PNG"
|
|
218
249
|
},
|
|
219
250
|
"tours": {
|
|
220
251
|
"navigation-bar": {
|
|
@@ -281,17 +312,16 @@
|
|
|
281
312
|
"timeline": {
|
|
282
313
|
"TIMELINE_LABEL": "The timeline allows to quickly execute actions related to the time of displayed data.",
|
|
283
314
|
"DATE_LABEL": "Jump to any given date by using this button.",
|
|
284
|
-
"
|
|
285
|
-
"
|
|
286
|
-
"
|
|
287
|
-
"
|
|
288
|
-
"
|
|
315
|
+
"PICK_DAY_LABEL": "Pick a given day.",
|
|
316
|
+
"PICK_HOUR_LABEL": "Or pick time.",
|
|
317
|
+
"NOW_LABEL": "Activate to real-time using this button.",
|
|
318
|
+
"STEP_LABEL": "Update step using this button.",
|
|
319
|
+
"NEXT_STEP_LABEL": "Go forward in time to the next step as configured.",
|
|
320
|
+
"PREVIOUS_STEP_LABEL": "Go backward in time to the previous step as configured.",
|
|
289
321
|
"NEXT_HOUR_LABEL": "Go forward in time to the next hour.",
|
|
290
322
|
"PREVIOUS_HOUR_LABEL": "Go backward in time to the previous hour.",
|
|
291
|
-
"PICK_HOUR_LABEL": "Or pick the hours of current time.",
|
|
292
323
|
"NEXT_DAY_LABEL": "Go forward in time to the next day.",
|
|
293
|
-
"PREVIOUS_DAY_LABEL": "Go backward in time to the previous day."
|
|
294
|
-
"PICK_DAY_LABEL": "Or pick a given day."
|
|
324
|
+
"PREVIOUS_DAY_LABEL": "Go backward in time to the previous day."
|
|
295
325
|
},
|
|
296
326
|
"fab": {
|
|
297
327
|
"PROBE_LABEL": "Probe weather forecast data at a specific location.",
|
|
@@ -347,16 +377,19 @@
|
|
|
347
377
|
"UNSUPPORTED_LAYER_CRS": "The projection used by this layer is not supported.",
|
|
348
378
|
"UNSUPPORTED_LAYER_FORMAT": "The data format used by this layer is not supported."
|
|
349
379
|
},
|
|
380
|
+
"KSelectViewsField": {
|
|
381
|
+
"EMPTY": "None available"
|
|
382
|
+
},
|
|
350
383
|
"KLocationSearch": {
|
|
351
384
|
"SEARCH": "@:SEARCH",
|
|
352
|
-
"
|
|
385
|
+
"NO_RESULT": "No result found",
|
|
353
386
|
"FILTER": "Filter search services",
|
|
354
387
|
"GEOLOCATE": "Locate me",
|
|
355
388
|
"EDIT": "Edit on a map"
|
|
356
389
|
},
|
|
357
390
|
"KLocationField": {
|
|
358
391
|
"SEARCH": "@:SEARCH",
|
|
359
|
-
"
|
|
392
|
+
"NO_RESULT": "No result found",
|
|
360
393
|
"FILTER": "Filter search services",
|
|
361
394
|
"GEOLOCATE": "Locate me",
|
|
362
395
|
"DRAW": "Draw on a map"
|
|
@@ -401,9 +434,21 @@
|
|
|
401
434
|
"NO_DATA_AVAILABLE": "No data available"
|
|
402
435
|
},
|
|
403
436
|
"KViewsPanel": {
|
|
404
|
-
"SORT_VIEWS": "Sort
|
|
437
|
+
"SORT_VIEWS": "Sort views",
|
|
405
438
|
"REMOVE_VIEW": "@:REMOVE",
|
|
406
|
-
"SET_HOME_VIEW": "Set as default view"
|
|
439
|
+
"SET_HOME_VIEW": "Set as default view",
|
|
440
|
+
"REMOVE_DIALOG_TITLE": "Remove {view} ?",
|
|
441
|
+
"REMOVE_DIALOG_MESSAGE": "Are you sure you want to remove <b>{view}</b> from your workspace ?"
|
|
442
|
+
},
|
|
443
|
+
"KProjectsPanel": {
|
|
444
|
+
"SORT_PROJECTS": "Sort projects",
|
|
445
|
+
"EDIT_PROJECT": "@:EDIT",
|
|
446
|
+
"REMOVE_PROJECT": "@:REMOVE",
|
|
447
|
+
"REMOVE_DIALOG_TITLE": "Remove {project} ?",
|
|
448
|
+
"REMOVE_DIALOG_MESSAGE": "Are you sure you want to remove <b>{project}</b> from your workspace ?"
|
|
449
|
+
},
|
|
450
|
+
"KProjectEditor": {
|
|
451
|
+
"BACKGROUND_LAYER_REQUIRED": "A project at least requires a background layer."
|
|
407
452
|
},
|
|
408
453
|
"KFeaturesFilter": {
|
|
409
454
|
"TITLE": "Data filter for layer",
|
|
@@ -450,24 +495,36 @@
|
|
|
450
495
|
"SELECTABLE": "Selectable",
|
|
451
496
|
"LAYER_OPACITY": "Transparent layer",
|
|
452
497
|
"OPACITY": "Opacity",
|
|
453
|
-
"POINTS": "
|
|
498
|
+
"POINTS": "Points",
|
|
454
499
|
"LINES": "Lines",
|
|
455
500
|
"POLYGONS": "Polygons",
|
|
456
|
-
"
|
|
457
|
-
"
|
|
458
|
-
"
|
|
459
|
-
"
|
|
501
|
+
"DEFAULT_ICON_STYLE": "Default icon",
|
|
502
|
+
"DEFAULT_POINT_STYLE": "Default point",
|
|
503
|
+
"PROPERTY_ICON_STYLE": "Icon",
|
|
504
|
+
"PROPERTY_POINT_STYLE": "Point",
|
|
505
|
+
"ICON_SIZE": " size",
|
|
506
|
+
"POINT_SIZE": " size",
|
|
507
|
+
"POINT_SHAPE": " shape",
|
|
508
|
+
"WHEN_PROPERTY_IS_POINT_STYLE": "when {property}",
|
|
509
|
+
"POINT_CLUSTERING": "Cluster until level",
|
|
510
|
+
"ADD_POINT_STYLE": "Add a style for a value of",
|
|
511
|
+
"REMOVE_POINT_STYLE": "Remove style for this value",
|
|
460
512
|
"DEFAULT_LINE_STYLE": "Default line style",
|
|
461
|
-
"
|
|
462
|
-
"
|
|
463
|
-
"
|
|
513
|
+
"PROPERTY_LINE_STYLE": "Line style",
|
|
514
|
+
"WHEN_PROPERTY_IS_LINE_STYLE": "when {property}",
|
|
515
|
+
"LINE_WIDTH": "width ",
|
|
516
|
+
"LINE_OPACITY": "opacity ",
|
|
517
|
+
"ADD_LINE_STYLE": "Add a style for a value of",
|
|
464
518
|
"REMOVE_LINE_STYLE": "Remove style for this value",
|
|
465
|
-
"DEFAULT_POLYGON_LINE_STYLE": "Default
|
|
519
|
+
"DEFAULT_POLYGON_LINE_STYLE": "Default stroke style",
|
|
466
520
|
"DEFAULT_POLYGON_FILL_STYLE": "Default fill style",
|
|
467
|
-
"
|
|
468
|
-
"
|
|
469
|
-
"
|
|
470
|
-
"
|
|
521
|
+
"PROPERTY_POLYGON_LINE_STYLE": "Stroke",
|
|
522
|
+
"PROPERTY_POLYGON_FILL_STYLE": "Fill",
|
|
523
|
+
"WHEN_PROPERTY_IS_POLYGON_STYLE": "when {property}",
|
|
524
|
+
"POLYGON_LINE_WIDTH": "width ",
|
|
525
|
+
"POLYGON_LINE_OPACITY": "opacity ",
|
|
526
|
+
"POLYGON_FILL_OPACITY": "opacity ",
|
|
527
|
+
"ADD_POLYGON_STYLE": "Add a style for a value of",
|
|
471
528
|
"REMOVE_POLYGON_STYLE": "Remove style for this value",
|
|
472
529
|
"POPUP": "Popup",
|
|
473
530
|
"ADD_POPUP": "Select target properties to use as popup",
|
|
@@ -477,10 +534,10 @@
|
|
|
477
534
|
"ADD_INFOBOX": "Select target properties to use as information box",
|
|
478
535
|
"IN": "value in",
|
|
479
536
|
"NOT_IN": "not in",
|
|
480
|
-
"EQUAL": "
|
|
481
|
-
"NOT_EQUAL": "
|
|
482
|
-
"GREATER_THAN": "
|
|
483
|
-
"LOWER_THAN": "
|
|
537
|
+
"EQUAL": "is",
|
|
538
|
+
"NOT_EQUAL": "is not",
|
|
539
|
+
"GREATER_THAN": ">",
|
|
540
|
+
"LOWER_THAN": "<"
|
|
484
541
|
},
|
|
485
542
|
"KLayerStyleEditor": {
|
|
486
543
|
"EDIT_LAYER_STYLE_TITLE": "Edit layer style"
|
|
@@ -494,16 +551,6 @@
|
|
|
494
551
|
"ARCHIVES_LABEL": "Archives",
|
|
495
552
|
"NO_MODEL_AVAILABLE": "No model available"
|
|
496
553
|
},
|
|
497
|
-
"KTimeline": {
|
|
498
|
-
"PREVIOUS_DAY": "Previous day",
|
|
499
|
-
"NEXT_DAY": "Next day",
|
|
500
|
-
"PREVIOUS_HOUR": "Previous hour",
|
|
501
|
-
"NEXT_HOUR": "Next hour",
|
|
502
|
-
"PREVIOUS_STEP": "Previsous step",
|
|
503
|
-
"NEXT_STEP": "Next step",
|
|
504
|
-
"SET_NOW": "Real time",
|
|
505
|
-
"SET_DATE": "Go on a date"
|
|
506
|
-
},
|
|
507
554
|
"KInformationBox": {
|
|
508
555
|
"LABEL": "Information box",
|
|
509
556
|
"NO_FEATURE_PROPERTIES": "No information available",
|
|
@@ -542,6 +589,10 @@
|
|
|
542
589
|
"CATEGORY_FIELD_LABEL": "Select or enter a category",
|
|
543
590
|
"FEATURE_ID_FIELD_LABEL": "Enter a unique feature ID"
|
|
544
591
|
},
|
|
592
|
+
"KSelectLayers": {
|
|
593
|
+
"LAYERS_FIELD_LABEL": "Select projet layers",
|
|
594
|
+
"SELECT_BUTTON": "Select"
|
|
595
|
+
},
|
|
545
596
|
"KImportLayer": {
|
|
546
597
|
"FILE_FIELD_LABEL": "Select the file to import",
|
|
547
598
|
"NAME_FIELD_LABEL": "@:KAddLayer.NAME_FIELD_LABEL",
|
|
@@ -568,12 +619,21 @@
|
|
|
568
619
|
"CATEGORY_FIELD_LABEL": "@:KAddLayer.CATEGORY_FIELD_LABEL",
|
|
569
620
|
"CREATE_BUTTON": "Create"
|
|
570
621
|
},
|
|
622
|
+
"KSelectViews": {
|
|
623
|
+
"VIEWS_FIELD_LABEL": "Select projet views",
|
|
624
|
+
"SELECT_BUTTON": "Select"
|
|
625
|
+
},
|
|
571
626
|
"KCreateView": {
|
|
572
627
|
"MODAL_TITLE": "Create a new view ?",
|
|
573
628
|
"NAME_FIELD_LABEL": "Enter the name of this view",
|
|
574
629
|
"DESCRIPTION_FIELD_LABEL": "Enter the description of this view",
|
|
575
630
|
"LAYERS_FIELD_LABEL": "Save the active layers"
|
|
576
631
|
},
|
|
632
|
+
"KCreateProject": {
|
|
633
|
+
"MODAL_TITLE": "Create a new project ?",
|
|
634
|
+
"NAME_FIELD_LABEL": "Enter the name of this project",
|
|
635
|
+
"DESCRIPTION_FIELD_LABEL": "Enter the description of this project"
|
|
636
|
+
},
|
|
577
637
|
"KLayerEditionToolbar": {
|
|
578
638
|
"ADD_POLYGON_FEATURES": "Add polygon features",
|
|
579
639
|
"ADD_RECTANGLE_FEATURES": "Add rectangle features",
|
|
@@ -585,23 +645,10 @@
|
|
|
585
645
|
"ROTATE_FEATURES": "Rotate features",
|
|
586
646
|
"REMOVE_FEATURES": "Remove features"
|
|
587
647
|
},
|
|
588
|
-
"
|
|
589
|
-
"SD_LABEL": "Standard Definition",
|
|
590
|
-
"SD_DESCRIPTION": "4:3, 640 x 480",
|
|
591
|
-
"HD_LABEL": "High Definition",
|
|
592
|
-
"HD_DESCRIPTION": "16:9, 1280 x 720",
|
|
593
|
-
"FHD_LABEL": "Full HD",
|
|
594
|
-
"FHD_DESCRIPTION": "16:9, 1920 x 1080",
|
|
595
|
-
"QHD_LABEL": "Quad HD",
|
|
596
|
-
"QHD_DESCRIPTION": "16:9, 2560 x 1440",
|
|
597
|
-
"2K_LABEL": "2K",
|
|
598
|
-
"2K_DESCRIPTION": "1:1.77, 2048 x 1080",
|
|
599
|
-
"4K_LABEL": "4K or Ultra HD",
|
|
600
|
-
"4K_DESCRIPTION": "1:1.9, 3840 x 2160",
|
|
601
|
-
"8K_LABEL": "8K or Full Ultra HD",
|
|
602
|
-
"8K_DESCRIPTION": "16∶9, 7680 x 4320",
|
|
648
|
+
"KCapture": {
|
|
603
649
|
"CAPTURE_ACTION": "Capture view",
|
|
604
|
-
"CAPTURING_VIEW": "Waiting for capturing view"
|
|
650
|
+
"CAPTURING_VIEW": "Waiting for capturing view",
|
|
651
|
+
"ERROR_MESSAGE": "One capture is already in progress"
|
|
605
652
|
},
|
|
606
653
|
"KMeasureTool": {
|
|
607
654
|
"TOOL_BUTTON_LABEL": "Display the measure tool",
|